blacklight-oembed 0.3.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,229 +1,91 @@
1
1
  <?xml version="1.0" encoding="UTF-8" ?>
2
- <!--
3
- Licensed to the Apache Software Foundation (ASF) under one or more
4
- contributor license agreements. See the NOTICE file distributed with
5
- this work for additional information regarding copyright ownership.
6
- The ASF licenses this file to You under the Apache License, Version 2.0
7
- (the "License"); you may not use this file except in compliance with
8
- the License. You may obtain a copy of the License at
9
-
10
- http://www.apache.org/licenses/LICENSE-2.0
11
-
12
- Unless required by applicable law or agreed to in writing, software
13
- distributed under the License is distributed on an "AS IS" BASIS,
14
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
- See the License for the specific language governing permissions and
16
- limitations under the License.
17
- -->
18
-
19
- <!--
20
- This is a stripped down config file used for a simple example...
21
- It is *not* a good example to work from.
22
- -->
23
2
  <config>
24
-
25
- <!-- Controls what version of Lucene various components of Solr
26
- adhere to. Generally, you want to use the latest version to
27
- get all bug fixes and improvements. It is highly recommended
28
- that you fully re-index after changing this setting as it can
29
- affect both how text is indexed and queried.
30
- -->
31
- <luceneMatchVersion>5.0.0</luceneMatchVersion>
32
-
33
- <lib dir="${solr.install.dir:../../../..}/contrib/analysis-extras/lib" />
34
- <lib dir="${solr.install.dir:../../../..}/contrib/analysis-extras/lucene-libs" />
35
-
36
- <directoryFactory name="DirectoryFactory"
37
- class="${solr.directoryFactory:solr.NRTCachingDirectoryFactory}">
38
- </directoryFactory>
39
-
40
- <codecFactory class="solr.SchemaCodecFactory"/>
3
+ <!-- NOTE: various comments and unused configuration possibilities have been purged
4
+ from this file. Please refer to http://wiki.apache.org/solr/SolrConfigXml,
5
+ as well as the default solrconfig file included with Solr -->
41
6
 
42
- <schemaFactory class="ClassicIndexSchemaFactory"/>
7
+ <abortOnConfigurationError>${solr.abortOnConfigurationError:true}</abortOnConfigurationError>
43
8
 
9
+ <luceneMatchVersion>6.1.0</luceneMatchVersion>
44
10
 
45
- <dataDir>${solr.blacklight-core.data.dir:}</dataDir>
46
-
47
- <requestDispatcher handleSelect="true" >
48
- <requestParsers enableRemoteStreaming="false" multipartUploadLimitInKB="2048" />
49
- </requestDispatcher>
50
-
51
- <requestHandler name="/analysis/field" startup="lazy" class="solr.FieldAnalysisRequestHandler" />
11
+ <directoryFactory name="DirectoryFactory" class="${solr.directoryFactory:solr.StandardDirectoryFactory}"/>
52
12
 
53
- <!-- config for the admin interface -->
54
- <admin>
55
- <defaultQuery>*:*</defaultQuery>
56
- </admin>
13
+ <updateHandler class="solr.DirectUpdateHandler2">
14
+ <updateLog>
15
+ <str name="dir">${solr.core0.data.dir:}</str>
16
+ </updateLog>
17
+ </updateHandler>
57
18
 
58
- <!-- SearchHandler
19
+ <!-- solr lib dirs -->
20
+ <lib dir="${solr.install.dir:../../../..}/contrib/analysis-extras/lib" />
21
+ <lib dir="${solr.install.dir:../../../..}/contrib/analysis-extras/lucene-libs" />
59
22
 
60
- http://wiki.apache.org/solr/SearchHandler
23
+ <dataDir>${solr.data.dir:}</dataDir>
61
24
 
62
- For processing Search Queries, the primary Request Handler
63
- provided with Solr is "SearchHandler" It delegates to a sequent
64
- of SearchComponents (see below) and supports distributed
65
- queries across multiple shards
66
- -->
67
25
  <requestHandler name="search" class="solr.SearchHandler" default="true">
