radiant-page_list_view-extension 0.9.1 → 0.9.2
Sign up to get free protection for your applications and to get access to all the features.
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.9.2
|
@@ -0,0 +1,19 @@
|
|
1
|
+
- content_for :page_css do
|
2
|
+
:sass
|
3
|
+
#content
|
4
|
+
table.index.sortable
|
5
|
+
th
|
6
|
+
padding: 2px 14px
|
7
|
+
background-position: 98% center
|
8
|
+
background-repeat: no-repeat
|
9
|
+
&.sortasc
|
10
|
+
background-image: url(/images/admin/move_lower.png)
|
11
|
+
background-color: #ccc
|
12
|
+
&.sortdesc
|
13
|
+
background-image: url(/images/admin/move_higher.png)
|
14
|
+
background-color: #ccc
|
15
|
+
a
|
16
|
+
color: white
|
17
|
+
text-decoration: underline
|
18
|
+
&:hover
|
19
|
+
text-decoration: none
|
@@ -23,22 +23,4 @@
|
|
23
23
|
- unless @pages.any?
|
24
24
|
%li= link_to image('plus') + " " + t("new_homepage"), new_admin_page_path, :class => 'action_button'
|
25
25
|
|
26
|
-
|
27
|
-
:sass
|
28
|
-
#content
|
29
|
-
table.index.sortable
|
30
|
-
th
|
31
|
-
padding: 2px 14px
|
32
|
-
background-position: 98% center
|
33
|
-
background-repeat: no-repeat
|
34
|
-
&.sortasc
|
35
|
-
background-image: url(/images/admin/move_lower.png)
|
36
|
-
background-color: #ccc
|
37
|
-
&.sortdesc
|
38
|
-
background-image: url(/images/admin/move_higher.png)
|
39
|
-
background-color: #ccc
|
40
|
-
a
|
41
|
-
color: white
|
42
|
-
text-decoration: underline
|
43
|
-
&:hover
|
44
|
-
text-decoration: none
|
26
|
+
= render :partial => 'page_list_view_styles'
|
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{radiant-page_list_view-extension}
|
8
|
-
s.version = "0.9.
|
8
|
+
s.version = "0.9.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Andrew vonderLuft", "Sean Cribbs"]
|
12
|
-
s.date = %q{2011-04-
|
12
|
+
s.date = %q{2011-04-22}
|
13
13
|
s.description = %q{Enables viewing site pages in a list sortable by attibute.}
|
14
14
|
s.email = %q{avonderluft@avlux.net}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -20,8 +20,10 @@ Gem::Specification.new do |s|
|
|
20
20
|
"HELP.textile",
|
21
21
|
"README.textile",
|
22
22
|
"Rakefile",
|
23
|
+
"VERSION",
|
23
24
|
"app/helpers/admin/list_view_helper.rb",
|
24
25
|
"app/views/admin/pages/_page.html.haml",
|
26
|
+
"app/views/admin/pages/_page_list_view_styles.html.haml",
|
25
27
|
"app/views/admin/pages/page_list_view.html.haml",
|
26
28
|
"config/routes.rb",
|
27
29
|
"lib/page_list_view/admin_page_controller_extensions.rb",
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: radiant-page_list_view-extension
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 63
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 9
|
9
|
-
-
|
10
|
-
version: 0.9.
|
9
|
+
- 2
|
10
|
+
version: 0.9.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Andrew vonderLuft
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2011-04-
|
19
|
+
date: 2011-04-22 00:00:00 -07:00
|
20
20
|
default_executable:
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
@@ -48,15 +48,16 @@ files:
|
|
48
48
|
- HELP.textile
|
49
49
|
- README.textile
|
50
50
|
- Rakefile
|
51
|
+
- VERSION
|
51
52
|
- app/helpers/admin/list_view_helper.rb
|
52
53
|
- app/views/admin/pages/_page.html.haml
|
54
|
+
- app/views/admin/pages/_page_list_view_styles.html.haml
|
53
55
|
- app/views/admin/pages/page_list_view.html.haml
|
54
56
|
- config/routes.rb
|
55
57
|
- lib/page_list_view/admin_page_controller_extensions.rb
|
56
58
|
- lib/page_list_view/page_extensions.rb
|
57
59
|
- lib/tasks/page_list_view_extension_tasks.rake
|
58
60
|
- page_list_view_extension.rb
|
59
|
-
- pkg/radiant-page_list_view-extension-0.9.1.gem
|
60
61
|
- public/images/admin/application_cascade.png
|
61
62
|
- public/images/admin/application_side_tree.png
|
62
63
|
- public/images/admin/application_view_detail.png
|
Binary file
|