blacklight 5.10.0 → 5.10.1
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 +4 -4
- data/VERSION +1 -1
- data/lib/blacklight/request_builders.rb +10 -6
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a7f53a1699ede1192901e7b778856d418d5d2a63
|
|
4
|
+
data.tar.gz: ba61277b63c26435d6968380da77f6eff2b9a750
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a794b53161610ce820ea601d369de94b7d402a5d193509141594426e67a5caa9014e0ff241a60cf1c46abec03cb1592207706892ca5d0028790c8d8db3874d6
|
|
7
|
+
data.tar.gz: c396a63fb09a1f128bdc0843bcc3610e01e5ea814b3d33492e8f80b841f5d560d1d6095ff0546bc6d89aee9b4475dacb528f7b689c344e7ce57b679d7e513c9f
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.10.
|
|
1
|
+
5.10.1
|
|
@@ -17,12 +17,6 @@ module Blacklight
|
|
|
17
17
|
# we choose this one for now, supplied by Rails.
|
|
18
18
|
class_attribute :search_params_logic
|
|
19
19
|
|
|
20
|
-
alias_method :solr_search_params_logic, :search_params_logic
|
|
21
|
-
deprecation_deprecate solr_search_params_logic: :search_params_logic
|
|
22
|
-
|
|
23
|
-
alias_method :solr_search_params_logic=, :search_params_logic=
|
|
24
|
-
deprecation_deprecate :solr_search_params_logic= => :search_params_logic=
|
|
25
|
-
|
|
26
20
|
# Set defaults. Each symbol identifies a _method_ that must be in
|
|
27
21
|
# this class, taking two parameters (solr_parameters, user_parameters)
|
|
28
22
|
# Can be changed in local apps or by plugins, eg:
|
|
@@ -51,6 +45,16 @@ module Blacklight
|
|
|
51
45
|
deprecation_deprecate :solr_search_params_logic= => :search_params_logic=
|
|
52
46
|
end
|
|
53
47
|
|
|
48
|
+
def solr_search_params_logic
|
|
49
|
+
search_params_logic
|
|
50
|
+
end
|
|
51
|
+
deprecation_deprecate solr_search_params_logic: :search_params_logic
|
|
52
|
+
|
|
53
|
+
def solr_search_params_logic= logic
|
|
54
|
+
self.search_params_logic= logic
|
|
55
|
+
end
|
|
56
|
+
deprecation_deprecate :solr_search_params_logic= => :search_params_logic=
|
|
57
|
+
|
|
54
58
|
def search_builder_class
|
|
55
59
|
blacklight_config.search_builder_class
|
|
56
60
|
end
|