arclight 0.0.1 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (202) hide show
  1. checksums.yaml +5 -5
  2. data/.all-contributorsrc +450 -0
  3. data/.codeclimate.yml +5 -0
  4. data/.eslintrc +22 -0
  5. data/.github/workflows/ruby.yml +44 -0
  6. data/.gitignore +7 -0
  7. data/.rspec +0 -1
  8. data/.rubocop.yml +362 -0
  9. data/.rubocop_todo.yml +122 -0
  10. data/.solr_wrapper +5 -0
  11. data/CONTRIBUTING.md +43 -0
  12. data/CONTRIBUTORS.md +79 -0
  13. data/Gemfile +41 -0
  14. data/LICENSE.txt +1 -0
  15. data/README.md +100 -12
  16. data/Rakefile +13 -3
  17. data/app/assets/images/arclight/logo.png +0 -0
  18. data/app/assets/images/blacklight/bookmark.svg +1 -0
  19. data/app/assets/images/blacklight/collection.svg +5 -0
  20. data/app/assets/images/blacklight/compact.svg +1 -0
  21. data/app/assets/images/blacklight/container.svg +5 -0
  22. data/app/assets/images/blacklight/ead.svg +1 -0
  23. data/app/assets/images/blacklight/file.svg +5 -0
  24. data/app/assets/images/blacklight/folder.svg +1 -0
  25. data/app/assets/images/blacklight/list.svg +1 -0
  26. data/app/assets/images/blacklight/minus.svg +1 -0
  27. data/app/assets/images/blacklight/online.svg +5 -0
  28. data/app/assets/images/blacklight/pdf.svg +1 -0
  29. data/app/assets/images/blacklight/plus.svg +1 -0
  30. data/app/assets/images/blacklight/repository.svg +1 -0
  31. data/app/assets/javascripts/arclight/arclight.js +4 -0
  32. data/app/assets/javascripts/arclight/oembed_controller.js +58 -0
  33. data/app/assets/javascripts/arclight/truncate_controller.js +27 -0
  34. data/app/assets/stylesheets/arclight/application.scss +14 -0
  35. data/app/assets/stylesheets/arclight/build.scss +4 -0
  36. data/app/assets/stylesheets/arclight/modules/collection_search.scss +3 -0
  37. data/app/assets/stylesheets/arclight/modules/hierarchy_and_online_contents.scss +155 -0
  38. data/app/assets/stylesheets/arclight/modules/highlights.scss +11 -0
  39. data/app/assets/stylesheets/arclight/modules/icons.scss +20 -0
  40. data/app/assets/stylesheets/arclight/modules/layout.scss +220 -0
  41. data/app/assets/stylesheets/arclight/modules/mastheads.scss +57 -0
  42. data/app/assets/stylesheets/arclight/modules/repositories.scss +25 -0
  43. data/app/assets/stylesheets/arclight/modules/repository_card.scss +9 -0
  44. data/app/assets/stylesheets/arclight/modules/search_form.scss +9 -0
  45. data/app/assets/stylesheets/arclight/modules/search_results.scss +250 -0
  46. data/app/assets/stylesheets/arclight/modules/show_collection.scss +38 -0
  47. data/app/assets/stylesheets/arclight/modules/truncator.scss +58 -0
  48. data/app/assets/stylesheets/arclight/responsive.scss +13 -0
  49. data/app/assets/stylesheets/arclight/variables.scss +25 -0
  50. data/app/components/arclight/access_component.html.erb +14 -0
  51. data/app/components/arclight/access_component.rb +25 -0
  52. data/app/components/arclight/bookmark_component.html.erb +25 -0
  53. data/app/components/arclight/bookmark_component.rb +9 -0
  54. data/app/components/arclight/breadcrumb_component.rb +40 -0
  55. data/app/components/arclight/breadcrumbs_hierarchy_component.html.erb +34 -0
  56. data/app/components/arclight/breadcrumbs_hierarchy_component.rb +25 -0
  57. data/app/components/arclight/collection_context_component.html.erb +12 -0
  58. data/app/components/arclight/collection_context_component.rb +27 -0
  59. data/app/components/arclight/collection_info_component.html.erb +28 -0
  60. data/app/components/arclight/collection_info_component.rb +26 -0
  61. data/app/components/arclight/collection_sidebar_component.html.erb +15 -0
  62. data/app/components/arclight/collection_sidebar_component.rb +39 -0
  63. data/app/components/arclight/constraints_component.html.erb +7 -0
  64. data/app/components/arclight/constraints_component.rb +17 -0
  65. data/app/components/arclight/document_collection_context_component.html.erb +29 -0
  66. data/app/components/arclight/document_collection_context_component.rb +28 -0
  67. data/app/components/arclight/document_collection_hierarchy_component.html.erb +50 -0
  68. data/app/components/arclight/document_collection_hierarchy_component.rb +62 -0
  69. data/app/components/arclight/document_component.html.erb +39 -0
  70. data/app/components/arclight/document_component.rb +49 -0
  71. data/app/components/arclight/document_components_hierarchy_component.html.erb +32 -0
  72. data/app/components/arclight/document_components_hierarchy_component.rb +28 -0
  73. data/app/components/arclight/document_download_component.html.erb +24 -0
  74. data/app/components/arclight/document_download_component.rb +71 -0
  75. data/app/components/arclight/embed_component.html.erb +10 -0
  76. data/app/components/arclight/embed_component.rb +43 -0
  77. data/app/components/arclight/group_component.html.erb +34 -0
  78. data/app/components/arclight/group_component.rb +23 -0
  79. data/app/components/arclight/header_component.html.erb +5 -0
  80. data/app/components/arclight/header_component.rb +10 -0
  81. data/app/components/arclight/index_metadata_field_component.html.erb +16 -0
  82. data/app/components/arclight/index_metadata_field_component.rb +20 -0
  83. data/app/components/arclight/masthead_component.html.erb +15 -0
  84. data/app/components/arclight/masthead_component.rb +10 -0
  85. data/app/components/arclight/metadata_section_component.html.erb +13 -0
  86. data/app/components/arclight/metadata_section_component.rb +22 -0
  87. data/app/components/arclight/oembed_viewer_component.html.erb +5 -0
  88. data/app/components/arclight/oembed_viewer_component.rb +16 -0
  89. data/app/components/arclight/online_content_filter_component.html.erb +15 -0
  90. data/app/components/arclight/online_content_filter_component.rb +19 -0
  91. data/app/components/arclight/online_status_indicator_component.rb +19 -0
  92. data/app/components/arclight/repository_breadcrumb_component.html.erb +10 -0
  93. data/app/components/arclight/repository_breadcrumb_component.rb +17 -0
  94. data/app/components/arclight/repository_location_component.html.erb +20 -0
  95. data/app/components/arclight/repository_location_component.rb +10 -0
  96. data/app/components/arclight/search_bar_component.html.erb +27 -0
  97. data/app/components/arclight/search_bar_component.rb +32 -0
  98. data/app/components/arclight/search_result_breadcrumbs_component.html.erb +6 -0
  99. data/app/components/arclight/search_result_breadcrumbs_component.rb +37 -0
  100. data/app/components/arclight/search_result_component.html.erb +20 -0
  101. data/app/components/arclight/search_result_component.rb +18 -0
  102. data/app/components/arclight/search_result_title_component.html.erb +15 -0
  103. data/app/components/arclight/search_result_title_component.rb +15 -0
  104. data/app/components/arclight/sidebar_component.html.erb +9 -0
  105. data/app/components/arclight/sidebar_component.rb +19 -0
  106. data/app/components/arclight/upper_metadata_layout_component.rb +10 -0
  107. data/app/components/blacklight/icons/bookmark_component.rb +12 -0
  108. data/app/components/blacklight/icons/collection_component.rb +14 -0
  109. data/app/components/blacklight/icons/compact_component.rb +12 -0
  110. data/app/components/blacklight/icons/container_component.rb +14 -0
  111. data/app/components/blacklight/icons/ead_component.rb +12 -0
  112. data/app/components/blacklight/icons/file_component.rb +14 -0
  113. data/app/components/blacklight/icons/folder_component.rb +12 -0
  114. data/app/components/blacklight/icons/online_component.rb +15 -0
  115. data/app/components/blacklight/icons/pdf_component.rb +12 -0
  116. data/app/components/blacklight/icons/repository_component.rb +12 -0
  117. data/app/controllers/arclight/repositories_controller.rb +40 -0
  118. data/app/helpers/arclight/ead_format_helpers.rb +309 -0
  119. data/app/helpers/arclight/field_config_helpers.rb +26 -0
  120. data/app/helpers/arclight_helper.rb +108 -0
  121. data/app/models/arclight/document_downloads.rb +122 -0
  122. data/app/models/arclight/parent.rb +24 -0
  123. data/app/models/arclight/parents.rb +39 -0
  124. data/app/models/arclight/requests/aeon_external_request.rb +42 -0
  125. data/app/models/arclight/requests/aeon_web_ead.rb +52 -0
  126. data/app/models/arclight/requests/google_form.rb +49 -0
  127. data/app/models/concerns/arclight/catalog.rb +44 -0
  128. data/app/models/concerns/arclight/search_behavior.rb +47 -0
  129. data/app/models/concerns/arclight/solr_document.rb +159 -0
  130. data/app/presenters/arclight/index_presenter.rb +10 -0
  131. data/app/presenters/arclight/show_presenter.rb +54 -0
  132. data/app/views/arclight/.keep +0 -0
  133. data/app/views/arclight/_requests.html.erb +7 -0
  134. data/app/views/arclight/repositories/_repository.html.erb +43 -0
  135. data/app/views/arclight/repositories/index.html.erb +9 -0
  136. data/app/views/arclight/repositories/show.html.erb +37 -0
  137. data/app/views/arclight/requests/_aeon_external_request_endpoint.html.erb +8 -0
  138. data/app/views/arclight/requests/_aeon_web_ead.html.erb +6 -0
  139. data/app/views/arclight/requests/_google_form.html.erb +10 -0
  140. data/app/views/catalog/_document_list.html.erb +8 -0
  141. data/app/views/catalog/_group.html.erb +4 -0
  142. data/app/views/catalog/_group_toggle.html.erb +10 -0
  143. data/app/views/catalog/_search_results_header.html.erb +3 -0
  144. data/app/views/catalog/hierarchy.html.erb +19 -0
  145. data/app/views/catalog/index.html.erb +17 -0
  146. data/app/views/shared/_breadcrumbs.html.erb +3 -0
  147. data/app/views/shared/_main_menu_links.html.erb +6 -0
  148. data/arclight.gemspec +29 -11
  149. data/bin/rails +13 -0
  150. data/config/breadcrumbs.rb +24 -0
  151. data/config/i18n-tasks.yml +134 -0
  152. data/config/importmap.rb +3 -0
  153. data/config/locales/arclight.en.yml +100 -0
  154. data/config/repositories.yml +0 -0
  155. data/config/routes.rb +6 -0
  156. data/docker-compose.yml +16 -0
  157. data/lib/arclight/digital_object.rb +27 -0
  158. data/lib/arclight/engine.rb +47 -0
  159. data/lib/arclight/exceptions.rb +19 -0
  160. data/lib/arclight/hash_absolute_xpath.rb +62 -0
  161. data/lib/arclight/level_label.rb +46 -0
  162. data/lib/arclight/missing_id_strategy.rb +21 -0
  163. data/lib/arclight/normalized_date.rb +49 -0
  164. data/lib/arclight/normalized_id.rb +30 -0
  165. data/lib/arclight/normalized_title.rb +33 -0
  166. data/lib/arclight/repository.rb +116 -0
  167. data/lib/arclight/routes/hierarchy.rb +19 -0
  168. data/lib/arclight/routes.rb +8 -0
  169. data/lib/arclight/traject/ead2_component_config.rb +334 -0
  170. data/lib/arclight/traject/ead2_config.rb +315 -0
  171. data/lib/arclight/traject/nokogiri_namespaceless_reader.rb +22 -0
  172. data/lib/arclight/version.rb +3 -1
  173. data/lib/arclight/year_range.rb +111 -0
  174. data/lib/arclight.rb +11 -1
  175. data/lib/generators/arclight/install_generator.rb +126 -0
  176. data/lib/generators/arclight/templates/arclight.scss +5 -0
  177. data/lib/generators/arclight/templates/catalog_controller.rb +422 -0
  178. data/lib/generators/arclight/templates/config/downloads.yml +25 -0
  179. data/lib/generators/arclight/templates/config/locales/arclight.en.yml +61 -0
  180. data/lib/generators/arclight/templates/config/repositories.yml +53 -0
  181. data/lib/generators/arclight/update_generator.rb +22 -0
  182. data/lib/tasks/index.rake +84 -0
  183. data/package.json +30 -0
  184. data/solr/conf/_rest_managed.json +3 -0
  185. data/solr/conf/admin-extra.html +31 -0
  186. data/solr/conf/elevate.xml +36 -0
  187. data/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
  188. data/solr/conf/protwords.txt +21 -0
  189. data/solr/conf/schema.xml +400 -0
  190. data/solr/conf/solrconfig.xml +328 -0
  191. data/solr/conf/spellings.txt +2 -0
  192. data/solr/conf/stopwords.txt +58 -0
  193. data/solr/conf/stopwords_en.txt +58 -0
  194. data/solr/conf/synonyms.txt +31 -0
  195. data/solr/conf/xslt/example.xsl +132 -0
  196. data/solr/conf/xslt/example_atom.xsl +67 -0
  197. data/solr/conf/xslt/example_rss.xsl +66 -0
  198. data/solr/conf/xslt/luke.xsl +337 -0
  199. data/tasks/arclight.rake +72 -0
  200. data/template.rb +10 -0
  201. metadata +432 -20
  202. data/.travis.yml +0 -5
