refinerycms 0.9.5.29 → 0.9.5.30
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +7 -1
- data/.yardopts +21 -0
- data/CONTRIBUTORS +5 -2
- data/{README → README.rdoc} +6 -3
- data/Rakefile +8 -11
- data/VERSION +1 -1
- data/app/controllers/application.rb +1 -1
- data/app/controllers/application_controller.rb +1 -2
- data/bin/refinery +23 -23
- data/config/amazon_s3.yml.example +18 -0
- data/config/database.yml.example +0 -0
- data/config/environment.rb +4 -3
- data/config/environments/production.rb +6 -1
- data/config/preinitializer.rb +4 -0
- data/config/rackspace_cloudfiles.yml.example +14 -0
- data/db/migrate/20100114092849_add_themes_table.rb +19 -0
- data/db/schema.rb +12 -1
- data/db/seeds.rb +1 -0
- data/public/images/refinery/icons/star.png +0 -0
- data/public/javascripts/wymeditor/jquery.refinery.wymeditor.js +5 -4
- data/public/stylesheets/refinery/refinery.css +1 -9
- data/themes/demolicious/LICENSE +21 -0
- data/themes/demolicious/README +1 -0
- data/themes/demolicious/images/footer_background.png +0 -0
- data/themes/demolicious/images/header_background.png +0 -0
- data/themes/demolicious/preview.png +0 -0
- data/themes/demolicious/stylesheets/application.css +94 -0
- data/themes/demolicious/stylesheets/formatting.css +36 -0
- data/themes/demolicious/stylesheets/home.css +11 -0
- data/themes/demolicious/stylesheets/ie6.css +0 -0
- data/themes/demolicious/stylesheets/ie7.css +0 -0
- data/themes/demolicious/views/layouts/application.html.erb +33 -0
- data/themes/demolicious/views/pages/home.html.erb +1 -0
- data/themes/demolicious/views/pages/show.html.erb +1 -0
- data/themes/hemingway/LICENSE +7 -0
- data/themes/hemingway/README +3 -0
- data/themes/hemingway/images/archives.gif +0 -0
- data/themes/hemingway/images/footer_black.gif +0 -0
- data/themes/hemingway/images/kyle-header.jpg +0 -0
- data/themes/hemingway/images/readon_black.gif +0 -0
- data/themes/hemingway/images/search.gif +0 -0
- data/themes/hemingway/images/spinner.gif +0 -0
- data/themes/hemingway/images/trackback_pingback.gif +0 -0
- data/themes/hemingway/preview.png +0 -0
- data/themes/hemingway/stylesheets/application.css +713 -0
- data/themes/hemingway/views/layouts/application.html.erb +64 -0
- data/themes/hemingway/views/shared/content_page.html.erb +0 -0
- data/vendor/plugins/dashboard/app/controllers/admin/dashboard_controller.rb +17 -6
- data/vendor/plugins/dashboard/app/helpers/admin/dashboard_helper.rb +3 -3
- data/vendor/plugins/dashboard/app/views/admin/dashboard/_recent_activity.html.erb +1 -1
- data/vendor/plugins/images/app/models/image.rb +4 -3
- data/vendor/plugins/inquiries/app/models/inquiry.rb +2 -1
- data/vendor/plugins/news/app/controllers/admin/news_items_controller.rb +1 -1
- data/vendor/plugins/news/app/models/news_item.rb +5 -7
- data/vendor/plugins/news/app/views/admin/news_items/index.html.erb +10 -14
- data/vendor/plugins/pages/app/controllers/admin/pages_controller.rb +7 -9
- data/vendor/plugins/pages/app/models/page.rb +4 -9
- data/vendor/plugins/pages/app/models/page_part.rb +1 -8
- data/vendor/plugins/pages/app/views/admin/pages/index.html.erb +2 -2
- data/vendor/plugins/refinery/app/views/admin/_head.html.erb +7 -1
- data/vendor/plugins/refinery/app/views/shared/_content_page.html.erb +1 -1
- data/vendor/plugins/refinery/app/views/shared/_menu.html.erb +16 -14
- data/vendor/plugins/refinery/app/views/shared/_message.html.erb +4 -4
- data/vendor/plugins/refinery/app/views/shared/admin/_search.html.erb +2 -2
- data/vendor/plugins/refinery/lib/crud.rb +78 -26
- data/vendor/plugins/refinery/lib/generators/refinery/templates/migration.rb +2 -1
- data/vendor/plugins/refinery/lib/generators/refinery/templates/model.rb +2 -1
- data/vendor/plugins/refinery/lib/refinery/application_controller.rb +5 -1
- data/vendor/plugins/refinery/lib/refinery/html_truncation_helper.rb +2 -2
- data/vendor/plugins/refinery/lib/refinery/initializer.rb +1 -1
- data/vendor/plugins/refinery/lib/refinery/plugin.rb +1 -1
- data/vendor/plugins/refinery/lib/tasks/doc.rake +29 -0
- data/vendor/plugins/refinery/lib/tasks/refinery.rake +1 -2
- data/vendor/plugins/refinery/lib/tasks/yard.rake +32 -0
- data/vendor/plugins/refinery_settings/app/models/refinery_setting.rb +4 -0
- data/vendor/plugins/refinery_settings/app/views/admin/refinery_settings/_refinery_setting.html.erb +1 -1
- data/vendor/plugins/refinery_settings/app/views/admin/refinery_settings/index.html.erb +12 -18
- data/vendor/plugins/resources/app/models/resource.rb +5 -4
- data/vendor/plugins/resources/config/routes.rb +3 -1
- data/vendor/plugins/themes/app/controllers/admin/themes_controller.rb +25 -0
- data/vendor/plugins/themes/app/controllers/themes_controller.rb +49 -0
- data/vendor/plugins/themes/app/models/theme.rb +62 -0
- data/vendor/plugins/themes/app/views/admin/themes/_form.html.erb +11 -0
- data/vendor/plugins/themes/app/views/admin/themes/_theme.html.erb +24 -0
- data/vendor/plugins/themes/app/views/admin/themes/edit.html.erb +1 -0
- data/vendor/plugins/themes/app/views/admin/themes/index.html.erb +35 -0
- data/vendor/plugins/themes/app/views/admin/themes/new.html.erb +1 -0
- data/vendor/plugins/themes/config/routes.rb +12 -0
- data/vendor/plugins/themes/rails/init.rb +9 -0
- data/vendor/plugins/themes/themes.rdoc +131 -0
- metadata +52 -39
- data/config/amazon_s3.yml +0 -17
- data/config/rackspace_cloudfiles.yml +0 -14
- data/public/images/lightbox/bullet.gif +0 -0
- data/public/images/lightbox/close.gif +0 -0
- data/public/images/lightbox/closelabel.gif +0 -0
- data/public/images/lightbox/donate-button.gif +0 -0
- data/public/images/lightbox/download-icon.gif +0 -0
- data/public/images/lightbox/loading.gif +0 -0
- data/public/images/lightbox/nextlabel.gif +0 -0
- data/public/images/lightbox/prevlabel.gif +0 -0
- data/public/images/refinery/add.gif +0 -0
- data/public/images/refinery/cross.gif +0 -0
- data/public/images/refinery/deactive-gradient.gif +0 -0
- data/public/images/refinery/delete.gif +0 -0
- data/public/images/refinery/drag.gif +0 -0
- data/public/images/refinery/edit.gif +0 -0
- data/public/images/refinery/header-background.gif +0 -0
- data/public/images/refinery/icons/bin_closed.png +0 -0
- data/public/images/refinery/icons/help.png +0 -0
- data/public/images/refinery/icons/page_link.png +0 -0
- data/public/images/refinery/icons/reorder.png +0 -0
- data/public/images/refinery/icons/user.png +0 -0
- data/public/images/refinery/info.gif +0 -0
- data/public/images/refinery/m-tools.gif +0 -0
- data/public/images/refinery/magnifier.png +0 -0
- data/public/images/refinery/resolve-digital.gif +0 -0
- data/public/images/refinery/search.gif +0 -0
- data/public/images/refinery/shad_blcorner.png +0 -0
- data/public/images/refinery/shad_bottom.png +0 -0
- data/public/images/refinery/shad_brcorner.png +0 -0
- data/public/images/refinery/shad_tlcorner.png +0 -0
- data/public/images/refinery/shad_trcorner.png +0 -0
- data/public/images/refinery/tableft.gif +0 -0
- data/public/images/refinery/tabright.gif +0 -0
- data/public/images/refinery/tick.gif +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
<%= render :partial => "form" -%>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
ActionController::Routing::Routes.draw do |map|
|
2
|
+
|
3
|
+
map.namespace(:admin) do |admin|
|
4
|
+
admin.resources :themes, :member => {:preview_image => :get, :activate => :get}
|
5
|
+
end
|
6
|
+
|
7
|
+
# allows theme files that are not in the Rails public directory to be served back to the client
|
8
|
+
map.connect 'stylesheets/theme/:filename*extension', :controller => 'themes', :action => 'stylesheets'
|
9
|
+
map.connect 'javascripts/theme/:filename*extension', :controller => 'themes', :action => 'javascripts'
|
10
|
+
map.connect 'images/theme/:filename*extension', :controller => 'themes', :action => 'images'
|
11
|
+
|
12
|
+
end
|
@@ -0,0 +1,9 @@
|
|
1
|
+
Refinery::Plugin.register do |plugin|
|
2
|
+
|
3
|
+
plugin.title = "Themes"
|
4
|
+
plugin.description = "Upload and manage themes"
|
5
|
+
plugin.version = 1.0
|
6
|
+
plugin.activity = {:class => Theme, :title => 'title', :url_prefix => 'edit',
|
7
|
+
:created_image => "layout_add.png", :updated_image => "layout_edit.png"}
|
8
|
+
|
9
|
+
end
|
@@ -0,0 +1,131 @@
|
|
1
|
+
= Themes
|
2
|
+
|
3
|
+
== Introduction
|
4
|
+
|
5
|
+
Themes allow you to wrap up the design of your Refinery site into a single folder that is portable.
|
6
|
+
|
7
|
+
Refinery doesn't force you to learn a special templating language, but rather just uses the regular
|
8
|
+
ERB views you're used to in Rails. This means creating a theme from your existing site is extremely easy.
|
9
|
+
|
10
|
+
Think of a theme as your +app/views+ directory with a few extra things like images, css and javascript.
|
11
|
+
|
12
|
+
It's worth noting you don't need to use a theme if you don't want to. Placing files in the +app/views+ directory like any other Rails app will work just fine. It's only if you want to wrap your design up into a single location that you would use a theme or allow your client to easily change designs.
|
13
|
+
|
14
|
+
== The structure of a theme
|
15
|
+
|
16
|
+
Themes sit in your Rails app like this
|
17
|
+
|
18
|
+
app/
|
19
|
+
config/
|
20
|
+
db/
|
21
|
+
lib/
|
22
|
+
public/
|
23
|
+
themes/
|
24
|
+
|- mytheme/
|
25
|
+
|- othertheme/
|
26
|
+
plugins/
|
27
|
+
tests/
|
28
|
+
|
29
|
+
So let's take the +"mytheme"+ example theme shown above. This is how the theme is structured:
|
30
|
+
|
31
|
+
mytheme/
|
32
|
+
|- images
|
33
|
+
| |- whatever.png
|
34
|
+
| |- foo.jpg
|
35
|
+
|- javascripts
|
36
|
+
| |- whatever.js
|
37
|
+
|- LICENSE
|
38
|
+
|- preview.png
|
39
|
+
|- README
|
40
|
+
|- stylesheets/
|
41
|
+
| |- application.css
|
42
|
+
| |- whatever.css
|
43
|
+
|- views
|
44
|
+
|- pages
|
45
|
+
| |- show.html.erb
|
46
|
+
| |- index.html.erb
|
47
|
+
|- layouts
|
48
|
+
|- application.html.erb
|
49
|
+
|
50
|
+
*Images*
|
51
|
+
|
52
|
+
Usually this would be just what you have in +public/images+ except we move that to the theme instead.
|
53
|
+
|
54
|
+
*Javascripts*
|
55
|
+
|
56
|
+
Same with javascripts, just what you normally have in +public/javascripts+ just in this theme directory instead.
|
57
|
+
|
58
|
+
*Readme*
|
59
|
+
|
60
|
+
The +README+ file is just a description of your theme.
|
61
|
+
|
62
|
+
*Views*
|
63
|
+
|
64
|
+
This is exactly the same as how you lay your views out in app/views/ just instead of putting them in +app/views/+ you put them into +themes/mytheme/views/+
|
65
|
+
|
66
|
+
*Preview* *Image*
|
67
|
+
|
68
|
+
The +preview.png+ image is used when selecting the theme in the backend. It must be a png and ideally is 135x135 pixels.
|
69
|
+
|
70
|
+
== How do I make my own theme?
|
71
|
+
|
72
|
+
Create a folder with the name if your theme inside /themes e.g. /themes/mytheme and follow the directory structure outlined in 'The structure of a theme'.
|
73
|
+
|
74
|
+
== How do I select which theme Refinery should use?
|
75
|
+
|
76
|
+
In the admin area of Refinery go to the "Settings" area, locate the setting called "theme" and edit it.
|
77
|
+
|
78
|
+
Set the value of that setting to the name of your themes folder. For example if your theme is sitting in:
|
79
|
+
|
80
|
+
themes/my_theme
|
81
|
+
|
82
|
+
set it to +"my_theme"+ and hit save.
|
83
|
+
|
84
|
+
== How do I zip my theme to use it on other sites
|
85
|
+
|
86
|
+
If you want to share a theme and install it on another site you have to zip it first.
|
87
|
+
|
88
|
+
It's important to note you don't zip the theme's directory itself just the contents.
|
89
|
+
|
90
|
+
If I had a theme sitting in:
|
91
|
+
|
92
|
+
themes/mytheme/[theme files here]
|
93
|
+
|
94
|
+
The zip file would look like this
|
95
|
+
|
96
|
+
mytheme.zip
|
97
|
+
|- [theme files here]
|
98
|
+
|
99
|
+
Read 'How do I install someone else's theme?' to take that zip file and install the theme.
|
100
|
+
|
101
|
+
== How do I install someone else's theme?
|
102
|
+
|
103
|
+
If you have the themes plugin added to your admin user, you should see in the admin area of Refinery a "Themes" tab in the main navigation. Click on that, then click "Upload new theme". Upload the theme zip file and then click on the "star" below the preview image for the theme to activate that theme as the one to use right now.
|
104
|
+
|
105
|
+
== How can I convert my current views into a theme?
|
106
|
+
|
107
|
+
This should be fairly straightforward just following the directory structure outlined in 'The structure of a theme'.
|
108
|
+
|
109
|
+
But there is one important difference that need to be addressed to convert your current site into a theme.
|
110
|
+
|
111
|
+
If you have some CSS which refers to an image or URL:
|
112
|
+
|
113
|
+
#footer {
|
114
|
+
background: url('/images/footer_background.png') repeat-x;
|
115
|
+
}
|
116
|
+
|
117
|
+
You need to update the URL so it requests /images/themes instead of /images. This tells Refinery we need to actually load this image from the theme and not just the public directory.
|
118
|
+
|
119
|
+
So the result is simply:
|
120
|
+
|
121
|
+
#footer {
|
122
|
+
background: url('/images/theme/footer_background.png') repeat-x;
|
123
|
+
}
|
124
|
+
|
125
|
+
This is the same with linking to Javascript and Stylesheets in your view. Say our +application.html.erb+ layout had something like this:
|
126
|
+
|
127
|
+
<%= stylesheet_link_tag 'application' %>
|
128
|
+
|
129
|
+
You just need to change that to:
|
130
|
+
|
131
|
+
<%= stylesheet_link_tag 'theme/application' %>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: refinerycms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.5.
|
4
|
+
version: 0.9.5.30
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Resolve Digital
|
@@ -11,7 +11,7 @@ autorequire:
|
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
13
|
|
14
|
-
date:
|
14
|
+
date: 2010-01-25 00:00:00 +13:00
|
15
15
|
default_executable:
|
16
16
|
dependencies: []
|
17
17
|
|
@@ -26,14 +26,15 @@ extensions: []
|
|
26
26
|
extra_rdoc_files:
|
27
27
|
- CONTRIBUTORS
|
28
28
|
- LICENSE
|
29
|
-
- README
|
29
|
+
- README.rdoc
|
30
30
|
- VERSION
|
31
31
|
files:
|
32
32
|
- .gems
|
33
33
|
- .gitignore
|
34
|
+
- .yardopts
|
34
35
|
- CONTRIBUTORS
|
35
36
|
- LICENSE
|
36
|
-
- README
|
37
|
+
- README.rdoc
|
37
38
|
- Rakefile
|
38
39
|
- VERSION
|
39
40
|
- app/controllers/admin/base_controller.rb
|
@@ -43,7 +44,7 @@ files:
|
|
43
44
|
- bin/refinery
|
44
45
|
- bin/refinery-override
|
45
46
|
- bin/refinery-update-core
|
46
|
-
- config/amazon_s3.yml
|
47
|
+
- config/amazon_s3.yml.example
|
47
48
|
- config/boot.rb
|
48
49
|
- config/database.yml.example
|
49
50
|
- config/environment.rb
|
@@ -53,41 +54,30 @@ files:
|
|
53
54
|
- config/initializers/inflections.rb
|
54
55
|
- config/initializers/mime_types.rb
|
55
56
|
- config/preinitializer.rb
|
56
|
-
- config/rackspace_cloudfiles.yml
|
57
|
+
- config/rackspace_cloudfiles.yml.example
|
57
58
|
- config/routes.rb
|
58
59
|
- db/migrate/20091029034951_remove_blurb_from_news_items.rb
|
59
60
|
- db/migrate/20091109012126_add_missing_indexes.rb
|
60
61
|
- db/migrate/20091130040711_add_down_for_maintenance_page.rb
|
61
62
|
- db/migrate/20091207033335_add_superuser_to_users.rb
|
63
|
+
- db/migrate/20100114092849_add_themes_table.rb
|
62
64
|
- db/schema.rb
|
63
65
|
- db/seeds.rb
|
66
|
+
- doc/.yardoc/checksums
|
67
|
+
- doc/.yardoc/objects/root.dat
|
68
|
+
- doc/.yardoc/proxy_types
|
64
69
|
- lib/refinery_initializer.rb
|
65
70
|
- public/.htaccess
|
66
71
|
- public/404.html
|
67
72
|
- public/422.html
|
68
73
|
- public/500.html
|
69
74
|
- public/favicon.ico
|
70
|
-
- public/images/lightbox/bullet.gif
|
71
|
-
- public/images/lightbox/close.gif
|
72
|
-
- public/images/lightbox/closelabel.gif
|
73
|
-
- public/images/lightbox/donate-button.gif
|
74
|
-
- public/images/lightbox/download-icon.gif
|
75
|
-
- public/images/lightbox/loading.gif
|
76
|
-
- public/images/lightbox/nextlabel.gif
|
77
|
-
- public/images/lightbox/prevlabel.gif
|
78
|
-
- public/images/refinery/add.gif
|
79
75
|
- public/images/refinery/add.png
|
80
76
|
- public/images/refinery/admin_bg.png
|
81
77
|
- public/images/refinery/ajax-loader.gif
|
82
78
|
- public/images/refinery/branch-end.gif
|
83
79
|
- public/images/refinery/branch-start.gif
|
84
80
|
- public/images/refinery/branch.gif
|
85
|
-
- public/images/refinery/cross.gif
|
86
|
-
- public/images/refinery/deactive-gradient.gif
|
87
|
-
- public/images/refinery/delete.gif
|
88
|
-
- public/images/refinery/drag.gif
|
89
|
-
- public/images/refinery/edit.gif
|
90
|
-
- public/images/refinery/header-background.gif
|
91
81
|
- public/images/refinery/header_background.png
|
92
82
|
- public/images/refinery/hover-gradient.jpg
|
93
83
|
- public/images/refinery/icons/accept.png
|
@@ -97,7 +87,6 @@ files:
|
|
97
87
|
- public/images/refinery/icons/arrow_left.png
|
98
88
|
- public/images/refinery/icons/arrow_switch.png
|
99
89
|
- public/images/refinery/icons/arrow_up.png
|
100
|
-
- public/images/refinery/icons/bin_closed.png
|
101
90
|
- public/images/refinery/icons/cancel.png
|
102
91
|
- public/images/refinery/icons/cog_add.png
|
103
92
|
- public/images/refinery/icons/cog_edit.png
|
@@ -108,43 +97,27 @@ files:
|
|
108
97
|
- public/images/refinery/icons/email_go.png
|
109
98
|
- public/images/refinery/icons/email_open.png
|
110
99
|
- public/images/refinery/icons/eye.png
|
111
|
-
- public/images/refinery/icons/help.png
|
112
100
|
- public/images/refinery/icons/image_add.png
|
113
101
|
- public/images/refinery/icons/image_edit.png
|
114
102
|
- public/images/refinery/icons/layout_add.png
|
115
103
|
- public/images/refinery/icons/layout_edit.png
|
116
104
|
- public/images/refinery/icons/page_add.png
|
117
105
|
- public/images/refinery/icons/page_edit.png
|
118
|
-
- public/images/refinery/icons/page_link.png
|
119
106
|
- public/images/refinery/icons/page_white_edit.png
|
120
107
|
- public/images/refinery/icons/page_white_put.png
|
121
|
-
- public/images/refinery/icons/
|
108
|
+
- public/images/refinery/icons/star.png
|
122
109
|
- public/images/refinery/icons/tick.png
|
123
|
-
- public/images/refinery/icons/user.png
|
124
110
|
- public/images/refinery/icons/user_add.png
|
125
111
|
- public/images/refinery/icons/user_comment.png
|
126
112
|
- public/images/refinery/icons/user_edit.png
|
127
|
-
- public/images/refinery/info.gif
|
128
113
|
- public/images/refinery/logo-large.png
|
129
114
|
- public/images/refinery/logo-medium.png
|
130
115
|
- public/images/refinery/logo-small-medium.png
|
131
116
|
- public/images/refinery/logo-small.png
|
132
117
|
- public/images/refinery/logo.png
|
133
|
-
- public/images/refinery/m-tools.gif
|
134
|
-
- public/images/refinery/magnifier.png
|
135
118
|
- public/images/refinery/nav-3-background.gif
|
136
119
|
- public/images/refinery/page_bg.png
|
137
|
-
- public/images/refinery/resolve-digital.gif
|
138
120
|
- public/images/refinery/resolve_digital_footer_logo.png
|
139
|
-
- public/images/refinery/search.gif
|
140
|
-
- public/images/refinery/shad_blcorner.png
|
141
|
-
- public/images/refinery/shad_bottom.png
|
142
|
-
- public/images/refinery/shad_brcorner.png
|
143
|
-
- public/images/refinery/shad_tlcorner.png
|
144
|
-
- public/images/refinery/shad_trcorner.png
|
145
|
-
- public/images/refinery/tableft.gif
|
146
|
-
- public/images/refinery/tabright.gif
|
147
|
-
- public/images/refinery/tick.gif
|
148
121
|
- public/images/thickbox/cross.png
|
149
122
|
- public/images/thickbox/loadingAnimation.gif
|
150
123
|
- public/images/thickbox/macFFBgHack.png
|
@@ -248,6 +221,32 @@ files:
|
|
248
221
|
- script/process/spawner
|
249
222
|
- script/runner
|
250
223
|
- script/server
|
224
|
+
- themes/demolicious/LICENSE
|
225
|
+
- themes/demolicious/README
|
226
|
+
- themes/demolicious/images/footer_background.png
|
227
|
+
- themes/demolicious/images/header_background.png
|
228
|
+
- themes/demolicious/preview.png
|
229
|
+
- themes/demolicious/stylesheets/application.css
|
230
|
+
- themes/demolicious/stylesheets/formatting.css
|
231
|
+
- themes/demolicious/stylesheets/home.css
|
232
|
+
- themes/demolicious/stylesheets/ie6.css
|
233
|
+
- themes/demolicious/stylesheets/ie7.css
|
234
|
+
- themes/demolicious/views/layouts/application.html.erb
|
235
|
+
- themes/demolicious/views/pages/home.html.erb
|
236
|
+
- themes/demolicious/views/pages/show.html.erb
|
237
|
+
- themes/hemingway/LICENSE
|
238
|
+
- themes/hemingway/README
|
239
|
+
- themes/hemingway/images/archives.gif
|
240
|
+
- themes/hemingway/images/footer_black.gif
|
241
|
+
- themes/hemingway/images/kyle-header.jpg
|
242
|
+
- themes/hemingway/images/readon_black.gif
|
243
|
+
- themes/hemingway/images/search.gif
|
244
|
+
- themes/hemingway/images/spinner.gif
|
245
|
+
- themes/hemingway/images/trackback_pingback.gif
|
246
|
+
- themes/hemingway/preview.png
|
247
|
+
- themes/hemingway/stylesheets/application.css
|
248
|
+
- themes/hemingway/views/layouts/application.html.erb
|
249
|
+
- themes/hemingway/views/shared/content_page.html.erb
|
251
250
|
- vendor/plugins/acts_as_indexed/CHANGELOG
|
252
251
|
- vendor/plugins/acts_as_indexed/MIT-LICENSE
|
253
252
|
- vendor/plugins/acts_as_indexed/README.rdoc
|
@@ -500,7 +499,9 @@ files:
|
|
500
499
|
- vendor/plugins/refinery/lib/refinery/link_renderer.rb
|
501
500
|
- vendor/plugins/refinery/lib/refinery/plugin.rb
|
502
501
|
- vendor/plugins/refinery/lib/refinery/plugins.rb
|
502
|
+
- vendor/plugins/refinery/lib/tasks/doc.rake
|
503
503
|
- vendor/plugins/refinery/lib/tasks/refinery.rake
|
504
|
+
- vendor/plugins/refinery/lib/tasks/yard.rake
|
504
505
|
- vendor/plugins/refinery/rails/init.rb
|
505
506
|
- vendor/plugins/refinery_dialogs/app/controllers/admin/dialogs_controller.rb
|
506
507
|
- vendor/plugins/refinery_dialogs/app/views/admin/dialogs/show.html.erb
|
@@ -527,6 +528,17 @@ files:
|
|
527
528
|
- vendor/plugins/resources/app/views/admin/resources/new.html.erb
|
528
529
|
- vendor/plugins/resources/config/routes.rb
|
529
530
|
- vendor/plugins/resources/rails/init.rb
|
531
|
+
- vendor/plugins/themes/app/controllers/admin/themes_controller.rb
|
532
|
+
- vendor/plugins/themes/app/controllers/themes_controller.rb
|
533
|
+
- vendor/plugins/themes/app/models/theme.rb
|
534
|
+
- vendor/plugins/themes/app/views/admin/themes/_form.html.erb
|
535
|
+
- vendor/plugins/themes/app/views/admin/themes/_theme.html.erb
|
536
|
+
- vendor/plugins/themes/app/views/admin/themes/edit.html.erb
|
537
|
+
- vendor/plugins/themes/app/views/admin/themes/index.html.erb
|
538
|
+
- vendor/plugins/themes/app/views/admin/themes/new.html.erb
|
539
|
+
- vendor/plugins/themes/config/routes.rb
|
540
|
+
- vendor/plugins/themes/rails/init.rb
|
541
|
+
- vendor/plugins/themes/themes.rdoc
|
530
542
|
has_rdoc: true
|
531
543
|
homepage: http://refinerycms.com
|
532
544
|
licenses: []
|
@@ -534,6 +546,7 @@ licenses: []
|
|
534
546
|
post_install_message:
|
535
547
|
rdoc_options:
|
536
548
|
- --charset=UTF-8
|
549
|
+
- --inline-source
|
537
550
|
require_paths:
|
538
551
|
- lib
|
539
552
|
required_ruby_version: !ruby/object:Gem::Requirement
|
data/config/amazon_s3.yml
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
development:
|
2
|
-
bucket_name: appname_development
|
3
|
-
access_key_id:
|
4
|
-
secret_access_key:
|
5
|
-
distribution_domain: XXXX.cloudfront.net
|
6
|
-
|
7
|
-
test:
|
8
|
-
bucket_name: appname_test
|
9
|
-
access_key_id:
|
10
|
-
secret_access_key:
|
11
|
-
distribution_domain: XXXX.cloudfront.net
|
12
|
-
|
13
|
-
production:
|
14
|
-
bucket_name: appname
|
15
|
-
access_key_id:
|
16
|
-
secret_access_key:
|
17
|
-
distribution_domain: XXXX.cloudfront.net
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|