arclight 0.0.1 → 1.6.2

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