blacklight-spotlight 3.5.0.2 → 3.6.0.beta3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (218) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +20 -0
  3. data/Rakefile +6 -7
  4. data/app/assets/config/spotlight/manifest.js +1 -0
  5. data/app/assets/javascripts/spotlight/application.js +9 -14
  6. data/app/assets/javascripts/spotlight/spotlight.esm.js +7137 -0
  7. data/app/assets/javascripts/spotlight/spotlight.esm.js.map +1 -0
  8. data/app/assets/javascripts/spotlight/spotlight.js +7137 -15
  9. data/app/assets/javascripts/spotlight/spotlight.js.map +1 -0
  10. data/app/assets/stylesheets/spotlight/_browse.scss +1 -1
  11. data/app/assets/stylesheets/spotlight/_catalog.scss +16 -0
  12. data/app/assets/stylesheets/spotlight/_spotlight.scss +36 -38
  13. data/app/assets/stylesheets/spotlight/_variables.scss +0 -21
  14. data/app/assets/stylesheets/spotlight/browse_group_categories_block.scss +1 -1
  15. data/app/controllers/concerns/spotlight/base.rb +2 -1
  16. data/app/controllers/concerns/spotlight/controller.rb +10 -0
  17. data/app/controllers/spotlight/admin_users_controller.rb +4 -4
  18. data/app/controllers/spotlight/appearances_controller.rb +6 -6
  19. data/app/controllers/spotlight/browse_controller.rb +6 -2
  20. data/app/controllers/spotlight/catalog_controller.rb +25 -16
  21. data/app/controllers/spotlight/concerns/application_controller.rb +1 -0
  22. data/app/controllers/spotlight/concerns/catalog_search_context.rb +2 -2
  23. data/app/controllers/spotlight/contacts_controller.rb +6 -6
  24. data/app/controllers/spotlight/dashboards_controller.rb +7 -3
  25. data/app/controllers/spotlight/exhibits_controller.rb +19 -19
  26. data/app/controllers/spotlight/featured_images_controller.rb +1 -1
  27. data/app/controllers/spotlight/home_pages_controller.rb +7 -7
  28. data/app/controllers/spotlight/lock_controller.rb +1 -1
  29. data/app/controllers/spotlight/metadata_configurations_controller.rb +2 -2
  30. data/app/controllers/spotlight/pages_controller.rb +4 -3
  31. data/app/controllers/spotlight/search_configurations_controller.rb +6 -6
  32. data/app/controllers/spotlight/searches_controller.rb +22 -22
  33. data/app/controllers/spotlight/solr_controller.rb +1 -1
  34. data/app/controllers/spotlight/translations_controller.rb +8 -10
  35. data/app/controllers/spotlight/versions_controller.rb +2 -1
  36. data/app/helpers/spotlight/application_helper.rb +33 -17
  37. data/app/helpers/spotlight/crud_link_helpers.rb +12 -2
  38. data/app/helpers/spotlight/pages_helper.rb +1 -1
  39. data/app/helpers/spotlight/roles_helper.rb +2 -2
  40. data/app/helpers/spotlight/title_helper.rb +1 -1
  41. data/app/helpers/spotlight/translations_helper.rb +1 -3
  42. data/app/javascript/spotlight/admin/add_another.es6 +24 -0
  43. data/app/javascript/spotlight/admin/add_image_selector.es6 +38 -0
  44. data/app/javascript/spotlight/admin/add_new_button.es6 +77 -0
  45. data/app/javascript/spotlight/admin/appearance.es6 +22 -0
  46. data/app/javascript/spotlight/admin/blacklight_configuration.es6 +65 -0
  47. data/app/{assets/javascripts → javascript}/spotlight/admin/block_mixins/autocompleteable.js +8 -8
  48. data/app/{assets/javascripts → javascript}/spotlight/admin/block_mixins/formable.js +1 -1
  49. data/app/javascript/spotlight/admin/block_mixins/plustextable.js +58 -0
  50. data/app/{assets/javascripts → javascript}/spotlight/admin/blocks/block.js +2 -1
  51. data/app/javascript/spotlight/admin/blocks/browse_block.js +86 -0
  52. data/app/javascript/spotlight/admin/blocks/browse_group_categories_block.js +88 -0
  53. data/app/{assets/javascripts → javascript}/spotlight/admin/blocks/iframe_block.js +7 -11
  54. data/app/{assets/javascripts → javascript}/spotlight/admin/blocks/link_to_search_block.js +0 -2
  55. data/app/javascript/spotlight/admin/blocks/oembed_block.js +41 -0
  56. data/app/{assets/javascripts → javascript}/spotlight/admin/blocks/pages_block.js +1 -1
  57. data/app/{assets/javascripts → javascript}/spotlight/admin/blocks/resources_block.js +45 -42
  58. data/app/{assets/javascripts → javascript}/spotlight/admin/blocks/rule_block.js +2 -4
  59. data/app/{assets/javascripts → javascript}/spotlight/admin/blocks/search_result_block.js +7 -9
  60. data/app/{assets/javascripts → javascript}/spotlight/admin/blocks/solr_documents_base_block.js +22 -22
  61. data/app/{assets/javascripts → javascript}/spotlight/admin/blocks/solr_documents_block.js +7 -7
  62. data/app/{assets/javascripts → javascript}/spotlight/admin/blocks/solr_documents_carousel_block.js +14 -15
  63. data/app/javascript/spotlight/admin/blocks/uploaded_items_block.js +147 -0
  64. data/app/javascript/spotlight/admin/checkbox_submit.es6 +75 -0
  65. data/app/javascript/spotlight/admin/copy_email_addresses.es6 +5 -0
  66. data/app/{assets/javascripts/spotlight/admin/crop.es6 → javascript/spotlight/admin/crop.js} +5 -4
  67. data/app/javascript/spotlight/admin/croppable.es6 +10 -0
  68. data/app/{assets/javascripts/spotlight/admin/edit_in_place.js → javascript/spotlight/admin/edit_in_place.es6} +6 -13
  69. data/app/javascript/spotlight/admin/exhibit_tag_autocomplete.es6 +39 -0
  70. data/app/javascript/spotlight/admin/exhibits.es6 +59 -0
  71. data/app/{assets/javascripts/spotlight/admin/form_observer.js → javascript/spotlight/admin/form_observer.es6} +23 -21
  72. data/app/javascript/spotlight/admin/index.js +85 -0
  73. data/app/javascript/spotlight/admin/locks.es6 +12 -0
  74. data/app/{assets/javascripts → javascript}/spotlight/admin/multi_image_selector.js +2 -1
  75. data/app/javascript/spotlight/admin/pages.es6 +42 -0
  76. data/app/{assets/javascripts/spotlight/admin/progress_monitor.js → javascript/spotlight/admin/progress_monitor.es6} +5 -9
  77. data/app/javascript/spotlight/admin/readonly_checkbox.es6 +8 -0
  78. data/app/{assets/javascripts → javascript}/spotlight/admin/search_typeahead.js +3 -46
  79. data/app/{assets/javascripts/spotlight/admin/select_related_input.js → javascript/spotlight/admin/select_related_input.es6} +6 -3
  80. data/app/{assets/javascripts → javascript}/spotlight/admin/sir-trevor/block_controls.js +6 -4
  81. data/app/{assets/javascripts → javascript}/spotlight/admin/sir-trevor/block_limits.js +2 -0
  82. data/app/{assets/javascripts → javascript}/spotlight/admin/spotlight_nestable.js +4 -8
  83. data/app/javascript/spotlight/admin/tabs.es6 +8 -0
  84. data/app/{assets/javascripts/spotlight/admin/translation_progress.js → javascript/spotlight/admin/translation_progress.es6} +6 -13
  85. data/app/{assets/javascripts/spotlight/admin/users.js → javascript/spotlight/admin/users.es6} +7 -17
  86. data/app/javascript/spotlight/admin/visibility_toggle.es6 +23 -0
  87. data/app/javascript/spotlight/index.js +10 -0
  88. data/app/javascript/spotlight/spotlight.js +32 -0
  89. data/app/{assets/javascripts/spotlight/user/browse_group_categories.js → javascript/spotlight/user/browse_group_categories.es6} +4 -13
  90. data/app/javascript/spotlight/user/carousel.es6 +5 -0
  91. data/app/{assets/javascripts/spotlight/user/clear_form_button.js → javascript/spotlight/user/clear_form_button.es6} +5 -9
  92. data/app/javascript/spotlight/user/index.js +15 -0
  93. data/app/{assets/javascripts/spotlight/user/report_a_problem.js → javascript/spotlight/user/report_a_problem.es6} +6 -15
  94. data/app/javascript/spotlight/user/zpr_links.es6 +44 -0
  95. data/app/jobs/spotlight/add_uploads_from_csv.rb +1 -2
  96. data/app/models/concerns/spotlight/browse_category_search_builder.rb +7 -3
  97. data/app/models/concerns/spotlight/exhibit_defaults.rb +1 -1
  98. data/app/models/concerns/spotlight/exhibit_documents.rb +2 -2
  99. data/app/models/concerns/spotlight/resources/web.rb +1 -1
  100. data/app/models/concerns/spotlight/solr_document/atomic_updates.rb +1 -1
  101. data/app/models/concerns/spotlight/solr_document/finder.rb +2 -2
  102. data/app/models/concerns/spotlight/solr_document.rb +2 -2
  103. data/app/models/concerns/spotlight/translatables.rb +1 -1
  104. data/app/models/sir_trevor_rails/blocks/displayable.rb +2 -2
  105. data/app/models/sir_trevor_rails/blocks/solr_documents_block.rb +17 -6
  106. data/app/models/spotlight/analytics/ga.rb +5 -5
  107. data/app/models/spotlight/blacklight_configuration.rb +14 -14
  108. data/app/models/spotlight/bulk_update.rb +1 -0
  109. data/app/models/spotlight/contact_email.rb +1 -1
  110. data/app/models/spotlight/contact_form.rb +1 -1
  111. data/app/models/spotlight/exhibit.rb +1 -1
  112. data/app/models/spotlight/featured_image.rb +1 -2
  113. data/app/models/spotlight/lock.rb +1 -1
  114. data/app/models/spotlight/main_navigation.rb +1 -5
  115. data/app/models/spotlight/page.rb +1 -1
  116. data/app/models/spotlight/resources/iiif_manifest.rb +4 -4
  117. data/app/models/spotlight/resources/iiif_service.rb +1 -1
  118. data/app/models/spotlight/resources/upload.rb +3 -6
  119. data/app/models/spotlight/search.rb +2 -2
  120. data/app/models/translation.rb +2 -0
  121. data/app/presenters/spotlight/iiif_manifest_presenter.rb +2 -1
  122. data/app/services/spotlight/iiif_resource_resolver.rb +10 -10
  123. data/app/uploaders/spotlight/bulk_updates_uploader.rb +1 -0
  124. data/app/views/layouts/spotlight/base.html.erb +1 -0
  125. data/app/views/shared/_analytics.html.erb +10 -9
  126. data/app/views/shared/_exhibit_navbar.html.erb +6 -1
  127. data/app/views/spotlight/admin_users/index.html.erb +9 -3
  128. data/app/views/spotlight/browse/show.html.erb +2 -2
  129. data/app/views/spotlight/catalog/_admin_header.html.erb +3 -1
  130. data/app/views/spotlight/catalog/_document_visibility_control.html.erb +21 -2
  131. data/app/views/spotlight/catalog/_index_compact_default.html.erb +1 -1
  132. data/app/views/spotlight/exhibits/_confirmation_status.html.erb +3 -1
  133. data/app/views/spotlight/exhibits/_contact.html.erb +5 -1
  134. data/app/views/spotlight/shared/_exhibit_sidebar.html.erb +2 -0
  135. data/app/views/spotlight/shared/_report_a_problem.html.erb +1 -1
  136. data/app/views/spotlight/sir_trevor/blocks/_search_results_block.html.erb +2 -2
  137. data/app/views/spotlight/translations/_page.html.erb +6 -1
  138. data/config/locales/spotlight.en.yml +3 -8
  139. data/lib/generators/spotlight/install_generator.rb +15 -23
  140. data/lib/generators/spotlight/scaffold_resource_generator.rb +12 -12
  141. data/lib/generators/spotlight/templates/config/initializers/spotlight_initializer.rb +17 -7
  142. data/lib/generators/spotlight/templates/solr/conf/_rest_managed.json +3 -0
  143. data/lib/generators/spotlight/templates/solr/conf/admin-extra.html +31 -0
  144. data/lib/generators/spotlight/templates/solr/conf/elevate.xml +36 -0
  145. data/lib/generators/spotlight/templates/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
  146. data/lib/generators/spotlight/templates/solr/conf/protwords.txt +21 -0
  147. data/lib/generators/spotlight/templates/solr/{config → conf}/schema.xml +17 -0
  148. data/lib/generators/spotlight/templates/solr/conf/scripts.conf +24 -0
  149. data/lib/generators/spotlight/templates/solr/{config → conf}/solrconfig.xml +55 -24
  150. data/lib/generators/spotlight/templates/solr/conf/spellings.txt +2 -0
  151. data/lib/generators/spotlight/templates/solr/conf/stopwords.txt +58 -0
  152. data/lib/generators/spotlight/templates/solr/conf/stopwords_en.txt +58 -0
  153. data/lib/generators/spotlight/templates/solr/conf/synonyms.txt +31 -0
  154. data/lib/generators/spotlight/templates/solr/conf/xslt/example.xsl +132 -0
  155. data/lib/generators/spotlight/templates/solr/conf/xslt/example_atom.xsl +67 -0
  156. data/lib/generators/spotlight/templates/solr/conf/xslt/example_rss.xsl +66 -0
  157. data/lib/generators/spotlight/templates/solr/conf/xslt/luke.xsl +337 -0
  158. data/lib/generators/spotlight/templates/spotlight.js +1 -1
  159. data/lib/migration/iiif.rb +3 -7
  160. data/lib/spotlight/engine.rb +39 -27
  161. data/lib/spotlight/riiif_service.rb +31 -0
  162. data/lib/spotlight/search_state.rb +19 -0
  163. data/lib/spotlight/upload_field_config.rb +1 -1
  164. data/lib/spotlight/version.rb +1 -1
  165. data/lib/tasks/spotlight_tasks.rake +1 -1
  166. data/spec/fixtures/iiif_responses.rb +64 -64
  167. data/vendor/assets/javascripts/nestable.js +1 -1
  168. data/vendor/assets/javascripts/parameterize.js +2 -2
  169. data/vendor/assets/javascripts/sir-trevor.js +22460 -20591
  170. data/vendor/assets/stylesheets/sir-trevor/_icons.scss +0 -0
  171. data/vendor/assets/stylesheets/sir-trevor/_variables.scss +16 -18
  172. data/vendor/assets/stylesheets/sir-trevor/base.scss +11 -0
  173. data/vendor/assets/stylesheets/sir-trevor/block-addition-top.scss +4 -1
  174. data/vendor/assets/stylesheets/sir-trevor/block-addition.scss +3 -2
  175. data/vendor/assets/stylesheets/sir-trevor/block-controls.scss +4 -0
  176. data/vendor/assets/stylesheets/sir-trevor/block-positioner.scss +0 -0
  177. data/vendor/assets/stylesheets/sir-trevor/block-replacer.scss +0 -0
  178. data/vendor/assets/stylesheets/sir-trevor/block-ui.scss +10 -0
  179. data/vendor/assets/stylesheets/sir-trevor/block.scss +19 -5
  180. data/vendor/assets/stylesheets/sir-trevor/errors.scss +0 -0
  181. data/vendor/assets/stylesheets/sir-trevor/format-bar.scss +0 -0
  182. data/vendor/assets/stylesheets/sir-trevor/inputs.scss +0 -0
  183. data/vendor/assets/stylesheets/sir-trevor/main.scss +0 -0
  184. data/vendor/assets/stylesheets/sir-trevor/patterns/ui-popup.scss +0 -0
  185. data/vendor/assets/stylesheets/sir-trevor/utils.scss +0 -0
  186. metadata +101 -129
  187. data/app/assets/javascripts/spotlight/admin/add_another.js +0 -22
  188. data/app/assets/javascripts/spotlight/admin/add_new_button.js +0 -81
  189. data/app/assets/javascripts/spotlight/admin/appearance.js +0 -24
  190. data/app/assets/javascripts/spotlight/admin/attachments.js +0 -2
  191. data/app/assets/javascripts/spotlight/admin/blacklight_configuration.js +0 -63
  192. data/app/assets/javascripts/spotlight/admin/block_mixins/plustextable.js +0 -57
  193. data/app/assets/javascripts/spotlight/admin/blocks/browse_block.js +0 -87
  194. data/app/assets/javascripts/spotlight/admin/blocks/browse_group_categories_block.js +0 -88
  195. data/app/assets/javascripts/spotlight/admin/blocks/oembed_block.js +0 -40
  196. data/app/assets/javascripts/spotlight/admin/blocks/uploaded_items_block.js +0 -145
  197. data/app/assets/javascripts/spotlight/admin/catalog_edit.js +0 -16
  198. data/app/assets/javascripts/spotlight/admin/copy_email_addresses.js +0 -9
  199. data/app/assets/javascripts/spotlight/admin/croppable.js +0 -25
  200. data/app/assets/javascripts/spotlight/admin/exhibit_tag_autocomplete.js +0 -37
  201. data/app/assets/javascripts/spotlight/admin/exhibits.js +0 -58
  202. data/app/assets/javascripts/spotlight/admin/index.js +0 -16
  203. data/app/assets/javascripts/spotlight/admin/locks.js +0 -12
  204. data/app/assets/javascripts/spotlight/admin/pages.js.erb +0 -40
  205. data/app/assets/javascripts/spotlight/admin/readonly_checkbox.js +0 -6
  206. data/app/assets/javascripts/spotlight/admin/tabs.js +0 -6
  207. data/app/assets/javascripts/spotlight/user/analytics.js +0 -9
  208. data/app/assets/javascripts/spotlight/user/carousel.js +0 -3
  209. data/app/assets/javascripts/spotlight/user/index.js +0 -8
  210. data/app/assets/javascripts/spotlight/user/zpr_links.js.erb +0 -45
  211. data/vendor/assets/javascripts/MutationObserver.js +0 -625
  212. data/vendor/assets/javascripts/eventable.js +0 -205
  213. data/vendor/assets/javascripts/polyfill.min.js +0 -4
  214. /data/app/{assets/javascripts → javascript}/spotlight/admin/blocks/solr_documents_embed_block.js +0 -0
  215. /data/app/{assets/javascripts → javascript}/spotlight/admin/blocks/solr_documents_features_block.js +0 -0
  216. /data/app/{assets/javascripts → javascript}/spotlight/admin/blocks/solr_documents_grid_block.js +0 -0
  217. /data/app/{assets/javascripts/spotlight/admin/iiif.es6 → javascript/spotlight/admin/iiif.js} +0 -0
  218. /data/app/{assets/javascripts → javascript}/spotlight/admin/sir-trevor/locales.js +0 -0
