trusty-cms 4.1.0 → 4.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (167) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -3
  3. data/Gemfile.lock +98 -98
  4. data/README.md +1 -1
  5. data/Rakefile +7 -7
  6. data/app/assets/javascripts/admin/assets.js +1 -1
  7. data/app/assets/javascripts/rad_social/rad_ajax_form.js +3 -0
  8. data/app/assets/javascripts/rad_social/rad_email.js +0 -1
  9. data/app/assets/javascripts/rad_social/rad_email_form.js +2 -7
  10. data/app/assets/stylesheets/admin/partials/_forms.scss +1 -1
  11. data/app/assets/stylesheets/admin/partials/_messages.scss +7 -2
  12. data/app/assets/stylesheets/admin/partials/_popup.scss +1 -1
  13. data/app/assets/stylesheets/rad_social/rad_screen.scss +0 -4
  14. data/app/controllers/admin/assets_controller.rb +21 -31
  15. data/app/controllers/admin/configuration_controller.rb +9 -11
  16. data/app/controllers/admin/extensions_controller.rb +3 -3
  17. data/app/controllers/admin/layouts_controller.rb +3 -4
  18. data/app/controllers/admin/page_attachments_controller.rb +5 -5
  19. data/app/controllers/admin/page_fields_controller.rb +3 -4
  20. data/app/controllers/admin/page_parts_controller.rb +4 -5
  21. data/app/controllers/admin/pages_controller.rb +55 -56
  22. data/app/controllers/admin/references_controller.rb +1 -1
  23. data/app/controllers/admin/resource_controller.rb +132 -130
  24. data/app/controllers/admin/sites_controller.rb +4 -4
  25. data/app/controllers/admin/snippets_controller.rb +3 -4
  26. data/app/controllers/admin/users_controller.rb +16 -16
  27. data/app/controllers/application_controller.rb +47 -48
  28. data/app/controllers/site_controller.rb +51 -48
  29. data/app/controllers/social_mailer_controller.rb +12 -22
  30. data/app/helpers/admin/configuration_helper.rb +19 -20
  31. data/app/helpers/admin/layouts_helper.rb +0 -1
  32. data/app/helpers/admin/node_helper.rb +27 -24
  33. data/app/helpers/admin/pages_helper.rb +2 -2
  34. data/app/helpers/admin/preferences_helper.rb +0 -1
  35. data/app/helpers/admin/references_helper.rb +9 -10
  36. data/app/helpers/admin/regions_helper.rb +3 -3
  37. data/app/helpers/application_helper.rb +32 -33
  38. data/app/helpers/rad_social_helper.rb +8 -11
  39. data/app/helpers/scoped_helper.rb +1 -3
  40. data/app/helpers/sites_helper.rb +4 -4
  41. data/app/mailers/devise_mailer.rb +3 -4
  42. data/app/mailers/rad_social_mailer.rb +8 -8
  43. data/app/models/asset.rb +62 -63
  44. data/app/models/asset_type.rb +38 -39
  45. data/app/models/deprecated_tags.rb +3 -4
  46. data/app/models/file_not_found_page.rb +1 -3
  47. data/app/models/haml_filter.rb +1 -1
  48. data/app/models/layout.rb +4 -5
  49. data/app/models/legacy_user.rb +2 -2
  50. data/app/models/menu_renderer.rb +16 -18
  51. data/app/models/page.rb +96 -93
  52. data/app/models/page_attachment.rb +1 -2
  53. data/app/models/page_context.rb +11 -12
  54. data/app/models/page_part.rb +3 -4
  55. data/app/models/rails_page.rb +10 -12
  56. data/app/models/site.rb +22 -21
  57. data/app/models/snippet.rb +6 -8
  58. data/app/models/snippet_finder.rb +3 -3
  59. data/app/models/snippet_tags.rb +4 -4
  60. data/app/models/standard_tags.rb +258 -252
  61. data/app/models/status.rb +8 -8
  62. data/app/models/trusty_cms/config.rb +25 -25
  63. data/app/models/trusty_cms/page_response_cache_director.rb +2 -3
  64. data/app/models/user.rb +15 -14
  65. data/app/models/user_action_observer.rb +3 -3
  66. data/app/views/admin/assets/edit.html.haml +0 -9
  67. data/app/views/admin/assets/new.html.haml +0 -3
  68. data/app/views/admin/assets/remove.html.haml +1 -1
  69. data/app/views/admin/layouts/remove.html.haml +4 -3
  70. data/app/views/admin/page_parts/_page_part.html.haml +1 -1
  71. data/app/views/admin/pages/remove.html.haml +2 -1
  72. data/app/views/admin/sites/index.haml +3 -1
  73. data/app/views/admin/snippets/remove.html.haml +5 -4
  74. data/app/views/admin/users/remove.html.haml +2 -2
  75. data/app/views/rad_social_mailer/social_mail_form.html.haml +1 -3
  76. data/app/views/widget/_email_form.html.haml +0 -5
  77. data/bin/rails +4 -4
  78. data/bin/trusty_cms +3 -5
  79. data/config.ru +1 -1
  80. data/config/application.rb +14 -15
  81. data/config/boot.rb +1 -2
  82. data/config/environment.rb +1 -1
  83. data/config/environments/production.rb +0 -1
  84. data/config/environments/test.rb +1 -2
  85. data/config/initializers/devise.rb +1 -1
  86. data/config/initializers/kraken.rb +2 -2
  87. data/config/initializers/tmp.rb +1 -1
  88. data/config/initializers/trusty_cms_config.rb +48 -48
  89. data/config/locales/en.yml +8 -8
  90. data/config/routes.rb +6 -7
  91. data/lib/active_record_extensions/active_record_extensions.rb +1 -2
  92. data/lib/annotatable.rb +3 -5
  93. data/lib/configuration_extensions/configuration_extensions.rb +1 -1
  94. data/lib/inheritable_class_attributes.rb +13 -9
  95. data/lib/login_system.rb +73 -73
  96. data/lib/method_observer.rb +13 -12
  97. data/lib/ostruct.rb +7 -10
  98. data/lib/simpleton.rb +0 -4
  99. data/lib/string_extensions/string_extensions.rb +3 -3
  100. data/lib/symbol_extensions/symbol_extensions.rb +1 -1
  101. data/lib/tasks/database.rake +28 -28
  102. data/lib/tasks/extensions.rake +18 -18
  103. data/lib/tasks/framework.rake +68 -68
  104. data/lib/tasks/radiant_config.rake +4 -4
  105. data/lib/tasks/snippets_extension_tasks.rake +11 -11
  106. data/lib/tasks/translate.rake +14 -14
  107. data/lib/tasks/upgrade_to_devise.rake +1 -1
  108. data/lib/translation_support.rb +22 -22
  109. data/lib/trusty_cms.rb +2 -2
  110. data/lib/trusty_cms/admin_ui.rb +19 -16
  111. data/lib/trusty_cms/admin_ui/region_partials.rb +4 -3
  112. data/lib/trusty_cms/admin_ui/region_set.rb +4 -5
  113. data/lib/trusty_cms/available_locales.rb +2 -4
  114. data/lib/trusty_cms/config/definition.rb +11 -8
  115. data/lib/trusty_cms/engine.rb +13 -14
  116. data/lib/trusty_cms/extension.rb +14 -16
  117. data/lib/trusty_cms/extension_loader.rb +6 -6
  118. data/lib/trusty_cms/extension_migrator.rb +42 -41
  119. data/lib/trusty_cms/extension_path.rb +20 -19
  120. data/lib/trusty_cms/initializer.rb +5 -8
  121. data/lib/trusty_cms/pagination/controller.rb +7 -10
  122. data/lib/trusty_cms/pagination/link_renderer.rb +2 -2
  123. data/lib/trusty_cms/resource_responses.rb +3 -3
  124. data/lib/trusty_cms/setup.rb +130 -132
  125. data/lib/trusty_cms/taggable.rb +19 -22
  126. data/lib/trusty_cms/task_support.rb +9 -6
  127. data/package.json +1 -1
  128. data/public/dispatch.fcgi +1 -1
  129. data/public/dispatch.rb +2 -2
  130. data/script/extension +1 -1
  131. data/script/rails +2 -2
  132. data/spec/dummy/package.json +1 -1
  133. data/spec/dummy/yarn.lock +3 -3
  134. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/core.js +126 -0
  135. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/failsafe/index.js +4 -0
  136. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/failsafe/map.js +56 -0
  137. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/failsafe/seq.js +43 -0
  138. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/failsafe/string.js +28 -0
  139. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/index.js +36 -0
  140. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/json.js +76 -0
  141. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/options.js +23 -0
  142. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/yaml-1.1/binary.js +87 -0
  143. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/yaml-1.1/index.js +157 -0
  144. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/yaml-1.1/omap.js +142 -0
  145. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/yaml-1.1/pairs.js +81 -0
  146. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/yaml-1.1/set.js +114 -0
  147. data/spec/spec/dummy/node_modules/yaml/browser/dist/tags/yaml-1.1/timestamp.js +97 -0
  148. data/spec/spec/dummy/node_modules/yaml/dist/tags/core.js +114 -0
  149. data/spec/spec/dummy/node_modules/yaml/dist/tags/failsafe/index.js +17 -0
  150. data/spec/spec/dummy/node_modules/yaml/dist/tags/failsafe/map.js +37 -0
  151. data/spec/spec/dummy/node_modules/yaml/dist/tags/failsafe/seq.js +34 -0
  152. data/spec/spec/dummy/node_modules/yaml/dist/tags/failsafe/string.js +40 -0
  153. data/spec/spec/dummy/node_modules/yaml/dist/tags/index.js +62 -0
  154. data/spec/spec/dummy/node_modules/yaml/dist/tags/json.js +60 -0
  155. data/spec/spec/dummy/node_modules/yaml/dist/tags/options.js +35 -0
  156. data/spec/spec/dummy/node_modules/yaml/dist/tags/yaml-1.1/binary.js +97 -0
  157. data/spec/spec/dummy/node_modules/yaml/dist/tags/yaml-1.1/index.js +131 -0
  158. data/spec/spec/dummy/node_modules/yaml/dist/tags/yaml-1.1/omap.js +105 -0
  159. data/spec/spec/dummy/node_modules/yaml/dist/tags/yaml-1.1/pairs.js +80 -0
  160. data/spec/spec/dummy/node_modules/yaml/dist/tags/yaml-1.1/set.js +91 -0
  161. data/spec/spec/dummy/node_modules/yaml/dist/tags/yaml-1.1/timestamp.js +93 -0
  162. data/trusty_cms.gemspec +25 -25
  163. data/vendor/extensions/clipped-extension/lib/clipped_admin_ui.rb +1 -1
  164. data/yarn.lock +7 -7
  165. metadata +7609 -105
  166. data/app/assets/javascripts/rad_social/captcha.js +0 -42
  167. data/app/views/admin/assets/refresh.html.haml +0 -14
