trusty-cms 4.1.2 → 4.1.3
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 +4 -4
- data/Gemfile +2 -2
- data/Gemfile.lock +25 -25
- data/Rakefile +7 -7
- data/app/assets/stylesheets/admin/partials/_content.scss +1 -2
- data/app/controllers/admin/assets_controller.rb +22 -21
- data/app/controllers/admin/configuration_controller.rb +9 -11
- data/app/controllers/admin/extensions_controller.rb +3 -3
- data/app/controllers/admin/layouts_controller.rb +3 -4
- data/app/controllers/admin/page_attachments_controller.rb +5 -5
- data/app/controllers/admin/page_fields_controller.rb +3 -4
- data/app/controllers/admin/page_parts_controller.rb +4 -5
- data/app/controllers/admin/pages_controller.rb +55 -56
- data/app/controllers/admin/references_controller.rb +1 -1
- data/app/controllers/admin/resource_controller.rb +132 -130
- data/app/controllers/admin/sites_controller.rb +4 -4
- data/app/controllers/admin/snippets_controller.rb +3 -4
- data/app/controllers/admin/users_controller.rb +16 -16
- data/app/controllers/application_controller.rb +47 -48
- data/app/controllers/site_controller.rb +51 -48
- data/app/controllers/social_mailer_controller.rb +13 -16
- data/app/helpers/admin/configuration_helper.rb +19 -20
- data/app/helpers/admin/layouts_helper.rb +0 -1
- data/app/helpers/admin/node_helper.rb +27 -24
- data/app/helpers/admin/pages_helper.rb +2 -2
- data/app/helpers/admin/preferences_helper.rb +0 -1
- data/app/helpers/admin/references_helper.rb +9 -10
- data/app/helpers/admin/regions_helper.rb +3 -3
- data/app/helpers/application_helper.rb +32 -33
- data/app/helpers/rad_social_helper.rb +8 -11
- data/app/helpers/scoped_helper.rb +1 -3
- data/app/helpers/sites_helper.rb +4 -4
- data/app/mailers/devise_mailer.rb +3 -4
- data/app/mailers/rad_social_mailer.rb +8 -8
- data/app/models/asset.rb +62 -63
- data/app/models/asset_type.rb +38 -39
- data/app/models/deprecated_tags.rb +3 -4
- data/app/models/file_not_found_page.rb +1 -3
- data/app/models/haml_filter.rb +1 -1
- data/app/models/layout.rb +4 -5
- data/app/models/legacy_user.rb +2 -2
- data/app/models/menu_renderer.rb +16 -18
- data/app/models/page.rb +96 -93
- data/app/models/page_attachment.rb +1 -2
- data/app/models/page_context.rb +11 -12
- data/app/models/page_part.rb +3 -4
- data/app/models/rails_page.rb +10 -12
- data/app/models/site.rb +22 -21
- data/app/models/snippet.rb +6 -8
- data/app/models/snippet_finder.rb +3 -3
- data/app/models/snippet_tags.rb +4 -4
- data/app/models/standard_tags.rb +258 -252
- data/app/models/status.rb +8 -8
- data/app/models/trusty_cms/config.rb +25 -25
- data/app/models/trusty_cms/page_response_cache_director.rb +2 -3
- data/app/models/user.rb +15 -14
- data/app/models/user_action_observer.rb +3 -3
- data/bin/rails +4 -4
- data/bin/trusty_cms +3 -5
- data/config.ru +1 -1
- data/config/application.rb +14 -15
- data/config/boot.rb +1 -2
- data/config/environment.rb +1 -1
- data/config/environments/production.rb +0 -1
- data/config/environments/test.rb +1 -2
- data/config/initializers/devise.rb +1 -1
- data/config/initializers/kraken.rb +2 -2
- data/config/initializers/tmp.rb +1 -1
- data/config/initializers/trusty_cms_config.rb +48 -48
- data/config/routes.rb +6 -6
- data/lib/active_record_extensions/active_record_extensions.rb +1 -2
- data/lib/annotatable.rb +3 -5
- data/lib/configuration_extensions/configuration_extensions.rb +1 -1
- data/lib/inheritable_class_attributes.rb +13 -9
- data/lib/login_system.rb +73 -73
- data/lib/method_observer.rb +13 -12
- data/lib/ostruct.rb +7 -10
- data/lib/simpleton.rb +0 -4
- data/lib/string_extensions/string_extensions.rb +3 -3
- data/lib/symbol_extensions/symbol_extensions.rb +1 -1
- data/lib/tasks/database.rake +28 -28
- data/lib/tasks/extensions.rake +18 -18
- data/lib/tasks/framework.rake +68 -68
- data/lib/tasks/radiant_config.rake +4 -4
- data/lib/tasks/snippets_extension_tasks.rake +11 -11
- data/lib/tasks/translate.rake +14 -14
- data/lib/tasks/upgrade_to_devise.rake +1 -1
- data/lib/translation_support.rb +22 -22
- data/lib/trusty_cms.rb +2 -2
- data/lib/trusty_cms/admin_ui.rb +19 -16
- data/lib/trusty_cms/admin_ui/region_partials.rb +4 -3
- data/lib/trusty_cms/admin_ui/region_set.rb +4 -5
- data/lib/trusty_cms/available_locales.rb +2 -4
- data/lib/trusty_cms/config/definition.rb +11 -8
- data/lib/trusty_cms/engine.rb +14 -14
- data/lib/trusty_cms/extension.rb +14 -16
- data/lib/trusty_cms/extension_loader.rb +6 -6
- data/lib/trusty_cms/extension_migrator.rb +42 -41
- data/lib/trusty_cms/extension_path.rb +20 -19
- data/lib/trusty_cms/initializer.rb +5 -8
- data/lib/trusty_cms/pagination/controller.rb +7 -10
- data/lib/trusty_cms/pagination/link_renderer.rb +2 -2
- data/lib/trusty_cms/resource_responses.rb +3 -3
- data/lib/trusty_cms/setup.rb +130 -132
- data/lib/trusty_cms/taggable.rb +19 -22
- data/lib/trusty_cms/task_support.rb +9 -6
- data/public/dispatch.fcgi +1 -1
- data/public/dispatch.rb +2 -2
- data/script/extension +1 -1
- data/script/rails +2 -2
- data/trusty_cms.gemspec +23 -23
- metadata +32 -32
data/app/models/status.rb
CHANGED
|
@@ -3,7 +3,8 @@ class Status
|
|
|
3
3
|
|
|
4
4
|
def initialize(options = {})
|
|
5
5
|
options = options.symbolize_keys
|
|
6
|
-
@id
|
|
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
|
-
|
|
31
|
+
selectable.map(&:name)
|
|
31
32
|
end
|
|
32
33
|
|
|
33
34
|
@@statuses = [
|
|
34
|
-
Status.new(:
|
|
35
|
-
Status.new(:
|
|
36
|
-
Status.new(:
|
|
37
|
-
Status.new(:
|
|
38
|
-
Status.new(:
|
|
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 =
|
|
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[
|
|
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{
|
|
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{
|
|
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(:
|
|
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(:
|
|
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(:
|
|
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, "#{
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
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(
|
|
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? ||
|
|
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
|
-
|
|
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, :
|
|
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,
|
|
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, :
|
|
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
|
data/app/models/user.rb
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
class User < ActiveRecord::Base
|
|
2
|
-
has_many :pages, :
|
|
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
|
-
|
|
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, :
|
|
20
|
-
belongs_to :updated_by, :
|
|
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
|
-
|
|
25
|
+
admin?
|
|
26
26
|
when :designer
|
|
27
|
-
|
|
27
|
+
designer?
|
|
28
28
|
when :content_editor
|
|
29
|
-
|
|
29
|
+
content_editor?
|
|
30
30
|
else
|
|
31
31
|
false
|
|
32
32
|
end
|
|
33
33
|
end
|
|
34
34
|
|
|
35
35
|
def admin?
|
|
36
|
-
|
|
36
|
+
admin
|
|
37
37
|
end
|
|
38
38
|
|
|
39
39
|
def designer?
|
|
40
|
-
|
|
40
|
+
designer
|
|
41
41
|
end
|
|
42
42
|
|
|
43
43
|
def content_editor?
|
|
44
|
-
|
|
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
|
-
"#{
|
|
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
|
data/bin/rails
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
# This command will automatically be run when you run "rails" with Rails gems
|
|
3
3
|
# installed from the root of your application.
|
|
4
4
|
|
|
5
|
-
ENGINE_ROOT = File.expand_path('
|
|
6
|
-
ENGINE_PATH = File.expand_path('
|
|
7
|
-
APP_PATH = File.expand_path('
|
|
5
|
+
ENGINE_ROOT = File.expand_path('..', __dir__)
|
|
6
|
+
ENGINE_PATH = File.expand_path('../lib/trusty/cms/engine', __dir__)
|
|
7
|
+
APP_PATH = File.expand_path('../test/dummy/config/application', __dir__)
|
|
8
8
|
|
|
9
9
|
# Set up gems listed in the Gemfile.
|
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('
|
|
10
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
|
|
11
11
|
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
|
|
12
12
|
|
|
13
13
|
require 'rails/all'
|
data/bin/trusty_cms
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
|
-
ENV[
|
|
3
|
+
ENV['RAILS_ENV'] ||= 'production'
|
|
4
4
|
|
|
5
5
|
$LOAD_PATH << File.join(File.dirname(__FILE__), '..')
|
|
6
6
|
|
|
7
7
|
require 'ruby_version_check'
|
|
8
|
-
Signal.trap(
|
|
8
|
+
Signal.trap('INT') { puts; exit }
|
|
9
9
|
|
|
10
10
|
require 'trusty_cms'
|
|
11
11
|
if ARGV.any? { |arg| %w(--version -v).any? { |flag| arg == flag } }
|
|
@@ -19,7 +19,6 @@ require 'rails_generator'
|
|
|
19
19
|
require 'rails_generator/scripts/generate'
|
|
20
20
|
|
|
21
21
|
class Rails::Generator::Base
|
|
22
|
-
|
|
23
22
|
def self.use_application_sources!
|
|
24
23
|
reset_sources
|
|
25
24
|
sources << Rails::Generator::PathSource.new(:builtin, "#{File.dirname(__FILE__)}/../lib/generators")
|
|
@@ -46,7 +45,6 @@ class Rails::Generator::Base
|
|
|
46
45
|
end
|
|
47
46
|
end
|
|
48
47
|
end
|
|
49
|
-
|
|
50
48
|
end
|
|
51
49
|
|
|
52
|
-
Rails::Generators.invoke(
|
|
50
|
+
Rails::Generators.invoke('trusty_cms', [ARGV])
|
data/config.ru
CHANGED
data/config/application.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
require File.expand_path('
|
|
1
|
+
require File.expand_path('boot', __dir__)
|
|
2
2
|
|
|
3
3
|
require 'rails/all'
|
|
4
4
|
require 'acts_as_tree'
|
|
@@ -10,9 +10,8 @@ require 'rack/cache'
|
|
|
10
10
|
require 'trustygems'
|
|
11
11
|
require 'devise'
|
|
12
12
|
|
|
13
|
-
|
|
14
13
|
if defined?(Bundler)
|
|
15
|
-
Bundler.require(*Rails.groups(:
|
|
14
|
+
Bundler.require(*Rails.groups(assets: %w(development test)))
|
|
16
15
|
end
|
|
17
16
|
|
|
18
17
|
module TrustyCms
|
|
@@ -30,12 +29,12 @@ module TrustyCms
|
|
|
30
29
|
|
|
31
30
|
# Initialize extension paths
|
|
32
31
|
config.initialize_extension_paths
|
|
33
|
-
extension_loader = ExtensionLoader.instance {|l| l.initializer = self }
|
|
32
|
+
extension_loader = ExtensionLoader.instance { |l| l.initializer = self }
|
|
34
33
|
extension_loader.paths(:load).reverse_each do |path|
|
|
35
34
|
config.autoload_paths.unshift path
|
|
36
35
|
$LOAD_PATH.unshift path
|
|
37
36
|
end
|
|
38
|
-
paths[
|
|
37
|
+
paths['app/helpers'] = []
|
|
39
38
|
# config.add_plugin_paths(extension_loader.paths(:plugin))
|
|
40
39
|
trusty_locale_paths = Dir[File.join(TRUSTY_CMS_ROOT, 'config', 'locales', '*.{rb,yml}')]
|
|
41
40
|
config.i18n.load_path = trusty_locale_paths + extension_loader.paths(:locale)
|
|
@@ -44,16 +43,16 @@ module TrustyCms
|
|
|
44
43
|
config.encoding = 'utf-8'
|
|
45
44
|
|
|
46
45
|
config.middleware.use Rack::Cache,
|
|
47
|
-
:
|
|
48
|
-
:
|
|
49
|
-
:
|
|
50
|
-
:
|
|
51
|
-
:
|
|
52
|
-
:
|
|
46
|
+
private_headers: ['Authorization'],
|
|
47
|
+
entitystore: 'trusty:tmp/cache/entity',
|
|
48
|
+
metastore: 'trusty:tmp/cache/meta',
|
|
49
|
+
verbose: false,
|
|
50
|
+
allow_reload: false,
|
|
51
|
+
allow_revalidate: false
|
|
53
52
|
config.middleware.insert_before(Rack::ConditionalGet, Rack::Cache)
|
|
54
53
|
config.assets.enabled = true
|
|
55
54
|
|
|
56
|
-
config.filter_parameters += [
|
|
55
|
+
config.filter_parameters += %i[password password_confirmation]
|
|
57
56
|
|
|
58
57
|
# Use the database for sessions instead of the cookie-based default,
|
|
59
58
|
# which shouldn't be used to store highly confidential information
|
|
@@ -83,9 +82,9 @@ module TrustyCms
|
|
|
83
82
|
extension_loader.load_extensions
|
|
84
83
|
extension_loader.load_extension_initalizers
|
|
85
84
|
|
|
86
|
-
extension_loader.activate_extensions
|
|
87
|
-
#config.add_controller_paths(extension_loader.paths(:controller))
|
|
88
|
-
#config.add_eager_load_paths(extension_loader.paths(:eager_load))
|
|
85
|
+
extension_loader.activate_extensions # also calls initialize_views
|
|
86
|
+
# config.add_controller_paths(extension_loader.paths(:controller))
|
|
87
|
+
# config.add_eager_load_paths(extension_loader.paths(:eager_load))
|
|
89
88
|
|
|
90
89
|
# Add new inflection rules using the following format:
|
|
91
90
|
ActiveSupport::Inflector.inflections do |inflect|
|
data/config/boot.rb
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
# Don't change this file!
|
|
2
2
|
# Configure your app in config/environment.rb and config/environments/*.rb
|
|
3
3
|
|
|
4
|
-
|
|
5
4
|
# Set up gems listed in the Gemfile.
|
|
6
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('
|
|
5
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
|
|
7
6
|
|
|
8
7
|
require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
|