Imported CKEDITOR 3.0

Monotone-Parent: 5f9c08dd6b5b34d815ddb2108abbf4055e846934
Monotone-Revision: b2cf7eda0ef8f15fb6e78f8c38a7406a47bcdd2f

Monotone-Author: crobert@inverse.ca
Monotone-Date: 2009-08-26T14:03:12
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
C Robert
2009-08-26 14:03:12 +00:00
parent 4d1a003124
commit 0ce87017d6
329 changed files with 5266 additions and 3451 deletions
@@ -65,6 +65,8 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
* comma. It must match definitions loaded with the templates_files setting.
* @type String
* @default 'default'
* @example
* config.templates = 'my_templates';
*/
CKEDITOR.config.templates = 'default';
@@ -72,6 +74,13 @@ CKEDITOR.config.templates = 'default';
* The list of templates definition files to load.
* @type (String) Array
* @default [ 'plugins/templates/templates/default.js' ]
* @example
* config.templates_files =
* [
* '/editor_templates/site_default.js',
* 'http://www.example.com/user_templates.js
* ];
*
*/
CKEDITOR.config.templates_files =
[
@@ -80,9 +89,11 @@ CKEDITOR.config.templates_files =
];
/**
* Whether replace the current document content OR insert current
* editing position.
* Whether the "Replace actual contents" checkbox is checked by default in the
* Templates dialog.
* @type Boolean
* @default true
* @example
* config.templates_replaceContent = false;
*/
CKEDITOR.config.templates_replaceContent = true;