@@ -3,7 +3,8 @@ class Status
3
3
 
4
4
  def initialize(options = {})
5
5
  options = options.symbolize_keys
6
- @id, @name = options[:id], options[:name]
6
+ @id = options[:id]
7
+ @name = options[:name]
7
8
  end
8
9
 
9
10
  def symbol
@@ -27,15 +28,14 @@ class Status
27
28
  end
28
29
 
29
30
  def self.selectable_values
30
- self.selectable.map(&:name)
31
+ selectable.map(&:name)
31
32
  end
32
33
 
33
34
  @@statuses = [
34
- Status.new(:id => 1, :name => 'Draft' ),
35
- Status.new(:id => 50, :name => 'Reviewed' ),
36
- Status.new(:id => 90, :name => 'Scheduled'),
37
- Status.new(:id => 100, :name => 'Published'),
38
- Status.new(:id => 101, :name => 'Hidden' )
35
+ Status.new(id: 1, name: 'Draft'),
36
+ Status.new(id: 50, name: 'Reviewed'),
37
+ Status.new(id: 90, name: 'Scheduled'),
38
+ Status.new(id: 100, name: 'Published'),
39
+ Status.new(id: 101, name: 'Hidden'),
39
40
  ]
40
-
41
41
  end
@@ -1,5 +1,4 @@
1
1
  module TrustyCms
