JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.2.2
[ckeditor.git] / _source / core / config.js
index f7a2ad7..e836125 100644 (file)
@@ -86,11 +86,21 @@ CKEDITOR.config =
        contentsLangDirection : 'ltr',\r
 \r
        /**\r
+        * Language code of  the writting language which is used to author the editor\r
+        * contents.\r
+        * @default Same value with editor's UI language.\r
+        * @type String\r
+        * @example\r
+        * config.contentsLanguage = 'fr';\r
+        */\r
+       contentsLanguage : '',\r
+\r
+       /**\r
         * The user interface language localization to use. If empty, the editor\r
         * automatically localize the editor to the user language, if supported,\r
         * otherwise the {@link CKEDITOR.config.defaultLanguage} language is used.\r
-        * @default true\r
-        * @type Boolean\r
+        * @default '' (empty)\r
+        * @type String\r
         * @example\r
         * // Load the German interface.\r
         * config.language = 'de';\r
@@ -130,6 +140,18 @@ CKEDITOR.config =
        enterMode : CKEDITOR.ENTER_P,\r
 \r
        /**\r
+        * Force the respect of {@link CKEDITOR.config.enterMode} as line break regardless of the context,\r
+        * E.g. If {@link CKEDITOR.config.enterMode} is set to {@link CKEDITOR.ENTER_P},\r
+        * press enter key inside a 'div' will create a new paragraph with 'p' instead of 'div'.\r
+        * @since 3.2.1\r
+        * @default false\r
+        * @example\r
+        * // Not recommended.\r
+        * config.forceEnterMode = true;\r
+        */\r
+       forceEnterMode : false,\r
+\r
+       /**\r
         * Just like the {@link CKEDITOR.config.enterMode} setting, it defines the behavior for the SHIFT+ENTER key.\r
         * The allowed values are the following constants, and their relative\r
         * behavior:\r
@@ -167,14 +189,18 @@ CKEDITOR.config =
        docType : '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">',\r
 \r
        /**\r
-        * Sets the 'id' attribute to be used on body if it doesn't have one.\r
+        * Sets the "id" attribute to be used on the body element of the editing\r
+        * area.\r
+        * @since 3.1\r
         * @type String\r
         * @default ''\r
         */\r
        bodyId : '',\r
 \r
        /**\r
-        * Sets the 'class' attribute to be used on body if it doesn't have one.\r
+        * Sets the "class" attribute to be used on the body element of the editing\r
+        * area.\r
+        * @since 3.1\r
         * @type String\r
         * @default ''\r
         */\r
@@ -185,6 +211,7 @@ CKEDITOR.config =
         * HTML page. A full page includes the &lt;html&gt;, &lt;head&gt; and\r
         * &lt;body&gt; tags. The final output will also reflect this setting,\r
         * including the &lt;body&gt; contents only if this setting is disabled.\r
+        * @since 3.1\r
         * @type Boolean\r
         * @default false\r
         * @example\r
@@ -212,7 +239,7 @@ CKEDITOR.config =
         * @type String\r
         * @example\r
         */\r
-       plugins : 'about,basicstyles,blockquote,button,clipboard,colorbutton,colordialog,contextmenu,div,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,showborders,sourcearea,stylescombo,table,tabletools,specialchar,tab,templates,toolbar,undo,wysiwygarea,wsc',\r
+       plugins : 'about,a11yhelp,basicstyles,blockquote,button,clipboard,colorbutton,colordialog,contextmenu,div,elementspath,enterkey,entities,filebrowser,find,flash,font,format,forms,horizontalrule,htmldataprocessor,image,indent,justify,keystrokes,link,list,liststyle,maximize,newpage,pagebreak,pastefromword,pastetext,popup,preview,print,removeformat,resize,save,scayt,smiley,showblocks,showborders,sourcearea,stylescombo,table,tabletools,specialchar,tab,templates,toolbar,undo,wysiwygarea,wsc',\r
 \r
        /**\r
         * List of additional plugins to be loaded. This is a tool setting which\r