metadata CHANGED
@@ -1,81 +1,493 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arclight
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
+ - Darren Hardy
8
+ - Jessie Keck
9
+ - Gordon Leacock
7
10
  - Jack Reed
8
- autorequire:
11
+ autorequire:
9
12
  bindir: exe
10
13
  cert_chain: []
11
- date: 2017-04-11 00:00:00.000000000 Z
14
+ date: 2024-06-11 00:00:00.000000000 Z
12
15
  dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: blacklight
18
+ requirement: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 8.0.0
23
+ - - "<"
24
+ - !ruby/object:Gem::Version
25
+ version: '9'
26
+ type: :runtime
27
+ prerelease: false
28
+ version_requirements: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 8.0.0
33
+ - - "<"
34
+ - !ruby/object:Gem::Version
35
+ version: '9'
36
+ - !ruby/object:Gem::Dependency
37
+ name: gretel
38
+ requirement: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ type: :runtime
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ - !ruby/object:Gem::Dependency
51
+ name: rails
52
+ requirement: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - "~>"
55
+ - !ruby/object:Gem::Version
56
+ version: '7.0'
57
+ type: :runtime
58
+ prerelease: false
59
+ version_requirements: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - "~>"
62
+ - !ruby/object:Gem::Version
63
+ version: '7.0'
64
+ - !ruby/object:Gem::Dependency
65
+ name: traject
66
+ requirement: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - "~>"
69
+ - !ruby/object:Gem::Version
70
+ version: '3.0'
71
+ type: :runtime
72
+ prerelease: false
73
+ version_requirements: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - "~>"
76
+ - !ruby/object:Gem::Version
77
+ version: '3.0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: traject_plus
80
+ requirement: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - "~>"
83
+ - !ruby/object:Gem::Version
84
+ version: '2.0'
85
+ type: :runtime
86
+ prerelease: false
87
+ version_requirements: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - "~>"
90
+ - !ruby/object:Gem::Version
91
+ version: '2.0'
13
92
  - !ruby/object:Gem::Dependency
