radiant-fabulator_exhibit-extension 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +9 -0
- data/README.markdown +3 -0
- data/Rakefile +3 -2
- data/VERSION +1 -1
- data/app/models/fabulator_exhibit.rb +4 -0
- data/fabulator_exhibit_extension.rb +11 -2
- data/lib/tasks/fabulator_exhibit_extension_tasks.rake +30 -0
- data/public/javascripts/fabulator/exhibit/data.js +745 -0
- data/public/javascripts/fabulator/exhibit/exhibit.js +160 -0
- data/public/javascripts/fabulator/exhibit/expressions.js +1028 -0
- data/public/javascripts/fabulator/exhibit/facets.js +579 -0
- data/public/javascripts/fabulator/exhibit/views.js +457 -0
- data/public/stylesheets/fabulator/exhibit/exhibit.css +109 -0
- metadata +49 -10
@@ -0,0 +1,109 @@
|
|
1
|
+
.fabulator-exhibit {
|
2
|
+
}
|
3
|
+
|
4
|
+
.fabulator-exhibit > .header {
|
5
|
+
margin-bottom: 2px;
|
6
|
+
text-align: center;
|
7
|
+
background-color: #f0f0f0;
|
8
|
+
padding-top: 2px;
|
9
|
+
padding-bottom: 2px;
|
10
|
+
}
|
11
|
+
|
12
|
+
.fabulator-exhibit > .header .title {
|
13
|
+
font-weight: bold;
|
14
|
+
font-size: 120%;
|
15
|
+
}
|
16
|
+
|
17
|
+
.fabulator-exhibit > .header .counter {
|
18
|
+
padding-left: 1em;
|
19
|
+
float: left;
|
20
|
+
padding-right: 1em;
|
21
|
+
}
|
22
|
+
|
23
|
+
.fabulator-exhibit > .header .ui-icon {
|
24
|
+
float: right;
|
25
|
+
padding-bottom: 2px;
|
26
|
+
}
|
27
|
+
|
28
|
+
.fabulator-exhibit .views {
|
29
|
+
padding: 2px;
|
30
|
+
}
|
31
|
+
|
32
|
+
.fabulator-exhibit .tile-view table {
|
33
|
+
float: left;
|
34
|
+
width: 49%;
|
35
|
+
}
|
36
|
+
|
37
|
+
.clear {
|
38
|
+
clear: both;
|
39
|
+
}
|
40
|
+
|
41
|
+
.facets-overlay {
|
42
|
+
display: none;
|
43
|
+
|
44
|
+
z-index: 10000;
|
45
|
+
|
46
|
+
background: rgb(255,255,253);
|
47
|
+
background: rgba(255,255,253, 0.95);
|
48
|
+
|
49
|
+
width: 675px;
|
50
|
+
min-height: 200px;
|
51
|
+
border: 1px solid #666;
|
52
|
+
padding: 3px;
|
53
|
+
}
|
54
|
+
|
55
|
+
.facets-overlay a.close {
|
56
|
+
float: right;
|
57
|
+
text-decoration: none;
|
58
|
+
border-bottom: none;
|
59
|
+
}
|
60
|
+
|
61
|
+
.exhibit-facet {
|
62
|
+
margin-top: 5px;
|
63
|
+
}
|
64
|
+
|
65
|
+
.exhibit-facet + .exhibit-facet {
|
66
|
+
clear: left;
|
67
|
+
}
|
68
|
+
|
69
|
+
.exhibit-facet .header {
|
70
|
+
border-bottom: 1px solid #999999;
|
71
|
+
padding-left: 0.5em;
|
72
|
+
}
|
73
|
+
|
74
|
+
.exhibit-facet .body input {
|
75
|
+
margin-top: 5px;
|
76
|
+
margin-left: 5px;
|
77
|
+
}
|
78
|
+
|
79
|
+
.exhibit-facet .body {
|
80
|
+
margin-bottom: 5px;
|
81
|
+
}
|
82
|
+
|
83
|
+
.exhibit-facet-value {
|
84
|
+
float: left;
|
85
|
+
margin-right: 0.25em;
|
86
|
+
margin-left: 0.25em;
|
87
|
+
padding-top: 2px;
|
88
|
+
padding-bottom: 2px;
|
89
|
+
padding-right: 2px;
|
90
|
+
border: 1px solid #cccccc;
|
91
|
+
background-color: #eeeeee;
|
92
|
+
padding-left: 14px;
|
93
|
+
}
|
94
|
+
|
95
|
+
.exhibit-facet-not-selected {
|
96
|
+
background-color: #ffeeee;
|
97
|
+
}
|
98
|
+
|
99
|
+
.exhibit-facet-selected {
|
100
|
+
background-color: #eeffee;
|
101
|
+
padding-left: 2px;
|
102
|
+
}
|
103
|
+
|
104
|
+
.exhibit-facet-value .selected {
|
105
|
+
float: left;
|
106
|
+
width: 12px;
|
107
|
+
display: block;
|
108
|
+
text-align: center;
|
109
|
+
}
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: radiant-fabulator_exhibit-extension
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 27
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 2
|
10
|
+
version: 0.0.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- James Smith
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-
|
18
|
+
date: 2010-10-26 00:00:00 +00:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -26,12 +26,12 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
hash:
|
29
|
+
hash: 19
|
30
30
|
segments:
|
31
31
|
- 0
|
32
32
|
- 0
|
33
|
-
-
|
34
|
-
version: 0.0.
|
33
|
+
- 6
|
34
|
+
version: 0.0.6
|
35
35
|
type: :runtime
|
36
36
|
version_requirements: *id001
|
37
37
|
- !ruby/object:Gem::Dependency
|
@@ -42,14 +42,46 @@ dependencies:
|
|
42
42
|
requirements:
|
43
43
|
- - ">="
|
44
44
|
- !ruby/object:Gem::Version
|
45
|
-
hash:
|
45
|
+
hash: 23
|
46
46
|
segments:
|
47
47
|
- 0
|
48
48
|
- 0
|
49
|
-
-
|
50
|
-
version: 0.0.
|
49
|
+
- 4
|
50
|
+
version: 0.0.4
|
51
51
|
type: :runtime
|
52
52
|
version_requirements: *id002
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
name: json
|
55
|
+
prerelease: false
|
56
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
hash: 1
|
62
|
+
segments:
|
63
|
+
- 1
|
64
|
+
- 4
|
65
|
+
- 3
|
66
|
+
version: 1.4.3
|
67
|
+
type: :runtime
|
68
|
+
version_requirements: *id003
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: uuid
|
71
|
+
prerelease: false
|
72
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ">="
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
hash: 1
|
78
|
+
segments:
|
79
|
+
- 2
|
80
|
+
- 3
|
81
|
+
- 1
|
82
|
+
version: 2.3.1
|
83
|
+
type: :runtime
|
84
|
+
version_requirements: *id004
|
53
85
|
description: Provides storage management for the Fabulator Exhibit extension for use with the Radiant CMS.
|
54
86
|
email: jgsmith@tamu.edu
|
55
87
|
executables: []
|
@@ -75,6 +107,13 @@ files:
|
|
75
107
|
- db/migrate/001_create_fabulator_exhibit_tables.rb
|
76
108
|
- fabulator_exhibit_extension.rb
|
77
109
|
- lib/radiant-fabulator_exhibit-extension.rb
|
110
|
+
- lib/tasks/fabulator_exhibit_extension_tasks.rake
|
111
|
+
- public/javascripts/fabulator/exhibit/data.js
|
112
|
+
- public/javascripts/fabulator/exhibit/exhibit.js
|
113
|
+
- public/javascripts/fabulator/exhibit/expressions.js
|
114
|
+
- public/javascripts/fabulator/exhibit/facets.js
|
115
|
+
- public/javascripts/fabulator/exhibit/views.js
|
116
|
+
- public/stylesheets/fabulator/exhibit/exhibit.css
|
78
117
|
has_rdoc: true
|
79
118
|
homepage: http://github.com/jgsmith/radiant-fabulator-exhibit
|
80
119
|
licenses: []
|