68
26
  <!-- default values for query parameters can be specified, these
69
27
  will be overridden by parameters in the request
70
28
  -->
71
29
  <lst name="defaults">
72
- <str name="defType">dismax</str>
30
+ <str name="defType">edismax</str>
73
31
  <str name="echoParams">explicit</str>
74
- <int name="rows">10</int>
75
-
76
32
  <str name="q.alt">*:*</str>
77
33
  <str name="mm">2&lt;-1 5&lt;-2 6&lt;90%</str>
78
-
34
+ <int name="qs">1</int>
35
+ <int name="ps">2</int>
36
+ <float name="tie">0.01</float>
79
37
  <!-- this qf and pf are used by default, if not otherwise specified by
80
38
  client. The default blacklight_config will use these for the
81
- "keywords" search. See the author_qf/author_pf, title_qf, etc
39
+ "keywords" search. See the author_qf/author_pf, title_qf, etc
82
40
  below, which the default blacklight_config will specify for
83
41
  those searches. You may also be interested in:
84
42
  http://wiki.apache.org/solr/LocalParams
85
43
  -->
44
+ <str name="qf">
45
+ id
46
+ full_title_tsim
47
+ short_title_tsim
48
+ alternative_title_tsim
49
+ active_fedora_model_ssi
50
+ title_tsim
51
+ author_tsim
52
+ subject_tsim
53
+ all_text_timv
54
+ </str>
55
+ <str name="pf">
56
+ all_text_timv^10
57
+ </str>
86
58
 
87
- <str name="qf">
88
- title_unstem_search^100000
89
- subtitle_unstem_search^50000
90
- title_t^25000
91
- subtitle_t^10000
92
- title_addl_unstem_search^5000
93
- title_addl_t^2500
94
- title_added_entry_unstem_search^1500
95
- title_added_entry_t^1250
96
- subject_topic_unstem_search^1000
97
- subject_unstem_search^750
98
- subject_topic_facet^625
99
- subject_t^500
100
- author_unstem_search^250
101
- author_addl_unstem_search^250
102
- author_t^100
103
- author_addl_t^50
104
- subject_addl_unstem_search^250
105
- subject_addl_t^50
106
- title_series_unstem_search^25
107
- title_series_t^10
108
- isbn_t
109
- text
110
- </str>
111
- <str name="pf">
112
- title_unstem_search^1000000
113
- subtitle_unstem_search^500000
114
- title_t^250000
115
- subtitle_t^100000
116
- title_addl_unstem_search^50000
117
- title_addl_t^25000
118
- title_added_entry_unstem_search^15000
119
- title_added_entry_t^12500
120
- subject_topic_unstem_search^10000
121
- subject_unstem_search^7500
122
- subject_topic_facet^6250
123
- subject_t^5000
124
- author_unstem_search^2500
125
- author_addl_unstem_search^2500
126
- author_t^1000
127
- author_addl_t^500
128
- subject_addl_unstem_search^2500
129
- subject_addl_t^500
130
- title_series_unstem_search^250
131
- title_series_t^100
132
- text^10
133
- </str>
134
59
  <str name="author_qf">
135
- author_unstem_search^200
136
- author_addl_unstem_search^50
137
- author_t^20
138
- author_addl_t
60
+ author_tsim
139
61
  </str>
140
62
  <str name="author_pf">
141
- author_unstem_search^2000
142
- author_addl_unstem_search^500
143
- author_t^200
144
- author_addl_t^10
145
63
  </str>
146
64
  <str name="title_qf">
147
- title_unstem_search^50000
148
- subtitle_unstem_search^25000
149
- title_addl_unstem_search^10000
150
- title_t^5000
151
- subtitle_t^2500
152
- title_addl_t^100
153
- title_added_entry_unstem_search^50
154
- title_added_entry_t^10
155
- title_series_unstem_search^5
156
- title_series_t
65
+ title_tsim
66
+ full_title_tsim
67
+ short_title_tsim
68
+ alternative_title_tsim
157
69
  </str>
