# encoding: utf-8 class ComfortableMexicanSofa::Configuration # Don't like ComfortableMexicanSofa? Set it to whatever you like. :( attr_accessor :cms_title # Module that will handle authentication to access cms-admin area attr_accessor :admin_auth # Module that will handle authentication for public pages attr_accessor :public_auth # Default url to access admin area is http://yourhost/cms-admin/ # You can change 'cms-admin' to 'admin', for example. attr_accessor :admin_route_prefix # When arriving at /cms-admin you may chose to redirect to arbirtary path, # for example '/cms-admin/users' attr_accessor :admin_route_redirect # Normally we include default routes from https://github.com/comfy/comfortable-mexican-sofa/blob/master/config/routes.rb # If you want to include the routes manually set this to false attr_accessor :use_default_routes # Upload settings attr_accessor :upload_file_options # With each page load, files will be synched with the database. Database entries are # destroyed if there's no corresponding file. Fixtures are disabled by default. attr_accessor :enable_fixtures # Path where fixtures can be located. attr_accessor :fixtures_path # Number of revisions kept. Default is 25. If you wish to disable: set this to 0. attr_accessor :revisions_limit # Locale definitions. If you want to define your own locale merge # {:locale => 'Locale Title'} with this. attr_accessor :locales # Admin interface will respect the locale of the site being managed. However you can # force it to English by setting this to `:en` attr_accessor :admin_locale # Database prefix. If you want to keep your comfortable mexican sofa tables # in a location other than the default databases add a database_config. # Setting this to `cms` will look for a cms_#{Rails.env} database definition # in your database.yml file attr_accessor :database_config # A class that is included as a sweeper to admin base controller if it's set attr_accessor :admin_cache_sweeper # Not allowing irb code to be run inside page content. False by default. attr_accessor :allow_irb # Whitelist of all helper methods that can be used via {{cms:helper}} tag. By default # all helpers are allowed except `eval`, `send`, `call` and few others. Empty array # will prevent rendering of all helpers. attr_accessor :allowed_helpers # Whitelist of partials paths that can be used via {{cms:partial}} tag. All partials # are accessible by default. Empty array will prevent rendering of all partials. attr_accessor :allowed_partials # Configuration defaults def initialize @cms_title = 'ComfortableMexicanSofa CMS Engine' @admin_auth = 'ComfortableMexicanSofa::HttpAuth' @public_auth = 'ComfortableMexicanSofa::DummyAuth' @seed_data_path = nil @admin_route_prefix = 'cms-admin' @admin_route_redirect = '' @use_default_routes = true @upload_file_options = { :url => '/system/:class/:id/:attachment/:style/:filename' } @enable_fixtures = false @fixtures_path = File.expand_path('db/cms_fixtures', Rails.root) @revisions_limit = 25 @locales = { 'en' => 'English', 'es' => 'Español', 'pt-BR' => 'Português Brasileiro', 'zh-CN' => '简体中文' } @admin_locale = nil @database_config = nil @admin_cache_sweeper = nil @allow_irb = false @allowed_helpers = nil @allowed_partials = nil end end