14
93
  name: bundler
94
+ requirement: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ version: '0'
99
+ type: :development
100
+ prerelease: false
101
+ version_requirements: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: '0'
106
+ - !ruby/object:Gem::Dependency
107
+ name: capybara
108
+ requirement: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ type: :development
114
+ prerelease: false
115
+ version_requirements: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - ">="
118
+ - !ruby/object:Gem::Version
119
+ version: '0'
120
+ - !ruby/object:Gem::Dependency
121
+ name: engine_cart
122
+ requirement: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - ">="
125
+ - !ruby/object:Gem::Version
126
+ version: '0'
127
+ type: :development
128
+ prerelease: false
129
+ version_requirements: !ruby/object:Gem::Requirement
130
+ requirements:
131
+ - - ">="
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ - !ruby/object:Gem::Dependency
135
+ name: i18n-tasks
136
+ requirement: !ruby/object:Gem::Requirement
137
+ requirements:
138
+ - - ">="
139
+ - !ruby/object:Gem::Version
140
+ version: '0'
141
+ type: :development
142
+ prerelease: false
143
+ version_requirements: !ruby/object:Gem::Requirement
144
+ requirements:
145
+ - - ">="
146
+ - !ruby/object:Gem::Version
147
+ version: '0'
148
+ - !ruby/object:Gem::Dependency
149
+ name: rake
150
+ requirement: !ruby/object:Gem::Requirement
151
+ requirements:
152
+ - - ">="
153
+ - !ruby/object:Gem::Version
154
+ version: '12.0'
155
+ type: :development
156
+ prerelease: false
157
+ version_requirements: !ruby/object:Gem::Requirement
158
+ requirements:
159
+ - - ">="
160
+ - !ruby/object:Gem::Version
161
+ version: '12.0'
162
+ - !ruby/object:Gem::Dependency
163
+ name: rspec-rails
164
+ requirement: !ruby/object:Gem::Requirement
165
+ requirements:
166
+ - - ">="
167
+ - !ruby/object:Gem::Version
168
+ version: '0'
169
+ type: :development
170
+ prerelease: false
171
+ version_requirements: !ruby/object:Gem::Requirement
172
+ requirements:
173
+ - - ">="
174
+ - !ruby/object:Gem::Version
175
+ version: '0'
176
+ - !ruby/object:Gem::Dependency
177
+ name: rubocop
15
178
  requirement: !ruby/object:Gem::Requirement