2
-
3
2
  class << self
4
3
  def config_definitions
5
4
  @config_definitions ||= {}
@@ -67,7 +66,7 @@ module TrustyCms
67
66
  # edit_setting('admin.name)
68
67
  #
69
68
 
70
- self.table_name = "config"
69
+ self.table_name = 'config'
71
70
  after_save :update_cache
72
71
  attr_reader :definition
73
72
 
@@ -105,12 +104,12 @@ module TrustyCms
105
104
  end
106
105
 
107
106
  def to_hash
108
- Hash[ *all.map { |pair| [pair.key, pair.value] }.flatten ]
107
+ Hash[*all.map { |pair| [pair.key, pair.value] }.flatten]
109
108
  end
110
109
 
111
110
  def initialize_cache
112
111
  TrustyCms::Config.ensure_cache_file
113
- Rails.cache.write('TrustyCms::Config',TrustyCms::Config.to_hash)
112
+ Rails.cache.write('TrustyCms::Config', TrustyCms::Config.to_hash)
114
113
  Rails.cache.write('TrustyCms.cache_mtime', File.mtime(cache_file))
115
114
  Rails.cache.silence!
116
115
  end
@@ -121,6 +120,7 @@ module TrustyCms
121
120
 
122
121
  def stale_cache?
123
122
  return true unless TrustyCms::Config.cache_file_exists?
