blacklight 4.6.3 → 4.7.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/app/controllers/bookmarks_controller.rb +4 -0
- data/app/helpers/blacklight/blacklight_helper_behavior.rb +76 -21
- data/app/helpers/blacklight/hash_as_hidden_fields_helper_behavior.rb +8 -1
- data/app/views/catalog/_citation.html.erb +1 -1
- data/app/views/catalog/_did_you_mean.html.erb +1 -1
- data/app/views/catalog/_search_form.html.erb +1 -1
- data/blacklight.gemspec +1 -1
- data/config/locales/blacklight.en.yml +3 -0
- data/config/locales/blacklight.fr.yml +3 -0
- data/doc/Atom-Responses.md +90 -0
- data/doc/Blacklight-3.0-Release-Notes-And-Upgrade-Guide.md +107 -0
- data/doc/Blacklight-3.2-Release-Notes-and-Upgrade-Guide.md +191 -0
- data/doc/Blacklight-3.3-release-notes-and-upgrade-guide.md +37 -0
- data/doc/Blacklight-3.4-release-notes-and-upgrade-guide.md +27 -0
- data/doc/Blacklight-3.5-release-notes-and-upgrade-guide.md +44 -0
- data/doc/Blacklight-3.6-release-notes-and-upgrade-guide.md +25 -0
- data/doc/Blacklight-3.7-release-notes-and-upgrade-guide.md +80 -0
- data/doc/Blacklight-3.8-release-notes-and-upgrade-guide.md +11 -0
- data/doc/Blacklight-4.0-release-notes-and-upgrade-guide.md +135 -0
- data/doc/Blacklight-4.1-release-notes-and-upgrade-guide.md +17 -0
- data/doc/Blacklight-4.2-release-notes-and-upgrade-guide.md +25 -0
- data/doc/Blacklight-4.3-release-notes-and-upgrade-guide.md +21 -0
- data/doc/Blacklight-4.4-release-notes-and-upgrade-guide.md +41 -0
- data/doc/Blacklight-Add-ons.md +28 -0
- data/doc/Blacklight-configuration.md +411 -0
- data/doc/Blacklight-on-Heroku.md +135 -0
- data/doc/Code4Lib-2014.md +48 -0
- data/doc/Community-principles.md +44 -0
- data/doc/Configuring-and-Customizing-Blacklight.md +271 -0
- data/doc/Configuring-rails-routes.md +13 -0
- data/doc/Contributing-to-Blacklight.md +25 -0
- data/doc/Examples.md +94 -0
- data/doc/Extending-or-Modifying-Blacklight-Search-Behavior.md +141 -0
- data/doc/FAQs.md +1 -0
- data/doc/Home.md +80 -0
- data/doc/How-to-release-a-version.md +29 -0
- data/doc/Indexing-your-data-into-solr.md +32 -0
- data/doc/Integration-with-Rails-Footnotes.md +20 -0
- data/doc/Internationalization.md +32 -0
- data/doc/JSON-API.md +17 -0
- data/doc/Pagination.md +51 -0
- data/doc/Providing-your-own-view-templates.md +109 -0
- data/doc/Quickstart.md +115 -0
- data/doc/README_SOLR.md +245 -0
- data/doc/Release-Notes-And-Upgrade-Guides.md +20 -0
- data/doc/Roadmap.md +43 -0
- data/doc/Sunspot-for-indexing.md +46 -0
- data/doc/Theming.md +64 -0
- data/doc/User-Authentication.md +60 -0
- data/doc/testing.md +57 -0
- data/lib/blacklight.rb +6 -0
- data/lib/blacklight/base.rb +2 -0
- data/lib/blacklight/catalog.rb +4 -3
- data/lib/blacklight/catalog/search_context.rb +8 -1
- data/lib/blacklight/configurable.rb +1 -2
- data/lib/blacklight/solr/document.rb +2 -1
- data/lib/blacklight/solr_helper.rb +8 -0
- data/lib/blacklight/user.rb +7 -2
- data/lib/blacklight/utils.rb +9 -1
- data/lib/generators/blacklight/templates/catalog_controller.rb +1 -4
- data/spec/helpers/blacklight_helper_spec.rb +84 -9
- data/spec/helpers/hash_as_hidden_fields_spec.rb +1 -1
- data/spec/lib/blacklight_spec.rb +6 -0
- data/spec/lib/blacklight_user_spec.rb +4 -0
- data/spec/lib/solr_helper_spec.rb +8 -6
- data/spec/lib/utils_spec.rb +35 -5
- data/spec/views/catalog/_paginate_compact.html.erb_spec.rb +1 -1
- metadata +49 -8
data/lib/blacklight/utils.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'ostruct'
|
2
2
|
module Blacklight
|
3
3
|
class OpenStructWithHashAccess < OpenStruct
|
4
|
-
delegate :keys, :
|
4
|
+
delegate :keys, :reject!, :select!, :include, :fetch, :to => :to_h
|
5
5
|
|
6
6
|
def []=(key, value)
|
7
7
|
send "#{key}=", value
|
@@ -14,5 +14,13 @@ module Blacklight
|
|
14
14
|
def to_h
|
15
15
|
@table
|
16
16
|
end
|
17
|
+
|
18
|
+
def merge other_hash
|
19
|
+
self.class.new to_h.merge((other_hash if other_hash.is_a? Hash) || other_hash.to_h)
|
20
|
+
end
|
21
|
+
|
22
|
+
def merge! other_hash
|
23
|
+
@table.merge!((other_hash if other_hash.is_a? Hash) || other_hash.to_h)
|
24
|
+
end
|
17
25
|
end
|
18
26
|
end
|
@@ -1,6 +1,5 @@
|
|
1
1
|
# -*- encoding : utf-8 -*-
|
2
|
-
|
3
|
-
|
2
|
+
#
|
4
3
|
class CatalogController < ApplicationController
|
5
4
|
|
6
5
|
include Blacklight::Catalog
|
@@ -175,6 +174,4 @@ class CatalogController < ApplicationController
|
|
175
174
|
config.spell_max = 5
|
176
175
|
end
|
177
176
|
|
178
|
-
|
179
|
-
|
180
177
|
end
|
@@ -180,7 +180,24 @@ describe BlacklightHelper do
|
|
180
180
|
end
|
181
181
|
end
|
182
182
|
|
183
|
+
describe "sanitize_search_params" do
|
184
|
+
it "should strip nil values" do
|
185
|
+
result = sanitize_search_params(:a => nil, :b => 1)
|
186
|
+
expect(result).to_not have_key(:a)
|
187
|
+
expect(result[:b]).to eq 1
|
188
|
+
end
|
189
|
+
|
190
|
+
it "should remove blacklisted keys" do
|
191
|
+
result = sanitize_search_params(:action => true, :controller => true, :id => true, :commit => true, :utf8 => true)
|
192
|
+
expect(result).to be_empty
|
193
|
+
end
|
194
|
+
end
|
195
|
+
|
183
196
|
describe "params_for_search" do
|
197
|
+
around(:each) do |example|
|
198
|
+
Deprecation.silence(Blacklight::BlacklightHelperBehavior) { example.run }
|
199
|
+
end
|
200
|
+
|
184
201
|
def params
|
185
202
|
{ 'default' => 'params'}
|
186
203
|
end
|
@@ -192,47 +209,61 @@ describe BlacklightHelper do
|
|
192
209
|
end
|
193
210
|
|
194
211
|
it "should let you pass in params to use" do
|
212
|
+
source_params = { :q => 'query'}
|
213
|
+
result = params_for_search(source_params, {})
|
214
|
+
source_params.should == result
|
215
|
+
source_params.object_id.should_not == result.object_id
|
216
|
+
end
|
217
|
+
|
218
|
+
it "should let you pass in params to use (the deprecated way)" do
|
195
219
|
source_params = { :q => 'query'}
|
196
220
|
result = params_for_search(:params => source_params )
|
197
221
|
source_params.should == result
|
198
222
|
source_params.object_id.should_not == result.object_id
|
199
223
|
end
|
224
|
+
|
225
|
+
|
226
|
+
it "should let you pass in params to merge into the controller's params" do
|
227
|
+
source_params = { :q => 'query'}
|
228
|
+
result = params_for_search( source_params )
|
229
|
+
expect(result).to include(:q => 'query', 'default' => 'params')
|
230
|
+
end
|
200
231
|
|
201
232
|
it "should not return blacklisted elements" do
|
202
233
|
source_params = { :action => 'action', :controller => 'controller', :id => "id", :commit => 'commit'}
|
203
|
-
result = params_for_search(
|
234
|
+
result = params_for_search(source_params, {} )
|
204
235
|
result.keys.should_not include(:action, :controller, :commit, :id)
|
205
236
|
|
206
237
|
end
|
207
238
|
|
208
239
|
it "should adjust the current page if the per_page changes" do
|
209
240
|
source_params = { :per_page => 20, :page => 5}
|
210
|
-
result = params_for_search(
|
241
|
+
result = params_for_search(source_params, :per_page => 100)
|
211
242
|
result[:page].should == 1
|
212
243
|
end
|
213
244
|
|
214
245
|
it "should not adjust the current page if the per_page is the same as it always was" do
|
215
246
|
source_params = { :per_page => 20, :page => 5}
|
216
|
-
result = params_for_search(
|
247
|
+
result = params_for_search(source_params, :per_page => 20)
|
217
248
|
result[:page].should == 5
|
218
249
|
end
|
219
250
|
|
220
251
|
it "should adjust the current page if the sort changes" do
|
221
252
|
source_params = { :sort => 'field_a', :page => 5}
|
222
|
-
result = params_for_search(
|
253
|
+
result = params_for_search(source_params, :sort => 'field_b')
|
223
254
|
result[:page].should == 1
|
224
255
|
end
|
225
256
|
|
226
257
|
it "should not adjust the current page if the sort is the same as it always was" do
|
227
258
|
source_params = { :sort => 'field_a', :page => 5}
|
228
|
-
result = params_for_search(
|
259
|
+
result = params_for_search(source_params, :sort => 'field_a')
|
229
260
|
result[:page].should == 5
|
230
261
|
end
|
231
262
|
|
232
263
|
describe "omit keys parameter" do
|
233
264
|
it "should omit keys by key name" do
|
234
265
|
source_params = { :a => 1, :b => 2, :c => 3}
|
235
|
-
result = params_for_search(
|
266
|
+
result = params_for_search(source_params, :omit_keys => [:a, :b] )
|
236
267
|
|
237
268
|
result.keys.should_not include(:a, :b)
|
238
269
|
result[:c].should == 3
|
@@ -240,19 +271,33 @@ describe BlacklightHelper do
|
|
240
271
|
|
241
272
|
it "should remove keys if a key/value pair was passed and no values are left for that key" do
|
242
273
|
source_params = { :f => ['a']}
|
243
|
-
result = params_for_search(
|
274
|
+
result = params_for_search(source_params, :omit_keys => [{:f => 'a' }])
|
244
275
|
result.keys.should_not include(:f)
|
245
276
|
end
|
246
277
|
|
247
278
|
it "should only remove keys when a key/value pair is based that are in that pair" do
|
248
279
|
|
249
280
|
source_params = { :f => ['a', 'b']}
|
250
|
-
result = params_for_search(
|
281
|
+
result = params_for_search(source_params, :omit_keys => [{:f => 'a' }])
|
251
282
|
result[:f].should_not include('a')
|
252
283
|
result[:f].should include('b')
|
253
284
|
end
|
254
285
|
end
|
255
286
|
|
287
|
+
describe "params_for_search with a block" do
|
288
|
+
it "should evalute the block and allow it to add or remove keys" do
|
289
|
+
result = params_for_search({:a => 1, :b => 2}, :c => 3) do |params|
|
290
|
+
params.except! :a, :b
|
291
|
+
params[:d] = 'd'
|
292
|
+
end
|
293
|
+
|
294
|
+
result.keys.should_not include(:a, :b)
|
295
|
+
expect(result[:c]).to eq 3
|
296
|
+
expect(result[:d]).to eq 'd'
|
297
|
+
end
|
298
|
+
|
299
|
+
end
|
300
|
+
|
256
301
|
end
|
257
302
|
|
258
303
|
describe "search_as_hidden_fields" do
|
@@ -261,7 +306,9 @@ describe BlacklightHelper do
|
|
261
306
|
end
|
262
307
|
describe "for default arguments" do
|
263
308
|
it "should default to omitting :page" do
|
264
|
-
|
309
|
+
Deprecation.silence(Blacklight::BlacklightHelperBehavior) do
|
310
|
+
search_as_hidden_fields.should_not have_selector("input[name='page']")
|
311
|
+
end
|
265
312
|
end
|
266
313
|
end
|
267
314
|
end
|
@@ -744,4 +791,32 @@ describe BlacklightHelper do
|
|
744
791
|
expect(helper.render_field_value(['c', 'd'], double(:separator => '; '))).to eq "c; d"
|
745
792
|
end
|
746
793
|
end
|
794
|
+
|
795
|
+
describe "link_to_previous_search" do
|
796
|
+
it "should link to the given search parameters" do
|
797
|
+
params = {}
|
798
|
+
helper.should_receive(:render_search_to_s).with(params).and_return "link text"
|
799
|
+
expect(helper.link_to_previous_search({})).to eq helper.link_to("link text", catalog_index_path)
|
800
|
+
end
|
801
|
+
end
|
802
|
+
|
803
|
+
describe "should_show_spellcheck_suggestions?" do
|
804
|
+
before :each do
|
805
|
+
helper.stub spell_check_max: 5
|
806
|
+
end
|
807
|
+
it "should not show suggestions if there are enough results" do
|
808
|
+
response = double(total: 10)
|
809
|
+
expect(helper.should_show_spellcheck_suggestions? response).to be_false
|
810
|
+
end
|
811
|
+
|
812
|
+
it "should only show suggestions if there are very few results" do
|
813
|
+
response = double(total: 4, spelling: double(words: [1]))
|
814
|
+
expect(helper.should_show_spellcheck_suggestions? response).to be_true
|
815
|
+
end
|
816
|
+
|
817
|
+
it "should show suggestions only if there are spelling suggestions available" do
|
818
|
+
response = double(total: 4, spelling: double(words: []))
|
819
|
+
expect(helper.should_show_spellcheck_suggestions? response).to be_false
|
820
|
+
end
|
821
|
+
end
|
747
822
|
end
|
@@ -9,7 +9,7 @@ describe HashAsHiddenFieldsHelper do
|
|
9
9
|
|
10
10
|
it "should convert a hash with nested complex data to Rails-style hidden form fields" do
|
11
11
|
|
12
|
-
generated =
|
12
|
+
generated = render_hash_as_hidden_fields(@hash)
|
13
13
|
|
14
14
|
generated.should have_selector("input[type='hidden'][name='q'][value='query']")
|
15
15
|
generated.should have_selector("input[type='hidden'][name='per_page'][value='10']")
|
data/spec/lib/blacklight_spec.rb
CHANGED
@@ -4,6 +4,10 @@ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
|
|
4
4
|
describe "Blacklight::User" do
|
5
5
|
|
6
6
|
subject { User.create! :email => 'xyz@example.com', :password => 'xyz12345' }
|
7
|
+
|
8
|
+
around(:each) do |example|
|
9
|
+
Deprecation.silence(Blacklight::User) { example.run }
|
10
|
+
end
|
7
11
|
|
8
12
|
def mock_bookmark document_id
|
9
13
|
Bookmark.new :document_id => document_id
|
@@ -32,7 +32,9 @@ describe 'Blacklight::SolrHelper' do
|
|
32
32
|
end
|
33
33
|
|
34
34
|
def blacklight_solr
|
35
|
-
Blacklight
|
35
|
+
Deprecation.silence(Blacklight) {
|
36
|
+
Blacklight.solr
|
37
|
+
}
|
36
38
|
end
|
37
39
|
|
38
40
|
include Blacklight::SolrHelper
|
@@ -566,7 +568,7 @@ describe 'Blacklight::SolrHelper' do
|
|
566
568
|
|
567
569
|
it "should use the configured request handler " do
|
568
570
|
blacklight_config.stub(:default_solr_params).and_return({:qt => 'custom_request_handler'})
|
569
|
-
|
571
|
+
blacklight_solr.should_receive(:send_and_receive) do |path, params|
|
570
572
|
path.should == 'select'
|
571
573
|
params[:params][:'facet.field'].should == ["format", "{!ex=pub_date_single}pub_date", "subject_topic_facet", "language_facet", "lc_1letter_facet", "subject_geo_facet", "subject_era_facet"]
|
572
574
|
params[:params][:"facet.query"].should == ["pub_date:[#{5.years.ago.year} TO *]", "pub_date:[#{10.years.ago.year} TO *]", "pub_date:[#{25.years.ago.year} TO *]"]
|
@@ -860,7 +862,7 @@ describe 'Blacklight::SolrHelper' do
|
|
860
862
|
|
861
863
|
it "should use a provided document request handler " do
|
862
864
|
blacklight_config.stub(:document_solr_request_handler => 'document')
|
863
|
-
|
865
|
+
blacklight_solr.should_receive(:get).with('select', kind_of(Hash)).and_return({'response'=>{'docs'=>[]}})
|
864
866
|
lambda { get_solr_response_for_doc_id(@doc_id)}.should raise_error Blacklight::Exceptions::InvalidSolrID
|
865
867
|
end
|
866
868
|
|
@@ -1090,7 +1092,7 @@ describe 'Blacklight::SolrHelper' do
|
|
1090
1092
|
# more like this
|
1091
1093
|
# nearby on shelf
|
1092
1094
|
it "should raise a Blacklight exception if RSolr can't connect to the Solr instance" do
|
1093
|
-
|
1095
|
+
blacklight_solr.stub(:get).and_raise(Errno::ECONNREFUSED)
|
1094
1096
|
expect { find(:a => 123) }.to raise_exception(/Unable to connect to Solr instance/)
|
1095
1097
|
end
|
1096
1098
|
|
@@ -1156,7 +1158,7 @@ describe 'Blacklight::SolrHelper' do
|
|
1156
1158
|
|
1157
1159
|
it "defaults to get" do
|
1158
1160
|
expect(blacklight_config.http_method).to eq :get
|
1159
|
-
|
1161
|
+
blacklight_solr.should_receive(:send_and_receive) do |path, params|
|
1160
1162
|
expect(path).to eq 'select'
|
1161
1163
|
expect(params[:method]).to eq :get
|
1162
1164
|
expect(params[:params]).to include(:q)
|
@@ -1170,7 +1172,7 @@ describe 'Blacklight::SolrHelper' do
|
|
1170
1172
|
|
1171
1173
|
it "keep value set to post" do
|
1172
1174
|
expect(blacklight_config.http_method).to eq :post
|
1173
|
-
|
1175
|
+
blacklight_solr.should_receive(:send_and_receive) do |path, params|
|
1174
1176
|
expect(path).to eq 'select'
|
1175
1177
|
expect(params[:method]).to eq :post
|
1176
1178
|
expect(params[:data]).to include(:q)
|
data/spec/lib/utils_spec.rb
CHANGED
@@ -34,12 +34,10 @@ describe 'Blacklight::Utils' do
|
|
34
34
|
describe "internal hash table" do
|
35
35
|
before do
|
36
36
|
@h = Blacklight::OpenStructWithHashAccess.new
|
37
|
-
|
38
37
|
@h[:a] = 1
|
39
38
|
@h[:b] = 2
|
40
|
-
|
41
|
-
|
42
39
|
end
|
40
|
+
|
43
41
|
it "should expose the internal hash table" do
|
44
42
|
@h.to_h.should be_a_kind_of(Hash)
|
45
43
|
@h.to_h[:a].should == 1
|
@@ -48,11 +46,43 @@ describe 'Blacklight::Utils' do
|
|
48
46
|
it "should expose keys" do
|
49
47
|
@h.keys.should include(:a, :b)
|
50
48
|
end
|
49
|
+
end
|
50
|
+
|
51
|
+
describe "#merge" do
|
52
|
+
|
53
|
+
before do
|
54
|
+
@h = Blacklight::OpenStructWithHashAccess.new
|
55
|
+
@h[:a] = 1
|
56
|
+
@h[:b] = 2
|
57
|
+
end
|
58
|
+
|
59
|
+
it "should merge the object with a hash" do
|
60
|
+
expect(@h.merge(:a => 'a')[:a]).to eq 'a'
|
61
|
+
end
|
51
62
|
|
52
|
-
it "should
|
53
|
-
@h.merge(:a => 'a')[:a].
|
63
|
+
it "should merge the object with another struct" do
|
64
|
+
expect(@h.merge(Blacklight::OpenStructWithHashAccess.new(:a => 'a'))[:a]).to eq 'a'
|
54
65
|
end
|
66
|
+
end
|
55
67
|
|
68
|
+
|
69
|
+
describe "#merge!" do
|
70
|
+
|
71
|
+
before do
|
72
|
+
@h = Blacklight::OpenStructWithHashAccess.new
|
73
|
+
@h[:a] = 1
|
74
|
+
@h[:b] = 2
|
75
|
+
end
|
76
|
+
|
77
|
+
it "should merge the object with a hash" do
|
78
|
+
@h.merge!(:a => 'a')
|
79
|
+
expect(@h[:a]).to eq 'a'
|
80
|
+
end
|
81
|
+
|
82
|
+
it "should merge the object with another struct" do
|
83
|
+
@h.merge!(Blacklight::OpenStructWithHashAccess.new(:a => 'a'))
|
84
|
+
expect(@h[:a]).to eq 'a'
|
85
|
+
end
|
56
86
|
end
|
57
87
|
end
|
58
88
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blacklight
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.7.0.pre1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jonathan Rochkind
|
@@ -17,7 +17,7 @@ authors:
|
|
17
17
|
autorequire:
|
18
18
|
bindir: bin
|
19
19
|
cert_chain: []
|
20
|
-
date: 2014-
|
20
|
+
date: 2014-02-03 00:00:00.000000000 Z
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
23
23
|
name: rails
|
@@ -139,16 +139,16 @@ dependencies:
|
|
139
139
|
name: deprecation
|
140
140
|
requirement: !ruby/object:Gem::Requirement
|
141
141
|
requirements:
|
142
|
-
- - "
|
142
|
+
- - "~>"
|
143
143
|
- !ruby/object:Gem::Version
|
144
|
-
version: '0'
|
144
|
+
version: '0.1'
|
145
145
|
type: :runtime
|
146
146
|
prerelease: false
|
147
147
|
version_requirements: !ruby/object:Gem::Requirement
|
148
148
|
requirements:
|
149
|
-
- - "
|
149
|
+
- - "~>"
|
150
150
|
- !ruby/object:Gem::Version
|
151
|
-
version: '0'
|
151
|
+
version: '0.1'
|
152
152
|
- !ruby/object:Gem::Dependency
|
153
153
|
name: jettywrapper
|
154
154
|
requirement: !ruby/object:Gem::Requirement
|
@@ -373,6 +373,47 @@ files:
|
|
373
373
|
- config/locales/blacklight.en.yml
|
374
374
|
- config/locales/blacklight.fr.yml
|
375
375
|
- config/routes.rb
|
376
|
+
- doc/Atom-Responses.md
|
377
|
+
- doc/Blacklight-3.0-Release-Notes-And-Upgrade-Guide.md
|
378
|
+
- doc/Blacklight-3.2-Release-Notes-and-Upgrade-Guide.md
|
379
|
+
- doc/Blacklight-3.3-release-notes-and-upgrade-guide.md
|
380
|
+
- doc/Blacklight-3.4-release-notes-and-upgrade-guide.md
|
381
|
+
- doc/Blacklight-3.5-release-notes-and-upgrade-guide.md
|
382
|
+
- doc/Blacklight-3.6-release-notes-and-upgrade-guide.md
|
383
|
+
- doc/Blacklight-3.7-release-notes-and-upgrade-guide.md
|
384
|
+
- doc/Blacklight-3.8-release-notes-and-upgrade-guide.md
|
385
|
+
- doc/Blacklight-4.0-release-notes-and-upgrade-guide.md
|
386
|
+
- doc/Blacklight-4.1-release-notes-and-upgrade-guide.md
|
387
|
+
- doc/Blacklight-4.2-release-notes-and-upgrade-guide.md
|
388
|
+
- doc/Blacklight-4.3-release-notes-and-upgrade-guide.md
|
389
|
+
- doc/Blacklight-4.4-release-notes-and-upgrade-guide.md
|
390
|
+
- doc/Blacklight-Add-ons.md
|
391
|
+
- doc/Blacklight-configuration.md
|
392
|
+
- doc/Blacklight-on-Heroku.md
|
393
|
+
- doc/Code4Lib-2014.md
|
394
|
+
- doc/Community-principles.md
|
395
|
+
- doc/Configuring-and-Customizing-Blacklight.md
|
396
|
+
- doc/Configuring-rails-routes.md
|
397
|
+
- doc/Contributing-to-Blacklight.md
|
398
|
+
- doc/Examples.md
|
399
|
+
- doc/Extending-or-Modifying-Blacklight-Search-Behavior.md
|
400
|
+
- doc/FAQs.md
|
401
|
+
- doc/Home.md
|
402
|
+
- doc/How-to-release-a-version.md
|
403
|
+
- doc/Indexing-your-data-into-solr.md
|
404
|
+
- doc/Integration-with-Rails-Footnotes.md
|
405
|
+
- doc/Internationalization.md
|
406
|
+
- doc/JSON-API.md
|
407
|
+
- doc/Pagination.md
|
408
|
+
- doc/Providing-your-own-view-templates.md
|
409
|
+
- doc/Quickstart.md
|
410
|
+
- doc/README_SOLR.md
|
411
|
+
- doc/Release-Notes-And-Upgrade-Guides.md
|
412
|
+
- doc/Roadmap.md
|
413
|
+
- doc/Sunspot-for-indexing.md
|
414
|
+
- doc/Theming.md
|
415
|
+
- doc/User-Authentication.md
|
416
|
+
- doc/testing.md
|
376
417
|
- gemfiles/rails3.gemfile
|
377
418
|
- gemfiles/rails4.gemfile
|
378
419
|
- lib/SolrMarc.jar
|
@@ -542,9 +583,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
542
583
|
version: '0'
|
543
584
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
544
585
|
requirements:
|
545
|
-
- - "
|
586
|
+
- - ">"
|
546
587
|
- !ruby/object:Gem::Version
|
547
|
-
version:
|
588
|
+
version: 1.3.1
|
548
589
|
requirements: []
|
549
590
|
rubyforge_project: blacklight
|
550
591
|
rubygems_version: 2.2.0
|