158
70
  <str name="title_pf">
159
- title_unstem_search^500000
160
- subtitle_unstem_search^250000
161
- title_addl_unstem_search^100000
162
- title_t^50000
163
- subtitle_t^25000
164
- title_addl_t^1000
165
- title_added_entry_unstem_search^500
166
- title_added_entry_t^100
167
- title_series_t^50
168
- title_series_unstem_search^10
169
71
  </str>
170
72
  <str name="subject_qf">
171
- subject_topic_unstem_search^200
172
- subject_unstem_search^125
173
- subject_topic_facet^100
174
- subject_t^50
175
- subject_addl_unstem_search^10
176
- subject_addl_t
73
+ subject_tsim
177
74
  </str>
178
75
  <str name="subject_pf">
179
- subject_topic_unstem_search^2000
180
- subject_unstem_search^1250
181
- subject_t^1000
182
- subject_topic_facet^500
183
- subject_addl_unstem_search^100
184
- subject_addl_t^10
185
76
  </str>
186
-
187
- <int name="ps">3</int>
188
- <float name="tie">0.01</float>
189
77
 
190
78
  <str name="fl">
191
- id,
192
- score,
193
- author_display,
194
- author_vern_display,
195
- format,
196
- isbn_t,
197
- language_facet,
198
- lc_callnum_display,
199
- material_type_display,
200
- published_display,
201
- published_vern_display,
202
- pub_date,
203
- title_display,
204
- title_vern_display,
205
- subject_topic_facet,
206
- subject_geo_facet,
207
- subject_era_facet,
208
- subtitle_display,
209
- subtitle_vern_display,
210
- url_fulltext_display,
211
- url_suppl_display,
212
- marc_display,
79
+ *,
80
+ score
213
81
  </str>
214
82
 
215
83
  <str name="facet">true</str>
216
84
  <str name="facet.mincount">1</str>
217
- <str name="facet.field">format</str>
218
- <str name="facet.field">lc_1letter_facet</str>
219
- <str name="facet.field">lc_alpha_facet</str>
220
- <str name="facet.field">lc_b4cutter_facet</str>
221
- <str name="facet.field">language_facet</str>
222
- <str name="facet.field">pub_date</str>
223
- <str name="facet.field">subject_era_facet</str>
224
- <str name="facet.field">subject_geo_facet</str>
225
- <str name="facet.field">subject_topic_facet</str>
226
-
85
+ <str name="facet.limit">10</str>
86
+ <str name="facet.field">active_fedora_model_ssi</str>
87
+ <str name="facet.field">subject_ssim</str>
88
+
227
89
  <str name="spellcheck">true</str>
228
90
  <str name="spellcheck.dictionary">default</str>
229
91
  <str name="spellcheck.onlyMorePopular">true</str>
@@ -232,81 +94,46 @@
232
94
  <str name="spellcheck.count">5</str>
233
95
 
234
96
  </lst>
