arclight 0.2.0 → 0.3.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 (153) hide show
  1. checksums.yaml +4 -4
  2. data/.all-contributorsrc +450 -0
  3. data/.babelrc +3 -0
  4. data/.codeclimate.yml +5 -0
  5. data/.eslintrc +3 -0
  6. data/.rubocop.yml +19 -0
  7. data/.rubocop_todo.yml +15 -135
  8. data/.travis.yml +2 -2
  9. data/CONTRIBUTORS.md +79 -0
  10. data/README.md +21 -24
  11. data/Rakefile +0 -1
  12. data/app/assets/images/blacklight/bookmark.svg +1 -0
  13. data/app/assets/images/blacklight/collection.svg +5 -0
  14. data/app/assets/images/blacklight/compact.svg +1 -25
  15. data/app/assets/images/blacklight/container.svg +5 -0
  16. data/app/assets/images/blacklight/ead.svg +1 -0
  17. data/app/assets/images/blacklight/file.svg +5 -0
  18. data/app/assets/images/blacklight/folder.svg +1 -0
  19. data/app/assets/images/blacklight/list.svg +1 -0
  20. data/app/assets/images/blacklight/minus.svg +1 -0
  21. data/app/assets/images/blacklight/online.svg +5 -0
  22. data/app/assets/images/blacklight/pdf.svg +1 -0
  23. data/app/assets/images/blacklight/plus.svg +1 -0
  24. data/app/assets/images/blacklight/repository.svg +1 -0
  25. data/app/assets/javascripts/arclight/arclight.js +1 -3
  26. data/app/assets/javascripts/arclight/collection_navigation.js +36 -53
  27. data/app/assets/javascripts/arclight/collection_scrollspy.js +1 -1
  28. data/app/assets/javascripts/arclight/context_navigation.js +374 -0
  29. data/app/assets/javascripts/arclight/truncator.js.erb +8 -2
  30. data/app/assets/stylesheets/arclight/application.scss +3 -1
  31. data/app/assets/stylesheets/arclight/bootstrap_overrides.scss +23 -0
  32. data/app/assets/stylesheets/arclight/modules/context_navigation.scss +75 -0
  33. data/app/assets/stylesheets/arclight/modules/hierarchy_and_online_contents.scss +28 -35
  34. data/app/assets/stylesheets/arclight/modules/highlights.scss +2 -1
  35. data/app/assets/stylesheets/arclight/modules/layout.scss +128 -14
  36. data/app/assets/stylesheets/arclight/modules/mastheads.scss +27 -5
  37. data/app/assets/stylesheets/arclight/modules/repositories.scss +1 -5
  38. data/app/assets/stylesheets/arclight/modules/repository_card.scss +6 -7
  39. data/app/assets/stylesheets/arclight/modules/search_results.scss +145 -24
  40. data/app/assets/stylesheets/arclight/modules/show_collection.scss +38 -59
  41. data/app/assets/stylesheets/arclight/responsive.scss +13 -0
  42. data/app/assets/stylesheets/arclight/variables.scss +21 -1
  43. data/app/controllers/concerns/arclight/ead_format_helpers.rb +225 -0
  44. data/app/controllers/concerns/arclight/field_config_helpers.rb +23 -7
  45. data/app/factories/blacklight_field_configuration_factory.rb +1 -0
  46. data/app/helpers/arclight_helper.rb +197 -35
  47. data/app/models/arclight/document_downloads.rb +125 -0
  48. data/app/models/arclight/parent.rb +4 -2
  49. data/app/models/arclight/parents.rb +6 -4
  50. data/app/models/arclight/requests/aeon_external_request.rb +42 -0
  51. data/app/models/arclight/requests/aeon_web_ead.rb +47 -0
  52. data/app/models/arclight/requests/google_form.rb +2 -2
  53. data/app/models/concerns/arclight/catalog.rb +14 -2
  54. data/app/models/concerns/arclight/search_behavior.rb +27 -12
  55. data/app/models/concerns/arclight/solr_document.rb +29 -7
  56. data/app/views/arclight/_requests.html.erb +7 -0
  57. data/app/views/arclight/repositories/_in_person_repository.html.erb +1 -1
  58. data/app/views/arclight/repositories/_repository.html.erb +2 -2
  59. data/app/views/arclight/repositories/_repository_contact.html.erb +9 -0
  60. data/app/views/arclight/repositories/index.html.erb +3 -0
  61. data/app/views/arclight/repositories/show.html.erb +5 -4
  62. data/app/views/arclight/requests/_aeon_external_request_endpoint.html.erb +9 -0
  63. data/app/views/arclight/requests/_aeon_web_ead.html.erb +7 -0
  64. data/app/views/arclight/requests/_google_form.html.erb +2 -1
  65. data/app/views/arclight/viewers/_oembed.html.erb +2 -1
  66. data/app/views/catalog/_access_contents.html.erb +15 -0
  67. data/app/views/catalog/_arclight_abstract_or_scope.html.erb +5 -0
  68. data/app/views/catalog/_arclight_bookmark_control.html.erb +38 -0
  69. data/app/views/catalog/_arclight_document_header_icon.html.erb +1 -0
  70. data/app/views/catalog/_arclight_index_compact_default.html.erb +18 -11
  71. data/app/views/catalog/_arclight_index_default.html.erb +45 -0
  72. data/app/views/catalog/_arclight_index_group_document_compact_default.html.erb +19 -0
  73. data/app/views/catalog/_arclight_index_group_document_default.html.erb +18 -0
  74. data/app/views/catalog/_arclight_online_content_indicator.html.erb +1 -3
  75. data/app/views/catalog/_collection_contents.html.erb +2 -10
  76. data/app/views/catalog/_collection_context.html.erb +15 -0
  77. data/app/views/catalog/_collection_context_nav.html.erb +12 -0
  78. data/app/views/catalog/_collection_online_contents.html.erb +3 -3
  79. data/app/views/catalog/_component_context.html.erb +5 -0
  80. data/app/views/catalog/_containers.html.erb +3 -0
  81. data/app/views/catalog/_context_sidebar.html.erb +2 -2
  82. data/app/views/catalog/_document_downloads.html.erb +14 -0
  83. data/app/views/catalog/_group.html.erb +21 -0
  84. data/app/views/catalog/_group_header_compact_default.html.erb +15 -0
  85. data/app/views/catalog/_group_header_default.html.erb +20 -0
  86. data/app/views/catalog/_group_toggle.html.erb +10 -0
  87. data/app/views/catalog/_home.html.erb +1 -1
  88. data/app/views/catalog/_index_breadcrumb_default.html.erb +5 -2
  89. data/app/views/catalog/_index_collection_context_default.html.erb +53 -0
  90. data/app/views/catalog/_index_header.html.erb +3 -3
  91. data/app/views/catalog/_index_online_contents_default.html.erb +1 -1
  92. data/app/views/catalog/_online_content_label.html.erb +5 -0
  93. data/app/views/catalog/_search_form.html.erb +34 -0
  94. data/app/views/catalog/_search_results.html.erb +1 -4
  95. data/app/views/catalog/_show_actions_box_default.html.erb +27 -0
  96. data/app/views/catalog/_show_breadcrumbs_default.html.erb +5 -20
  97. data/app/views/catalog/_show_collection.html.erb +42 -24
  98. data/app/views/catalog/_show_default.html.erb +63 -35
  99. data/app/views/catalog/_show_upper_metadata_default.html.erb +1 -1
  100. data/app/views/catalog/_sort_and_per_page.html.erb +8 -0
  101. data/app/views/catalog/_within_collection_dropdown.html.erb +26 -0
  102. data/app/views/shared/_breadcrumbs.html.erb +4 -4
  103. data/app/views/shared/_context_sidebar.html.erb +2 -2
  104. data/app/views/shared/_header_navbar.html.erb +13 -17
  105. data/app/views/shared/_show_breadcrumbs.html.erb +27 -0
  106. data/arclight.gemspec +5 -6
  107. data/config/i18n-tasks.yml +2 -1
  108. data/config/locales/arclight.en.yml +54 -21
  109. data/config/repositories.yml +0 -0
  110. data/lib/arclight/engine.rb +22 -12
  111. data/lib/arclight/hash_absolute_xpath.rb +11 -7
  112. data/lib/arclight/level_label.rb +46 -0
  113. data/lib/arclight/normalized_date.rb +2 -2
  114. data/lib/arclight/normalized_id.rb +1 -0
  115. data/lib/arclight/normalized_title.rb +1 -0
  116. data/lib/arclight/repository.rb +58 -5
  117. data/lib/arclight/traject/ead2_config.rb +178 -159
  118. data/lib/arclight/traject/nokogiri_namespaceless_reader.rb +22 -0
  119. data/lib/arclight/version.rb +1 -1
  120. data/lib/arclight/viewers/oembed.rb +1 -0
  121. data/lib/arclight/year_range.rb +9 -1
  122. data/lib/generators/arclight/install_generator.rb +5 -1
  123. data/lib/generators/arclight/templates/catalog_controller.rb +128 -100
  124. data/lib/generators/arclight/templates/config/downloads.yml +12 -0
  125. data/lib/generators/arclight/templates/config/repositories.yml +20 -2
  126. data/lib/generators/arclight/update_generator.rb +1 -1
  127. data/lib/tasks/index.rake +18 -20
  128. data/package.json +8 -1
  129. data/solr/conf/schema.xml +51 -292
  130. data/solr/conf/solrconfig.xml +40 -125
  131. data/tasks/arclight.rake +1 -0
  132. data/vendor/assets/javascripts/responsiveTruncator.js +2 -2
  133. metadata +71 -44
  134. data/app/assets/javascripts/arclight/collection_context.js +0 -18
  135. data/app/assets/javascripts/arclight/component_ancestors.js +0 -56
  136. data/app/assets/javascripts/arclight/search_results.js +0 -15
  137. data/app/assets/stylesheets/arclight/modules/sidebar.scss +0 -21
  138. data/app/views/catalog/_collection_count.html.erb +0 -7
  139. data/app/views/catalog/_collection_downloads.html.erb +0 -15
  140. data/app/views/catalog/_collection_overview.html.erb +0 -7
  141. data/app/views/catalog/_component_contents.html.erb +0 -16
  142. data/app/views/catalog/_component_overview.html.erb +0 -40
  143. data/app/views/catalog/_index_header_hierarchy_default.html.erb +0 -42
  144. data/app/views/catalog/_index_hierarchy_default.html.erb +0 -28
  145. data/app/views/catalog/_results_histogram.html.erb +0 -15
  146. data/app/views/catalog/_show_component_sidebar.html.erb +0 -12
  147. data/app/views/catalog/_show_sidebar.html.erb +0 -22
  148. data/lib/arclight/custom_component.rb +0 -99
  149. data/lib/arclight/custom_document.rb +0 -93
  150. data/lib/arclight/indexer.rb +0 -9
  151. data/lib/arclight/shared_indexing_behavior.rb +0 -97
  152. data/lib/arclight/shared_terminology_behavior.rb +0 -65
  153. data/lib/arclight/solr_ead_indexer_ext.rb +0 -155
