geohydra 0.3

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 (687) hide show
  1. data/.gitignore +23 -0
  2. data/.gitmodules +3 -0
  3. data/.travis.yml +7 -0
  4. data/Gemfile +15 -0
  5. data/Gemfile.lock +281 -0
  6. data/LICENSE +14 -0
  7. data/README.md +187 -0
  8. data/Rakefile +34 -0
  9. data/VERSION +1 -0
  10. data/bin/accession.rb +109 -0
  11. data/bin/assemble.rb +307 -0
  12. data/bin/assemble_data.rb +66 -0
  13. data/bin/assemble_placenames.rb +110 -0
  14. data/bin/build_stage_options.rb +27 -0
  15. data/bin/derive_wgs84.rb +85 -0
  16. data/bin/extract_thumbnail.rb +49 -0
  17. data/bin/geohydra +11 -0
  18. data/bin/ingest_arcgis.rb +77 -0
  19. data/bin/ingest_tufts.rb +71 -0
  20. data/bin/loader.rb +296 -0
  21. data/bin/loader_postgis.rb +259 -0
  22. data/bin/seed.rb +78 -0
  23. data/bin/solr_indexer.rb +41 -0
  24. data/bin/sync_geoserver_metadata.rb +168 -0
  25. data/bin/validate_data.rb +59 -0
  26. data/config/.gitignore +1 -0
  27. data/config/boot.rb +17 -0
  28. data/config/database.yml +29 -0
  29. data/config/environments/.gitignore +8 -0
  30. data/config/environments/.gitkeep +0 -0
  31. data/config/environments/example.rb +85 -0
  32. data/config/environments/example_rgeoserver.yml +16 -0
  33. data/config/migrate.rb +11 -0
  34. data/geohydra.gemspec +49 -0
  35. data/lib/geohydra.rb +11 -0
  36. data/lib/geohydra/accession.rb +291 -0
  37. data/lib/geohydra/arcgis_to_iso19139_fc.xsl +364 -0
  38. data/lib/geohydra/gazetteer.csv +36 -0
  39. data/lib/geohydra/gazetteer.rb +73 -0
  40. data/lib/geohydra/geonetwork.rb +156 -0
  41. data/lib/geohydra/mods2ogp.xsl +198 -0
  42. data/lib/geohydra/ogpcleanup.xsl +28 -0
  43. data/lib/geohydra/solr.rb +49 -0
  44. data/lib/geohydra/transform.rb +175 -0
  45. data/lib/geohydra/utils.rb +19 -0
  46. data/lib/geohydra/version.rb +3 -0
  47. data/scripts/correct_collections.rb +93 -0
  48. data/scripts/dbfdump.rb +13 -0
  49. data/scripts/extract.xsl +35 -0
  50. data/scripts/geoserver_createdb.sh +6 -0
  51. data/scripts/geoserver_createdb.sql +29 -0
  52. data/scripts/geowebcache_tops.rb +22 -0
  53. data/scripts/ingest_mods.rb +23 -0
  54. data/scripts/iso2html/displayElement.xsl +52 -0
  55. data/scripts/iso2html/elements-ISO.xml +665 -0
  56. data/scripts/iso2html/headers-ISO.xml +16 -0
  57. data/scripts/iso2html/printFormatted.xsl +227 -0
  58. data/scripts/iso2html/printtextlines.xsl +171 -0
  59. data/scripts/iso2html/xml-to-html-ISO.xsl +273 -0
  60. data/scripts/iso2html/xml-to-text-ISO.xsl +148 -0
  61. data/scripts/load_stage_data.rb +13 -0
  62. data/scripts/nextgis_iso19115.xsl +553 -0
  63. data/scripts/replicate_db.sh +7 -0
  64. data/scripts/report_stage.rb +5 -0
  65. data/solr/dev.html +19 -0
  66. data/solr/dlss-dev-drh-geo/conf/schema.xml +54 -0
  67. data/solr/dlss-dev-drh-geo/conf/solrconfig.xml +156 -0
  68. data/solr/dlss-dev-drh-geo/deploy.sh +15 -0
  69. data/solr/dlss-dev-drh-geo/example_doc.xml +25 -0
  70. data/solr/dlss-dev-drh-geo/test.sh +14 -0
  71. data/solr/ogp-dev/conf/admin-extra.html +24 -0
  72. data/solr/ogp-dev/conf/admin-extra.menu-bottom.html +25 -0
  73. data/solr/ogp-dev/conf/admin-extra.menu-top.html +25 -0
  74. data/solr/ogp-dev/conf/currency.xml +67 -0
  75. data/solr/ogp-dev/conf/elevate.xml +38 -0
  76. data/solr/ogp-dev/conf/lang/contractions_ca.txt +8 -0
  77. data/solr/ogp-dev/conf/lang/contractions_fr.txt +15 -0
  78. data/solr/ogp-dev/conf/lang/contractions_ga.txt +5 -0
  79. data/solr/ogp-dev/conf/lang/contractions_it.txt +23 -0
  80. data/solr/ogp-dev/conf/lang/hyphenations_ga.txt +5 -0
  81. data/solr/ogp-dev/conf/lang/stemdict_nl.txt +6 -0
  82. data/solr/ogp-dev/conf/lang/stoptags_ja.txt +420 -0
  83. data/solr/ogp-dev/conf/lang/stopwords_ar.txt +125 -0
  84. data/solr/ogp-dev/conf/lang/stopwords_bg.txt +193 -0
  85. data/solr/ogp-dev/conf/lang/stopwords_ca.txt +220 -0
  86. data/solr/ogp-dev/conf/lang/stopwords_cz.txt +172 -0
  87. data/solr/ogp-dev/conf/lang/stopwords_da.txt +108 -0
  88. data/solr/ogp-dev/conf/lang/stopwords_de.txt +292 -0
  89. data/solr/ogp-dev/conf/lang/stopwords_el.txt +78 -0
  90. data/solr/ogp-dev/conf/lang/stopwords_en.txt +54 -0
  91. data/solr/ogp-dev/conf/lang/stopwords_es.txt +354 -0
  92. data/solr/ogp-dev/conf/lang/stopwords_eu.txt +99 -0
  93. data/solr/ogp-dev/conf/lang/stopwords_fa.txt +313 -0
  94. data/solr/ogp-dev/conf/lang/stopwords_fi.txt +95 -0
  95. data/solr/ogp-dev/conf/lang/stopwords_fr.txt +184 -0
  96. data/solr/ogp-dev/conf/lang/stopwords_ga.txt +110 -0
  97. data/solr/ogp-dev/conf/lang/stopwords_gl.txt +161 -0
  98. data/solr/ogp-dev/conf/lang/stopwords_hi.txt +235 -0
  99. data/solr/ogp-dev/conf/lang/stopwords_hu.txt +209 -0
  100. data/solr/ogp-dev/conf/lang/stopwords_hy.txt +46 -0
  101. data/solr/ogp-dev/conf/lang/stopwords_id.txt +359 -0
  102. data/solr/ogp-dev/conf/lang/stopwords_it.txt +301 -0
  103. data/solr/ogp-dev/conf/lang/stopwords_ja.txt +127 -0
  104. data/solr/ogp-dev/conf/lang/stopwords_lv.txt +172 -0
  105. data/solr/ogp-dev/conf/lang/stopwords_nl.txt +117 -0
  106. data/solr/ogp-dev/conf/lang/stopwords_no.txt +192 -0
  107. data/solr/ogp-dev/conf/lang/stopwords_pt.txt +251 -0
  108. data/solr/ogp-dev/conf/lang/stopwords_ro.txt +233 -0
  109. data/solr/ogp-dev/conf/lang/stopwords_ru.txt +241 -0
  110. data/solr/ogp-dev/conf/lang/stopwords_sv.txt +131 -0
  111. data/solr/ogp-dev/conf/lang/stopwords_th.txt +119 -0
  112. data/solr/ogp-dev/conf/lang/stopwords_tr.txt +212 -0
  113. data/solr/ogp-dev/conf/lang/userdict_ja.txt +29 -0
  114. data/solr/ogp-dev/conf/mapping-FoldToASCII.txt +3813 -0
  115. data/solr/ogp-dev/conf/mapping-ISOLatin1Accent.txt +246 -0
  116. data/solr/ogp-dev/conf/protwords.txt +21 -0
  117. data/solr/ogp-dev/conf/schema.xml +1362 -0
  118. data/solr/ogp-dev/conf/scripts.conf +24 -0
  119. data/solr/ogp-dev/conf/solrconfig.xml +1816 -0
  120. data/solr/ogp-dev/conf/spellings.txt +2 -0
  121. data/solr/ogp-dev/conf/stopwords.txt +14 -0
  122. data/solr/ogp-dev/conf/synonyms.txt +29 -0
  123. data/solr/ogp-dev/conf/synonymsIso.txt +158 -0
  124. data/solr/ogp-dev/conf/synonymsLcsh.txt +120 -0
  125. data/solr/ogp-dev/conf/synonymsState.txt +105 -0
  126. data/solr/ogp-dev/conf/update-script.js +53 -0
  127. data/solr/ogp-dev/conf/velocity/VM_global_library.vm +170 -0
  128. data/solr/ogp-dev/conf/velocity/browse.vm +50 -0
  129. data/solr/ogp-dev/conf/velocity/cluster.vm +9 -0
  130. data/solr/ogp-dev/conf/velocity/clusterResults.vm +12 -0
  131. data/solr/ogp-dev/conf/velocity/debug.vm +17 -0
  132. data/solr/ogp-dev/conf/velocity/did_you_mean.vm +4 -0
  133. data/solr/ogp-dev/conf/velocity/facet_fields.vm +15 -0
  134. data/solr/ogp-dev/conf/velocity/facet_pivot.vm +3 -0
  135. data/solr/ogp-dev/conf/velocity/facet_queries.vm +3 -0
  136. data/solr/ogp-dev/conf/velocity/facet_ranges.vm +15 -0
  137. data/solr/ogp-dev/conf/velocity/facets.vm +5 -0
  138. data/solr/ogp-dev/conf/velocity/footer.vm +17 -0
  139. data/solr/ogp-dev/conf/velocity/head.vm +32 -0
  140. data/solr/ogp-dev/conf/velocity/header.vm +3 -0
  141. data/solr/ogp-dev/conf/velocity/hit.vm +11 -0
  142. data/solr/ogp-dev/conf/velocity/hitGrouped.vm +24 -0
  143. data/solr/ogp-dev/conf/velocity/join-doc.vm +4 -0
  144. data/solr/ogp-dev/conf/velocity/jquery.autocomplete.css +48 -0
  145. data/solr/ogp-dev/conf/velocity/jquery.autocomplete.js +763 -0
  146. data/solr/ogp-dev/conf/velocity/layout.vm +20 -0
  147. data/solr/ogp-dev/conf/velocity/main.css +208 -0
  148. data/solr/ogp-dev/conf/velocity/product-doc.vm +27 -0
  149. data/solr/ogp-dev/conf/velocity/query.vm +42 -0
  150. data/solr/ogp-dev/conf/velocity/queryGroup.vm +19 -0
  151. data/solr/ogp-dev/conf/velocity/querySpatial.vm +40 -0
  152. data/solr/ogp-dev/conf/velocity/richtext-doc.vm +114 -0
  153. data/solr/ogp-dev/conf/velocity/suggest.vm +3 -0
  154. data/solr/ogp-dev/conf/velocity/tabs.vm +6 -0
  155. data/solr/ogp-dev/conf/xslt/example.xsl +132 -0
  156. data/solr/ogp-dev/conf/xslt/example_atom.xsl +67 -0
  157. data/solr/ogp-dev/conf/xslt/example_rss.xsl +66 -0
  158. data/solr/ogp-dev/conf/xslt/luke.xsl +337 -0
  159. data/solr/ogp-dev/conf/xslt/updateXml.xsl +70 -0
  160. data/solr/ogp-dev/deploy.sh +15 -0
  161. data/solr/ogp-dev/purge.sh +9 -0
  162. data/solr/ogp-dev/upload.sh +17 -0
  163. data/solr/ogp-test/conf/admin-extra.html +24 -0
  164. data/solr/ogp-test/conf/admin-extra.menu-bottom.html +25 -0
  165. data/solr/ogp-test/conf/admin-extra.menu-top.html +25 -0
  166. data/solr/ogp-test/conf/currency.xml +67 -0
  167. data/solr/ogp-test/conf/elevate.xml +38 -0
  168. data/solr/ogp-test/conf/lang/contractions_ca.txt +8 -0
  169. data/solr/ogp-test/conf/lang/contractions_fr.txt +15 -0
  170. data/solr/ogp-test/conf/lang/contractions_ga.txt +5 -0
  171. data/solr/ogp-test/conf/lang/contractions_it.txt +23 -0
  172. data/solr/ogp-test/conf/lang/hyphenations_ga.txt +5 -0
  173. data/solr/ogp-test/conf/lang/stemdict_nl.txt +6 -0
  174. data/solr/ogp-test/conf/lang/stoptags_ja.txt +420 -0
  175. data/solr/ogp-test/conf/lang/stopwords_ar.txt +125 -0
  176. data/solr/ogp-test/conf/lang/stopwords_bg.txt +193 -0
  177. data/solr/ogp-test/conf/lang/stopwords_ca.txt +220 -0
  178. data/solr/ogp-test/conf/lang/stopwords_cz.txt +172 -0
  179. data/solr/ogp-test/conf/lang/stopwords_da.txt +108 -0
  180. data/solr/ogp-test/conf/lang/stopwords_de.txt +292 -0
  181. data/solr/ogp-test/conf/lang/stopwords_el.txt +78 -0
  182. data/solr/ogp-test/conf/lang/stopwords_en.txt +54 -0
  183. data/solr/ogp-test/conf/lang/stopwords_es.txt +354 -0
  184. data/solr/ogp-test/conf/lang/stopwords_eu.txt +99 -0
  185. data/solr/ogp-test/conf/lang/stopwords_fa.txt +313 -0
  186. data/solr/ogp-test/conf/lang/stopwords_fi.txt +95 -0
  187. data/solr/ogp-test/conf/lang/stopwords_fr.txt +184 -0
  188. data/solr/ogp-test/conf/lang/stopwords_ga.txt +110 -0
  189. data/solr/ogp-test/conf/lang/stopwords_gl.txt +161 -0
  190. data/solr/ogp-test/conf/lang/stopwords_hi.txt +235 -0
  191. data/solr/ogp-test/conf/lang/stopwords_hu.txt +209 -0
  192. data/solr/ogp-test/conf/lang/stopwords_hy.txt +46 -0
  193. data/solr/ogp-test/conf/lang/stopwords_id.txt +359 -0
  194. data/solr/ogp-test/conf/lang/stopwords_it.txt +301 -0
  195. data/solr/ogp-test/conf/lang/stopwords_ja.txt +127 -0
  196. data/solr/ogp-test/conf/lang/stopwords_lv.txt +172 -0
  197. data/solr/ogp-test/conf/lang/stopwords_nl.txt +117 -0
  198. data/solr/ogp-test/conf/lang/stopwords_no.txt +192 -0
  199. data/solr/ogp-test/conf/lang/stopwords_pt.txt +251 -0
  200. data/solr/ogp-test/conf/lang/stopwords_ro.txt +233 -0
  201. data/solr/ogp-test/conf/lang/stopwords_ru.txt +241 -0
  202. data/solr/ogp-test/conf/lang/stopwords_sv.txt +131 -0
  203. data/solr/ogp-test/conf/lang/stopwords_th.txt +119 -0
  204. data/solr/ogp-test/conf/lang/stopwords_tr.txt +212 -0
  205. data/solr/ogp-test/conf/lang/userdict_ja.txt +29 -0
  206. data/solr/ogp-test/conf/mapping-FoldToASCII.txt +3813 -0
  207. data/solr/ogp-test/conf/mapping-ISOLatin1Accent.txt +246 -0
  208. data/solr/ogp-test/conf/protwords.txt +21 -0
  209. data/solr/ogp-test/conf/schema.xml +1362 -0
  210. data/solr/ogp-test/conf/scripts.conf +24 -0
  211. data/solr/ogp-test/conf/solrconfig.xml +1816 -0
  212. data/solr/ogp-test/conf/spellings.txt +2 -0
  213. data/solr/ogp-test/conf/stopwords.txt +14 -0
  214. data/solr/ogp-test/conf/synonyms.txt +29 -0
  215. data/solr/ogp-test/conf/synonymsIso.txt +158 -0
  216. data/solr/ogp-test/conf/synonymsLcsh.txt +120 -0
  217. data/solr/ogp-test/conf/synonymsState.txt +105 -0
  218. data/solr/ogp-test/conf/update-script.js +53 -0
  219. data/solr/ogp-test/conf/velocity/VM_global_library.vm +170 -0
  220. data/solr/ogp-test/conf/velocity/browse.vm +50 -0
  221. data/solr/ogp-test/conf/velocity/cluster.vm +9 -0
  222. data/solr/ogp-test/conf/velocity/clusterResults.vm +12 -0
  223. data/solr/ogp-test/conf/velocity/debug.vm +17 -0
  224. data/solr/ogp-test/conf/velocity/did_you_mean.vm +4 -0
  225. data/solr/ogp-test/conf/velocity/facet_fields.vm +15 -0
  226. data/solr/ogp-test/conf/velocity/facet_pivot.vm +3 -0
  227. data/solr/ogp-test/conf/velocity/facet_queries.vm +3 -0
  228. data/solr/ogp-test/conf/velocity/facet_ranges.vm +15 -0
  229. data/solr/ogp-test/conf/velocity/facets.vm +5 -0
  230. data/solr/ogp-test/conf/velocity/footer.vm +17 -0
  231. data/solr/ogp-test/conf/velocity/head.vm +32 -0
  232. data/solr/ogp-test/conf/velocity/header.vm +3 -0
  233. data/solr/ogp-test/conf/velocity/hit.vm +11 -0
  234. data/solr/ogp-test/conf/velocity/hitGrouped.vm +24 -0
  235. data/solr/ogp-test/conf/velocity/join-doc.vm +4 -0
  236. data/solr/ogp-test/conf/velocity/jquery.autocomplete.css +48 -0
  237. data/solr/ogp-test/conf/velocity/jquery.autocomplete.js +763 -0
  238. data/solr/ogp-test/conf/velocity/layout.vm +20 -0
  239. data/solr/ogp-test/conf/velocity/main.css +208 -0
  240. data/solr/ogp-test/conf/velocity/product-doc.vm +27 -0
  241. data/solr/ogp-test/conf/velocity/query.vm +42 -0
  242. data/solr/ogp-test/conf/velocity/queryGroup.vm +19 -0
  243. data/solr/ogp-test/conf/velocity/querySpatial.vm +40 -0
  244. data/solr/ogp-test/conf/velocity/richtext-doc.vm +114 -0
  245. data/solr/ogp-test/conf/velocity/suggest.vm +3 -0
  246. data/solr/ogp-test/conf/velocity/tabs.vm +6 -0
  247. data/solr/ogp-test/conf/xslt/example.xsl +132 -0
  248. data/solr/ogp-test/conf/xslt/example_atom.xsl +67 -0
  249. data/solr/ogp-test/conf/xslt/example_rss.xsl +66 -0
  250. data/solr/ogp-test/conf/xslt/luke.xsl +337 -0
  251. data/solr/ogp-test/conf/xslt/updateXml.xsl +70 -0
  252. data/solr/ogp-test/deploy.sh +15 -0
  253. data/solr/ogp-test/purge.sh +9 -0
  254. data/solr/ogp-test/upload.sh +17 -0
  255. data/solr/ogp/conf/admin-extra.html +24 -0
  256. data/solr/ogp/conf/admin-extra.menu-bottom.html +25 -0
  257. data/solr/ogp/conf/admin-extra.menu-top.html +25 -0
  258. data/solr/ogp/conf/currency.xml +67 -0
  259. data/solr/ogp/conf/elevate.xml +38 -0
  260. data/solr/ogp/conf/lang/contractions_ca.txt +8 -0
  261. data/solr/ogp/conf/lang/contractions_fr.txt +15 -0
  262. data/solr/ogp/conf/lang/contractions_ga.txt +5 -0
  263. data/solr/ogp/conf/lang/contractions_it.txt +23 -0
  264. data/solr/ogp/conf/lang/hyphenations_ga.txt +5 -0
  265. data/solr/ogp/conf/lang/stemdict_nl.txt +6 -0
  266. data/solr/ogp/conf/lang/stoptags_ja.txt +420 -0
  267. data/solr/ogp/conf/lang/stopwords_ar.txt +125 -0
  268. data/solr/ogp/conf/lang/stopwords_bg.txt +193 -0
  269. data/solr/ogp/conf/lang/stopwords_ca.txt +220 -0
  270. data/solr/ogp/conf/lang/stopwords_cz.txt +172 -0
  271. data/solr/ogp/conf/lang/stopwords_da.txt +108 -0
  272. data/solr/ogp/conf/lang/stopwords_de.txt +292 -0
  273. data/solr/ogp/conf/lang/stopwords_el.txt +78 -0
  274. data/solr/ogp/conf/lang/stopwords_en.txt +54 -0
  275. data/solr/ogp/conf/lang/stopwords_es.txt +354 -0
  276. data/solr/ogp/conf/lang/stopwords_eu.txt +99 -0
  277. data/solr/ogp/conf/lang/stopwords_fa.txt +313 -0
  278. data/solr/ogp/conf/lang/stopwords_fi.txt +95 -0
  279. data/solr/ogp/conf/lang/stopwords_fr.txt +184 -0
  280. data/solr/ogp/conf/lang/stopwords_ga.txt +110 -0
  281. data/solr/ogp/conf/lang/stopwords_gl.txt +161 -0
  282. data/solr/ogp/conf/lang/stopwords_hi.txt +235 -0
  283. data/solr/ogp/conf/lang/stopwords_hu.txt +209 -0
  284. data/solr/ogp/conf/lang/stopwords_hy.txt +46 -0
  285. data/solr/ogp/conf/lang/stopwords_id.txt +359 -0
  286. data/solr/ogp/conf/lang/stopwords_it.txt +301 -0
  287. data/solr/ogp/conf/lang/stopwords_ja.txt +127 -0
  288. data/solr/ogp/conf/lang/stopwords_lv.txt +172 -0
  289. data/solr/ogp/conf/lang/stopwords_nl.txt +117 -0
  290. data/solr/ogp/conf/lang/stopwords_no.txt +192 -0
  291. data/solr/ogp/conf/lang/stopwords_pt.txt +251 -0
  292. data/solr/ogp/conf/lang/stopwords_ro.txt +233 -0
  293. data/solr/ogp/conf/lang/stopwords_ru.txt +241 -0
  294. data/solr/ogp/conf/lang/stopwords_sv.txt +131 -0
  295. data/solr/ogp/conf/lang/stopwords_th.txt +119 -0
  296. data/solr/ogp/conf/lang/stopwords_tr.txt +212 -0
  297. data/solr/ogp/conf/lang/userdict_ja.txt +29 -0
  298. data/solr/ogp/conf/mapping-FoldToASCII.txt +3813 -0
  299. data/solr/ogp/conf/mapping-ISOLatin1Accent.txt +246 -0
  300. data/solr/ogp/conf/protwords.txt +21 -0
  301. data/solr/ogp/conf/schema.xml +1362 -0
  302. data/solr/ogp/conf/scripts.conf +24 -0
  303. data/solr/ogp/conf/solrconfig.xml +1816 -0
  304. data/solr/ogp/conf/spellings.txt +2 -0
  305. data/solr/ogp/conf/stopwords.txt +14 -0
  306. data/solr/ogp/conf/synonyms.txt +29 -0
  307. data/solr/ogp/conf/synonymsIso.txt +158 -0
  308. data/solr/ogp/conf/synonymsLcsh.txt +120 -0
  309. data/solr/ogp/conf/synonymsState.txt +105 -0
  310. data/solr/ogp/conf/update-script.js +53 -0
  311. data/solr/ogp/conf/velocity/VM_global_library.vm +170 -0
  312. data/solr/ogp/conf/velocity/browse.vm +50 -0
  313. data/solr/ogp/conf/velocity/cluster.vm +9 -0
  314. data/solr/ogp/conf/velocity/clusterResults.vm +12 -0
  315. data/solr/ogp/conf/velocity/debug.vm +17 -0
  316. data/solr/ogp/conf/velocity/did_you_mean.vm +4 -0
  317. data/solr/ogp/conf/velocity/facet_fields.vm +15 -0
  318. data/solr/ogp/conf/velocity/facet_pivot.vm +3 -0
  319. data/solr/ogp/conf/velocity/facet_queries.vm +3 -0
  320. data/solr/ogp/conf/velocity/facet_ranges.vm +15 -0
  321. data/solr/ogp/conf/velocity/facets.vm +5 -0
  322. data/solr/ogp/conf/velocity/footer.vm +17 -0
  323. data/solr/ogp/conf/velocity/head.vm +32 -0
  324. data/solr/ogp/conf/velocity/header.vm +3 -0
  325. data/solr/ogp/conf/velocity/hit.vm +11 -0
  326. data/solr/ogp/conf/velocity/hitGrouped.vm +24 -0
  327. data/solr/ogp/conf/velocity/join-doc.vm +4 -0
  328. data/solr/ogp/conf/velocity/jquery.autocomplete.css +48 -0
  329. data/solr/ogp/conf/velocity/jquery.autocomplete.js +763 -0
  330. data/solr/ogp/conf/velocity/layout.vm +20 -0
  331. data/solr/ogp/conf/velocity/main.css +208 -0
  332. data/solr/ogp/conf/velocity/product-doc.vm +27 -0
  333. data/solr/ogp/conf/velocity/query.vm +42 -0
  334. data/solr/ogp/conf/velocity/queryGroup.vm +19 -0
  335. data/solr/ogp/conf/velocity/querySpatial.vm +40 -0
  336. data/solr/ogp/conf/velocity/richtext-doc.vm +114 -0
  337. data/solr/ogp/conf/velocity/suggest.vm +3 -0
  338. data/solr/ogp/conf/velocity/tabs.vm +6 -0
  339. data/solr/ogp/conf/xslt/example.xsl +132 -0
  340. data/solr/ogp/conf/xslt/example_atom.xsl +67 -0
  341. data/solr/ogp/conf/xslt/example_rss.xsl +66 -0
  342. data/solr/ogp/conf/xslt/luke.xsl +337 -0
  343. data/solr/ogp/conf/xslt/updateXml.xsl +70 -0
  344. data/solr/ogp/deploy.sh +15 -0
  345. data/solr/ogp/upload.sh +16 -0
  346. data/spec/fixtures/bw938nk9584/metadata/geoMetadata.xml +2438 -0
  347. data/spec/fixtures/bw938nk9584/temp/TRIPURA-iso19139-fc.xml +1643 -0
  348. data/spec/fixtures/bw938nk9584/temp/TRIPURA-iso19139.xml +790 -0
  349. data/spec/fixtures/cc142xj8436/metadata/geoMetadata.xml +2029 -0
  350. data/spec/fixtures/cc142xj8436/temp/HARYANA-iso19139-fc.xml +1174 -0
  351. data/spec/fixtures/cc142xj8436/temp/HARYANA-iso19139.xml +850 -0
  352. data/spec/fixtures/cg716wc7949/metadata/geoMetadata.xml +1815 -0
  353. data/spec/fixtures/cg716wc7949/temp/metadata.iso19139-fc.xml +958 -0
  354. data/spec/fixtures/cg716wc7949/temp/metadata.iso19139.xml +852 -0
  355. data/spec/fixtures/cm007pv9601/metadata/geoMetadata.xml +1092 -0
  356. data/spec/fixtures/cm007pv9601/temp/MEGHALAYA-iso19139-fc.xml +379 -0
  357. data/spec/fixtures/cm007pv9601/temp/MEGHALAYA-iso19139.xml +708 -0
  358. data/spec/fixtures/cp055nb0189/metadata/geoMetadata.xml +1820 -0
  359. data/spec/fixtures/cp055nb0189/temp/metadata.iso19139-fc.xml +955 -0
  360. data/spec/fixtures/cp055nb0189/temp/metadata.iso19139.xml +860 -0
  361. data/spec/fixtures/cs838pw3418/metadata/geoMetadata.xml +912 -0
  362. data/spec/fixtures/cs838pw3418/temp/OIL_GAS_FIELDS-iso19139-fc.xml +177 -0
  363. data/spec/fixtures/cs838pw3418/temp/OIL_GAS_FIELDS-iso19139.xml +730 -0
  364. data/spec/fixtures/dd308sy5843/metadata/geoMetadata.xml +2438 -0
  365. data/spec/fixtures/dd308sy5843/temp/ORISSA-iso19139-fc.xml +1643 -0
  366. data/spec/fixtures/dd308sy5843/temp/ORISSA-iso19139.xml +790 -0
  367. data/spec/fixtures/dd452vk1873/metadata/geoMetadata.xml +1168 -0
  368. data/spec/fixtures/dd452vk1873/temp/metadata.iso19139-fc.xml +175 -0
  369. data/spec/fixtures/dd452vk1873/temp/metadata.iso19139.xml +988 -0
  370. data/spec/fixtures/dg850pt1796/metadata/geoMetadata.xml +1411 -0
  371. data/spec/fixtures/dg850pt1796/temp/STATE1951-iso19139-fc.xml +519 -0
  372. data/spec/fixtures/dg850pt1796/temp/STATE1951-iso19139.xml +887 -0
  373. data/spec/fixtures/dn744tf5427/metadata/geoMetadata.xml +7403 -0
  374. data/spec/fixtures/dn744tf5427/temp/DISTRICT1991-iso19139-fc.xml +6539 -0
  375. data/spec/fixtures/dn744tf5427/temp/DISTRICT1991-iso19139.xml +859 -0
  376. data/spec/fixtures/dq603nz8402/metadata/geoMetadata.xml +8485 -0
  377. data/spec/fixtures/dq603nz8402/temp/STATE2001-iso19139-fc.xml +7595 -0
  378. data/spec/fixtures/dq603nz8402/temp/STATE2001-iso19139.xml +885 -0
  379. data/spec/fixtures/dv609zt4699/metadata/geoMetadata.xml +3865 -0
  380. data/spec/fixtures/dv609zt4699/temp/ASSAM-iso19139-fc.xml +3075 -0
  381. data/spec/fixtures/dv609zt4699/temp/ASSAM-iso19139.xml +785 -0
  382. data/spec/fixtures/dz222hw0585/metadata/geoMetadata.xml +2057 -0
  383. data/spec/fixtures/dz222hw0585/temp/PUNJAB-iso19139-fc.xml +1203 -0
  384. data/spec/fixtures/dz222hw0585/temp/PUNJAB-iso19139.xml +849 -0
  385. data/spec/fixtures/fd673qb9705/metadata/geoMetadata.xml +4059 -0
  386. data/spec/fixtures/fd673qb9705/temp/STATE1971-iso19139-fc.xml +3159 -0
  387. data/spec/fixtures/fd673qb9705/temp/STATE1971-iso19139.xml +895 -0
  388. data/spec/fixtures/fg451wp8917/metadata/geoMetadata.xml +2435 -0
  389. data/spec/fixtures/fg451wp8917/temp/SIKKIM-iso19139-fc.xml +1643 -0
  390. data/spec/fixtures/fg451wp8917/temp/SIKKIM-iso19139.xml +787 -0
  391. data/spec/fixtures/fh247yz0156/metadata/geoMetadata.xml +2437 -0
  392. data/spec/fixtures/fh247yz0156/temp/RAJASTHAN-iso19139-fc.xml +1643 -0
  393. data/spec/fixtures/fh247yz0156/temp/RAJASTHAN-iso19139.xml +789 -0
  394. data/spec/fixtures/fs487vd1465/metadata/geoMetadata.xml +3896 -0
  395. data/spec/fixtures/fs487vd1465/temp/CHHATTISGARH-iso19139-fc.xml +3075 -0
  396. data/spec/fixtures/fs487vd1465/temp/CHHATTISGARH-iso19139.xml +816 -0
  397. data/spec/fixtures/fs591bn3317/metadata/geoMetadata.xml +2435 -0
  398. data/spec/fixtures/fs591bn3317/temp/HIMACHAL_PRADESH-iso19139-fc.xml +1643 -0
  399. data/spec/fixtures/fs591bn3317/temp/HIMACHAL_PRADESH-iso19139.xml +787 -0
  400. data/spec/fixtures/fw920bc5473/metadata/geoMetadata.xml +1056 -0
  401. data/spec/fixtures/fw920bc5473/temp/PLSS_TWN-iso19139-fc.xml +327 -0
  402. data/spec/fixtures/fw920bc5473/temp/PLSS_TWN-iso19139.xml +724 -0
  403. data/spec/fixtures/gj831wj3625/metadata/geoMetadata.xml +1735 -0
  404. data/spec/fixtures/gj831wj3625/temp/metadata.iso19139-fc.xml +940 -0
  405. data/spec/fixtures/gj831wj3625/temp/metadata.iso19139.xml +790 -0
  406. data/spec/fixtures/gp075nv3265/metadata/geoMetadata.xml +2432 -0
  407. data/spec/fixtures/gp075nv3265/temp/PONDICHERRY-iso19139-fc.xml +1643 -0
  408. data/spec/fixtures/gp075nv3265/temp/PONDICHERRY-iso19139.xml +784 -0
  409. data/spec/fixtures/gv800hj8141/metadata/geoMetadata.xml +2392 -0
  410. data/spec/fixtures/gv800hj8141/temp/BIHAR-iso19139-fc.xml +1643 -0
  411. data/spec/fixtures/gv800hj8141/temp/BIHAR-iso19139.xml +744 -0
  412. data/spec/fixtures/gw520gz6339/metadata/geoMetadata.xml +3899 -0
  413. data/spec/fixtures/gw520gz6339/temp/DADRA_NAGAR_HAVELI_PT-iso19139-fc.xml +3075 -0
  414. data/spec/fixtures/gw520gz6339/temp/DADRA_NAGAR_HAVELI_PT-iso19139.xml +819 -0
  415. data/spec/fixtures/gy054hz1045/metadata/geoMetadata.xml +2418 -0
  416. data/spec/fixtures/gy054hz1045/temp/HARYANA-iso19139-fc.xml +1633 -0
  417. data/spec/fixtures/gy054hz1045/temp/HARYANA-iso19139.xml +780 -0
  418. data/spec/fixtures/gz352mw6982/metadata/geoMetadata.xml +1772 -0
  419. data/spec/fixtures/gz352mw6982/temp/metadata.iso19139-fc.xml +940 -0
  420. data/spec/fixtures/gz352mw6982/temp/metadata.iso19139.xml +827 -0
  421. data/spec/fixtures/hb489vm9892/metadata/geoMetadata.xml +3663 -0
  422. data/spec/fixtures/hb489vm9892/temp/DISTRICT1981-iso19139-fc.xml +2799 -0
  423. data/spec/fixtures/hb489vm9892/temp/DISTRICT1981-iso19139.xml +859 -0
  424. data/spec/fixtures/hw125dq0418/metadata/geoMetadata.xml +2448 -0
  425. data/spec/fixtures/hw125dq0418/temp/DELHI-iso19139-fc.xml +1599 -0
  426. data/spec/fixtures/hw125dq0418/temp/DELHI-iso19139.xml +844 -0
  427. data/spec/fixtures/hw892mn4587/metadata/geoMetadata.xml +2561 -0
  428. data/spec/fixtures/hw892mn4587/temp/KERALA-iso19139-fc.xml +1763 -0
  429. data/spec/fixtures/hw892mn4587/temp/KERALA-iso19139.xml +793 -0
  430. data/spec/fixtures/jb371hz3868/metadata/geoMetadata.xml +3129 -0
  431. data/spec/fixtures/jb371hz3868/temp/INCOME-iso19139-fc.xml +2263 -0
  432. data/spec/fixtures/jb371hz3868/temp/INCOME-iso19139.xml +861 -0
  433. data/spec/fixtures/jc017yk9928/metadata/geoMetadata.xml +2433 -0
  434. data/spec/fixtures/jc017yk9928/temp/KARNATAKA-iso19139-fc.xml +1599 -0
  435. data/spec/fixtures/jc017yk9928/temp/KARNATAKA-iso19139.xml +829 -0
  436. data/spec/fixtures/jf841ys4828/metadata/geoMetadata.xml +2156 -0
  437. data/spec/fixtures/jf841ys4828/temp/ANDHRA_PRADESH-iso19139-fc.xml +1247 -0
  438. data/spec/fixtures/jf841ys4828/temp/ANDHRA_PRADESH-iso19139.xml +904 -0
  439. data/spec/fixtures/jh802mp2160/metadata/geoMetadata.xml +3917 -0
  440. data/spec/fixtures/jh802mp2160/temp/DELHI_PT-iso19139-fc.xml +3075 -0
  441. data/spec/fixtures/jh802mp2160/temp/DELHI_PT-iso19139.xml +837 -0
  442. data/spec/fixtures/jj806fc3801/metadata/geoMetadata.xml +1235 -0
  443. data/spec/fixtures/jj806fc3801/temp/metadata.iso19139-fc.xml +173 -0
  444. data/spec/fixtures/jj806fc3801/temp/metadata.iso19139.xml +1057 -0
  445. data/spec/fixtures/jq835yn7161/metadata/geoMetadata.xml +2060 -0
  446. data/spec/fixtures/jq835yn7161/temp/HIMACHAL_PRADESH-iso19139-fc.xml +1203 -0
  447. data/spec/fixtures/jq835yn7161/temp/HIMACHAL_PRADESH-iso19139.xml +852 -0
  448. data/spec/fixtures/jr455pt6676/metadata/geoMetadata.xml +2045 -0
  449. data/spec/fixtures/jr455pt6676/temp/TAMILNADU-iso19139-fc.xml +1203 -0
  450. data/spec/fixtures/jr455pt6676/temp/TAMILNADU-iso19139.xml +837 -0
  451. data/spec/fixtures/js637zp2537/metadata/geoMetadata.xml +3894 -0
  452. data/spec/fixtures/js637zp2537/temp/BIHAR-iso19139-fc.xml +3075 -0
  453. data/spec/fixtures/js637zp2537/temp/BIHAR-iso19139.xml +814 -0
  454. data/spec/fixtures/jv502wg9611/metadata/geoMetadata.xml +2052 -0
  455. data/spec/fixtures/jv502wg9611/temp/GOA-iso19139-fc.xml +1203 -0
  456. data/spec/fixtures/jv502wg9611/temp/GOA-iso19139.xml +844 -0
  457. data/spec/fixtures/jw462ck6560/metadata/geoMetadata.xml +2442 -0
  458. data/spec/fixtures/jw462ck6560/temp/JAMMU_KASHMIR-iso19139-fc.xml +1643 -0
  459. data/spec/fixtures/jw462ck6560/temp/JAMMU_KASHMIR-iso19139.xml +794 -0
  460. data/spec/fixtures/kj800fb6273/metadata/geoMetadata.xml +3300 -0
  461. data/spec/fixtures/kj800fb6273/temp/STATE2011-iso19139-fc.xml +2403 -0
  462. data/spec/fixtures/kj800fb6273/temp/STATE2011-iso19139.xml +892 -0
  463. data/spec/fixtures/km504zq3948/metadata/geoMetadata.xml +3862 -0
  464. data/spec/fixtures/km504zq3948/temp/HIMACHAL_PRADESH-iso19139-fc.xml +3075 -0
  465. data/spec/fixtures/km504zq3948/temp/HIMACHAL_PRADESH-iso19139.xml +782 -0
  466. data/spec/fixtures/ks297fy1411/metadata/geoMetadata.xml +1043 -0
  467. data/spec/fixtures/ks297fy1411/temp/OFFSH_BLOCKS-iso19139-fc.xml +350 -0
  468. data/spec/fixtures/ks297fy1411/temp/OFFSH_BLOCKS-iso19139.xml +688 -0
  469. data/spec/fixtures/md358hy5049/metadata/geoMetadata.xml +2424 -0
  470. data/spec/fixtures/md358hy5049/temp/MIZORAM-iso19139-fc.xml +1570 -0
  471. data/spec/fixtures/md358hy5049/temp/MIZORAM-iso19139.xml +849 -0
  472. data/spec/fixtures/mg745bq0193/metadata/geoMetadata.xml +2183 -0
  473. data/spec/fixtures/mg745bq0193/temp/MADHYA_PRADESH-iso19139-fc.xml +1383 -0
  474. data/spec/fixtures/mg745bq0193/temp/MADHYA_PRADESH-iso19139.xml +795 -0
  475. data/spec/fixtures/mh187yx3536/metadata/geoMetadata.xml +2447 -0
  476. data/spec/fixtures/mh187yx3536/temp/WEST_BENGAL-iso19139-fc.xml +1643 -0
  477. data/spec/fixtures/mh187yx3536/temp/WEST_BENGAL-iso19139.xml +799 -0
  478. data/spec/fixtures/mk488yn6694/metadata/geoMetadata.xml +2042 -0
  479. data/spec/fixtures/mk488yn6694/temp/GUJARAT-iso19139-fc.xml +1203 -0
  480. data/spec/fixtures/mk488yn6694/temp/GUJARAT-iso19139.xml +834 -0
  481. data/spec/fixtures/my216kp3008/metadata/geoMetadata.xml +2366 -0
  482. data/spec/fixtures/my216kp3008/temp/DELHI-iso19139-fc.xml +1643 -0
  483. data/spec/fixtures/my216kp3008/temp/DELHI-iso19139.xml +718 -0
  484. data/spec/fixtures/my504nz9827/metadata/geoMetadata.xml +2367 -0
  485. data/spec/fixtures/my504nz9827/temp/JAMMU_KASHMIR-iso19139-fc.xml +1519 -0
  486. data/spec/fixtures/my504nz9827/temp/JAMMU_KASHMIR-iso19139.xml +843 -0
  487. data/spec/fixtures/ng819jm8700/metadata/geoMetadata.xml +2496 -0
  488. data/spec/fixtures/ng819jm8700/temp/MANIPUR-iso19139-fc.xml +1643 -0
  489. data/spec/fixtures/ng819jm8700/temp/MANIPUR-iso19139.xml +848 -0
  490. data/spec/fixtures/np020jq2139/metadata/geoMetadata.xml +1153 -0
  491. data/spec/fixtures/np020jq2139/temp/metadata.iso19139-fc.xml +160 -0
  492. data/spec/fixtures/np020jq2139/temp/metadata.iso19139.xml +988 -0
  493. data/spec/fixtures/ns377mt1608/metadata/geoMetadata.xml +7125 -0
  494. data/spec/fixtures/ns377mt1608/temp/STATE1991-iso19139-fc.xml +6283 -0
  495. data/spec/fixtures/ns377mt1608/temp/STATE1991-iso19139.xml +837 -0
  496. data/spec/fixtures/nw926np8508/metadata/geoMetadata.xml +1143 -0
  497. data/spec/fixtures/nw926np8508/temp/metadata.iso19139-fc.xml +160 -0
  498. data/spec/fixtures/nw926np8508/temp/metadata.iso19139.xml +978 -0
  499. data/spec/fixtures/ny358rm8559/metadata/geoMetadata.xml +2459 -0
  500. data/spec/fixtures/ny358rm8559/temp/TRIPURA-iso19139-fc.xml +1599 -0
  501. data/spec/fixtures/ny358rm8559/temp/TRIPURA-iso19139.xml +855 -0
  502. data/spec/fixtures/nz176rm8192/metadata/geoMetadata.xml +2618 -0
  503. data/spec/fixtures/nz176rm8192/temp/DISTRICT2011-iso19139-fc.xml +1813 -0
  504. data/spec/fixtures/nz176rm8192/temp/DISTRICT2011-iso19139.xml +800 -0
  505. data/spec/fixtures/nz252rq2252/metadata/geoMetadata.xml +2387 -0
  506. data/spec/fixtures/nz252rq2252/temp/UTTAR_PRADESH-iso19139-fc.xml +1599 -0
  507. data/spec/fixtures/nz252rq2252/temp/UTTAR_PRADESH-iso19139.xml +783 -0
  508. data/spec/fixtures/pd902kb3348/metadata/geoMetadata.xml +2414 -0
  509. data/spec/fixtures/pd902kb3348/temp/MADHYA_PRADESH-iso19139-fc.xml +1633 -0
  510. data/spec/fixtures/pd902kb3348/temp/MADHYA_PRADESH-iso19139.xml +776 -0
  511. data/spec/fixtures/pz792fz1776/metadata/geoMetadata.xml +2437 -0
  512. data/spec/fixtures/pz792fz1776/temp/MAHARASHTRA-iso19139-fc.xml +1643 -0
  513. data/spec/fixtures/pz792fz1776/temp/MAHARASHTRA-iso19139.xml +789 -0
  514. data/spec/fixtures/qb767ss4042/metadata/geoMetadata.xml +2045 -0
  515. data/spec/fixtures/qb767ss4042/temp/UTTAR_PRADESH-iso19139-fc.xml +1200 -0
  516. data/spec/fixtures/qb767ss4042/temp/UTTAR_PRADESH-iso19139.xml +840 -0
  517. data/spec/fixtures/qc091qw0570/metadata/geoMetadata.xml +2428 -0
  518. data/spec/fixtures/qc091qw0570/temp/GUJARAT-iso19139-fc.xml +1643 -0
  519. data/spec/fixtures/qc091qw0570/temp/GUJARAT-iso19139.xml +780 -0
  520. data/spec/fixtures/qc652vr7204/metadata/geoMetadata.xml +3877 -0
  521. data/spec/fixtures/qc652vr7204/temp/ANDHRA_PRADESH_PT-iso19139-fc.xml +3075 -0
  522. data/spec/fixtures/qc652vr7204/temp/ANDHRA_PRADESH_PT-iso19139.xml +797 -0
  523. data/spec/fixtures/qk786js7484/metadata/geoMetadata.xml +3267 -0
  524. data/spec/fixtures/qk786js7484/temp/DISTRICT1961-iso19139-fc.xml +2403 -0
  525. data/spec/fixtures/qk786js7484/temp/DISTRICT1961-iso19139.xml +859 -0
  526. data/spec/fixtures/qn676pg6767/metadata/geoMetadata.xml +3861 -0
  527. data/spec/fixtures/qn676pg6767/temp/GOA-iso19139-fc.xml +3075 -0
  528. data/spec/fixtures/qn676pg6767/temp/GOA-iso19139.xml +781 -0
  529. data/spec/fixtures/qr255jh4074/metadata/geoMetadata.xml +3226 -0
  530. data/spec/fixtures/qr255jh4074/temp/LOKSABHA_14-iso19139-fc.xml +2366 -0
  531. data/spec/fixtures/qr255jh4074/temp/LOKSABHA_14-iso19139.xml +855 -0
  532. data/spec/fixtures/qr374kj4827/metadata/geoMetadata.xml +2428 -0
  533. data/spec/fixtures/qr374kj4827/temp/ASSAM-iso19139-fc.xml +1643 -0
  534. data/spec/fixtures/qr374kj4827/temp/ASSAM-iso19139.xml +780 -0
  535. data/spec/fixtures/qy162js1748/metadata/geoMetadata.xml +2440 -0
  536. data/spec/fixtures/qy162js1748/temp/CHHATTISGARH-iso19139-fc.xml +1643 -0
  537. data/spec/fixtures/qy162js1748/temp/CHHATTISGARH-iso19139.xml +792 -0
  538. data/spec/fixtures/rd446vf2633/metadata/geoMetadata.xml +1109 -0
  539. data/spec/fixtures/rd446vf2633/temp/NAGALAND-iso19139-fc.xml +379 -0
  540. data/spec/fixtures/rd446vf2633/temp/NAGALAND-iso19139.xml +725 -0
  541. data/spec/fixtures/rf389hf2983/metadata/geoMetadata.xml +3929 -0
  542. data/spec/fixtures/rf389hf2983/temp/CHHATTISGARH_PT-iso19139-fc.xml +3075 -0
  543. data/spec/fixtures/rf389hf2983/temp/CHHATTISGARH_PT-iso19139.xml +849 -0
  544. data/spec/fixtures/rf859ff4582/metadata/geoMetadata.xml +1251 -0
  545. data/spec/fixtures/rf859ff4582/temp/JHARKHAND-iso19139-fc.xml +459 -0
  546. data/spec/fixtures/rf859ff4582/temp/JHARKHAND-iso19139.xml +787 -0
  547. data/spec/fixtures/rh343ds8931/metadata/geoMetadata.xml +2032 -0
  548. data/spec/fixtures/rh343ds8931/temp/BIHAR-iso19139-fc.xml +1174 -0
  549. data/spec/fixtures/rh343ds8931/temp/BIHAR-iso19139.xml +853 -0
  550. data/spec/fixtures/rn815xk8157/metadata/geoMetadata.xml +2417 -0
  551. data/spec/fixtures/rn815xk8157/temp/SIKKIM-iso19139-fc.xml +1563 -0
  552. data/spec/fixtures/rn815xk8157/temp/SIKKIM-iso19139.xml +849 -0
  553. data/spec/fixtures/rq653sz4470/metadata/geoMetadata.xml +2394 -0
  554. data/spec/fixtures/rq653sz4470/temp/CHHATTISGARH-iso19139-fc.xml +1599 -0
  555. data/spec/fixtures/rq653sz4470/temp/CHHATTISGARH-iso19139.xml +790 -0
  556. data/spec/fixtures/rt625ws6022/metadata/geoMetadata.xml +833 -0
  557. data/spec/fixtures/rt625ws6022/temp/GULF_FAIRWAYS-iso19139-fc.xml +144 -0
  558. data/spec/fixtures/rt625ws6022/temp/GULF_FAIRWAYS-iso19139.xml +684 -0
  559. data/spec/fixtures/sc330vf4259/metadata/geoMetadata.xml +1836 -0
  560. data/spec/fixtures/sc330vf4259/temp/JHARKHAND-iso19139-fc.xml +987 -0
  561. data/spec/fixtures/sc330vf4259/temp/JHARKHAND-iso19139.xml +844 -0
  562. data/spec/fixtures/sq479mx3086/metadata/geoMetadata.xml +1043 -0
  563. data/spec/fixtures/sq479mx3086/temp/OFFSH_PLATF-iso19139-fc.xml +365 -0
  564. data/spec/fixtures/sq479mx3086/temp/OFFSH_PLATF-iso19139.xml +673 -0
  565. data/spec/fixtures/sr686bm4098/metadata/geoMetadata.xml +3896 -0
  566. data/spec/fixtures/sr686bm4098/temp/DAMAN_DIU_PT-iso19139-fc.xml +3075 -0
  567. data/spec/fixtures/sr686bm4098/temp/DAMAN_DIU_PT-iso19139.xml +816 -0
  568. data/spec/fixtures/sv303sh5583/metadata/geoMetadata.xml +2395 -0
  569. data/spec/fixtures/sv303sh5583/temp/ARUNACHAL_PRADESH-iso19139-fc.xml +1555 -0
  570. data/spec/fixtures/sv303sh5583/temp/ARUNACHAL_PRADESH-iso19139.xml +835 -0
  571. data/spec/fixtures/sy319nh8520/metadata/geoMetadata.xml +3925 -0
  572. data/spec/fixtures/sy319nh8520/temp/GUJARAT-iso19139-fc.xml +3075 -0
  573. data/spec/fixtures/sy319nh8520/temp/GUJARAT-iso19139.xml +845 -0
  574. data/spec/fixtures/td363vx2792/metadata/geoMetadata.xml +3964 -0
  575. data/spec/fixtures/td363vx2792/temp/HIMACHAL_PRADESH_PT-iso19139-fc.xml +3075 -0
  576. data/spec/fixtures/td363vx2792/temp/HIMACHAL_PRADESH_PT-iso19139.xml +884 -0
  577. data/spec/fixtures/tf374bd2484/metadata/geoMetadata.xml +1464 -0
  578. data/spec/fixtures/tf374bd2484/temp/DISTRICT1951-iso19139-fc.xml +599 -0
  579. data/spec/fixtures/tf374bd2484/temp/DISTRICT1951-iso19139.xml +860 -0
  580. data/spec/fixtures/tj797mj7877/metadata/geoMetadata.xml +2359 -0
  581. data/spec/fixtures/tj797mj7877/temp/LOKSABHA_15-iso19139-fc.xml +1511 -0
  582. data/spec/fixtures/tj797mj7877/temp/LOKSABHA_15-iso19139.xml +843 -0
  583. data/spec/fixtures/tv060wq5179/metadata/geoMetadata.xml +2046 -0
  584. data/spec/fixtures/tv060wq5179/temp/ASSAM-iso19139-fc.xml +1203 -0
  585. data/spec/fixtures/tv060wq5179/temp/ASSAM-iso19139.xml +838 -0
  586. data/spec/fixtures/tv536bn1915/metadata/geoMetadata.xml +2296 -0
  587. data/spec/fixtures/tv536bn1915/temp/ARUNACHAL_PRADESH-iso19139-fc.xml +1687 -0
  588. data/spec/fixtures/tv536bn1915/temp/ARUNACHAL_PRADESH-iso19139.xml +604 -0
  589. data/spec/fixtures/tz359cc2977/metadata/geoMetadata.xml +1842 -0
  590. data/spec/fixtures/tz359cc2977/temp/MANIPUR-iso19139-fc.xml +987 -0
  591. data/spec/fixtures/tz359cc2977/temp/MANIPUR-iso19139.xml +850 -0
  592. data/spec/fixtures/vb525my6511/metadata/geoMetadata.xml +2026 -0
  593. data/spec/fixtures/vb525my6511/temp/UTTARAKHAND-iso19139-fc.xml +1167 -0
  594. data/spec/fixtures/vb525my6511/temp/UTTARAKHAND-iso19139.xml +854 -0
  595. data/spec/fixtures/vh802fs4240/metadata/geoMetadata.xml +2189 -0
  596. data/spec/fixtures/vh802fs4240/temp/PONDICHERRY-iso19139-fc.xml +1343 -0
  597. data/spec/fixtures/vh802fs4240/temp/PONDICHERRY-iso19139.xml +841 -0
  598. data/spec/fixtures/vk120xn2474/metadata/geoMetadata.xml +1125 -0
  599. data/spec/fixtures/vk120xn2474/temp/PLSS_SEC-iso19139-fc.xml +435 -0
  600. data/spec/fixtures/vk120xn2474/temp/PLSS_SEC-iso19139.xml +685 -0
  601. data/spec/fixtures/vn439bc7316/metadata/geoMetadata.xml +1979 -0
  602. data/spec/fixtures/vn439bc7316/temp/KERALA-iso19139-fc.xml +1131 -0
  603. data/spec/fixtures/vn439bc7316/temp/KERALA-iso19139.xml +843 -0
  604. data/spec/fixtures/vq745jk0695/metadata/geoMetadata.xml +1787 -0
  605. data/spec/fixtures/vq745jk0695/temp/MEGHALAYA-iso19139-fc.xml +987 -0
  606. data/spec/fixtures/vq745jk0695/temp/MEGHALAYA-iso19139.xml +795 -0
  607. data/spec/fixtures/vr593vj7147/metadata/geoMetadata.xml +3895 -0
  608. data/spec/fixtures/vr593vj7147/temp/ANDHRA_PRADESH-iso19139-fc.xml +3075 -0
  609. data/spec/fixtures/vr593vj7147/temp/ANDHRA_PRADESH-iso19139.xml +815 -0
  610. data/spec/fixtures/vw911qb5271/metadata/geoMetadata.xml +8557 -0
  611. data/spec/fixtures/vw911qb5271/temp/DISTRICT2001-iso19139-fc.xml +7683 -0
  612. data/spec/fixtures/vw911qb5271/temp/DISTRICT2001-iso19139.xml +869 -0
  613. data/spec/fixtures/wg680pz0365/metadata/geoMetadata.xml +2475 -0
  614. data/spec/fixtures/wg680pz0365/temp/ANDHRA_PRADESH-iso19139-fc.xml +1599 -0
  615. data/spec/fixtures/wg680pz0365/temp/ANDHRA_PRADESH-iso19139.xml +871 -0
  616. data/spec/fixtures/wg761xn1926/metadata/geoMetadata.xml +3941 -0
  617. data/spec/fixtures/wg761xn1926/temp/HARYANA-iso19139-fc.xml +3075 -0
  618. data/spec/fixtures/wg761xn1926/temp/HARYANA-iso19139.xml +861 -0
  619. data/spec/fixtures/wh870qw1934/metadata/geoMetadata.xml +2428 -0
  620. data/spec/fixtures/wh870qw1934/temp/PUNJAB-iso19139-fc.xml +1643 -0
  621. data/spec/fixtures/wh870qw1934/temp/PUNJAB-iso19139.xml +780 -0
  622. data/spec/fixtures/wk775mm4673/metadata/geoMetadata.xml +2458 -0
  623. data/spec/fixtures/wk775mm4673/temp/MAHARASHTRA-iso19139-fc.xml +1599 -0
  624. data/spec/fixtures/wk775mm4673/temp/MAHARASHTRA-iso19139.xml +854 -0
  625. data/spec/fixtures/ws171yz2165/metadata/geoMetadata.xml +3868 -0
  626. data/spec/fixtures/ws171yz2165/temp/ARUNACHAL_PRADESH_PT-iso19139-fc.xml +3075 -0
  627. data/spec/fixtures/ws171yz2165/temp/ARUNACHAL_PRADESH_PT-iso19139.xml +788 -0
  628. data/spec/fixtures/wt473hz7153/metadata/geoMetadata.xml +3898 -0
  629. data/spec/fixtures/wt473hz7153/temp/CHANDIGARH_PT-iso19139-fc.xml +3075 -0
  630. data/spec/fixtures/wt473hz7153/temp/CHANDIGARH_PT-iso19139.xml +818 -0
  631. data/spec/fixtures/ww217dj0457/metadata/geoMetadata.xml +1205 -0
  632. data/spec/fixtures/ww217dj0457/temp/CO2_PIPE-iso19139-fc.xml +471 -0
  633. data/spec/fixtures/ww217dj0457/temp/CO2_PIPE-iso19139.xml +729 -0
  634. data/spec/fixtures/wy875pk9849/metadata/geoMetadata.xml +3173 -0
  635. data/spec/fixtures/wy875pk9849/temp/STATE1961-iso19139-fc.xml +2279 -0
  636. data/spec/fixtures/wy875pk9849/temp/STATE1961-iso19139.xml +889 -0
  637. data/spec/fixtures/xb018tk2042/metadata/geoMetadata.xml +2335 -0
  638. data/spec/fixtures/xb018tk2042/temp/STATE1981-iso19139-fc.xml +1443 -0
  639. data/spec/fixtures/xb018tk2042/temp/STATE1981-iso19139.xml +887 -0
  640. data/spec/fixtures/xg539vw8586/metadata/geoMetadata.xml +2405 -0
  641. data/spec/fixtures/xg539vw8586/temp/ORISSA-iso19139-fc.xml +1599 -0
  642. data/spec/fixtures/xg539vw8586/temp/ORISSA-iso19139.xml +801 -0
  643. data/spec/fixtures/xv475kp4644/metadata/geoMetadata.xml +3871 -0
  644. data/spec/fixtures/xv475kp4644/temp/ASSAM_PT-iso19139-fc.xml +3075 -0
  645. data/spec/fixtures/xv475kp4644/temp/ASSAM_PT-iso19139.xml +791 -0
  646. data/spec/fixtures/xy096gc2959/metadata/geoMetadata.xml +2432 -0
  647. data/spec/fixtures/xy096gc2959/temp/GOA-iso19139-fc.xml +1643 -0
  648. data/spec/fixtures/xy096gc2959/temp/GOA-iso19139.xml +784 -0
  649. data/spec/fixtures/xz518gz3362/metadata/geoMetadata.xml +2434 -0
  650. data/spec/fixtures/xz518gz3362/temp/UTTARAKHAND-iso19139-fc.xml +1643 -0
  651. data/spec/fixtures/xz518gz3362/temp/UTTARAKHAND-iso19139.xml +786 -0
  652. data/spec/fixtures/yh986wy4737/metadata/geoMetadata.xml +1160 -0
  653. data/spec/fixtures/yh986wy4737/temp/NAGALAND-iso19139-fc.xml +384 -0
  654. data/spec/fixtures/yh986wy4737/temp/NAGALAND-iso19139.xml +771 -0
  655. data/spec/fixtures/yn187fq4474/metadata/geoMetadata.xml +2168 -0
  656. data/spec/fixtures/yn187fq4474/temp/KARNATAKA-iso19139-fc.xml +1379 -0
  657. data/spec/fixtures/yn187fq4474/temp/KARNATAKA-iso19139.xml +784 -0
  658. data/spec/fixtures/yn236mw3250/metadata/geoMetadata.xml +2428 -0
  659. data/spec/fixtures/yn236mw3250/temp/TAMILNADU-iso19139-fc.xml +1643 -0
  660. data/spec/fixtures/yn236mw3250/temp/TAMILNADU-iso19139.xml +780 -0
  661. data/spec/fixtures/yz596nz0112/metadata/geoMetadata.xml +2012 -0
  662. data/spec/fixtures/yz596nz0112/temp/WEST_BENGAL-iso19139-fc.xml +1203 -0
  663. data/spec/fixtures/yz596nz0112/temp/WEST_BENGAL-iso19139.xml +804 -0
  664. data/spec/fixtures/zk596gy7380/metadata/geoMetadata.xml +4147 -0
  665. data/spec/fixtures/zk596gy7380/temp/DISTRICT1971-iso19139-fc.xml +3283 -0
  666. data/spec/fixtures/zk596gy7380/temp/DISTRICT1971-iso19139.xml +859 -0
  667. data/spec/fixtures/zn452hh7431/metadata/geoMetadata.xml +2337 -0
  668. data/spec/fixtures/zn452hh7431/temp/RAJASTHAN-iso19139-fc.xml +1505 -0
  669. data/spec/fixtures/zn452hh7431/temp/RAJASTHAN-iso19139.xml +827 -0
  670. data/spec/fixtures/zt093fw6519/metadata/geoMetadata.xml +2380 -0
  671. data/spec/fixtures/zt093fw6519/temp/MIZORAM-iso19139-fc.xml +1643 -0
  672. data/spec/fixtures/zt093fw6519/temp/MIZORAM-iso19139.xml +732 -0
  673. data/spec/fixtures/zv925hd6723/metadata/geoMetadata.xml +1473 -0
  674. data/spec/fixtures/zv925hd6723/temp/OGWELLS-iso19139-fc.xml +759 -0
  675. data/spec/fixtures/zv925hd6723/temp/OGWELLS-iso19139.xml +709 -0
  676. data/spec/fixtures/zy658cr1728/metadata/geoMetadata.xml +3814 -0
  677. data/spec/fixtures/zy658cr1728/temp/ANDAMAAN_NICOBAR_PT-iso19139-fc.xml +3075 -0
  678. data/spec/fixtures/zy658cr1728/temp/ANDAMAAN_NICOBAR_PT-iso19139.xml +734 -0
  679. data/spec/fixtures/zz943vx1492/metadata/geoMetadata.xml +861 -0
  680. data/spec/fixtures/zz943vx1492/temp/BASINS-iso19139-fc.xml +164 -0
  681. data/spec/fixtures/zz943vx1492/temp/BASINS-iso19139.xml +692 -0
  682. data/spec/integration/solr_spec_notready.rb +51 -0
  683. data/spec/test_net_ssh_krb.rb +21 -0
  684. data/spec/unit/gazetteer_spec.rb +100 -0
  685. data/spec/unit/transform_spec.rb +40 -0
  686. data/spec/unit/utils_spec.rb +32 -0
  687. metadata +1491 -0
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <names xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:gmi="http://www.isotc211.org/2005/gmi">
3
+ <name tagname="gmd:spatialRepresentationInfo">Spatial Representation Information</name>
4
+ <name tagname="gmd:referenceSystemInfo">Reference System Information</name>
5
+ <name tagname="gmd:identificationInfo">Identification Information</name>
6
+ <name tagname="gmd:contentInfo">Content Information</name>
7
+ <name tagname="gmd:distributionInfo">Distribution Information</name>
8
+ <name tagname="gmd:dataQualityInfo">Data Quality Information</name>
9
+ <name tagname="gmd:portrayalCatalogueInfo">Portrayal Catalogue Information</name>
10
+ <name tagname="gmd:metadataConstraints">Metadata Constraint Information</name>
11
+ <name tagname="gmd:applicationSchemaInfo">Application Schema Information</name>
12
+ <name tagname="gmd:metadataMaintenance">Metadata Maintenance Information</name>
13
+ <name tagname="gmi:acquisitionInformation">Acquisition Information</name>
14
+ <name tagname="gmd:metadataExtensionInfo">Metadata Extension Information</name>
15
+ <name tagname="gfc:FC_FeatureCatalogue">Feature Catalog Information</name>
16
+ </names>
@@ -0,0 +1,227 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3
+ <!--
4
+ Print the text of an XML element as preformatted text or wrapped paragraphs,
5
+ as appropriate. Makes the text readable on screen, and preserves the author's
6
+ intended formatting.
7
+
8
+ Created 6/20/06 Richard.Fozzard@noaa.gov
9
+
10
+ @version $Id$
11
+
12
+ The stylesheet that imports this file needs to define two callback templates:
13
+ printFormattedLine Output a line, preserving all formatting (whitespace)
14
+ printParagraphLine Output a line as a continuous paragraph (word-wrapped)
15
+ both with the param "line", the one line string to print.
16
+
17
+ Each callback template then outputs the "line" string as desired (e.g. HTML,
18
+ text, XML). These templates can have some optional params which printFormatted
19
+ will pass through as needed:
20
+ "restOfString" Useful for doing something different at the end, e.g. no <P>
21
+ "optional-param-1" Useful for passing indent values
22
+ "optional-param-2" or word wrap widths...
23
+ "optional-param-3" or whatever...
24
+
25
+ Then, whenever a string of one or more lines needs to be output, call the
26
+ printFormatted template with the params:
27
+ "elementContent" a one or more line string to print
28
+ "formattedSectionElement" Name of element to wrap a sequence of formatted lines
29
+ defaults to 'PRE', can be none, i.e. ''
30
+ plus any of the desired optional params for the callbacks
31
+ -->
32
+ <!--
33
+ g-fold-width
34
+ This parameter specifies the maximum length of a line when the
35
+ formattedSectionElement (<pre> by default) is used. The browser
36
+ may wrap PRE text at this width.
37
+ [only works in Firefox 1+]
38
+ -->
39
+ <!-- xsl:param name="g-fold-width" select="'80'"/ -->
40
+ <!-- Whitespace characters -->
41
+ <xsl:variable name="newline">
42
+ <xsl:text>&#10;</xsl:text>
43
+ </xsl:variable>
44
+ <xsl:variable name="tab">
45
+ <xsl:text>&#9;</xsl:text>
46
+ </xsl:variable>
47
+ <xsl:template name="printFormatted">
48
+ <!-- string to print out -->
49
+ <xsl:param name="elementContent"/>
50
+ <!-- Name of element to wrap a sequence of formatted lines.
51
+ Set to empty string for no element, i.e. plain text output. -->
52
+ <xsl:param name="formattedSectionElement" select="'PRE'"/>
53
+ <!-- used internally to skip 1 or more formatted lines -->
54
+ <xsl:param name="skipFormattedLines" select="false()"/>
55
+ <!-- if needed by callback template: -->
56
+ <xsl:param name="optional-param-1"/>
57
+ <xsl:param name="optional-param-2"/>
58
+ <xsl:param name="optional-param-3"/>
59
+ <xsl:if test="$elementContent">
60
+ <!-- if not at end of string -->
61
+ <xsl:variable name="containsNewline" select="contains($elementContent,$newline)"/>
62
+ <xsl:variable name="firstLine">
63
+ <xsl:call-template name="strip-trailing-whitespace">
64
+ <xsl:with-param name="content">
65
+ <xsl:choose>
66
+ <xsl:when test="$containsNewline">
67
+ <xsl:value-of select="substring-before($elementContent,$newline)"/>
68
+ </xsl:when>
69
+ <xsl:otherwise>
70
+ <xsl:value-of select="$elementContent"/>
71
+ </xsl:otherwise>
72
+ </xsl:choose>
73
+ </xsl:with-param>
74
+ </xsl:call-template>
75
+ </xsl:variable>
76
+ <xsl:variable name="restOfString" select="substring-after($elementContent,$newline)"/>
77
+ <!-- This line is formatted if it has 3 spaces or a tab or empty line -->
78
+ <xsl:variable name="thisLineFormatted" select="$firstLine = '' or contains($firstLine,' ') or contains($firstLine,$tab)"/>
79
+ <xsl:choose>
80
+ <!-- if a formatted line -->
81
+ <xsl:when test="$thisLineFormatted = true()">
82
+ <!-- if at start of a formatted section, and it's a non-empty line before the end of the element, print it -->
83
+ <xsl:if test="not($skipFormattedLines) and (normalize-space($firstLine) or normalize-space($restOfString))">
84
+ <xsl:choose>
85
+ <!-- if specified, wrap a formatted section (1 or more lines) in an element -->
86
+ <xsl:when test="$formattedSectionElement">
87
+ <xsl:element name="{$formattedSectionElement}">
88
+ <xsl:attribute name="wrap"/>
89
+ <!-- works on Firefox 1.5+, not on IE 6/7, Safari 2 -->
90
+ <!-- xsl:attribute name="width"><xsl:value-of select="$g-fold-width"/></xsl:attribute -->
91
+ <xsl:call-template name="printFormattedSection">
92
+ <xsl:with-param name="elementContent" select="$elementContent"/>
93
+ <xsl:with-param name="optional-param-1" select="$optional-param-1"/>
94
+ <xsl:with-param name="optional-param-2" select="$optional-param-2"/>
95
+ <xsl:with-param name="optional-param-3" select="$optional-param-3"/>
96
+ </xsl:call-template>
97
+ </xsl:element>
98
+ </xsl:when>
99
+ <!-- else if no element specified,
100
+ output a formatted section (1 or more lines) directly -->
101
+ <xsl:otherwise>
102
+ <xsl:call-template name="printFormattedSection">
103
+ <xsl:with-param name="elementContent" select="$elementContent"/>
104
+ <xsl:with-param name="optional-param-1" select="$optional-param-1"/>
105
+ <xsl:with-param name="optional-param-2" select="$optional-param-2"/>
106
+ <xsl:with-param name="optional-param-3" select="$optional-param-3"/>
107
+ </xsl:call-template>
108
+ </xsl:otherwise>
109
+ </xsl:choose>
110
+ </xsl:if>
111
+ <!-- go to next line, recursively until next non-formatted line or end of string -->
112
+ <xsl:call-template name="printFormatted">
113
+ <xsl:with-param name="elementContent" select="$restOfString"/>
114
+ <xsl:with-param name="formattedSectionElement" select="$formattedSectionElement"/>
115
+ <xsl:with-param name="skipFormattedLines" select="true()"/>
116
+ <xsl:with-param name="optional-param-1" select="$optional-param-1"/>
117
+ <xsl:with-param name="optional-param-2" select="$optional-param-2"/>
118
+ <xsl:with-param name="optional-param-3" select="$optional-param-3"/>
119
+ </xsl:call-template>
120
+ </xsl:when>
121
+ <!-- else not a formatted line; treat as paragraph -->
122
+ <xsl:otherwise>
123
+ <!-- make callback to importing stylesheet to print the paragraph -->
124
+ <xsl:call-template name="printParagraphLine">
125
+ <xsl:with-param name="line" select="$firstLine"/>
126
+ <xsl:with-param name="restOfString" select="$restOfString"/>
127
+ <xsl:with-param name="optional-param-1" select="$optional-param-1"/>
128
+ <xsl:with-param name="optional-param-2" select="$optional-param-2"/>
129
+ <xsl:with-param name="optional-param-3" select="$optional-param-3"/>
130
+ </xsl:call-template>
131
+ <!-- go to next line, recursively until non-formatted line or end of string -->
132
+ <xsl:call-template name="printFormatted">
133
+ <xsl:with-param name="elementContent" select="$restOfString"/>
134
+ <xsl:with-param name="formattedSectionElement" select="$formattedSectionElement"/>
135
+ <xsl:with-param name="skipFormattedLines" select="false()"/>
136
+ <xsl:with-param name="optional-param-1" select="$optional-param-1"/>
137
+ <xsl:with-param name="optional-param-2" select="$optional-param-2"/>
138
+ <xsl:with-param name="optional-param-3" select="$optional-param-3"/>
139
+ </xsl:call-template>
140
+ </xsl:otherwise>
141
+ </xsl:choose>
142
+ </xsl:if>
143
+ </xsl:template>
144
+ <xsl:template name="printFormattedSection">
145
+ <xsl:param name="elementContent"/>
146
+ <!-- string to print out -->
147
+ <!-- if needed by callback template: -->
148
+ <xsl:param name="optional-param-1"/>
149
+ <xsl:param name="optional-param-2"/>
150
+ <xsl:param name="optional-param-3"/>
151
+ <xsl:if test="$elementContent">
152
+ <!-- if not at end of string -->
153
+ <xsl:variable name="firstLine">
154
+ <xsl:call-template name="strip-trailing-whitespace">
155
+ <xsl:with-param name="content" select="substring-before($elementContent,$newline)"/>
156
+ </xsl:call-template>
157
+ </xsl:variable>
158
+ <xsl:variable name="restOfString" select="substring-after($elementContent,$newline)"/>
159
+ <!-- This line is formatted if it has 3 spaces or a tab or empty line -->
160
+ <xsl:variable name="thisLineFormatted" select="$firstLine = '' or contains($firstLine,' ') or contains($firstLine,$tab)"/>
161
+ <xsl:if test="$thisLineFormatted = true()">
162
+ <!-- if a formatted line -->
163
+ <!-- make callback to importing stylesheet to print the formatted line -->
164
+ <xsl:call-template name="printFormattedLine">
165
+ <xsl:with-param name="line" select="$firstLine"/>
166
+ <xsl:with-param name="restOfString" select="$restOfString"/>
167
+ <xsl:with-param name="optional-param-1" select="$optional-param-1"/>
168
+ <xsl:with-param name="optional-param-2" select="$optional-param-2"/>
169
+ <xsl:with-param name="optional-param-3" select="$optional-param-3"/>
170
+ </xsl:call-template>
171
+ <!-- recursively call self until all formatted lines written -->
172
+ <xsl:call-template name="printFormattedSection">
173
+ <xsl:with-param name="elementContent" select="$restOfString"/>
174
+ <xsl:with-param name="optional-param-1" select="$optional-param-1"/>
175
+ <xsl:with-param name="optional-param-2" select="$optional-param-2"/>
176
+ <xsl:with-param name="optional-param-3" select="$optional-param-3"/>
177
+ </xsl:call-template>
178
+ </xsl:if>
179
+ <!-- do nothing and end recursion if we find a non-formatted, plain line -->
180
+ </xsl:if>
181
+ </xsl:template>
182
+ <!--
183
+ Strip the leading white space (including newlines or other characters
184
+ that get translated to white space by normalize-space) from a block
185
+ of text.
186
+
187
+ [Stolen from somewhere on the web using Google.]
188
+ -->
189
+ <xsl:template name="strip-leading-whitespace">
190
+ <xsl:param name="content"/>
191
+ <xsl:variable name="normalized-text" select="normalize-space($content)"/>
192
+ <xsl:variable name="first-char" select="substring($normalized-text,1,1)"/>
193
+ <xsl:variable name="leading-spaces" select="substring-before($content,$first-char)"/>
194
+ <xsl:choose>
195
+ <xsl:when test="string-length($leading-spaces) &gt; 0">
196
+ <xsl:value-of select="substring-after($content,$leading-spaces)"/>
197
+ </xsl:when>
198
+ <xsl:otherwise>
199
+ <xsl:value-of select="$content"/>
200
+ </xsl:otherwise>
201
+ </xsl:choose>
202
+ </xsl:template>
203
+ <!--
204
+ Strip the trailing white space (including newlines or other characters
205
+ that get translated to white space by normalize-space) from a block
206
+ of text.
207
+
208
+ [Stolen from somewhere on the web using Google.]
209
+ -->
210
+ <xsl:template name="strip-trailing-whitespace">
211
+ <xsl:param name="content"/>
212
+ <xsl:param name="i" select="string-length($content)"/>
213
+ <xsl:choose>
214
+ <xsl:when test="translate(substring($content, $i, 1), ' &#9;&#10;&#13;', '')">
215
+ <xsl:value-of select="substring($content,1,$i)"/>
216
+ </xsl:when>
217
+ <xsl:when test="$i &lt; 2"/>
218
+ <!-- done! -->
219
+ <xsl:otherwise>
220
+ <xsl:call-template name="strip-trailing-whitespace">
221
+ <xsl:with-param name="content" select="$content"/>
222
+ <xsl:with-param name="i" select="$i - 1"/>
223
+ </xsl:call-template>
224
+ </xsl:otherwise>
225
+ </xsl:choose>
226
+ </xsl:template>
227
+ </xsl:stylesheet>
@@ -0,0 +1,171 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3
+ <!--
4
+ Print an XML element as plain formatted text or wrapped paragraphs,
5
+ as appropriate. Makes the text readable on screen, and preserves the author's
6
+ intended formatting.
7
+
8
+ [The 'fold' and 'chop' templates come from original xml-to-text.xsl by Joe
9
+ Shirley.]
10
+
11
+ Created 6/20/06 Richard.Fozzard@noaa.gov
12
+
13
+ @version $Id$
14
+
15
+ This file defines two callback templates used by printFormatted.xsl:
16
+ printFormattedLine Output a line, preserving all formatting (whitespace)
17
+ printParagraphLine Output a line as a continuous paragraph (word-wrapped)
18
+
19
+ -->
20
+ <!--
21
+ g-fold-width
22
+ This parameter specifies the maximum length of a line when the
23
+ 'fold' text formatting option is chosen. This parameter is ignored
24
+ for other text formatting options.
25
+ -->
26
+ <xsl:param name="g-fold-width" select="'80'"/>
27
+ <!--
28
+ g-fold-character
29
+ This parameter specifies where a line may be broken when the
30
+ 'fold' text formatting option is chosen. This parameter is ignored
31
+ for other text formatting options.
32
+ -->
33
+ <xsl:param name="g-fold-character" select="' '"/>
34
+ <xsl:variable name="newline">
35
+ <xsl:text>&#10;</xsl:text>
36
+ </xsl:variable>
37
+ <xsl:variable name="tab">
38
+ <xsl:text>&#9;</xsl:text>
39
+ </xsl:variable>
40
+ <!-- Output a single line formatted with all white space preserved. Indent each line
41
+ to the current indent level.
42
+ -->
43
+ <xsl:template name="printFormattedLine">
44
+ <xsl:param name="line"/>
45
+ <xsl:param name="restOfString"/>
46
+ <xsl:param name="optional-param-1"/>
47
+ <xsl:variable name="indent" select="$optional-param-1"/>
48
+ <!-- Print next line, unless it's a blank line after final text line. -->
49
+ <xsl:if test="(string-length($line) &gt; 0) or (string-length(normalize-space($restOfString)) &gt; 0)">
50
+ <xsl:value-of select="$indent"/>
51
+ <xsl:value-of select="$line"/>
52
+ <xsl:value-of select="$newline"/>
53
+ </xsl:if>
54
+ </xsl:template>
55
+ <!-- Output a single line formatted as a word-wrapped paragraph. Indent each line
56
+ to the current indent level. Use 'fold' template to do the word-wrapping.
57
+ -->
58
+ <xsl:template name="printParagraphLine">
59
+ <xsl:param name="line"/>
60
+ <xsl:param name="restOfString"/>
61
+ <xsl:param name="optional-param-1"/>
62
+ <xsl:param name="optional-param-2"/>
63
+ <xsl:variable name="indent" select="$optional-param-1"/>
64
+ <xsl:variable name="length" select="$optional-param-2"/>
65
+ <!-- Print line with 'fold', unless it's a blank line after final text line. -->
66
+ <xsl:if test="(string-length($line) &gt; 0) or (string-length(normalize-space($restOfString)) &gt; 0)">
67
+ <xsl:value-of select="$indent"/>
68
+ <!-- fold doesn't indent first line -->
69
+ <xsl:call-template name="fold">
70
+ <xsl:with-param name="original-string" select="normalize-space($line)"/>
71
+ <xsl:with-param name="length" select="$length"/>
72
+ <xsl:with-param name="indent" select="$indent"/>
73
+ </xsl:call-template>
74
+ </xsl:if>
75
+ </xsl:template>
76
+ <!--
77
+ Text formatting template. Create line breaks. Indent each line to
78
+ the current indent level. Return the next line each time the
79
+ template is called.
80
+ -->
81
+ <xsl:template name="fold">
82
+ <xsl:param name="original-string"/>
83
+ <xsl:param name="length"/>
84
+ <xsl:param name="indent"/>
85
+ <xsl:param name="fold-width" select="$g-fold-width"/>
86
+ <xsl:variable name="printstring">
87
+ <xsl:choose>
88
+ <xsl:when test="string-length($original-string) &gt; number($length)">
89
+ <!-- Text is longer than max, chop it down and print next line. -->
90
+ <xsl:call-template name="chop">
91
+ <xsl:with-param name="newstring" select="''"/>
92
+ <xsl:with-param name="original-string" select="$original-string"/>
93
+ <xsl:with-param name="length" select="$length"/>
94
+ </xsl:call-template>
95
+ </xsl:when>
96
+ <xsl:otherwise>
97
+ <xsl:value-of select="$original-string"/>
98
+ </xsl:otherwise>
99
+ </xsl:choose>
100
+ </xsl:variable>
101
+ <xsl:value-of select="$printstring"/>
102
+ <xsl:value-of select="$newline"/>
103
+ <xsl:variable name="str" select="substring-after($original-string, $printstring)"/>
104
+ <xsl:if test="string-length($str)">
105
+ <!-- More text, call fold recursively. -->
106
+ <xsl:value-of select="$indent"/>
107
+ <xsl:call-template name="fold">
108
+ <xsl:with-param name="original-string" select="$str"/>
109
+ <xsl:with-param name="length" select="number($fold-width) - string-length($indent)"/>
110
+ <xsl:with-param name="indent" select="$indent"/>
111
+ </xsl:call-template>
112
+ </xsl:if>
113
+ </xsl:template>
114
+ <!--
115
+ Create line breaks. Break only at specified line break
116
+ character. If possible keep lines less than a specified maximum
117
+ length, otherwise break at first acceptable character after
118
+ maximum length. Return one line each time the template is called.
119
+ -->
120
+ <xsl:template name="chop">
121
+ <xsl:param name="newstring"/>
122
+ <xsl:param name="original-string"/>
123
+ <xsl:param name="char" select="$g-fold-character"/>
124
+ <xsl:param name="length"/>
125
+ <xsl:variable name="str1">
126
+ <!-- str1 is the part before the break. -->
127
+ <xsl:choose>
128
+ <xsl:when test="contains($original-string, $char)">
129
+ <!-- The text contains a break character, chop it off. -->
130
+ <xsl:value-of select="concat($newstring, substring-before($original-string, $char), $char)"/>
131
+ </xsl:when>
132
+ <xsl:otherwise>
133
+ <!-- The text contains no break character, use it all. -->
134
+ <xsl:value-of select="concat($newstring, $original-string)"/>
135
+ </xsl:otherwise>
136
+ </xsl:choose>
137
+ </xsl:variable>
138
+ <xsl:variable name="str2">
139
+ <!-- str2 is the part after the break. -->
140
+ <xsl:choose>
141
+ <xsl:when test="contains($original-string, $char)">
142
+ <!-- The text contains a break character, take what is after that. -->
143
+ <xsl:value-of select="substring-after($original-string, $char)"/>
144
+ </xsl:when>
145
+ <xsl:otherwise>
146
+ <!-- The text contains no break character, use an empty string. -->
147
+ <xsl:value-of select="''"/>
148
+ </xsl:otherwise>
149
+ </xsl:choose>
150
+ </xsl:variable>
151
+ <xsl:choose>
152
+ <xsl:when test="(string-length($str1) &lt; number($length)) and $str2">
153
+ <xsl:variable name="return-value">
154
+ <xsl:call-template name="chop">
155
+ <xsl:with-param name="newstring" select="$str1"/>
156
+ <xsl:with-param name="original-string" select="$str2"/>
157
+ <xsl:with-param name="char" select="$char"/>
158
+ <xsl:with-param name="length" select="$length"/>
159
+ </xsl:call-template>
160
+ </xsl:variable>
161
+ <xsl:value-of select="$return-value"/>
162
+ </xsl:when>
163
+ <xsl:when test="$newstring">
164
+ <xsl:value-of select="$newstring"/>
165
+ </xsl:when>
166
+ <xsl:otherwise>
167
+ <xsl:value-of select="$str1"/>
168
+ </xsl:otherwise>
169
+ </xsl:choose>
170
+ </xsl:template>
171
+ </xsl:stylesheet>
@@ -0,0 +1,273 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+ ======================================================================
4
+ ISO 19115 and 19115-2 XML to HTML Stylesheet June 2011
5
+
6
+ This is the XML Style sheet that displays metadata conforming to ISO 19115:2003(E) and ISO 19115-2:2009(E).
7
+ This stylesheet can be applied to ISO XML to generate ISO HTML that includes a Header that displays the title
8
+ of the resource as well as listing the main sections that the ISO metadata contains while linking to them.
9
+
10
+ This file was generated by Altova MapForce 2009sp1
11
+
12
+ Authors:
13
+ This is the result of a collaboration of the Metadata Transform Working Group.
14
+ For further information, please contact NOAA's National Coastal Data
15
+ Development Center (NCDDC).
16
+ National Coastal Data Development Center
17
+ Toll Free: 866.732.2382
18
+ E-mail: ncddcmetadata@noaa.gov
19
+
20
+ Distribution Liability:
21
+ NOAA makes no warranty regarding these data, expressed or implied,
22
+ nor does the fact of distribution constitute such a warranty. NOAA, NESDIS,
23
+ NODC and NCDDC cannot assume liability for any damages caused by any
24
+ errors or omissions in these data, nor as a result of the failure of these data
25
+ to function on a particular system. These files were developed for opensource uses.
26
+
27
+ Use Constraints:
28
+ The user is responsible for the results of any application of these stylsheets for other than its
29
+ intended purpose. These stylesheets cannot guarantee valid output. Please feel free to edit
30
+ stylesheet as needed for your organizations needs.
31
+
32
+ Revisions:
33
+ 20111109 (JLM) Edited stylesheet to allow the title header to display for service metadata (19119)
34
+ 20120329 (JLM) Updated some element names to display correctly. Aslo added combined FC view.
35
+
36
+ -->
37
+ <!-- Top level directives -->
38
+ <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:gml="http://www.opengis.net/gml" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:gmi="http://www.isotc211.org/2005/gmi" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink">
39
+ <xsl:import href="printFormatted.xsl"/>
40
+ <xsl:import href="printTextLines.xsl"/>
41
+ <xsl:import href="displayElement.xsl"/>
42
+ <xsl:output method="html" indent="no"/>
43
+ <!-- Global parameters -->
44
+ <!--
45
+ g-tag-translation-URI
46
+ This parameter specifies the URI of the external document
47
+ containing the lookup table for the tag name translation. The
48
+ default is the name of a file in the same directory as the
49
+ stylesheet. Make sure this is a network accessible URI if
50
+ delivering to a browser for translation.
51
+ -->
52
+ <xsl:param name="g-tag-translation-URI" select="'elements-ISO.xml'"/>
53
+ <xsl:param name="g-header-translation-URI" select="'headers-ISO.xml'"/>
54
+ <!--
55
+ g-indent-increment
56
+ This parameter specifies the character string to be added before a
57
+ label for each level of indentation. I.e. if you want each level
58
+ indented by four spaces, then make this a four space character
59
+ string. Set this to the empty string to forego indenting.
60
+ -->
61
+ <xsl:param name="g-indent-increment" select="' '"/>
62
+ <!--
63
+ g-fold-width
64
+ This parameter specifies the maximum length of a line when
65
+ word-wrapping lines. It must match the value specified in
66
+ printTextLines.xsl.
67
+ -->
68
+ <xsl:param name="g-fold-width" select="'120'"/>
69
+ <!--
70
+ g-text-field-handler
71
+ This parameter specifies the handler to use for formatting text
72
+ fields. The choices are 'fold' to fold lines at a maximum length
73
+ and 'print-lines' to print lines with line breaks preserved as in
74
+ the source XML document. If unspecified, or if an invalid choice
75
+ is specified, 'print-lines' will be used.
76
+
77
+ [OBSOLETE: replaced by printFormatted template]
78
+ -->
79
+ <xsl:param name="g-text-field-handler" select="'print-lines'"/>
80
+ <!-- Global variables -->
81
+ <xsl:variable name="newline">
82
+ <xsl:text>&#xA;</xsl:text>
83
+ </xsl:variable>
84
+ <!-- Get the g-tag-translation-URI (elements.xml) node-set just once.
85
+ This should improve performance on large XML files.
86
+ This also works around a memory-leak problem using JSTL \<x:transform xsltSystemId
87
+ (the memory-leak may also be present in direct Transformer calls from Java).
88
+ /// We see this in Xalan 2.6.0; is it fixed in 2.7.0 ?
89
+ -->
90
+ <xsl:variable name="g-tag-translations" select="document($g-tag-translation-URI)"/>
91
+ <xsl:variable name="g-header-translations" select="document($g-header-translation-URI)"/>
92
+ <!-- Templates -->
93
+ <xsl:template match="/">
94
+ <html>
95
+ <body>
96
+ <font size="+3">
97
+ <xsl:element name="a">
98
+ <xsl:attribute name="name">
99
+ <xsl:value-of select="'title'" />
100
+ </xsl:attribute>
101
+ <xsl:value-of select="//gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:title/gco:CharacterString"/>
102
+ </xsl:element>
103
+ </font>
104
+ <font size="+3">
105
+ <xsl:element name="a">
106
+ <xsl:attribute name="name">
107
+ <xsl:value-of select="'title'" />
108
+ </xsl:attribute>
109
+ <xsl:value-of select="//gmd:identificationInfo/srv:SV_ServiceIdentification/gmd:citation/gmd:CI_Citation/gmd:title/gco:CharacterString"/>
110
+ </xsl:element>
111
+ </font>
112
+ <br></br>
113
+ <br></br>
114
+ <xsl:for-each select="./*/*">
115
+ <xsl:variable name="transname" select="name()"/>
116
+ <xsl:if test="contains($transname,'gmd:spatialRepresentationInfo') or contains($transname,'gmd:referenceSystemInfo') or contains($transname,'gmd:metadataExtensionInfo') or contains($transname,'gmd:identificationInfo') or contains($transname,'gmd:contentInfo') or contains($transname,'gmd:distributionInfo') or contains($transname,'gmd:dataQualityInfo') or contains($transname,'gmd:portrayalCatalogueInfo') or contains($transname,'gmd:metadataConstraints') or contains($transname,'gmd:applicationSchemaInfo') or contains($transname,'gmd:metadataMaintenance') or contains($transname,'gmd:metadataMaintenanceInfo') or contains($transname,'gmi:acquisitionInformation') or contains($transname,'gfc:FC_FeatureCatalogue')">
117
+ <xsl:element name="a">
118
+ <xsl:attribute name="href">
119
+ <xsl:value-of select="'#'" /><xsl:value-of select="substring-after($transname,':')"/>
120
+ </xsl:attribute>
121
+ <span style="text-transform: capitalize;">
122
+ <xsl:apply-templates select="child::title" mode="outIt"/>
123
+ <xsl:value-of select="$g-header-translations/*/name[@tagname=$transname]"/>
124
+ </span>
125
+ </xsl:element>
126
+ <br></br>
127
+ </xsl:if>
128
+ </xsl:for-each>
129
+ <hr></hr>
130
+ <pre>
131
+ <xsl:apply-templates select="*"/>
132
+ <xsl:element name="a">
133
+ <xsl:attribute name="href">
134
+ <xsl:value-of select="'#title'" />
135
+ </xsl:attribute>
136
+ <div align="left">Return To Index</div>
137
+ </xsl:element>
138
+ </pre>
139
+ </body>
140
+ </html>
141
+ </xsl:template>
142
+ <!--
143
+ Apply to all elements. Determine whether it's a compound or text element
144
+ and call the appropriate template.
145
+ -->
146
+ <xsl:template match="*">
147
+ <xsl:param name="indent" select="''"/>
148
+ <xsl:param name="indent-increment" select="$g-indent-increment"/>
149
+ <xsl:variable name="tagname" select="name()"/>
150
+ <xsl:variable name="tag-longname" select="$g-tag-translations/*/name[@tagname=$tagname]"/>
151
+ <xsl:variable name="tag-translation">
152
+ <!-- Display long name if we can translate the tag, else just display the tag name itself -->
153
+ <xsl:choose>
154
+ <xsl:when test="$tag-longname">
155
+ <xsl:value-of select="$tag-longname"/>
156
+ </xsl:when>
157
+ <xsl:otherwise>
158
+ <xsl:value-of select="$tagname"/>
159
+ </xsl:otherwise>
160
+ </xsl:choose>
161
+ </xsl:variable>
162
+ <xsl:variable name="output">
163
+ <!-- do not output element names w/ gco namespaces -->
164
+ <xsl:if test="not(contains($tag-translation, 'gco'))">
165
+ <xsl:value-of select="concat($indent, $tag-translation, ': ')"/>
166
+ </xsl:if>
167
+ </xsl:variable>
168
+ <xsl:if test="string-length(normalize-space($tag-translation)) &gt; 0">
169
+ <xsl:choose>
170
+ <xsl:when test="count(ancestor::*) = 1 ">
171
+ <xsl:choose>
172
+ <xsl:when test="contains($tagname,'gmd:spatialRepresentationInfo') or contains($tagname,'gmd:referenceSystemInfo') or contains($tagname,'gmd:metadataExtensionInfo') or contains($tagname,'gmd:identificationInfo') or contains($tagname,'gmd:contentInfo') or contains($tagname,'gmd:distributionInfo') or contains($tagname,'gmd:dataQualityInfo') or contains($tagname,'gmd:portrayalCatalogueInfo') or contains($tagname,'gmd:metadataConstraints') or contains($tagname,'gmd:applicationSchemaInfo') or contains($tagname,'gmd:metadataMaintenance') or contains($tagname,'gmd:metadataMaintenanceInfo') or contains($tagname,'gmi:acquisitionInformation') or contains($tagname,'gfc:FC_FeatureCatalogue')">
173
+ <xsl:if test="(position()>1)">
174
+ <xsl:element name="a">
175
+ <xsl:attribute name="href">
176
+ <xsl:value-of select="'#title'" />
177
+ </xsl:attribute>
178
+ <div align="left">Return To Index</div>
179
+ </xsl:element>
180
+ <hr></hr>
181
+ </xsl:if>
182
+ <b>
183
+ <xsl:element name="a">
184
+ <xsl:attribute name="name">
185
+ <xsl:value-of select="substring-after($tagname,':')"/>
186
+ </xsl:attribute>
187
+ <xsl:value-of select="$output"/>
188
+ </xsl:element>
189
+ </b>
190
+ </xsl:when>
191
+ <xsl:otherwise>
192
+ <b>
193
+ <xsl:value-of select="$output"/>
194
+ </b>
195
+ </xsl:otherwise>
196
+ </xsl:choose>
197
+ </xsl:when>
198
+ <xsl:otherwise>
199
+ <b>
200
+ <xsl:value-of select="$output"/>
201
+ </b>
202
+ </xsl:otherwise>
203
+ </xsl:choose>
204
+ </xsl:if>
205
+ <xsl:choose>
206
+ <xsl:when test="*">
207
+ <!-- This is a compound element (i.e., it has children) -->
208
+ <xsl:choose>
209
+ <xsl:when test="string-length(normalize-space($tag-translation)) &gt; 0">
210
+ <xsl:call-template name="printAttributes"/>
211
+ <!-- There is a tag translation -->
212
+ <xsl:value-of select="$newline"/>
213
+ <xsl:apply-templates select="*">
214
+ <xsl:with-param name="indent" select="concat($indent, $indent-increment)"/>
215
+ </xsl:apply-templates>
216
+ </xsl:when>
217
+ <xsl:otherwise>
218
+ <!-- No tag translation -->
219
+ <xsl:apply-templates select="*">
220
+ <xsl:with-param name="indent" select="concat($indent, $indent-increment)"/>
221
+ </xsl:apply-templates>
222
+ </xsl:otherwise>
223
+ </xsl:choose>
224
+ </xsl:when>
225
+ <!-- else a content element: display the text -->
226
+ <xsl:otherwise>
227
+ <xsl:call-template name="printAttributes"/>
228
+ <!-- if tag name has gco namespace - do not add a new line-->
229
+ <xsl:if test="not(contains($tag-translation,'gco'))">
230
+ <xsl:value-of select="$newline"/>
231
+ </xsl:if>
232
+ <!-- Call the imported printFormatted template to print both
233
+ preformatted text and word-wrapped paragraphs.
234
+ This will parse each line, and call back to the
235
+ printFormattedLine and printParagraphLine templates
236
+ in this file. -->
237
+ <xsl:call-template name="printFormatted">
238
+ <xsl:with-param name="elementContent">
239
+ <!-- strip leading whitespace only from first line of text -->
240
+ <xsl:call-template name="strip-leading-whitespace">
241
+ <!-- display element attributes OR content (note: not all attributes are included for translation-->
242
+ <xsl:with-param name="content" select="@codeListValue|@gco:nilReason|@indeterminatePosition|node()"/>
243
+ </xsl:call-template>
244
+ </xsl:with-param>
245
+ <xsl:with-param name="startFormattedSectionString" select="''"/>
246
+ <!-- nothing needed -->
247
+ <xsl:with-param name="endFormattedSectionString" select="''"/>
248
+ <!-- nothing needed -->
249
+ <xsl:with-param name="optional-param-1" select="concat($indent, $indent-increment)"/>
250
+ <xsl:with-param name="optional-param-2" select="number($g-fold-width) - string-length($indent)"/>
251
+ </xsl:call-template>
252
+ </xsl:otherwise>
253
+ </xsl:choose>
254
+ </xsl:template>
255
+ <xsl:template name="printAttributes">
256
+ <xsl:choose>
257
+ <xsl:when test="./@*">
258
+ <xsl:if test="./@uuid"> <xsl:value-of select="concat('uuid: ', @uuid)"/></xsl:if>
259
+ <xsl:if test="./@uuidref"><xsl:value-of select="concat('uuidref: ', @uuidref)"/></xsl:if>
260
+ <xsl:if test="./@uom"><xsl:value-of select="concat('uom: ', @uom)"/></xsl:if>
261
+ <xsl:if test="./@xlink:href"> <xsl:value-of select="concat('xlink: ', @xlink:href)"/></xsl:if>
262
+ <xsl:if test="./@xlink:title"><xsl:value-of select="concat(' title: ', @xlink:title)"/> </xsl:if>
263
+ <!--<xsl:if test="./@codeListValue"> (<xsl:value-of select="concat('codeListValue: ', @codeListValue)"/>)</xsl:if>-->
264
+ <xsl:if test="./@locale"> <xsl:value-of select="concat('locale: ', @locale)"/></xsl:if>
265
+ </xsl:when>
266
+ </xsl:choose>
267
+ </xsl:template>
268
+ <!--
269
+ Text formatting template. Use existing line breaks. Indent each line
270
+ to the current indent level. Return the next line each time the template
271
+ is called.
272
+ -->
273
+ </xsl:stylesheet>