235
- <!-- In addition to defaults, "appends" params can be specified
236
- to identify values which should be appended to the list of
237
- multi-val params from the query (or the existing "defaults").
238
- -->
239
- <!-- In this example, the param "fq=instock:true" would be appended to
240
- any query time fq params the user may specify, as a mechanism for
241
- partitioning the index, independent of any user selected filtering
242
- that may also be desired (perhaps as a result of faceted searching).
243
-
244
- NOTE: there is *absolutely* nothing a client can do to prevent these
245
- "appends" values from being used, so don't use this mechanism
246
- unless you are sure you always want it.
247
- -->
248
- <!--
249
- <lst name="appends">
250
- <str name="fq">inStock:true</str>
251
- </lst>
252
- -->
253
- <!-- "invariants" are a way of letting the Solr maintainer lock down
254
- the options available to Solr clients. Any params values
255
- specified here are used regardless of what values may be specified
256
- in either the query, the "defaults", or the "appends" params.
257
-
258
- In this example, the facet.field and facet.query params would
259
- be fixed, limiting the facets clients can use. Faceting is
260
- not turned on by default - but if the client does specify
261
- facet=true in the request, these are the only facets they
262
- will be able to see counts for; regardless of what other
263
- facet.field or facet.query params they may specify.
264
-
265
- NOTE: there is *absolutely* nothing a client can do to prevent these
266
- "invariants" values from being used, so don't use this mechanism
267
- unless you are sure you always want it.
268
- -->
269
- <!--
270
- <lst name="invariants">
271
- <str name="facet.field">cat</str>
272
- <str name="facet.field">manu_exact</str>
273
- <str name="facet.query">price:[* TO 500]</str>
274
- <str name="facet.query">price:[500 TO *]</str>
275
- </lst>
276
- -->
277
- <!-- If the default list of SearchComponents is not desired, that
278
- list can either be overridden completely, or components can be
279
- prepended or appended to the default list. (see below)
280
- -->
281
- <!--
282
- <arr name="components">
283
- <str>nameOfCustomComponent1</str>
284
- <str>nameOfCustomComponent2</str>
285
- </arr>
286
- -->
287
97
  <arr name="last-components">
288
98
  <str>spellcheck</str>
289
99
  </arr>
290
-
291
100
  </requestHandler>
292
101
 
293
- <!-- Spell Check
102
+ <requestHandler name="permissions" class="solr.SearchHandler" >
103
+ <lst name="defaults">
104
+ <str name="facet">off</str>
105
+ <str name="echoParams">all</str>
106
+ <str name="rows">1</str>
107
+ <str name="q">{!raw f=id v=$id}</str> <!-- use id=666 instead of q=id:666 -->
108
+ <str name="fl">
109
+ id,
110
+ access_ssim,
111
+ discover_access_group_ssim,discover_access_person_ssim,
112
+ read_access_group_ssim,read_access_person_ssim,
113
+ edit_access_group_ssim,edit_access_person_ssim,
114
+ depositor_ti,
115
+ embargo_release_date_dtsi
116
+ inheritable_access_ssim,
117
+ inheritable_discover_access_group_ssim,inheritable_discover_access_person_ssim,
118
+ inheritable_read_access_group_ssim,inheritable_read_access_person_ssim,
119
+ inheritable_edit_access_group_ssim,inheritable_edit_access_person_ssim,
120
+ inheritable_embargo_release_date_dtsi
121
+ </str>
122
+ </lst>
123
+ </requestHandler>
124
+
125
+ <requestHandler name="standard" class="solr.SearchHandler">
126
+ <lst name="defaults">
127
+ <str name="echoParams">explicit</str>
128
+ <str name="defType">lucene</str>
129
+ </lst>
130
+ </requestHandler>
294
131
 
295
- The spell check component can return a list of alternative spelling
296
- suggestions.
297
132
 
298
- http://wiki.apache.org/solr/SpellCheckComponent
299
- -->
300
133
  <searchComponent name="spellcheck" class="solr.SpellCheckComponent">
301
-
302
134
  <str name="queryAnalyzerFieldType">textSpell</str>
303
-
304
- <!-- Multiple "Spell Checkers" can be declared and used by this
305
- component
306
- -->
307
-
308
- <!-- a spellchecker built from a field of the main index, and
309
- written to disk
135
+ <!-- Multiple "Spell Checkers" can be declared and used by this component
136
+ (e.g. for title_spell field)
310
137
  -->
311
138
  <lst name="spellchecker">
312
139
  <str name="name">default</str>
@@ -335,45 +162,6 @@
335
162
  <str name="accuracy">0.7</str>
336
163
  <str name="buildOnOptimize">true</str>
337
164
  </lst>