@@ -28,7 +28,7 @@
28
28
  that you fully re-index after changing this setting as it can
29
29
  affect both how text is indexed and queried.
30
30
  -->
31
- <luceneMatchVersion>5.0.0</luceneMatchVersion>
31
+ <luceneMatchVersion>8.2.0</luceneMatchVersion>
32
32
 
33
33
  <lib dir="${solr.install.dir:../../../..}/contrib/analysis-extras/lib" />
34
34
  <lib dir="${solr.install.dir:../../../..}/contrib/analysis-extras/lucene-libs" />
@@ -85,12 +85,47 @@
85
85
  -->
86
86
 
87
87
  <str name="qf">
88
+ collection_title_tesim^150
88
89
  title_tesim^100
89
- text^10
90
+ name_tesim^10
91
+ place_tesim^10
92
+ unitid_identifier_match^5
93
+ subject_tesim^2
94
+ text
90
95
  </str>
91
96
  <str name="pf">
97
+ collection_title_tesim^150
92
98
  title_tesim^100
93
- text^10
99
+ name_tesim^10
100
+ place_tesim^10
101
+ unitid_identifier_match^5
102
+ subject_tesim^2
103
+ text
104
+ </str>
105
+
106
+ <str name="qf_name">
107
+ name_tesim
108
+ </str>
109
+ <str name="pf_name">
110
+ name_tesim
111
+ </str>
112
+ <str name="qf_place">
113
+ place_tesim
114
+ </str>
115
+ <str name="pf_place">
116
+ place_tesim
117
+ </str>
118
+ <str name="qf_subject">
119
+ subject_tesim
120
+ </str>
121
+ <str name="pf_subject">
122
+ subject_tesim
123
+ </str>
124
+ <str name="qf_title">
125
+ title_tesim
126
+ </str>
127
+ <str name="pf_title">
128
+ title_tesim
94
129
  </str>
