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 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 these to create your database and fill it with Refinery's default data.:
42
- rake db:create
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 (params[:dialog] ? 'Upload' : 'Save') %>
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 %>
@@ -43,7 +43,7 @@
43
43
  </tr>
44
44
  </table>
45
45
  <div class='form-actions'>
46
- <%= f.submit 'Save' %>
46
+ <%= f.submit 'Save', :id => "submit_button" %>
47
47
  or
48
48
  <%= link_to "Cancel", admin_inquiries_url, :title => "Cancelling will lose all changes you've made" %>
49
49
  </div>
@@ -15,7 +15,7 @@
15
15
  </p>
16
16
  </div>
17
17
  <div class='form-actions'>
18
- <%= f.submit 'Save' %>
18
+ <%= f.submit 'Save', :id => "submit_button" %>
19
19
  or
20
20
  <%= link_to "Cancel", admin_inquiries_url, :title => "Cancelling will lose all changes you've made" %>
21
21
  </div>
@@ -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 -%>
@@ -14,7 +14,7 @@
14
14
  <%= f.text_area :value, :rows => 5, :cols => 100 %>
15
15
  </div>
16
16
  <div class='form-actions'>
17
- <%= f.submit 'Save' %>
17
+ <%= f.submit 'Save', :id => "submit_button" %>
18
18
  or
19
19
  <%= link_to "Cancel", admin_refinery_settings_url %>
20
20
  </div>
@@ -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
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-05 00:00:00 +13:00
14
+ date: 2009-11-09 00:00:00 +13:00
15
15
  default_executable: refinery
16
16
  dependencies: []
17
17