123
+
124
124
  Rails.cache.read('TrustyCms.cache_mtime') != File.mtime(cache_file)
125
125
  end
126
126
 
@@ -134,15 +134,15 @@ module TrustyCms
134
134
  end
135
135
 
136
136
  def cache_file
137
- File.join(cache_path,'trusty_config_cache.txt')
137
+ File.join(cache_path, 'trusty_config_cache.txt')
138
138
  end
139
139
 
140
140
  def site_settings
141
- @site_settings ||= %w{ site.title site.host dev.host local.timezone }
141
+ @site_settings ||= %w{site.title site.host dev.host local.timezone}
142
142
  end
143
143
 
144
144
  def default_settings
145
- @default_settings ||= %w{ defaults.locale defaults.page.filter defaults.page.parts defaults.page.fields defaults.page.status }
145
+ @default_settings ||= %w{defaults.locale defaults.page.filter defaults.page.parts defaults.page.fields defaults.page.status}
146
146
  end
147
147
 
148
148
  def user_settings
@@ -161,7 +161,7 @@ module TrustyCms
161
161
  #
162
162
  def namespace(prefix, options = {}, &block)
163
163
  prefix = [options[:prefix], prefix].join('.') if options[:prefix]
164
- with_options(options.merge(:prefix => prefix), &block)
164
+ with_options(options.merge(prefix: prefix), &block)
165
165
  end
166
166
 
167
167
  # Declares a setting definition that will constrain and support the use of a particular config entry.
@@ -176,7 +176,7 @@ module TrustyCms
176
176
  # * :allow_blank should be false if the config item must not be blank or nil
177
177
  # * :allow_change should be false if the config item can only be set, not changed. Add a default to specify an unchanging config entry.
178
178
  # * :allow_display should be false if the config item should not be showable in radius tags
179
- #
179
+ #
180
180
  # TrustyCms.config do |config|
181
181
  # config.define 'defaults.locale', :select_from => lambda { TrustyCms::AvailableLocales.locales }, :allow_blank => true
182
182
  # config.define 'defaults.page.parts', :default => "Body,Extended"
@@ -191,7 +191,7 @@ module TrustyCms
191
191
  #
192
192
  # but at the moment that's only done in testing.
193
193
  #