95
130
 
96
131
  <int name="ps">3</int>
@@ -103,6 +138,7 @@
103
138
  accessrestrict_ssm,
104
139
  child_component_count_isim,
105
140
  collection_ssm,
141
+ collection_unitid_ssm,
106
142
  containers_ssim,
107
143
  creator_ssm,
108
144
  extent_ssm,
@@ -116,7 +152,7 @@
116
152
  normalized_title_ssm,
117
153
  normalized_date_ssm,
118
154
  unitid_ssm,
119
- parent_ssm,
155
+ parent_ssim,
120
156
  parent_unittitles_ssm,
121
157
  ead_ssi,
122
158
  ref_ssm,
@@ -150,127 +186,6 @@
150
186
  </arr>
151
187
  </requestHandler>
152
188
 
153
- <!-- Field-based searches -->
154
- <requestHandler name="name_search" class="solr.SearchHandler">
155
- <lst name="defaults">
156
- <str name="defType">edismax</str>
157
- <str name="echoParams">explicit</str>
158
- <int name="rows">10</int>
159
- <str name="q.alt">*:*</str>
160
- <str name="mm">2&lt;-1 5&lt;-2 6&lt;90%</str>
161
- <str name="df">name_tesim</str>
162
- <str name="q.op">AND</str>
163
-
164
- <str name="qf">
165
- name_tesim
166
- </str>
167
- <str name="pf">
168
- name_tesim
169
- </str>
170
-
171
- <str name="fl">*</str>
172
- <str name="facet">true</str>
173
- <str name="facet.mincount">1</str>
174
- <str name="facet.field">level_sim</str>
175
- <str name="facet.field">creator_sim</str>
176
- <str name="facet.field">date_range_sim</str>
177
- <str name="facet.field">names_sim</str>
178
- <str name="facet.field">geogname_sim</str>
179
- <str name="facet.field">access_subjects_sim</str>
180
- <str name="facet.field">repository_sim</str>
181
- </lst>
182
- </requestHandler>
183
-
184
- <requestHandler name="place_search" class="solr.SearchHandler">
185
- <lst name="defaults">
186
- <str name="defType">edismax</str>
187
- <str name="echoParams">explicit</str>
188
- <int name="rows">10</int>
189
- <str name="q.alt">*:*</str>
190
- <str name="mm">2&lt;-1 5&lt;-2 6&lt;90%</str>
191
- <str name="df">place_tesim</str>
192
- <str name="q.op">AND</str>
193
-
194
- <str name="qf">
195
- place_tesim
196
- </str>
197
- <str name="pf">
198
- place_tesim
199
- </str>
200
-
201
- <str name="fl">*</str>
202
- <str name="facet">true</str>
203
- <str name="facet.mincount">1</str>
204
- <str name="facet.field">level_sim</str>
205
- <str name="facet.field">creator_sim</str>
206
- <str name="facet.field">date_range_sim</str>
207
- <str name="facet.field">names_sim</str>
208
- <str name="facet.field">geogname_sim</str>
209
- <str name="facet.field">access_subjects_sim</str>
210
- <str name="facet.field">repository_sim</str>
211
- </lst>
212
- </requestHandler>
213
-
214
- <requestHandler name="subject_search" class="solr.SearchHandler">
215
- <lst name="defaults">
216
- <str name="defType">edismax</str>
217
- <str name="echoParams">explicit</str>
218
- <int name="rows">10</int>
219
- <str name="q.alt">*:*</str>
220
- <str name="mm">2&lt;-1 5&lt;-2 6&lt;90%</str>
221
- <str name="df">subject_tesim</str>
222
- <str name="q.op">AND</str>
223
-
224
- <str name="qf">
225
- subject_tesim
226
- </str>
227
- <str name="pf">
228
- subject_tesim
229
- </str>
230
-
231
- <str name="fl">*</str>
232
- <str name="facet">true</str>
233
- <str name="facet.mincount">1</str>
234
- <str name="facet.field">level_sim</str>
235
- <str name="facet.field">creator_sim</str>
236
- <str name="facet.field">date_range_sim</str>
237
- <str name="facet.field">names_sim</str>
238
- <str name="facet.field">geogname_sim</str>
239
- <str name="facet.field">access_subjects_sim</str>
240
- <str name="facet.field">repository_sim</str>
241
- </lst>
242
- </requestHandler>
243
-
244
- <requestHandler name="title_search" class="solr.SearchHandler">
245
- <lst name="defaults">
246
- <str name="defType">edismax</str>
247
- <str name="echoParams">explicit</str>
248
- <int name="rows">10</int>
249
- <str name="q.alt">*:*</str>
250
- <str name="mm">2&lt;-1 5&lt;-2 6&lt;90%</str>
251
- <str name="df">title_tesim</str>
252
- <str name="q.op">AND</str>
253
-
254
- <str name="qf">
255
- title_tesim
256
- </str>
257
- <str name="pf">
258
- title_tesim
259
- </str>
260
-
261
- <str name="fl">*</str>
262
- <str name="facet">true</str>
263
- <str name="facet.mincount">1</str>
264
- <str name="facet.field">level_sim</str>
265
- <str name="facet.field">creator_sim</str>
266
- <str name="facet.field">date_range_sim</str>
267
- <str name="facet.field">names_sim</str>
268
- <str name="facet.field">geogname_sim</str>
269
- <str name="facet.field">access_subjects_sim</str>
270
- <str name="facet.field">repository_sim</str>
271
- </lst>
272
- </requestHandler>
273
-
274
189
  <!-- for requests to get a single document; use id=666 instead of q=id:666 -->