16
179
  requirements:
17
180
  - - "~>"
18
181
  - !ruby/object:Gem::Version
19
- version: '1.14'
182
+ version: '1.8'
20
183
  type: :development
21
184
  prerelease: false
22
185
  version_requirements: !ruby/object:Gem::Requirement
23
186
  requirements:
24
187
  - - "~>"
25
188
  - !ruby/object:Gem::Version
26
- version: '1.14'
189
+ version: '1.8'
27
190
  - !ruby/object:Gem::Dependency
28
- name: rake
191
+ name: rubocop-rails
29
192
  requirement: !ruby/object:Gem::Requirement
30
193
  requirements:
31
194
  - - "~>"
32
195
  - !ruby/object:Gem::Version
33
- version: '10.0'
196
+ version: '2.8'
34
197
  type: :development
35
198
  prerelease: false
36
199
  version_requirements: !ruby/object:Gem::Requirement
37
200
  requirements:
38
201
  - - "~>"
39
202
  - !ruby/object:Gem::Version
40
- version: '10.0'
203
+ version: '2.8'
204
+ - !ruby/object:Gem::Dependency
205
+ name: rubocop-rake
206
+ requirement: !ruby/object:Gem::Requirement
207
+ requirements:
208
+ - - ">="
209
+ - !ruby/object:Gem::Version
210
+ version: '0'
211
+ type: :development
212
+ prerelease: false
213
+ version_requirements: !ruby/object:Gem::Requirement
214
+ requirements:
215
+ - - ">="
216
+ - !ruby/object:Gem::Version
217
+ version: '0'
41
218
  - !ruby/object:Gem::Dependency
