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.
- checksums.yaml +5 -5
- data/.all-contributorsrc +450 -0
- data/.codeclimate.yml +5 -0
- data/.eslintrc +22 -0
- data/.github/workflows/ruby.yml +44 -0
- data/.gitignore +7 -0
- data/.rspec +0 -1
- data/.rubocop.yml +362 -0
- data/.rubocop_todo.yml +122 -0
- data/.solr_wrapper +5 -0
- data/CONTRIBUTING.md +43 -0
- data/CONTRIBUTORS.md +79 -0
- data/Gemfile +41 -0
- data/LICENSE.txt +1 -0
- data/README.md +100 -12
- data/Rakefile +13 -3
- data/app/assets/images/arclight/logo.png +0 -0
- data/app/assets/images/blacklight/bookmark.svg +1 -0
- data/app/assets/images/blacklight/collection.svg +5 -0
- data/app/assets/images/blacklight/compact.svg +1 -0
- data/app/assets/images/blacklight/container.svg +5 -0
- data/app/assets/images/blacklight/ead.svg +1 -0
- data/app/assets/images/blacklight/file.svg +5 -0
- data/app/assets/images/blacklight/folder.svg +1 -0
- data/app/assets/images/blacklight/list.svg +1 -0
- data/app/assets/images/blacklight/minus.svg +1 -0
- data/app/assets/images/blacklight/online.svg +5 -0
- data/app/assets/images/blacklight/pdf.svg +1 -0
- data/app/assets/images/blacklight/plus.svg +1 -0
- data/app/assets/images/blacklight/repository.svg +1 -0
- data/app/assets/javascripts/arclight/arclight.js +4 -0
- data/app/assets/javascripts/arclight/oembed_controller.js +58 -0
- data/app/assets/javascripts/arclight/truncate_controller.js +27 -0
- data/app/assets/stylesheets/arclight/application.scss +14 -0
- data/app/assets/stylesheets/arclight/build.scss +4 -0
- data/app/assets/stylesheets/arclight/modules/collection_search.scss +3 -0
- data/app/assets/stylesheets/arclight/modules/hierarchy_and_online_contents.scss +155 -0
- data/app/assets/stylesheets/arclight/modules/highlights.scss +11 -0
- data/app/assets/stylesheets/arclight/modules/icons.scss +20 -0
- data/app/assets/stylesheets/arclight/modules/layout.scss +220 -0
- data/app/assets/stylesheets/arclight/modules/mastheads.scss +57 -0
- data/app/assets/stylesheets/arclight/modules/repositories.scss +25 -0
- data/app/assets/stylesheets/arclight/modules/repository_card.scss +9 -0
- data/app/assets/stylesheets/arclight/modules/search_form.scss +9 -0
- data/app/assets/stylesheets/arclight/modules/search_results.scss +250 -0
- data/app/assets/stylesheets/arclight/modules/show_collection.scss +38 -0
- data/app/assets/stylesheets/arclight/modules/truncator.scss +58 -0
- data/app/assets/stylesheets/arclight/responsive.scss +13 -0
- data/app/assets/stylesheets/arclight/variables.scss +25 -0
- data/app/components/arclight/access_component.html.erb +14 -0
- data/app/components/arclight/access_component.rb +25 -0
- data/app/components/arclight/bookmark_component.html.erb +25 -0
- data/app/components/arclight/bookmark_component.rb +9 -0
- data/app/components/arclight/breadcrumb_component.rb +40 -0
- data/app/components/arclight/breadcrumbs_hierarchy_component.html.erb +34 -0
- data/app/components/arclight/breadcrumbs_hierarchy_component.rb +25 -0
- data/app/components/arclight/collection_context_component.html.erb +12 -0
- data/app/components/arclight/collection_context_component.rb +27 -0
- data/app/components/arclight/collection_info_component.html.erb +28 -0
- data/app/components/arclight/collection_info_component.rb +26 -0
- data/app/components/arclight/collection_sidebar_component.html.erb +15 -0
- data/app/components/arclight/collection_sidebar_component.rb +39 -0
- data/app/components/arclight/constraints_component.html.erb +7 -0
- data/app/components/arclight/constraints_component.rb +17 -0
- data/app/components/arclight/document_collection_context_component.html.erb +29 -0
- data/app/components/arclight/document_collection_context_component.rb +28 -0
- data/app/components/arclight/document_collection_hierarchy_component.html.erb +50 -0
- data/app/components/arclight/document_collection_hierarchy_component.rb +62 -0
- data/app/components/arclight/document_component.html.erb +39 -0
- data/app/components/arclight/document_component.rb +49 -0
- data/app/components/arclight/document_components_hierarchy_component.html.erb +32 -0
- data/app/components/arclight/document_components_hierarchy_component.rb +28 -0
- data/app/components/arclight/document_download_component.html.erb +24 -0
- data/app/components/arclight/document_download_component.rb +71 -0
- data/app/components/arclight/embed_component.html.erb +10 -0
- data/app/components/arclight/embed_component.rb +43 -0
- data/app/components/arclight/group_component.html.erb +34 -0
- data/app/components/arclight/group_component.rb +23 -0
- data/app/components/arclight/header_component.html.erb +5 -0
- data/app/components/arclight/header_component.rb +10 -0
- data/app/components/arclight/index_metadata_field_component.html.erb +16 -0
- data/app/components/arclight/index_metadata_field_component.rb +20 -0
- data/app/components/arclight/masthead_component.html.erb +15 -0
- data/app/components/arclight/masthead_component.rb +10 -0
- data/app/components/arclight/metadata_section_component.html.erb +13 -0
- data/app/components/arclight/metadata_section_component.rb +22 -0
- data/app/components/arclight/oembed_viewer_component.html.erb +5 -0
- data/app/components/arclight/oembed_viewer_component.rb +16 -0
- data/app/components/arclight/online_content_filter_component.html.erb +15 -0
- data/app/components/arclight/online_content_filter_component.rb +19 -0
- data/app/components/arclight/online_status_indicator_component.rb +19 -0
- data/app/components/arclight/repository_breadcrumb_component.html.erb +10 -0
- data/app/components/arclight/repository_breadcrumb_component.rb +17 -0
- data/app/components/arclight/repository_location_component.html.erb +20 -0
- data/app/components/arclight/repository_location_component.rb +10 -0
- data/app/components/arclight/search_bar_component.html.erb +27 -0
- data/app/components/arclight/search_bar_component.rb +32 -0
- data/app/components/arclight/search_result_breadcrumbs_component.html.erb +6 -0
- data/app/components/arclight/search_result_breadcrumbs_component.rb +37 -0
- data/app/components/arclight/search_result_component.html.erb +20 -0
- data/app/components/arclight/search_result_component.rb +18 -0
- data/app/components/arclight/search_result_title_component.html.erb +15 -0
- data/app/components/arclight/search_result_title_component.rb +15 -0
- data/app/components/arclight/sidebar_component.html.erb +9 -0
- data/app/components/arclight/sidebar_component.rb +19 -0
- data/app/components/arclight/upper_metadata_layout_component.rb +10 -0
- data/app/components/blacklight/icons/bookmark_component.rb +12 -0
- data/app/components/blacklight/icons/collection_component.rb +14 -0
- data/app/components/blacklight/icons/compact_component.rb +12 -0
- data/app/components/blacklight/icons/container_component.rb +14 -0
- data/app/components/blacklight/icons/ead_component.rb +12 -0
- data/app/components/blacklight/icons/file_component.rb +14 -0
- data/app/components/blacklight/icons/folder_component.rb +12 -0
- data/app/components/blacklight/icons/online_component.rb +15 -0
- data/app/components/blacklight/icons/pdf_component.rb +12 -0
- data/app/components/blacklight/icons/repository_component.rb +12 -0
- data/app/controllers/arclight/repositories_controller.rb +40 -0
- data/app/helpers/arclight/ead_format_helpers.rb +309 -0
- data/app/helpers/arclight/field_config_helpers.rb +26 -0
- data/app/helpers/arclight_helper.rb +108 -0
- data/app/models/arclight/document_downloads.rb +122 -0
- data/app/models/arclight/parent.rb +24 -0
- data/app/models/arclight/parents.rb +39 -0
- data/app/models/arclight/requests/aeon_external_request.rb +42 -0
- data/app/models/arclight/requests/aeon_web_ead.rb +52 -0
- data/app/models/arclight/requests/google_form.rb +49 -0
- data/app/models/concerns/arclight/catalog.rb +44 -0
- data/app/models/concerns/arclight/search_behavior.rb +47 -0
- data/app/models/concerns/arclight/solr_document.rb +159 -0
- data/app/presenters/arclight/index_presenter.rb +10 -0
- data/app/presenters/arclight/show_presenter.rb +54 -0
- data/app/views/arclight/.keep +0 -0
- data/app/views/arclight/_requests.html.erb +7 -0
- data/app/views/arclight/repositories/_repository.html.erb +43 -0
- data/app/views/arclight/repositories/index.html.erb +9 -0
- data/app/views/arclight/repositories/show.html.erb +37 -0
- data/app/views/arclight/requests/_aeon_external_request_endpoint.html.erb +8 -0
- data/app/views/arclight/requests/_aeon_web_ead.html.erb +6 -0
- data/app/views/arclight/requests/_google_form.html.erb +10 -0
- data/app/views/catalog/_document_list.html.erb +8 -0
- data/app/views/catalog/_group.html.erb +4 -0
- data/app/views/catalog/_group_toggle.html.erb +10 -0
- data/app/views/catalog/_search_results_header.html.erb +3 -0
- data/app/views/catalog/hierarchy.html.erb +19 -0
- data/app/views/catalog/index.html.erb +17 -0
- data/app/views/shared/_breadcrumbs.html.erb +3 -0
- data/app/views/shared/_main_menu_links.html.erb +6 -0
- data/arclight.gemspec +29 -11
- data/bin/rails +13 -0
- data/config/breadcrumbs.rb +24 -0
- data/config/i18n-tasks.yml +134 -0
- data/config/importmap.rb +3 -0
- data/config/locales/arclight.en.yml +100 -0
- data/config/repositories.yml +0 -0
- data/config/routes.rb +6 -0
- data/docker-compose.yml +16 -0
- data/lib/arclight/digital_object.rb +27 -0
- data/lib/arclight/engine.rb +47 -0
- data/lib/arclight/exceptions.rb +19 -0
- data/lib/arclight/hash_absolute_xpath.rb +62 -0
- data/lib/arclight/level_label.rb +46 -0
- data/lib/arclight/missing_id_strategy.rb +21 -0
- data/lib/arclight/normalized_date.rb +49 -0
- data/lib/arclight/normalized_id.rb +30 -0
- data/lib/arclight/normalized_title.rb +33 -0
- data/lib/arclight/repository.rb +116 -0
- data/lib/arclight/routes/hierarchy.rb +19 -0
- data/lib/arclight/routes.rb +8 -0
- data/lib/arclight/traject/ead2_component_config.rb +334 -0
- data/lib/arclight/traject/ead2_config.rb +315 -0
- data/lib/arclight/traject/nokogiri_namespaceless_reader.rb +22 -0
- data/lib/arclight/version.rb +3 -1
- data/lib/arclight/year_range.rb +111 -0
- data/lib/arclight.rb +11 -1
- data/lib/generators/arclight/install_generator.rb +126 -0
- data/lib/generators/arclight/templates/arclight.scss +5 -0
- data/lib/generators/arclight/templates/catalog_controller.rb +422 -0
- data/lib/generators/arclight/templates/config/downloads.yml +25 -0
- data/lib/generators/arclight/templates/config/locales/arclight.en.yml +61 -0
- data/lib/generators/arclight/templates/config/repositories.yml +53 -0
- data/lib/generators/arclight/update_generator.rb +22 -0
- data/lib/tasks/index.rake +84 -0
- data/package.json +30 -0
- data/solr/conf/_rest_managed.json +3 -0
- data/solr/conf/admin-extra.html +31 -0
- data/solr/conf/elevate.xml +36 -0
- data/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
- data/solr/conf/protwords.txt +21 -0
- data/solr/conf/schema.xml +400 -0
- data/solr/conf/solrconfig.xml +328 -0
- data/solr/conf/spellings.txt +2 -0
- data/solr/conf/stopwords.txt +58 -0
- data/solr/conf/stopwords_en.txt +58 -0
- data/solr/conf/synonyms.txt +31 -0
- data/solr/conf/xslt/example.xsl +132 -0
- data/solr/conf/xslt/example_atom.xsl +67 -0
- data/solr/conf/xslt/example_rss.xsl +66 -0
- data/solr/conf/xslt/luke.xsl +337 -0
- data/tasks/arclight.rake +72 -0
- data/template.rb +10 -0
- metadata +432 -20
- data/.travis.yml +0 -5
data/.rubocop.yml
ADDED
|
@@ -0,0 +1,362 @@
|
|
|
1
|
+
require:
|
|
2
|
+
- rubocop-rspec
|
|
3
|
+
- rubocop-rails
|
|
4
|
+
- rubocop-rake
|
|
5
|
+
|
|
6
|
+
inherit_from:
|
|
7
|
+
- .rubocop_todo.yml
|
|
8
|
+
|
|
9
|
+
AllCops:
|
|
10
|
+
Exclude:
|
|
11
|
+
- '.internal_test_app/**/*'
|
|
12
|
+
- 'bin/**/*'
|
|
13
|
+
- 'db/**/*'
|
|
14
|
+
- 'lib/generators/arclight/templates/**/*'
|
|
15
|
+
- 'vendor/**/*'
|
|
16
|
+
- 'node_modules/**/*'
|
|
17
|
+
TargetRubyVersion: 3.0
|
|
18
|
+
DisplayCopNames: true
|
|
19
|
+
|
|
20
|
+
Metrics/ModuleLength:
|
|
21
|
+
Exclude:
|
|
22
|
+
- 'app/helpers/arclight_helper.rb'
|
|
23
|
+
- 'app/models/concerns/arclight/solr_document.rb'
|
|
24
|
+
|
|
25
|
+
Metrics/BlockLength:
|
|
26
|
+
Exclude:
|
|
27
|
+
- 'arclight.gemspec'
|
|
28
|
+
- 'lib/arclight/traject/ead2_config.rb'
|
|
29
|
+
- 'lib/tasks/**/*'
|
|
30
|
+
- 'spec/features/traject/ead2_indexing_spec.rb'
|
|
31
|
+
- 'spec/helpers/arclight_helper_spec.rb'
|
|
32
|
+
- 'spec/features/collection_page_spec.rb'
|
|
33
|
+
- 'spec/**/*'
|
|
34
|
+
- 'tasks/**/*'
|
|
35
|
+
|
|
36
|
+
Naming/PredicateName:
|
|
37
|
+
ForbiddenPrefixes:
|
|
38
|
+
- _is
|
|
39
|
+
|
|
40
|
+
Layout/LineLength:
|
|
41
|
+
Max: 160
|
|
42
|
+
|
|
43
|
+
Rails:
|
|
44
|
+
Enabled: true
|
|
45
|
+
|
|
46
|
+
Bundler/DuplicatedGem:
|
|
47
|
+
Enabled: false
|
|
48
|
+
|
|
49
|
+
Style/FormatStringToken:
|
|
50
|
+
Exclude:
|
|
51
|
+
- 'spec/test_app_templates/lib/generators/test_app_generator.rb'
|
|
52
|
+
|
|
53
|
+
Gemspec/DeprecatedAttributeAssignment: # new in 1.30
|
|
54
|
+
Enabled: true
|
|
55
|
+
Gemspec/RequireMFA: # new in 1.23
|
|
56
|
+
Enabled: false
|
|
57
|
+
Layout/LineContinuationLeadingSpace: # new in 1.31
|
|
58
|
+
Enabled: true
|
|
59
|
+
Layout/LineContinuationSpacing: # new in 1.31
|
|
60
|
+
Enabled: true
|
|
61
|
+
Layout/LineEndStringConcatenationIndentation: # new in 1.18
|
|
62
|
+
Enabled: true
|
|
63
|
+
Layout/SpaceBeforeBrackets: # new in 1.7
|
|
64
|
+
Enabled: true
|
|
65
|
+
Lint/AmbiguousAssignment: # new in 1.7
|
|
66
|
+
Enabled: true
|
|
67
|
+
Lint/AmbiguousOperatorPrecedence: # new in 1.21
|
|
68
|
+
Enabled: true
|
|
69
|
+
Lint/AmbiguousRange: # new in 1.19
|
|
70
|
+
Enabled: true
|
|
71
|
+
Lint/ConstantOverwrittenInRescue: # new in 1.31
|
|
72
|
+
Enabled: true
|
|
73
|
+
Lint/DeprecatedConstants: # new in 1.8
|
|
74
|
+
Enabled: true
|
|
75
|
+
Lint/DuplicateBranch: # new in 1.3
|
|
76
|
+
Enabled: true
|
|
77
|
+
Lint/DuplicateRegexpCharacterClassElement: # new in 1.1
|
|
78
|
+
Enabled: true
|
|
79
|
+
Lint/EmptyBlock: # new in 1.1
|
|
80
|
+
Enabled: true
|
|
81
|
+
Lint/EmptyClass: # new in 1.3
|
|
82
|
+
Enabled: true
|
|
83
|
+
Lint/EmptyInPattern: # new in 1.16
|
|
84
|
+
Enabled: true
|
|
85
|
+
Lint/IncompatibleIoSelectWithFiberScheduler: # new in 1.21
|
|
86
|
+
Enabled: true
|
|
87
|
+
Lint/LambdaWithoutLiteralBlock: # new in 1.8
|
|
88
|
+
Enabled: true
|
|
89
|
+
Lint/NoReturnInBeginEndBlocks: # new in 1.2
|
|
90
|
+
Enabled: true
|
|
91
|
+
Lint/NonAtomicFileOperation: # new in 1.31
|
|
92
|
+
Enabled: true
|
|
93
|
+
Lint/NumberedParameterAssignment: # new in 1.9
|
|
94
|
+
Enabled: true
|
|
95
|
+
Lint/OrAssignmentToConstant: # new in 1.9
|
|
96
|
+
Enabled: true
|
|
97
|
+
Lint/RedundantDirGlobSort: # new in 1.8
|
|
98
|
+
Enabled: true
|
|
99
|
+
Lint/RefinementImportMethods: # new in 1.27
|
|
100
|
+
Enabled: true
|
|
101
|
+
Lint/RequireRangeParentheses: # new in 1.32
|
|
102
|
+
Enabled: true
|
|
103
|
+
Lint/RequireRelativeSelfPath: # new in 1.22
|
|
104
|
+
Enabled: true
|
|
105
|
+
Lint/SymbolConversion: # new in 1.9
|
|
106
|
+
Enabled: true
|
|
107
|
+
Lint/ToEnumArguments: # new in 1.1
|
|
108
|
+
Enabled: true
|
|
109
|
+
Lint/TripleQuotes: # new in 1.9
|
|
110
|
+
Enabled: true
|
|
111
|
+
Lint/UnexpectedBlockArity: # new in 1.5
|
|
112
|
+
Enabled: true
|
|
113
|
+
Lint/UnmodifiedReduceAccumulator: # new in 1.1
|
|
114
|
+
Enabled: true
|
|
115
|
+
Lint/UselessRuby2Keywords: # new in 1.23
|
|
116
|
+
Enabled: true
|
|
117
|
+
Naming/BlockForwarding: # new in 1.24
|
|
118
|
+
Enabled: true
|
|
119
|
+
Security/CompoundHash: # new in 1.28
|
|
120
|
+
Enabled: true
|
|
121
|
+
Security/IoMethods: # new in 1.22
|
|
122
|
+
Enabled: true
|
|
123
|
+
Style/ArgumentsForwarding: # new in 1.1
|
|
124
|
+
Enabled: true
|
|
125
|
+
Style/CollectionCompact: # new in 1.2
|
|
126
|
+
Enabled: true
|
|
127
|
+
Style/DocumentDynamicEvalDefinition: # new in 1.1
|
|
128
|
+
Enabled: true
|
|
129
|
+
Style/EmptyHeredoc: # new in 1.32
|
|
130
|
+
Enabled: true
|
|
131
|
+
Style/EndlessMethod: # new in 1.8
|
|
132
|
+
Enabled: true
|
|
133
|
+
Style/EnvHome: # new in 1.29
|
|
134
|
+
Enabled: true
|
|
135
|
+
Style/FetchEnvVar: # new in 1.28
|
|
136
|
+
Enabled: true
|
|
137
|
+
Style/FileRead: # new in 1.24
|
|
138
|
+
Enabled: true
|
|
139
|
+
Style/FileWrite: # new in 1.24
|
|
140
|
+
Enabled: true
|
|
141
|
+
Style/HashConversion: # new in 1.10
|
|
142
|
+
Enabled: true
|
|
143
|
+
Style/HashExcept: # new in 1.7
|
|
144
|
+
Enabled: true
|
|
145
|
+
Style/IfWithBooleanLiteralBranches: # new in 1.9
|
|
146
|
+
Enabled: true
|
|
147
|
+
Style/InPatternThen: # new in 1.16
|
|
148
|
+
Enabled: true
|
|
149
|
+
Style/MagicCommentFormat: # new in 1.35
|
|
150
|
+
Enabled: true
|
|
151
|
+
Style/MapCompactWithConditionalBlock: # new in 1.30
|
|
152
|
+
Enabled: true
|
|
153
|
+
Style/MapToHash: # new in 1.24
|
|
154
|
+
Enabled: true
|
|
155
|
+
Style/MultilineInPatternThen: # new in 1.16
|
|
156
|
+
Enabled: true
|
|
157
|
+
Style/NegatedIfElseCondition: # new in 1.2
|
|
158
|
+
Enabled: true
|
|
159
|
+
Style/NestedFileDirname: # new in 1.26
|
|
160
|
+
Enabled: true
|
|
161
|
+
Style/NilLambda: # new in 1.3
|
|
162
|
+
Enabled: true
|
|
163
|
+
Style/NumberedParameters: # new in 1.22
|
|
164
|
+
Enabled: true
|
|
165
|
+
Style/NumberedParametersLimit: # new in 1.22
|
|
166
|
+
Enabled: true
|
|
167
|
+
Style/ObjectThen: # new in 1.28
|
|
168
|
+
Enabled: true
|
|
169
|
+
Style/OpenStructUse: # new in 1.23
|
|
170
|
+
Enabled: true
|
|
171
|
+
Style/QuotedSymbols: # new in 1.16
|
|
172
|
+
Enabled: true
|
|
173
|
+
Style/RedundantArgument: # new in 1.4
|
|
174
|
+
Enabled: true
|
|
175
|
+
Style/RedundantInitialize: # new in 1.27
|
|
176
|
+
Enabled: true
|
|
177
|
+
Style/RedundantSelfAssignmentBranch: # new in 1.19
|
|
178
|
+
Enabled: true
|
|
179
|
+
Style/SelectByRegexp: # new in 1.22
|
|
180
|
+
Enabled: true
|
|
181
|
+
Style/StringChars: # new in 1.12
|
|
182
|
+
Enabled: true
|
|
183
|
+
Style/SwapValues: # new in 1.1
|
|
184
|
+
Enabled: true
|
|
185
|
+
RSpec/BeEq: # new in 2.9.0
|
|
186
|
+
Enabled: true
|
|
187
|
+
RSpec/BeNil: # new in 2.9.0
|
|
188
|
+
Enabled: true
|
|
189
|
+
RSpec/ChangeByZero: # new in 2.11
|
|
190
|
+
Enabled: true
|
|
191
|
+
RSpec/ClassCheck: # new in 2.13
|
|
192
|
+
Enabled: true
|
|
193
|
+
RSpec/ExcessiveDocstringSpacing: # new in 2.5
|
|
194
|
+
Enabled: true
|
|
195
|
+
RSpec/IdenticalEqualityAssertion: # new in 2.4
|
|
196
|
+
Enabled: true
|
|
197
|
+
RSpec/NoExpectationExample: # new in 2.13
|
|
198
|
+
Enabled: true
|
|
199
|
+
RSpec/SubjectDeclaration: # new in 2.5
|
|
200
|
+
Enabled: true
|
|
201
|
+
RSpec/VerifiedDoubleReference: # new in 2.10.0
|
|
202
|
+
Enabled: true
|
|
203
|
+
Capybara/SpecificFinders: # new in 2.13
|
|
204
|
+
Enabled: true
|
|
205
|
+
Capybara/SpecificMatcher: # new in 2.12
|
|
206
|
+
Enabled: true
|
|
207
|
+
RSpec/FactoryBot/SyntaxMethods: # new in 2.7
|
|
208
|
+
Enabled: true
|
|
209
|
+
RSpec/Rails/AvoidSetupHook: # new in 2.4
|
|
210
|
+
Enabled: true
|
|
211
|
+
RSpec/Rails/HaveHttpStatus: # new in 2.12
|
|
212
|
+
Enabled: true
|
|
213
|
+
Rails/ActionControllerFlashBeforeRender: # new in 2.16
|
|
214
|
+
Enabled: true
|
|
215
|
+
Rails/ActionControllerTestCase: # new in 2.14
|
|
216
|
+
Enabled: true
|
|
217
|
+
Rails/ActiveRecordCallbacksOrder: # new in 2.7
|
|
218
|
+
Enabled: true
|
|
219
|
+
Rails/ActiveSupportOnLoad: # new in 2.16
|
|
220
|
+
Enabled: true
|
|
221
|
+
Rails/AddColumnIndex: # new in 2.11
|
|
222
|
+
Enabled: true
|
|
223
|
+
Rails/AfterCommitOverride: # new in 2.8
|
|
224
|
+
Enabled: true
|
|
225
|
+
Rails/AttributeDefaultBlockValue: # new in 2.9
|
|
226
|
+
Enabled: true
|
|
227
|
+
Rails/CompactBlank: # new in 2.13
|
|
228
|
+
Enabled: true
|
|
229
|
+
Rails/DeprecatedActiveModelErrorsMethods: # new in 2.14
|
|
230
|
+
Enabled: true
|
|
231
|
+
Rails/DotSeparatedKeys: # new in 2.15
|
|
232
|
+
Enabled: true
|
|
233
|
+
Rails/DuplicateAssociation: # new in 2.14
|
|
234
|
+
Enabled: true
|
|
235
|
+
Rails/DuplicateScope: # new in 2.14
|
|
236
|
+
Enabled: true
|
|
237
|
+
Rails/DurationArithmetic: # new in 2.13
|
|
238
|
+
Enabled: true
|
|
239
|
+
Rails/EagerEvaluationLogMessage: # new in 2.11
|
|
240
|
+
Enabled: true
|
|
241
|
+
Rails/ExpandedDateRange: # new in 2.11
|
|
242
|
+
Enabled: true
|
|
243
|
+
Rails/FindById: # new in 2.7
|
|
244
|
+
Enabled: true
|
|
245
|
+
Rails/FreezeTime: # new in 2.16
|
|
246
|
+
Enabled: true
|
|
247
|
+
Rails/I18nLazyLookup: # new in 2.14
|
|
248
|
+
Enabled: true
|
|
249
|
+
Rails/I18nLocaleAssignment: # new in 2.11
|
|
250
|
+
Enabled: true
|
|
251
|
+
Rails/I18nLocaleTexts: # new in 2.14
|
|
252
|
+
Enabled: true
|
|
253
|
+
Rails/Inquiry: # new in 2.7
|
|
254
|
+
Enabled: true
|
|
255
|
+
Rails/MailerName: # new in 2.7
|
|
256
|
+
Enabled: true
|
|
257
|
+
Rails/MatchRoute: # new in 2.7
|
|
258
|
+
Enabled: true
|
|
259
|
+
Rails/MigrationClassName: # new in 2.14
|
|
260
|
+
Enabled: true
|
|
261
|
+
Rails/NegateInclude: # new in 2.7
|
|
262
|
+
Enabled: true
|
|
263
|
+
Rails/Pluck: # new in 2.7
|
|
264
|
+
Enabled: true
|
|
265
|
+
Rails/PluckInWhere: # new in 2.7
|
|
266
|
+
Enabled: true
|
|
267
|
+
Rails/RedundantPresenceValidationOnBelongsTo: # new in 2.13
|
|
268
|
+
Enabled: true
|
|
269
|
+
Rails/RedundantTravelBack: # new in 2.12
|
|
270
|
+
Enabled: true
|
|
271
|
+
Rails/RenderInline: # new in 2.7
|
|
272
|
+
Enabled: true
|
|
273
|
+
Rails/RenderPlainText: # new in 2.7
|
|
274
|
+
Enabled: true
|
|
275
|
+
Rails/RootJoinChain: # new in 2.13
|
|
276
|
+
Enabled: true
|
|
277
|
+
Rails/RootPathnameMethods: # new in 2.16
|
|
278
|
+
Enabled: true
|
|
279
|
+
Rails/RootPublicPath: # new in 2.15
|
|
280
|
+
Enabled: true
|
|
281
|
+
Rails/ShortI18n: # new in 2.7
|
|
282
|
+
Enabled: true
|
|
283
|
+
Rails/SquishedSQLHeredocs: # new in 2.8
|
|
284
|
+
Enabled: true
|
|
285
|
+
Rails/StripHeredoc: # new in 2.15
|
|
286
|
+
Enabled: true
|
|
287
|
+
Rails/TimeZoneAssignment: # new in 2.10
|
|
288
|
+
Enabled: true
|
|
289
|
+
Rails/ToFormattedS: # new in 2.15
|
|
290
|
+
Enabled: true
|
|
291
|
+
Rails/ToSWithArgument: # new in 2.16
|
|
292
|
+
Enabled: true
|
|
293
|
+
Rails/TopLevelHashWithIndifferentAccess: # new in 2.16
|
|
294
|
+
Enabled: true
|
|
295
|
+
Rails/TransactionExitStatement: # new in 2.14
|
|
296
|
+
Enabled: true
|
|
297
|
+
Rails/UnusedIgnoredColumns: # new in 2.11
|
|
298
|
+
Enabled: true
|
|
299
|
+
Rails/WhereEquals: # new in 2.9
|
|
300
|
+
Enabled: true
|
|
301
|
+
Rails/WhereExists: # new in 2.7
|
|
302
|
+
Enabled: true
|
|
303
|
+
Rails/WhereMissing: # new in 2.16
|
|
304
|
+
Enabled: true
|
|
305
|
+
Rails/WhereNot: # new in 2.8
|
|
306
|
+
Enabled: true
|
|
307
|
+
Lint/DuplicateMagicComment: # new in 1.37
|
|
308
|
+
Enabled: true
|
|
309
|
+
Style/OperatorMethodCall: # new in 1.37
|
|
310
|
+
Enabled: true
|
|
311
|
+
Style/RedundantEach: # new in 1.38
|
|
312
|
+
Enabled: true
|
|
313
|
+
Style/RedundantStringEscape: # new in 1.37
|
|
314
|
+
Enabled: true
|
|
315
|
+
RSpec/SortMetadata: # new in 2.14
|
|
316
|
+
Enabled: true
|
|
317
|
+
Capybara/NegationMatcher: # new in 2.14
|
|
318
|
+
Enabled: true
|
|
319
|
+
Capybara/SpecificActions: # new in 2.14
|
|
320
|
+
Enabled: true
|
|
321
|
+
RSpec/FactoryBot/ConsistentParenthesesStyle: # new in 2.14
|
|
322
|
+
Enabled: false # https://github.com/rspec/rspec-rails/issues/2635
|
|
323
|
+
RSpec/Rails/InferredSpecType: # new in 2.14
|
|
324
|
+
Enabled: true
|
|
325
|
+
Rails/ActionOrder: # new in 2.17
|
|
326
|
+
Enabled: true
|
|
327
|
+
Rails/IgnoredColumnsAssignment: # new in 2.17
|
|
328
|
+
Enabled: true
|
|
329
|
+
Rails/WhereNotWithMultipleConditions: # new in 2.17
|
|
330
|
+
Enabled: true
|
|
331
|
+
Gemspec/DevelopmentDependencies: # new in 1.44
|
|
332
|
+
Enabled: true
|
|
333
|
+
Lint/UselessRescue: # new in 1.43
|
|
334
|
+
Enabled: true
|
|
335
|
+
Style/ArrayIntersect: # new in 1.40
|
|
336
|
+
Enabled: true
|
|
337
|
+
Style/ComparableClamp: # new in 1.44
|
|
338
|
+
Enabled: true
|
|
339
|
+
Style/ConcatArrayLiterals: # new in 1.41
|
|
340
|
+
Enabled: true
|
|
341
|
+
Style/MapToSet: # new in 1.42
|
|
342
|
+
Enabled: true
|
|
343
|
+
Style/MinMaxComparison: # new in 1.42
|
|
344
|
+
Enabled: true
|
|
345
|
+
Style/RedundantConstantBase: # new in 1.40
|
|
346
|
+
Enabled: true
|
|
347
|
+
Style/RedundantDoubleSplatHashBraces: # new in 1.41
|
|
348
|
+
Enabled: true
|
|
349
|
+
Style/RedundantHeredocDelimiterQuotes: # new in 1.45
|
|
350
|
+
Enabled: true
|
|
351
|
+
Capybara/MatchStyle: # new in 2.17
|
|
352
|
+
Enabled: true
|
|
353
|
+
RSpec/DuplicatedMetadata: # new in 2.16
|
|
354
|
+
Enabled: true
|
|
355
|
+
RSpec/PendingWithoutReason: # new in 2.16
|
|
356
|
+
Enabled: true
|
|
357
|
+
RSpec/FactoryBot/FactoryNameStyle: # new in 2.16
|
|
358
|
+
Enabled: false # https://github.com/rubocop/rubocop-rspec/issues/1587
|
|
359
|
+
RSpec/Rails/MinitestAssertions: # new in 2.17
|
|
360
|
+
Enabled: true
|
|
361
|
+
Rails/ResponseParsedBody: # new in 2.18
|
|
362
|
+
Enabled: true
|
data/.rubocop_todo.yml
ADDED
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
# This configuration was generated by
|
|
2
|
+
# `rubocop --auto-gen-config`
|
|
3
|
+
# on 2023-02-27 17:35:23 UTC using RuboCop version 1.46.0.
|
|
4
|
+
# The point is for the user to remove these configuration records
|
|
5
|
+
# one by one as the offenses are removed from the code base.
|
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
|
8
|
+
|
|
9
|
+
# Offense count: 10
|
|
10
|
+
# Configuration parameters: EnforcedStyle, AllowedGems, Include.
|
|
11
|
+
# SupportedStyles: Gemfile, gems.rb, gemspec
|
|
12
|
+
# Include: **/*.gemspec, **/Gemfile, **/gems.rb
|
|
13
|
+
Gemspec/DevelopmentDependencies:
|
|
14
|
+
Exclude:
|
|
15
|
+
- 'arclight.gemspec'
|
|
16
|
+
|
|
17
|
+
# Offense count: 1
|
|
18
|
+
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
|
|
19
|
+
Metrics/AbcSize:
|
|
20
|
+
Max: 19
|
|
21
|
+
|
|
22
|
+
# Offense count: 1
|
|
23
|
+
# Configuration parameters: AllowedMethods, AllowedPatterns.
|
|
24
|
+
Metrics/CyclomaticComplexity:
|
|
25
|
+
Max: 8
|
|
26
|
+
|
|
27
|
+
# Offense count: 3
|
|
28
|
+
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
|
|
29
|
+
Metrics/MethodLength:
|
|
30
|
+
Max: 11
|
|
31
|
+
|
|
32
|
+
# Offense count: 2
|
|
33
|
+
# Configuration parameters: AllowedMethods, AllowedPatterns.
|
|
34
|
+
Metrics/PerceivedComplexity:
|
|
35
|
+
Max: 9
|
|
36
|
+
|
|
37
|
+
# Offense count: 60
|
|
38
|
+
# Configuration parameters: Prefixes, AllowedPatterns.
|
|
39
|
+
# Prefixes: when, with, without
|
|
40
|
+
RSpec/ContextWording:
|
|
41
|
+
Enabled: false
|
|
42
|
+
|
|
43
|
+
# Offense count: 1
|
|
44
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
45
|
+
# Configuration parameters: SkipBlocks, EnforcedStyle.
|
|
46
|
+
# SupportedStyles: described_class, explicit
|
|
47
|
+
RSpec/DescribedClass:
|
|
48
|
+
Exclude:
|
|
49
|
+
- 'spec/presenters/arclight/show_presenter_spec.rb'
|
|
50
|
+
|
|
51
|
+
# Offense count: 60
|
|
52
|
+
# Configuration parameters: CountAsOne.
|
|
53
|
+
RSpec/ExampleLength:
|
|
54
|
+
Max: 49
|
|
55
|
+
|
|
56
|
+
# Offense count: 112
|
|
57
|
+
RSpec/MultipleExpectations:
|
|
58
|
+
Max: 22
|
|
59
|
+
|
|
60
|
+
# Offense count: 37
|
|
61
|
+
# Configuration parameters: AllowSubject.
|
|
62
|
+
RSpec/MultipleMemoizedHelpers:
|
|
63
|
+
Max: 10
|
|
64
|
+
|
|
65
|
+
# Offense count: 22
|
|
66
|
+
# Configuration parameters: AllowedGroups.
|
|
67
|
+
RSpec/NestedGroups:
|
|
68
|
+
Max: 5
|
|
69
|
+
|
|
70
|
+
# Offense count: 2
|
|
71
|
+
RSpec/PendingWithoutReason:
|
|
72
|
+
Exclude:
|
|
73
|
+
- 'spec/features/document_tools_spec.rb'
|
|
74
|
+
- 'spec/features/google_form_request_spec.rb'
|
|
75
|
+
|
|
76
|
+
# Offense count: 5
|
|
77
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
78
|
+
# Configuration parameters: Strict, EnforcedStyle, AllowedExplicitMatchers.
|
|
79
|
+
# SupportedStyles: inflected, explicit
|
|
80
|
+
RSpec/PredicateMatcher:
|
|
81
|
+
Exclude:
|
|
82
|
+
- 'spec/helpers/arclight_helper_spec.rb'
|
|
83
|
+
- 'spec/lib/arclight/year_range_spec.rb'
|
|
84
|
+
|
|
85
|
+
# Offense count: 1
|
|
86
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
87
|
+
# Configuration parameters: NilOrEmpty, NotPresent, UnlessPresent.
|
|
88
|
+
Rails/Blank:
|
|
89
|
+
Exclude:
|
|
90
|
+
- 'lib/arclight/repository.rb'
|
|
91
|
+
|
|
92
|
+
# Offense count: 1
|
|
93
|
+
# Configuration parameters: Include.
|
|
94
|
+
# Include: app/helpers/**/*.rb
|
|
95
|
+
Rails/HelperInstanceVariable:
|
|
96
|
+
Exclude:
|
|
97
|
+
- 'app/helpers/arclight_helper.rb'
|
|
98
|
+
|
|
99
|
+
# Offense count: 1
|
|
100
|
+
Rails/OutputSafety:
|
|
101
|
+
Exclude:
|
|
102
|
+
- 'app/helpers/arclight/field_config_helpers.rb'
|
|
103
|
+
|
|
104
|
+
# Offense count: 6
|
|
105
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
106
|
+
# Configuration parameters: Include.
|
|
107
|
+
# Include: **/Rakefile, **/*.rake
|
|
108
|
+
Rails/RakeEnvironment:
|
|
109
|
+
Exclude:
|
|
110
|
+
- 'lib/tasks/index.rake'
|
|
111
|
+
- 'tasks/arclight.rake'
|
|
112
|
+
|
|
113
|
+
# Offense count: 1
|
|
114
|
+
Security/Open:
|
|
115
|
+
Exclude:
|
|
116
|
+
- 'lib/tasks/index.rake'
|
|
117
|
+
|
|
118
|
+
# Offense count: 1
|
|
119
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
120
|
+
Style/RedundantConstantBase:
|
|
121
|
+
Exclude:
|
|
122
|
+
- 'spec/spec_helper.rb'
|
data/.solr_wrapper
ADDED
data/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
## Contributing
|
|
2
|
+
|
|
3
|
+
ArcLight is a collaborative open source project where contributions are welcome. This contributing guide is borrowed in part from the [GeoBlacklight Contributing Guide](https://github.com/geoblacklight/geoblacklight/blob/main/CONTRIBUTING.md).
|
|
4
|
+
|
|
5
|
+
### Reporting issues
|
|
6
|
+
|
|
7
|
+
Did you find a bug in ArcLight or interested in a new feature? Please make sure to add an issue for it in the [issue tracker](https://github.com/projectblacklight/arclight/issues) as follows:
|
|
8
|
+
|
|
9
|
+
- Make sure you have a [GitHub account](https://github.com/signup/free)
|
|
10
|
+
- Submit a new [Github issue](https://github.com/projectblacklight/arclight/issues) by:
|
|
11
|
+
- Clearly describing the issue
|
|
12
|
+
- Provide a descriptive summary
|
|
13
|
+
- Explain the expected behavior
|
|
14
|
+
- Explain the actual behavior
|
|
15
|
+
- Provide steps to reproduce the actual behavior
|
|
16
|
+
|
|
17
|
+
### Contributing code or documentation
|
|
18
|
+
|
|
19
|
+
ArcLight also welcomes code and documentation contributions. We follow the [pull request](https://help.github.com/articles/using-pull-requests/) model for contributing on GitHub.
|
|
20
|
+
|
|
21
|
+
#### Pull request overview
|
|
22
|
+
|
|
23
|
+
1. Fork it ( http://github.com/projectblacklight/arclight/fork )
|
|
24
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
25
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
26
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
|
27
|
+
5. Create new Pull Request
|
|
28
|
+
|
|
29
|
+
#### Merging Changes
|
|
30
|
+
|
|
31
|
+
Here are some general rules to follow for merging pull requests.
|
|
32
|
+
|
|
33
|
+
- It is considered "poor form" to merge your own request.
|
|
34
|
+
- Please take the time to review the changes and get a sense of what is being changed. Things to consider:
|
|
35
|
+
- Does the commit message explain what is going on?
|
|
36
|
+
- Does the code changes have tests? _Not all changes need new tests, some changes are refactorings_
|
|
37
|
+
- Do all new methods, modules, and classes have comments? Do changed methods, modules, and classes have comments?
|
|
38
|
+
- Does the commit contain more than it should? Are two separate concerns being addressed in one commit?
|
|
39
|
+
- Did the Travis tests complete successfully?
|
|
40
|
+
- If you are uncertain, bring other contributors into the conversation by creating a comment that includes their `@username`.
|
|
41
|
+
- If you like the pull request, but want others to chime in, create a +1 comment and tag a user.
|
|
42
|
+
|
|
43
|
+
If you wish to ask questions or participate further, see our general [README](https://github.com/projectblacklight/arclight/blob/main/README.md).
|
data/CONTRIBUTORS.md
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
## Contributors β¨
|
|
2
|
+
|
|
3
|
+
ArcLight is a cross-institutional project led by Stanford University, with contributions from Duke University, Georgia Tech, Indiana University, LYRASIS, the National Library of Medicine, University of Michigan, Princeton University, and Rockefeller Archive Center.
|
|
4
|
+
|
|
5
|
+
Individual project contributors include ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
|
6
|
+
|
|
7
|
+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
|
8
|
+
<!-- prettier-ignore-start -->
|
|
9
|
+
<!-- markdownlint-disable -->
|
|
10
|
+
<table>
|
|
11
|
+
<tr>
|
|
12
|
+
<td align="center"><a href="https://github.com/seanaery"><img src="https://avatars3.githubusercontent.com/u/3933756?v=4" width="125px;" alt="Sean Aery"/><br /><sub><b>Sean Aery</b></sub></a><br /><a href="https://github.com/projectblacklight/arclight/commits?author=seanaery" title="Code">π»</a></td>
|
|
13
|
+
<td align="center"><a href="http://hillelarnold.com"><img src="https://avatars0.githubusercontent.com/u/607621?v=4" width="125px;" alt="Hillel Arnold"/><br /><sub><b>Hillel Arnold</b></sub></a><br /><a href="#analysis-helrond" title="Functional requirements and related research">π¬</a> <a href="#userTesting-helrond" title="User Testing">π</a></td>
|
|
14
|
+
<td align="center"><a href="http://cbeer.info"><img src="https://avatars1.githubusercontent.com/u/111218?v=4" width="125px;" alt="Chris Beer"/><br /><sub><b>Chris Beer</b></sub></a><br /><a href="https://github.com/projectblacklight/arclight/commits?author=cbeer" title="Code">π»</a> <a href="https://github.com/projectblacklight/arclight/commits?author=cbeer" title="Documentation">π</a></td>
|
|
15
|
+
<td align="center"><a href="http://leaannbradford.com"><img src="https://avatars3.githubusercontent.com/u/18175797?v=4" width="125px;" alt="Lea Ann Bradford"/><br /><sub><b>Lea Ann Bradford</b></sub></a><br /><a href="https://github.com/projectblacklight/arclight/commits?author=labradford" title="Code">π»</a></td>
|
|
16
|
+
<td align="center"><a href="http://actspatial.com"><img src="https://avatars0.githubusercontent.com/u/9905193?v=4" width="125px;" alt="Christina Chortaria"/><br /><sub><b>Christina Chortaria</b></sub></a><br /><a href="https://github.com/projectblacklight/arclight/commits?author=christinach" title="Code">π»</a></td>
|
|
17
|
+
</tr>
|
|
18
|
+
<tr>
|
|
19
|
+
<td align="center"><a href="https://github.com/mark-cooper"><img src="https://avatars1.githubusercontent.com/u/551470?v=4" width="125px;" alt="Mark Cooper"/><br /><sub><b>Mark Cooper</b></sub></a><br /><a href="https://github.com/projectblacklight/arclight/commits?author=mark-cooper" title="Code">π»</a> <a href="#plugin-mark-cooper" title="Plugin/utility libraries">π</a></td>
|
|
20
|
+
<td align="center"><a href="http://knittles.ticklefish.org/"><img src="https://avatars3.githubusercontent.com/u/856924?v=4" width="125px;" alt="EsmΓ© Cowles"/><br /><sub><b>EsmΓ© Cowles</b></sub></a><br /><a href="#business-escowles" title="Business development">πΌ</a> <a href="#analysis-escowles" title="Functional requirements and related research">π¬</a></td>
|
|
21
|
+
<td align="center"><a href="https://github.com/tomcramer"><img src="https://avatars3.githubusercontent.com/u/1054837?v=4" width="125px;" alt="Tom Cramer"/><br /><sub><b>Tom Cramer</b></sub></a><br /><a href="#business-tomcramer" title="Business development">πΌ</a></td>
|
|
22
|
+
<td align="center"><a href="https://github.com/mdalmau"><img src="https://avatars0.githubusercontent.com/u/573273?v=4" width="125px;" alt="Michelle Dalmau"/><br /><sub><b>Michelle Dalmau</b></sub></a><br /><a href="#business-mdalmau" title="Business development">πΌ</a></td>
|
|
23
|
+
<td align="center"><a href="http://robotlibrarian.billdueber.com/"><img src="https://avatars0.githubusercontent.com/u/114006?v=4" width="125px;" alt="Bill Dueber"/><br /><sub><b>Bill Dueber</b></sub></a><br /><a href="#analysis-billdueber" title="Functional requirements and related research">π¬</a> <a href="https://github.com/projectblacklight/arclight/commits?author=billdueber" title="Code">π»</a></td>
|
|
24
|
+
</tr>
|
|
25
|
+
<tr>
|
|
26
|
+
<td align="center"><a href="https://github.com/jwd"><img src="https://avatars1.githubusercontent.com/u/842343?v=4" width="125px;" alt="Jon Dunn"/><br /><sub><b>Jon Dunn</b></sub></a><br /><a href="#business-jwd" title="Business development">πΌ</a></td>
|
|
27
|
+
<td align="center"><a href="https://github.com/eckardm"><img src="https://avatars1.githubusercontent.com/u/7072443?v=4" width="125px;" alt="Max Eckard"/><br /><sub><b>Max Eckard</b></sub></a><br /><a href="#analysis-eckardm" title="Functional requirements and related research">π¬</a> <a href="#productOwner-eckardm" title="Product owner">πΊ</a> <a href="#userTesting-eckardm" title="User Testing">π</a></td>
|
|
28
|
+
<td align="center"><a href="https://github.com/jrgriffiniii"><img src="https://avatars0.githubusercontent.com/u/1443986?v=4" width="125px;" alt="James R. Griffin III"/><br /><sub><b>James R. Griffin III</b></sub></a><br /><a href="https://github.com/projectblacklight/arclight/commits?author=jrgriffiniii" title="Code">π»</a></td>
|
|
29
|
+
<td align="center"><a href="https://github.com/p-galligan"><img src="https://avatars2.githubusercontent.com/u/2585069?v=4" width="125px;" alt="Patrick Galligan"/><br /><sub><b>Patrick Galligan</b></sub></a><br /><a href="#userTesting-p-galligan" title="User Testing">π</a></td>
|
|
30
|
+
<td align="center"><a href="http://ggeisler.com"><img src="https://avatars1.githubusercontent.com/u/101482?v=4" width="125px;" alt="Gary Geisler"/><br /><sub><b>Gary Geisler</b></sub></a><br /><a href="https://github.com/projectblacklight/arclight/commits?author=ggeisler" title="Code">π»</a> <a href="#design-ggeisler" title="Design">π¨</a></td>
|
|
31
|
+
</tr>
|
|
32
|
+
<tr>
|
|
33
|
+
<td align="center"><a href="https://github.com/bonniegee"><img src="https://avatars3.githubusercontent.com/u/8737364?v=4" width="125px;" alt="Bonnie Gordon"/><br /><sub><b>Bonnie Gordon</b></sub></a><br /><a href="#userTesting-bonniegee" title="User Testing">π</a></td>
|
|
34
|
+
<td align="center"><a href="https://github.com/mswendyh"><img src="https://avatars1.githubusercontent.com/u/7033667?v=4" width="125px;" alt="Wendy Hagenmaier"/><br /><sub><b>Wendy Hagenmaier</b></sub></a><br /><a href="#analysis-mswendyh" title="Functional requirements and related research">π¬</a></td>
|
|
35
|
+
<td align="center"><img src="http://gravatar.com/avatar/8b53dcb509d4b1fe8dd74da6a94395ef.jpg?d=retro" width="125px;" alt="Jim Halliday"/><br /><sub><b>Jim Halliday</b></sub><br /><a href="#business" title="Business development">πΌ</a></td>
|
|
36
|
+
<td align="center"><a href="https://github.com/jlhardes"><img src="https://avatars1.githubusercontent.com/u/3440166?v=4" width="125px;" alt="Julie Hardesty"/><br /><sub><b>Julie Hardesty</b></sub></a><br /><a href="#analysis-jlhardes" title="Functional requirements and related research">π¬</a> <a href="#productOwner-jlhardes" title="Product owner">πΊ</a></td>
|
|
37
|
+
<td align="center"><a href="http://stanford.edu/~drh"><img src="https://avatars3.githubusercontent.com/u/1861171?v=4" width="125px;" alt="Darren Hardy"/><br /><sub><b>Darren Hardy</b></sub></a><br /><a href="https://github.com/projectblacklight/arclight/commits?author=drh-stanford" title="Code">π»</a> <a href="https://github.com/projectblacklight/arclight/commits?author=drh-stanford" title="Documentation">π</a></td>
|
|
38
|
+
</tr>
|
|
39
|
+
<tr>
|
|
40
|
+
<td align="center"><a href="https://github.com/drhardy"><img src="https://avatars3.githubusercontent.com/u/25580222?v=4" width="125px;" alt="Darren Hardy"/><br /><sub><b>Darren Hardy</b></sub></a><br /><a href="https://github.com/projectblacklight/arclight/commits?author=drhardy" title="Code">π»</a></td>
|
|
41
|
+
<td align="center"><a href="https://github.com/regineheberlein"><img src="https://avatars1.githubusercontent.com/u/5940563?v=4" width="125px;" alt="Regine Heberlein"/><br /><sub><b>Regine Heberlein</b></sub></a><br /><a href="#analysis-regineheberlein" title="Functional requirements and related research">π¬</a> <a href="#productOwner-regineheberlein" title="Product owner">πΊ</a></td>
|
|
42
|
+
<td align="center"><a href="https://github.com/noahgh221"><img src="https://avatars3.githubusercontent.com/u/7328518?v=4" width="125px;" alt="Noah Huffman"/><br /><sub><b>Noah Huffman</b></sub></a><br /><a href="#analysis-noahgh221" title="Functional requirements and related research">π¬</a> <a href="#productOwner-noahgh221" title="Product owner">πΊ</a></td>
|
|
43
|
+
<td align="center"><a href="https://github.com/njaffer"><img src="https://avatars0.githubusercontent.com/u/12487929?v=4" width="125px;" alt="Nabeela Jaffer"/><br /><sub><b>Nabeela Jaffer</b></sub></a><br /><a href="#analysis-njaffer" title="Functional requirements and related research">π¬</a> <a href="#business-njaffer" title="Business development">πΌ</a></td>
|
|
44
|
+
<td align="center"><a href="https://github.com/jkeck"><img src="https://avatars0.githubusercontent.com/u/96776?v=4" width="125px;" alt="Jessie Keck"/><br /><sub><b>Jessie Keck</b></sub></a><br /><a href="https://github.com/projectblacklight/arclight/commits?author=jkeck" title="Code">π»</a> <a href="https://github.com/projectblacklight/arclight/commits?author=jkeck" title="Documentation">π</a></td>
|
|
45
|
+
</tr>
|
|
46
|
+
<tr>
|
|
47
|
+
<td align="center"><a href="https://github.com/gordonleacock"><img src="https://avatars3.githubusercontent.com/u/12927191?v=4" width="125px;" alt="Gordon Leacock"/><br /><sub><b>Gordon Leacock</b></sub></a><br /><a href="https://github.com/projectblacklight/arclight/commits?author=gordonleacock" title="Code">π»</a> <a href="https://github.com/projectblacklight/arclight/commits?author=gordonleacock" title="Documentation">π</a></td>
|
|
48
|
+
<td align="center"><a href="https://matienzo.org/"><img src="https://avatars0.githubusercontent.com/u/73732?v=4" width="125px;" alt="MarΓa A. Matienzo"/><br /><sub><b>MarΓa A. Matienzo</b></sub></a><br /><a href="#projectManagement-anarchivist" title="Project Management">π</a> <a href="#business-anarchivist" title="Business development">πΌ</a> <a href="#analysis-anarchivist" title="Functional requirements and related research">π¬</a> <a href="#productOwner-anarchivist" title="Product owner">πΊ</a></td>
|
|
49
|
+
<td align="center"><a href="https://github.com/archivistsarah"><img src="https://avatars0.githubusercontent.com/u/25084902?v=4" width="125px;" alt="Sarah Newhouse"/><br /><sub><b>Sarah Newhouse</b></sub></a><br /><a href="#analysis-archivistsarah" title="Functional requirements and related research">π¬</a></td>
|
|
50
|
+
<td align="center"><a href="https://github.com/grepcats"><img src="https://avatars0.githubusercontent.com/u/7513448?v=4" width="125px;" alt="Kayla Ondracek"/><br /><sub><b>Kayla Ondracek</b></sub></a><br /><a href="#analysis-grepcats" title="Functional requirements and related research">π¬</a></td>
|
|
51
|
+
<td align="center"><a href="https://github.com/djpillen"><img src="https://avatars3.githubusercontent.com/u/11635158?v=4" width="125px;" alt="Dallas Pillen"/><br /><sub><b>Dallas Pillen</b></sub></a><br /><a href="https://github.com/projectblacklight/arclight/commits?author=djpillen" title="Code">π»</a> <a href="#userTesting-djpillen" title="User Testing">π</a></td>
|
|
52
|
+
</tr>
|
|
53
|
+
<tr>
|
|
54
|
+
<td align="center"><a href="https://github.com/cmkpowell"><img src="https://avatars1.githubusercontent.com/u/16540397?v=4" width="125px;" alt="Chris Powell"/><br /><sub><b>Chris Powell</b></sub></a><br /><a href="#analysis-cmkpowell" title="Functional requirements and related research">π¬</a> <a href="#productOwner-cmkpowell" title="Product owner">πΊ</a></td>
|
|
55
|
+
<td align="center"><a href="https://www.jack-reed.com/"><img src="https://avatars0.githubusercontent.com/u/1656824?v=4" width="125px;" alt="Jack Reed"/><br /><sub><b>Jack Reed</b></sub></a><br /><a href="https://github.com/projectblacklight/arclight/commits?author=mejackreed" title="Code">π»</a> <a href="https://github.com/projectblacklight/arclight/commits?author=mejackreed" title="Documentation">π</a></td>
|
|
56
|
+
<td align="center"><a href="https://github.com/John-Rees"><img src="https://avatars1.githubusercontent.com/u/29233549?v=4" width="125px;" alt="John Rees"/><br /><sub><b>John Rees</b></sub></a><br /><a href="#analysis-John-Rees" title="Functional requirements and related research">π¬</a></td>
|
|
57
|
+
<td align="center"><a href="https://github.com/joshschneider"><img src="https://avatars3.githubusercontent.com/u/12468197?v=4" width="125px;" alt="Josh Schneider"/><br /><sub><b>Josh Schneider</b></sub></a><br /><a href="#analysis-joshschneider" title="Functional requirements and related research">π¬</a> <a href="#productOwner-joshschneider" title="Product owner">πΊ</a></td>
|
|
58
|
+
<td align="center"><a href="https://github.com/willsexton"><img src="https://avatars2.githubusercontent.com/u/1359320?v=4" width="125px;" alt="Will Sexton"/><br /><sub><b>Will Sexton</b></sub></a><br /><a href="#business-willsexton" title="Business development">πΌ</a></td>
|
|
59
|
+
</tr>
|
|
60
|
+
<tr>
|
|
61
|
+
<td align="center"><a href="https://github.com/shallcro"><img src="https://avatars2.githubusercontent.com/u/43279347?v=4" width="125px;" alt="Mike Shallcross"/><br /><sub><b>Mike Shallcross</b></sub></a><br /><a href="#analysis-shallcro" title="Functional requirements and related research">π¬</a></td>
|
|
62
|
+
<td align="center"><a href="https://github.com/remocrevo"><img src="https://avatars1.githubusercontent.com/u/8701105?v=4" width="125px;" alt="Remington Steed"/><br /><sub><b>Remington Steed</b></sub></a><br /><a href="https://github.com/projectblacklight/arclight/commits?author=remocrevo" title="Code">π»</a></td>
|
|
63
|
+
<td align="center"><a href="https://github.com/tampakis"><img src="https://avatars2.githubusercontent.com/u/4650153?v=4" width="125px;" alt="Nikitas Tampakis"/><br /><sub><b>Nikitas Tampakis</b></sub></a><br /><a href="#analysis-tampakis" title="Functional requirements and related research">π¬</a></td>
|
|
64
|
+
<td align="center"><a href="https://github.com/estelendur"><img src="https://avatars0.githubusercontent.com/u/10409866?v=4" width="125px;" alt="Esty Thomas"/><br /><sub><b>Esty Thomas</b></sub></a><br /><a href="https://github.com/projectblacklight/arclight/commits?author=estelendur" title="Code">π»</a></td>
|
|
65
|
+
<td align="center"><a href="http://camillevilla.github.io"><img src="https://avatars2.githubusercontent.com/u/5402927?v=4" width="125px;" alt="Camille Villa"/><br /><sub><b>Camille Villa</b></sub></a><br /><a href="https://github.com/projectblacklight/arclight/commits?author=camillevilla" title="Code">π»</a> <a href="https://github.com/projectblacklight/arclight/commits?author=camillevilla" title="Documentation">π</a></td>
|
|
66
|
+
</tr>
|
|
67
|
+
<tr>
|
|
68
|
+
<td align="center"><a href="https://github.com/jvine"><img src="https://avatars0.githubusercontent.com/u/6945691?v=4" width="125px;" alt="Jennifer Vine"/><br /><sub><b>Jennifer Vine</b></sub></a><br /><a href="#design-jvine" title="Design">π¨</a></td>
|
|
69
|
+
<td align="center"><a href="https://github.com/jweise"><img src="https://avatars2.githubusercontent.com/u/114413?v=4" width="125px;" alt="John Weise"/><br /><sub><b>John Weise</b></sub></a><br /><a href="#business-jweise" title="Business development">πΌ</a></td>
|
|
70
|
+
<td align="center"><a href="https://github.com/gwiedeman"><img src="https://avatars0.githubusercontent.com/u/10030353?v=4" width="125px;" alt="Gregory Wiedeman"/><br /><sub><b>Gregory Wiedeman</b></sub></a><br /><a href="https://github.com/projectblacklight/arclight/commits?author=gwiedeman" title="Code">π»</a> <a href="https://github.com/projectblacklight/arclight/issues?q=author%3Agwiedeman" title="Bug reports">π</a> <a href="#userTesting-gwiedeman" title="User Testing">π</a> <a href="#inProduction-gwiedeman" title="Has a production implementation">π</a></td>
|
|
71
|
+
<td align="center"><a href="https://github.com/lauraw15"><img src="https://avatars2.githubusercontent.com/u/6343788?v=4" width="125px;" alt="Laura Wilsey"/><br /><sub><b>Laura Wilsey</b></sub></a><br /><a href="#analysis-lauraw15" title="Functional requirements and related research">π¬</a></td>
|
|
72
|
+
</tr>
|
|
73
|
+
</table>
|
|
74
|
+
|
|
75
|
+
<!-- markdownlint-enable -->
|
|
76
|
+
<!-- prettier-ignore-end -->
|
|
77
|
+
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
|
78
|
+
|
|
79
|
+
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
|