blacklight 3.2.0pre2 → 3.2.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.
- data/VERSION +1 -1
- data/app/assets/stylesheets/blacklight/_blacklight_base.css.scss +26 -0
- data/app/assets/stylesheets/blacklight/_header.css.scss +1 -1
- data/app/assets/stylesheets/blacklight/_layout.css.scss +1 -62
- data/app/assets/stylesheets/blacklight/_mixins.css.scss +0 -0
- data/app/assets/stylesheets/blacklight/blacklight.css.scss +3 -26
- data/app/assets/stylesheets/blacklight/blacklight_defaults.css.scss +2 -9
- data/app/assets/stylesheets/blacklight/grids/_susy.css.scss +72 -0
- data/app/assets/stylesheets/blacklight/{_susy_framework.css.scss → grids/_susy_framework.css.scss} +0 -0
- data/lib/blacklight.rb +1 -3
- data/lib/blacklight/kaminari_relevant_pages_patch.rb +4 -1
- data/lib/blacklight/solr/document/marc.rb +1 -0
- data/lib/generators/blacklight/assets_generator.rb +4 -4
- data/lib/generators/blacklight/templates/assets/standard.css.scss +31 -23
- data/test_support/features/did_you_mean.feature +22 -29
- metadata +33 -27
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.2.
|
|
1
|
+
3.2.0
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
|
|
2
|
+
/* This file is generated by Blacklight. You probably don't want to edit
|
|
3
|
+
this file directly, or you'll have to manually merge your changes if later
|
|
4
|
+
versions of Blacklight change this file. Instead, use your own CSS file
|
|
5
|
+
which over-rides things in this file. Or of course you can choose
|
|
6
|
+
not to use the Blacklight CSS file at all in your local app. */
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@import "compass";
|
|
10
|
+
@import "compass/reset";
|
|
11
|
+
|
|
12
|
+
@import 'blacklight/blacklight_defaults';
|
|
13
|
+
|
|
14
|
+
/* Import this to maintain the old YUI font styles */
|
|
15
|
+
@import "blacklight/layout";
|
|
16
|
+
@import "blacklight/formatting";
|
|
17
|
+
@import "blacklight/header";
|
|
18
|
+
@import "blacklight/catalog";
|
|
19
|
+
@import "blacklight/facets";
|
|
20
|
+
@import "blacklight/folder";
|
|
21
|
+
@import "blacklight/search_history";
|
|
22
|
+
@import "blacklight/print";
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
/* IE 6 Adjustments */
|
|
26
|
+
* html #search {left: -1.8em;}
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
@import "blacklight/susy_framework";
|
|
2
|
-
@import "compass/utilities";
|
|
3
1
|
|
|
4
2
|
/* Generic layout stuff */
|
|
5
3
|
.hide
|
|
@@ -10,7 +8,7 @@
|
|
|
10
8
|
/* Global */
|
|
11
9
|
body
|
|
12
10
|
{
|
|
13
|
-
background: asset_url(
|
|
11
|
+
background: asset_url($background_image,image) repeat-x top left;
|
|
14
12
|
background-color: #707070;
|
|
15
13
|
font: 0.7em Verdana, "Lucida Grande", "Lucida Sans Unicode", "Arial Unicode MS", Arial, sans-serif;
|
|
16
14
|
line-height: 1.4;
|
|
@@ -18,62 +16,3 @@ body
|
|
|
18
16
|
padding: 15px;
|
|
19
17
|
}
|
|
20
18
|
|
|
21
|
-
/* Header Container Layout */
|
|
22
|
-
#page
|
|
23
|
-
{
|
|
24
|
-
@include container;
|
|
25
|
-
background: #fff asset_url('blacklight/border.png',image) repeat-x top left;
|
|
26
|
-
margin: 0px auto;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
#hd
|
|
30
|
-
{
|
|
31
|
-
@include full;
|
|
32
|
-
@include clearfix;
|
|
33
|
-
padding: 2em 0 2em 0;
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
#logo
|
|
37
|
-
{
|
|
38
|
-
@include columns(12,24);
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
#user_util_links
|
|
42
|
-
{
|
|
43
|
-
text-align: right;
|
|
44
|
-
@include columns(12,24);
|
|
45
|
-
@include omega(24);
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
#bd
|
|
50
|
-
{
|
|
51
|
-
@include full;
|
|
52
|
-
@include clearfix;
|
|
53
|
-
margin-bottom: 2em;
|
|
54
|
-
|
|
55
|
-
#main
|
|
56
|
-
{
|
|
57
|
-
@include prefix(1,24);
|
|
58
|
-
@include columns(18,24);
|
|
59
|
-
@include omega(24);
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
#sidebar
|
|
63
|
-
{
|
|
64
|
-
@include columns(5,24);
|
|
65
|
-
@include clearfix;
|
|
66
|
-
|
|
67
|
-
p
|
|
68
|
-
{
|
|
69
|
-
padding-top: 2em;
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
#ft {
|
|
75
|
-
@include full;
|
|
76
|
-
@include clearfix;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
|
|
File without changes
|
|
@@ -1,27 +1,4 @@
|
|
|
1
|
-
/* This
|
|
2
|
-
this file directly, or you'll have to manually merge your changes if later
|
|
3
|
-
versions of Blacklight change this file. Instead, use your own CSS file
|
|
4
|
-
which over-rides things in this file. Or of course you can choose
|
|
5
|
-
not to use the Blacklight CSS file at all in your local app. */
|
|
1
|
+
/* This is the default blacklight theme. */
|
|
6
2
|
|
|
7
|
-
|
|
8
|
-
@import
|
|
9
|
-
@import "compass/reset";
|
|
10
|
-
|
|
11
|
-
@import 'blacklight/blacklight_defaults';
|
|
12
|
-
|
|
13
|
-
/* Import this to maintain the old YUI font styles */
|
|
14
|
-
@import "blacklight/layout";
|
|
15
|
-
@import "blacklight/formatting";
|
|
16
|
-
@import "blacklight/header";
|
|
17
|
-
@import "blacklight/catalog";
|
|
18
|
-
@import "blacklight/facets";
|
|
19
|
-
@import "blacklight/folder";
|
|
20
|
-
@import "blacklight/search_history";
|
|
21
|
-
@import "blacklight/print";
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
/* IE 6 Adjustments */
|
|
25
|
-
* html #hd .yui-g .yui-u {margin-top: -5em;}
|
|
26
|
-
* html #hd .yui-g .first {margin-top: 2em;}
|
|
27
|
-
* html #search {left: -1.8em;}
|
|
3
|
+
@import 'blacklight/grids/susy';
|
|
4
|
+
@import 'blacklight/blacklight_base';
|
|
@@ -1,16 +1,9 @@
|
|
|
1
1
|
/* Warning! If you want to change these, just copy them into your own theme css. But you want to remove the !default, which only will set them if not already set. */
|
|
2
2
|
|
|
3
|
-
/* Grid parameters */
|
|
4
|
-
/* changing total cols is not recommended unless you're going to redo blacklight/_layout.css.sass */
|
|
5
|
-
$total-cols: 24 !default;
|
|
6
3
|
|
|
7
|
-
/* But the widths are changeable to px, em. */
|
|
8
|
-
$col-width: 2.5em !default;
|
|
9
|
-
$gutter-width: .5em !default;
|
|
10
|
-
$side-gutter-width: 2em !default;
|
|
11
4
|
|
|
12
|
-
|
|
13
|
-
$
|
|
5
|
+
$background_image: 'blacklight/bg.png' !default;
|
|
6
|
+
$logo_image: 'blacklight/logo.png' !default;
|
|
14
7
|
|
|
15
8
|
/* Various elements of search customization share these colors */
|
|
16
9
|
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
|
|
2
|
+
/* Grid parameters */
|
|
3
|
+
/* changing total cols is not recommended unless you're going to redo blacklight/_layout.css.sass */
|
|
4
|
+
$total-cols: 24 !default;
|
|
5
|
+
|
|
6
|
+
/* But the widths are changeable to px, em. */
|
|
7
|
+
$col-width: 2.5em !default;
|
|
8
|
+
$gutter-width: .5em !default;
|
|
9
|
+
$side-gutter-width: 2em !default;
|
|
10
|
+
|
|
11
|
+
@import "blacklight/grids/susy_framework";
|
|
12
|
+
@import "compass/utilities";
|
|
13
|
+
|
|
14
|
+
/* Header Container Layout */
|
|
15
|
+
#page
|
|
16
|
+
{
|
|
17
|
+
@include container;
|
|
18
|
+
background: #fff asset_url('blacklight/border.png',image) repeat-x top left;
|
|
19
|
+
margin: 0px auto;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
#hd
|
|
23
|
+
{
|
|
24
|
+
@include full;
|
|
25
|
+
@include clearfix;
|
|
26
|
+
padding: 2em 0 2em 0;
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
#logo
|
|
30
|
+
{
|
|
31
|
+
@include columns(12,24);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
#user_util_links
|
|
35
|
+
{
|
|
36
|
+
text-align: right;
|
|
37
|
+
@include columns(12,24);
|
|
38
|
+
@include omega(24);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
#bd
|
|
43
|
+
{
|
|
44
|
+
@include full;
|
|
45
|
+
@include clearfix;
|
|
46
|
+
margin-bottom: 2em;
|
|
47
|
+
|
|
48
|
+
#main
|
|
49
|
+
{
|
|
50
|
+
@include prefix(1,24);
|
|
51
|
+
@include columns(18,24);
|
|
52
|
+
@include omega(24);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
#sidebar
|
|
56
|
+
{
|
|
57
|
+
@include columns(5,24);
|
|
58
|
+
@include clearfix;
|
|
59
|
+
|
|
60
|
+
p
|
|
61
|
+
{
|
|
62
|
+
padding-top: 2em;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
#ft {
|
|
68
|
+
@include full;
|
|
69
|
+
@include clearfix;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
|
data/app/assets/stylesheets/blacklight/{_susy_framework.css.scss → grids/_susy_framework.css.scss}
RENAMED
|
File without changes
|
data/lib/blacklight.rb
CHANGED
|
@@ -34,4 +34,7 @@ module Blacklight
|
|
|
34
34
|
end
|
|
35
35
|
end
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
require 'kaminari'
|
|
38
|
+
if Gem.loaded_specs['kaminari'].version <= Gem::Version.create('0.12.4')
|
|
39
|
+
Kaminari::Helpers::Paginator.send(:include, Blacklight::KaminariRelevantPagesPatch)
|
|
40
|
+
end
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
# SolrDocument.extension_paramters[:marc_source_field] = "name_of_solr_stored_field"
|
|
18
18
|
# SolrDocument.extension_parameters[:marc_format_type] = :marc21 # or :marcxml
|
|
19
19
|
module Blacklight::Solr::Document::Marc
|
|
20
|
+
require 'marc'
|
|
20
21
|
|
|
21
22
|
include Blacklight::Solr::Document::MarcExport # All our export_as stuff based on to_marc.
|
|
22
23
|
|
|
@@ -23,11 +23,11 @@ module Blacklight
|
|
|
23
23
|
%q{
|
|
24
24
|
* Required by Blacklight:
|
|
25
25
|
*= require 'jquery/ui-lightness/jquery-ui-1.8.1.custom.css'
|
|
26
|
-
* This is the standard blacklight theme.
|
|
27
|
-
*= require 'blacklight/blacklight'
|
|
28
26
|
*
|
|
29
|
-
*
|
|
30
|
-
*
|
|
27
|
+
* This is the default theme. You can modify many of the settings
|
|
28
|
+
* by editing your local app/assets/stylesheets/blacklight_themes/standard.css
|
|
29
|
+
*= require 'blacklight_themes/standard'
|
|
30
|
+
*}
|
|
31
31
|
end
|
|
32
32
|
end
|
|
33
33
|
|
|
@@ -1,51 +1,59 @@
|
|
|
1
|
+
// All the parameters below are the defaults assumed by blacklight. If you want
|
|
2
|
+
// to change one, uncomment and change.
|
|
3
|
+
|
|
4
|
+
// The default grid used is the susy framework. (http://susy.oddbird.net)
|
|
1
5
|
|
|
2
6
|
/* Grid parameters */
|
|
3
7
|
/* changing total cols is not recommended unless you're going to redo blacklight/_layout.css.sass */
|
|
4
|
-
$total-cols: 24;
|
|
8
|
+
// $total-cols: 24;
|
|
5
9
|
|
|
6
10
|
/* But the widths are changeable to px, em. */
|
|
7
|
-
$col-width: 2.5em;
|
|
8
|
-
$gutter-width: .5em;
|
|
9
|
-
$side-gutter-width: 2em;
|
|
11
|
+
// $col-width: 2.5em;
|
|
12
|
+
// $gutter-width: .5em;
|
|
13
|
+
// $side-gutter-width: 2em;
|
|
10
14
|
|
|
15
|
+
@import 'blacklight/grids/susy';
|
|
11
16
|
|
|
12
|
-
$
|
|
17
|
+
// $background_image: 'blacklight/bg.png';
|
|
18
|
+
// $logo_image: 'blacklight/logo.png';
|
|
13
19
|
|
|
14
20
|
/* Various elements of search customization share these colors */
|
|
15
21
|
|
|
16
|
-
$search_ui_border_color: #AAAAAA;
|
|
17
|
-
$search_ui_bg_color: #F0F0F0;
|
|
22
|
+
// $search_ui_border_color: #AAAAAA;
|
|
23
|
+
// $search_ui_bg_color: #F0F0F0;
|
|
18
24
|
|
|
19
25
|
/* separates documents, facets */
|
|
20
|
-
$dotted_border_color: #CCC;
|
|
26
|
+
// $dotted_border_color: #CCC;
|
|
21
27
|
|
|
22
28
|
/* background color of page */
|
|
23
|
-
$page_bg_color: #2E4F81;
|
|
29
|
+
// $page_bg_color: #2E4F81;
|
|
24
30
|
|
|
25
31
|
|
|
26
32
|
/* label (field names) */
|
|
27
|
-
$field_name_color: #888;
|
|
33
|
+
// $field_name_color: #888;
|
|
28
34
|
|
|
29
35
|
|
|
30
36
|
/* constraint (you searched for:) details: */
|
|
31
37
|
|
|
32
|
-
$constraint_bg_color: #E2EDFE;
|
|
38
|
+
// $constraint_bg_color: #E2EDFE;
|
|
33
39
|
|
|
34
|
-
$constraint_border_color: #C4DAFE;
|
|
35
|
-
$constraint_border_active_color: #FFD27A;
|
|
40
|
+
// $constraint_border_color: #C4DAFE;
|
|
41
|
+
// $constraint_border_active_color: #FFD27A;
|
|
36
42
|
|
|
37
43
|
/* dialog that pops up when you pick more on facets */
|
|
38
|
-
$facet_extended_button_bg_color: #F6F6F6;
|
|
39
|
-
$facet_extended_button_border_color: #CCC;
|
|
40
|
-
$facet_extended_disabled_button_bg_color: #E2EDFE;
|
|
41
|
-
$facet_extended_disabled_border_color: #C4DAFE;
|
|
42
|
-
$facet_extended_button_hover_bg_color: #DADADA;
|
|
43
|
-
$facet_extended_button_hover_border_color: #999;
|
|
44
|
-
$facet_extended_button_hover_color: #212121;
|
|
44
|
+
// $facet_extended_button_bg_color: #F6F6F6;
|
|
45
|
+
// $facet_extended_button_border_color: #CCC;
|
|
46
|
+
// $facet_extended_disabled_button_bg_color: #E2EDFE;
|
|
47
|
+
// $facet_extended_disabled_border_color: #C4DAFE;
|
|
48
|
+
// $facet_extended_button_hover_bg_color: #DADADA;
|
|
49
|
+
// $facet_extended_button_hover_border_color: #999;
|
|
50
|
+
// $facet_extended_button_hover_color: #212121;
|
|
45
51
|
|
|
46
52
|
/* border between items on marc view */
|
|
47
|
-
$marc_item_separator: 1px solid #CCC;
|
|
53
|
+
// $marc_item_separator: 1px solid #CCC;
|
|
48
54
|
|
|
49
|
-
|
|
50
|
-
@import 'blacklight/
|
|
55
|
+
// Currently unused, but this import handles mixins common to blacklight
|
|
56
|
+
@import 'blacklight/mixins';
|
|
51
57
|
|
|
58
|
+
// And then this imports the base blacklight stylesheet.
|
|
59
|
+
@import 'blacklight/blacklight_base';
|
|
@@ -22,10 +22,7 @@ Feature: Did You Mean
|
|
|
22
22
|
Then I should see "Did you mean"
|
|
23
23
|
When I follow "yehudiyim"
|
|
24
24
|
Then I should get results
|
|
25
|
-
|
|
26
|
-
# (it works in the code)
|
|
27
|
-
# TODO: false positive?
|
|
28
|
-
# And I should see select list "select#search_field" with "Title" selected
|
|
25
|
+
And I should see select list "select#search_field" with "Title" selected
|
|
29
26
|
|
|
30
27
|
Scenario: Author search - No Results with spelling suggestion
|
|
31
28
|
When I am on the home page
|
|
@@ -36,10 +33,7 @@ Feature: Did You Mean
|
|
|
36
33
|
Then I should see "Did you mean"
|
|
37
34
|
When I follow "sharma"
|
|
38
35
|
Then I should get results
|
|
39
|
-
|
|
40
|
-
# (it works in the code)
|
|
41
|
-
# TODO: false positive?
|
|
42
|
-
#And I should see select list "select#search_field" with "Author" selected
|
|
36
|
+
And I should see select list "select#search_field" with "Author" selected
|
|
43
37
|
|
|
44
38
|
Scenario: Subject search - No Results with spelling suggestion
|
|
45
39
|
When I am on the home page
|
|
@@ -50,8 +44,7 @@ Feature: Did You Mean
|
|
|
50
44
|
Then I should see "Did you mean"
|
|
51
45
|
When I follow "women"
|
|
52
46
|
Then I should get results
|
|
53
|
-
|
|
54
|
-
# (it works in the code)
|
|
47
|
+
And I should see select list "select#search_field" with "Subject" selected
|
|
55
48
|
|
|
56
49
|
Scenario: No Results - and no close spelling suggestions
|
|
57
50
|
When I am on the home page
|
|
@@ -77,17 +70,15 @@ Feature: Did You Mean
|
|
|
77
70
|
When I follow "bon"
|
|
78
71
|
Then I should get results
|
|
79
72
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
#
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
# When I follow "bya"
|
|
90
|
-
# Then I should get results
|
|
73
|
+
Scenario: Num Results low enough to warrant spelling suggestion
|
|
74
|
+
Given I am on the home page
|
|
75
|
+
# ayaz gives a single results; bya gives more
|
|
76
|
+
And I fill in "q" with "ayaz"
|
|
77
|
+
And I press "search"
|
|
78
|
+
Then I should get results
|
|
79
|
+
And I should see "Did you mean"
|
|
80
|
+
When I follow "bya"
|
|
81
|
+
Then I should get results
|
|
91
82
|
|
|
92
83
|
Scenario: Too many results for spelling suggestion
|
|
93
84
|
Given I am on the home page
|
|
@@ -96,14 +87,16 @@ Feature: Did You Mean
|
|
|
96
87
|
And I press "search"
|
|
97
88
|
Then I should not see "Did you mean"
|
|
98
89
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
#
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
90
|
+
Scenario: Exact Threshold number of results for spelling suggestion
|
|
91
|
+
Given I am on the home page
|
|
92
|
+
# polit gives 5 results in 30 record demo index - 5 is default cutoff
|
|
93
|
+
And I fill in "q" with "polit"
|
|
94
|
+
And I press "search"
|
|
95
|
+
Then I should see "Did you mean"
|
|
96
|
+
|
|
97
|
+
## can't get this to work with solr 3.4
|
|
98
|
+
## (something to do with the stemming for search fields vs dictionary fields)
|
|
99
|
+
## rsolr-ext doesn't expose enough of the solr return to filter within Blacklight either
|
|
107
100
|
# Scenario: Same number of results as spelling suggestion
|
|
108
101
|
# Given I am on the home page
|
|
109
102
|
# # den gives 1 result in 30 record demo index - suggestion don is 1 result also
|
metadata
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: blacklight
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.2.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 3.2.0
|
|
5
|
+
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Jonathan Rochkind
|
|
@@ -16,11 +16,11 @@ authors:
|
|
|
16
16
|
autorequire:
|
|
17
17
|
bindir: bin
|
|
18
18
|
cert_chain: []
|
|
19
|
-
date: 2011-12-
|
|
19
|
+
date: 2011-12-15 00:00:00.000000000 Z
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
22
22
|
name: rails
|
|
23
|
-
requirement: &
|
|
23
|
+
requirement: &2152785840 !ruby/object:Gem::Requirement
|
|
24
24
|
none: false
|
|
25
25
|
requirements:
|
|
26
26
|
- - ~>
|
|
@@ -28,10 +28,10 @@ dependencies:
|
|
|
28
28
|
version: 3.1.1
|
|
29
29
|
type: :runtime
|
|
30
30
|
prerelease: false
|
|
31
|
-
version_requirements: *
|
|
31
|
+
version_requirements: *2152785840
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: nokogiri
|
|
34
|
-
requirement: &
|
|
34
|
+
requirement: &2152785260 !ruby/object:Gem::Requirement
|
|
35
35
|
none: false
|
|
36
36
|
requirements:
|
|
37
37
|
- - ~>
|
|
@@ -39,10 +39,10 @@ dependencies:
|
|
|
39
39
|
version: '1.5'
|
|
40
40
|
type: :runtime
|
|
41
41
|
prerelease: false
|
|
42
|
-
version_requirements: *
|
|
42
|
+
version_requirements: *2152785260
|
|
43
43
|
- !ruby/object:Gem::Dependency
|
|
44
44
|
name: unicode
|
|
45
|
-
requirement: &
|
|
45
|
+
requirement: &2152820780 !ruby/object:Gem::Requirement
|
|
46
46
|
none: false
|
|
47
47
|
requirements:
|
|
48
48
|
- - ! '>='
|
|
@@ -50,10 +50,10 @@ dependencies:
|
|
|
50
50
|
version: '0'
|
|
51
51
|
type: :runtime
|
|
52
52
|
prerelease: false
|
|
53
|
-
version_requirements: *
|
|
53
|
+
version_requirements: *2152820780
|
|
54
54
|
- !ruby/object:Gem::Dependency
|
|
55
55
|
name: marc
|
|
56
|
-
requirement: &
|
|
56
|
+
requirement: &2152813900 !ruby/object:Gem::Requirement
|
|
57
57
|
none: false
|
|
58
58
|
requirements:
|
|
59
59
|
- - ~>
|
|
@@ -61,10 +61,10 @@ dependencies:
|
|
|
61
61
|
version: 0.4.3
|
|
62
62
|
type: :runtime
|
|
63
63
|
prerelease: false
|
|
64
|
-
version_requirements: *
|
|
64
|
+
version_requirements: *2152813900
|
|
65
65
|
- !ruby/object:Gem::Dependency
|
|
66
66
|
name: rsolr
|
|
67
|
-
requirement: &
|
|
67
|
+
requirement: &2152828760 !ruby/object:Gem::Requirement
|
|
68
68
|
none: false
|
|
69
69
|
requirements:
|
|
70
70
|
- - ~>
|
|
@@ -72,10 +72,10 @@ dependencies:
|
|
|
72
72
|
version: 1.0.6
|
|
73
73
|
type: :runtime
|
|
74
74
|
prerelease: false
|
|
75
|
-
version_requirements: *
|
|
75
|
+
version_requirements: *2152828760
|
|
76
76
|
- !ruby/object:Gem::Dependency
|
|
77
77
|
name: rsolr-ext
|
|
78
|
-
requirement: &
|
|
78
|
+
requirement: &2152828120 !ruby/object:Gem::Requirement
|
|
79
79
|
none: false
|
|
80
80
|
requirements:
|
|
81
81
|
- - ~>
|
|
@@ -83,10 +83,10 @@ dependencies:
|
|
|
83
83
|
version: 1.0.3
|
|
84
84
|
type: :runtime
|
|
85
85
|
prerelease: false
|
|
86
|
-
version_requirements: *
|
|
86
|
+
version_requirements: *2152828120
|
|
87
87
|
- !ruby/object:Gem::Dependency
|
|
88
88
|
name: kaminari
|
|
89
|
-
requirement: &
|
|
89
|
+
requirement: &2152827400 !ruby/object:Gem::Requirement
|
|
90
90
|
none: false
|
|
91
91
|
requirements:
|
|
92
92
|
- - ! '>='
|
|
@@ -94,10 +94,10 @@ dependencies:
|
|
|
94
94
|
version: '0'
|
|
95
95
|
type: :runtime
|
|
96
96
|
prerelease: false
|
|
97
|
-
version_requirements: *
|
|
97
|
+
version_requirements: *2152827400
|
|
98
98
|
- !ruby/object:Gem::Dependency
|
|
99
99
|
name: sass-rails
|
|
100
|
-
requirement: &
|
|
100
|
+
requirement: &2152826720 !ruby/object:Gem::Requirement
|
|
101
101
|
none: false
|
|
102
102
|
requirements:
|
|
103
103
|
- - ~>
|
|
@@ -105,10 +105,10 @@ dependencies:
|
|
|
105
105
|
version: 3.1.1
|
|
106
106
|
type: :runtime
|
|
107
107
|
prerelease: false
|
|
108
|
-
version_requirements: *
|
|
108
|
+
version_requirements: *2152826720
|
|
109
109
|
- !ruby/object:Gem::Dependency
|
|
110
110
|
name: jettywrapper
|
|
111
|
-
requirement: &
|
|
111
|
+
requirement: &2152826120 !ruby/object:Gem::Requirement
|
|
112
112
|
none: false
|
|
113
113
|
requirements:
|
|
114
114
|
- - ! '>='
|
|
@@ -116,10 +116,10 @@ dependencies:
|
|
|
116
116
|
version: 1.2.0
|
|
117
117
|
type: :development
|
|
118
118
|
prerelease: false
|
|
119
|
-
version_requirements: *
|
|
119
|
+
version_requirements: *2152826120
|
|
120
120
|
- !ruby/object:Gem::Dependency
|
|
121
121
|
name: compass
|
|
122
|
-
requirement: &
|
|
122
|
+
requirement: &2152825320 !ruby/object:Gem::Requirement
|
|
123
123
|
none: false
|
|
124
124
|
requirements:
|
|
125
125
|
- - ! '>='
|
|
@@ -127,7 +127,7 @@ dependencies:
|
|
|
127
127
|
version: 0.12.alpha.2
|
|
128
128
|
type: :runtime
|
|
129
129
|
prerelease: false
|
|
130
|
-
version_requirements: *
|
|
130
|
+
version_requirements: *2152825320
|
|
131
131
|
description: Blacklight is a free and open source ruby-on-rails based discovery interface
|
|
132
132
|
(a.k.a. “next-generation catalog”) especially optimized for heterogeneous collections.
|
|
133
133
|
You can use it as a library catalog, as a front end for a digital repository, or
|
|
@@ -160,17 +160,20 @@ files:
|
|
|
160
160
|
- app/assets/javascripts/blacklight/blacklight.js
|
|
161
161
|
- app/assets/javascripts/jquery-1.4.2.min.js
|
|
162
162
|
- app/assets/javascripts/jquery-ui-1.8.1.custom.min.js
|
|
163
|
+
- app/assets/stylesheets/blacklight/_blacklight_base.css.scss
|
|
163
164
|
- app/assets/stylesheets/blacklight/_catalog.css.scss
|
|
164
165
|
- app/assets/stylesheets/blacklight/_facets.css.scss
|
|
165
166
|
- app/assets/stylesheets/blacklight/_folder.css.scss
|
|
166
167
|
- app/assets/stylesheets/blacklight/_formatting.css.scss
|
|
167
168
|
- app/assets/stylesheets/blacklight/_header.css.scss
|
|
168
169
|
- app/assets/stylesheets/blacklight/_layout.css.scss
|
|
170
|
+
- app/assets/stylesheets/blacklight/_mixins.css.scss
|
|
169
171
|
- app/assets/stylesheets/blacklight/_print.css.scss
|
|
170
172
|
- app/assets/stylesheets/blacklight/_search_history.css.scss
|
|
171
|
-
- app/assets/stylesheets/blacklight/_susy_framework.css.scss
|
|
172
173
|
- app/assets/stylesheets/blacklight/blacklight.css.scss
|
|
173
174
|
- app/assets/stylesheets/blacklight/blacklight_defaults.css.scss
|
|
175
|
+
- app/assets/stylesheets/blacklight/grids/_susy.css.scss
|
|
176
|
+
- app/assets/stylesheets/blacklight/grids/_susy_framework.css.scss
|
|
174
177
|
- app/assets/stylesheets/jquery/ui-lightness/images/ui-anim_basic_16x16.gif
|
|
175
178
|
- app/assets/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
|
|
176
179
|
- app/assets/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
|
|
@@ -432,13 +435,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
432
435
|
version: '0'
|
|
433
436
|
segments:
|
|
434
437
|
- 0
|
|
435
|
-
hash: -
|
|
438
|
+
hash: -4385228888453993087
|
|
436
439
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
437
440
|
none: false
|
|
438
441
|
requirements:
|
|
439
|
-
- - ! '
|
|
442
|
+
- - ! '>='
|
|
440
443
|
- !ruby/object:Gem::Version
|
|
441
|
-
version:
|
|
444
|
+
version: '0'
|
|
445
|
+
segments:
|
|
446
|
+
- 0
|
|
447
|
+
hash: -4385228888453993087
|
|
442
448
|
requirements: []
|
|
443
449
|
rubyforge_project: blacklight
|
|
444
450
|
rubygems_version: 1.8.10
|