42
- name: rspec
219
+ name: rubocop-rspec
43
220
  requirement: !ruby/object:Gem::Requirement
44
221
  requirements:
45
222
  - - "~>"
46
223
  - !ruby/object:Gem::Version
47
- version: '3.0'
224
+ version: '2.3'
48
225
  type: :development
49
226
  prerelease: false
50
227
  version_requirements: !ruby/object:Gem::Requirement
51
228
  requirements:
52
229
  - - "~>"
53
230
  - !ruby/object:Gem::Version
54
- version: '3.0'
231
+ version: '2.3'
232
+ - !ruby/object:Gem::Dependency
233
+ name: selenium-webdriver
234
+ requirement: !ruby/object:Gem::Requirement
235
+ requirements:
236
+ - - ">="
237
+ - !ruby/object:Gem::Version
238
+ version: '0'
239
+ type: :development
240
+ prerelease: false
241
+ version_requirements: !ruby/object:Gem::Requirement
242
+ requirements:
243
+ - - ">="
244
+ - !ruby/object:Gem::Version
245
+ version: '0'
246
+ - !ruby/object:Gem::Dependency
247
+ name: simplecov
248
+ requirement: !ruby/object:Gem::Requirement
249
+ requirements:
250
+ - - ">="
251
+ - !ruby/object:Gem::Version
252
+ version: '0'
253
+ type: :development
254
+ prerelease: false
255
+ version_requirements: !ruby/object:Gem::Requirement
256
+ requirements:
257
+ - - ">="
258
+ - !ruby/object:Gem::Version
259
+ version: '0'
260
+ - !ruby/object:Gem::Dependency
261
+ name: solr_wrapper
262
+ requirement: !ruby/object:Gem::Requirement
263
+ requirements:
264
+ - - ">="
265
+ - !ruby/object:Gem::Version
266
+ version: '0'
267
+ type: :development
268
+ prerelease: false
269
+ version_requirements: !ruby/object:Gem::Requirement
270
+ requirements:
271
+ - - ">="
272
+ - !ruby/object:Gem::Version
273
+ version: '0'
55
274
  description: ''
56
275
  email:
