JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
a51f938bf9a4757e7409518ade143717bfe80f93
[ckeditor.git] / _source / core / config.js
1 /*\r
2 Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.\r
3 For licensing, see LICENSE.html or http://ckeditor.com/license\r
4 */\r
5 \r
6 /**\r
7  * @fileOverview Defines the {@link CKEDITOR.config} object, which holds the\r
8  * default configuration settings.\r
9  */\r
10 \r
11 CKEDITOR.ENTER_P        = 1;\r
12 CKEDITOR.ENTER_BR       = 2;\r
13 CKEDITOR.ENTER_DIV      = 3;\r
14 \r
15 /**\r
16  * Holds the default configuration settings. Changes to this object are\r
17  * reflected in all editor instances, if not specificaly specified for those\r
18  * instances.\r
19  * @namespace\r
20  * @example\r
21  * // All editor created after the following setting will not load custom\r
22  * // configuration files.\r
23  * CKEDITOR.config.customConfig = '';\r
24  */\r
25 CKEDITOR.config =\r
26 {\r
27         /**\r
28          * The URL path for the custom configuration file to be loaded. If not\r
29          * overloaded with inline configurations, it defaults to the "config.js"\r
30          * file present in the root of the CKEditor installation directory.<br /><br />\r
31          *\r
32          * CKEditor will recursively load custom configuration files defined inside\r
33          * other custom configuration files.\r
34          * @type String\r
35          * @default '&lt;CKEditor folder&gt;/config.js'\r
36          * @example\r
37          * // Load a specific configuration file.\r
38          * CKEDITOR.replace( 'myfiled', { customConfig : '/myconfig.js' } );\r
39          * @example\r
40          * // Do not load any custom configuration file.\r
41          * CKEDITOR.replace( 'myfiled', { customConfig : '' } );\r
42          */\r
43         customConfig : CKEDITOR.getUrl( 'config.js' ),\r
44 \r
45         /**\r
46          * Whether the replaced element (usually a textarea) is to be updated\r
47          * automatically when posting the form containing the editor.\r
48          * @type Boolean\r
49          * @default true\r
50          * @example\r
51          * config.autoUpdateElement = true;\r
52          */\r
53         autoUpdateElement : true,\r
54 \r
55         /**\r
56          * The base href URL used to resolve relative and absolute URLs in the\r
57          * editor content.\r
58          * @type String\r
59          * @default '' (empty string)\r
60          * @example\r
61          * config.baseHref = 'http://www.example.com/path/';\r
62          */\r
63         baseHref : '',\r
64 \r
65         /**\r
66          * The CSS file(s) to be used to apply style to the contents. It should\r
67          * reflect the CSS used in the final pages where the contents are to be\r
68          * used.\r
69          * @type String|Array\r
70          * @default '&lt;CKEditor folder&gt;/contents.css'\r
71          * @example\r
72          * config.contentsCss = '/css/mysitestyles.css';\r
73          * config.contentsCss = ['/css/mysitestyles.css', '/css/anotherfile.css'];\r
74          */\r
75         contentsCss : CKEDITOR.basePath + 'contents.css',\r
76 \r
77         /**\r
78          * The writting direction of the language used to write the editor\r
79          * contents. Allowed values are 'ltr' for Left-To-Right language (like\r
80          * English), or 'rtl' for Right-To-Left languages (like Arabic).\r
81          * @default 'ltr'\r
82          * @type String\r
83          * @example\r
84          * config.contentsLangDirection = 'rtl';\r
85          */\r
86         contentsLangDirection : 'ltr',\r
87 \r
88         /**\r
89          * The user interface language localization to use. If empty, the editor\r
90          * automatically localize the editor to the user language, if supported,\r
91          * otherwise the {@link CKEDITOR.config.defaultLanguage} language is used.\r
92          * @default true\r
93          * @type Boolean\r
94          * @example\r
95          * // Load the German interface.\r
96          * config.language = 'de';\r
97          */\r
98         language : '',\r
99 \r
100         /**\r
101          * The language to be used if {@link CKEDITOR.config.language} is left empty and it's not\r
102          * possible to localize the editor to the user language.\r
103          * @default 'en'\r
104          * @type String\r
105          * @example\r
106          * config.defaultLanguage = 'it';\r
107          */\r
108         defaultLanguage : 'en',\r
109 \r
110         /**\r
111          * Sets the behavior for the ENTER key. It also dictates other behaviour\r
112          * rules in the editor, like whether the &lt;br&gt; element is to be used\r
113          * as a paragraph separator when indenting text.\r
114          * The allowed values are the following constants, and their relative\r
115          * behavior:\r
116          * <ul>\r
117          *     <li>{@link CKEDITOR.ENTER_P} (1): new &lt;p&gt; paragraphs are created;</li>\r
118          *     <li>{@link CKEDITOR.ENTER_BR} (2): lines are broken with &lt;br&gt; elements;</li>\r
119          *     <li>{@link CKEDITOR.ENTER_DIV} (3): new &lt;div&gt; blocks are created.</li>\r
120          * </ul>\r
121          * <strong>Note</strong>: It's recommended to use the\r
122          * {@link CKEDITOR.ENTER_P} value because of its semantic value and\r
123          * correctness. The editor is optimized for this value.\r
124          * @type Number\r
125          * @default {@link CKEDITOR.ENTER_P}\r
126          * @example\r
127          * // Not recommended.\r
128          * config.enterMode = CKEDITOR.ENTER_BR;\r
129          */\r
130         enterMode : CKEDITOR.ENTER_P,\r
131 \r
132         /**\r
133          * Just like the {@link CKEDITOR.config.enterMode} setting, it defines the behavior for the SHIFT+ENTER key.\r
134          * The allowed values are the following constants, and their relative\r
135          * behavior:\r
136          * <ul>\r
137          *     <li>{@link CKEDITOR.ENTER_P} (1): new &lt;p&gt; paragraphs are created;</li>\r
138          *     <li>{@link CKEDITOR.ENTER_BR} (2): lines are broken with &lt;br&gt; elements;</li>\r
139          *     <li>{@link CKEDITOR.ENTER_DIV} (3): new &lt;div&gt; blocks are created.</li>\r
140          * </ul>\r
141          * @type Number\r
142          * @default {@link CKEDITOR.ENTER_BR}\r
143          * @example\r
144          * config.shiftEnterMode = CKEDITOR.ENTER_P;\r
145          */\r
146         shiftEnterMode : CKEDITOR.ENTER_BR,\r
147 \r
148         /**\r
149          * A comma separated list of plugins that are not related to editor\r
150          * instances. Reserved to plugins that extend the core code only.<br /><br />\r
151          *\r
152          * There are no ways to override this setting, except by editing the source\r
153          * code of CKEditor (_source/core/config.js).\r
154          * @type String\r
155          * @example\r
156          */\r
157         corePlugins : '',\r
158 \r
159         /**\r
160          * Sets the doctype to be used when loading the editor content as HTML.\r
161          * @type String\r
162          * @default '&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;'\r
163          * @example\r
164          * // Set the doctype to the HTML 4 (quirks) mode.\r
165          * config.docType = '&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&gt;';\r
166          */\r
167         docType : '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">',\r
168 \r
169         /**\r
170          * Indicates whether the contents to be edited are being inputted as a full\r
171          * HTML page. A full page includes the &lt;html&gt;, &lt;head&gt; and\r
172          * &lt;body&gt; tags. The final output will also reflect this setting,\r
173          * including the &lt;body&gt; contents only if this setting is disabled.\r
174          * @type Boolean\r
175          * @default false\r
176          * @example\r
177          * config.fullPage = true;\r
178          */\r
179         fullPage : false,\r
180 \r
181         /**\r
182          * The height of editing area( content ), in relative or absolute, e.g. 30px, 5em.\r
183          * Note: Percentage unit is not supported yet. e.g. 30%.\r
184          * @type Number|String\r
185          * @default '200'\r
186          * @example\r
187          * config.height = 500;\r
188          * config.height = '25em';\r
189          * config.height = '300px';\r
190          */\r
191         height : 200,\r
192 \r
193         /**\r
194          * Comma separated list of plugins to load and initialize for an editor\r
195          * instance. This should be rarely changed, using instead the\r
196          * {@link CKEDITOR.config.extraPlugins} and\r
197          * {@link CKEDITOR.config.removePlugins} for customizations.\r
198          * @type String\r
199          * @example\r
200          */\r
201         plugins : 'about,basicstyles,blockquote,button,clipboard,colorbutton,colordialog,contextmenu,elementspath,enterkey,entities,filebrowser,find,flash,font,format,forms,horizontalrule,htmldataprocessor,image,indent,justify,keystrokes,link,list,maximize,newpage,pagebreak,pastefromword,pastetext,popup,preview,print,removeformat,resize,save,scayt,smiley,showblocks,sourcearea,stylescombo,table,tabletools,specialchar,tab,templates,toolbar,undo,wysiwygarea,wsc',\r
202 \r
203         /**\r
204          * List of additional plugins to be loaded. This is a tool setting which\r
205          * makes it easier to add new plugins, whithout having to touch and\r
206          * possibly breaking the {@link CKEDITOR.config.plugins} setting.\r
207          * @type String\r
208          * @example\r
209          * config.extraPlugins = 'myplugin,anotherplugin';\r
210          */\r
211         extraPlugins : '',\r
212 \r
213         /**\r
214          * List of plugins that must not be loaded. This is a tool setting which\r
215          * makes it easier to avoid loading plugins definied in the\r
216          * {@link CKEDITOR.config.plugins} setting, whithout having to touch it and\r
217          * potentially breaking it.\r
218          * @type String\r
219          * @example\r
220          * config.removePlugins = 'elementspath,save,font';\r
221          */\r
222         removePlugins : '',\r
223 \r
224         /**\r
225          * List of regular expressions to be executed over the input HTML,\r
226          * indicating code that must stay untouched.\r
227          * @type Array\r
228          * @default [] (empty array)\r
229          * @example\r
230          * config.protectedSource.push( /<\?[\s\S]*?\?>/g );   // PHP Code\r
231          * config.protectedSource.push( /<%[\s\S]*?%>/g );   // ASP Code\r
232          * config.protectedSource.push( /(<asp:[^\>]+>[\s|\S]*?<\/asp:[^\>]+>)|(<asp:[^\>]+\/>)/gi );   // ASP.Net Code\r
233          */\r
234         protectedSource : [],\r
235 \r
236         /**\r
237          * The editor tabindex value.\r
238          * @type Number\r
239          * @default 0 (zero)\r
240          * @example\r
241          * config.tabIndex = 1;\r
242          */\r
243         tabIndex : 0,\r
244 \r
245         /**\r
246          * The theme to be used to build the UI.\r
247          * @type String\r
248          * @default 'default'\r
249          * @see CKEDITOR.config.skin\r
250          * @example\r
251          * config.theme = 'default';\r
252          */\r
253         theme : 'default',\r
254 \r
255         /**\r
256          * The skin to load. It may be the name of the skin folder inside the\r
257          * editor installation path, or the name and the path separated by a comma.\r
258          * @type String\r
259          * @default 'default'\r
260          * @example\r
261          * config.skin = 'v2';\r
262          * @example\r
263          * config.skin = 'myskin,/customstuff/myskin/';\r
264          */\r
265         skin : 'kama',\r
266 \r
267         /**\r
268          * The editor width in CSS size format or pixel integer.\r
269          * @type String|Number\r
270          * @default '' (empty)\r
271          * @example\r
272          * config.width = 850;\r
273          * @example\r
274          * config.width = '75%';\r
275          */\r
276         width : '',\r
277 \r
278         /**\r
279          * The base Z-index for floating dialogs and popups.\r
280          * @type Number\r
281          * @default 10000\r
282          * @example\r
283          * config.baseFloatZIndex = 2000\r
284          */\r
285         baseFloatZIndex : 10000\r
286 \r
287 };\r
288 \r
289 // PACKAGER_RENAME( CKEDITOR.config )\r