@natlibfi/marc-record-merge 6.0.0-beta.1 → 6.0.0-beta.11

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 (263) hide show
  1. package/.github/CODEOWNERS +9 -0
  2. package/.github/dependabot.yml +41 -0
  3. package/.github/workflows/melinda-node-tests.yml +60 -0
  4. package/LICENSE +21 -0
  5. package/README.md +122 -2
  6. package/dist/index.js +56 -42
  7. package/dist/index.js.map +1 -1
  8. package/dist/index.spec.js +59 -0
  9. package/dist/index.spec.js.map +1 -0
  10. package/dist/reducers/copy.js +254 -80
  11. package/dist/reducers/copy.js.map +1 -1
  12. package/dist/reducers/copy.spec.js +57 -72
  13. package/dist/reducers/copy.spec.js.map +1 -1
  14. package/dist/reducers/copy2.spec.js +67 -0
  15. package/dist/reducers/copy2.spec.js.map +1 -0
  16. package/dist/reducers/index.js +13 -24
  17. package/dist/reducers/index.js.map +1 -1
  18. package/dist/reducers/select.js +63 -58
  19. package/dist/reducers/select.js.map +1 -1
  20. package/dist/reducers/select.spec.js +45 -92
  21. package/dist/reducers/select.spec.js.map +1 -1
  22. package/dist/reducers/select2.spec.js +58 -0
  23. package/dist/reducers/select2.spec.js.map +1 -0
  24. package/package.json +33 -32
  25. package/src/index.js +50 -32
  26. package/src/index.spec.js +45 -0
  27. package/src/reducers/copy.js +262 -80
  28. package/src/reducers/copy.spec.js +50 -48
  29. package/src/reducers/copy2.spec.js +55 -0
  30. package/src/reducers/index.js +3 -30
  31. package/src/reducers/select.js +53 -39
  32. package/src/reducers/select.spec.js +41 -56
  33. package/src/reducers/select2.spec.js +49 -0
  34. package/test-fixtures/index/01/base.json +24 -0
  35. package/test-fixtures/index/01/merged.json +24 -0
  36. package/test-fixtures/index/01/metadata.json +8 -0
  37. package/test-fixtures/index/01/source.json +40 -0
  38. package/test-fixtures/index/02/base.json +24 -0
  39. package/test-fixtures/index/02/merged.json +24 -0
  40. package/test-fixtures/index/02/metadata.json +7 -0
  41. package/test-fixtures/index/02/source.json +40 -0
  42. package/test-fixtures/reducers/copy/{01/base.json → 01 - copy/01/base.json } +1 -1
  43. package/test-fixtures/reducers/copy/{01 → 01 - copy/01}/merged.json +0 -0
  44. package/test-fixtures/reducers/copy/01 - copy/01/metadata.json +4 -0
  45. package/test-fixtures/reducers/copy/{01 → 01 - copy/01}/source.json +0 -0
  46. package/test-fixtures/reducers/copy/{02/source.json → 01 - copy/02/base.json} +0 -0
  47. package/test-fixtures/reducers/copy/{02 → 01 - copy/02}/merged.json +0 -0
  48. package/test-fixtures/reducers/copy/01 - copy/02/metadata.json +4 -0
  49. package/test-fixtures/reducers/copy/{02/base.json → 01 - copy/02/source.json } +1 -1
  50. package/test-fixtures/reducers/copy/{03/base.json → 01 - copy/03/base.json } +1 -1
  51. package/test-fixtures/reducers/copy/{03 → 01 - copy/03}/merged.json +0 -0
  52. package/test-fixtures/reducers/copy/01 - copy/03/metadata.json +4 -0
  53. package/test-fixtures/reducers/copy/{03 → 01 - copy/03}/source.json +0 -0
  54. package/test-fixtures/reducers/copy/{05/base.json → 01 - copy/04/base.json } +1 -1
  55. package/test-fixtures/reducers/copy/{04/merged.json → 01 - copy/04/merged.json } +1 -1
  56. package/test-fixtures/reducers/copy/01 - copy/04/metadata.json +4 -0
  57. package/test-fixtures/reducers/copy/{04/source.json → 01 - copy/04/source.json } +1 -1
  58. package/test-fixtures/reducers/copy/{04/base.json → 01 - copy/05/base.json } +1 -1
  59. package/test-fixtures/reducers/copy/01 - copy/05/merged.json +77 -0
  60. package/test-fixtures/reducers/copy/01 - copy/05/metadata.json +4 -0
  61. package/test-fixtures/reducers/copy/01 - copy/05/source.json +62 -0
  62. package/test-fixtures/reducers/copy/01 - copy/06/base.json +24 -0
  63. package/test-fixtures/reducers/copy/01 - copy/06/merged.json +39 -0
  64. package/test-fixtures/reducers/copy/01 - copy/06/metadata.json +4 -0
  65. package/test-fixtures/reducers/copy/01 - copy/06/source.json +24 -0
  66. package/test-fixtures/reducers/copy/01 - copy/07/base.json +39 -0
  67. package/test-fixtures/reducers/copy/01 - copy/07/merged.json +39 -0
  68. package/test-fixtures/reducers/copy/01 - copy/07/metadata.json +5 -0
  69. package/test-fixtures/reducers/copy/01 - copy/07/source.json +24 -0
  70. package/test-fixtures/reducers/copy/01 - copy/08/base.json +28 -0
  71. package/test-fixtures/reducers/copy/01 - copy/08/merged.json +28 -0
  72. package/test-fixtures/reducers/copy/01 - copy/08/metadata.json +4 -0
  73. package/test-fixtures/reducers/copy/01 - copy/08/source.json +24 -0
  74. package/test-fixtures/reducers/copy/02 - doNotCopyIfFieldPresent/01/base.json +17 -0
  75. package/test-fixtures/reducers/copy/02 - doNotCopyIfFieldPresent/01/merged.json +20 -0
  76. package/test-fixtures/reducers/copy/02 - doNotCopyIfFieldPresent/01/metadata.json +6 -0
  77. package/test-fixtures/reducers/copy/02 - doNotCopyIfFieldPresent/01/source.json +20 -0
  78. package/test-fixtures/reducers/copy/02 - doNotCopyIfFieldPresent/02/base.json +9 -0
  79. package/test-fixtures/reducers/copy/02 - doNotCopyIfFieldPresent/02/merged.json +20 -0
  80. package/test-fixtures/reducers/copy/02 - doNotCopyIfFieldPresent/02/metadata.json +6 -0
  81. package/test-fixtures/reducers/copy/02 - doNotCopyIfFieldPresent/02/source.json +20 -0
  82. package/test-fixtures/reducers/copy/03 - compareTagsOnly/01/base.json +24 -0
  83. package/test-fixtures/reducers/copy/03 - compareTagsOnly/01/merged.json +24 -0
  84. package/test-fixtures/reducers/copy/03 - compareTagsOnly/01/metadata.json +5 -0
  85. package/test-fixtures/reducers/copy/03 - compareTagsOnly/01/source.json +24 -0
  86. package/test-fixtures/reducers/copy/03 - compareTagsOnly/02/base.json +24 -0
  87. package/test-fixtures/reducers/copy/03 - compareTagsOnly/02/merged.json +100 -0
  88. package/test-fixtures/reducers/copy/03 - compareTagsOnly/02/metadata.json +5 -0
  89. package/test-fixtures/reducers/copy/03 - compareTagsOnly/02/source.json +100 -0
  90. package/test-fixtures/reducers/copy/04 - compareWithoutIndicators/01/base.json +24 -0
  91. package/test-fixtures/reducers/copy/04 - compareWithoutIndicators/01/merged.json +24 -0
  92. package/test-fixtures/reducers/copy/04 - compareWithoutIndicators/01/metadata.json +5 -0
  93. package/test-fixtures/reducers/copy/04 - compareWithoutIndicators/01/source.json +24 -0
  94. package/test-fixtures/reducers/copy/04 - compareWithoutIndicators/02/base.json +24 -0
  95. package/test-fixtures/reducers/copy/04 - compareWithoutIndicators/02/merged.json +39 -0
  96. package/test-fixtures/reducers/copy/04 - compareWithoutIndicators/02/metadata.json +5 -0
  97. package/test-fixtures/reducers/copy/04 - compareWithoutIndicators/02/source.json +24 -0
  98. package/test-fixtures/reducers/copy/04 - compareWithoutIndicators/03/metadata.json +6 -0
  99. package/test-fixtures/reducers/copy/04 - compareWithoutIndicators/04/base.json +20 -0
  100. package/test-fixtures/reducers/copy/04 - compareWithoutIndicators/04/merged.json +31 -0
  101. package/test-fixtures/reducers/copy/04 - compareWithoutIndicators/04/metadata.json +5 -0
  102. package/test-fixtures/reducers/copy/04 - compareWithoutIndicators/04/source.json +20 -0
  103. package/test-fixtures/reducers/copy/05 - copyUnless/01/base.json +9 -0
  104. package/test-fixtures/reducers/copy/05 - copyUnless/01/merged.json +24 -0
  105. package/test-fixtures/reducers/copy/05 - copyUnless/01/metadata.json +5 -0
  106. package/test-fixtures/reducers/copy/05 - copyUnless/01/source.json +47 -0
  107. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/01/base.json +24 -0
  108. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/01/merged.json +39 -0
  109. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/01/metadata.json +5 -0
  110. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/01/source.json +24 -0
  111. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/02/base.json +24 -0
  112. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/02/merged.json +24 -0
  113. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/02/metadata.json +5 -0
  114. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/02/source.json +24 -0
  115. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/03/base.json +28 -0
  116. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/03/merged.json +43 -0
  117. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/03/metadata.json +5 -0
  118. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/03/source.json +24 -0
  119. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/04/base.json +28 -0
  120. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/04/merged.json +28 -0
  121. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/04/metadata.json +5 -0
  122. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/04/source.json +24 -0
  123. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/05/base.json +20 -0
  124. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/05/merged.json +35 -0
  125. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/05/metadata.json +5 -0
  126. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/05/source.json +24 -0
  127. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/06/base.json +20 -0
  128. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/06/merged.json +35 -0
  129. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/06/metadata.json +5 -0
  130. package/test-fixtures/reducers/copy/06 - subfieldsMustBeIdentical/06/source.json +24 -0
  131. package/test-fixtures/reducers/copy/07 - excludeSubfields/01/base.json +39 -0
  132. package/test-fixtures/reducers/copy/07 - excludeSubfields/01/merged.json +39 -0
  133. package/test-fixtures/reducers/copy/07 - excludeSubfields/01/metadata.json +8 -0
  134. package/test-fixtures/reducers/copy/{05/source.json → 07 - excludeSubfields/01/source.json } +1 -1
  135. package/test-fixtures/reducers/copy/07 - excludeSubfields/02/base.json +39 -0
  136. package/test-fixtures/reducers/copy/{05/merged.json → 07 - excludeSubfields/02/merged.json } +5 -5
  137. package/test-fixtures/reducers/copy/07 - excludeSubfields/02/metadata.json +5 -0
  138. package/test-fixtures/reducers/copy/07 - excludeSubfields/02/source.json +43 -0
  139. package/test-fixtures/reducers/copy/08 - dropSubfields/01/base.json +35 -0
  140. package/test-fixtures/reducers/copy/08 - dropSubfields/01/merged.json +54 -0
  141. package/test-fixtures/reducers/copy/08 - dropSubfields/01/metadata.json +5 -0
  142. package/test-fixtures/reducers/copy/08 - dropSubfields/01/source.json +43 -0
  143. package/test-fixtures/reducers/copy/08 - dropSubfields/02/base.json +43 -0
  144. package/test-fixtures/reducers/copy/08 - dropSubfields/02/merged.json +58 -0
  145. package/test-fixtures/reducers/copy/08 - dropSubfields/02/metadata.json +5 -0
  146. package/test-fixtures/reducers/copy/08 - dropSubfields/02/source.json +32 -0
  147. package/test-fixtures/reducers/copy/08 - dropSubfields/03/base.json +43 -0
  148. package/test-fixtures/reducers/copy/08 - dropSubfields/03/merged.json +58 -0
  149. package/test-fixtures/reducers/copy/08 - dropSubfields/03/metadata.json +5 -0
  150. package/test-fixtures/reducers/copy/08 - dropSubfields/03/source.json +32 -0
  151. package/test-fixtures/reducers/copy/08 - dropSubfields/04/base.json +43 -0
  152. package/test-fixtures/reducers/copy/08 - dropSubfields/04/merged.json +43 -0
  153. package/test-fixtures/reducers/copy/08 - dropSubfields/04/metadata.json +5 -0
  154. package/test-fixtures/reducers/copy/08 - dropSubfields/04/source.json +32 -0
  155. package/test-fixtures/reducers/copy/09 - swapSubfieldCode/01/base.json +9 -0
  156. package/test-fixtures/reducers/copy/09 - swapSubfieldCode/01/merged.json +20 -0
  157. package/test-fixtures/reducers/copy/09 - swapSubfieldCode/01/metadata.json +6 -0
  158. package/test-fixtures/reducers/copy/09 - swapSubfieldCode/01/source.json +20 -0
  159. package/test-fixtures/reducers/copy/09 - swapSubfieldCode/02/base.json +9 -0
  160. package/test-fixtures/reducers/copy/09 - swapSubfieldCode/02/merged.json +20 -0
  161. package/test-fixtures/reducers/copy/09 - swapSubfieldCode/02/metadata.json +6 -0
  162. package/test-fixtures/reducers/copy/09 - swapSubfieldCode/02/source.json +20 -0
  163. package/test-fixtures/reducers/copy/09 - swapSubfieldCode/03/base.json +9 -0
  164. package/test-fixtures/reducers/copy/09 - swapSubfieldCode/03/merged.json +31 -0
  165. package/test-fixtures/reducers/copy/09 - swapSubfieldCode/03/metadata.json +6 -0
  166. package/test-fixtures/reducers/copy/09 - swapSubfieldCode/03/source.json +31 -0
  167. package/test-fixtures/reducers/copy/09 - swapSubfieldCode/04/base.json +9 -0
  168. package/test-fixtures/reducers/copy/09 - swapSubfieldCode/04/merged.json +42 -0
  169. package/test-fixtures/reducers/copy/09 - swapSubfieldCode/04/metadata.json +6 -0
  170. package/test-fixtures/reducers/copy/09 - swapSubfieldCode/04/source.json +42 -0
  171. package/test-fixtures/reducers/copy/10 - swapTag/01/base.json +17 -0
  172. package/test-fixtures/reducers/copy/10 - swapTag/01/merged.json +28 -0
  173. package/test-fixtures/reducers/copy/10 - swapTag/01/metadata.json +6 -0
  174. package/test-fixtures/reducers/copy/10 - swapTag/01/source.json +20 -0
  175. package/test-fixtures/reducers/copy/11 - compareWithoutTag/01/base.json +28 -0
  176. package/test-fixtures/reducers/copy/11 - compareWithoutTag/01/merged.json +28 -0
  177. package/test-fixtures/reducers/copy/11 - compareWithoutTag/01/metadata.json +6 -0
  178. package/test-fixtures/reducers/copy/11 - compareWithoutTag/01/source.json +20 -0
  179. package/test-fixtures/reducers/copy/11 - compareWithoutTag/02/base.json +28 -0
  180. package/test-fixtures/reducers/copy/11 - compareWithoutTag/02/merged.json +39 -0
  181. package/test-fixtures/reducers/copy/11 - compareWithoutTag/02/metadata.json +6 -0
  182. package/test-fixtures/reducers/copy/11 - compareWithoutTag/02/source.json +31 -0
  183. package/test-fixtures/reducers/copy/11 - compareWithoutTag/03/base.json +28 -0
  184. package/test-fixtures/reducers/copy/11 - compareWithoutTag/03/merged.json +28 -0
  185. package/test-fixtures/reducers/copy/11 - compareWithoutTag/03/metadata.json +7 -0
  186. package/test-fixtures/reducers/copy/11 - compareWithoutTag/03/source.json +20 -0
  187. package/test-fixtures/reducers/copy/11 - compareWithoutTag/04/base.json +17 -0
  188. package/test-fixtures/reducers/copy/11 - compareWithoutTag/04/merged.json +28 -0
  189. package/test-fixtures/reducers/copy/11 - compareWithoutTag/04/metadata.json +7 -0
  190. package/test-fixtures/reducers/copy/11 - compareWithoutTag/04/source.json +31 -0
  191. package/test-fixtures/reducers/copy/11 - compareWithoutTag/05/base.json +28 -0
  192. package/test-fixtures/reducers/copy/11 - compareWithoutTag/05/merged.json +28 -0
  193. package/test-fixtures/reducers/copy/11 - compareWithoutTag/05/metadata.json +7 -0
  194. package/test-fixtures/reducers/copy/11 - compareWithoutTag/05/source.json +28 -0
  195. package/test-fixtures/reducers/metadata.json +4 -0
  196. package/test-fixtures/reducers/select/01/metadata.json +5 -0
  197. package/test-fixtures/reducers/select/02/metadata.json +4 -0
  198. package/test-fixtures/reducers/select/03/metadata.json +4 -0
  199. package/test-fixtures/reducers/select/04/metadata.json +5 -0
  200. package/test-fixtures/reducers/select/05/metadata.json +4 -0
  201. package/test-fixtures/reducers/select/06/base.json +4 -0
  202. package/test-fixtures/reducers/select/06/merged.json +4 -0
  203. package/test-fixtures/reducers/select/06/metadata.json +4 -0
  204. package/test-fixtures/reducers/select/06/source.json +4 -0
  205. package/test-fixtures/reducers/select/07/metadata.json +5 -0
  206. package/test-fixtures/reducers/select/08/metadata.json +4 -0
  207. package/test-fixtures/reducers/select/09/metadata.json +4 -0
  208. package/test-fixtures/reducers/select/10/metadata.json +5 -0
  209. package/test-fixtures/reducers/select/11/metadata.json +4 -0
  210. package/test-fixtures/reducers/select/12/metadata.json +5 -0
  211. package/test-fixtures/reducers/select/13/metadata.json +4 -0
  212. package/test-fixtures/reducers/select/14/base.json +24 -0
  213. package/test-fixtures/reducers/select/14/merged.json +24 -0
  214. package/test-fixtures/reducers/select/14/metadata.json +4 -0
  215. package/test-fixtures/reducers/select/14/source.json +24 -0
  216. package/.drone.yml +0 -92
  217. package/.nyc_output/7ecda3cd-9f84-4416-a466-fa1e5889c6a3.json +0 -1
  218. package/.nyc_output/processinfo/7ecda3cd-9f84-4416-a466-fa1e5889c6a3.json +0 -1
  219. package/.nyc_output/processinfo/index.json +0 -1
  220. package/LICENSE.txt +0 -165
  221. package/coverage/base.css +0 -224
  222. package/coverage/block-navigation.js +0 -79
  223. package/coverage/copy.js.html +0 -344
  224. package/coverage/favicon.png +0 -0
  225. package/coverage/index.html +0 -126
  226. package/coverage/lcov-report/base.css +0 -224
  227. package/coverage/lcov-report/block-navigation.js +0 -79
  228. package/coverage/lcov-report/copy.js.html +0 -344
  229. package/coverage/lcov-report/favicon.png +0 -0
  230. package/coverage/lcov-report/index.html +0 -126
  231. package/coverage/lcov-report/prettify.css +0 -1
  232. package/coverage/lcov-report/prettify.js +0 -2
  233. package/coverage/lcov-report/select.js.html +0 -431
  234. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  235. package/coverage/lcov-report/sorter.js +0 -170
  236. package/coverage/lcov.info +0 -195
  237. package/coverage/prettify.css +0 -1
  238. package/coverage/prettify.js +0 -2
  239. package/coverage/select.js.html +0 -431
  240. package/coverage/sort-arrow-sprite.png +0 -0
  241. package/coverage/sorter.js +0 -170
  242. package/test-fixtures/reducers/copy/01/pattern.txt +0 -1
  243. package/test-fixtures/reducers/copy/02/pattern.txt +0 -1
  244. package/test-fixtures/reducers/copy/03/pattern.txt +0 -1
  245. package/test-fixtures/reducers/copy/04/pattern.txt +0 -1
  246. package/test-fixtures/reducers/copy/05/pattern.txt +0 -1
  247. package/test-fixtures/reducers/select/01/expected-error.txt +0 -1
  248. package/test-fixtures/reducers/select/01/pattern.txt +0 -1
  249. package/test-fixtures/reducers/select/02/pattern.txt +0 -1
  250. package/test-fixtures/reducers/select/03/pattern.txt +0 -1
  251. package/test-fixtures/reducers/select/04/pattern.txt +0 -1
  252. package/test-fixtures/reducers/select/05/pattern.txt +0 -1
  253. package/test-fixtures/reducers/select/06/pattern.txt +0 -1
  254. package/test-fixtures/reducers/select/07/equalityFunction.txt +0 -1
  255. package/test-fixtures/reducers/select/07/pattern.txt +0 -1
  256. package/test-fixtures/reducers/select/08/pattern.txt +0 -1
  257. package/test-fixtures/reducers/select/09/pattern.txt +0 -1
  258. package/test-fixtures/reducers/select/10/equalityFunction.txt +0 -1
  259. package/test-fixtures/reducers/select/10/pattern.txt +0 -1
  260. package/test-fixtures/reducers/select/11/pattern.txt +0 -1
  261. package/test-fixtures/reducers/select/12/equalityFunction.txt +0 -1
  262. package/test-fixtures/reducers/select/12/pattern.txt +0 -1
  263. package/test-fixtures/reducers/select/13/pattern.txt +0 -1