276
+ - drh@stanford.edu
277
+ - jessie.keck@gmail.com
278
+ - gordonl@umich.edu
57
279
  - phillipjreed@gmail.com
58
280
  executables: []
59
281
  extensions: []
60
282
  extra_rdoc_files: []
61
283
  files:
284
+ - ".all-contributorsrc"
285
+ - ".codeclimate.yml"
286
+ - ".eslintrc"
287
+ - ".github/workflows/ruby.yml"
62
288
  - ".gitignore"
63
289
  - ".rspec"
64
- - ".travis.yml"
290
+ - ".rubocop.yml"
291
+ - ".rubocop_todo.yml"
292
+ - ".solr_wrapper"
293
+ - CONTRIBUTING.md
294
+ - CONTRIBUTORS.md
65
295
  - Gemfile
66
296
  - LICENSE.txt
67
297
  - README.md
68
298
  - Rakefile
299
+ - app/assets/images/arclight/logo.png
300
+ - app/assets/images/blacklight/bookmark.svg
301
+ - app/assets/images/blacklight/collection.svg
302
+ - app/assets/images/blacklight/compact.svg
303
+ - app/assets/images/blacklight/container.svg
304
+ - app/assets/images/blacklight/ead.svg
305
+ - app/assets/images/blacklight/file.svg
306
+ - app/assets/images/blacklight/folder.svg
307
+ - app/assets/images/blacklight/list.svg
308
+ - app/assets/images/blacklight/minus.svg
309
+ - app/assets/images/blacklight/online.svg
310
+ - app/assets/images/blacklight/pdf.svg
311
+ - app/assets/images/blacklight/plus.svg
312
+ - app/assets/images/blacklight/repository.svg
313
+ - app/assets/javascripts/arclight/arclight.js
314
+ - app/assets/javascripts/arclight/oembed_controller.js
315
+ - app/assets/javascripts/arclight/truncate_controller.js
316
+ - app/assets/stylesheets/arclight/application.scss
317
+ - app/assets/stylesheets/arclight/build.scss
318
+ - app/assets/stylesheets/arclight/modules/collection_search.scss
319
+ - app/assets/stylesheets/arclight/modules/hierarchy_and_online_contents.scss
320
+ - app/assets/stylesheets/arclight/modules/highlights.scss
321
+ - app/assets/stylesheets/arclight/modules/icons.scss
322
+ - app/assets/stylesheets/arclight/modules/layout.scss
323
+ - app/assets/stylesheets/arclight/modules/mastheads.scss
324
+ - app/assets/stylesheets/arclight/modules/repositories.scss
325
+ - app/assets/stylesheets/arclight/modules/repository_card.scss
326
+ - app/assets/stylesheets/arclight/modules/search_form.scss
327
+ - app/assets/stylesheets/arclight/modules/search_results.scss
328
+ - app/assets/stylesheets/arclight/modules/show_collection.scss
329
+ - app/assets/stylesheets/arclight/modules/truncator.scss
330
+ - app/assets/stylesheets/arclight/responsive.scss
331
+ - app/assets/stylesheets/arclight/variables.scss
332
+ - app/components/arclight/access_component.html.erb
333
+ - app/components/arclight/access_component.rb
334
+ - app/components/arclight/bookmark_component.html.erb
335
+ - app/components/arclight/bookmark_component.rb
336
+ - app/components/arclight/breadcrumb_component.rb
337
+ - app/components/arclight/breadcrumbs_hierarchy_component.html.erb
338
+ - app/components/arclight/breadcrumbs_hierarchy_component.rb
339
+ - app/components/arclight/collection_context_component.html.erb
340
+ - app/components/arclight/collection_context_component.rb
341
+ - app/components/arclight/collection_info_component.html.erb
342
+ - app/components/arclight/collection_info_component.rb
343
+ - app/components/arclight/collection_sidebar_component.html.erb
344
+ - app/components/arclight/collection_sidebar_component.rb
345
+ - app/components/arclight/constraints_component.html.erb
346
+ - app/components/arclight/constraints_component.rb
347
+ - app/components/arclight/document_collection_context_component.html.erb
348
+ - app/components/arclight/document_collection_context_component.rb
349
+ - app/components/arclight/document_collection_hierarchy_component.html.erb
350
+ - app/components/arclight/document_collection_hierarchy_component.rb
351
+ - app/components/arclight/document_component.html.erb
352
+ - app/components/arclight/document_component.rb
353
+ - app/components/arclight/document_components_hierarchy_component.html.erb
354
+ - app/components/arclight/document_components_hierarchy_component.rb
355
+ - app/components/arclight/document_download_component.html.erb
356
+ - app/components/arclight/document_download_component.rb
357
+ - app/components/arclight/embed_component.html.erb
358
+ - app/components/arclight/embed_component.rb
359
+ - app/components/arclight/group_component.html.erb
360
+ - app/components/arclight/group_component.rb
361
+ - app/components/arclight/header_component.html.erb
362
+ - app/components/arclight/header_component.rb
363
+ - app/components/arclight/index_metadata_field_component.html.erb
364
+ - app/components/arclight/index_metadata_field_component.rb
365
+ - app/components/arclight/masthead_component.html.erb
366
+ - app/components/arclight/masthead_component.rb
367
+ - app/components/arclight/metadata_section_component.html.erb
368
+ - app/components/arclight/metadata_section_component.rb
369
+ - app/components/arclight/oembed_viewer_component.html.erb
370
+ - app/components/arclight/oembed_viewer_component.rb
371
+ - app/components/arclight/online_content_filter_component.html.erb
372
+ - app/components/arclight/online_content_filter_component.rb
373
+ - app/components/arclight/online_status_indicator_component.rb
374
+ - app/components/arclight/repository_breadcrumb_component.html.erb
375
+ - app/components/arclight/repository_breadcrumb_component.rb
376
+ - app/components/arclight/repository_location_component.html.erb
377
+ - app/components/arclight/repository_location_component.rb
378
+ - app/components/arclight/search_bar_component.html.erb
379
+ - app/components/arclight/search_bar_component.rb
380
+ - app/components/arclight/search_result_breadcrumbs_component.html.erb
381
+ - app/components/arclight/search_result_breadcrumbs_component.rb
382
+ - app/components/arclight/search_result_component.html.erb
383
+ - app/components/arclight/search_result_component.rb
384
+ - app/components/arclight/search_result_title_component.html.erb
385
+ - app/components/arclight/search_result_title_component.rb
386
+ - app/components/arclight/sidebar_component.html.erb
387
+ - app/components/arclight/sidebar_component.rb
388
+ - app/components/arclight/upper_metadata_layout_component.rb
389
+ - app/components/blacklight/icons/bookmark_component.rb
390
+ - app/components/blacklight/icons/collection_component.rb
391
+ - app/components/blacklight/icons/compact_component.rb
392
+ - app/components/blacklight/icons/container_component.rb
393
+ - app/components/blacklight/icons/ead_component.rb
394
+ - app/components/blacklight/icons/file_component.rb
395
+ - app/components/blacklight/icons/folder_component.rb
396
+ - app/components/blacklight/icons/online_component.rb
397
+ - app/components/blacklight/icons/pdf_component.rb
398
+ - app/components/blacklight/icons/repository_component.rb
399
+ - app/controllers/arclight/repositories_controller.rb
400
+ - app/helpers/arclight/ead_format_helpers.rb
401
+ - app/helpers/arclight/field_config_helpers.rb
402
+ - app/helpers/arclight_helper.rb
403
+ - app/models/arclight/document_downloads.rb
404
+ - app/models/arclight/parent.rb
405
+ - app/models/arclight/parents.rb
406
+ - app/models/arclight/requests/aeon_external_request.rb
407
+ - app/models/arclight/requests/aeon_web_ead.rb
408
+ - app/models/arclight/requests/google_form.rb
409
+ - app/models/concerns/arclight/catalog.rb
410
+ - app/models/concerns/arclight/search_behavior.rb
411
+ - app/models/concerns/arclight/solr_document.rb
412
+ - app/presenters/arclight/index_presenter.rb
413
+ - app/presenters/arclight/show_presenter.rb
414
+ - app/views/arclight/.keep
415
+ - app/views/arclight/_requests.html.erb
416
+ - app/views/arclight/repositories/_repository.html.erb
417
+ - app/views/arclight/repositories/index.html.erb
418
+ - app/views/arclight/repositories/show.html.erb
419
+ - app/views/arclight/requests/_aeon_external_request_endpoint.html.erb
420
+ - app/views/arclight/requests/_aeon_web_ead.html.erb
421
+ - app/views/arclight/requests/_google_form.html.erb
422
+ - app/views/catalog/_document_list.html.erb
423
+ - app/views/catalog/_group.html.erb
424
+ - app/views/catalog/_group_toggle.html.erb
425
+ - app/views/catalog/_search_results_header.html.erb
426
+ - app/views/catalog/hierarchy.html.erb
427
+ - app/views/catalog/index.html.erb
428
+ - app/views/shared/_breadcrumbs.html.erb
429
+ - app/views/shared/_main_menu_links.html.erb
69
430
  - arclight.gemspec
