blacklight_range_limit 6.5.0 → 7.0.0.rc1
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/.solr_wrapper.yml +0 -1
- data/.travis.yml +3 -4
- data/Gemfile +0 -4
- data/Rakefile +2 -0
- data/VERSION +1 -1
- data/app/assets/javascripts/blacklight_range_limit/range_limit_distro_facets.js +3 -4
- data/app/assets/javascripts/blacklight_range_limit/range_limit_shared.js +6 -6
- data/app/assets/javascripts/blacklight_range_limit/range_limit_slider.js +0 -1
- data/app/views/blacklight_range_limit/_range_limit_panel.html.erb +31 -33
- data/blacklight_range_limit.gemspec +5 -7
- data/lib/blacklight_range_limit.rb +1 -1
- data/lib/blacklight_range_limit/controller_override.rb +1 -16
- data/lib/blacklight_range_limit/engine.rb +1 -0
- data/lib/blacklight_range_limit/range_limit_builder.rb +19 -21
- data/lib/blacklight_range_limit/segment_calculation.rb +1 -3
- data/lib/blacklight_range_limit/view_helper_override.rb +39 -26
- data/lib/generators/blacklight_range_limit/assets_generator.rb +3 -0
- data/lib/generators/blacklight_range_limit/install_generator.rb +1 -1
- data/lib/tasks/blacklight_range_limit.rake +1 -1
- data/solr/conf/schema.xml +325 -564
- data/solr/conf/solrconfig.xml +78 -294
- data/solr/sample_solr_documents.yml +30 -30
- data/spec/features/blacklight_range_limit_spec.rb +12 -20
- data/spec/fixtures/solr_documents/zero_year.yml +2 -2
- data/spec/lib/blacklight_range_limit/segment_calculation_spec.rb +0 -14
- data/spec/spec_helper.rb +0 -15
- data/spec/test_app_templates/Gemfile.extra +1 -1
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +1 -1
- metadata +18 -55
- data/spec/features/a_javascript_spec.rb +0 -25
- data/spec/lib/blacklight_range_limit/view_helper_override_helper_spec.rb +0 -127
data/solr/conf/solrconfig.xml
CHANGED
@@ -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
|
-
|
26
|
-
|
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" />
|
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 -->
|
35
6
|
|
36
|
-
<
|
37
|
-
class="${solr.directoryFactory:solr.NRTCachingDirectoryFactory}">
|
38
|
-
</directoryFactory>
|
7
|
+
<abortOnConfigurationError>${solr.abortOnConfigurationError:true}</abortOnConfigurationError>
|
39
8
|
|
40
|
-
<
|
9
|
+
<luceneMatchVersion>6.1.0</luceneMatchVersion>
|
41
10
|
|
42
|
-
<
|
11
|
+
<directoryFactory name="DirectoryFactory" class="${solr.directoryFactory:solr.StandardDirectoryFactory}"/>
|
43
12
|
|
13
|
+
<updateHandler class="solr.DirectUpdateHandler2">
|
14
|
+
<updateLog>
|
15
|
+
<str name="dir">${solr.core0.data.dir:}</str>
|
16
|
+
</updateLog>
|
17
|
+
</updateHandler>
|
44
18
|
|
45
|
-
|
46
|
-
|
47
|
-
<
|
48
|
-
<requestParsers enableRemoteStreaming="false" multipartUploadLimitInKB="2048" />
|
49
|
-
</requestDispatcher>
|
50
|
-
|
51
|
-
<requestHandler name="/analysis/field" startup="lazy" class="solr.FieldAnalysisRequestHandler" />
|
52
|
-
|
53
|
-
<!-- config for the admin interface -->
|
54
|
-
<admin>
|
55
|
-
<defaultQuery>*:*</defaultQuery>
|
56
|
-
</admin>
|
57
|
-
|
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
|
-
|
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">
|
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<-1 5<-2 6<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_tsimesim
|
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
|
-
|
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
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
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
|
-
|
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
|
-
<!-- NOT using marc_display because it is large and will slow things down for search results -->
|
191
78
|
<str name="fl">
|
192
|
-
|
193
|
-
score
|
194
|
-
author_display,
|
195
|
-
author_vern_display,
|
196
|
-
format,
|
197
|
-
isbn_t,
|
198
|
-
language_facet,
|
199
|
-
lc_callnum_display,
|
200
|
-
material_type_display,
|
201
|
-
published_display,
|
202
|
-
published_vern_display,
|
203
|
-
pub_date,
|
204
|
-
title_display,
|
205
|
-
title_vern_display,
|
206
|
-
subject_topic_facet,
|
207
|
-
subject_geo_facet,
|
208
|
-
subject_era_facet,
|
209
|
-
subtitle_display,
|
210
|
-
subtitle_vern_display,
|
211
|
-
url_fulltext_display,
|
212
|
-
url_suppl_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.
|
218
|
-
<str name="facet.field">
|
219
|
-
<str name="facet.field">
|
220
|
-
|
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,91 +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
|
-
|
294
|
-
<requestHandler name="document" class="solr.SearchHandler" >
|
102
|
+
<requestHandler name="permissions" class="solr.SearchHandler" >
|
295
103
|
<lst name="defaults">
|
104
|
+
<str name="facet">off</str>
|
296
105
|
<str name="echoParams">all</str>
|
297
|
-
<str name="fl">*</str>
|
298
106
|
<str name="rows">1</str>
|
299
|
-
<str name="q">{!
|
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>
|
300
122
|
</lst>
|
301
123
|
</requestHandler>
|
302
124
|
|
303
|
-
|
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>
|
304
131
|
|
305
|
-
The spell check component can return a list of alternative spelling
|
306
|
-
suggestions.
|
307
132
|
|
308
|
-
http://wiki.apache.org/solr/SpellCheckComponent
|
309
|
-
-->
|
310
133
|
<searchComponent name="spellcheck" class="solr.SpellCheckComponent">
|
311
|
-
|
312
134
|
<str name="queryAnalyzerFieldType">textSpell</str>
|
313
|
-
|
314
|
-
|
315
|
-
component
|
316
|
-
-->
|
317
|
-
|
318
|
-
<!-- a spellchecker built from a field of the main index, and
|
319
|
-
written to disk
|
135
|
+
<!-- Multiple "Spell Checkers" can be declared and used by this component
|
136
|
+
(e.g. for title_spell field)
|
320
137
|
-->
|
321
138
|
<lst name="spellchecker">
|
322
139
|
<str name="name">default</str>
|
@@ -345,45 +162,6 @@
|
|
345
162
|
<str name="accuracy">0.7</str>
|
346
163
|
<str name="buildOnOptimize">true</str>
|
347
164
|
</lst>
|
348
|
-
|
349
|
-
<!-- a spellchecker that uses a different distance measure -->
|
350
|
-
<!--
|
351
|
-
<lst name="spellchecker">
|
352
|
-
<str name="name">jarowinkler</str>
|
353
|
-
<str name="field">spell</str>
|
354
|
-
<str name="distanceMeasure">
|
355
|
-
org.apache.lucene.search.spell.JaroWinklerDistance
|
356
|
-
</str>
|
357
|
-
<str name="spellcheckIndexDir">spellcheckerJaro</str>
|
358
|
-
</lst>
|
359
|
-
-->
|
360
|
-
|
361
|
-
<!-- a spellchecker that use an alternate comparator
|
362
|
-
|
363
|
-
comparatorClass be one of:
|
364
|
-
1. score (default)
|
365
|
-
2. freq (Frequency first, then score)
|
366
|
-
3. A fully qualified class name
|
367
|
-
-->
|
368
|
-
<!--
|
369
|
-
<lst name="spellchecker">
|
370
|
-
<str name="name">freq</str>
|
371
|
-
<str name="field">lowerfilt</str>
|
372
|
-
<str name="spellcheckIndexDir">spellcheckerFreq</str>
|
373
|
-
<str name="comparatorClass">freq</str>
|
374
|
-
<str name="buildOnCommit">true</str>
|
375
|
-
-->
|
376
|
-
|
377
|
-
<!-- A spellchecker that reads the list of words from a file -->
|
378
|
-
<!--
|
379
|
-
<lst name="spellchecker">
|
380
|
-
<str name="classname">solr.FileBasedSpellChecker</str>
|
381
|
-
<str name="name">file</str>
|
382
|
-
<str name="sourceLocation">spellings.txt</str>
|
383
|
-
<str name="characterEncoding">UTF-8</str>
|
384
|
-
<str name="spellcheckIndexDir">spellcheckerFile</str>
|
385
|
-
</lst>
|
386
|
-
-->
|
387
165
|
</searchComponent>
|
388
166
|
|
389
167
|
<searchComponent name="suggest" class="solr.SuggestComponent">
|
@@ -407,5 +185,11 @@
|
|
407
185
|
</arr>
|
408
186
|
</requestHandler>
|
409
187
|
|
410
|
-
|
188
|
+
<requestHandler name="/replication" class="solr.ReplicationHandler" startup="lazy" />
|
189
|
+
|
190
|
+
<requestDispatcher handleSelect="true" >
|
191
|
+
<requestParsers enableRemoteStreaming="true" multipartUploadLimitInKB="2048" />
|
192
|
+
</requestDispatcher>
|
411
193
|
|
194
|
+
<requestHandler name="/analysis/field" startup="lazy" class="solr.FieldAnalysisRequestHandler" />
|
195
|
+
</config>
|
@@ -38,7 +38,7 @@
|
|
38
38
|
- Fikr-i Ayāz /
|
39
39
|
pub_date:
|
40
40
|
- '1998'
|
41
|
-
|
41
|
+
pub_date_si: 1998
|
42
42
|
format: Book
|
43
43
|
material_type_display:
|
44
44
|
- 375 p.
|
@@ -97,7 +97,7 @@
|
|
97
97
|
- Sāhivāl jail kī ḍāʼirī /
|
98
98
|
pub_date:
|
99
99
|
- '1986'
|
100
|
-
|
100
|
+
pub_date_si: 1986
|
101
101
|
format: Book
|
102
102
|
material_type_display:
|
103
103
|
- 232 p.
|
@@ -216,7 +216,7 @@
|
|
216
216
|
- "نقدى براى تمام فصول :"
|
217
217
|
pub_date:
|
218
218
|
- '2000'
|
219
|
-
|
219
|
+
pub_date_si: 2000
|
220
220
|
published_vern_display:
|
221
221
|
- "تهران :"
|
222
222
|
format: Book
|
@@ -295,7 +295,7 @@
|
|
295
295
|
- "久保栄 「火山灰地」 を読む"
|
296
296
|
pub_date:
|
297
297
|
- '1997'
|
298
|
-
|
298
|
+
pub_date_si: 1997
|
299
299
|
published_vern_display:
|
300
300
|
- "東京"
|
301
301
|
format: Book
|
@@ -372,7 +372,7 @@
|
|
372
372
|
- Ocherki po istorii Kazakhskoĭ SSR.
|
373
373
|
pub_date:
|
374
374
|
- '1941'
|
375
|
-
|
375
|
+
pub_date_si: 1941
|
376
376
|
format: Book
|
377
377
|
material_type_display:
|
378
378
|
- v.
|
@@ -440,7 +440,7 @@
|
|
440
440
|
Respubliki.
|
441
441
|
pub_date:
|
442
442
|
- '1952'
|
443
|
-
|
443
|
+
pub_date_si: 1952
|
444
444
|
format: Book
|
445
445
|
material_type_display:
|
446
446
|
- 396 p.
|
@@ -523,7 +523,7 @@
|
|
523
523
|
- "高麗 人物 列傅"
|
524
524
|
pub_date:
|
525
525
|
- '1976'
|
526
|
-
|
526
|
+
pub_date_si: 1976
|
527
527
|
published_vern_display:
|
528
528
|
- "서울"
|
529
529
|
format: Book
|
@@ -599,7 +599,7 @@
|
|
599
599
|
- Yaśodharā-mahākāvyam /
|
600
600
|
pub_date:
|
601
601
|
- '1976'
|
602
|
-
|
602
|
+
pub_date_si: 1976
|
603
603
|
format: Book
|
604
604
|
material_type_display:
|
605
605
|
- 24, 128, 2 p.
|
@@ -663,7 +663,7 @@
|
|
663
663
|
- Pākistānī ʻaurat dorāhe par /
|
664
664
|
pub_date:
|
665
665
|
- '1978'
|
666
|
-
|
666
|
+
pub_date_si: 1978
|
667
667
|
format: Book
|
668
668
|
material_type_display:
|
669
669
|
- 8, 174 p.
|
@@ -731,7 +731,7 @@
|
|
731
731
|
- Āśleṣāśataka of Nārāyaṇa Paṇḍita
|
732
732
|
pub_date:
|
733
733
|
- '1946'
|
734
|
-
|
734
|
+
pub_date_si: 1946
|
735
735
|
format: Book
|
736
736
|
material_type_display:
|
737
737
|
- xii, 24 p.
|
@@ -817,7 +817,7 @@
|
|
817
817
|
- "שודדי־ים יהודיים :"
|
818
818
|
pub_date:
|
819
819
|
- '1984'
|
820
|
-
|
820
|
+
pub_date_si: 1984
|
821
821
|
published_vern_display:
|
822
822
|
- "ירושלים :"
|
823
823
|
format: Book
|
@@ -903,7 +903,7 @@
|
|
903
903
|
- "اشنائى با حوزههاى علميۀ شيعه در طول تاريخ /"
|
904
904
|
pub_date:
|
905
905
|
- '1986'
|
906
|
-
|
906
|
+
pub_date_si: 1986
|
907
907
|
published_vern_display:
|
908
908
|
- "اصفهان :"
|
909
909
|
format: Book
|
@@ -974,7 +974,7 @@
|
|
974
974
|
- 'Mrecvelobis mušakis cʻxovrebis cesi :'
|
975
975
|
pub_date:
|
976
976
|
- '1975'
|
977
|
-
|
977
|
+
pub_date_si: 1975
|
978
978
|
subtitle_display: tʻeoriul-metʻoduri narkvevi
|
979
979
|
format: Book
|
980
980
|
material_type_display:
|
@@ -1050,7 +1050,7 @@
|
|
1050
1050
|
- "北韓 法令集 /"
|
1051
1051
|
pub_date:
|
1052
1052
|
- '1990'
|
1053
|
-
|
1053
|
+
pub_date_si: 1990
|
1054
1054
|
published_vern_display:
|
1055
1055
|
- "서울 持別市 :"
|
1056
1056
|
format: Book
|
@@ -1202,7 +1202,7 @@
|
|
1202
1202
|
- "ספר משנה ברורה :"
|
1203
1203
|
pub_date:
|
1204
1204
|
- '1992'
|
1205
|
-
|
1205
|
+
pub_date_si: 1992
|
1206
1206
|
published_vern_display:
|
1207
1207
|
- "[Jerusalem? :"
|
1208
1208
|
format: Book
|
@@ -1319,7 +1319,7 @@
|
|
1319
1319
|
- "아직도 그럭 저럭 사십니까"
|
1320
1320
|
pub_date:
|
1321
1321
|
- '1990'
|
1322
|
-
|
1322
|
+
pub_date_si: 1990
|
1323
1323
|
published_vern_display:
|
1324
1324
|
- "서울"
|
1325
1325
|
format: Book
|
@@ -1426,7 +1426,7 @@
|
|
1426
1426
|
- "معركۀ جهانبينىها :"
|
1427
1427
|
pub_date:
|
1428
1428
|
- '1994'
|
1429
|
-
|
1429
|
+
pub_date_si: 1994
|
1430
1430
|
published_vern_display:
|
1431
1431
|
- "تهران :"
|
1432
1432
|
format: Book
|
@@ -1504,7 +1504,7 @@
|
|
1504
1504
|
- Sumadhvavijayaḥ /
|
1505
1505
|
pub_date:
|
1506
1506
|
- '2000'
|
1507
|
-
|
1507
|
+
pub_date_si: 2000
|
1508
1508
|
format: Book
|
1509
1509
|
material_type_display:
|
1510
1510
|
- v. <1 >
|
@@ -1590,7 +1590,7 @@
|
|
1590
1590
|
- "الحرب في الألفية الثالثة"
|
1591
1591
|
pub_date:
|
1592
1592
|
- '2003'
|
1593
|
-
|
1593
|
+
pub_date_si: 2003
|
1594
1594
|
published_vern_display:
|
1595
1595
|
- "نواكشوط"
|
1596
1596
|
format: Book
|
@@ -1668,7 +1668,7 @@
|
|
1668
1668
|
- Bon-brgyaʼi lo rgyus lugs gñis gsal baʼi me loṅ źes bya ba bźugs so /
|
1669
1669
|
pub_date:
|
1670
1670
|
- '2004'
|
1671
|
-
|
1671
|
+
pub_date_si: 2004
|
1672
1672
|
format: Book
|
1673
1673
|
material_type_display:
|
1674
1674
|
- 149 p.
|
@@ -1763,7 +1763,7 @@
|
|
1763
1763
|
- "ثقوب في عقل الأمة"
|
1764
1764
|
pub_date:
|
1765
1765
|
- '2006'
|
1766
|
-
|
1766
|
+
pub_date_si: 2006
|
1767
1767
|
published_vern_display:
|
1768
1768
|
- "المعادي، القاهرة"
|
1769
1769
|
format: Book
|
@@ -1888,7 +1888,7 @@
|
|
1888
1888
|
- "ביטוח וביטחון סוציאלי"
|
1889
1889
|
pub_date:
|
1890
1890
|
- '1962'
|
1891
|
-
|
1891
|
+
pub_date_si: 1962
|
1892
1892
|
format: Book
|
1893
1893
|
material_type_display:
|
1894
1894
|
- items 1-<13> of <13>
|
@@ -2016,7 +2016,7 @@
|
|
2016
2016
|
- "\"Strong Medicine speaks\" :"
|
2017
2017
|
pub_date:
|
2018
2018
|
- '2008'
|
2019
|
-
|
2019
|
+
pub_date_si: 2008
|
2020
2020
|
subtitle_display: 'a Native American elder has her say : an oral history'
|
2021
2021
|
format: Book
|
2022
2022
|
url_suppl_display:
|
@@ -2108,7 +2108,7 @@
|
|
2108
2108
|
- 'Dris lan don gcig ma :'
|
2109
2109
|
pub_date:
|
2110
2110
|
- '2008'
|
2111
|
-
|
2111
|
+
pub_date_si: 2008
|
2112
2112
|
subtitle_display: dam paʼi chos dgoṅs pa gcig paʼi dri ba legs bśad bsu baʼi pho
|
2113
2113
|
ñaʼi dris lan Dgoṅs-gcig smra baʼi mdzes rgyan źes bya ba bźugs so
|
2114
2114
|
format: Book
|
@@ -2218,7 +2218,7 @@
|
|
2218
2218
|
- 'Pluvial nectar of blessings :'
|
2219
2219
|
pub_date:
|
2220
2220
|
- '2002'
|
2221
|
-
|
2221
|
+
pub_date_si: 2002
|
2222
2222
|
format: Book
|
2223
2223
|
lc_b4cutter_facet:
|
2224
2224
|
- BQ5593.P3
|
@@ -2294,7 +2294,7 @@
|
|
2294
2294
|
- 'Bod kyi naṅ chos ṅo sprod sñiṅ bsdus :'
|
2295
2295
|
pub_date:
|
2296
2296
|
- '2008'
|
2297
|
-
|
2297
|
+
pub_date_si: 2008
|
2298
2298
|
subtitle_display: goṅ sa skyabs mgon chen po mchog nas deṅ dus Bod rigs na gźon
|
2299
2299
|
rnams la naṅ chos ṅo sprod bstsal ba bźugs so
|
2300
2300
|
format: Book
|
@@ -2376,7 +2376,7 @@
|
|
2376
2376
|
loṅ źes bya ba bźugs so /
|
2377
2377
|
pub_date:
|
2378
2378
|
- '2005'
|
2379
|
-
|
2379
|
+
pub_date_si: 2005
|
2380
2380
|
format: Book
|
2381
2381
|
material_type_display:
|
2382
2382
|
- a-e, iv, ii, 407 p.
|
@@ -2446,7 +2446,7 @@
|
|
2446
2446
|
- Śes yon.
|
2447
2447
|
pub_date:
|
2448
2448
|
- '2007'
|
2449
|
-
|
2449
|
+
pub_date_si: 2007
|
2450
2450
|
format: Book
|
2451
2451
|
title_display: Śes yon
|
2452
2452
|
subject_addl_t:
|
@@ -2564,7 +2564,7 @@
|
|
2564
2564
|
- "久保栄「火山灰地」を読む"
|
2565
2565
|
pub_date:
|
2566
2566
|
- '1997'
|
2567
|
-
|
2567
|
+
pub_date_si: 1997
|
2568
2568
|
published_vern_display:
|
2569
2569
|
- "東京"
|
2570
2570
|
format: Book
|
@@ -2670,7 +2670,7 @@
|
|
2670
2670
|
- "次按驟變"
|
2671
2671
|
pub_date:
|
2672
2672
|
- '2008'
|
2673
|
-
|
2673
|
+
pub_date_si: 2008
|
2674
2674
|
published_vern_display:
|
2675
2675
|
- "臺北縣板橋市"
|
2676
2676
|
format: Book
|