refinerycms 0.9.5.4 → 0.9.5.5
Sign up to get free protection for your applications and to get access to all the features.
- data/README +2 -4
- data/vendor/plugins/authentication/app/views/admin/users/_form.html.erb +1 -1
- data/vendor/plugins/images/app/views/admin/images/_form.html.erb +1 -3
- data/vendor/plugins/inquiries/app/views/admin/inquiry_settings/_confirmation_email_form.html.erb +1 -1
- data/vendor/plugins/inquiries/app/views/admin/inquiry_settings/_notification_recipients_form.html.erb +1 -1
- data/vendor/plugins/news/app/views/admin/news_items/_form.html.erb +1 -1
- data/vendor/plugins/pages/app/views/admin/pages/_form.html.erb +3 -3
- data/vendor/plugins/refinery/lib/generators/refinery/templates/views/admin/_form.html.erb +2 -2
- data/vendor/plugins/refinery_settings/app/views/admin/refinery_settings/_form.html.erb +1 -1
- data/vendor/plugins/resources/app/views/admin/resources/_form.html.erb +2 -2
- metadata +2 -2
data/README
CHANGED
@@ -38,10 +38,8 @@ Step Two: Configuration
|
|
38
38
|
|
39
39
|
Edit ./config/database.yml to your database server details.
|
40
40
|
|
41
|
-
Then run
|
42
|
-
rake db:
|
43
|
-
rake db:schema:load
|
44
|
-
rake db:seed
|
41
|
+
Then run this to create your database and fill it with Refinery's default data:
|
42
|
+
rake db:setup
|
45
43
|
|
46
44
|
== Starting up your site
|
47
45
|
ruby script/server
|
@@ -34,7 +34,7 @@
|
|
34
34
|
</ul>
|
35
35
|
</div>
|
36
36
|
<div class='form-actions'>
|
37
|
-
<%= f.submit 'Save' %>
|
37
|
+
<%= f.submit 'Save', :id => "submit_button" %>
|
38
38
|
or
|
39
39
|
<%= link_to "Cancel", admin_users_url, :title => "Cancelling will lose all changes you've made to this news item" %>
|
40
40
|
</div>
|
@@ -11,11 +11,9 @@
|
|
11
11
|
<%= f.file_field :uploaded_data %>
|
12
12
|
</div>
|
13
13
|
<div class='form-actions'>
|
14
|
-
<%= f.submit
|
15
|
-
<% unless params[:dialog] %>
|
14
|
+
<%= f.submit 'Save', :id => "submit_button" %>
|
16
15
|
or
|
17
16
|
<%= link_to "Cancel", admin_images_url, :title => "Cancelling will lose all changes you've made to this image", :class => 'close_dialog' %>
|
18
|
-
<% end %>
|
19
17
|
</div>
|
20
18
|
|
21
19
|
<% if @thickbox %>
|
@@ -16,7 +16,7 @@
|
|
16
16
|
</div>
|
17
17
|
|
18
18
|
<div class='form-actions'>
|
19
|
-
<%= f.submit 'Save', :class => "wymupdate" %>
|
19
|
+
<%= f.submit 'Save', :id => "submit_button", :class => "wymupdate" %>
|
20
20
|
or
|
21
21
|
<%= link_to "Cancel", admin_news_items_url, :title => "Cancelling will lose all changes you've made to this news item" %>
|
22
22
|
</div>
|
@@ -123,9 +123,9 @@
|
|
123
123
|
<%= f.label :draft, "Save as Draft", :class => "stripped" %>
|
124
124
|
</div>
|
125
125
|
<div class='form-actions'>
|
126
|
-
<%= f.submit 'Save', :class => "wymupdate" %>
|
126
|
+
<%= f.submit 'Save', :id => "submit_button", :class => "wymupdate" %>
|
127
127
|
or
|
128
|
-
<%= link_to "Cancel", admin_pages_url, :title => "Cancelling will lose all changes you've made to this page"%>
|
128
|
+
<%= link_to "Cancel", admin_pages_url, :title => "Cancelling will lose all changes you've made to this page", :id => "cancel_button", :class => "close_dialog" %>
|
129
129
|
</div>
|
130
130
|
<div id='new_page_part_dialog' style='display: none'>
|
131
131
|
<div class='field'>
|
@@ -136,7 +136,7 @@
|
|
136
136
|
<div id='dialog-form-actions' class='form-actions'>
|
137
137
|
<%= f.submit 'Save', :id => "new_page_part_save" %>
|
138
138
|
or
|
139
|
-
<%= link_to "Cancel", "#", :id => "new_page_part_cancel" %>
|
139
|
+
<%= link_to "Cancel", "#", :id => "new_page_part_cancel", :class => "close_dialog" %>
|
140
140
|
</div>
|
141
141
|
</div>
|
142
142
|
<% end %>
|
@@ -11,8 +11,8 @@
|
|
11
11
|
</div>
|
12
12
|
<% end -%>
|
13
13
|
<div class='form-actions'>
|
14
|
-
<%%= f.submit 'Save', :class => "wymupdate" %>
|
14
|
+
<%%= f.submit 'Save', :id => "submit_button", :class => "wymupdate" %>
|
15
15
|
or
|
16
|
-
<%%= link_to "Cancel", admin_<%= plural_name %>_url %>
|
16
|
+
<%%= link_to "Cancel", admin_<%= plural_name %>_url, :class => "close_dialog", :id => "cancel_button" %>
|
17
17
|
</div>
|
18
18
|
<%% end -%>
|
@@ -11,8 +11,8 @@
|
|
11
11
|
<%= f.file_field :uploaded_data -%>
|
12
12
|
</div>
|
13
13
|
<div class='form-actions'>
|
14
|
-
<%= f.submit 'Save' %>
|
14
|
+
<%= f.submit 'Save', :id => "submit_button" %>
|
15
15
|
or
|
16
|
-
<%= link_to "Cancel", admin_resources_url, :title => "Cancelling will lose all changes you've made to this file" -%>
|
16
|
+
<%= link_to "Cancel", admin_resources_url, :title => "Cancelling will lose all changes you've made to this file", :class => "close_dialog" -%>
|
17
17
|
</div>
|
18
18
|
<% end -%>
|
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.5
|
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: 2009-11-
|
14
|
+
date: 2009-11-09 00:00:00 +13:00
|
15
15
|
default_executable: refinery
|
16
16
|
dependencies: []
|
17
17
|
|