diff options
Diffstat (limited to 'config/initializers/ckeditor.rb')
-rw-r--r-- | config/initializers/ckeditor.rb | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/config/initializers/ckeditor.rb b/config/initializers/ckeditor.rb new file mode 100644 index 0000000..8f80a43 --- /dev/null +++ b/config/initializers/ckeditor.rb | |||
@@ -0,0 +1,58 @@ | |||
1 | # Use this hook to configure ckeditor | ||
2 | Ckeditor.setup do |config| | ||
3 | # ==> ORM configuration | ||
4 | # Load and configure the ORM. Supports :active_record (default), :mongo_mapper and | ||
5 | # :mongoid (bson_ext recommended) by default. Other ORMs may be | ||
6 | # available as additional gems. | ||
7 | require 'ckeditor/orm/active_record' | ||
8 | |||
9 | # Allowed image file types for upload. | ||
10 | # Set to nil or [] (empty array) for all file types | ||
11 | # By default: %w(jpg jpeg png gif tiff) | ||
12 | # config.image_file_types = %w(jpg jpeg png gif tiff) | ||
13 | |||
14 | # Allowed flash file types for upload. | ||
15 | # Set to nil or [] (empty array) for all file types | ||
16 | # By default: %w(jpg jpeg png gif tiff) | ||
17 | # config.flash_file_types = %w(swf) | ||
18 | |||
19 | # Allowed attachment file types for upload. | ||
20 | # Set to nil or [] (empty array) for all file types | ||
21 | # By default: %w(doc docx xls odt ods pdf rar zip tar tar.gz swf) | ||
22 | # config.attachment_file_types = %w(doc docx xls odt ods pdf rar zip tar tar.gz swf) | ||
23 | |||
24 | # Setup authorization to be run as a before filter | ||
25 | # By default: there is no authorization. | ||
26 | # config.authorize_with :cancan | ||
27 | |||
28 | # Override parent controller CKEditor inherits from | ||
29 | # By default: 'ApplicationController' | ||
30 | # config.parent_controller = 'MyController' | ||
31 | |||
32 | # Asset model classes | ||
33 | # config.picture_model { Ckeditor::Picture } | ||
34 | # config.attachment_file_model { Ckeditor::AttachmentFile } | ||
35 | |||
36 | # Paginate assets | ||
37 | # By default: 24 | ||
38 | # config.default_per_page = 24 | ||
39 | |||
40 | # Customize ckeditor assets path | ||
41 | # By default: nil | ||
42 | # config.asset_path = 'http://www.example.com/assets/ckeditor/' | ||
43 | |||
44 | # To reduce the asset precompilation time, you can limit plugins and/or languages to those you need: | ||
45 | # By default: nil (no limit) | ||
46 | # config.assets_languages = ['en', 'uk'] | ||
47 | # config.assets_plugins = ['image', 'smiley'] | ||
48 | |||
49 | # CKEditor CDN | ||
50 | # More info here http://cdn.ckeditor.com/ | ||
51 | # By default: nil (CDN disabled) | ||
52 | # config.cdn_url = '//cdn.ckeditor.com/4.7.1/standard/ckeditor.js' | ||
53 | |||
54 | # JS config url | ||
55 | # Used when CKEditor CDN enabled | ||
56 | # By default: "ckeditor/config.js" | ||
57 | # config.js_config_url = 'ckeditor/config.js' | ||
58 | end | ||