fhirsmith 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (277) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/FHIRsmith.png +0 -0
  3. package/README.md +277 -0
  4. package/config-template.json +144 -0
  5. package/library/folder-setup.js +58 -0
  6. package/library/html-server.js +166 -0
  7. package/library/html.js +835 -0
  8. package/library/i18nsupport.js +259 -0
  9. package/library/languages.js +779 -0
  10. package/library/logger-telnet.js +205 -0
  11. package/library/logger.js +279 -0
  12. package/library/package-manager.js +876 -0
  13. package/library/utilities.js +196 -0
  14. package/library/version-utilities.js +1056 -0
  15. package/npmprojector/config-example.json +13 -0
  16. package/npmprojector/indexer.js +394 -0
  17. package/npmprojector/npmprojector.js +395 -0
  18. package/npmprojector/readme.md +174 -0
  19. package/npmprojector/watcher.js +335 -0
  20. package/package.json +119 -0
  21. package/packages/package-crawler.js +846 -0
  22. package/packages/packages-template.html +126 -0
  23. package/packages/packages.js +2838 -0
  24. package/passwords.ini +2 -0
  25. package/publisher/publisher-template.html +208 -0
  26. package/publisher/publisher.js +2167 -0
  27. package/publisher/task-draft.js +458 -0
  28. package/registry/api.js +735 -0
  29. package/registry/crawler.js +637 -0
  30. package/registry/model.js +513 -0
  31. package/registry/readme.md +243 -0
  32. package/registry/registry-data.json +121015 -0
  33. package/registry/registry-template.html +126 -0
  34. package/registry/registry.js +1395 -0
  35. package/registry/test-runner.js +237 -0
  36. package/root-template.html +124 -0
  37. package/server.js +524 -0
  38. package/shl/private-key.pem +5 -0
  39. package/shl/public-key.pem +18 -0
  40. package/shl/shl.js +1125 -0
  41. package/shl/vhl.js +69 -0
  42. package/static/FHIRsmith128.png +0 -0
  43. package/static/FHIRsmith16.png +0 -0
  44. package/static/FHIRsmith32.png +0 -0
  45. package/static/FHIRsmith64.png +0 -0
  46. package/static/assets/css/bootstrap-fhir.css +5302 -0
  47. package/static/assets/css/bootstrap-glyphicons.css +2 -0
  48. package/static/assets/css/bootstrap.css +4097 -0
  49. package/static/assets/css/jquery-ui.css +523 -0
  50. package/static/assets/css/jquery-ui.structure.css +863 -0
  51. package/static/assets/css/jquery-ui.structure.min.css +5 -0
  52. package/static/assets/css/jquery-ui.theme.css +439 -0
  53. package/static/assets/css/jquery-ui.theme.min.css +5 -0
  54. package/static/assets/css/jquery.ui.all.css +7 -0
  55. package/static/assets/css/modules.css +18 -0
  56. package/static/assets/css/project.css +367 -0
  57. package/static/assets/css/pygments-manni.css +66 -0
  58. package/static/assets/css/tags.css +74 -0
  59. package/static/assets/css/xml.css +2 -0
  60. package/static/assets/fonts/glyphiconshalflings-regular.eot +0 -0
  61. package/static/assets/fonts/glyphiconshalflings-regular.otf +0 -0
  62. package/static/assets/fonts/glyphiconshalflings-regular.svg +175 -0
  63. package/static/assets/fonts/glyphiconshalflings-regular.ttf +0 -0
  64. package/static/assets/fonts/glyphiconshalflings-regular.woff +0 -0
  65. package/static/assets/ico/apple-touch-icon-114-precomposed.png +0 -0
  66. package/static/assets/ico/apple-touch-icon-144-precomposed.png +0 -0
  67. package/static/assets/ico/apple-touch-icon-57-precomposed.png +0 -0
  68. package/static/assets/ico/apple-touch-icon-72-precomposed.png +0 -0
  69. package/static/assets/ico/favicon.ico +0 -0
  70. package/static/assets/ico/favicon.png +0 -0
  71. package/static/assets/images/fhir-logo-www.png +0 -0
  72. package/static/assets/images/fhir-logo.png +0 -0
  73. package/static/assets/images/hl7-logo.png +0 -0
  74. package/static/assets/images/logo_ansinew.jpg +0 -0
  75. package/static/assets/images/search.png +0 -0
  76. package/static/assets/images/stripe.png +0 -0
  77. package/static/assets/images/target.png +0 -0
  78. package/static/assets/images/tx-registry-root.gif +0 -0
  79. package/static/assets/images/tx-registry.png +0 -0
  80. package/static/assets/images/tx-server.png +0 -0
  81. package/static/assets/images/tx-version.png +0 -0
  82. package/static/assets/js/bootstrap.min.js +6 -0
  83. package/static/assets/js/fhir-gw.js +259 -0
  84. package/static/assets/js/fhir.js +2 -0
  85. package/static/assets/js/html5shiv.js +8 -0
  86. package/static/assets/js/jcookie.js +96 -0
  87. package/static/assets/js/jquery-ui.min.js +6 -0
  88. package/static/assets/js/jquery.js +10716 -0
  89. package/static/assets/js/jquery.min.js +2 -0
  90. package/static/assets/js/jquery.ui.core.js +314 -0
  91. package/static/assets/js/jquery.ui.draggable.js +825 -0
  92. package/static/assets/js/jquery.ui.mouse.js +162 -0
  93. package/static/assets/js/jquery.ui.resizable.js +842 -0
  94. package/static/assets/js/jquery.ui.widget.js +268 -0
  95. package/static/assets/js/json2.js +487 -0
  96. package/static/assets/js/jtip.js +97 -0
  97. package/static/assets/js/respond.min.js +6 -0
  98. package/static/assets/js/statuspage.js +70 -0
  99. package/static/assets/js/xml.js +2 -0
  100. package/static/dist/js/bootstrap.js +1964 -0
  101. package/static/favicon.png +0 -0
  102. package/static/fhir.css +626 -0
  103. package/static/icon-fhir-16.png +0 -0
  104. package/static/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
  105. package/static/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
  106. package/static/images/ui-bg_flat_10_000000_40x100.png +0 -0
  107. package/static/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
  108. package/static/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  109. package/static/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  110. package/static/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
  111. package/static/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  112. package/static/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
  113. package/static/images/ui-icons_222222_256x240.png +0 -0
  114. package/static/images/ui-icons_228ef1_256x240.png +0 -0
  115. package/static/images/ui-icons_ef8c08_256x240.png +0 -0
  116. package/static/images/ui-icons_ffd27a_256x240.png +0 -0
  117. package/static/images/ui-icons_ffffff_256x240.png +0 -0
  118. package/static/js/jquery.effects.blind.js +49 -0
  119. package/static/js/jquery.effects.bounce.js +78 -0
  120. package/static/js/jquery.effects.clip.js +54 -0
  121. package/static/js/jquery.effects.core.js +763 -0
  122. package/static/js/jquery.effects.drop.js +50 -0
  123. package/static/js/jquery.effects.explode.js +79 -0
  124. package/static/js/jquery.effects.fade.js +32 -0
  125. package/static/js/jquery.effects.fold.js +56 -0
  126. package/static/js/jquery.effects.highlight.js +50 -0
  127. package/static/js/jquery.effects.pulsate.js +51 -0
  128. package/static/js/jquery.effects.scale.js +178 -0
  129. package/static/js/jquery.effects.shake.js +57 -0
  130. package/static/js/jquery.effects.slide.js +50 -0
  131. package/static/js/jquery.effects.transfer.js +45 -0
  132. package/static/js/jquery.ui.accordion.js +611 -0
  133. package/static/js/jquery.ui.autocomplete.js +612 -0
  134. package/static/js/jquery.ui.button.js +416 -0
  135. package/static/js/jquery.ui.datepicker.js +1823 -0
  136. package/static/js/jquery.ui.dialog.js +878 -0
  137. package/static/js/jquery.ui.droppable.js +296 -0
  138. package/static/js/jquery.ui.position.js +252 -0
  139. package/static/js/jquery.ui.progressbar.js +109 -0
  140. package/static/js/jquery.ui.selectable.js +266 -0
  141. package/static/js/jquery.ui.slider.js +666 -0
  142. package/static/js/jquery.ui.sortable.js +1077 -0
  143. package/static/js/jquery.ui.tabs.js +758 -0
  144. package/stats.js +80 -0
  145. package/test-cache/vsac/vsac-valuesets.db +0 -0
  146. package/token/nginx_passport_setup.md +383 -0
  147. package/token/security_guide.md +294 -0
  148. package/token/token-template.html +330 -0
  149. package/token/token.js +1300 -0
  150. package/translations/Messages.properties +1510 -0
  151. package/translations/Messages_ar.properties +1399 -0
  152. package/translations/Messages_de.properties +836 -0
  153. package/translations/Messages_es.properties +737 -0
  154. package/translations/Messages_fr.properties +1 -0
  155. package/translations/Messages_ja.properties +893 -0
  156. package/translations/Messages_nl.properties +1357 -0
  157. package/translations/Messages_pt.properties +1302 -0
  158. package/translations/Messages_ru.properties +1 -0
  159. package/translations/Messages_uz.properties +1 -0
  160. package/translations/Messages_zh.properties +1 -0
  161. package/translations/rendering-phrases.properties +1128 -0
  162. package/translations/rendering-phrases_ar.properties +1091 -0
  163. package/translations/rendering-phrases_de.properties +6 -0
  164. package/translations/rendering-phrases_es.properties +6 -0
  165. package/translations/rendering-phrases_fr.properties +624 -0
  166. package/translations/rendering-phrases_ja.properties +21 -0
  167. package/translations/rendering-phrases_nl.properties +970 -0
  168. package/translations/rendering-phrases_pt.properties +1020 -0
  169. package/translations/rendering-phrases_ru.properties +1094 -0
  170. package/translations/rendering-phrases_uz.properties +1 -0
  171. package/translations/rendering-phrases_zh.properties +1 -0
  172. package/tx/README.md +418 -0
  173. package/tx/cm/cm-api.js +110 -0
  174. package/tx/cm/cm-database.js +735 -0
  175. package/tx/cm/cm-package.js +325 -0
  176. package/tx/cs/cs-api.js +789 -0
  177. package/tx/cs/cs-areacode.js +615 -0
  178. package/tx/cs/cs-country.js +1110 -0
  179. package/tx/cs/cs-cpt.js +785 -0
  180. package/tx/cs/cs-cs.js +1579 -0
  181. package/tx/cs/cs-currency.js +539 -0
  182. package/tx/cs/cs-db.js +1321 -0
  183. package/tx/cs/cs-hgvs.js +329 -0
  184. package/tx/cs/cs-lang.js +465 -0
  185. package/tx/cs/cs-loinc.js +1485 -0
  186. package/tx/cs/cs-mimetypes.js +238 -0
  187. package/tx/cs/cs-ndc.js +704 -0
  188. package/tx/cs/cs-omop.js +1025 -0
  189. package/tx/cs/cs-provider-api.js +43 -0
  190. package/tx/cs/cs-provider-list.js +37 -0
  191. package/tx/cs/cs-rxnorm.js +808 -0
  192. package/tx/cs/cs-snomed.js +1102 -0
  193. package/tx/cs/cs-ucum.js +514 -0
  194. package/tx/cs/cs-unii.js +271 -0
  195. package/tx/cs/cs-uri.js +218 -0
  196. package/tx/cs/cs-usstates.js +305 -0
  197. package/tx/dev.fhir.org.yml +14 -0
  198. package/tx/fixtures/test-cases-setup.json +18 -0
  199. package/tx/fixtures/test-cases.yml +16 -0
  200. package/tx/html/codesystem-operations.liquid +25 -0
  201. package/tx/html/home-metrics.liquid +247 -0
  202. package/tx/html/operations-form.liquid +148 -0
  203. package/tx/html/search-form.liquid +62 -0
  204. package/tx/html/tx-template.html +133 -0
  205. package/tx/html/valueset-operations.liquid +54 -0
  206. package/tx/importers/atc-to-fhir.js +316 -0
  207. package/tx/importers/import-loinc.module.js +1536 -0
  208. package/tx/importers/import-ndc.module.js +1088 -0
  209. package/tx/importers/import-rxnorm.module.js +898 -0
  210. package/tx/importers/import-sct.module.js +2457 -0
  211. package/tx/importers/import-unii.module.js +601 -0
  212. package/tx/importers/readme.md +453 -0
  213. package/tx/importers/subset-loinc.module.js +1081 -0
  214. package/tx/importers/subset-rxnorm.module.js +938 -0
  215. package/tx/importers/tx-import-base.js +351 -0
  216. package/tx/importers/tx-import-settings.js +310 -0
  217. package/tx/importers/tx-import.js +357 -0
  218. package/tx/library/canonical-resource.js +88 -0
  219. package/tx/library/capabilitystatement.js +292 -0
  220. package/tx/library/codesystem.js +774 -0
  221. package/tx/library/conceptmap.js +568 -0
  222. package/tx/library/designations.js +932 -0
  223. package/tx/library/errors.js +77 -0
  224. package/tx/library/extensions.js +117 -0
  225. package/tx/library/namingsystem.js +322 -0
  226. package/tx/library/operation-outcome.js +127 -0
  227. package/tx/library/parameters.js +105 -0
  228. package/tx/library/renderer.js +1559 -0
  229. package/tx/library/terminologycapabilities.js +418 -0
  230. package/tx/library/ucum-parsers.js +1029 -0
  231. package/tx/library/ucum-service.js +370 -0
  232. package/tx/library/ucum-types.js +1099 -0
  233. package/tx/library/valueset.js +543 -0
  234. package/tx/library.js +676 -0
  235. package/tx/ocl/cm-ocl.js +106 -0
  236. package/tx/ocl/cs-ocl.js +39 -0
  237. package/tx/ocl/vs-ocl.js +105 -0
  238. package/tx/operation-context.js +568 -0
  239. package/tx/params.js +613 -0
  240. package/tx/provider.js +403 -0
  241. package/tx/sct/ecl.js +1560 -0
  242. package/tx/sct/expressions.js +2077 -0
  243. package/tx/sct/structures.js +1396 -0
  244. package/tx/tx-html.js +1063 -0
  245. package/tx/tx.fhir.org.yml +39 -0
  246. package/tx/tx.js +927 -0
  247. package/tx/vs/vs-api.js +112 -0
  248. package/tx/vs/vs-database.js +786 -0
  249. package/tx/vs/vs-package.js +358 -0
  250. package/tx/vs/vs-vsac.js +366 -0
  251. package/tx/workers/batch-validate.js +129 -0
  252. package/tx/workers/batch.js +361 -0
  253. package/tx/workers/closure.js +32 -0
  254. package/tx/workers/expand.js +1845 -0
  255. package/tx/workers/lookup.js +407 -0
  256. package/tx/workers/metadata.js +467 -0
  257. package/tx/workers/operations.js +34 -0
  258. package/tx/workers/read.js +164 -0
  259. package/tx/workers/search.js +384 -0
  260. package/tx/workers/subsumes.js +334 -0
  261. package/tx/workers/translate.js +492 -0
  262. package/tx/workers/validate.js +2504 -0
  263. package/tx/workers/worker.js +904 -0
  264. package/tx/xml/capabilitystatement-xml.js +63 -0
  265. package/tx/xml/codesystem-xml.js +62 -0
  266. package/tx/xml/conceptmap-xml.js +65 -0
  267. package/tx/xml/namingsystem-xml.js +65 -0
  268. package/tx/xml/operationoutcome-xml.js +127 -0
  269. package/tx/xml/parameters-xml.js +312 -0
  270. package/tx/xml/terminologycapabilities-xml.js +64 -0
  271. package/tx/xml/valueset-xml.js +64 -0
  272. package/tx/xml/xml-base.js +603 -0
  273. package/vcl/vcl-parser.js +1098 -0
  274. package/vcl/vcl.js +253 -0
  275. package/windows-install.js +19 -0
  276. package/xig/xig-template.html +124 -0
  277. package/xig/xig.js +3049 -0