338
-
339
- <!-- a spellchecker that uses a different distance measure -->
340
- <!--
341
- <lst name="spellchecker">
342
- <str name="name">jarowinkler</str>
343
- <str name="field">spell</str>
344
- <str name="distanceMeasure">
345
- org.apache.lucene.search.spell.JaroWinklerDistance
346
- </str>
347
- <str name="spellcheckIndexDir">spellcheckerJaro</str>
348
- </lst>
349
- -->
350
-
351
- <!-- a spellchecker that use an alternate comparator
352
-
353
- comparatorClass be one of:
354
- 1. score (default)
355
- 2. freq (Frequency first, then score)
356
- 3. A fully qualified class name
357
- -->
358
- <!--
359
- <lst name="spellchecker">
360
- <str name="name">freq</str>
361
- <str name="field">lowerfilt</str>
362
- <str name="spellcheckIndexDir">spellcheckerFreq</str>
363
- <str name="comparatorClass">freq</str>
364
- <str name="buildOnCommit">true</str>
365
- -->
366
-
367
- <!-- A spellchecker that reads the list of words from a file -->
368
- <!--
369
- <lst name="spellchecker">
370
- <str name="classname">solr.FileBasedSpellChecker</str>
371
- <str name="name">file</str>
372
- <str name="sourceLocation">spellings.txt</str>
373
- <str name="characterEncoding">UTF-8</str>
374
- <str name="spellcheckIndexDir">spellcheckerFile</str>
375
- </lst>
376
- -->
377
165
  </searchComponent>
378
166
 
379
167
  <searchComponent name="suggest" class="solr.SuggestComponent">
@@ -397,5 +185,11 @@
397
185
  </arr>
398
186
  </requestHandler>
399
187
 
400
- </config>
188
+ <requestHandler name="/replication" class="solr.ReplicationHandler" startup="lazy" />
189
+
190
+ <requestDispatcher handleSelect="true" >
191
+ <requestParsers enableRemoteStreaming="true" multipartUploadLimitInKB="2048" />
192
+ </requestDispatcher>
401
193
 
194
+ <requestHandler name="/analysis/field" startup="lazy" class="solr.FieldAnalysisRequestHandler" />
195
+ </config>
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blacklight-oembed
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Beer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-15 00:00:00.000000000 Z
11
+ date: 2019-10-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -26,38 +26,18 @@ dependencies:
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: blacklight
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '5.0'
34
- - - "<"
35
- - !ruby/object:Gem::Version
36
- version: '7'
37
- type: :runtime
38
- prerelease: false
39
- version_requirements: !ruby/object:Gem::Requirement
40
- requirements:
41
- - - ">="
42
- - !ruby/object:Gem::Version
43
- version: '5.0'
44
- - - "<"
45
- - !ruby/object:Gem::Version
46
- version: '7'
47
- - !ruby/object:Gem::Dependency
48
- name: bootstrap-sass
49
29
  requirement: !ruby/object:Gem::Requirement
50
30
  requirements:
51
31
  - - "~>"
52
32
  - !ruby/object:Gem::Version
53
- version: '3.0'
33
+ version: '7.0'
54
34
  type: :runtime
55
35
  prerelease: false
56
36
  version_requirements: !ruby/object:Gem::Requirement
57
37
  requirements:
58
38
  - - "~>"
59
39
  - !ruby/object:Gem::Version
60
- version: '3.0'
40
+ version: '7.0'
61
41
  - !ruby/object:Gem::Dependency
62
42
  name: ruby-oembed
63
43
  requirement: !ruby/object:Gem::Requirement
@@ -260,6 +240,7 @@ files:
260
240
  - spec/controllers/embed_controller_spec.rb
261
241
  - spec/helpers/oembed_helper_spec.rb
262
242
  - spec/spec_helper.rb
243
+ - spec/test_app_templates/Gemfile.extra
263
244
  - spec/test_app_templates/lib/generators/test_app_generator.rb
264
245
  homepage: https://github.com/sul-dlss/blacklight-oembed
265
246
  licenses:
@@ -288,4 +269,5 @@ test_files:
288
269
  - spec/controllers/embed_controller_spec.rb
289
270
  - spec/helpers/oembed_helper_spec.rb
290
271
  - spec/spec_helper.rb
272
+ - spec/test_app_templates/Gemfile.extra
291
273
  - spec/test_app_templates/lib/generators/test_app_generator.rb