275
190
  <requestHandler name="document" class="solr.SearchHandler" >
276
191
  <lst name="defaults">
data/tasks/arclight.rake CHANGED
@@ -61,6 +61,7 @@ namespace :arclight do
61
61
  end
62
62
  Dir.glob('spec/fixtures/ead/*').each do |dir|
63
63
  next unless File.directory?(dir)
64
+
64
65
  system("REPOSITORY_ID=#{File.basename(dir)} " \
65
66
  'REPOSITORY_FILE=spec/fixtures/config/repositories.yml ' \
66
67
  "DIR=#{dir} " \
@@ -8,7 +8,7 @@
8
8
  **/
9
9
  (function( $ ){
10
10
  $.fn.responsiveTruncate = function(options){
11
- var $this = this;
11
+ var $this = this;
12
12
  $(window).bind("resize", function(){
13
13
  removeTruncation($this);
14
14
  addTruncation($this);
@@ -45,7 +45,7 @@
45
45
  toggle_link.click(function(){
46
46
  var text = toggle_link.text() == settings.more ? settings.less : settings.more;
47
47
  toggle_link.text(text);
48
- if(truncate.height() == truncate_height){
48
+ if(truncate.height() <= truncate_height){
49
49
  truncate.css({height: '100%'})
50
50
  }else{
51
51
  truncate.css({height: truncate_height})
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arclight
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Darren Hardy
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: exe
13
13
  cert_chain: []
14
- date: 2019-08-29 00:00:00.000000000 Z
14
+ date: 2019-10-29 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: blacklight
@@ -19,20 +19,14 @@ dependencies:
19
19
  requirements:
20
20
  - - "~>"
21
21
  - !ruby/object:Gem::Version
22
- version: '7.0'
23
- - - ">="
24
- - !ruby/object:Gem::Version
25
- version: 7.0.1
22
+ version: '7.2'
26
23
  type: :runtime
27
24
  prerelease: false
28
25
  version_requirements: !ruby/object:Gem::Requirement
29
26
  requirements:
30
27
  - - "~>"
31
28
  - !ruby/object:Gem::Version
32
- version: '7.0'
33
- - - ">="
34
- - !ruby/object:Gem::Version
35
- version: 7.0.1
29
+ version: '7.2'
36
30
  - !ruby/object:Gem::Dependency
37
31
  name: blacklight_range_limit
38
32
  requirement: !ruby/object:Gem::Requirement
@@ -62,7 +56,7 @@ dependencies:
62
56
  - !ruby/object:Gem::Version
63
57
  version: '5.0'
64
58
  - !ruby/object:Gem::Dependency
65
- name: solr_ead
59
+ name: sprockets-bumble_d
66
60
  requirement: !ruby/object:Gem::Requirement
67
61
  requirements:
68
62
  - - ">="
@@ -93,16 +87,16 @@ dependencies:
93
87
  name: traject_plus
94
88
  requirement: !ruby/object:Gem::Requirement
95
89
  requirements:
96
- - - ">="
90
+ - - "~>"
97
91
  - !ruby/object:Gem::Version
98
- version: '0'
92
+ version: '1.2'
99
93
  type: :runtime
100
94
  prerelease: false
101
95
  version_requirements: !ruby/object:Gem::Requirement
102
96
  requirements:
103
- - - ">="
97
+ - - "~>"
104
98
  - !ruby/object:Gem::Version
105
- version: '0'
99
+ version: '1.2'
106
100
  - !ruby/object:Gem::Dependency
107
101
  name: bundler
108
102
  requirement: !ruby/object:Gem::Requirement
@@ -174,47 +168,47 @@ dependencies:
174
168
  - !ruby/object:Gem::Version
175
169
  version: '12.0'
176
170
  - !ruby/object:Gem::Dependency
177
- name: rubocop
171
+ name: rspec-rails
178
172
  requirement: !ruby/object:Gem::Requirement
179
173
  requirements:
180
174
  - - "~>"
181
175
  - !ruby/object:Gem::Version
182
- version: 0.74.0
176
+ version: '3.0'
183
177
  type: :development
184
178
  prerelease: false
185
179
  version_requirements: !ruby/object:Gem::Requirement
186
180
  requirements:
187
181
  - - "~>"
188
182
  - !ruby/object:Gem::Version
189
- version: 0.74.0
183
+ version: '3.0'
190
184
  - !ruby/object:Gem::Dependency
191
- name: rubocop-rspec
185
+ name: rubocop
192
186
  requirement: !ruby/object:Gem::Requirement
193
187
  requirements:
194
188
  - - "~>"
195
189
  - !ruby/object:Gem::Version
196
- version: '1.35'
190
+ version: 0.74.0
197
191
  type: :development
198
192
  prerelease: false
199
193
  version_requirements: !ruby/object:Gem::Requirement
200
194
  requirements:
201
195
  - - "~>"
202
196
  - !ruby/object:Gem::Version
203
- version: '1.35'
197
+ version: 0.74.0
204
198
  - !ruby/object:Gem::Dependency
205
- name: rspec-rails
199
+ name: rubocop-rspec
206
200
  requirement: !ruby/object:Gem::Requirement
207
201
  requirements:
208
202
  - - "~>"
209
203
  - !ruby/object:Gem::Version
210
- version: '3.0'
204
+ version: '1.35'
211
205
  type: :development
212
206
  prerelease: false
213
207
  version_requirements: !ruby/object:Gem::Requirement
214
208
  requirements:
215
209
  - - "~>"
216
210
  - !ruby/object:Gem::Version
217
- version: '3.0'
211
+ version: '1.35'
218
212
  - !ruby/object:Gem::Dependency
219
213
  name: selenium-webdriver
220
214
  requirement: !ruby/object:Gem::Requirement
@@ -281,6 +275,9 @@ executables: []
281
275
  extensions: []
282
276
  extra_rdoc_files: []
283
277
  files:
278
+ - ".all-contributorsrc"
279
+ - ".babelrc"
280
+ - ".codeclimate.yml"
284
281
  - ".eslintrc"
285
282
  - ".gitignore"
286
283
  - ".rspec"
@@ -289,23 +286,35 @@ files:
289
286
  - ".solr_wrapper"
290
287
  - ".travis.yml"
291
288
  - CONTRIBUTING.md
289
+ - CONTRIBUTORS.md
292
290
  - Gemfile
293
291
  - LICENSE.txt
294
292
  - README.md
295
293
  - Rakefile
294
+ - app/assets/images/blacklight/bookmark.svg
295
+ - app/assets/images/blacklight/collection.svg
296
296
  - app/assets/images/blacklight/compact.svg
297
+ - app/assets/images/blacklight/container.svg
298
+ - app/assets/images/blacklight/ead.svg
299
+ - app/assets/images/blacklight/file.svg
300
+ - app/assets/images/blacklight/folder.svg
301
+ - app/assets/images/blacklight/list.svg
297
302
  - app/assets/images/blacklight/logo.png
303
+ - app/assets/images/blacklight/minus.svg
304
+ - app/assets/images/blacklight/online.svg
305
+ - app/assets/images/blacklight/pdf.svg
306
+ - app/assets/images/blacklight/plus.svg
307
+ - app/assets/images/blacklight/repository.svg
298
308
  - app/assets/javascripts/arclight/arclight.js
299
- - app/assets/javascripts/arclight/collection_context.js
300
309
  - app/assets/javascripts/arclight/collection_navigation.js
301
310
  - app/assets/javascripts/arclight/collection_scrollspy.js
302
- - app/assets/javascripts/arclight/component_ancestors.js
311
+ - app/assets/javascripts/arclight/context_navigation.js
303
312
  - app/assets/javascripts/arclight/oembed_viewer.js
304
- - app/assets/javascripts/arclight/search_results.js
305
313
  - app/assets/javascripts/arclight/truncator.js.erb
306
314
  - app/assets/stylesheets/arclight/application.scss
307
315
  - app/assets/stylesheets/arclight/bootstrap_overrides.scss
308
316
  - app/assets/stylesheets/arclight/modules/collection_search.scss
317
+ - app/assets/stylesheets/arclight/modules/context_navigation.scss
309
318
  - app/assets/stylesheets/arclight/modules/hierarchy_and_online_contents.scss
310
319
  - app/assets/stylesheets/arclight/modules/highlights.scss
311
320
  - app/assets/stylesheets/arclight/modules/layout.scss
@@ -314,14 +323,18 @@ files:
314
323
  - app/assets/stylesheets/arclight/modules/repository_card.scss
315
324
  - app/assets/stylesheets/arclight/modules/search_results.scss
316
325
  - app/assets/stylesheets/arclight/modules/show_collection.scss
317
- - app/assets/stylesheets/arclight/modules/sidebar.scss
326
+ - app/assets/stylesheets/arclight/responsive.scss
318
327
  - app/assets/stylesheets/arclight/variables.scss
319
328
  - app/controllers/arclight/repositories_controller.rb
329
+ - app/controllers/concerns/arclight/ead_format_helpers.rb
320
330
  - app/controllers/concerns/arclight/field_config_helpers.rb
321
331
  - app/factories/blacklight_field_configuration_factory.rb
322
332
  - app/helpers/arclight_helper.rb
333
+ - app/models/arclight/document_downloads.rb
323
334
  - app/models/arclight/parent.rb
324
335
  - app/models/arclight/parents.rb
336
+ - app/models/arclight/requests/aeon_external_request.rb
337
+ - app/models/arclight/requests/aeon_web_ead.rb
325
338
  - app/models/arclight/requests/google_form.rb
326
339
  - app/models/concerns/arclight/catalog.rb
327
340
  - app/models/concerns/arclight/search_behavior.rb
@@ -329,77 +342,91 @@ files:
329
342
  - app/presenters/arclight/index_presenter.rb
330
343
  - app/presenters/arclight/show_presenter.rb
331
344
  - app/views/arclight/.keep
345
+ - app/views/arclight/_requests.html.erb
332
346
  - app/views/arclight/repositories/_in_person_repository.html.erb
333
347
  - app/views/arclight/repositories/_repository.html.erb
348
+ - app/views/arclight/repositories/_repository_contact.html.erb
334
349
  - app/views/arclight/repositories/index.html.erb
335
350
  - app/views/arclight/repositories/show.html.erb
351
+ - app/views/arclight/requests/_aeon_external_request_endpoint.html.erb
352
+ - app/views/arclight/requests/_aeon_web_ead.html.erb
336
353
  - app/views/arclight/requests/_google_form.html.erb
337
354
  - app/views/arclight/viewers/_oembed.html.erb
355
+ - app/views/catalog/_access_contents.html.erb
356
+ - app/views/catalog/_arclight_abstract_or_scope.html.erb
357
+ - app/views/catalog/_arclight_bookmark_control.html.erb
358
+ - app/views/catalog/_arclight_document_header_icon.html.erb
338
359
  - app/views/catalog/_arclight_document_index_header.html.erb
339
360
  - app/views/catalog/_arclight_document_index_header_hierarchy_default.html.erb
340
361
  - app/views/catalog/_arclight_document_index_header_online_contents_default.html.erb
341
362
  - app/views/catalog/_arclight_index_compact_default.html.erb
363
+ - app/views/catalog/_arclight_index_default.html.erb
364
+ - app/views/catalog/_arclight_index_group_document_compact_default.html.erb
365
+ - app/views/catalog/_arclight_index_group_document_default.html.erb
342
366
  - app/views/catalog/_arclight_online_content_indicator.html.erb
343
367
  - app/views/catalog/_arclight_rangelimit.html.erb
344
368
  - app/views/catalog/_arclight_viewer_default.html.erb
345
369
  - app/views/catalog/_collection_contents.html.erb
346
- - app/views/catalog/_collection_count.html.erb
347
- - app/views/catalog/_collection_downloads.html.erb
370
+ - app/views/catalog/_collection_context.html.erb
371
+ - app/views/catalog/_collection_context_nav.html.erb
348
372
  - app/views/catalog/_collection_online_contents.html.erb
349
- - app/views/catalog/_collection_overview.html.erb
350
- - app/views/catalog/_component_contents.html.erb
351
- - app/views/catalog/_component_overview.html.erb
373
+ - app/views/catalog/_component_context.html.erb
374
+ - app/views/catalog/_containers.html.erb
352
375
  - app/views/catalog/_context_card.html.erb
353
376
  - app/views/catalog/_context_sidebar.html.erb
354
377
  - app/views/catalog/_custom_metadata.html.erb
378
+ - app/views/catalog/_document_downloads.html.erb
379
+ - app/views/catalog/_group.html.erb
380
+ - app/views/catalog/_group_header_compact_default.html.erb
381
+ - app/views/catalog/_group_header_default.html.erb
382
+ - app/views/catalog/_group_toggle.html.erb
355
383
  - app/views/catalog/_home.html.erb
356
384
  - app/views/catalog/_index_breadcrumb_default.html.erb
385
+ - app/views/catalog/_index_collection_context_default.html.erb
357
386
  - app/views/catalog/_index_default.html.erb
358
387
  - app/views/catalog/_index_header.html.erb
359
- - app/views/catalog/_index_header_hierarchy_default.html.erb
360
388
  - app/views/catalog/_index_header_online_contents_default.html.erb
361
- - app/views/catalog/_index_hierarchy_default.html.erb
362
389
  - app/views/catalog/_index_online_contents_default.html.erb
363
- - app/views/catalog/_results_histogram.html.erb
390
+ - app/views/catalog/_online_content_label.html.erb
391
+ - app/views/catalog/_search_form.html.erb
364
392
  - app/views/catalog/_search_results.html.erb
365
393
  - app/views/catalog/_search_results_repository.html.erb
394
+ - app/views/catalog/_show_actions_box_default.html.erb
366
395
  - app/views/catalog/_show_breadcrumbs_default.html.erb
367
396
  - app/views/catalog/_show_collection.html.erb
368
- - app/views/catalog/_show_component_sidebar.html.erb
369
397
  - app/views/catalog/_show_default.html.erb
370
- - app/views/catalog/_show_sidebar.html.erb
371
398
  - app/views/catalog/_show_upper_metadata_collection.html.erb
372
399
  - app/views/catalog/_show_upper_metadata_default.html.erb
400
+ - app/views/catalog/_sort_and_per_page.html.erb
401
+ - app/views/catalog/_within_collection_dropdown.html.erb
373
402
  - app/views/catalog/index.html.erb
374
403
  - app/views/layouts/catalog_result.html.erb
375
404
  - app/views/shared/_breadcrumbs.html.erb
376
405
  - app/views/shared/_context_sidebar.html.erb
377
406
  - app/views/shared/_header_navbar.html.erb
378
407
  - app/views/shared/_main_menu_links.html.erb
408
+ - app/views/shared/_show_breadcrumbs.html.erb
379
409
  - arclight.gemspec
380
410
  - bin/console
381
411
  - bin/rails
382
412
  - bin/setup
383
413
  - config/i18n-tasks.yml
384
414
  - config/locales/arclight.en.yml
415
+ - config/repositories.yml
385
416
  - config/routes.rb
386
417
  - lib/arclight.rb
387
- - lib/arclight/custom_component.rb
388
- - lib/arclight/custom_document.rb
389
418
  - lib/arclight/digital_object.rb
390
419
  - lib/arclight/engine.rb
391
420
  - lib/arclight/exceptions.rb
392
421
  - lib/arclight/hash_absolute_xpath.rb
393
- - lib/arclight/indexer.rb
422
+ - lib/arclight/level_label.rb
394
423
  - lib/arclight/missing_id_strategy.rb
395
424
  - lib/arclight/normalized_date.rb
396
425
  - lib/arclight/normalized_id.rb
397
426
  - lib/arclight/normalized_title.rb
398
427
  - lib/arclight/repository.rb
399
- - lib/arclight/shared_indexing_behavior.rb
400
- - lib/arclight/shared_terminology_behavior.rb
401
- - lib/arclight/solr_ead_indexer_ext.rb
402
428
  - lib/arclight/traject/ead2_config.rb
429
+ - lib/arclight/traject/nokogiri_namespaceless_reader.rb
403
430
  - lib/arclight/version.rb
404
431
  - lib/arclight/viewer.rb
405
432
  - lib/arclight/viewers/oembed.rb