Binary file
@@ -0,0 +1,626 @@
1
+ body {
2
+ background-color: rgb(243, 243, 243);
3
+ margin: 0px;
4
+ padding: 0px;
5
+ height: 100%;
6
+ font-size: 1em;
7
+ }
8
+
9
+ body.book {
10
+ margin: 20px;
11
+ padding: 20px;
12
+ background-color: #fff;
13
+ }
14
+
15
+ .watermark
16
+ {
17
+ background-image: url(watermark.png);
18
+ background-position: center center;
19
+ s-background-size: 100%; /* CSS3 only, but not really necessary if you make a large enough image */
20
+ background-attachment: fixed;
21
+ position: absolute;
22
+ width: 100%;
23
+ height: 100%;
24
+ margin: 0;
25
+ z-index: 10;
26
+ }
27
+
28
+ i.inherited {
29
+ font-size: 10px;
30
+ opacity: 0.5;
31
+ }
32
+
33
+ p, li {
34
+ font-size: 12px;
35
+ line-height: 1.4em;
36
+ font-family: verdana;
37
+ margin: 0 0 20px 0;
38
+ font-weight: normal;
39
+ }
40
+
41
+ a.cf {
42
+ color: red;
43
+ }
44
+
45
+ a.dict {
46
+ color: Purple;
47
+ }
48
+
49
+ td {
50
+ font-size: 12px;
51
+ line-height: 1.4em;
52
+ font-family: verdana;
53
+ font-weight: normal;
54
+ padding: 3px;
55
+ vertical-align: top;
56
+ }
57
+
58
+ tr {
59
+ font-size: 12px;
60
+ line-height: 1.4em;
61
+ font-family: verdana;
62
+ font-weight: normal;
63
+ padding: 3px;
64
+ vertical-align: top;
65
+ text-align: left;
66
+ }
67
+ table.cols {
68
+ width: 100%;
69
+ }
70
+
71
+ table.cols td {
72
+ border: 1px grey solid;
73
+ border-spacing: 0;
74
+ padding: 5px;
75
+ border-collapse: collapse;
76
+ background-color: #ffffe6;
77
+ }
78
+
79
+ table.list td {
80
+ border-top: 1px silver solid;
81
+ border-spacing: 0;
82
+ }
83
+ table.bare td {
84
+ border-spacing: 0;
85
+ }
86
+
87
+ ul.dict li {
88
+ font-size: 11px;
89
+ line-height: 1.2em;
90
+ font-family: verdana;
91
+ font-weight: normal;
92
+ padding: 3px;
93
+ }
94
+
95
+ table.dict td {
96
+ padding:3px 7px 2px 7px;
97
+ font-size: 11px;
98
+ line-height: 1.2em;
99
+ font-family: verdana;
100
+ font-weight: normal;
101
+ padding: 3px;
102
+ vertical-align: top;
103
+ }
104
+
105
+ table.dict p {
106
+ font-size: 11px;
107
+ }
108
+
109
+ table.dict td.structure {
110
+ padding:3px 7px 2px 7px;
111
+ font-size: 12px;
112
+ line-height: 1.2em;
113
+ font-family: verdana;
114
+ font-weight: bold;
115
+ padding: 3px;
116
+ vertical-align: top;
117
+ border-bottom: 1px silver solid;
118
+ background: #EFEFEF
119
+ }
120
+
121
+
122
+ table {
123
+ margin-bottom: 10px;
124
+ border-collapse:collapse;
125
+ }
126
+
127
+ table.codes{
128
+ margin-bottom: 10px;
129
+ border: 1px black solid;
130
+ }
131
+
132
+ table.codes td {
133
+ border:1px solid silver;
134
+ padding:3px 7px 2px 7px;
135
+ font-size: 12px;
136
+ line-height: 1.4em;
137
+ font-family: verdana;
138
+ font-weight: normal;
139
+ padding: 3px;
140
+ vertical-align: top;
141
+ }
142
+
143
+ table.grid{
144
+ margin-bottom: 10px;
145
+ border: 1px black solid;
146
+ margin-right: auto;
147
+
148
+ }
149
+
150
+ table.grid th {
151
+ border:1px solid silver;
152
+ padding:3px 7px 2px 7px;
153
+ font-size: 12px;
154
+ line-height: 1.4em;
155
+ font-family: verdana;
156
+ font-weight: bold;
157
+ padding: 3px;
158
+ vertical-align: top;
159
+ }
160
+
161
+
162
+ table.grid td {
163
+ border:1px solid silver;
164
+ padding:3px 7px 2px 7px;
165
+ font-size: 12px;
166
+ line-height: 1.4em;
167
+ font-family: verdana;
168
+ font-weight: normal;
169
+ padding: 3px;
170
+ vertical-align: top;
171
+ }
172
+
173
+ ul {
174
+ margin: 10px 0;
175
+ padding: 0 0 0 25px;
176
+ }
177
+
178
+ .dense li {
179
+ margin: 0 0 0 0;
180
+ }
181
+ li {
182
+ margin: 0 0 5px 0;
183
+ }
184
+
185
+ h1 {
186
+ font-size: 16px;
187
+ margin: 0 0 4px 0;
188
+ font-family: verdana;
189
+ border-bottom: 1px solid #7e7e7e;
190
+ padding-bottom: 2px;
191
+ }
192
+
193
+ h2 {
194
+ font-family: verdana;
195
+ line-height: 1.2em;
196
+ font-size: 14px;
197
+ margin: 0 0 3px 0;
198
+ margin-top: 15px;
199
+ border-bottom: 1px solid #dcdcdc;
200
+ padding-bottom: 2px;
201
+ }
202
+
203
+
204
+ h3 {
205
+ font-family: verdana;
206
+ line-height: 1.2em;
207
+ font-size: 12px;
208
+ margin: 0 0 3px 0;
209
+ margin-top: 10px;
210
+ }
211
+
212
+ h4 {
213
+ font-family: verdana;
214
+ line-height: 1.2em;
215
+ font-size: 11px;
216
+ margin: 0 0 3px 0;
217
+ margin-top: 10px;
218
+ }
219
+
220
+
221
+ div.content {
222
+ background-color: #fff;
223
+ margin-left: 180px;
224
+ padding: 5px;
225
+ border-left: 1px solid #dcdcdc;
226
+ }
227
+
228
+ div.use {
229
+ border: 1px solid #dcdcdc;
230
+ background: #EEEEEE ;
231
+ padding: 5px;
232
+ }
233
+
234
+ div.mapping {
235
+ border: 1px solid #dcdcdc;
236
+ background: #e4dbf9 ;
237
+ padding: 5px;
238
+ margin-bottom: 10px;
239
+ font-size: 0.75em;
240
+ width: 670px;
241
+ }
242
+
243
+
244
+ div.example {
245
+ border: 1px solid #dcdcdc;
246
+ background: #FFECDD ;
247
+ padding: 5px;
248
+ margin-bottom: 10px;
249
+ font-size: 0.75em;
250
+ width: 670px;
251
+ }
252
+
253
+ div.sidebar h2{
254
+ border-bottom: 1px solid #dcdcdc;
255
+ padding-bottom: 2px;
256
+ padding-top: 0px;
257
+ margin-top: 0px;
258
+ font-weight: normal;
259
+ margin-left: 8px;
260
+ margin-bottom: 0px;
261
+ font-size: 12px;
262
+ }
263
+
264
+ div.sidebar p {
265
+ padding-bottom: 0px;
266
+ padding-top: 10px;
267
+ font-weight: normal;
268
+ margin-left: 8px;
269
+ font-size: 12px;
270
+ margin-bottom: 8px;
271
+ }
272
+
273
+ div.sidebar ul {
274
+ list-style: none;
275
+ padding: 0px;
276
+ margin-left: 6px;
277
+ font-size: 11px;
278
+ line-height: 2.125em;
279
+ }
280
+
281
+ div.sidebar li {
282
+ margin: 0px 0px 0px 6px;
283
+ padding: 0px;
284
+ font-size: 11px;
285
+ line-height: 2.125m;
286
+ }
287
+
288
+ div.sidebar {
289
+ position: fixed;
290
+ width: 180px;
291
+ left: 0px;
292
+ top: 0;
293
+ bottom: 0;
294
+ overflow-y : auto;
295
+ }
296
+
297
+ pre.spec {
298
+ border: 1px solid #dcdcdc;
299
+ font-size: 11px;
300
+ background: #FFFFE0 ;
301
+ padding: 5px;
302
+ width: 650px;
303
+ }
304
+
305
+ pre.json {
306
+ border: 1px solid #dcdcdc;
307
+ font-size: 11px;
308
+ background: #EFFFEF ;
309
+ padding: 5px;
310
+ width: 650px;
311
+ }
312
+
313
+ pre.xml {
314
+ font-family: 'Courier New';
315
+ font-size: 9pt;
316
+ padding: 2px;
317
+ background: #F0FFFF ;
318
+ width: 650px;
319
+ }
320
+
321
+ a.xmltag {
322
+ color: Navy;
323
+ }
324
+ a.xmltag :visited {
325
+ color: Navy;
326
+ }
327
+
328
+ a.xmltag :hover {
329
+ color: Blue;
330
+ }
331
+
332
+ span.xmltag {
333
+ color: Navy;
334
+ }
335
+ span.xmltagred {
336
+ color: Maroon;
337
+ }
338
+
339
+ span.xmlcomment {
340
+ color: Grey;
341
+ }
342
+
343
+ span.xmlattr {
344
+ color: Maroon;
345
+ }
346
+
347
+ span.xmlattrvalue {
348
+ color: DarkGreen;
349
+ }
350
+
351
+
352
+ pre a {
353
+ color: darkgreen;
354
+ text-decoration: none;
355
+ border: 0;
356
+
357
+ }
358
+
359
+ @media all
360
+ {
361
+ .page-break { display:none; }
362
+ }
363
+
364
+ @media print
365
+ {
366
+ .page-break { display:block; page-break-before:always; }
367
+ }
368
+
369
+ ul.navtop
370
+ {
371
+ list-style: none outside none;
372
+ display: block;
373
+ font-family: sans serif;
374
+ margin: 0 0 8px 0;
375
+ padding:0px;
376
+ }
377
+
378
+ li.selected
379
+ {
380
+ white-space: nowrap;
381
+ display: inline-block;
382
+ background-color: white;
383
+ border-right: 1px solid #adcbb9;
384
+ margin: 0px;
385
+ padding: 0px;
386
+ }
387
+
388
+ li.spacerleft
389
+ {
390
+ white-space: nowrap;
391
+ display: inline-block;
392
+ background-color: white;
393
+ border-bottom: 1px solid #adcbb9;
394
+ border-right: 1px solid #adcbb9;
395
+ margin: 0px;
396
+ padding: 0px;
397
+ }
398
+
399
+ li.spacerright
400
+ {
401
+ white-space: nowrap;
402
+ display: inline-block;
403
+ background-color: white;
404
+ border-bottom: 1px solid #adcbb9;
405
+ margin: 0px;
406
+ padding: 0px;
407
+ width: 160px;
408
+ }
409
+
410
+ li.nselected
411
+ {
412
+ white-space: nowrap;
413
+ display: inline-block;
414
+ background-color: #eeeeee;
415
+ border-right: 1px solid #adcbb9;
416
+ margin: 0px;
417
+ border-bottom: 1px solid #adcbb9;
418
+ padding: 0px;
419
+ background-image: url(strip.png);
420
+ background-repeat: x-repeat;
421
+ }
422
+
423
+ li.wiki
424
+ {
425
+ white-space: nowrap;
426
+ display: inline-block;
427
+ background-color: #fff;
428
+ margin: 0px;
429
+ border-bottom: 1px solid #adcbb9;
430
+ padding: 0px;
431
+ }
432
+
433
+
434
+ div.navtop
435
+ {
436
+ margin: 0px;
437
+ padding: 0px;
438
+ }
439
+
440
+ ul.navtop a
441
+ {
442
+ margin: 0px;
443
+ padding: 0px;
444
+ color: black;
445
+ font-size: 10px;
446
+
447
+ }
448
+
449
+ ul.navtop span
450
+ {
451
+ display: inline-block;
452
+ margin: 0px;
453
+ padding: 3px 3px 3px 3px;
454
+ font-size: 10px;
455
+ }
456
+
457
+ span.forprint
458
+ {
459
+ display: none;
460
+ }
461
+
462
+ p.status
463
+ {
464
+ color: navy;
465
+ border: 1px solid navy;
466
+ background-color: Mistyrose;
467
+ }
468
+
469
+
470
+ div.sidebar p.note
471
+ {
472
+ color: maroon;
473
+ font-size: 10px;
474
+ padding-top: 0px;
475
+ padding-bottom: 0px;
476
+ }
477
+
478
+ div.itoc
479
+ {
480
+ margin: 4px;
481
+ padding: 4px;
482
+ float: right;
483
+ z-index: 10;
484
+ width: 150px;
485
+ background-color: #ffeb7e;
486
+ border: 1px solid navy;
487
+ }
488
+
489
+ div.itoc p
490
+ {
491
+ font-size: 10px;
492
+ font-weight: bold;
493
+ margin: 5px;
494
+ padding: 0px;
495
+ }
496
+
497
+ div.itoc p.link
498
+ {
499
+ font-size: 10px;
500
+ padding-left: 8px;
501
+ margin: 0px;
502
+ }
503
+
504
+ span.sectioncount {
505
+ color: silver;
506
+ x-position: absolute;
507
+ x-right: 0;
508
+ x-margin-right: 30px;
509
+ }
510
+
511
+ @font-face {
512
+ font-family: 'OpenSansCondensedLight';
513
+ src: url('OpenSans-CondLight-webfont.eot');
514
+ src: url('OpenSans-CondLight-webfont.eot?#iefix') format('embedded-opentype'),
515
+ url('OpenSans-CondLight-webfont.woff') format('woff'),
516
+ url('OpenSans-CondLight-webfont.ttf') format('truetype'),
517
+ url('OpenSans-CondLight-webfont.svg#open_sanscondensed_light') format('svg');
518
+ font-weight: normal;
519
+ font-style: normal;
520
+
521
+ }
522
+
523
+ @font-face {
524
+ font-family: 'OpenSansCondensedBold';
525
+ src: url('OpenSans-CondBold-webfont.eot');
526
+ src: url('OpenSans-CondBold-webfont.eot?#iefix') format('embedded-opentype'),
527
+ url('OpenSans-CondBold-webfont.woff') format('woff'),
528
+ url('OpenSans-CondBold-webfont.ttf') format('truetype'),
529
+ url('OpenSans-CondBold-webfont.svg#open_sans_condensedbold') format('svg');
530
+ font-weight: normal;
531
+ font-style: normal;
532
+
533
+ }
534
+
535
+ .diagram-class-title {
536
+ font-size: 1em;
537
+ text-anchor: middle;
538
+ font-family: OpenSansCondensedLight;
539
+ font-weight: regular;
540
+ }
541
+
542
+ .diagram-resource {
543
+ font-family: OpenSansCondensedBold;
544
+ font-weight: bold;
545
+ }
546
+
547
+ .diagram-class-title-link {
548
+ font-size: .9em;
549
+ text-anchor: middle;
550
+ font-family: OpenSansCondensedLight;
551
+ font-weight: regular;
552
+ }
553
+
554
+ .diagram-class-reference {
555
+ fill: navy;
556
+ }
557
+
558
+ .diagram-class-detail {
559
+ font-size: .8em;
560
+ text-anchor: left;
561
+ font-family: OpenSansCondensedLight;
562
+ font-weight: regular;
563
+ }
564
+
565
+ .diagram-class-linkage {
566
+ font-size: .9em;
567
+ text-anchor: middle;
568
+ font-family: OpenSansCondensedLight;
569
+ font-weight: regular;
570
+ opacity: 1;
571
+ }
572
+
573
+ .hierarchy {
574
+ border: 0px;
575
+ padding:0px 4px 0px 4px;
576
+ font-size: 11px;
577
+ font-family: verdana;
578
+ vertical-align: top;
579
+ }
580
+
581
+ tr.hierarchy {
582
+ border: 1px #F0F0F0 solid;
583
+ padding:0px 4px 0px 4px;
584
+ font-size: 11px;
585
+ font-family: verdana;
586
+ vertical-align: top;
587
+ }
588
+
589
+ img.hierarchy {
590
+ border: 0px;
591
+ padding:0px;
592
+ vertical-align: top;
593
+ background-color: white;
594
+ }
595
+
596
+ .linecounter {
597
+ counter-reset: listing
598
+ }
599
+
600
+
601
+ code {
602
+ counter-increment: listing;
603
+ }
604
+
605
+ .linecounter i:before {
606
+ content: counter(listing) ". "; color: black;
607
+ }
608
+
609
+ .linecounter i {
610
+ float: left;
611
+ clear: both;
612
+ min-width: 2.5em;
613
+ }
614
+
615
+ .linecounter code:before {
616
+ content: counter(listing) ". ";
617
+ color: black;
618
+ display: inline-block;
619
+ min-width: 2.5em;
620
+ }
621
+
622
+ div.warning {
623
+ background-color: #FFE6E6;
624
+ border: 1px silver solid;
625
+ padding: 5px;
626
+ }
Binary file
@@ -0,0 +1,49 @@
1
+ /*
2
+ * jQuery UI Effects Blind 1.8.16
3
+ *
4
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5
+ * Dual licensed under the MIT or GPL Version 2 licenses.
6
+ * http://jquery.org/license
7
+ *
8
+ * http://docs.jquery.com/UI/Effects/Blind
9
+ *
10
+ * Depends:
11
+ * jquery.effects.core.js
12
+ */
13
+ (function( $, undefined ) {
14
+
15
+ $.effects.blind = function(o) {
16
+
17
+ return this.queue(function() {
18
+
19
+ // Create element
20
+ var el = $(this), props = ['position','top','bottom','left','right'];
21
+
22
+ // Set options
23
+ var mode = $.effects.setMode(el, o.options.mode || 'hide'); // Set Mode
24
+ var direction = o.options.direction || 'vertical'; // Default direction
25
+
26
+ // Adjust
27
+ $.effects.save(el, props); el.show(); // Save & Show
28
+ var wrapper = $.effects.createWrapper(el).css({overflow:'hidden'}); // Create Wrapper
29
+ var ref = (direction == 'vertical') ? 'height' : 'width';
30
+ var distance = (direction == 'vertical') ? wrapper.height() : wrapper.width();
31
+ if(mode == 'show') wrapper.css(ref, 0); // Shift
32
+
33
+ // Animation
34
+ var animation = {};
35
+ animation[ref] = mode == 'show' ? distance : 0;
36
+
37
+ // Animate
38
+ wrapper.animate(animation, o.duration, o.options.easing, function() {
39
+ if(mode == 'hide') el.hide(); // Hide
40
+ $.effects.restore(el, props); $.effects.removeWrapper(el); // Restore
41
+ if(o.callback) o.callback.apply(el[0], arguments); // Callback
42
+ el.dequeue();
43
+ });
44
+
45
+ });
46
+
47
+ };
48
+
49
+ })(jQuery);