70
431
  - bin/console
432
+ - bin/rails
71
433
  - bin/setup
434
+ - config/breadcrumbs.rb
435
+ - config/i18n-tasks.yml
436
+ - config/importmap.rb
437
+ - config/locales/arclight.en.yml
438
+ - config/repositories.yml
439
+ - config/routes.rb
440
+ - docker-compose.yml
72
441
  - lib/arclight.rb
442
+ - lib/arclight/digital_object.rb
443
+ - lib/arclight/engine.rb
444
+ - lib/arclight/exceptions.rb
445
+ - lib/arclight/hash_absolute_xpath.rb
446
+ - lib/arclight/level_label.rb
447
+ - lib/arclight/missing_id_strategy.rb
448
+ - lib/arclight/normalized_date.rb
449
+ - lib/arclight/normalized_id.rb
450
+ - lib/arclight/normalized_title.rb
451
+ - lib/arclight/repository.rb
452
+ - lib/arclight/routes.rb
453
+ - lib/arclight/routes/hierarchy.rb
454
+ - lib/arclight/traject/ead2_component_config.rb
455
+ - lib/arclight/traject/ead2_config.rb
456
+ - lib/arclight/traject/nokogiri_namespaceless_reader.rb
73
457
  - lib/arclight/version.rb
74
- homepage: https://github.com/sul-dlss/arclight
458
+ - lib/arclight/year_range.rb
459
+ - lib/generators/arclight/install_generator.rb
460
+ - lib/generators/arclight/templates/arclight.scss
461
+ - lib/generators/arclight/templates/catalog_controller.rb
462
+ - lib/generators/arclight/templates/config/downloads.yml
463
+ - lib/generators/arclight/templates/config/locales/arclight.en.yml
464
+ - lib/generators/arclight/templates/config/repositories.yml
465
+ - lib/generators/arclight/update_generator.rb
466
+ - lib/tasks/index.rake
467
+ - package.json
468
+ - solr/conf/_rest_managed.json
469
+ - solr/conf/admin-extra.html
470
+ - solr/conf/elevate.xml
471
+ - solr/conf/mapping-ISOLatin1Accent.txt
472
+ - solr/conf/protwords.txt
473
+ - solr/conf/schema.xml
474
+ - solr/conf/solrconfig.xml
475
+ - solr/conf/spellings.txt
476
+ - solr/conf/stopwords.txt
477
+ - solr/conf/stopwords_en.txt
478
+ - solr/conf/synonyms.txt
479
+ - solr/conf/xslt/example.xsl
480
+ - solr/conf/xslt/example_atom.xsl
481
+ - solr/conf/xslt/example_rss.xsl
482
+ - solr/conf/xslt/luke.xsl
483
+ - tasks/arclight.rake
484
+ - template.rb
485
+ homepage: https://library.stanford.edu/projects/arclight
75
486
  licenses:
76
487
  - Apache-2.0
77
- metadata: {}
78
- post_install_message:
488
+ metadata:
489
+ source_code_uri: https://github.com/projectblacklight/arclight
490
+ post_install_message:
79
491
  rdoc_options: []
80
492
  require_paths:
81
493
  - lib
@@ -83,16 +495,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
83
495
  requirements:
84
496
  - - ">="
85
497
  - !ruby/object:Gem::Version
86
- version: '0'
498
+ version: 3.0.0
87
499
  required_rubygems_version: !ruby/object:Gem::Requirement
88
500
  requirements:
89
501
  - - ">="
90
502
  - !ruby/object:Gem::Version
91
503
  version: '0'
92
504
  requirements: []
93
- rubyforge_project:
94
- rubygems_version: 2.5.2
95
- signing_key:
505
+ rubygems_version: 3.5.10
506
+ signing_key:
96
507
  specification_version: 4
97
- summary: ''
508
+ summary: A Blacklight-based environment to support discovery and delivery for archives
509
+ and special collections
98
510
  test_files: []
data/.travis.yml DELETED
@@ -1,5 +0,0 @@
1
- sudo: false
2
- language: ruby
3
- rvm:
4
- - 2.3.3
5
- before_install: gem install bundler -v 1.14.6