@@ -1,170 +0,0 @@
1
- /* eslint-disable */
2
- var addSorting = (function() {
3
- 'use strict';
4
- var cols,
5
- currentSort = {
6
- index: 0,
7
- desc: false
8
- };
9
-
10
- // returns the summary table element
11
- function getTable() {
12
- return document.querySelector('.coverage-summary');
13
- }
14
- // returns the thead element of the summary table
15
- function getTableHeader() {
16
- return getTable().querySelector('thead tr');
17
- }
18
- // returns the tbody element of the summary table
19
- function getTableBody() {
20
- return getTable().querySelector('tbody');
21
- }
22
- // returns the th element for nth column
23
- function getNthColumn(n) {
24
- return getTableHeader().querySelectorAll('th')[n];
25
- }
26
-
27
- // loads all columns
28
- function loadColumns() {
29
- var colNodes = getTableHeader().querySelectorAll('th'),
30
- colNode,
31
- cols = [],
32
- col,
33
- i;
34
-
35
- for (i = 0; i < colNodes.length; i += 1) {
36
- colNode = colNodes[i];
37
- col = {
38
- key: colNode.getAttribute('data-col'),
39
- sortable: !colNode.getAttribute('data-nosort'),
40
- type: colNode.getAttribute('data-type') || 'string'
41
- };
42
- cols.push(col);
43
- if (col.sortable) {
44
- col.defaultDescSort = col.type === 'number';
45
- colNode.innerHTML =
46
- colNode.innerHTML + '<span class="sorter"></span>';
47
- }
48
- }
49
- return cols;
50
- }
51
- // attaches a data attribute to every tr element with an object
52
- // of data values keyed by column name
53
- function loadRowData(tableRow) {
54
- var tableCols = tableRow.querySelectorAll('td'),
55
- colNode,
56
- col,
57
- data = {},
58
- i,
59
- val;
60
- for (i = 0; i < tableCols.length; i += 1) {
61
- colNode = tableCols[i];
62
- col = cols[i];
63
- val = colNode.getAttribute('data-value');
64
- if (col.type === 'number') {
65
- val = Number(val);
66
- }
67
- data[col.key] = val;
68
- }
69
- return data;
70
- }
71
- // loads all row data
72
- function loadData() {
73
- var rows = getTableBody().querySelectorAll('tr'),
74
- i;
75
-
76
- for (i = 0; i < rows.length; i += 1) {
77
- rows[i].data = loadRowData(rows[i]);
78
- }
79
- }
80
- // sorts the table using the data for the ith column
81
- function sortByIndex(index, desc) {
82
- var key = cols[index].key,
83
- sorter = function(a, b) {
84
- a = a.data[key];
85
- b = b.data[key];
86
- return a < b ? -1 : a > b ? 1 : 0;
87
- },
88
- finalSorter = sorter,
89
- tableBody = document.querySelector('.coverage-summary tbody'),
90
- rowNodes = tableBody.querySelectorAll('tr'),
91
- rows = [],
92
- i;
93
-
94
- if (desc) {
95
- finalSorter = function(a, b) {
96
- return -1 * sorter(a, b);
97
- };
98
- }
99
-
100
- for (i = 0; i < rowNodes.length; i += 1) {
101
- rows.push(rowNodes[i]);
102
- tableBody.removeChild(rowNodes[i]);
103
- }
104
-
105
- rows.sort(finalSorter);
106
-
107
- for (i = 0; i < rows.length; i += 1) {
108
- tableBody.appendChild(rows[i]);
109
- }
110
- }
111
- // removes sort indicators for current column being sorted
112
- function removeSortIndicators() {
113
- var col = getNthColumn(currentSort.index),
114
- cls = col.className;
115
-
116
- cls = cls.replace(/ sorted$/, '').replace(/ sorted-desc$/, '');
117
- col.className = cls;
118
- }
119
- // adds sort indicators for current column being sorted
120
- function addSortIndicators() {
121
- getNthColumn(currentSort.index).className += currentSort.desc
122
- ? ' sorted-desc'
123
- : ' sorted';
124
- }
125
- // adds event listeners for all sorter widgets
126
- function enableUI() {
127
- var i,
128
- el,
129
- ithSorter = function ithSorter(i) {
130
- var col = cols[i];
131
-
132
- return function() {
133
- var desc = col.defaultDescSort;
134
-
135
- if (currentSort.index === i) {
136
- desc = !currentSort.desc;
137
- }
138
- sortByIndex(i, desc);
139
- removeSortIndicators();
140
- currentSort.index = i;
141
- currentSort.desc = desc;
142
- addSortIndicators();
143
- };
144
- };
145
- for (i = 0; i < cols.length; i += 1) {
146
- if (cols[i].sortable) {
147
- // add the click event handler on the th so users
148
- // dont have to click on those tiny arrows
149
- el = getNthColumn(i).querySelector('.sorter').parentElement;
150
- if (el.addEventListener) {
151
- el.addEventListener('click', ithSorter(i));
152
- } else {
153
- el.attachEvent('onclick', ithSorter(i));
154
- }
155
- }
156
- }
157
- }
158
- // adds sorting functionality to the UI
159
- return function() {
160
- if (!getTable()) {
161
- return;
162
- }
163
- cols = loadColumns();
164
- loadData();
165
- addSortIndicators();
166
- enableUI();
167
- };
168
- })();
169
-
170
- window.addEventListener('load', addSorting);
@@ -1,195 +0,0 @@
1
- TN:
2
- SF:src/reducers/copy.js
3
- FN:30,(anonymous_0)
4
- FN:30,(anonymous_1)
5
- FN:36,copyFields
6
- FN:39,(anonymous_3)
7
- FN:42,(anonymous_4)
8
- FN:53,normalizeControlField
9
- FN:57,isIdenticalControlField
10
- FN:62,isIdenticalDataField
11
- FN:69,normalizeSubfield
12
- FN:72,isIdenticalSubfield
13
- FN:74,(anonymous_10)
14
- FN:85,(anonymous_11)
15
- FNF:12
16
- FNH:12
17
- FNDA:5,(anonymous_0)
18
- FNDA:5,(anonymous_1)
19
- FNDA:5,copyFields
20
- FNDA:1,(anonymous_3)
21
- FNDA:7,(anonymous_4)
22
- FNDA:6,normalizeControlField
23
- FNDA:3,isIdenticalControlField
24
- FNDA:6,isIdenticalDataField
25
- FNDA:18,normalizeSubfield
26
- FNDA:7,isIdenticalSubfield
27
- FNDA:11,(anonymous_10)
28
- FNDA:3,(anonymous_11)
29
- DA:30,5
30
- DA:32,5
31
- DA:33,5
32
- DA:34,5
33
- DA:38,5
34
- DA:39,1
35
- DA:40,1
36
- DA:42,4
37
- DA:44,7
38
- DA:45,3
39
- DA:49,4
40
- DA:50,4
41
- DA:54,6
42
- DA:58,3
43
- DA:59,3
44
- DA:60,3
45
- DA:63,6
46
- DA:67,4
47
- DA:70,18
48
- DA:73,7
49
- DA:74,7
50
- DA:75,11
51
- DA:76,11
52
- DA:82,4
53
- DA:85,4
54
- DA:86,4
55
- LF:26
56
- LH:26
57
- BRDA:38,0,0,1
58
- BRDA:38,0,1,4
59
- BRDA:44,1,0,3
60
- BRDA:44,1,1,4
61
- BRDA:49,2,0,4
62
- BRDA:49,2,1,0
63
- BRDA:63,3,0,4
64
- BRDA:63,3,1,2
65
- BRDA:63,4,0,6
66
- BRDA:63,4,1,6
67
- BRDA:63,4,2,6
68
- BRDA:63,4,3,6
69
- BRF:12
70
- BRH:11
71
- end_of_record
72
- TN:
73
- SF:src/reducers/select.js
74
- FN:30,strictEquality
75
- FN:35,subsetEquality
76
- FN:40,(anonymous_2)
77
- FN:40,(anonymous_3)
78
- FN:60,(anonymous_4)
79
- FN:63,(anonymous_5)
80
- FN:66,(anonymous_6)
81
- FN:67,(anonymous_7)
82
- FN:70,(anonymous_8)
83
- FN:71,(anonymous_9)
84
- FN:79,(anonymous_10)
85
- FN:80,(anonymous_11)
86
- FN:82,(anonymous_12)
87
- FN:83,(anonymous_13)
88
- FN:96,replaceBasefieldWithSourcefield
89
- FN:97,(anonymous_15)
90
- FN:102,checkFieldType
91
- FN:103,(anonymous_17)
92
- FN:112,normalizeSubfieldValue
93
- FNF:19
94
- FNH:19
95
- FNDA:54,strictEquality
96
- FNDA:22,subsetEquality
97
- FNDA:12,(anonymous_2)
98
- FNDA:12,(anonymous_3)
99
- FNDA:20,(anonymous_4)
100
- FNDA:22,(anonymous_5)
101
- FNDA:20,(anonymous_6)
102
- FNDA:36,(anonymous_7)
103
- FNDA:22,(anonymous_8)
104
- FNDA:40,(anonymous_9)
105
- FNDA:7,(anonymous_10)
106
- FNDA:3,(anonymous_11)
107
- FNDA:7,(anonymous_12)
108
- FNDA:3,(anonymous_13)
109
- FNDA:3,replaceBasefieldWithSourcefield
110
- FNDA:6,(anonymous_15)
111
- FNDA:24,checkFieldType
112
- FNDA:27,(anonymous_17)
113
- FNDA:42,normalizeSubfieldValue
114
- DA:31,54
115
- DA:36,22
116
- DA:40,12
117
- DA:41,12
118
- DA:42,12
119
- DA:44,12
120
- DA:45,12
121
- DA:47,12
122
- DA:48,1
123
- DA:50,11
124
- DA:51,11
125
- DA:53,11
126
- DA:54,1
127
- DA:56,10
128
- DA:57,10
129
- DA:59,10
130
- DA:60,20
131
- DA:62,10
132
- DA:63,22
133
- DA:65,10
134
- DA:66,20
135
- DA:67,36
136
- DA:69,10
137
- DA:70,22
138
- DA:71,40
139
- DA:73,10
140
- DA:74,2
141
- DA:77,8
142
- DA:78,4
143
- DA:79,7
144
- DA:80,3
145
- DA:81,4
146
- DA:82,7
147
- DA:83,3
148
- DA:85,4
149
- DA:86,1
150
- DA:90,7
151
- DA:91,2
152
- DA:94,5
153
- DA:97,6
154
- DA:98,3
155
- DA:99,3
156
- DA:103,24
157
- DA:104,27
158
- DA:105,0
159
- DA:107,27
160
- DA:109,24
161
- DA:114,42
162
- DA:115,42
163
- LF:49
164
- LH:48
165
- BRDA:31,0,0,54
166
- BRDA:31,0,1,24
167
- BRDA:36,1,0,22
168
- BRDA:36,1,1,12
169
- BRDA:36,1,2,4
170
- BRDA:40,2,0,9
171
- BRDA:47,3,0,1
172
- BRDA:47,3,1,11
173
- BRDA:47,4,0,12
174
- BRDA:47,4,1,11
175
- BRDA:53,5,0,1
176
- BRDA:53,5,1,10
177
- BRDA:73,6,0,2
178
- BRDA:73,6,1,8
179
- BRDA:73,7,0,10
180
- BRDA:73,7,1,6
181
- BRDA:77,8,0,4
182
- BRDA:77,8,1,4
183
- BRDA:77,9,0,8
184
- BRDA:77,9,1,4
185
- BRDA:85,10,0,1
186
- BRDA:85,10,1,3
187
- BRDA:90,11,0,2
188
- BRDA:90,11,1,5
189
- BRDA:90,12,0,7
190
- BRDA:90,12,1,3
191
- BRDA:104,13,0,0
192
- BRDA:104,13,1,27
193
- BRF:28
194
- BRH:27
195
- end_of_record
@@ -1 +0,0 @@
1
- .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee}
@@ -1,2 +0,0 @@
1
- /* eslint-disable */
2
- window.PR_SHOULD_USE_CONTINUATION=true;(function(){var h=["break,continue,do,else,for,if,return,while"];var u=[h,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"];var p=[u,"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"];var l=[p,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"];var x=[p,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"];var R=[x,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"];var r="all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes";var w=[p,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"];var s="caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END";var I=[h,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"];var f=[h,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"];var H=[h,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"];var A=[l,R,w,s+I,f,H];var e=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/;var C="str";var z="kwd";var j="com";var O="typ";var G="lit";var L="pun";var F="pln";var m="tag";var E="dec";var J="src";var P="atn";var n="atv";var N="nocode";var M="(?:^^\\.?|[+-]|\\!|\\!=|\\!==|\\#|\\%|\\%=|&|&&|&&=|&=|\\(|\\*|\\*=|\\+=|\\,|\\-=|\\->|\\/|\\/=|:|::|\\;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|\\?|\\@|\\[|\\^|\\^=|\\^\\^|\\^\\^=|\\{|\\||\\|=|\\|\\||\\|\\|=|\\~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*";function k(Z){var ad=0;var S=false;var ac=false;for(var V=0,U=Z.length;V<U;++V){var ae=Z[V];if(ae.ignoreCase){ac=true}else{if(/[a-z]/i.test(ae.source.replace(/\\u[0-9a-f]{4}|\\x[0-9a-f]{2}|\\[^ux]/gi,""))){S=true;ac=false;break}}}var Y={b:8,t:9,n:10,v:11,f:12,r:13};function ab(ah){var ag=ah.charCodeAt(0);if(ag!==92){return ag}var af=ah.charAt(1);ag=Y[af];if(ag){return ag}else{if("0"<=af&&af<="7"){return parseInt(ah.substring(1),8)}else{if(af==="u"||af==="x"){return parseInt(ah.substring(2),16)}else{return ah.charCodeAt(1)}}}}function T(af){if(af<32){return(af<16?"\\x0":"\\x")+af.toString(16)}var ag=String.fromCharCode(af);if(ag==="\\"||ag==="-"||ag==="["||ag==="]"){ag="\\"+ag}return ag}function X(am){var aq=am.substring(1,am.length-1).match(new RegExp("\\\\u[0-9A-Fa-f]{4}|\\\\x[0-9A-Fa-f]{2}|\\\\[0-3][0-7]{0,2}|\\\\[0-7]{1,2}|\\\\[\\s\\S]|-|[^-\\\\]","g"));var ak=[];var af=[];var ao=aq[0]==="^";for(var ar=ao?1:0,aj=aq.length;ar<aj;++ar){var ah=aq[ar];if(/\\[bdsw]/i.test(ah)){ak.push(ah)}else{var ag=ab(ah);var al;if(ar+2<aj&&"-"===aq[ar+1]){al=ab(aq[ar+2]);ar+=2}else{al=ag}af.push([ag,al]);if(!(al<65||ag>122)){if(!(al<65||ag>90)){af.push([Math.max(65,ag)|32,Math.min(al,90)|32])}if(!(al<97||ag>122)){af.push([Math.max(97,ag)&~32,Math.min(al,122)&~32])}}}}af.sort(function(av,au){return(av[0]-au[0])||(au[1]-av[1])});var ai=[];var ap=[NaN,NaN];for(var ar=0;ar<af.length;++ar){var at=af[ar];if(at[0]<=ap[1]+1){ap[1]=Math.max(ap[1],at[1])}else{ai.push(ap=at)}}var an=["["];if(ao){an.push("^")}an.push.apply(an,ak);for(var ar=0;ar<ai.length;++ar){var at=ai[ar];an.push(T(at[0]));if(at[1]>at[0]){if(at[1]+1>at[0]){an.push("-")}an.push(T(at[1]))}}an.push("]");return an.join("")}function W(al){var aj=al.source.match(new RegExp("(?:\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]|\\\\u[A-Fa-f0-9]{4}|\\\\x[A-Fa-f0-9]{2}|\\\\[0-9]+|\\\\[^ux0-9]|\\(\\?[:!=]|[\\(\\)\\^]|[^\\x5B\\x5C\\(\\)\\^]+)","g"));var ah=aj.length;var an=[];for(var ak=0,am=0;ak<ah;++ak){var ag=aj[ak];if(ag==="("){++am}else{if("\\"===ag.charAt(0)){var af=+ag.substring(1);if(af&&af<=am){an[af]=-1}}}}for(var ak=1;ak<an.length;++ak){if(-1===an[ak]){an[ak]=++ad}}for(var ak=0,am=0;ak<ah;++ak){var ag=aj[ak];if(ag==="("){++am;if(an[am]===undefined){aj[ak]="(?:"}}else{if("\\"===ag.charAt(0)){var af=+ag.substring(1);if(af&&af<=am){aj[ak]="\\"+an[am]}}}}for(var ak=0,am=0;ak<ah;++ak){if("^"===aj[ak]&&"^"!==aj[ak+1]){aj[ak]=""}}if(al.ignoreCase&&S){for(var ak=0;ak<ah;++ak){var ag=aj[ak];var ai=ag.charAt(0);if(ag.length>=2&&ai==="["){aj[ak]=X(ag)}else{if(ai!=="\\"){aj[ak]=ag.replace(/[a-zA-Z]/g,function(ao){var ap=ao.charCodeAt(0);return"["+String.fromCharCode(ap&~32,ap|32)+"]"})}}}}return aj.join("")}var aa=[];for(var V=0,U=Z.length;V<U;++V){var ae=Z[V];if(ae.global||ae.multiline){throw new Error(""+ae)}aa.push("(?:"+W(ae)+")")}return new RegExp(aa.join("|"),ac?"gi":"g")}function a(V){var U=/(?:^|\s)nocode(?:\s|$)/;var X=[];var T=0;var Z=[];var W=0;var S;if(V.currentStyle){S=V.currentStyle.whiteSpace}else{if(window.getComputedStyle){S=document.defaultView.getComputedStyle(V,null).getPropertyValue("white-space")}}var Y=S&&"pre"===S.substring(0,3);function aa(ab){switch(ab.nodeType){case 1:if(U.test(ab.className)){return}for(var ae=ab.firstChild;ae;ae=ae.nextSibling){aa(ae)}var ad=ab.nodeName;if("BR"===ad||"LI"===ad){X[W]="\n";Z[W<<1]=T++;Z[(W++<<1)|1]=ab}break;case 3:case 4:var ac=ab.nodeValue;if(ac.length){if(!Y){ac=ac.replace(/[ \t\r\n]+/g," ")}else{ac=ac.replace(/\r\n?/g,"\n")}X[W]=ac;Z[W<<1]=T;T+=ac.length;Z[(W++<<1)|1]=ab}break}}aa(V);return{sourceCode:X.join("").replace(/\n$/,""),spans:Z}}function B(S,U,W,T){if(!U){return}var V={sourceCode:U,basePos:S};W(V);T.push.apply(T,V.decorations)}var v=/\S/;function o(S){var V=undefined;for(var U=S.firstChild;U;U=U.nextSibling){var T=U.nodeType;V=(T===1)?(V?S:U):(T===3)?(v.test(U.nodeValue)?S:V):V}return V===S?undefined:V}function g(U,T){var S={};var V;(function(){var ad=U.concat(T);var ah=[];var ag={};for(var ab=0,Z=ad.length;ab<Z;++ab){var Y=ad[ab];var ac=Y[3];if(ac){for(var ae=ac.length;--ae>=0;){S[ac.charAt(ae)]=Y}}var af=Y[1];var aa=""+af;if(!ag.hasOwnProperty(aa)){ah.push(af);ag[aa]=null}}ah.push(/[\0-\uffff]/);V=k(ah)})();var X=T.length;var W=function(ah){var Z=ah.sourceCode,Y=ah.basePos;var ad=[Y,F];var af=0;var an=Z.match(V)||[];var aj={};for(var ae=0,aq=an.length;ae<aq;++ae){var ag=an[ae];var ap=aj[ag];var ai=void 0;var am;if(typeof ap==="string"){am=false}else{var aa=S[ag.charAt(0)];if(aa){ai=ag.match(aa[1]);ap=aa[0]}else{for(var ao=0;ao<X;++ao){aa=T[ao];ai=ag.match(aa[1]);if(ai){ap=aa[0];break}}if(!ai){ap=F}}am=ap.length>=5&&"lang-"===ap.substring(0,5);if(am&&!(ai&&typeof ai[1]==="string")){am=false;ap=J}if(!am){aj[ag]=ap}}var ab=af;af+=ag.length;if(!am){ad.push(Y+ab,ap)}else{var al=ai[1];var ak=ag.indexOf(al);var ac=ak+al.length;if(ai[2]){ac=ag.length-ai[2].length;ak=ac-al.length}var ar=ap.substring(5);B(Y+ab,ag.substring(0,ak),W,ad);B(Y+ab+ak,al,q(ar,al),ad);B(Y+ab+ac,ag.substring(ac),W,ad)}}ah.decorations=ad};return W}function i(T){var W=[],S=[];if(T.tripleQuotedStrings){W.push([C,/^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,null,"'\""])}else{if(T.multiLineStrings){W.push([C,/^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,null,"'\"`"])}else{W.push([C,/^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,null,"\"'"])}}if(T.verbatimStrings){S.push([C,/^@\"(?:[^\"]|\"\")*(?:\"|$)/,null])}var Y=T.hashComments;if(Y){if(T.cStyleComments){if(Y>1){W.push([j,/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,null,"#"])}else{W.push([j,/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\r\n]*)/,null,"#"])}S.push([C,/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,null])}else{W.push([j,/^#[^\r\n]*/,null,"#"])}}if(T.cStyleComments){S.push([j,/^\/\/[^\r\n]*/,null]);S.push([j,/^\/\*[\s\S]*?(?:\*\/|$)/,null])}if(T.regexLiterals){var X=("/(?=[^/*])(?:[^/\\x5B\\x5C]|\\x5C[\\s\\S]|\\x5B(?:[^\\x5C\\x5D]|\\x5C[\\s\\S])*(?:\\x5D|$))+/");S.push(["lang-regex",new RegExp("^"+M+"("+X+")")])}var V=T.types;if(V){S.push([O,V])}var U=(""+T.keywords).replace(/^ | $/g,"");if(U.length){S.push([z,new RegExp("^(?:"+U.replace(/[\s,]+/g,"|")+")\\b"),null])}W.push([F,/^\s+/,null," \r\n\t\xA0"]);S.push([G,/^@[a-z_$][a-z_$@0-9]*/i,null],[O,/^(?:[@_]?[A-Z]+[a-z][A-Za-z_$@0-9]*|\w+_t\b)/,null],[F,/^[a-z_$][a-z_$@0-9]*/i,null],[G,new RegExp("^(?:0x[a-f0-9]+|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)(?:e[+\\-]?\\d+)?)[a-z]*","i"),null,"0123456789"],[F,/^\\[\s\S]?/,null],[L,/^.[^\s\w\.$@\'\"\`\/\#\\]*/,null]);return g(W,S)}var K=i({keywords:A,hashComments:true,cStyleComments:true,multiLineStrings:true,regexLiterals:true});function Q(V,ag){var U=/(?:^|\s)nocode(?:\s|$)/;var ab=/\r\n?|\n/;var ac=V.ownerDocument;var S;if(V.currentStyle){S=V.currentStyle.whiteSpace}else{if(window.getComputedStyle){S=ac.defaultView.getComputedStyle(V,null).getPropertyValue("white-space")}}var Z=S&&"pre"===S.substring(0,3);var af=ac.createElement("LI");while(V.firstChild){af.appendChild(V.firstChild)}var W=[af];function ae(al){switch(al.nodeType){case 1:if(U.test(al.className)){break}if("BR"===al.nodeName){ad(al);if(al.parentNode){al.parentNode.removeChild(al)}}else{for(var an=al.firstChild;an;an=an.nextSibling){ae(an)}}break;case 3:case 4:if(Z){var am=al.nodeValue;var aj=am.match(ab);if(aj){var ai=am.substring(0,aj.index);al.nodeValue=ai;var ah=am.substring(aj.index+aj[0].length);if(ah){var ak=al.parentNode;ak.insertBefore(ac.createTextNode(ah),al.nextSibling)}ad(al);if(!ai){al.parentNode.removeChild(al)}}}break}}function ad(ak){while(!ak.nextSibling){ak=ak.parentNode;if(!ak){return}}function ai(al,ar){var aq=ar?al.cloneNode(false):al;var ao=al.parentNode;if(ao){var ap=ai(ao,1);var an=al.nextSibling;ap.appendChild(aq);for(var am=an;am;am=an){an=am.nextSibling;ap.appendChild(am)}}return aq}var ah=ai(ak.nextSibling,0);for(var aj;(aj=ah.parentNode)&&aj.nodeType===1;){ah=aj}W.push(ah)}for(var Y=0;Y<W.length;++Y){ae(W[Y])}if(ag===(ag|0)){W[0].setAttribute("value",ag)}var aa=ac.createElement("OL");aa.className="linenums";var X=Math.max(0,((ag-1))|0)||0;for(var Y=0,T=W.length;Y<T;++Y){af=W[Y];af.className="L"+((Y+X)%10);if(!af.firstChild){af.appendChild(ac.createTextNode("\xA0"))}aa.appendChild(af)}V.appendChild(aa)}function D(ac){var aj=/\bMSIE\b/.test(navigator.userAgent);var am=/\n/g;var al=ac.sourceCode;var an=al.length;var V=0;var aa=ac.spans;var T=aa.length;var ah=0;var X=ac.decorations;var Y=X.length;var Z=0;X[Y]=an;var ar,aq;for(aq=ar=0;aq<Y;){if(X[aq]!==X[aq+2]){X[ar++]=X[aq++];X[ar++]=X[aq++]}else{aq+=2}}Y=ar;for(aq=ar=0;aq<Y;){var at=X[aq];var ab=X[aq+1];var W=aq+2;while(W+2<=Y&&X[W+1]===ab){W+=2}X[ar++]=at;X[ar++]=ab;aq=W}Y=X.length=ar;var ae=null;while(ah<T){var af=aa[ah];var S=aa[ah+2]||an;var ag=X[Z];var ap=X[Z+2]||an;var W=Math.min(S,ap);var ak=aa[ah+1];var U;if(ak.nodeType!==1&&(U=al.substring(V,W))){if(aj){U=U.replace(am,"\r")}ak.nodeValue=U;var ai=ak.ownerDocument;var ao=ai.createElement("SPAN");ao.className=X[Z+1];var ad=ak.parentNode;ad.replaceChild(ao,ak);ao.appendChild(ak);if(V<S){aa[ah+1]=ak=ai.createTextNode(al.substring(W,S));ad.insertBefore(ak,ao.nextSibling)}}V=W;if(V>=S){ah+=2}if(V>=ap){Z+=2}}}var t={};function c(U,V){for(var S=V.length;--S>=0;){var T=V[S];if(!t.hasOwnProperty(T)){t[T]=U}else{if(window.console){console.warn("cannot override language handler %s",T)}}}}function q(T,S){if(!(T&&t.hasOwnProperty(T))){T=/^\s*</.test(S)?"default-markup":"default-code"}return t[T]}c(K,["default-code"]);c(g([],[[F,/^[^<?]+/],[E,/^<!\w[^>]*(?:>|$)/],[j,/^<\!--[\s\S]*?(?:-\->|$)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],[L,/^(?:<[%?]|[%?]>)/],["lang-",/^<xmp\b[^>]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-js",/^<script\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^<style\b[^>]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),["default-markup","htm","html","mxml","xhtml","xml","xsl"]);c(g([[F,/^[\s]+/,null," \t\r\n"],[n,/^(?:\"[^\"]*\"?|\'[^\']*\'?)/,null,"\"'"]],[[m,/^^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],[P,/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^>\'\"\s]*(?:[^>\'\"\s\/]|\/(?=\s)))/],[L,/^[=<>\/]+/],["lang-js",/^on\w+\s*=\s*\"([^\"]+)\"/i],["lang-js",/^on\w+\s*=\s*\'([^\']+)\'/i],["lang-js",/^on\w+\s*=\s*([^\"\'>\s]+)/i],["lang-css",/^style\s*=\s*\"([^\"]+)\"/i],["lang-css",/^style\s*=\s*\'([^\']+)\'/i],["lang-css",/^style\s*=\s*([^\"\'>\s]+)/i]]),["in.tag"]);c(g([],[[n,/^[\s\S]+/]]),["uq.val"]);c(i({keywords:l,hashComments:true,cStyleComments:true,types:e}),["c","cc","cpp","cxx","cyc","m"]);c(i({keywords:"null,true,false"}),["json"]);c(i({keywords:R,hashComments:true,cStyleComments:true,verbatimStrings:true,types:e}),["cs"]);c(i({keywords:x,cStyleComments:true}),["java"]);c(i({keywords:H,hashComments:true,multiLineStrings:true}),["bsh","csh","sh"]);c(i({keywords:I,hashComments:true,multiLineStrings:true,tripleQuotedStrings:true}),["cv","py"]);c(i({keywords:s,hashComments:true,multiLineStrings:true,regexLiterals:true}),["perl","pl","pm"]);c(i({keywords:f,hashComments:true,multiLineStrings:true,regexLiterals:true}),["rb"]);c(i({keywords:w,cStyleComments:true,regexLiterals:true}),["js"]);c(i({keywords:r,hashComments:3,cStyleComments:true,multilineStrings:true,tripleQuotedStrings:true,regexLiterals:true}),["coffee"]);c(g([],[[C,/^[\s\S]+/]]),["regex"]);function d(V){var U=V.langExtension;try{var S=a(V.sourceNode);var T=S.sourceCode;V.sourceCode=T;V.spans=S.spans;V.basePos=0;q(U,T)(V);D(V)}catch(W){if("console" in window){console.log(W&&W.stack?W.stack:W)}}}function y(W,V,U){var S=document.createElement("PRE");S.innerHTML=W;if(U){Q(S,U)}var T={langExtension:V,numberLines:U,sourceNode:S};d(T);return S.innerHTML}function b(ad){function Y(af){return document.getElementsByTagName(af)}var ac=[Y("pre"),Y("code"),Y("xmp")];var T=[];for(var aa=0;aa<ac.length;++aa){for(var Z=0,V=ac[aa].length;Z<V;++Z){T.push(ac[aa][Z])}}ac=null;var W=Date;if(!W.now){W={now:function(){return +(new Date)}}}var X=0;var S;var ab=/\blang(?:uage)?-([\w.]+)(?!\S)/;var ae=/\bprettyprint\b/;function U(){var ag=(window.PR_SHOULD_USE_CONTINUATION?W.now()+250:Infinity);for(;X<T.length&&W.now()<ag;X++){var aj=T[X];var ai=aj.className;if(ai.indexOf("prettyprint")>=0){var ah=ai.match(ab);var am;if(!ah&&(am=o(aj))&&"CODE"===am.tagName){ah=am.className.match(ab)}if(ah){ah=ah[1]}var al=false;for(var ak=aj.parentNode;ak;ak=ak.parentNode){if((ak.tagName==="pre"||ak.tagName==="code"||ak.tagName==="xmp")&&ak.className&&ak.className.indexOf("prettyprint")>=0){al=true;break}}if(!al){var af=aj.className.match(/\blinenums\b(?::(\d+))?/);af=af?af[1]&&af[1].length?+af[1]:true:false;if(af){Q(aj,af)}S={langExtension:ah,sourceNode:aj,numberLines:af};d(S)}}}if(X<T.length){setTimeout(U,250)}else{if(ad){ad()}}}U()}window.prettyPrintOne=y;window.prettyPrint=b;window.PR={createSimpleLexer:g,registerLangHandler:c,sourceDecorator:i,PR_ATTRIB_NAME:P,PR_ATTRIB_VALUE:n,PR_COMMENT:j,PR_DECLARATION:E,PR_KEYWORD:z,PR_LITERAL:G,PR_NOCODE:N,PR_PLAIN:F,PR_PUNCTUATION:L,PR_SOURCE:J,PR_STRING:C,PR_TAG:m,PR_TYPE:O}})();PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_DECLARATION,/^<!\w[^>]*(?:>|$)/],[PR.PR_COMMENT,/^<\!--[\s\S]*?(?:-\->|$)/],[PR.PR_PUNCTUATION,/^(?:<[%?]|[%?]>)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],["lang-",/^<xmp\b[^>]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-handlebars",/^<script\b[^>]*type\s*=\s*['"]?text\/x-handlebars-template['"]?\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-js",/^<script\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^<style\b[^>]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i],[PR.PR_DECLARATION,/^{{[#^>/]?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{&?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{{>?\s*[\w.][^}]*}}}/],[PR.PR_COMMENT,/^{{![^}]*}}/]]),["handlebars","hbs"]);PR.registerLangHandler(PR.createSimpleLexer([[PR.PR_PLAIN,/^[ \t\r\n\f]+/,null," \t\r\n\f"]],[[PR.PR_STRING,/^\"(?:[^\n\r\f\\\"]|\\(?:\r\n?|\n|\f)|\\[\s\S])*\"/,null],[PR.PR_STRING,/^\'(?:[^\n\r\f\\\']|\\(?:\r\n?|\n|\f)|\\[\s\S])*\'/,null],["lang-css-str",/^url\(([^\)\"\']*)\)/i],[PR.PR_KEYWORD,/^(?:url|rgb|\!important|@import|@page|@media|@charset|inherit)(?=[^\-\w]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|(?:\\[0-9a-f]+ ?))(?:[_a-z0-9\-]|\\(?:\\[0-9a-f]+ ?))*)\s*:/i],[PR.PR_COMMENT,/^\/\*[^*]*\*+(?:[^\/*][^*]*\*+)*\//],[PR.PR_COMMENT,/^(?:<!--|-->)/],[PR.PR_LITERAL,/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],[PR.PR_LITERAL,/^#(?:[0-9a-f]{3}){1,2}/i],[PR.PR_PLAIN,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i],[PR.PR_PUNCTUATION,/^[^\s\w\'\"]+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_KEYWORD,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_STRING,/^[^\)\"\']+/]]),["css-str"]);