194
- def define(key, options={})
194
+ def define(key, options = {})
195
195
  called_from = caller.grep(/\/initializers\//).first
196
196
  if options.is_a? TrustyCms::Config::Definition
197
197
  definition = options
@@ -199,7 +199,7 @@ module TrustyCms
199
199
  key = [options[:prefix], key].join('.') if options[:prefix]
200
200
  end
201
201
 
202
- definition ||= TrustyCms::Config::Definition.new(options.merge(:definer => called_from))
202
+ definition ||= TrustyCms::Config::Definition.new(options.merge(definer: called_from))
203
203
  definitions[key] = definition
204
204
 
205
205
  if self[key].nil? && !definition.default.nil?
@@ -216,9 +216,8 @@ module TrustyCms
216
216
  end
217
217
 
218
218
  def definition_for(key)
219
- definitions[key] ||= TrustyCms::Config::Definition.new(:empty => true)
219
+ definitions[key] ||= TrustyCms::Config::Definition.new(empty: true)
220
220
  end
221
-
222
221
  end
223
222
 
224
223
  # The usual way to use a config item:
@@ -236,13 +235,14 @@ module TrustyCms
236
235
  def value=(param)
237
236
  newvalue = param.to_s
238
237
  if newvalue != self[:value]
239
- raise ConfigError, "#{self.key} cannot be changed" unless settable? || self[:value].blank?
240
- if boolean?
241
- self[:value] = (newvalue == "1" || newvalue == "true") ? "true" : "false"
242
- else
243
- self[:value] = newvalue
244
- end
245
- self.save!
238
+ raise ConfigError, "#{key} cannot be changed" unless settable? || self[:value].blank?
239
+
240
+ self[:value] = if boolean?
241
+ newvalue == '1' || newvalue == 'true' ? 'true' : 'false'
242
+ else
243
+ newvalue
244
+ end
245
+ save!
246
246
  end
247
247
  self[:value]
248
248
  end
@@ -270,20 +270,21 @@ module TrustyCms
270
270
  # that does not restrict use.
271
271
  #
272
272
  def definition
273
- @definition ||= self.class.definition_for(self.key)
273
+ @definition ||= self.class.definition_for(key)
274
274
  end
275
275
 
276
276
  # Returns true if the item key ends with '?' or the definition specifies :type => :boolean.
277
277
  #
278
278
  def boolean?
279
- definition.boolean? || self.key.ends_with?("?")
279
+ definition.boolean? || key.ends_with?('?')
280
280
  end
281
281
 
282
282
  # Returns true if the item is boolean and true.
283
283
  #
284
284
  def checked?
285
285
  return nil if self[:value].nil?
286
- boolean? && self[:value] == "true"
286
+
287
+ boolean? && self[:value] == 'true'
287
288
  end
288
289
 
289
290
  # Returns true if the item defintion includes a :select_from parameter that limits the range of permissible options.
@@ -302,11 +303,10 @@ module TrustyCms
302
303
  TrustyCms::Config.initialize_cache
303
304
  end
304
305
 
305
- delegate :default, :type, :allow_blank?, :hidden?, :visible?, :settable?, :selection, :notes, :units, :to => :definition
306
+ delegate :default, :type, :allow_blank?, :hidden?, :visible?, :settable?, :selection, :notes, :units, to: :definition
306
307
 
307
308
  def validate
308
309
  definition.validate(self)
309
310
  end
310
-
311
311
  end
312
312
  end
@@ -22,7 +22,7 @@ module TrustyCms
22
22
  private
23
23
 
24
24
  def non_cacheable_response
25
- @listener.set_expiry nil, :private => true, "no-cache" => true
25
+ @listener.set_expiry nil, :private => true, 'no-cache' => true
26
26
  @listener.set_etag('')
27
27
  end
28
28
 
@@ -32,12 +32,11 @@ module TrustyCms
32
32
  timeout = @page.cache_timeout
33
33
  end
34
34
 
35
- @listener.set_expiry timeout, :public => true, :private => false
35
+ @listener.set_expiry timeout, public: true, private: false
36
36
  end
37
37
 
38
38
  def cacheable?
39
39
  @listener.cacheable_request? && @page.cache?
40
40
  end
41
-
42
41
  end
43
42
  end
@@ -1,10 +1,10 @@
1
1
  class User < ActiveRecord::Base
2
- has_many :pages, :foreign_key => :created_by_id
2
+ has_many :pages, foreign_key: :created_by_id
3
3
  self.table_name = 'admins'
4
4
 
5
5
  # :confirmable, :lockable, :timeoutable and :omniauthable
6
6
  devise :database_authenticatable, :registerable,
7
- :recoverable, :rememberable, :trackable, :validatable
7
+ :recoverable, :rememberable, :trackable, :validatable
8
8
 
9
9
  alias_attribute :created_by_id, :id
10
10
 
@@ -13,53 +13,54 @@ class User < ActiveRecord::Base
13
13
  validate :password_complexity
14
14
 
15
15
  # Default Order
16
- default_scope {order('last_name')}
16
+ default_scope { order('last_name') }
17
17
 
18
18
  # Associations
19
- belongs_to :created_by, :class_name => 'User'
20
- belongs_to :updated_by, :class_name => 'User'
19
+ belongs_to :created_by, class_name: 'User'
20
+ belongs_to :updated_by, class_name: 'User'
21
21
 
22
22
  def has_role?(role)
23
23
  case role
24
24
  when :admin
25
- self.admin?
25
+ admin?
26
26
  when :designer
27
- self.designer?
27
+ designer?
28
28
  when :content_editor
29
- self.content_editor?
29
+ content_editor?
30
30
  else
31
31
  false
32
32
  end
33
33
  end
34
34
 
35
35
  def admin?
36
- self.admin
36
+ admin
37
37
  end
38
38
 
39
39
  def designer?
40
- self.designer
40
+ designer
41
41
  end
42
42
 
43
43
  def content_editor?
44
- self.content_editor
44
+ content_editor
45
45
  end
46
46
 
47
- def locale
47
+ def locale
48
48
  'en'
49
49
  end
50
50
 
51
51
  def name
52
- "#{self.first_name} #{self.last_name}"
52
+ "#{first_name} #{last_name}"
53
53
  end
54
54
 
55
55
  def password_required?
56
56
  return false if skip_password_validation
57
+
57
58
  super
58
59
  end
59
60
 
60
61
  def password_complexity
61
62
  return false if password.blank? || password =~ /^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[#?!@$%^&*-]).{8,70}$/
63
+
62
64
  errors.add :password, 'Complexity requirement not met. Length should be 12 characters and include: 1 uppercase, 1 lowercase, 1 digit and 1 special character.'
63
65
  end
64
-
65
66
  end
@@ -4,7 +4,7 @@ class UserActionObserver < ActiveRecord::Observer
4
4
  def current_user=(user)
5
5
  self.class.current_user = user
6
6
  end
7
-
7
+
8
8
  def self.current_user=(user)
9
9
  Thread.current[:current_user] = user
10
10
  end
@@ -18,10 +18,10 @@ class UserActionObserver < ActiveRecord::Observer
18
18
  end
19
19
 
20
20
  def before_create(model)
21
- #model.created_by = self.current_user
21
+ # model.created_by = self.current_user
22
22
  end
23
23
 
24
24
  def before_update(model)
25
- #model.updated_by = self.current_user
25
+ # model.updated_by = self.current_user
26
26
  end
27
27
  end
@@ -30,12 +30,3 @@
30
30
  = save_model_and_continue_editing_button(@asset)
31
31
  = t("or")
32
32
  = link_to t("cancel"), admin_assets_path
33
-
34
- - main.edit_regenerate do
35
- - if current_user.admin? or current_user.designer?
36
- %fieldset
37
- = form_tag refresh_admin_asset_path(@asset), :method => :put do
38
- %label= t("clipped_extension.regenerate_thumbnails")
39
- %br
40
- .asset_buttons
41
- %input.button{ :type => "submit", :value => t("clipped_extension.regenerate") }
@@ -18,6 +18,3 @@
18
18
  = save_model_and_continue_editing_button(@asset)
19
19
  = t("or")
20
20
  = link_to t("cancel"), admin_assets_path
21
-
22
- - main.edit_regenerate do
23
- &nbsp;
@@ -2,7 +2,7 @@
2
2
  = stylesheet_link_tag 'admin/assets'
3
3
 
4
4
  %h1= t("clipped_extension.remove_asset")
5
- %p.warning= t("clipped_extension.confirm_remove_asset")
5
+ %h4.warning= t("clipped_extension.confirm_remove_asset").html_safe
6
6
 
7
7
  %table.index#assets{:cellpadding => "0", :cellspacing => "0", :border => "0"}
8
8
  %tbody
@@ -1,12 +1,13 @@
1
+ - body_classes << 'reversed'
2
+
1
3
  %h1= t('remove_layout')
2
4
 
3
- %p= t('text.layouts.remove_warning').html_safe
5
+ %h4= t('text.layouts.remove_warning').html_safe
4
6
 
5
- %table.index#layouts
7
+ %table.tablesaw.index#layouts
6
8
  %tbody
7
9
  %tr.node.level_1
8
10
  %td.layout
9
- = image('layout', :alt => '')
10
11
  = h @layout.name
11
12
 
12
13
  = form_for [:admin, @layout], :html => { :method => 'delete', 'data-onsubmit_status'=>'Removing layout&#8230;' } do
@@ -3,7 +3,7 @@
3
3
  = hidden_field_tag "page[parts_attributes][#{page_part_counter}][name]", page_part.name, :id => "part_#{page_part.name.to_slug}_name"
4
4
  = hidden_field_tag "page[parts_attributes][#{page_part_counter}][id]", page_part.id, :id => "part_#{page_part_counter}_id", :class => 'id_input' unless page_part.new_record?
5
5
  = hidden_field_tag "page[parts_attributes][#{page_part_counter}][_destroy]", page_part._destroy, :class => 'delete_input'
6
- %p
6
+ .content
7
7
  %label To use HTML or Radius tags, switch to plain text view by clicking the 'Source' button.
8
8
  %span.reference_links
9
9
  = t('reference')
@@ -1,9 +1,10 @@
1
1
  - pages = @page.children.count > 1 ? t('pages') : t('page')
2
+ - body_classes << 'reversed'
2
3
 
3
4
  %h1
4
5
  = t('remove_pages', :pages => pages)
5
6
 
6
- %p
7
+ %h4
7
8
  = t('text.pages.remove_warning', :pages => pages).html_safe
8
9
 
9
10
  .inset
@@ -31,7 +31,9 @@
31
31
  = h(site.base_domain)
32
32
  - tbody.modify_cell do
33
33
  %td.remove
34
- = link_to image('remove.png', :alt => 'Remove'), admin_site_path(site), :method => :delete, :onclick => "return confirm('Are you sure you want to permanently remove #{site.name}?')"
34
+ = link_to admin_site_path(site), :method => :delete, :onclick => "return confirm('Are you sure you want to permanently remove #{site.name}?')" do
35
+ %i.fas.fa-minus-circle
36
+ = t('remove')
35
37
  - tbody.order_cell do
36
38
  %td.order
37
39
  = order_links(site).html_safe
@@ -1,13 +1,14 @@
1
+ - body_classes << 'reversed'
2
+
1
3
  %h1= t('remove_snippet')
2
4
 
3
- %p
4
- = t('text.snippets.remove_warning')
5
+ %h4
6
+ = t('text.snippets.remove_warning').html_safe
5
7
 
6
- %table.index#snippets
8
+ %table.tablesaw.index#snippets
7
9
  %tbody
8
10
  %tr.node.level_1
9
11
  %td.snippet
10
- = image('snippet', :alt => '')
11
12
  %span.title= @snippet.name
12
13
 
13
14
  = form_for [:admin, @snippet], :html => {:method => :delete, 'data-onsubmit_status'=>'Removing snippet&#8230;'} do
@@ -1,7 +1,7 @@
1
1
  %h1= t('remove_user')
2
2
 
3
- %p
4
- = t('text.users.remove_warning')
3
+ %h4
4
+ = t('text.users.remove_warning').html_safe
5
5
 
6
6
  %table.index#users
7
7
  %tbody
@@ -1,6 +1,6 @@
1
1
  = stylesheet_link_tag('rad_social/rad_screen')
2
- = javascript_include_tag('https://www.google.com/recaptcha/api/js/recaptcha_ajax.js')
3
2
  = javascript_include_tag('rad_social/rad_email')
3
+ = csrf_meta_tags
4
4
 
5
5
  .rad-dialog-titlebar
6
6
  %span.rad-dialog-title
@@ -31,8 +31,6 @@
31
31
  = email_message
32
32
  %input{:type=>'hidden', :name=>'subject', :value=> email_subject}
33
33
  %input{:type=>'hidden', :id=>'rs-base-message', :value=> email_message}
34
- #recaptcha-container.captcha-container
35
- = recaptcha_v3 action: 'emailSeats'
36
34
  %input{:type=>'hidden', :name=>'submit_url', :value=> email_action_url}
37
35
  %input.button.primary-button{:id => 'rad_email_submit', :type=>:button ,:value=>'Submit'}
38
36
  .loader
@@ -1,5 +1,3 @@
1
- - javascript('rad_social/captcha')
2
-
3
1
  = form_tag
4
2
  %form{:id=>'rad_social_email_form', :class=>'rad-email-form'}
5
3
  %label{:for => 'from'}
@@ -20,6 +18,3 @@
20
18
  %input{:type=>'hidden', :name=>'submit_url', :value=>'contact/email'}
21
19
  %input.button.primary-button{:id => 'email_submit', :type=>:button ,:value=>'Submit'}
22
20
  .loader
23
-
24
- #recaptcha-container.captcha-container
25
- = recaptcha_v3 action: 'emailSeats'