trusty-cms 2.0.14 → 2.0.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ff714cb941dd4bafa96519238af44502f26e09bc
4
- data.tar.gz: f4980e2dada78d36edf177b157321d42f32cd8e1
3
+ metadata.gz: 1b6a143cb4e8c362a22ca5f1f40050efdaa59b52
4
+ data.tar.gz: cdd7a5d84d4a1d148d0258ec5be8c3a68272cb23
5
5
  SHA512:
6
- metadata.gz: 12e1d7c2962ad455ed582b7f8369552181d30c8a05bea24cb2bc1bda7d84d92abe37e2ea5a59ff273023a83bbb3c6a08c149fff602af631e42c8ae691bf24608
7
- data.tar.gz: e779ccae310fca4ed51976056779148f3924ba8b78537d7a4030814a8e3d106dd3353033bd6ec85c33eb64910f26f5c2d72c858427eb7fd0b9d466c1756eed9d
6
+ metadata.gz: 5bb7838c520399b68635800f2e85b2cd6e29782e56a4b731940729b28b994f40be3eab9ab39095bfb48e8bf11de33f2e74c33802c0732ad7a8b42be9f85dd491
7
+ data.tar.gz: d45121824e2873269ab43cea18214f1b8fcbfb38d45fa220d9c54fb695db3c8084dc807c5ec25c1443f79e734fa978ca18b44be98501d481da7b45d8f61c09a0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- trusty-cms (2.0.14)
4
+ trusty-cms (2.0.15)
5
5
  RedCloth (~> 4.2)
6
6
  acts_as_tree (~> 2.1)
7
7
  bundler (~> 1.7)
@@ -30,7 +30,6 @@ GEM
30
30
  remote: https://rubygems.org/
31
31
  specs:
32
32
  RedCloth (4.2.9)
33
- RedCloth (4.2.9-java)
34
33
  actionmailer (4.2.5.1)
35
34
  actionpack (= 4.2.5.1)
36
35
  actionview (= 4.2.5.1)
@@ -35,4 +35,4 @@
35
35
  .buttons
36
36
  %input.button{:type=>"submit", :value=>"Save Changes"}/
37
37
  or
38
- = link_to "Cancel", admin_configuration_url, class: 'alt'
38
+ = link_to "Cancel", admin_configuration_path, class: 'alt'
@@ -39,7 +39,7 @@
39
39
  %h3
40
40
  - if admin?
41
41
  .actions
42
- = button_to t("edit_configuration"), edit_admin_configuration_url, :method => :get
42
+ = button_to t("edit_configuration"), edit_admin_configuration_path, :method => :get
43
43
  Configuration
44
44
  - TrustyCms.config.site_settings.each do |site_setting|
45
45
  %p.ruled
@@ -33,6 +33,6 @@
33
33
  = save_model_button @layout
34
34
  = save_model_and_continue_editing_button @layout
35
35
  = t('or')
36
- = link_to t('cancel'), admin_layouts_url, class: 'alt'
36
+ = link_to t('cancel'), admin_layouts_path, class: 'alt'
37
37
  - form_bottom.edit_timestamp do
38
38
  = updated_stamp @layout
@@ -13,4 +13,4 @@
13
13
  .buttons
14
14
  %input.button{:type => "submit", :value => t('delete_layout') }/
15
15
  = t('or')
16
- = link_to t('cancel'), admin_layouts_url, class: 'alt'
16
+ = link_to t('cancel'), admin_layouts_path, class: 'alt'
@@ -7,7 +7,7 @@
7
7
  = icon
8
8
  = node_title
9
9
  - else
10
- = (link_to("#{icon} #{node_title}".html_safe, edit_admin_page_url(page), :title => page.path)).html_safe
10
+ = (link_to("#{icon} #{node_title}".html_safe, edit_admin_page_path(page), :title => page.path)).html_safe
11
11
  = page_type
12
12
  = spinner
13
13
  - node.status_column do
@@ -18,4 +18,4 @@
18
18
  - unless simple
19
19
  %td.actions
20
20
  = page.add_child_option
21
- = page.remove_option
21
+ = page.remove_option
@@ -16,4 +16,4 @@
16
16
  .buttons
17
17
  %input.button{:type=>"submit", :value => t('delete_pages', :pages => pages) }/
18
18
  = t('or')
19
- = link_to t('cancel'), admin_pages_url, class: 'alt'
19
+ = link_to t('cancel'), admin_pages_path, class: 'alt'
@@ -6,7 +6,7 @@
6
6
  %h1= t('personal_preferences')
7
7
 
8
8
  - main.edit_form do
9
- = form_for @user, :url => admin_preferences_url, :html => { :method => :put, 'data-onsubmit_status' => "#{t('saving_preferences')}…" } do |f|
9
+ = form_for @user, :url => admin_preferences_path, :html => { :method => :put, 'data-onsubmit_status' => "#{t('saving_preferences')}…" } do |f|
10
10
  %fieldset
11
11
  = render :partial => 'admin/users/avatar'
12
12
 
@@ -41,4 +41,4 @@
41
41
  .buttons
42
42
  = save_model_button @user
43
43
  = t('or')
44
- = link_to t('cancel'), admin_url, class: 'alt'
44
+ = link_to t('cancel'), admin_url, class: 'alt'
@@ -3,7 +3,7 @@
3
3
  #single_form
4
4
  %h1= t('please_login')
5
5
 
6
- = form_tag login_url do
6
+ = form_tag login_path do
7
7
  %p
8
8
  %label{:for=>"username_or_email"}= t('username_or_email')
9
9
  = text_field_tag "username_or_email", @username_or_email, :class => 'textbox', :maxlength => 40, :size => 40
data/lib/trusty_cms.rb CHANGED
@@ -2,6 +2,6 @@ TRUSTY_CMS_ROOT = File.expand_path(File.join(File.dirname(__FILE__), "..")) unle
2
2
 
3
3
  unless defined? TrustyCms::VERSION
4
4
  module TrustyCms
5
- VERSION = "2.0.14"
5
+ VERSION = "2.0.15"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trusty-cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.14
4
+ version: 2.0.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - TrustyCms CMS dev team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-19 00:00:00.000000000 Z
11
+ date: 2016-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tzinfo