@@ -0,0 +1,58 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one or more
2
+ # contributor license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright ownership.
4
+ # The ASF licenses this file to You under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with
6
+ # the License. You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+ #-----------------------------------------------------------------------
17
+ # a couple of test stopwords to test that the words are really being
18
+ # configured from this file:
19
+ stopworda
20
+ stopwordb
21
+
22
+ #Standard english stop words taken from Lucene's StopAnalyzer
23
+ a
24
+ an
25
+ and
26
+ are
27
+ as
28
+ at
29
+ be
30
+ but
31
+ by
32
+ for
33
+ if
34
+ in
35
+ into
36
+ is
37
+ it
38
+ no
39
+ not
40
+ of
41
+ on
42
+ or
43
+ s
44
+ such
45
+ t
46
+ that
47
+ the
48
+ their
49
+ then
50
+ there
51
+ these
52
+ they
53
+ this
54
+ to
55
+ was
56
+ will
57
+ with
58
+
@@ -0,0 +1,58 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one or more
2
+ # contributor license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright ownership.
4
+ # The ASF licenses this file to You under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with
6
+ # the License. You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+ #-----------------------------------------------------------------------
17
+ # a couple of test stopwords to test that the words are really being
18
+ # configured from this file:
19
+ stopworda
20
+ stopwordb
21
+
22
+ #Standard english stop words taken from Lucene's StopAnalyzer
23
+ a
24
+ an
25
+ and
26
+ are
27
+ as
28
+ at
29
+ be
30
+ but
31
+ by
32
+ for
33
+ if
34
+ in
35
+ into
36
+ is
37
+ it
38
+ no
39
+ not
40
+ of
41
+ on
42
+ or
43
+ s
44
+ such
45
+ t
46
+ that
47
+ the
48
+ their
49
+ then
50
+ there
51
+ these
52
+ they
53
+ this
54
+ to
55
+ was
56
+ will
57
+ with
58
+
@@ -0,0 +1,31 @@
1
+ # The ASF licenses this file to You under the Apache License, Version 2.0
2
+ # (the "License"); you may not use this file except in compliance with
3
+ # the License. You may obtain a copy of the License at
4
+ #
5
+ # http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software
8
+ # distributed under the License is distributed on an "AS IS" BASIS,
9
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10
+ # See the License for the specific language governing permissions and
11
+ # limitations under the License.
12
+
13
+ #-----------------------------------------------------------------------
14
+ #some test synonym mappings unlikely to appear in real input text
15
+ aaa => aaaa
16
+ bbb => bbbb1 bbbb2
17
+ ccc => cccc1,cccc2
18
+ a\=>a => b\=>b
19
+ a\,a => b\,b
20
+ fooaaa,baraaa,bazaaa
21
+
22
+ # Some synonym groups specific to this example
23
+ GB,gib,gigabyte,gigabytes
24
+ MB,mib,megabyte,megabytes
25
+ Television, Televisions, TV, TVs
26
+ #notice we use "gib" instead of "GiB" so any WordDelimiterFilter coming
27
+ #after us won't split it into two words.
28
+
29
+ # Synonym mappings can be used for spelling correction too
30
+ pixima => pixma
31
+
@@ -0,0 +1,132 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+
3
+ <!--
4
+ * Licensed to the Apache Software Foundation (ASF) under one or more
5
+ * contributor license agreements. See the NOTICE file distributed with
6
+ * this work for additional information regarding copyright ownership.
7
+ * The ASF licenses this file to You under the Apache License, Version 2.0
8
+ * (the "License"); you may not use this file except in compliance with
9
+ * the License. You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ -->
19
+
20
+ <!--
21
+ Simple transform of Solr query results to HTML
22
+ -->
23
+ <xsl:stylesheet version='1.0'
24
+ xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
25
+ >
26
+
27
+ <xsl:output media-type="text/html; charset=UTF-8" encoding="UTF-8"/>
28
+
29
+ <xsl:variable name="title" select="concat('Solr search results (',response/result/@numFound,' documents)')"/>
30
+
31
+ <xsl:template match='/'>
32
+ <html>
33
+ <head>
34
+ <title><xsl:value-of select="$title"/></title>
35
+ <xsl:call-template name="css"/>
36
+ </head>
37
+ <body>
38
+ <h1><xsl:value-of select="$title"/></h1>
39
+ <div class="note">
40
+ This has been formatted by the sample "example.xsl" transform -
41
+ use your own XSLT to get a nicer page
42
+ </div>
43
+ <xsl:apply-templates select="response/result/doc"/>
44
+ </body>
45
+ </html>
46
+ </xsl:template>
47
+
48
+ <xsl:template match="doc">
49
+ <xsl:variable name="pos" select="position()"/>
50
+ <div class="doc">
51
+ <table width="100%">
52
+ <xsl:apply-templates>
53
+ <xsl:with-param name="pos"><xsl:value-of select="$pos"/></xsl:with-param>
54
+ </xsl:apply-templates>
55
+ </table>
56
+ </div>
57
+ </xsl:template>
58
+
59
+ <xsl:template match="doc/*[@name='score']" priority="100">
60
+ <xsl:param name="pos"></xsl:param>
61
+ <tr>
62
+ <td class="name">
63
+ <xsl:value-of select="@name"/>
64
+ </td>
65
+ <td class="value">
66
+ <xsl:value-of select="."/>
67
+
68
+ <xsl:if test="boolean(//lst[@name='explain'])">
69
+ <xsl:element name="a">
70
+ <!-- can't allow whitespace here -->
71
+ <xsl:attribute name="href">javascript:toggle("<xsl:value-of select="concat('exp-',$pos)" />");</xsl:attribute>?</xsl:element>
72
+ <br/>
73
+ <xsl:element name="div">
74
+ <xsl:attribute name="class">exp</xsl:attribute>
75
+ <xsl:attribute name="id">
76
+ <xsl:value-of select="concat('exp-',$pos)" />
77
+ </xsl:attribute>
78
+ <xsl:value-of select="//lst[@name='explain']/str[position()=$pos]"/>
79
+ </xsl:element>
80
+ </xsl:if>
81
+ </td>
82
+ </tr>
83
+ </xsl:template>
84
+
85
+ <xsl:template match="doc/arr" priority="100">
86
+ <tr>
87
+ <td class="name">
88
+ <xsl:value-of select="@name"/>
89
+ </td>
90
+ <td class="value">
91
+ <ul>
92
+ <xsl:for-each select="*">
93
+ <li><xsl:value-of select="."/></li>
94
+ </xsl:for-each>
95
+ </ul>
96
+ </td>
97
+ </tr>
98
+ </xsl:template>
99
+
100
+
101
+ <xsl:template match="doc/*">
102
+ <tr>
103
+ <td class="name">
104
+ <xsl:value-of select="@name"/>
105
+ </td>
106
+ <td class="value">
107
+ <xsl:value-of select="."/>
108
+ </td>
109
+ </tr>
110
+ </xsl:template>
111
+
112
+ <xsl:template match="*"/>
113
+
114
+ <xsl:template name="css">
115
+ <script>
116
+ function toggle(id) {
117
+ var obj = document.getElementById(id);
118
+ obj.style.display = (obj.style.display != 'block') ? 'block' : 'none';
119
+ }
120
+ </script>
121
+ <style type="text/css">
122
+ body { font-family: "Lucida Grande", sans-serif }
123
+ td.name { font-style: italic; font-size:80%; }
124
+ td { vertical-align: top; }
125
+ ul { margin: 0px; margin-left: 1em; padding: 0px; }
126
+ .note { font-size:80%; }
127
+ .doc { margin-top: 1em; border-top: solid grey 1px; }
128
+ .exp { display: none; font-family: monospace; white-space: pre; }
129
+ </style>
130
+ </xsl:template>
131
+
132
+ </xsl:stylesheet>
@@ -0,0 +1,67 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+
3
+ <!--
4
+ * Licensed to the Apache Software Foundation (ASF) under one or more
5
+ * contributor license agreements. See the NOTICE file distributed with
6
+ * this work for additional information regarding copyright ownership.
7
+ * The ASF licenses this file to You under the Apache License, Version 2.0
8
+ * (the "License"); you may not use this file except in compliance with
9
+ * the License. You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ -->
19
+
20
+ <!--
21
+ Simple transform of Solr query results to Atom
22
+ -->
23
+
24
+ <xsl:stylesheet version='1.0'
25
+ xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
26
+
27
+ <xsl:output
28
+ method="xml"
29
+ encoding="utf-8"
30
+ media-type="text/xml; charset=UTF-8"
31
+ />
32
+
33
+ <xsl:template match='/'>
34
+ <xsl:variable name="query" select="response/lst[@name='responseHeader']/lst[@name='params']/str[@name='q']"/>
35
+ <feed xmlns="http://www.w3.org/2005/Atom">
36
+ <title>Example Solr Atom 1.0 Feed</title>
37
+ <subtitle>
38
+ This has been formatted by the sample "example_atom.xsl" transform -
39
+ use your own XSLT to get a nicer Atom feed.
40
+ </subtitle>
41
+ <author>
42
+ <name>Apache Solr</name>
43
+ <email>solr-user@lucene.apache.org</email>
44
+ </author>
45
+ <link rel="self" type="application/atom+xml"
46
+ href="http://localhost:8983/solr/q={$query}&amp;wt=xslt&amp;tr=atom.xsl"/>
47
+ <updated>
48
+ <xsl:value-of select="response/result/doc[position()=1]/date[@name='timestamp']"/>
49
+ </updated>
50
+ <id>tag:localhost,2007:example</id>
51
+ <xsl:apply-templates select="response/result/doc"/>
52
+ </feed>
53
+ </xsl:template>
54
+
55
+ <!-- search results xslt -->
56
+ <xsl:template match="doc">
57
+ <xsl:variable name="id" select="str[@name='id']"/>
58
+ <entry>
59
+ <title><xsl:value-of select="str[@name='name']"/></title>
60
+ <link href="http://localhost:8983/solr/select?q={$id}"/>
61
+ <id>tag:localhost,2007:<xsl:value-of select="$id"/></id>
62
+ <summary><xsl:value-of select="arr[@name='features']"/></summary>
63
+ <updated><xsl:value-of select="date[@name='timestamp']"/></updated>
64
+ </entry>
65
+ </xsl:template>
66
+
67
+ </xsl:stylesheet>
@@ -0,0 +1,66 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+
3
+ <!--
4
+ * Licensed to the Apache Software Foundation (ASF) under one or more
5
+ * contributor license agreements. See the NOTICE file distributed with
6
+ * this work for additional information regarding copyright ownership.
7
+ * The ASF licenses this file to You under the Apache License, Version 2.0
8
+ * (the "License"); you may not use this file except in compliance with
9
+ * the License. You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ -->
19
+
20
+ <!--
21
+ Simple transform of Solr query results to RSS
22
+ -->
23
+
24
+ <xsl:stylesheet version='1.0'
25
+ xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
26
+
27
+ <xsl:output
28
+ method="xml"
29
+ encoding="utf-8"
30
+ media-type="text/xml; charset=UTF-8"
31
+ />
32
+ <xsl:template match='/'>
33
+ <rss version="2.0">
34
+ <channel>
35
+ <title>Example Solr RSS 2.0 Feed</title>
36
+ <link>http://localhost:8983/solr</link>
37
+ <description>
38
+ This has been formatted by the sample "example_rss.xsl" transform -
39
+ use your own XSLT to get a nicer RSS feed.
40
+ </description>
41
+ <language>en-us</language>
42
+ <docs>http://localhost:8983/solr</docs>
43
+ <xsl:apply-templates select="response/result/doc"/>
44
+ </channel>
45
+ </rss>
46
+ </xsl:template>
47
+
48
+ <!-- search results xslt -->
49
+ <xsl:template match="doc">
50
+ <xsl:variable name="id" select="str[@name='id']"/>
51
+ <xsl:variable name="timestamp" select="date[@name='timestamp']"/>
52
+ <item>
53
+ <title><xsl:value-of select="str[@name='name']"/></title>
54
+ <link>
55
+ http://localhost:8983/solr/select?q=id:<xsl:value-of select="$id"/>
56
+ </link>
57
+ <description>
58
+ <xsl:value-of select="arr[@name='features']"/>
59
+ </description>
60
+ <pubDate><xsl:value-of select="$timestamp"/></pubDate>
61
+ <guid>
62
+ http://localhost:8983/solr/select?q=id:<xsl:value-of select="$id"/>
63
+ </guid>
64
+ </item>
65
+ </xsl:template>
66
+ </xsl:stylesheet>