=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;
diff --git a/skins/ckeditor/_samples/autogrow.html b/skins/ckeditor/_samples/autogrow.html
new file mode 100644
index 0000000..560474f
--- /dev/null
+++ b/skins/ckeditor/_samples/autogrow.html
@@ -0,0 +1,107 @@
+
+
+
+
+ AutoGrow Plugin — CKEditor Sample
+
+
+
+
+
+
+
+ CKEditor Sample — Using AutoGrow Plugin
+
+
+
+ This sample shows how to configure CKEditor instances to use the
+ autogrow plugin that lets the editor window expand and shrink
+ depending on the amount and size of content entered in the editing area.
+
+
+ In its default implementation the AutoGrow feature can expand the
+ CKEditor window infinitely in order to avoid introducing scrollbars to the editing area.
+
+
+ It is also possible to set a maximum height for the editor window. Once CKEditor
+ editing area reaches the value in pixels specified in the autoGrow_maxHeight
+ attribute, scrollbars will be added and the editor window will no longer expand.
+
+
+ To add a CKEditor instance using the autogrow plugin and its
+ autoGrow_maxHeight
attribute, insert the following JavaScript call to your code:
+
+
CKEDITOR.replace( 'textarea_id ',
+ {
+ extraPlugins : 'autogrow',
+ autoGrow_maxHeight : 800,
+ // Remove the resize plugin, as it doesn't make sense to use it in conjunction with the AutoGrow plugin.
+ removePlugins : 'resize'
+ });
+
+ Note that textarea_id
in the code above is the id
attribute of
+ the <textarea>
element to be replaced with CKEditor. The maximum height should
+ be given in pixels.
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/bbcode.html b/skins/ckeditor/_samples/bbcode.html
new file mode 100644
index 0000000..6dafd02
--- /dev/null
+++ b/skins/ckeditor/_samples/bbcode.html
@@ -0,0 +1,125 @@
+
+
+
+
+ BBCode Plugin — CKEditor Sample
+
+
+
+
+
+
+
+ CKEditor Sample — BBCode Plugin
+
+
+
+ This sample shows how to configure CKEditor to output BBCode format instead of HTML.
+ Please note that the editor configuration was modified to reflect what is needed in a BBCode editing environment.
+ Smiley images, for example, were stripped to the emoticons that are commonly used in some BBCode dialects.
+
+
+ Please note that currently there is no standard for the BBCode markup language, so its implementation
+ for different platforms (message boards, blogs etc.) can vary. This means that before using CKEditor to
+ output BBCode you may need to adjust the implementation to your own environment.
+
+
+ A snippet of the configuration code can be seen below; check the source of this page for
+ a full definition:
+
+
+CKEDITOR.replace( 'editor1',
+ {
+ extraPlugins : 'bbcode',
+ toolbar :
+ [
+ ['Source', '-', 'Save','NewPage','-','Undo','Redo'],
+ ['Find','Replace','-','SelectAll','RemoveFormat'],
+ ['Link', 'Unlink', 'Image'],
+ '/',
+ ['FontSize', 'Bold', 'Italic','Underline'],
+ ['NumberedList','BulletedList','-','Blockquote'],
+ ['TextColor', '-', 'Smiley','SpecialChar', '-', 'Maximize']
+ ],
+ ... some other configurations omitted here
+ });
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+
+
+ Editor 1:
+ This is some [b]sample text[/b]. You are using [url=http://ckeditor.com/]CKEditor[/url].
+
+
+
+
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/devtools.html b/skins/ckeditor/_samples/devtools.html
new file mode 100644
index 0000000..87a3a7f
--- /dev/null
+++ b/skins/ckeditor/_samples/devtools.html
@@ -0,0 +1,94 @@
+
+
+
+
+ Using DevTools Plugin — CKEditor Sample
+
+
+
+
+
+
+
+ CKEditor Sample — Using the Developer Tools Plugin
+
+
+
+ This sample shows how to configure CKEditor instances to use the
+ Developer Tools (devtools
) plugin that displays
+ information about dialog window elements, including the name of the dialog window,
+ tab, and UI element. Please note that the tooltip also contains a link to the
+ CKEditor JavaScript API
+ documentation for each of the selected elements.
+
+
+ This plugin is aimed at developers who would like to customize their CKEditor
+ instances and create their own plugins. By default it is turned off; it is
+ usually useful to only turn it on in the development phase. Note that it works with
+ all CKEditor dialog windows, including the ones that were created by custom plugins.
+
+
+ To add a CKEditor instance using the devtools plugin, insert
+ the following JavaScript call into your code:
+
+
CKEDITOR.replace( 'textarea_id ',
+ {
+ extraPlugins : 'devtools'
+ });
+
+ Note that textarea_id
in the code above is the id
attribute of
+ the <textarea>
element to be replaced with CKEditor.
+
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+
+
+ Editor 1:
+ <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+
+
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/divreplace.html b/skins/ckeditor/_samples/divreplace.html
new file mode 100644
index 0000000..4568f52
--- /dev/null
+++ b/skins/ckeditor/_samples/divreplace.html
@@ -0,0 +1,154 @@
+
+
+
+
+ Replace DIV — CKEditor Sample
+
+
+
+
+
+
+
+
+
+
+ CKEditor Sample — Replace DIV with CKEditor on the Fly
+
+
+
+ This sample shows how to automatically replace <div>
elements
+ with a CKEditor instance on the fly, following user's doubleclick. The content
+ that was previously placed inside the <div>
element will now
+ be moved into CKEditor editing area.
+
+
+ For details on how to create this setup check the source code of this sample page.
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+ Double-click any of the following <div>
elements to transform them into
+ editor instances.
+
+
+ Part 1
+
+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras et ipsum quis mi
+ semper accumsan. Integer pretium dui id massa. Suspendisse in nisl sit amet urna
+ rutrum imperdiet. Nulla eu tellus. Donec ante nisi, ullamcorper quis, fringilla
+ nec, sagittis eleifend, pede. Nulla commodo interdum massa. Donec id metus. Fusce
+ eu ipsum. Suspendisse auctor. Phasellus fermentum porttitor risus.
+
+
+
+
+ Part 2
+
+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras et ipsum quis mi
+ semper accumsan. Integer pretium dui id massa. Suspendisse in nisl sit amet urna
+ rutrum imperdiet. Nulla eu tellus. Donec ante nisi, ullamcorper quis, fringilla
+ nec, sagittis eleifend, pede. Nulla commodo interdum massa. Donec id metus. Fusce
+ eu ipsum. Suspendisse auctor. Phasellus fermentum porttitor risus.
+
+
+ Donec velit. Mauris massa. Vestibulum non nulla. Nam suscipit arcu nec elit. Phasellus
+ sollicitudin iaculis ante. Ut non mauris et sapien tincidunt adipiscing. Vestibulum
+ vitae leo. Suspendisse nec mi tristique nulla laoreet vulputate.
+
+
+
+
+ Part 3
+
+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras et ipsum quis mi
+ semper accumsan. Integer pretium dui id massa. Suspendisse in nisl sit amet urna
+ rutrum imperdiet. Nulla eu tellus. Donec ante nisi, ullamcorper quis, fringilla
+ nec, sagittis eleifend, pede. Nulla commodo interdum massa. Donec id metus. Fusce
+ eu ipsum. Suspendisse auctor. Phasellus fermentum porttitor risus.
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/enterkey.html b/skins/ckeditor/_samples/enterkey.html
new file mode 100644
index 0000000..e6e6c8f
--- /dev/null
+++ b/skins/ckeditor/_samples/enterkey.html
@@ -0,0 +1,115 @@
+
+
+
+
+ ENTER Key Configuration — CKEditor Sample
+
+
+
+
+
+
+
+
+ CKEditor Sample — ENTER Key Configuration
+
+
+
+ This sample shows how to configure the Enter and Shift+Enter keys
+ to perform actions specified in the
+ enterMode
+ and shiftEnterMode
+ parameters, respectively.
+ You can choose from the following options:
+
+
+ ENTER_P
– new <p>
paragraphs are created;
+ ENTER_BR
– lines are broken with <br>
elements;
+ ENTER_DIV
– new <div>
blocks are created.
+
+
+ The sample code below shows how to configure CKEditor to create a <div>
block when Enter key is pressed.
+
+
CKEDITOR.replace( 'textarea_id ',
+ {
+ enterMode : CKEDITOR.ENTER_DIV
+ });
+
+ Note that textarea_id
in the code above is the id
attribute of
+ the <textarea>
element to be replaced.
+
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+ When Enter is pressed:
+
+ Create a new <P> (recommended)
+ Create a new <DIV>
+ Break the line with a <BR>
+
+
+
+ When Shift+Enter is pressed:
+
+ Create a new <P>
+ Create a new <DIV>
+ Break the line with a <BR> (recommended)
+
+
+
+
+
+
+ This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.
+
+
+
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/fullpage.html b/skins/ckeditor/_samples/fullpage.html
new file mode 100644
index 0000000..0b0070e
--- /dev/null
+++ b/skins/ckeditor/_samples/fullpage.html
@@ -0,0 +1,82 @@
+
+
+
+
+ Full Page Editing with Document Properties Plugin — CKEditor Sample
+
+
+
+
+
+
+
+ CKEditor Sample — Full Page Editing with Document Properties Plugin
+
+
+
+ This sample shows how to configure CKEditor to edit entire HTML pages, from the
+ <html>
tag to the </html>
tag.
+
+
+ The Document Properties (docprops
) plugin is also turned on.
+ This plugin allows you to set the metadata of the page, including the page encoding, margins,
+ meta tags, or background.
+
+
+ The CKEditor instance below is inserted with a JavaScript call using the following code:
+
+
CKEDITOR.replace( 'textarea_id ',
+ {
+ fullPage : true,
+ extraPlugins : 'docprops'
+ });
+
+ Note that textarea_id
in the code above is the id
attribute of
+ the <textarea>
element to be replaced.
+
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+
+ CKEditor using the docprops
plugin and working in the Full Page mode:
+ <html><head><title>CKEditor Sample</title></head><body><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></body></html>
+
+
+
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/index.html b/skins/ckeditor/_samples/index.html
new file mode 100644
index 0000000..dabc9af
--- /dev/null
+++ b/skins/ckeditor/_samples/index.html
@@ -0,0 +1,116 @@
+
+
+
+
+ CKEditor Samples
+
+
+
+
+
+ CKEditor Samples Site
+
+
+ Basic Samples
+
+
+
+ Basic Customization
+
+
+ Skins
+ Changing the CKEditor skin by adjusting a single configuration option.
+
+ User Interface color
+ Changing CKEditor User Interface color and adding a toolbar button that lets the user set the UI color.
+
+ User Interface languages
+ Changing CKEditor User Interface language and adding a drop-down list that lets the user choose the UI language.
+
+
+
+ Advanced Samples
+
+
+
+ Additional plugins
+
+
+ AutoGrow plugin
+ Using the AutoGrow plugin in order to make the editor grow to fit the size of its content.
+
+ Output for BBCode
+ Configuring CKEditor to produce BBCode tags instead of HTML.
+
+ Stylesheet Parser plugin
+ Using the Stylesheet Parser plugin to fill the Styles drop-down list based on the CSS classes available in the document stylesheet.
+
+ Developer Tools plugin
+ Using the Developer Tools plugin to display information about dialog window UI elements to allow for easier customization.
+
+ Placeholder plugin
+ Using the Placeholder plugin to create uneditable sections that can only be created and modified with a proper dialog window.
+
+ TableResize plugin
+ Using the TableResize plugin to enable table column resizing.
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/jqueryadapter.html b/skins/ckeditor/_samples/jqueryadapter.html
new file mode 100644
index 0000000..2772878
--- /dev/null
+++ b/skins/ckeditor/_samples/jqueryadapter.html
@@ -0,0 +1,99 @@
+
+
+
+
+ jQuery Adapter — CKEditor Sample
+
+
+
+
+
+
+
+
+
+
+ CKEditor Sample — Using jQuery Adapter
+
+
+
+ This sample shows how to load CKEditor and configure it using the
+ jQuery adapter .
+ In this case the jQuery adapter is responsible for transforming a <textarea>
+ element into a CKEditor instance and setting the configuration of the toolbar.
+
+
+ CKEditor instance with custom configuration set in jQuery can be inserted with the
+ following JavaScript code:
+
+
$(function()
+{
+ var config = {
+ skin:'v2'
+ };
+
+ $('.textarea_class ').ckeditor(config);
+});
+
+ Note that textarea_class
in the code above is the
+ class
attribute of the <textarea>
element to be replaced with
+ CKEditor. Any other jQuery selector can be used to match the target element.
+
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+
+
+
+ Editor 1:
+ <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/output_for_flash.html b/skins/ckeditor/_samples/output_for_flash.html
new file mode 100644
index 0000000..5dc63a4
--- /dev/null
+++ b/skins/ckeditor/_samples/output_for_flash.html
@@ -0,0 +1,275 @@
+
+
+
+
+ Output for Flash — CKEditor Sample
+
+
+
+
+
+
+
+
+
+ CKEditor Sample — Producing Flash Compliant HTML Output
+
+
+
+ This sample shows how to configure CKEditor to output
+ HTML code that can be used with
+
+ Adobe Flash .
+ The code will contain a subset of standard HTML elements like <b>
,
+ <i>
, and <p>
as well as HTML attributes.
+
+
+ To add a CKEditor instance outputting Flash compliant HTML code, load the editor using a standard
+ JavaScript call, and define CKEditor features to use HTML elements and attributes.
+
+
+ For details on how to create this setup check the source code of this sample page.
+
+
+
+ To see how it works, create some content in the editing area of CKEditor on the left
+ and send it to the Flash object on the right side of the page by using the
+ Send to Flash button.
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/output_html.html b/skins/ckeditor/_samples/output_html.html
new file mode 100644
index 0000000..ad63716
--- /dev/null
+++ b/skins/ckeditor/_samples/output_html.html
@@ -0,0 +1,285 @@
+
+
+
+
+ HTML Compliant Output — CKEditor Sample
+
+
+
+
+
+
+
+ CKEditor Sample — Producing HTML Compliant Output
+
+
+
+ This sample shows how to configure CKEditor to output valid
+ HTML 4.01 code.
+ Traditional HTML elements like <b>
,
+ <i>
, and <font>
are used in place of
+ <strong>
, <em>
, and CSS styles.
+
+
+ To add a CKEditor instance outputting legacy HTML 4.01 code, load the editor using a standard
+ JavaScript call, and define CKEditor features to use the HTML compliant elements and attributes.
+
+
+ A snippet of the configuration code can be seen below; check the source of this page for
+ full definition:
+
+
CKEDITOR.replace( 'textarea_id ',
+ {
+ coreStyles_bold : { element : 'b' },
+ coreStyles_italic : { element : 'i' },
+
+ fontSize_style :
+ {
+ element : 'font',
+ attributes : { 'size' : '#(size)' }
+ }
+
+ // More definitions follow.
+ });
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+
+
+ Editor 1:
+ <p>This is some <b>sample text</b>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+
+
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/output_xhtml.html b/skins/ckeditor/_samples/output_xhtml.html
new file mode 100644
index 0000000..2fcd5b2
--- /dev/null
+++ b/skins/ckeditor/_samples/output_xhtml.html
@@ -0,0 +1,177 @@
+
+
+
+
+ XHTML Compliant Output — CKEditor Sample
+
+
+
+
+
+
+
+ CKEditor Sample — Producing XHTML Compliant Output
+
+
+
+ This sample shows how to configure CKEditor to output valid
+ XHTML 1.1 code.
+ Deprecated elements (<font>
, <u>
) or attributes
+ (size
, face
) will be replaced with XHTML compliant code.
+
+
+ To add a CKEditor instance outputting valid XHTML code, load the editor using a standard
+ JavaScript call and define CKEditor features to use the XHTML compliant elements and styles.
+
+
+ A snippet of the configuration code can be seen below; check the source of this page for
+ full definition:
+
+
CKEDITOR.replace( 'textarea_id ',
+ {
+ contentsCss : 'assets/output_xhtml.css',
+
+ coreStyles_bold : { element : 'span', attributes : {'class': 'Bold'} },
+ coreStyles_italic : { element : 'span', attributes : {'class': 'Italic'} },
+
+ // More definitions follow.
+ });
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+
+
+ Editor 1:
+ <p>This is some <span class="Bold">sample text</span>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+
+
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/php/advanced.php b/skins/ckeditor/_samples/php/advanced.php
new file mode 100644
index 0000000..1d62ce5
--- /dev/null
+++ b/skins/ckeditor/_samples/php/advanced.php
@@ -0,0 +1,120 @@
+
+
+
+
+ Setting Configuration Options — CKEditor Sample
+
+
+
+
+
+ CKEditor Sample — Setting Configuration Options
+
+
+ This sample shows how to insert a CKEditor instance with custom configuration options.
+
+
+ To set configuration options, use the config
property. To set the attributes of a <textarea>
element (which is displayed instead of CKEditor in unsupported browsers), use the textareaAttributes
property.
+
+
+<?php
+// Include the CKEditor class.
+include_once "ckeditor/ckeditor.php";
+
+// Create a class instance.
+$CKEditor = new CKEditor();
+
+// Path to the CKEditor directory.
+$CKEditor->basePath = '/ckeditor/';
+
+// Set global configuration (used by every instance of CKEditor).
+$CKEditor->config['width'] = 600;
+
+// Change default textarea attributes.
+$CKEditor->textareaAttributes = array("cols" => 80, "rows" => 10);
+
+// The initial value to be displayed in the editor.
+$initialValue = 'This is some sample text.';
+
+// Create the first instance.
+$CKEditor->editor("textarea_id", $initialValue);
+?>
+
+ Note that textarea_id
in the code above is the name
attribute of
+ the <textarea>
element to be created.
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+ Editor 1:
+returnOutput = true;
+
+// Path to the CKEditor directory, ideally use an absolute path instead of a relative dir.
+// $CKEditor->basePath = '/ckeditor/'
+// If not set, CKEditor will try to detect the correct path.
+$CKEditor->basePath = '../../';
+
+// Set global configuration (will be used by all instances of CKEditor).
+$CKEditor->config['width'] = 600;
+
+// Change default textarea attributes.
+$CKEditor->textareaAttributes = array("cols" => 80, "rows" => 10);
+
+// The initial value to be displayed in the editor.
+$initialValue = 'This is some sample text . You are using CKEditor .
';
+
+// Create the first instance.
+$code = $CKEditor->editor("editor1", $initialValue);
+
+echo $code;
+?>
+
+ Editor 2:
+editor("editor2", $initialValue, $config);
+?>
+
+
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/php/events.php b/skins/ckeditor/_samples/php/events.php
new file mode 100644
index 0000000..a625192
--- /dev/null
+++ b/skins/ckeditor/_samples/php/events.php
@@ -0,0 +1,153 @@
+
+
+
+
+ Adding Event Handlers — CKEditor Sample
+
+
+
+
+
+ CKEditor Sample — Adding Event Handlers
+
+
+
+ This sample shows how to add event handlers to CKEditor with PHP.
+
+
+ A snippet of the configuration code can be seen below; check the source code of this page for
+ the full definition:
+
+
<?php
+// Include the CKEditor class.
+include("ckeditor/ckeditor.php");
+
+// Create a class instance.
+$CKEditor = new CKEditor();
+
+// Path to the CKEditor directory.
+$CKEditor->basePath = '/ckeditor/';
+
+// The initial value to be displayed in the editor.
+$initialValue = 'This is some sample text.';
+
+// Add event handler, instanceReady is fired when editor is loaded.
+$CKEditor->addEventHandler ('instanceReady', 'function (evt) {
+ alert("Loaded editor: " + evt.editor.name);
+}');
+
+// Create an editor instance.
+$CKEditor->editor("editor1", $initialValue);
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+ Editor 1:
+addGlobalEventHandler('dialogDefinition', $function);
+}
+
+/**
+ * Adds a global event, will notify about an open dialog window.
+ */
+function CKEditorNotifyAboutOpenedDialog(&$CKEditor) {
+ $function = 'function (evt) {
+ alert("Loading a dialog window: " + evt.data.name);
+ }';
+
+ $CKEditor->addGlobalEventHandler('dialogDefinition', $function);
+}
+
+// Include the CKEditor class.
+include("../../ckeditor.php");
+
+// Create a class instance.
+$CKEditor = new CKEditor();
+
+// Set a configuration option for all editors.
+$CKEditor->config['width'] = 750;
+
+// Path to the CKEditor directory, ideally use an absolute path instead of a relative dir.
+// $CKEditor->basePath = '/ckeditor/'
+// If not set, CKEditor will try to detect the correct path.
+$CKEditor->basePath = '../../';
+
+// The initial value to be displayed in the editor.
+$initialValue = 'This is some sample text . You are using CKEditor .
';
+
+// Event that will be handled only by the first editor.
+$CKEditor->addEventHandler('instanceReady', 'function (evt) {
+ alert("Loaded editor: " + evt.editor.name);
+}');
+
+// Create the first instance.
+$CKEditor->editor("editor1", $initialValue);
+
+// Clear event handlers. Instances that will be created later will not have
+// the 'instanceReady' listener defined a couple of lines above.
+$CKEditor->clearEventHandlers();
+?>
+
+ Editor 2:
+editor("editor2", $initialValue, $config, $events);
+?>
+
+
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/php/index.html b/skins/ckeditor/_samples/php/index.html
new file mode 100644
index 0000000..b26792d
--- /dev/null
+++ b/skins/ckeditor/_samples/php/index.html
@@ -0,0 +1,47 @@
+
+
+
+
+
+ CKEditor Samples — PHP Integration
+
+
+
+
+ CKEditor Samples List for PHP
+
+
+ Basic Samples
+
+
+
+ Advanced Samples
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/php/replace.php b/skins/ckeditor/_samples/php/replace.php
new file mode 100644
index 0000000..d22dcb7
--- /dev/null
+++ b/skins/ckeditor/_samples/php/replace.php
@@ -0,0 +1,87 @@
+
+
+
+
+ Replace Selected Textarea Elements — CKEditor Sample
+
+
+
+
+
+ CKEditor Sample — Replace Selected Textarea Elements Using PHP Code
+
+
+
+ This sample shows how to replace a selected <textarea>
element
+ with a CKEditor instance by using PHP code.
+
+
+ To replace a <textarea>
element, place the following call at any point
+ after the <textarea>
element:
+
+
+<?php
+// Include the CKEditor class.
+include_once "ckeditor/ckeditor.php";
+
+// Create a class instance.
+$CKEditor = new CKEditor();
+
+// Path to the CKEditor directory.
+$CKEditor->basePath = '/ckeditor/';
+
+// Replace a textarea element with an id (or name) of "textarea_id".
+$CKEditor->replace("textarea_id");
+?>
+
+ Note that textarea_id
in the code above is the id
attribute of
+ the <textarea>
element to be replaced.
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+
+
+ Editor 1:
+ <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+
+
+
+
+ basePath = '/ckeditor/'
+ // If not set, CKEditor will try to detect the correct path.
+ $CKEditor->basePath = '../../';
+ // Replace a textarea element with an id (or name) of "editor1".
+ $CKEditor->replace("editor1");
+ ?>
+
+
diff --git a/skins/ckeditor/_samples/php/replaceall.php b/skins/ckeditor/_samples/php/replaceall.php
new file mode 100644
index 0000000..4415fbd
--- /dev/null
+++ b/skins/ckeditor/_samples/php/replaceall.php
@@ -0,0 +1,88 @@
+
+
+
+
+ Replace All Textarea Elements — CKEditor Sample
+
+
+
+
+
+ CKEditor Sample — Replace All Textarea Elements Using PHP Code
+
+
+
+ This sample shows how to replace all <textarea>
elements
+ with CKEditor by using PHP code.
+
+
+ To replace all <textarea>
elements, place the following call at any point
+ after the last <textarea>
element:
+
+
+<?php
+// Include the CKEditor class.
+include("ckeditor/ckeditor.php");
+
+// Create a class instance.
+$CKEditor = new CKEditor();
+
+// Path to the CKEditor directory.
+$CKEditor->basePath = '/ckeditor/';
+
+// Replace all textarea elements with CKEditor.
+$CKEditor->replaceAll();
+?>
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+
+
+ Editor 1:
+ <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+
+ Editor 2:
+ <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+
+
+
+
+ basePath = '/ckeditor/'
+ // If not set, CKEditor will try to detect the correct path.
+ $CKEditor->basePath = '../../';
+ // Replace all textarea elements with CKEditor.
+ $CKEditor->replaceAll();
+ ?>
+
+
diff --git a/skins/ckeditor/_samples/php/standalone.php b/skins/ckeditor/_samples/php/standalone.php
new file mode 100644
index 0000000..cb8d2de
--- /dev/null
+++ b/skins/ckeditor/_samples/php/standalone.php
@@ -0,0 +1,83 @@
+
+
+
+
+ Creating CKEditor Instances — CKEditor Sample
+
+
+
+
+
+ CKEditor Sample — Creating CKEditor Instances
+
+
+
+ This sample shows how to create a CKEditor instance with PHP.
+
+
+<?php
+include_once "ckeditor/ckeditor.php";
+
+// Create a class instance.
+$CKEditor = new CKEditor();
+
+// Path to the CKEditor directory.
+$CKEditor->basePath = '/ckeditor/';
+
+// Create a textarea element and attach CKEditor to it.
+$CKEditor->editor("textarea_id", "This is some sample text");
+?>
+
+ Note that textarea_id
in the code above is the id
and name
attribute of
+ the <textarea>
element that will be created.
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+
+
+
+ Editor 1:
+
+
+ This is some sample text .
';
+ // Create a class instance.
+ $CKEditor = new CKEditor();
+ // Path to the CKEditor directory, ideally use an absolute path instead of a relative dir.
+ // $CKEditor->basePath = '/ckeditor/'
+ // If not set, CKEditor will try to detect the correct path.
+ $CKEditor->basePath = '../../';
+ // Create a textarea element and attach CKEditor to it.
+ $CKEditor->editor("editor1", $initialValue);
+ ?>
+
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/placeholder.html b/skins/ckeditor/_samples/placeholder.html
new file mode 100644
index 0000000..015e01b
--- /dev/null
+++ b/skins/ckeditor/_samples/placeholder.html
@@ -0,0 +1,81 @@
+
+
+
+
+ Placeholder Plugin — CKEditor Sample
+
+
+
+
+
+
+
+ CKEditor Sample — Using the Placeholder Plugin
+
+
+
+ This sample shows how to configure CKEditor instances to use the
+ Placeholder plugin that lets you insert read-only elements
+ into your content. To enter and modify read-only text, use the
+ Create Placeholder button and its matching dialog window.
+
+
+ To add a CKEditor instance that uses the placeholder
plugin and a related
+ Create Placeholder toolbar button, insert the following JavaScript
+ call to your code:
+
+
CKEDITOR.replace( 'textarea_id ',
+ {
+ extraPlugins : 'placeholder',
+ toolbar : [ [ 'Source', 'Bold' ], ['CreatePlaceholder' ] ]
+ });
+
+ Note that textarea_id
in the code above is the id
attribute of
+ the <textarea>
element to be replaced with CKEditor.
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+
+
+ CKEditor using the placeholder
plugin with its default configuration:
+ <p>This is a [[sample placeholder]]. You are using <a href="http://ckeditor.com/">CKEditor</a>. </p>
+
+
+
+
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/readonly.html b/skins/ckeditor/_samples/readonly.html
new file mode 100644
index 0000000..8b6c3a8
--- /dev/null
+++ b/skins/ckeditor/_samples/readonly.html
@@ -0,0 +1,91 @@
+
+
+
+
+ Read-only State — CKEditor Sample
+
+
+
+
+
+
+
+
+
+ CKEditor Sample — Using the CKEditor Read-Only API
+
+
+
+ This sample shows how to use the
+ setReadOnly
+ API to put editor into the read-only state that makes it impossible for users to change the editor contents.
+
+
+ For details on how to create this setup check the source code of this sample page.
+
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+
+ <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+
+
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/replacebyclass.html b/skins/ckeditor/_samples/replacebyclass.html
new file mode 100644
index 0000000..117640f
--- /dev/null
+++ b/skins/ckeditor/_samples/replacebyclass.html
@@ -0,0 +1,64 @@
+
+
+
+
+ Replace Textareas by Class Name — CKEditor Sample
+
+
+
+
+
+
+
+ CKEditor Sample — Replace Textarea Elements by Class Name
+
+
+
+ This sample shows how to automatically replace all <textarea>
elements
+ of a given class with a CKEditor instance.
+
+
+ To replace a <textarea>
element, simply assign it the ckeditor
+ class, as in the code below:
+
+
<textarea class="ckeditor " name="editor1"></textarea>
+
+ Note that other <textarea>
attributes (like id
or name
) need to be adjusted to your document.
+
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+
+
+ Editor 1:
+ <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/replacebycode.html b/skins/ckeditor/_samples/replacebycode.html
new file mode 100644
index 0000000..beb779e
--- /dev/null
+++ b/skins/ckeditor/_samples/replacebycode.html
@@ -0,0 +1,97 @@
+
+
+
+
+ Replace Textarea by Code — CKEditor Sample
+
+
+
+
+
+
+
+ CKEditor Sample — Replace Textarea Elements Using JavaScript Code
+
+
+
+ This sample shows how to automatically replace all <textarea>
elements
+ with a CKEditor instance by using a JavaScript call.
+
+
+ To replace a <textarea>
element, place the following call at any point
+ after the <textarea>
element or inside a <script>
element located
+ in the <head>
section of the page, in a window.onload
event handler:
+
+
CKEDITOR.replace( 'textarea_id ' );
+
+ Note that textarea_id
in the code above is the id
attribute of
+ the <textarea>
element to be replaced.
+
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+
+
+ Editor 1:
+ <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+
+
+ Editor 2:
+ <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+
+
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/sample.css b/skins/ckeditor/_samples/sample.css
new file mode 100644
index 0000000..a9a57ee
--- /dev/null
+++ b/skins/ckeditor/_samples/sample.css
@@ -0,0 +1,163 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+html, body, h1, h2, h3, h4, h5, h6, div, span, blockquote, p, address, form, fieldset, img, ul, ol, dl, dt, dd, li, hr, table, td, th, strong, em, sup, sub, dfn, ins, del, q, cite, var, samp, code, kbd, tt, pre {
+ line-height: 1.5em;
+}
+
+body {
+ padding:10px 30px;
+}
+
+input, textarea, select, option, optgroup, button, td, th {
+ font-size: 100%;
+}
+
+pre,
+code,
+kbd,
+samp,
+tt{
+ font-family: monospace,monospace;
+ font-size: 1em;
+}
+
+h1.samples {
+ color:#0782C1;
+ font-size:200%;
+ font-weight:normal;
+ margin: 0;
+ padding: 0;
+}
+
+h2.samples {
+ color:#000000;
+ font-size:130%;
+ margin: 0;
+ padding: 0;
+}
+
+p, blockquote, address, form, pre, dl, h1.samples, h2.samples {
+ margin-bottom:15px;
+}
+
+ul.samples {
+ margin-bottom:15px;
+}
+
+.clear {
+ clear:both;
+}
+
+fieldset
+{
+ margin: 0;
+ padding: 10px;
+}
+
+body, input, textarea {
+ color: #333333;
+ font-family: Arial, Helvetica, sans-serif;
+}
+
+body {
+ font-size: 75%;
+}
+
+a.samples {
+ color:#189DE1;
+ text-decoration:none;
+}
+
+a.samples:hover {
+ text-decoration:underline;
+}
+
+form
+{
+ margin: 0;
+ padding: 0;
+}
+
+pre.samples
+{
+ background-color: #F7F7F7;
+ border: 1px solid #D7D7D7;
+ overflow: auto;
+ padding: 0.25em;
+}
+
+#alerts
+{
+ color: Red;
+}
+
+#footer hr
+{
+ margin: 10px 0 15px 0;
+ height: 1px;
+ border: solid 1px gray;
+ border-bottom: none;
+}
+
+#footer p
+{
+ margin: 0 10px 10px 10px;
+ float: left;
+}
+
+#footer #copy
+{
+ float: right;
+}
+
+#outputSample
+{
+ width: 100%;
+ table-layout: fixed;
+}
+
+#outputSample thead th
+{
+ color: #dddddd;
+ background-color: #999999;
+ padding: 4px;
+ white-space: nowrap;
+}
+
+#outputSample tbody th
+{
+ vertical-align: top;
+ text-align: left;
+}
+
+#outputSample pre
+{
+ margin: 0;
+ padding: 0;
+ white-space: pre; /* CSS2 */
+ white-space: -moz-pre-wrap; /* Mozilla*/
+ white-space: -o-pre-wrap; /* Opera 7 */
+ white-space: pre-wrap; /* CSS 2.1 */
+ white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
+ word-wrap: break-word; /* IE */
+}
+
+.description {
+ border: 1px dotted #B7B7B7;
+ margin-bottom: 10px;
+ padding: 10px 10px 0;
+}
+
+label {
+ display: block;
+ margin-bottom:6px;
+}
+
+.cke_dialog label
+{
+ display: inline;
+ margin-bottom: auto;
+}
diff --git a/skins/ckeditor/_samples/sample.js b/skins/ckeditor/_samples/sample.js
new file mode 100644
index 0000000..9e0b411
--- /dev/null
+++ b/skins/ckeditor/_samples/sample.js
@@ -0,0 +1,65 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+// This file is not required by CKEditor and may be safely ignored.
+// It is just a helper file that displays a red message about browser compatibility
+// at the top of the samples (if incompatible browser is detected).
+
+if ( window.CKEDITOR )
+{
+ (function()
+ {
+ var showCompatibilityMsg = function()
+ {
+ var env = CKEDITOR.env;
+
+ var html = 'Your browser is not compatible with CKEditor. ';
+
+ var browsers =
+ {
+ gecko : 'Firefox 2.0',
+ ie : 'Internet Explorer 6.0',
+ opera : 'Opera 9.5',
+ webkit : 'Safari 3.0'
+ };
+
+ var alsoBrowsers = '';
+
+ for ( var key in env )
+ {
+ if ( browsers[ key ] )
+ {
+ if ( env[key] )
+ html += ' CKEditor is compatible with ' + browsers[ key ] + ' or higher.';
+ else
+ alsoBrowsers += browsers[ key ] + '+, ';
+ }
+ }
+
+ alsoBrowsers = alsoBrowsers.replace( /\+,([^,]+), $/, '+ and $1' );
+
+ html += ' It is also compatible with ' + alsoBrowsers + '.';
+
+ html += '
With non compatible browsers, you should still be able to see and edit the contents (HTML) in a plain text field.
';
+
+ var alertsEl = document.getElementById( 'alerts' );
+ alertsEl && ( alertsEl.innerHTML = html );
+ };
+
+ var onload = function()
+ {
+ // Show a friendly compatibility message as soon as the page is loaded,
+ // for those browsers that are not compatible with CKEditor.
+ if ( !CKEDITOR.env.isCompatible )
+ showCompatibilityMsg();
+ };
+
+ // Register the onload listener.
+ if ( window.addEventListener )
+ window.addEventListener( 'load', onload, false );
+ else if ( window.attachEvent )
+ window.attachEvent( 'onload', onload );
+ })();
+}
diff --git a/skins/ckeditor/_samples/sample_posteddata.php b/skins/ckeditor/_samples/sample_posteddata.php
new file mode 100644
index 0000000..71cdd84
--- /dev/null
+++ b/skins/ckeditor/_samples/sample_posteddata.php
@@ -0,0 +1,21 @@
+
diff --git a/skins/ckeditor/_samples/sharedspaces.html b/skins/ckeditor/_samples/sharedspaces.html
new file mode 100644
index 0000000..624b5fc
--- /dev/null
+++ b/skins/ckeditor/_samples/sharedspaces.html
@@ -0,0 +1,153 @@
+
+
+
+
+ Shared Toolbars — CKEditor Sample
+
+
+
+
+
+
+
+
+ CKEditor Sample — Shared Toolbars
+
+
+
+ This sample shows how to configure multiple CKEditor instances to share some parts of the interface.
+ You can choose to share the toolbar (topSpace
), the elements path
+ (bottomSpace
), or both.
+
+
+ CKEditor instances with shared spaces can be inserted with a JavaScript call using the following code:
+
+
CKEDITOR.replace( 'textarea_id ',
+ {
+ sharedSpaces :
+ {
+ top : 'topSpace',
+ bottom : 'bottomSpace'
+ }
+ });
+
+ Note that textarea_id
in the code above is the id
attribute of
+ the <textarea>
element to be replaced with CKEditor.
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+
+
+
+
+ Editor 1 (uses the shared toolbar and elements path):
+ <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+
+ Editor 2 (uses the shared toolbar and elements path):
+ <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+
+ Editor 3 (uses the shared toolbar only):
+ <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+
+ Editor 4 (no shared spaces):
+ <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+
+
+
+
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/skins.html b/skins/ckeditor/_samples/skins.html
new file mode 100644
index 0000000..a9d7b6e
--- /dev/null
+++ b/skins/ckeditor/_samples/skins.html
@@ -0,0 +1,110 @@
+
+
+
+
+ Skins — CKEditor Sample
+
+
+
+
+
+
+
+ CKEditor Sample — Skins
+
+
+
+ This sample shows how to automatically replace <textarea>
elements
+ with a CKEditor instance using a specific skin .
+
+
+ CKEditor with a specified skin (in this case, the "Office 2003" skin) is inserted with a JavaScript call using the following code:
+
+
CKEDITOR.replace( 'textarea_id ',
+ {
+ skin : 'office2003'
+ });
+
+ Note that textarea_id
in the code above is the id
attribute of
+ the <textarea>
element to be replaced.
+
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+ "Kama" skin
+ The default skin used in CKEditor. No additional configuration is required.
+
+ <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+ "Office 2003" skin
+ Use the following code to configure a CKEditor instance to use the "Office 2003" skin.
+CKEDITOR.replace( 'textarea_id ',
+ {
+ skin : 'office2003'
+ });
+
+ <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+ "V2" skin
+ Use the following code to configure a CKEditor instance to use the "V2" skin.
+CKEDITOR.replace( 'textarea_id ',
+ {
+ skin : 'v2'
+ });
+ <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/stylesheetparser.html b/skins/ckeditor/_samples/stylesheetparser.html
new file mode 100644
index 0000000..a938802
--- /dev/null
+++ b/skins/ckeditor/_samples/stylesheetparser.html
@@ -0,0 +1,93 @@
+
+
+
+
+ Using Stylesheet Parser Plugin — CKEditor Sample
+
+
+
+
+
+
+
+ CKEditor Sample — Using the Stylesheet Parser Plugin
+
+
+
+ This sample shows how to configure CKEditor instances to use the
+ Stylesheet Parser (stylesheetparser
) plugin that fills
+ the Styles drop-down list based on the CSS rules available in the document stylesheet.
+
+
+ To add a CKEditor instance using the stylesheetparser
plugin, insert
+ the following JavaScript call into your code:
+
+
CKEDITOR.replace( 'textarea_id ',
+ {
+ extraPlugins : 'stylesheetparser'
+ });
+
+ Note that textarea_id
in the code above is the id
attribute of
+ the <textarea>
element to be replaced with CKEditor.
+
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+
+
+ CKEditor using the stylesheetparser
plugin with its default configuration:
+ <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+
+
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/tableresize.html b/skins/ckeditor/_samples/tableresize.html
new file mode 100644
index 0000000..0bb3919
--- /dev/null
+++ b/skins/ckeditor/_samples/tableresize.html
@@ -0,0 +1,115 @@
+
+
+
+
+ Using TableResize Plugin — CKEditor Sample
+
+
+
+
+
+
+
+ CKEditor Sample — Using the TableResize Plugin
+
+
+
+ This sample shows how to configure CKEditor instances to use the
+ TableResize (tableresize
) plugin that allows
+ the user to edit table columns by using the mouse.
+
+
+ The TableResize plugin makes it possible to modify table column width. Hover
+ your mouse over the column border to see the cursor change to indicate that
+ the column can be resized. Click and drag your mouse to set the desired width.
+
+
+ By default the plugin is turned off. To add a CKEditor instance using the
+ TableResize plugin, insert the following JavaScript call into your code:
+
+
CKEDITOR.replace( 'textarea_id ',
+ {
+ extraPlugins : 'tableresize'
+ });
+
+ Note that textarea_id
in the code above is the id
attribute of
+ the <textarea>
element to be replaced with CKEditor.
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+
+
+ CKEditor using the tableresize
plugin:
+
+<table style="width: 500px;">
+ <caption>
+ A sample table</caption>
+ <tbody>
+ <tr>
+ <td>
+ Column 1</td>
+ <td>
+ Column 2</td>
+ </tr>
+ <tr>
+ <td>
+ You can resize a table column.</td>
+ <td>
+ Hover your mouse over its border.</td>
+ </tr>
+ <tr>
+ <td>
+ Watch the cursor change.</td>
+ <td>
+ Now click and drag to resize.</td>
+ </tr>
+ </tbody>
+</table>
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/ui_color.html b/skins/ckeditor/_samples/ui_color.html
new file mode 100644
index 0000000..78e0104
--- /dev/null
+++ b/skins/ckeditor/_samples/ui_color.html
@@ -0,0 +1,129 @@
+
+
+
+
+ UI Color Picker — CKEditor Sample
+
+
+
+
+
+
+
+ CKEditor Sample — UI Color Picker
+
+
+
+ This sample shows how to automatically replace <textarea>
elements
+ with a CKEditor instance with an option to change the color of its user interface.
+
+
Setting the User Interface Color
+
+ To specify the color of the user interface, set the uiColor
property:
+
+
CKEDITOR.replace( 'textarea_id ',
+ {
+ uiColor: '#EE0000'
+ });
+
+ Note that textarea_id
in the code above is the id
attribute of
+ the <textarea>
element to be replaced.
+
+
Enabling the Color Picker
+
+ If the uicolor plugin along with the dedicated UIColor
+ toolbar button is added to CKEditor, the user will also be able to pick the color of the
+ UI from the color palette available in the UI Color Picker dialog window.
+
+
+ To insert a CKEditor instance with the uicolor plugin enabled,
+ use the following JavaScript call:
+
+
CKEDITOR.replace( 'textarea_id ',
+ {
+ extraPlugins : 'uicolor',
+ toolbar : [ [ 'Bold', 'Italic' ], [ 'UIColor' ] ]
+ });
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+ Click the UI Color Picker button to test your color preferences at runtime.
+
+
+ The first editor instance includes the UI Color Picker toolbar button,
+ but the default UI color is not defined, so the editor uses the skin color.
+
+
+
+ <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+
+ The second editor instance includes the UI Color Picker toolbar button. The
+ default UI color was defined, so the skin color is not used.
+
+
+ <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+
+
+
+
+
+
+
diff --git a/skins/ckeditor/_samples/ui_languages.html b/skins/ckeditor/_samples/ui_languages.html
new file mode 100644
index 0000000..0832a9a
--- /dev/null
+++ b/skins/ckeditor/_samples/ui_languages.html
@@ -0,0 +1,134 @@
+
+
+
+
+ User Interface Globalization — CKEditor Sample
+
+
+
+
+
+
+
+
+ CKEditor Sample — User Interface Languages
+
+
+
+ This sample shows how to automatically replace <textarea>
elements
+ with a CKEditor instance with an option to change the language of its user interface.
+
+
+ It pulls the language list from CKEditor _languages.js
file that contains the list of supported languages and creates
+ a drop-down list that lets the user change the UI language.
+
+
+ By default, CKEditor automatically localizes the editor to the language of the user.
+ The UI language can be controlled with two configuration options:
+
+ language
and
+ defaultLanguage
. The defaultLanguage
setting specifies the
+ default CKEditor language to be used when a localization suitable for user's settings is not available.
+
+
+ To specify the user interface language that will be used no matter what language is
+ specified in user's browser or operating system, set the language
property:
+
+
CKEDITOR.replace( 'textarea_id ',
+ {
+ // Load the German interface.
+ language: 'de'
+ });
+
+ Note that textarea_id
in the code above is the id
attribute of
+ the <textarea>
element to be replaced.
+
+
+
+
+
+
+ CKEditor requires JavaScript to run . In a browser with no JavaScript
+ support, like yours, you should still see the contents (HTML data) and you should
+ be able to edit it normally, without a rich editor interface.
+
+
+
+
+
+ Available languages ( languages!):
+
+
+ (You may see strange characters if your system does not
+ support the selected language)
+
+
+ <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
+
+
+
+
+
+
diff --git a/skins/ckeditor/_source/adapters/jquery.js b/skins/ckeditor/_source/adapters/jquery.js
new file mode 100644
index 0000000..1b0a994
--- /dev/null
+++ b/skins/ckeditor/_source/adapters/jquery.js
@@ -0,0 +1,306 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview jQuery adapter provides easy use of basic CKEditor functions
+ * and access to internal API. It also integrates some aspects of CKEditor with
+ * jQuery framework.
+ *
+ * Every TEXTAREA, DIV and P elements can be converted to working editor.
+ *
+ * Plugin exposes some of editor's event to jQuery event system. All of those are namespaces inside
+ * ".ckeditor" namespace and can be binded/listened on supported textarea, div and p nodes.
+ *
+ * Available jQuery events:
+ * - instanceReady.ckeditor( editor, rootNode )
+ * Triggered when new instance is ready.
+ * - destroy.ckeditor( editor )
+ * Triggered when instance is destroyed.
+ * - getData.ckeditor( editor, eventData )
+ * Triggered when getData event is fired inside editor. It can change returned data using eventData reference.
+ * - setData.ckeditor( editor )
+ * Triggered when getData event is fired inside editor.
+ *
+ * @example
+ *
+ *
+ *
+ */
+
+(function()
+{
+ /**
+ * Allows CKEditor to override jQuery.fn.val(), making it possible to use the val()
+ * function on textareas, as usual, having it synchronized with CKEditor.
+ *
+ * This configuration option is global and executed during the jQuery Adapter loading.
+ * It can't be customized across editor instances.
+ * @type Boolean
+ * @example
+ * <script>
+ * CKEDITOR.config.jqueryOverrideVal = true;
+ * </script>
+ * <!-- Important: The JQuery adapter is loaded *after* setting jqueryOverrideVal -->
+ * <script src="/ckeditor/adapters/jquery.js"></script>
+ * @example
+ * // ... then later in the code ...
+ *
+ * $( 'textarea' ).ckeditor();
+ * // ...
+ * $( 'textarea' ).val( 'New content' );
+ */
+ CKEDITOR.config.jqueryOverrideVal = typeof CKEDITOR.config.jqueryOverrideVal == 'undefined'
+ ? true : CKEDITOR.config.jqueryOverrideVal;
+
+ var jQuery = window.jQuery;
+
+ if ( typeof jQuery == 'undefined' )
+ return;
+
+ // jQuery object methods.
+ jQuery.extend( jQuery.fn,
+ /** @lends jQuery.fn */
+ {
+ /**
+ * Return existing CKEditor instance for first matched element.
+ * Allows to easily use internal API. Doesn't return jQuery object.
+ *
+ * Raised exception if editor doesn't exist or isn't ready yet.
+ *
+ * @name jQuery.ckeditorGet
+ * @return CKEDITOR.editor
+ * @see CKEDITOR.editor
+ */
+ ckeditorGet: function()
+ {
+ var instance = this.eq( 0 ).data( 'ckeditorInstance' );
+ if ( !instance )
+ throw "CKEditor not yet initialized, use ckeditor() with callback.";
+ return instance;
+ },
+ /**
+ * Triggers creation of CKEditor in all matched elements (reduced to DIV, P and TEXTAREAs).
+ * Binds callback to instanceReady event of all instances. If editor is already created, than
+ * callback is fired right away.
+ *
+ * Mixed parameter order allowed.
+ *
+ * @param callback Function to be run on editor instance. Passed parameters: [ textarea ].
+ * Callback is fiered in "this" scope being ckeditor instance and having source textarea as first param.
+ *
+ * @param config Configuration options for new instance(s) if not already created.
+ * See URL
+ *
+ * @example
+ * $( 'textarea' ).ckeditor( function( textarea ) {
+ * $( textarea ).val( this.getData() )
+ * } );
+ *
+ * @name jQuery.fn.ckeditor
+ * @return jQuery.fn
+ */
+ ckeditor: function( callback, config )
+ {
+ if ( !CKEDITOR.env.isCompatible )
+ return this;
+
+ if ( !jQuery.isFunction( callback ))
+ {
+ var tmp = config;
+ config = callback;
+ callback = tmp;
+ }
+ config = config || {};
+
+ this.filter( 'textarea, div, p' ).each( function()
+ {
+ var $element = jQuery( this ),
+ editor = $element.data( 'ckeditorInstance' ),
+ instanceLock = $element.data( '_ckeditorInstanceLock' ),
+ element = this;
+
+ if ( editor && !instanceLock )
+ {
+ if ( callback )
+ callback.apply( editor, [ this ] );
+ }
+ else if ( !instanceLock )
+ {
+ // CREATE NEW INSTANCE
+
+ // Handle config.autoUpdateElement inside this plugin if desired.
+ if ( config.autoUpdateElement
+ || ( typeof config.autoUpdateElement == 'undefined' && CKEDITOR.config.autoUpdateElement ) )
+ {
+ config.autoUpdateElementJquery = true;
+ }
+
+ // Always disable config.autoUpdateElement.
+ config.autoUpdateElement = false;
+ $element.data( '_ckeditorInstanceLock', true );
+
+ // Set instance reference in element's data.
+ editor = CKEDITOR.replace( element, config );
+ $element.data( 'ckeditorInstance', editor );
+
+ // Register callback.
+ editor.on( 'instanceReady', function( event )
+ {
+ var editor = event.editor;
+ setTimeout( function()
+ {
+ // Delay bit more if editor is still not ready.
+ if ( !editor.element )
+ {
+ setTimeout( arguments.callee, 100 );
+ return;
+ }
+
+ // Remove this listener.
+ event.removeListener( 'instanceReady', this.callee );
+
+ // Forward setData on dataReady.
+ editor.on( 'dataReady', function()
+ {
+ $element.trigger( 'setData' + '.ckeditor', [ editor ] );
+ });
+
+ // Forward getData.
+ editor.on( 'getData', function( event ) {
+ $element.trigger( 'getData' + '.ckeditor', [ editor, event.data ] );
+ }, 999 );
+
+ // Forward destroy event.
+ editor.on( 'destroy', function()
+ {
+ $element.trigger( 'destroy.ckeditor', [ editor ] );
+ });
+
+ // Integrate with form submit.
+ if ( editor.config.autoUpdateElementJquery && $element.is( 'textarea' ) && $element.parents( 'form' ).length )
+ {
+ var onSubmit = function()
+ {
+ $element.ckeditor( function()
+ {
+ editor.updateElement();
+ });
+ };
+
+ // Bind to submit event.
+ $element.parents( 'form' ).submit( onSubmit );
+
+ // Bind to form-pre-serialize from jQuery Forms plugin.
+ $element.parents( 'form' ).bind( 'form-pre-serialize', onSubmit );
+
+ // Unbind when editor destroyed.
+ $element.bind( 'destroy.ckeditor', function()
+ {
+ $element.parents( 'form' ).unbind( 'submit', onSubmit );
+ $element.parents( 'form' ).unbind( 'form-pre-serialize', onSubmit );
+ });
+ }
+
+ // Garbage collect on destroy.
+ editor.on( 'destroy', function()
+ {
+ $element.data( 'ckeditorInstance', null );
+ });
+
+ // Remove lock.
+ $element.data( '_ckeditorInstanceLock', null );
+
+ // Fire instanceReady event.
+ $element.trigger( 'instanceReady.ckeditor', [ editor ] );
+
+ // Run given (first) code.
+ if ( callback )
+ callback.apply( editor, [ element ] );
+ }, 0 );
+ }, null, null, 9999);
+ }
+ else
+ {
+ // Editor is already during creation process, bind our code to the event.
+ CKEDITOR.on( 'instanceReady', function( event )
+ {
+ var editor = event.editor;
+ setTimeout( function()
+ {
+ // Delay bit more if editor is still not ready.
+ if ( !editor.element )
+ {
+ setTimeout( arguments.callee, 100 );
+ return;
+ }
+
+ if ( editor.element.$ == element )
+ {
+ // Run given code.
+ if ( callback )
+ callback.apply( editor, [ element ] );
+ }
+ }, 0 );
+ }, null, null, 9999);
+ }
+ });
+ return this;
+ }
+ });
+
+ // New val() method for objects.
+ if ( CKEDITOR.config.jqueryOverrideVal )
+ {
+ jQuery.fn.val = CKEDITOR.tools.override( jQuery.fn.val, function( oldValMethod )
+ {
+ /**
+ * CKEditor-aware val() method.
+ *
+ * Acts same as original jQuery val(), but for textareas which have CKEditor instances binded to them, method
+ * returns editor's content. It also works for settings values.
+ *
+ * @param oldValMethod
+ * @name jQuery.fn.val
+ */
+ return function( newValue, forceNative )
+ {
+ var isSetter = typeof newValue != 'undefined',
+ result;
+
+ this.each( function()
+ {
+ var $this = jQuery( this ),
+ editor = $this.data( 'ckeditorInstance' );
+
+ if ( !forceNative && $this.is( 'textarea' ) && editor )
+ {
+ if ( isSetter )
+ editor.setData( newValue );
+ else
+ {
+ result = editor.getData();
+ // break;
+ return null;
+ }
+ }
+ else
+ {
+ if ( isSetter )
+ oldValMethod.call( $this, newValue );
+ else
+ {
+ result = oldValMethod.call( $this );
+ // break;
+ return null;
+ }
+ }
+
+ return true;
+ });
+ return isSetter ? this : result;
+ };
+ });
+ }
+})();
diff --git a/skins/ckeditor/_source/core/_bootstrap.js b/skins/ckeditor/_source/core/_bootstrap.js
new file mode 100644
index 0000000..1fa5f5e
--- /dev/null
+++ b/skins/ckeditor/_source/core/_bootstrap.js
@@ -0,0 +1,87 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview API initialization code.
+ */
+
+(function()
+{
+ // Disable HC detaction in WebKit. (#5429)
+ if ( CKEDITOR.env.webkit )
+ {
+ CKEDITOR.env.hc = false;
+ return;
+ }
+
+ // Check whether high contrast is active by creating a colored border.
+ var hcDetect = CKEDITOR.dom.element.createFromHtml(
+ '
', CKEDITOR.document );
+
+ hcDetect.appendTo( CKEDITOR.document.getHead() );
+
+ // Update CKEDITOR.env.
+ // Catch exception needed sometimes for FF. (#4230)
+ try
+ {
+ CKEDITOR.env.hc = hcDetect.getComputedStyle( 'border-top-color' ) == hcDetect.getComputedStyle( 'border-right-color' );
+ }
+ catch (e)
+ {
+ CKEDITOR.env.hc = false;
+ }
+
+ if ( CKEDITOR.env.hc )
+ CKEDITOR.env.cssClass += ' cke_hc';
+
+ hcDetect.remove();
+})();
+
+// Load core plugins.
+CKEDITOR.plugins.load( CKEDITOR.config.corePlugins.split( ',' ), function()
+ {
+ CKEDITOR.status = 'loaded';
+ CKEDITOR.fire( 'loaded' );
+
+ // Process all instances created by the "basic" implementation.
+ var pending = CKEDITOR._.pending;
+ if ( pending )
+ {
+ delete CKEDITOR._.pending;
+
+ for ( var i = 0 ; i < pending.length ; i++ )
+ CKEDITOR.add( pending[ i ] );
+ }
+ });
+
+// Needed for IE6 to not request image (HTTP 200 or 304) for every CSS background. (#6187)
+if ( CKEDITOR.env.ie )
+{
+ // Remove IE mouse flickering on IE6 because of background images.
+ try
+ {
+ document.execCommand( 'BackgroundImageCache', false, true );
+ }
+ catch (e)
+ {
+ // We have been reported about loading problems caused by the above
+ // line. For safety, let's just ignore errors.
+ }
+}
+
+/**
+ * Indicates that CKEditor is running on a High Contrast environment.
+ * @name CKEDITOR.env.hc
+ * @example
+ * if ( CKEDITOR.env.hc )
+ * alert( 'You're running on High Contrast mode. The editor interface will get adapted to provide you a better experience.' );
+ */
+
+/**
+ * Fired when a CKEDITOR core object is fully loaded and ready for interaction.
+ * @name CKEDITOR#loaded
+ * @event
+ */
diff --git a/skins/ckeditor/_source/core/ckeditor.js b/skins/ckeditor/_source/core/ckeditor.js
new file mode 100644
index 0000000..201c195
--- /dev/null
+++ b/skins/ckeditor/_source/core/ckeditor.js
@@ -0,0 +1,141 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Contains the third and last part of the {@link CKEDITOR} object
+ * definition.
+ */
+
+// Remove the CKEDITOR.loadFullCore reference defined on ckeditor_basic.
+delete CKEDITOR.loadFullCore;
+
+/**
+ * Holds references to all editor instances created. The name of the properties
+ * in this object correspond to instance names, and their values contains the
+ * {@link CKEDITOR.editor} object representing them.
+ * @type {Object}
+ * @example
+ * alert( CKEDITOR.instances .editor1.name ); // "editor1"
+ */
+CKEDITOR.instances = {};
+
+/**
+ * The document of the window holding the CKEDITOR object.
+ * @type {CKEDITOR.dom.document}
+ * @example
+ * alert( CKEDITOR.document .getBody().getName() ); // "body"
+ */
+CKEDITOR.document = new CKEDITOR.dom.document( document );
+
+/**
+ * Adds an editor instance to the global {@link CKEDITOR} object. This function
+ * is available for internal use mainly.
+ * @param {CKEDITOR.editor} editor The editor instance to be added.
+ * @example
+ */
+CKEDITOR.add = function( editor )
+{
+ CKEDITOR.instances[ editor.name ] = editor;
+
+ editor.on( 'focus', function()
+ {
+ if ( CKEDITOR.currentInstance != editor )
+ {
+ CKEDITOR.currentInstance = editor;
+ CKEDITOR.fire( 'currentInstance' );
+ }
+ });
+
+ editor.on( 'blur', function()
+ {
+ if ( CKEDITOR.currentInstance == editor )
+ {
+ CKEDITOR.currentInstance = null;
+ CKEDITOR.fire( 'currentInstance' );
+ }
+ });
+};
+
+/**
+ * Removes an editor instance from the global {@link CKEDITOR} object. This function
+ * is available for internal use only. External code must use {@link CKEDITOR.editor.prototype.destroy}
+ * to avoid memory leaks.
+ * @param {CKEDITOR.editor} editor The editor instance to be removed.
+ * @example
+ */
+CKEDITOR.remove = function( editor )
+{
+ delete CKEDITOR.instances[ editor.name ];
+};
+
+/**
+ * Perform global clean up to free as much memory as possible
+ * when there are no instances left
+ */
+CKEDITOR.on( 'instanceDestroyed', function ()
+ {
+ if ( CKEDITOR.tools.isEmpty( this.instances ) )
+ CKEDITOR.fire( 'reset' );
+ });
+
+// Load the bootstrap script.
+CKEDITOR.loader.load( 'core/_bootstrap' ); // @Packager.RemoveLine
+
+// Tri-state constants.
+
+/**
+ * Used to indicate the ON or ACTIVE state.
+ * @constant
+ * @example
+ */
+CKEDITOR.TRISTATE_ON = 1;
+
+/**
+ * Used to indicate the OFF or NON ACTIVE state.
+ * @constant
+ * @example
+ */
+CKEDITOR.TRISTATE_OFF = 2;
+
+/**
+ * Used to indicate DISABLED state.
+ * @constant
+ * @example
+ */
+CKEDITOR.TRISTATE_DISABLED = 0;
+
+/**
+ * The editor which is currently active (have user focus).
+ * @name CKEDITOR.currentInstance
+ * @type CKEDITOR.editor
+ * @see CKEDITOR#currentInstance
+ * @example
+ * function showCurrentEditorName()
+ * {
+ * if ( CKEDITOR.currentInstance )
+ * alert( CKEDITOR.currentInstance.name );
+ * else
+ * alert( 'Please focus an editor first.' );
+ * }
+ */
+
+/**
+ * Fired when the CKEDITOR.currentInstance object reference changes. This may
+ * happen when setting the focus on different editor instances in the page.
+ * @name CKEDITOR#currentInstance
+ * @event
+ * var editor; // Variable to hold a reference to the current editor.
+ * CKEDITOR.on( 'currentInstance' , function( e )
+ * {
+ * editor = CKEDITOR.currentInstance;
+ * });
+ */
+
+/**
+ * Fired when the last instance has been destroyed. This event is used to perform
+ * global memory clean up.
+ * @name CKEDITOR#reset
+ * @event
+ */
diff --git a/skins/ckeditor/_source/core/ckeditor_base.js b/skins/ckeditor/_source/core/ckeditor_base.js
new file mode 100644
index 0000000..4ad3d87
--- /dev/null
+++ b/skins/ckeditor/_source/core/ckeditor_base.js
@@ -0,0 +1,227 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Contains the first and essential part of the {@link CKEDITOR}
+ * object definition.
+ */
+
+// #### Compressed Code
+// Must be updated on changes in the script as well as updated in the
+// ckeditor_source.js and ckeditor_basic_source.js files.
+
+// if(!window.CKEDITOR)window.CKEDITOR=(function(){var a={timestamp:'',version:'3.6.1',rev:'7072',_:{},status:'unloaded',basePath:(function(){var d=window.CKEDITOR_BASEPATH||'';if(!d){var e=document.getElementsByTagName('script');for(var f=0;f=0?'&':'?')+('t=')+this.timestamp;return d;}},b=window.CKEDITOR_GETURL;if(b){var c=a.getUrl;a.getUrl=function(d){return b.call(a,d)||c.call(a,d);};}return a;})();
+
+// #### Raw code
+// ATTENTION: read the above "Compressed Code" notes when changing this code.
+
+/* @Packager.RemoveLine
+// Avoid having the editor code initialized twice. (#7588)
+// Use CKEDITOR.dom to check whether the full ckeditor.js code has been loaded
+// or just ckeditor_basic.js.
+// Remove these lines when compressing manually.
+if ( window.CKEDITOR && window.CKEDITOR.dom )
+ return;
+@Packager.RemoveLine */
+
+if ( !window.CKEDITOR )
+{
+ /**
+ * @name CKEDITOR
+ * @namespace This is the API entry point. The entire CKEditor code runs under this object.
+ * @example
+ */
+ window.CKEDITOR = (function()
+ {
+ var CKEDITOR =
+ /** @lends CKEDITOR */
+ {
+
+ /**
+ * A constant string unique for each release of CKEditor. Its value
+ * is used, by default, to build the URL for all resources loaded
+ * by the editor code, guaranteeing clean cache results when
+ * upgrading.
+ * @type String
+ * @example
+ * alert( CKEDITOR.timestamp ); // e.g. '87dm'
+ */
+ // The production implementation contains a fixed timestamp, unique
+ // for each release and generated by the releaser.
+ // (Base 36 value of each component of YYMMDDHH - 4 chars total - e.g. 87bm == 08071122)
+ timestamp : 'B5GJ5GG',
+
+ /**
+ * Contains the CKEditor version number.
+ * @type String
+ * @example
+ * alert( CKEDITOR.version ); // e.g. 'CKEditor 3.4.1'
+ */
+ version : '3.6.1',
+
+ /**
+ * Contains the CKEditor revision number.
+ * The revision number is incremented automatically, following each
+ * modification to the CKEditor source code.
+ * @type String
+ * @example
+ * alert( CKEDITOR.revision ); // e.g. '3975'
+ */
+ revision : '7072',
+
+ /**
+ * Private object used to hold core stuff. It should not be used outside of
+ * the API code as properties defined here may change at any time
+ * without notice.
+ * @private
+ */
+ _ : {},
+
+ /**
+ * Indicates the API loading status. The following statuses are available:
+ *
+ * unloaded : the API is not yet loaded.
+ * basic_loaded : the basic API features are available.
+ * basic_ready : the basic API is ready to load the full core code.
+ * loading : the full API is being loaded.
+ * loaded : the API can be fully used.
+ *
+ * @type String
+ * @example
+ * if ( CKEDITOR.status == 'loaded' )
+ * {
+ * // The API can now be fully used.
+ * }
+ */
+ status : 'unloaded',
+
+ /**
+ * Contains the full URL for the CKEditor installation directory.
+ * It is possible to manually provide the base path by setting a
+ * global variable named CKEDITOR_BASEPATH. This global variable
+ * must be set before the editor script loading.
+ * @type String
+ * @example
+ * alert( CKEDITOR.basePath ); // "http://www.example.com/ckeditor/" (e.g.)
+ */
+ basePath : (function()
+ {
+ // ATTENTION: fixes to this code must be ported to
+ // var basePath in "core/loader.js".
+
+ // Find out the editor directory path, based on its ")' );
+ }
+ }
+
+ return $ && new CKEDITOR.dom.document( $.contentWindow.document );
+ },
+
+ /**
+ * Copy all the attributes from one node to the other, kinda like a clone
+ * skipAttributes is an object with the attributes that must NOT be copied.
+ * @param {CKEDITOR.dom.element} dest The destination element.
+ * @param {Object} skipAttributes A dictionary of attributes to skip.
+ * @example
+ */
+ copyAttributes : function( dest, skipAttributes )
+ {
+ var attributes = this.$.attributes;
+ skipAttributes = skipAttributes || {};
+
+ for ( var n = 0 ; n < attributes.length ; n++ )
+ {
+ var attribute = attributes[n];
+
+ // Lowercase attribute name hard rule is broken for
+ // some attribute on IE, e.g. CHECKED.
+ var attrName = attribute.nodeName.toLowerCase(),
+ attrValue;
+
+ // We can set the type only once, so do it with the proper value, not copying it.
+ if ( attrName in skipAttributes )
+ continue;
+
+ if ( attrName == 'checked' && ( attrValue = this.getAttribute( attrName ) ) )
+ dest.setAttribute( attrName, attrValue );
+ // IE BUG: value attribute is never specified even if it exists.
+ else if ( attribute.specified ||
+ ( CKEDITOR.env.ie && attribute.nodeValue && attrName == 'value' ) )
+ {
+ attrValue = this.getAttribute( attrName );
+ if ( attrValue === null )
+ attrValue = attribute.nodeValue;
+
+ dest.setAttribute( attrName, attrValue );
+ }
+ }
+
+ // The style:
+ if ( this.$.style.cssText !== '' )
+ dest.$.style.cssText = this.$.style.cssText;
+ },
+
+ /**
+ * Changes the tag name of the current element.
+ * @param {String} newTag The new tag for the element.
+ */
+ renameNode : function( newTag )
+ {
+ // If it's already correct exit here.
+ if ( this.getName() == newTag )
+ return;
+
+ var doc = this.getDocument();
+
+ // Create the new node.
+ var newNode = new CKEDITOR.dom.element( newTag, doc );
+
+ // Copy all attributes.
+ this.copyAttributes( newNode );
+
+ // Move children to the new node.
+ this.moveChildren( newNode );
+
+ // Replace the node.
+ this.getParent() && this.$.parentNode.replaceChild( newNode.$, this.$ );
+ newNode.$[ 'data-cke-expando' ] = this.$[ 'data-cke-expando' ];
+ this.$ = newNode.$;
+ },
+
+ /**
+ * Gets a DOM tree descendant under the current node.
+ * @param {Array|Number} indices The child index or array of child indices under the node.
+ * @returns {CKEDITOR.dom.node} The specified DOM child under the current node. Null if child does not exist.
+ * @example
+ * var strong = p.getChild(0);
+ */
+ getChild : function( indices )
+ {
+ var rawNode = this.$;
+
+ if ( !indices.slice )
+ rawNode = rawNode.childNodes[ indices ];
+ else
+ {
+ while ( indices.length > 0 && rawNode )
+ rawNode = rawNode.childNodes[ indices.shift() ];
+ }
+
+ return rawNode ? new CKEDITOR.dom.node( rawNode ) : null;
+ },
+
+ getChildCount : function()
+ {
+ return this.$.childNodes.length;
+ },
+
+ disableContextMenu : function()
+ {
+ this.on( 'contextmenu', function( event )
+ {
+ // Cancel the browser context menu.
+ if ( !event.data.getTarget().hasClass( 'cke_enable_context_menu' ) )
+ event.data.preventDefault();
+ } );
+ },
+
+ /**
+ * Gets element's direction. Supports both CSS 'direction' prop and 'dir' attr.
+ */
+ getDirection : function( useComputed )
+ {
+ return useComputed ?
+ this.getComputedStyle( 'direction' )
+ // Webkit: offline element returns empty direction (#8053).
+ || this.getDirection()
+ || this.getDocument().$.dir
+ || this.getDocument().getBody().getDirection( 1 )
+ : this.getStyle( 'direction' ) || this.getAttribute( 'dir' );
+ },
+
+ /**
+ * Gets, sets and removes custom data to be stored as HTML5 data-* attributes.
+ * @param {String} name The name of the attribute, excluding the 'data-' part.
+ * @param {String} [value] The value to set. If set to false, the attribute will be removed.
+ * @example
+ * element.data( 'extra-info', 'test' ); // appended the attribute data-extra-info="test" to the element
+ * alert( element.data( 'extra-info' ) ); // "test"
+ * element.data( 'extra-info', false ); // remove the data-extra-info attribute from the element
+ */
+ data : function ( name, value )
+ {
+ name = 'data-' + name;
+ if ( value === undefined )
+ return this.getAttribute( name );
+ else if ( value === false )
+ this.removeAttribute( name );
+ else
+ this.setAttribute( name, value );
+
+ return null;
+ }
+ });
+
+( function()
+{
+ var sides = {
+ width : [ "border-left-width", "border-right-width","padding-left", "padding-right" ],
+ height : [ "border-top-width", "border-bottom-width", "padding-top", "padding-bottom" ]
+ };
+
+ function marginAndPaddingSize( type )
+ {
+ var adjustment = 0;
+ for ( var i = 0, len = sides[ type ].length; i < len; i++ )
+ adjustment += parseInt( this.getComputedStyle( sides [ type ][ i ] ) || 0, 10 ) || 0;
+ return adjustment;
+ }
+
+ /**
+ * Sets the element size considering the box model.
+ * @name CKEDITOR.dom.element.prototype.setSize
+ * @function
+ * @param {String} type The dimension to set. It accepts "width" and "height".
+ * @param {Number} size The length unit in px.
+ * @param {Boolean} isBorderBox Apply the size based on the border box model.
+ */
+ CKEDITOR.dom.element.prototype.setSize = function( type, size, isBorderBox )
+ {
+ if ( typeof size == 'number' )
+ {
+ if ( isBorderBox && !( CKEDITOR.env.ie && CKEDITOR.env.quirks ) )
+ size -= marginAndPaddingSize.call( this, type );
+
+ this.setStyle( type, size + 'px' );
+ }
+ };
+
+ /**
+ * Gets the element size, possibly considering the box model.
+ * @name CKEDITOR.dom.element.prototype.getSize
+ * @function
+ * @param {String} type The dimension to get. It accepts "width" and "height".
+ * @param {Boolean} isBorderBox Get the size based on the border box model.
+ */
+ CKEDITOR.dom.element.prototype.getSize = function( type, isBorderBox )
+ {
+ var size = Math.max( this.$[ 'offset' + CKEDITOR.tools.capitalize( type ) ],
+ this.$[ 'client' + CKEDITOR.tools.capitalize( type ) ] ) || 0;
+
+ if ( isBorderBox )
+ size -= marginAndPaddingSize.call( this, type );
+
+ return size;
+ };
+})();
diff --git a/skins/ckeditor/_source/core/dom/elementpath.js b/skins/ckeditor/_source/core/dom/elementpath.js
new file mode 100644
index 0000000..6dcd4d4
--- /dev/null
+++ b/skins/ckeditor/_source/core/dom/elementpath.js
@@ -0,0 +1,119 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+ // Elements that may be considered the "Block boundary" in an element path.
+ var pathBlockElements = { address:1,blockquote:1,dl:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,p:1,pre:1,li:1,dt:1,dd:1, legend:1,caption:1 };
+
+ // Elements that may be considered the "Block limit" in an element path.
+ var pathBlockLimitElements = { body:1,div:1,table:1,tbody:1,tr:1,td:1,th:1,form:1,fieldset:1 };
+
+ // Check if an element contains any block element.
+ var checkHasBlock = function( element )
+ {
+ var childNodes = element.getChildren();
+
+ for ( var i = 0, count = childNodes.count() ; i < count ; i++ )
+ {
+ var child = childNodes.getItem( i );
+
+ if ( child.type == CKEDITOR.NODE_ELEMENT && CKEDITOR.dtd.$block[ child.getName() ] )
+ return true;
+ }
+
+ return false;
+ };
+
+ /**
+ * @class
+ */
+ CKEDITOR.dom.elementPath = function( lastNode )
+ {
+ var block = null;
+ var blockLimit = null;
+ var elements = [];
+
+ var e = lastNode;
+
+ while ( e )
+ {
+ if ( e.type == CKEDITOR.NODE_ELEMENT )
+ {
+ if ( !this.lastElement )
+ this.lastElement = e;
+
+ var elementName = e.getName();
+ if ( CKEDITOR.env.ie && e.$.scopeName != 'HTML' )
+ elementName = e.$.scopeName.toLowerCase() + ':' + elementName;
+
+ if ( !blockLimit )
+ {
+ if ( !block && pathBlockElements[ elementName ] )
+ block = e;
+
+ if ( pathBlockLimitElements[ elementName ] )
+ {
+ // DIV is considered the Block, if no block is available (#525)
+ // and if it doesn't contain other blocks.
+ if ( !block && elementName == 'div' && !checkHasBlock( e ) )
+ block = e;
+ else
+ blockLimit = e;
+ }
+ }
+
+ elements.push( e );
+
+ if ( elementName == 'body' )
+ break;
+ }
+ e = e.getParent();
+ }
+
+ this.block = block;
+ this.blockLimit = blockLimit;
+ this.elements = elements;
+ };
+})();
+
+CKEDITOR.dom.elementPath.prototype =
+{
+ /**
+ * Compares this element path with another one.
+ * @param {CKEDITOR.dom.elementPath} otherPath The elementPath object to be
+ * compared with this one.
+ * @returns {Boolean} "true" if the paths are equal, containing the same
+ * number of elements and the same elements in the same order.
+ */
+ compare : function( otherPath )
+ {
+ var thisElements = this.elements;
+ var otherElements = otherPath && otherPath.elements;
+
+ if ( !otherElements || thisElements.length != otherElements.length )
+ return false;
+
+ for ( var i = 0 ; i < thisElements.length ; i++ )
+ {
+ if ( !thisElements[ i ].equals( otherElements[ i ] ) )
+ return false;
+ }
+
+ return true;
+ },
+
+ contains : function( tagNames )
+ {
+ var elements = this.elements;
+ for ( var i = 0 ; i < elements.length ; i++ )
+ {
+ if ( elements[ i ].getName() in tagNames )
+ return elements[ i ];
+ }
+
+ return null;
+ }
+};
diff --git a/skins/ckeditor/_source/core/dom/event.js b/skins/ckeditor/_source/core/dom/event.js
new file mode 100644
index 0000000..618a110
--- /dev/null
+++ b/skins/ckeditor/_source/core/dom/event.js
@@ -0,0 +1,145 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.dom.event} class, which
+ * represents the a native DOM event object.
+ */
+
+/**
+ * Represents a native DOM event object.
+ * @constructor
+ * @param {Object} domEvent A native DOM event object.
+ * @example
+ */
+CKEDITOR.dom.event = function( domEvent )
+{
+ /**
+ * The native DOM event object represented by this class instance.
+ * @type Object
+ * @example
+ */
+ this.$ = domEvent;
+};
+
+CKEDITOR.dom.event.prototype =
+{
+ /**
+ * Gets the key code associated to the event.
+ * @returns {Number} The key code.
+ * @example
+ * alert( event.getKey() ); "65" is "a" has been pressed
+ */
+ getKey : function()
+ {
+ return this.$.keyCode || this.$.which;
+ },
+
+ /**
+ * Gets a number represeting the combination of the keys pressed during the
+ * event. It is the sum with the current key code and the {@link CKEDITOR.CTRL},
+ * {@link CKEDITOR.SHIFT} and {@link CKEDITOR.ALT} constants.
+ * @returns {Number} The number representing the keys combination.
+ * @example
+ * alert( event.getKeystroke() == 65 ); // "a" key
+ * alert( event.getKeystroke() == CKEDITOR.CTRL + 65 ); // CTRL + "a" key
+ * alert( event.getKeystroke() == CKEDITOR.CTRL + CKEDITOR.SHIFT + 65 ); // CTRL + SHIFT + "a" key
+ */
+ getKeystroke : function()
+ {
+ var keystroke = this.getKey();
+
+ if ( this.$.ctrlKey || this.$.metaKey )
+ keystroke += CKEDITOR.CTRL;
+
+ if ( this.$.shiftKey )
+ keystroke += CKEDITOR.SHIFT;
+
+ if ( this.$.altKey )
+ keystroke += CKEDITOR.ALT;
+
+ return keystroke;
+ },
+
+ /**
+ * Prevents the original behavior of the event to happen. It can optionally
+ * stop propagating the event in the event chain.
+ * @param {Boolean} [stopPropagation] Stop propagating this event in the
+ * event chain.
+ * @example
+ * var element = CKEDITOR.document.getById( 'myElement' );
+ * element.on( 'click', function( ev )
+ * {
+ * // The DOM event object is passed by the "data" property.
+ * var domEvent = ev.data;
+ * // Prevent the click to chave any effect in the element.
+ * domEvent.preventDefault();
+ * });
+ */
+ preventDefault : function( stopPropagation )
+ {
+ var $ = this.$;
+ if ( $.preventDefault )
+ $.preventDefault();
+ else
+ $.returnValue = false;
+
+ if ( stopPropagation )
+ this.stopPropagation();
+ },
+
+ stopPropagation : function()
+ {
+ var $ = this.$;
+ if ( $.stopPropagation )
+ $.stopPropagation();
+ else
+ $.cancelBubble = true;
+ },
+
+ /**
+ * Returns the DOM node where the event was targeted to.
+ * @returns {CKEDITOR.dom.node} The target DOM node.
+ * @example
+ * var element = CKEDITOR.document.getById( 'myElement' );
+ * element.on( 'click', function( ev )
+ * {
+ * // The DOM event object is passed by the "data" property.
+ * var domEvent = ev.data;
+ * // Add a CSS class to the event target.
+ * domEvent.getTarget().addClass( 'clicked' );
+ * });
+ */
+
+ getTarget : function()
+ {
+ var rawNode = this.$.target || this.$.srcElement;
+ return rawNode ? new CKEDITOR.dom.node( rawNode ) : null;
+ }
+};
+
+// For the followind constants, we need to go over the Unicode boundaries
+// (0x10FFFF) to avoid collision.
+
+/**
+ * CTRL key (0x110000).
+ * @constant
+ * @example
+ */
+CKEDITOR.CTRL = 0x110000;
+
+/**
+ * SHIFT key (0x220000).
+ * @constant
+ * @example
+ */
+CKEDITOR.SHIFT = 0x220000;
+
+/**
+ * ALT key (0x440000).
+ * @constant
+ * @example
+ */
+CKEDITOR.ALT = 0x440000;
diff --git a/skins/ckeditor/_source/core/dom/node.js b/skins/ckeditor/_source/core/dom/node.js
new file mode 100644
index 0000000..293ce23
--- /dev/null
+++ b/skins/ckeditor/_source/core/dom/node.js
@@ -0,0 +1,695 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.dom.node} class which is the base
+ * class for classes that represent DOM nodes.
+ */
+
+/**
+ * Base class for classes representing DOM nodes. This constructor may return
+ * an instance of a class that inherits from this class, like
+ * {@link CKEDITOR.dom.element} or {@link CKEDITOR.dom.text}.
+ * @augments CKEDITOR.dom.domObject
+ * @param {Object} domNode A native DOM node.
+ * @constructor
+ * @see CKEDITOR.dom.element
+ * @see CKEDITOR.dom.text
+ * @example
+ */
+CKEDITOR.dom.node = function( domNode )
+{
+ if ( domNode )
+ {
+ switch ( domNode.nodeType )
+ {
+ // Safari don't consider document as element node type. (#3389)
+ case CKEDITOR.NODE_DOCUMENT :
+ return new CKEDITOR.dom.document( domNode );
+
+ case CKEDITOR.NODE_ELEMENT :
+ return new CKEDITOR.dom.element( domNode );
+
+ case CKEDITOR.NODE_TEXT :
+ return new CKEDITOR.dom.text( domNode );
+ }
+
+ // Call the base constructor.
+ CKEDITOR.dom.domObject.call( this, domNode );
+ }
+
+ return this;
+};
+
+CKEDITOR.dom.node.prototype = new CKEDITOR.dom.domObject();
+
+/**
+ * Element node type.
+ * @constant
+ * @example
+ */
+CKEDITOR.NODE_ELEMENT = 1;
+
+/**
+ * Document node type.
+ * @constant
+ * @example
+ */
+CKEDITOR.NODE_DOCUMENT = 9;
+
+/**
+ * Text node type.
+ * @constant
+ * @example
+ */
+CKEDITOR.NODE_TEXT = 3;
+
+/**
+ * Comment node type.
+ * @constant
+ * @example
+ */
+CKEDITOR.NODE_COMMENT = 8;
+
+CKEDITOR.NODE_DOCUMENT_FRAGMENT = 11;
+
+CKEDITOR.POSITION_IDENTICAL = 0;
+CKEDITOR.POSITION_DISCONNECTED = 1;
+CKEDITOR.POSITION_FOLLOWING = 2;
+CKEDITOR.POSITION_PRECEDING = 4;
+CKEDITOR.POSITION_IS_CONTAINED = 8;
+CKEDITOR.POSITION_CONTAINS = 16;
+
+CKEDITOR.tools.extend( CKEDITOR.dom.node.prototype,
+ /** @lends CKEDITOR.dom.node.prototype */
+ {
+ /**
+ * Makes this node a child of another element.
+ * @param {CKEDITOR.dom.element} element The target element to which
+ * this node will be appended.
+ * @returns {CKEDITOR.dom.element} The target element.
+ * @example
+ * var p = new CKEDITOR.dom.element( 'p' );
+ * var strong = new CKEDITOR.dom.element( 'strong' );
+ * strong.appendTo( p );
+ *
+ * // result: "<p><strong></strong></p>"
+ */
+ appendTo : function( element, toStart )
+ {
+ element.append( this, toStart );
+ return element;
+ },
+
+ clone : function( includeChildren, cloneId )
+ {
+ var $clone = this.$.cloneNode( includeChildren );
+
+ var removeIds = function( node )
+ {
+ if ( node.nodeType != CKEDITOR.NODE_ELEMENT )
+ return;
+
+ if ( !cloneId )
+ node.removeAttribute( 'id', false );
+ node.removeAttribute( 'data-cke-expando', false );
+
+ if ( includeChildren )
+ {
+ var childs = node.childNodes;
+ for ( var i=0; i < childs.length; i++ )
+ removeIds( childs[ i ] );
+ }
+ };
+
+ // The "id" attribute should never be cloned to avoid duplication.
+ removeIds( $clone );
+
+ return new CKEDITOR.dom.node( $clone );
+ },
+
+ hasPrevious : function()
+ {
+ return !!this.$.previousSibling;
+ },
+
+ hasNext : function()
+ {
+ return !!this.$.nextSibling;
+ },
+
+ /**
+ * Inserts this element after a node.
+ * @param {CKEDITOR.dom.node} node The node that will precede this element.
+ * @returns {CKEDITOR.dom.node} The node preceding this one after
+ * insertion.
+ * @example
+ * var em = new CKEDITOR.dom.element( 'em' );
+ * var strong = new CKEDITOR.dom.element( 'strong' );
+ * strong.insertAfter( em );
+ *
+ * // result: "<em></em><strong></strong>"
+ */
+ insertAfter : function( node )
+ {
+ node.$.parentNode.insertBefore( this.$, node.$.nextSibling );
+ return node;
+ },
+
+ /**
+ * Inserts this element before a node.
+ * @param {CKEDITOR.dom.node} node The node that will succeed this element.
+ * @returns {CKEDITOR.dom.node} The node being inserted.
+ * @example
+ * var em = new CKEDITOR.dom.element( 'em' );
+ * var strong = new CKEDITOR.dom.element( 'strong' );
+ * strong.insertBefore( em );
+ *
+ * // result: "<strong></strong><em></em>"
+ */
+ insertBefore : function( node )
+ {
+ node.$.parentNode.insertBefore( this.$, node.$ );
+ return node;
+ },
+
+ insertBeforeMe : function( node )
+ {
+ this.$.parentNode.insertBefore( node.$, this.$ );
+ return node;
+ },
+
+ /**
+ * Retrieves a uniquely identifiable tree address for this node.
+ * The tree address returned is an array of integers, with each integer
+ * indicating a child index of a DOM node, starting from
+ * document.documentElement
.
+ *
+ * For example, assuming <body>
is the second child
+ * of <html>
(<head>
being the first),
+ * and we would like to address the third child under the
+ * fourth child of <body>
, the tree address returned would be:
+ * [1, 3, 2]
+ *
+ * The tree address cannot be used for finding back the DOM tree node once
+ * the DOM tree structure has been modified.
+ */
+ getAddress : function( normalized )
+ {
+ var address = [];
+ var $documentElement = this.getDocument().$.documentElement;
+ var node = this.$;
+
+ while ( node && node != $documentElement )
+ {
+ var parentNode = node.parentNode;
+
+ if ( parentNode )
+ {
+ // Get the node index. For performance, call getIndex
+ // directly, instead of creating a new node object.
+ address.unshift( this.getIndex.call( { $ : node }, normalized ) );
+ }
+
+ node = parentNode;
+ }
+
+ return address;
+ },
+
+ /**
+ * Gets the document containing this element.
+ * @returns {CKEDITOR.dom.document} The document.
+ * @example
+ * var element = CKEDITOR.document.getById( 'example' );
+ * alert( element.getDocument().equals( CKEDITOR.document ) ); // "true"
+ */
+ getDocument : function()
+ {
+ return new CKEDITOR.dom.document( this.$.ownerDocument || this.$.parentNode.ownerDocument );
+ },
+
+ getIndex : function( normalized )
+ {
+ // Attention: getAddress depends on this.$
+
+ var current = this.$,
+ index = 0;
+
+ while ( ( current = current.previousSibling ) )
+ {
+ // When normalizing, do not count it if this is an
+ // empty text node or if it's a text node following another one.
+ if ( normalized && current.nodeType == 3 &&
+ ( !current.nodeValue.length ||
+ ( current.previousSibling && current.previousSibling.nodeType == 3 ) ) )
+ {
+ continue;
+ }
+
+ index++;
+ }
+
+ return index;
+ },
+
+ getNextSourceNode : function( startFromSibling, nodeType, guard )
+ {
+ // If "guard" is a node, transform it in a function.
+ if ( guard && !guard.call )
+ {
+ var guardNode = guard;
+ guard = function( node )
+ {
+ return !node.equals( guardNode );
+ };
+ }
+
+ var node = ( !startFromSibling && this.getFirst && this.getFirst() ),
+ parent;
+
+ // Guarding when we're skipping the current element( no children or 'startFromSibling' ).
+ // send the 'moving out' signal even we don't actually dive into.
+ if ( !node )
+ {
+ if ( this.type == CKEDITOR.NODE_ELEMENT && guard && guard( this, true ) === false )
+ return null;
+ node = this.getNext();
+ }
+
+ while ( !node && ( parent = ( parent || this ).getParent() ) )
+ {
+ // The guard check sends the "true" paramenter to indicate that
+ // we are moving "out" of the element.
+ if ( guard && guard( parent, true ) === false )
+ return null;
+
+ node = parent.getNext();
+ }
+
+ if ( !node )
+ return null;
+
+ if ( guard && guard( node ) === false )
+ return null;
+
+ if ( nodeType && nodeType != node.type )
+ return node.getNextSourceNode( false, nodeType, guard );
+
+ return node;
+ },
+
+ getPreviousSourceNode : function( startFromSibling, nodeType, guard )
+ {
+ if ( guard && !guard.call )
+ {
+ var guardNode = guard;
+ guard = function( node )
+ {
+ return !node.equals( guardNode );
+ };
+ }
+
+ var node = ( !startFromSibling && this.getLast && this.getLast() ),
+ parent;
+
+ // Guarding when we're skipping the current element( no children or 'startFromSibling' ).
+ // send the 'moving out' signal even we don't actually dive into.
+ if ( !node )
+ {
+ if ( this.type == CKEDITOR.NODE_ELEMENT && guard && guard( this, true ) === false )
+ return null;
+ node = this.getPrevious();
+ }
+
+ while ( !node && ( parent = ( parent || this ).getParent() ) )
+ {
+ // The guard check sends the "true" paramenter to indicate that
+ // we are moving "out" of the element.
+ if ( guard && guard( parent, true ) === false )
+ return null;
+
+ node = parent.getPrevious();
+ }
+
+ if ( !node )
+ return null;
+
+ if ( guard && guard( node ) === false )
+ return null;
+
+ if ( nodeType && node.type != nodeType )
+ return node.getPreviousSourceNode( false, nodeType, guard );
+
+ return node;
+ },
+
+ getPrevious : function( evaluator )
+ {
+ var previous = this.$, retval;
+ do
+ {
+ previous = previous.previousSibling;
+ retval = previous && new CKEDITOR.dom.node( previous );
+ }
+ while ( retval && evaluator && !evaluator( retval ) )
+ return retval;
+ },
+
+ /**
+ * Gets the node that follows this element in its parent's child list.
+ * @param {Function} evaluator Filtering the result node.
+ * @returns {CKEDITOR.dom.node} The next node or null if not available.
+ * @example
+ * var element = CKEDITOR.dom.element.createFromHtml( '<div><b>Example</b> <i>next</i></div>' );
+ * var first = element.getFirst().getNext() ;
+ * alert( first.getName() ); // "i"
+ */
+ getNext : function( evaluator )
+ {
+ var next = this.$, retval;
+ do
+ {
+ next = next.nextSibling;
+ retval = next && new CKEDITOR.dom.node( next );
+ }
+ while ( retval && evaluator && !evaluator( retval ) )
+ return retval;
+ },
+
+ /**
+ * Gets the parent element for this node.
+ * @returns {CKEDITOR.dom.element} The parent element.
+ * @example
+ * var node = editor.document.getBody().getFirst();
+ * var parent = node.getParent() ;
+ * alert( node.getName() ); // "body"
+ */
+ getParent : function()
+ {
+ var parent = this.$.parentNode;
+ return ( parent && parent.nodeType == 1 ) ? new CKEDITOR.dom.node( parent ) : null;
+ },
+
+ getParents : function( closerFirst )
+ {
+ var node = this;
+ var parents = [];
+
+ do
+ {
+ parents[ closerFirst ? 'push' : 'unshift' ]( node );
+ }
+ while ( ( node = node.getParent() ) )
+
+ return parents;
+ },
+
+ getCommonAncestor : function( node )
+ {
+ if ( node.equals( this ) )
+ return this;
+
+ if ( node.contains && node.contains( this ) )
+ return node;
+
+ var start = this.contains ? this : this.getParent();
+
+ do
+ {
+ if ( start.contains( node ) )
+ return start;
+ }
+ while ( ( start = start.getParent() ) );
+
+ return null;
+ },
+
+ getPosition : function( otherNode )
+ {
+ var $ = this.$;
+ var $other = otherNode.$;
+
+ if ( $.compareDocumentPosition )
+ return $.compareDocumentPosition( $other );
+
+ // IE and Safari have no support for compareDocumentPosition.
+
+ if ( $ == $other )
+ return CKEDITOR.POSITION_IDENTICAL;
+
+ // Only element nodes support contains and sourceIndex.
+ if ( this.type == CKEDITOR.NODE_ELEMENT && otherNode.type == CKEDITOR.NODE_ELEMENT )
+ {
+ if ( $.contains )
+ {
+ if ( $.contains( $other ) )
+ return CKEDITOR.POSITION_CONTAINS + CKEDITOR.POSITION_PRECEDING;
+
+ if ( $other.contains( $ ) )
+ return CKEDITOR.POSITION_IS_CONTAINED + CKEDITOR.POSITION_FOLLOWING;
+ }
+
+ if ( 'sourceIndex' in $ )
+ {
+ return ( $.sourceIndex < 0 || $other.sourceIndex < 0 ) ? CKEDITOR.POSITION_DISCONNECTED :
+ ( $.sourceIndex < $other.sourceIndex ) ? CKEDITOR.POSITION_PRECEDING :
+ CKEDITOR.POSITION_FOLLOWING;
+ }
+ }
+
+ // For nodes that don't support compareDocumentPosition, contains
+ // or sourceIndex, their "address" is compared.
+
+ var addressOfThis = this.getAddress(),
+ addressOfOther = otherNode.getAddress(),
+ minLevel = Math.min( addressOfThis.length, addressOfOther.length );
+
+ // Determinate preceed/follow relationship.
+ for ( var i = 0 ; i <= minLevel - 1 ; i++ )
+ {
+ if ( addressOfThis[ i ] != addressOfOther[ i ] )
+ {
+ if ( i < minLevel )
+ {
+ return addressOfThis[ i ] < addressOfOther[ i ] ?
+ CKEDITOR.POSITION_PRECEDING : CKEDITOR.POSITION_FOLLOWING;
+ }
+ break;
+ }
+ }
+
+ // Determinate contains/contained relationship.
+ return ( addressOfThis.length < addressOfOther.length ) ?
+ CKEDITOR.POSITION_CONTAINS + CKEDITOR.POSITION_PRECEDING :
+ CKEDITOR.POSITION_IS_CONTAINED + CKEDITOR.POSITION_FOLLOWING;
+ },
+
+ /**
+ * Gets the closest ancestor node of this node, specified by its name.
+ * @param {String} reference The name of the ancestor node to search or
+ * an object with the node names to search for.
+ * @param {Boolean} [includeSelf] Whether to include the current
+ * node in the search.
+ * @returns {CKEDITOR.dom.node} The located ancestor node or null if not found.
+ * @since 3.6.1
+ * @example
+ * // Suppose we have the following HTML structure:
+ * // <div id="outer"><div id="inner"><p><b>Some text</b></p></div></div>
+ * // If node == <b>
+ * ascendant = node.getAscendant( 'div' ); // ascendant == <div id="inner">
+ * ascendant = node.getAscendant( 'b' ); // ascendant == null
+ * ascendant = node.getAscendant( 'b', true ); // ascendant == <b>
+ * ascendant = node.getAscendant( { div: 1, p: 1} ); // Searches for the first 'div' or 'p': ascendant == <div id="inner">
+ */
+ getAscendant : function( reference, includeSelf )
+ {
+ var $ = this.$,
+ name;
+
+ if ( !includeSelf )
+ $ = $.parentNode;
+
+ while ( $ )
+ {
+ if ( $.nodeName && ( name = $.nodeName.toLowerCase(), ( typeof reference == 'string' ? name == reference : name in reference ) ) )
+ return new CKEDITOR.dom.node( $ );
+
+ $ = $.parentNode;
+ }
+ return null;
+ },
+
+ hasAscendant : function( name, includeSelf )
+ {
+ var $ = this.$;
+
+ if ( !includeSelf )
+ $ = $.parentNode;
+
+ while ( $ )
+ {
+ if ( $.nodeName && $.nodeName.toLowerCase() == name )
+ return true;
+
+ $ = $.parentNode;
+ }
+ return false;
+ },
+
+ move : function( target, toStart )
+ {
+ target.append( this.remove(), toStart );
+ },
+
+ /**
+ * Removes this node from the document DOM.
+ * @param {Boolean} [preserveChildren] Indicates that the children
+ * elements must remain in the document, removing only the outer
+ * tags.
+ * @example
+ * var element = CKEDITOR.dom.element.getById( 'MyElement' );
+ * element.remove() ;
+ */
+ remove : function( preserveChildren )
+ {
+ var $ = this.$;
+ var parent = $.parentNode;
+
+ if ( parent )
+ {
+ if ( preserveChildren )
+ {
+ // Move all children before the node.
+ for ( var child ; ( child = $.firstChild ) ; )
+ {
+ parent.insertBefore( $.removeChild( child ), $ );
+ }
+ }
+
+ parent.removeChild( $ );
+ }
+
+ return this;
+ },
+
+ replace : function( nodeToReplace )
+ {
+ this.insertBefore( nodeToReplace );
+ nodeToReplace.remove();
+ },
+
+ trim : function()
+ {
+ this.ltrim();
+ this.rtrim();
+ },
+
+ ltrim : function()
+ {
+ var child;
+ while ( this.getFirst && ( child = this.getFirst() ) )
+ {
+ if ( child.type == CKEDITOR.NODE_TEXT )
+ {
+ var trimmed = CKEDITOR.tools.ltrim( child.getText() ),
+ originalLength = child.getLength();
+
+ if ( !trimmed )
+ {
+ child.remove();
+ continue;
+ }
+ else if ( trimmed.length < originalLength )
+ {
+ child.split( originalLength - trimmed.length );
+
+ // IE BUG: child.remove() may raise JavaScript errors here. (#81)
+ this.$.removeChild( this.$.firstChild );
+ }
+ }
+ break;
+ }
+ },
+
+ rtrim : function()
+ {
+ var child;
+ while ( this.getLast && ( child = this.getLast() ) )
+ {
+ if ( child.type == CKEDITOR.NODE_TEXT )
+ {
+ var trimmed = CKEDITOR.tools.rtrim( child.getText() ),
+ originalLength = child.getLength();
+
+ if ( !trimmed )
+ {
+ child.remove();
+ continue;
+ }
+ else if ( trimmed.length < originalLength )
+ {
+ child.split( trimmed.length );
+
+ // IE BUG: child.getNext().remove() may raise JavaScript errors here.
+ // (#81)
+ this.$.lastChild.parentNode.removeChild( this.$.lastChild );
+ }
+ }
+ break;
+ }
+
+ if ( !CKEDITOR.env.ie && !CKEDITOR.env.opera )
+ {
+ child = this.$.lastChild;
+
+ if ( child && child.type == 1 && child.nodeName.toLowerCase() == 'br' )
+ {
+ // Use "eChildNode.parentNode" instead of "node" to avoid IE bug (#324).
+ child.parentNode.removeChild( child ) ;
+ }
+ }
+ },
+
+ /**
+ * Checks if this node is read-only (should not be changed). Additionally
+ * it returns the element that defines the read-only state of this node
+ * (if present). It may be the node itself or any of its parent
+ * nodes.
+ * @returns {CKEDITOR.dom.element|Boolean} An element containing
+ * read-only attributes or "false" if none is found.
+ * @since 3.5
+ * @example
+ * // For the following HTML:
+ * // <div contenteditable="false">Some <b>text</b></div>
+ *
+ * // If "ele" is the above <div>
+ * ele.isReadOnly(); // the <div> element
+ *
+ * // If "ele" is the above <b>
+ * ele.isReadOnly(); // the <div> element
+ */
+ isReadOnly : function()
+ {
+ var current = this;
+ while( current )
+ {
+ if ( current.type == CKEDITOR.NODE_ELEMENT )
+ {
+ if ( current.is( 'body' ) || !!current.data( 'cke-editable' ) )
+ break;
+
+ if ( current.getAttribute( 'contentEditable' ) == 'false' )
+ return current;
+ else if ( current.getAttribute( 'contentEditable' ) == 'true' )
+ break;
+ }
+ current = current.getParent();
+ }
+
+ return false;
+ }
+ }
+);
diff --git a/skins/ckeditor/_source/core/dom/nodelist.js b/skins/ckeditor/_source/core/dom/nodelist.js
new file mode 100644
index 0000000..42efafc
--- /dev/null
+++ b/skins/ckeditor/_source/core/dom/nodelist.js
@@ -0,0 +1,26 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @class
+ */
+CKEDITOR.dom.nodeList = function( nativeList )
+{
+ this.$ = nativeList;
+};
+
+CKEDITOR.dom.nodeList.prototype =
+{
+ count : function()
+ {
+ return this.$.length;
+ },
+
+ getItem : function( index )
+ {
+ var $node = this.$[ index ];
+ return $node ? new CKEDITOR.dom.node( $node ) : null;
+ }
+};
diff --git a/skins/ckeditor/_source/core/dom/range.js b/skins/ckeditor/_source/core/dom/range.js
new file mode 100644
index 0000000..477197e
--- /dev/null
+++ b/skins/ckeditor/_source/core/dom/range.js
@@ -0,0 +1,2032 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * Creates a CKEDITOR.dom.range instance that can be used inside a specific
+ * DOM Document.
+ * @class Represents a delimited piece of content in a DOM Document.
+ * It is contiguous in the sense that it can be characterized as selecting all
+ * of the content between a pair of boundary-points.
+ *
+ * This class shares much of the W3C
+ * Document Object Model Range
+ * ideas and features, adding several range manipulation tools to it, but it's
+ * not intended to be compatible with it.
+ * @param {CKEDITOR.dom.document} document The document into which the range
+ * features will be available.
+ * @example
+ * // Create a range for the entire contents of the editor document body.
+ * var range = new CKEDITOR.dom.range( editor.document );
+ * range.selectNodeContents( editor.document.getBody() );
+ * // Delete the contents.
+ * range.deleteContents();
+ */
+CKEDITOR.dom.range = function( document )
+{
+ /**
+ * Node within which the range begins.
+ * @type {CKEDITOR.NODE_ELEMENT|CKEDITOR.NODE_TEXT}
+ * @example
+ * var range = new CKEDITOR.dom.range( editor.document );
+ * range.selectNodeContents( editor.document.getBody() );
+ * alert( range.startContainer.getName() ); // "body"
+ */
+ this.startContainer = null;
+
+ /**
+ * Offset within the starting node of the range.
+ * @type {Number}
+ * @example
+ * var range = new CKEDITOR.dom.range( editor.document );
+ * range.selectNodeContents( editor.document.getBody() );
+ * alert( range.startOffset ); // "0"
+ */
+ this.startOffset = null;
+
+ /**
+ * Node within which the range ends.
+ * @type {CKEDITOR.NODE_ELEMENT|CKEDITOR.NODE_TEXT}
+ * @example
+ * var range = new CKEDITOR.dom.range( editor.document );
+ * range.selectNodeContents( editor.document.getBody() );
+ * alert( range.endContainer.getName() ); // "body"
+ */
+ this.endContainer = null;
+
+ /**
+ * Offset within the ending node of the range.
+ * @type {Number}
+ * @example
+ * var range = new CKEDITOR.dom.range( editor.document );
+ * range.selectNodeContents( editor.document.getBody() );
+ * alert( range.endOffset ); // == editor.document.getBody().getChildCount()
+ */
+ this.endOffset = null;
+
+ /**
+ * Indicates that this is a collapsed range. A collapsed range has it's
+ * start and end boudaries at the very same point so nothing is contained
+ * in it.
+ * @example
+ * var range = new CKEDITOR.dom.range( editor.document );
+ * range.selectNodeContents( editor.document.getBody() );
+ * alert( range.collapsed ); // "false"
+ * range.collapse();
+ * alert( range.collapsed ); // "true"
+ */
+ this.collapsed = true;
+
+ /**
+ * The document within which the range can be used.
+ * @type {CKEDITOR.dom.document}
+ * @example
+ * // Selects the body contents of the range document.
+ * range.selectNodeContents( range.document.getBody() );
+ */
+ this.document = document;
+};
+
+(function()
+{
+ // Updates the "collapsed" property for the given range object.
+ var updateCollapsed = function( range )
+ {
+ range.collapsed = (
+ range.startContainer &&
+ range.endContainer &&
+ range.startContainer.equals( range.endContainer ) &&
+ range.startOffset == range.endOffset );
+ };
+
+ // This is a shared function used to delete, extract and clone the range
+ // contents.
+ // V2
+ var execContentsAction = function( range, action, docFrag, mergeThen )
+ {
+ range.optimizeBookmark();
+
+ var startNode = range.startContainer;
+ var endNode = range.endContainer;
+
+ var startOffset = range.startOffset;
+ var endOffset = range.endOffset;
+
+ var removeStartNode;
+ var removeEndNode;
+
+ // For text containers, we must simply split the node and point to the
+ // second part. The removal will be handled by the rest of the code .
+ if ( endNode.type == CKEDITOR.NODE_TEXT )
+ endNode = endNode.split( endOffset );
+ else
+ {
+ // If the end container has children and the offset is pointing
+ // to a child, then we should start from it.
+ if ( endNode.getChildCount() > 0 )
+ {
+ // If the offset points after the last node.
+ if ( endOffset >= endNode.getChildCount() )
+ {
+ // Let's create a temporary node and mark it for removal.
+ endNode = endNode.append( range.document.createText( '' ) );
+ removeEndNode = true;
+ }
+ else
+ endNode = endNode.getChild( endOffset );
+ }
+ }
+
+ // For text containers, we must simply split the node. The removal will
+ // be handled by the rest of the code .
+ if ( startNode.type == CKEDITOR.NODE_TEXT )
+ {
+ startNode.split( startOffset );
+
+ // In cases the end node is the same as the start node, the above
+ // splitting will also split the end, so me must move the end to
+ // the second part of the split.
+ if ( startNode.equals( endNode ) )
+ endNode = startNode.getNext();
+ }
+ else
+ {
+ // If the start container has children and the offset is pointing
+ // to a child, then we should start from its previous sibling.
+
+ // If the offset points to the first node, we don't have a
+ // sibling, so let's use the first one, but mark it for removal.
+ if ( !startOffset )
+ {
+ // Let's create a temporary node and mark it for removal.
+ startNode = startNode.getFirst().insertBeforeMe( range.document.createText( '' ) );
+ removeStartNode = true;
+ }
+ else if ( startOffset >= startNode.getChildCount() )
+ {
+ // Let's create a temporary node and mark it for removal.
+ startNode = startNode.append( range.document.createText( '' ) );
+ removeStartNode = true;
+ }
+ else
+ startNode = startNode.getChild( startOffset ).getPrevious();
+ }
+
+ // Get the parent nodes tree for the start and end boundaries.
+ var startParents = startNode.getParents();
+ var endParents = endNode.getParents();
+
+ // Compare them, to find the top most siblings.
+ var i, topStart, topEnd;
+
+ for ( i = 0 ; i < startParents.length ; i++ )
+ {
+ topStart = startParents[ i ];
+ topEnd = endParents[ i ];
+
+ // The compared nodes will match until we find the top most
+ // siblings (different nodes that have the same parent).
+ // "i" will hold the index in the parents array for the top
+ // most element.
+ if ( !topStart.equals( topEnd ) )
+ break;
+ }
+
+ var clone = docFrag, levelStartNode, levelClone, currentNode, currentSibling;
+
+ // Remove all successive sibling nodes for every node in the
+ // startParents tree.
+ for ( var j = i ; j < startParents.length ; j++ )
+ {
+ levelStartNode = startParents[j];
+
+ // For Extract and Clone, we must clone this level.
+ if ( clone && !levelStartNode.equals( startNode ) ) // action = 0 = Delete
+ levelClone = clone.append( levelStartNode.clone() );
+
+ currentNode = levelStartNode.getNext();
+
+ while ( currentNode )
+ {
+ // Stop processing when the current node matches a node in the
+ // endParents tree or if it is the endNode.
+ if ( currentNode.equals( endParents[ j ] ) || currentNode.equals( endNode ) )
+ break;
+
+ // Cache the next sibling.
+ currentSibling = currentNode.getNext();
+
+ // If cloning, just clone it.
+ if ( action == 2 ) // 2 = Clone
+ clone.append( currentNode.clone( true ) );
+ else
+ {
+ // Both Delete and Extract will remove the node.
+ currentNode.remove();
+
+ // When Extracting, move the removed node to the docFrag.
+ if ( action == 1 ) // 1 = Extract
+ clone.append( currentNode );
+ }
+
+ currentNode = currentSibling;
+ }
+
+ if ( clone )
+ clone = levelClone;
+ }
+
+ clone = docFrag;
+
+ // Remove all previous sibling nodes for every node in the
+ // endParents tree.
+ for ( var k = i ; k < endParents.length ; k++ )
+ {
+ levelStartNode = endParents[ k ];
+
+ // For Extract and Clone, we must clone this level.
+ if ( action > 0 && !levelStartNode.equals( endNode ) ) // action = 0 = Delete
+ levelClone = clone.append( levelStartNode.clone() );
+
+ // The processing of siblings may have already been done by the parent.
+ if ( !startParents[ k ] || levelStartNode.$.parentNode != startParents[ k ].$.parentNode )
+ {
+ currentNode = levelStartNode.getPrevious();
+
+ while ( currentNode )
+ {
+ // Stop processing when the current node matches a node in the
+ // startParents tree or if it is the startNode.
+ if ( currentNode.equals( startParents[ k ] ) || currentNode.equals( startNode ) )
+ break;
+
+ // Cache the next sibling.
+ currentSibling = currentNode.getPrevious();
+
+ // If cloning, just clone it.
+ if ( action == 2 ) // 2 = Clone
+ clone.$.insertBefore( currentNode.$.cloneNode( true ), clone.$.firstChild ) ;
+ else
+ {
+ // Both Delete and Extract will remove the node.
+ currentNode.remove();
+
+ // When Extracting, mode the removed node to the docFrag.
+ if ( action == 1 ) // 1 = Extract
+ clone.$.insertBefore( currentNode.$, clone.$.firstChild );
+ }
+
+ currentNode = currentSibling;
+ }
+ }
+
+ if ( clone )
+ clone = levelClone;
+ }
+
+ if ( action == 2 ) // 2 = Clone.
+ {
+ // No changes in the DOM should be done, so fix the split text (if any).
+
+ var startTextNode = range.startContainer;
+ if ( startTextNode.type == CKEDITOR.NODE_TEXT )
+ {
+ startTextNode.$.data += startTextNode.$.nextSibling.data;
+ startTextNode.$.parentNode.removeChild( startTextNode.$.nextSibling );
+ }
+
+ var endTextNode = range.endContainer;
+ if ( endTextNode.type == CKEDITOR.NODE_TEXT && endTextNode.$.nextSibling )
+ {
+ endTextNode.$.data += endTextNode.$.nextSibling.data;
+ endTextNode.$.parentNode.removeChild( endTextNode.$.nextSibling );
+ }
+ }
+ else
+ {
+ // Collapse the range.
+
+ // If a node has been partially selected, collapse the range between
+ // topStart and topEnd. Otherwise, simply collapse it to the start. (W3C specs).
+ if ( topStart && topEnd && ( startNode.$.parentNode != topStart.$.parentNode || endNode.$.parentNode != topEnd.$.parentNode ) )
+ {
+ var endIndex = topEnd.getIndex();
+
+ // If the start node is to be removed, we must correct the
+ // index to reflect the removal.
+ if ( removeStartNode && topEnd.$.parentNode == startNode.$.parentNode )
+ endIndex--;
+
+ // Merge splitted parents.
+ if ( mergeThen && topStart.type == CKEDITOR.NODE_ELEMENT )
+ {
+ var span = CKEDITOR.dom.element.createFromHtml( ' ', range.document );
+ span.insertAfter( topStart );
+ topStart.mergeSiblings( false );
+ range.moveToBookmark( { startNode : span } );
+ }
+ else
+ range.setStart( topEnd.getParent(), endIndex );
+ }
+
+ // Collapse it to the start.
+ range.collapse( true );
+ }
+
+ // Cleanup any marked node.
+ if ( removeStartNode )
+ startNode.remove();
+
+ if ( removeEndNode && endNode.$.parentNode )
+ endNode.remove();
+ };
+
+ var inlineChildReqElements = { abbr:1,acronym:1,b:1,bdo:1,big:1,cite:1,code:1,del:1,dfn:1,em:1,font:1,i:1,ins:1,label:1,kbd:1,q:1,samp:1,small:1,span:1,strike:1,strong:1,sub:1,sup:1,tt:1,u:1,'var':1 };
+
+ // Creates the appropriate node evaluator for the dom walker used inside
+ // check(Start|End)OfBlock.
+ function getCheckStartEndBlockEvalFunction( isStart )
+ {
+ var hadBr = false, bookmarkEvaluator = CKEDITOR.dom.walker.bookmark( true );
+ return function( node )
+ {
+ // First ignore bookmark nodes.
+ if ( bookmarkEvaluator( node ) )
+ return true;
+
+ if ( node.type == CKEDITOR.NODE_TEXT )
+ {
+ // If there's any visible text, then we're not at the start.
+ if ( node.hasAscendant( 'pre' ) || CKEDITOR.tools.trim( node.getText() ).length )
+ return false;
+ }
+ else if ( node.type == CKEDITOR.NODE_ELEMENT )
+ {
+ // If there are non-empty inline elements (e.g. ), then we're not
+ // at the start.
+ if ( !inlineChildReqElements[ node.getName() ] )
+ {
+ // If we're working at the end-of-block, forgive the first in non-IE
+ // browsers.
+ if ( !isStart && !CKEDITOR.env.ie && node.getName() == 'br' && !hadBr )
+ hadBr = true;
+ else
+ return false;
+ }
+ }
+ return true;
+ };
+ }
+
+ // Evaluator for CKEDITOR.dom.element::checkBoundaryOfElement, reject any
+ // text node and non-empty elements unless it's being bookmark text.
+ function elementBoundaryEval( node )
+ {
+ // Reject any text node unless it's being bookmark
+ // OR it's spaces. (#3883)
+ return node.type != CKEDITOR.NODE_TEXT
+ && node.getName() in CKEDITOR.dtd.$removeEmpty
+ || !CKEDITOR.tools.trim( node.getText() )
+ || !!node.getParent().data( 'cke-bookmark' );
+ }
+
+ var whitespaceEval = new CKEDITOR.dom.walker.whitespaces(),
+ bookmarkEval = new CKEDITOR.dom.walker.bookmark();
+
+ function nonWhitespaceOrBookmarkEval( node )
+ {
+ // Whitespaces and bookmark nodes are to be ignored.
+ return !whitespaceEval( node ) && !bookmarkEval( node );
+ }
+
+ CKEDITOR.dom.range.prototype =
+ {
+ clone : function()
+ {
+ var clone = new CKEDITOR.dom.range( this.document );
+
+ clone.startContainer = this.startContainer;
+ clone.startOffset = this.startOffset;
+ clone.endContainer = this.endContainer;
+ clone.endOffset = this.endOffset;
+ clone.collapsed = this.collapsed;
+
+ return clone;
+ },
+
+ collapse : function( toStart )
+ {
+ if ( toStart )
+ {
+ this.endContainer = this.startContainer;
+ this.endOffset = this.startOffset;
+ }
+ else
+ {
+ this.startContainer = this.endContainer;
+ this.startOffset = this.endOffset;
+ }
+
+ this.collapsed = true;
+ },
+
+ /**
+ * The content nodes of the range are cloned and added to a document fragment, which is returned.
+ * Note: Text selection may lost after invoking this method. (caused by text node splitting).
+ */
+ cloneContents : function()
+ {
+ var docFrag = new CKEDITOR.dom.documentFragment( this.document );
+
+ if ( !this.collapsed )
+ execContentsAction( this, 2, docFrag );
+
+ return docFrag;
+ },
+
+ /**
+ * Deletes the content nodes of the range permanently from the DOM tree.
+ * @param {Boolean} [mergeThen] Merge any splitted elements result in DOM true due to partial selection.
+ */
+ deleteContents : function( mergeThen )
+ {
+ if ( this.collapsed )
+ return;
+
+ execContentsAction( this, 0, null, mergeThen );
+ },
+
+ /**
+ * The content nodes of the range are cloned and added to a document fragment,
+ * meanwhile they're removed permanently from the DOM tree.
+ * @param {Boolean} [mergeThen] Merge any splitted elements result in DOM true due to partial selection.
+ */
+ extractContents : function( mergeThen )
+ {
+ var docFrag = new CKEDITOR.dom.documentFragment( this.document );
+
+ if ( !this.collapsed )
+ execContentsAction( this, 1, docFrag, mergeThen );
+
+ return docFrag;
+ },
+
+ /**
+ * Creates a bookmark object, which can be later used to restore the
+ * range by using the moveToBookmark function.
+ * This is an "intrusive" way to create a bookmark. It includes tags
+ * in the range boundaries. The advantage of it is that it is possible to
+ * handle DOM mutations when moving back to the bookmark.
+ * Attention: the inclusion of nodes in the DOM is a design choice and
+ * should not be changed as there are other points in the code that may be
+ * using those nodes to perform operations. See GetBookmarkNode.
+ * @param {Boolean} [serializable] Indicates that the bookmark nodes
+ * must contain ids, which can be used to restore the range even
+ * when these nodes suffer mutations (like a clonation or innerHTML
+ * change).
+ * @returns {Object} And object representing a bookmark.
+ */
+ createBookmark : function( serializable )
+ {
+ var startNode, endNode;
+ var baseId;
+ var clone;
+ var collapsed = this.collapsed;
+
+ startNode = this.document.createElement( 'span' );
+ startNode.data( 'cke-bookmark', 1 );
+ startNode.setStyle( 'display', 'none' );
+
+ // For IE, it must have something inside, otherwise it may be
+ // removed during DOM operations.
+ startNode.setHtml( ' ' );
+
+ if ( serializable )
+ {
+ baseId = 'cke_bm_' + CKEDITOR.tools.getNextNumber();
+ startNode.setAttribute( 'id', baseId + 'S' );
+ }
+
+ // If collapsed, the endNode will not be created.
+ if ( !collapsed )
+ {
+ endNode = startNode.clone();
+ endNode.setHtml( ' ' );
+
+ if ( serializable )
+ endNode.setAttribute( 'id', baseId + 'E' );
+
+ clone = this.clone();
+ clone.collapse();
+ clone.insertNode( endNode );
+ }
+
+ clone = this.clone();
+ clone.collapse( true );
+ clone.insertNode( startNode );
+
+ // Update the range position.
+ if ( endNode )
+ {
+ this.setStartAfter( startNode );
+ this.setEndBefore( endNode );
+ }
+ else
+ this.moveToPosition( startNode, CKEDITOR.POSITION_AFTER_END );
+
+ return {
+ startNode : serializable ? baseId + 'S' : startNode,
+ endNode : serializable ? baseId + 'E' : endNode,
+ serializable : serializable,
+ collapsed : collapsed
+ };
+ },
+
+ /**
+ * Creates a "non intrusive" and "mutation sensible" bookmark. This
+ * kind of bookmark should be used only when the DOM is supposed to
+ * remain stable after its creation.
+ * @param {Boolean} [normalized] Indicates that the bookmark must
+ * normalized. When normalized, the successive text nodes are
+ * considered a single node. To sucessful load a normalized
+ * bookmark, the DOM tree must be also normalized before calling
+ * moveToBookmark.
+ * @returns {Object} An object representing the bookmark.
+ */
+ createBookmark2 : function( normalized )
+ {
+ var startContainer = this.startContainer,
+ endContainer = this.endContainer;
+
+ var startOffset = this.startOffset,
+ endOffset = this.endOffset;
+
+ var collapsed = this.collapsed;
+
+ var child, previous;
+
+ // If there is no range then get out of here.
+ // It happens on initial load in Safari #962 and if the editor it's
+ // hidden also in Firefox
+ if ( !startContainer || !endContainer )
+ return { start : 0, end : 0 };
+
+ if ( normalized )
+ {
+ // Find out if the start is pointing to a text node that will
+ // be normalized.
+ if ( startContainer.type == CKEDITOR.NODE_ELEMENT )
+ {
+ child = startContainer.getChild( startOffset );
+
+ // In this case, move the start information to that text
+ // node.
+ if ( child && child.type == CKEDITOR.NODE_TEXT
+ && startOffset > 0 && child.getPrevious().type == CKEDITOR.NODE_TEXT )
+ {
+ startContainer = child;
+ startOffset = 0;
+ }
+
+ // Get the normalized offset.
+ if ( child && child.type == CKEDITOR.NODE_ELEMENT )
+ startOffset = child.getIndex( 1 );
+ }
+
+ // Normalize the start.
+ while ( startContainer.type == CKEDITOR.NODE_TEXT
+ && ( previous = startContainer.getPrevious() )
+ && previous.type == CKEDITOR.NODE_TEXT )
+ {
+ startContainer = previous;
+ startOffset += previous.getLength();
+ }
+
+ // Process the end only if not normalized.
+ if ( !collapsed )
+ {
+ // Find out if the start is pointing to a text node that
+ // will be normalized.
+ if ( endContainer.type == CKEDITOR.NODE_ELEMENT )
+ {
+ child = endContainer.getChild( endOffset );
+
+ // In this case, move the start information to that
+ // text node.
+ if ( child && child.type == CKEDITOR.NODE_TEXT
+ && endOffset > 0 && child.getPrevious().type == CKEDITOR.NODE_TEXT )
+ {
+ endContainer = child;
+ endOffset = 0;
+ }
+
+ // Get the normalized offset.
+ if ( child && child.type == CKEDITOR.NODE_ELEMENT )
+ endOffset = child.getIndex( 1 );
+ }
+
+ // Normalize the end.
+ while ( endContainer.type == CKEDITOR.NODE_TEXT
+ && ( previous = endContainer.getPrevious() )
+ && previous.type == CKEDITOR.NODE_TEXT )
+ {
+ endContainer = previous;
+ endOffset += previous.getLength();
+ }
+ }
+ }
+
+ return {
+ start : startContainer.getAddress( normalized ),
+ end : collapsed ? null : endContainer.getAddress( normalized ),
+ startOffset : startOffset,
+ endOffset : endOffset,
+ normalized : normalized,
+ collapsed : collapsed,
+ is2 : true // It's a createBookmark2 bookmark.
+ };
+ },
+
+ moveToBookmark : function( bookmark )
+ {
+ if ( bookmark.is2 ) // Created with createBookmark2().
+ {
+ // Get the start information.
+ var startContainer = this.document.getByAddress( bookmark.start, bookmark.normalized ),
+ startOffset = bookmark.startOffset;
+
+ // Get the end information.
+ var endContainer = bookmark.end && this.document.getByAddress( bookmark.end, bookmark.normalized ),
+ endOffset = bookmark.endOffset;
+
+ // Set the start boundary.
+ this.setStart( startContainer, startOffset );
+
+ // Set the end boundary. If not available, collapse it.
+ if ( endContainer )
+ this.setEnd( endContainer, endOffset );
+ else
+ this.collapse( true );
+ }
+ else // Created with createBookmark().
+ {
+ var serializable = bookmark.serializable,
+ startNode = serializable ? this.document.getById( bookmark.startNode ) : bookmark.startNode,
+ endNode = serializable ? this.document.getById( bookmark.endNode ) : bookmark.endNode;
+
+ // Set the range start at the bookmark start node position.
+ this.setStartBefore( startNode );
+
+ // Remove it, because it may interfere in the setEndBefore call.
+ startNode.remove();
+
+ // Set the range end at the bookmark end node position, or simply
+ // collapse it if it is not available.
+ if ( endNode )
+ {
+ this.setEndBefore( endNode );
+ endNode.remove();
+ }
+ else
+ this.collapse( true );
+ }
+ },
+
+ getBoundaryNodes : function()
+ {
+ var startNode = this.startContainer,
+ endNode = this.endContainer,
+ startOffset = this.startOffset,
+ endOffset = this.endOffset,
+ childCount;
+
+ if ( startNode.type == CKEDITOR.NODE_ELEMENT )
+ {
+ childCount = startNode.getChildCount();
+ if ( childCount > startOffset )
+ startNode = startNode.getChild( startOffset );
+ else if ( childCount < 1 )
+ startNode = startNode.getPreviousSourceNode();
+ else // startOffset > childCount but childCount is not 0
+ {
+ // Try to take the node just after the current position.
+ startNode = startNode.$;
+ while ( startNode.lastChild )
+ startNode = startNode.lastChild;
+ startNode = new CKEDITOR.dom.node( startNode );
+
+ // Normally we should take the next node in DFS order. But it
+ // is also possible that we've already reached the end of
+ // document.
+ startNode = startNode.getNextSourceNode() || startNode;
+ }
+ }
+ if ( endNode.type == CKEDITOR.NODE_ELEMENT )
+ {
+ childCount = endNode.getChildCount();
+ if ( childCount > endOffset )
+ endNode = endNode.getChild( endOffset ).getPreviousSourceNode( true );
+ else if ( childCount < 1 )
+ endNode = endNode.getPreviousSourceNode();
+ else // endOffset > childCount but childCount is not 0
+ {
+ // Try to take the node just before the current position.
+ endNode = endNode.$;
+ while ( endNode.lastChild )
+ endNode = endNode.lastChild;
+ endNode = new CKEDITOR.dom.node( endNode );
+ }
+ }
+
+ // Sometimes the endNode will come right before startNode for collapsed
+ // ranges. Fix it. (#3780)
+ if ( startNode.getPosition( endNode ) & CKEDITOR.POSITION_FOLLOWING )
+ startNode = endNode;
+
+ return { startNode : startNode, endNode : endNode };
+ },
+
+ /**
+ * Find the node which fully contains the range.
+ * @param includeSelf
+ * @param {Boolean} ignoreTextNode Whether ignore CKEDITOR.NODE_TEXT type.
+ */
+ getCommonAncestor : function( includeSelf , ignoreTextNode )
+ {
+ var start = this.startContainer,
+ end = this.endContainer,
+ ancestor;
+
+ if ( start.equals( end ) )
+ {
+ if ( includeSelf
+ && start.type == CKEDITOR.NODE_ELEMENT
+ && this.startOffset == this.endOffset - 1 )
+ ancestor = start.getChild( this.startOffset );
+ else
+ ancestor = start;
+ }
+ else
+ ancestor = start.getCommonAncestor( end );
+
+ return ignoreTextNode && !ancestor.is ? ancestor.getParent() : ancestor;
+ },
+
+ /**
+ * Transforms the startContainer and endContainer properties from text
+ * nodes to element nodes, whenever possible. This is actually possible
+ * if either of the boundary containers point to a text node, and its
+ * offset is set to zero, or after the last char in the node.
+ */
+ optimize : function()
+ {
+ var container = this.startContainer;
+ var offset = this.startOffset;
+
+ if ( container.type != CKEDITOR.NODE_ELEMENT )
+ {
+ if ( !offset )
+ this.setStartBefore( container );
+ else if ( offset >= container.getLength() )
+ this.setStartAfter( container );
+ }
+
+ container = this.endContainer;
+ offset = this.endOffset;
+
+ if ( container.type != CKEDITOR.NODE_ELEMENT )
+ {
+ if ( !offset )
+ this.setEndBefore( container );
+ else if ( offset >= container.getLength() )
+ this.setEndAfter( container );
+ }
+ },
+
+ /**
+ * Move the range out of bookmark nodes if they'd been the container.
+ */
+ optimizeBookmark: function()
+ {
+ var startNode = this.startContainer,
+ endNode = this.endContainer;
+
+ if ( startNode.is && startNode.is( 'span' )
+ && startNode.data( 'cke-bookmark' ) )
+ this.setStartAt( startNode, CKEDITOR.POSITION_BEFORE_START );
+ if ( endNode && endNode.is && endNode.is( 'span' )
+ && endNode.data( 'cke-bookmark' ) )
+ this.setEndAt( endNode, CKEDITOR.POSITION_AFTER_END );
+ },
+
+ trim : function( ignoreStart, ignoreEnd )
+ {
+ var startContainer = this.startContainer,
+ startOffset = this.startOffset,
+ collapsed = this.collapsed;
+ if ( ( !ignoreStart || collapsed )
+ && startContainer && startContainer.type == CKEDITOR.NODE_TEXT )
+ {
+ // If the offset is zero, we just insert the new node before
+ // the start.
+ if ( !startOffset )
+ {
+ startOffset = startContainer.getIndex();
+ startContainer = startContainer.getParent();
+ }
+ // If the offset is at the end, we'll insert it after the text
+ // node.
+ else if ( startOffset >= startContainer.getLength() )
+ {
+ startOffset = startContainer.getIndex() + 1;
+ startContainer = startContainer.getParent();
+ }
+ // In other case, we split the text node and insert the new
+ // node at the split point.
+ else
+ {
+ var nextText = startContainer.split( startOffset );
+
+ startOffset = startContainer.getIndex() + 1;
+ startContainer = startContainer.getParent();
+
+ // Check all necessity of updating the end boundary.
+ if ( this.startContainer.equals( this.endContainer ) )
+ this.setEnd( nextText, this.endOffset - this.startOffset );
+ else if ( startContainer.equals( this.endContainer ) )
+ this.endOffset += 1;
+ }
+
+ this.setStart( startContainer, startOffset );
+
+ if ( collapsed )
+ {
+ this.collapse( true );
+ return;
+ }
+ }
+
+ var endContainer = this.endContainer;
+ var endOffset = this.endOffset;
+
+ if ( !( ignoreEnd || collapsed )
+ && endContainer && endContainer.type == CKEDITOR.NODE_TEXT )
+ {
+ // If the offset is zero, we just insert the new node before
+ // the start.
+ if ( !endOffset )
+ {
+ endOffset = endContainer.getIndex();
+ endContainer = endContainer.getParent();
+ }
+ // If the offset is at the end, we'll insert it after the text
+ // node.
+ else if ( endOffset >= endContainer.getLength() )
+ {
+ endOffset = endContainer.getIndex() + 1;
+ endContainer = endContainer.getParent();
+ }
+ // In other case, we split the text node and insert the new
+ // node at the split point.
+ else
+ {
+ endContainer.split( endOffset );
+
+ endOffset = endContainer.getIndex() + 1;
+ endContainer = endContainer.getParent();
+ }
+
+ this.setEnd( endContainer, endOffset );
+ }
+ },
+
+ /**
+ * Expands the range so that partial units are completely contained.
+ * @param unit {Number} The unit type to expand with.
+ * @param {Boolean} [excludeBrs=false] Whether include line-breaks when expanding.
+ */
+ enlarge : function( unit, excludeBrs )
+ {
+ switch ( unit )
+ {
+ case CKEDITOR.ENLARGE_ELEMENT :
+
+ if ( this.collapsed )
+ return;
+
+ // Get the common ancestor.
+ var commonAncestor = this.getCommonAncestor();
+
+ var body = this.document.getBody();
+
+ // For each boundary
+ // a. Depending on its position, find out the first node to be checked (a sibling) or, if not available, to be enlarge.
+ // b. Go ahead checking siblings and enlarging the boundary as much as possible until the common ancestor is not reached. After reaching the common ancestor, just save the enlargeable node to be used later.
+
+ var startTop, endTop;
+
+ var enlargeable, sibling, commonReached;
+
+ // Indicates that the node can be added only if whitespace
+ // is available before it.
+ var needsWhiteSpace = false;
+ var isWhiteSpace;
+ var siblingText;
+
+ // Process the start boundary.
+
+ var container = this.startContainer;
+ var offset = this.startOffset;
+
+ if ( container.type == CKEDITOR.NODE_TEXT )
+ {
+ if ( offset )
+ {
+ // Check if there is any non-space text before the
+ // offset. Otherwise, container is null.
+ container = !CKEDITOR.tools.trim( container.substring( 0, offset ) ).length && container;
+
+ // If we found only whitespace in the node, it
+ // means that we'll need more whitespace to be able
+ // to expand. For example, can be expanded in
+ // "A [B] ", but not in "A [B] ".
+ needsWhiteSpace = !!container;
+ }
+
+ if ( container )
+ {
+ if ( !( sibling = container.getPrevious() ) )
+ enlargeable = container.getParent();
+ }
+ }
+ else
+ {
+ // If we have offset, get the node preceeding it as the
+ // first sibling to be checked.
+ if ( offset )
+ sibling = container.getChild( offset - 1 ) || container.getLast();
+
+ // If there is no sibling, mark the container to be
+ // enlarged.
+ if ( !sibling )
+ enlargeable = container;
+ }
+
+ while ( enlargeable || sibling )
+ {
+ if ( enlargeable && !sibling )
+ {
+ // If we reached the common ancestor, mark the flag
+ // for it.
+ if ( !commonReached && enlargeable.equals( commonAncestor ) )
+ commonReached = true;
+
+ if ( !body.contains( enlargeable ) )
+ break;
+
+ // If we don't need space or this element breaks
+ // the line, then enlarge it.
+ if ( !needsWhiteSpace || enlargeable.getComputedStyle( 'display' ) != 'inline' )
+ {
+ needsWhiteSpace = false;
+
+ // If the common ancestor has been reached,
+ // we'll not enlarge it immediately, but just
+ // mark it to be enlarged later if the end
+ // boundary also enlarges it.
+ if ( commonReached )
+ startTop = enlargeable;
+ else
+ this.setStartBefore( enlargeable );
+ }
+
+ sibling = enlargeable.getPrevious();
+ }
+
+ // Check all sibling nodes preceeding the enlargeable
+ // node. The node wil lbe enlarged only if none of them
+ // blocks it.
+ while ( sibling )
+ {
+ // This flag indicates that this node has
+ // whitespaces at the end.
+ isWhiteSpace = false;
+
+ if ( sibling.type == CKEDITOR.NODE_TEXT )
+ {
+ siblingText = sibling.getText();
+
+ if ( /[^\s\ufeff]/.test( siblingText ) )
+ sibling = null;
+
+ isWhiteSpace = /[\s\ufeff]$/.test( siblingText );
+ }
+ else
+ {
+ // If this is a visible element.
+ // We need to check for the bookmark attribute because IE insists on
+ // rendering the display:none nodes we use for bookmarks. (#3363)
+ // Line-breaks (br) are rendered with zero width, which we don't want to include. (#7041)
+ if ( ( sibling.$.offsetWidth > 0 || excludeBrs && sibling.is( 'br' ) ) && !sibling.data( 'cke-bookmark' ) )
+ {
+ // We'll accept it only if we need
+ // whitespace, and this is an inline
+ // element with whitespace only.
+ if ( needsWhiteSpace && CKEDITOR.dtd.$removeEmpty[ sibling.getName() ] )
+ {
+ // It must contains spaces and inline elements only.
+
+ siblingText = sibling.getText();
+
+ if ( (/[^\s\ufeff]/).test( siblingText ) ) // Spaces + Zero Width No-Break Space (U+FEFF)
+ sibling = null;
+ else
+ {
+ var allChildren = sibling.$.all || sibling.$.getElementsByTagName( '*' );
+ for ( var i = 0, child ; child = allChildren[ i++ ] ; )
+ {
+ if ( !CKEDITOR.dtd.$removeEmpty[ child.nodeName.toLowerCase() ] )
+ {
+ sibling = null;
+ break;
+ }
+ }
+ }
+
+ if ( sibling )
+ isWhiteSpace = !!siblingText.length;
+ }
+ else
+ sibling = null;
+ }
+ }
+
+ // A node with whitespaces has been found.
+ if ( isWhiteSpace )
+ {
+ // Enlarge the last enlargeable node, if we
+ // were waiting for spaces.
+ if ( needsWhiteSpace )
+ {
+ if ( commonReached )
+ startTop = enlargeable;
+ else if ( enlargeable )
+ this.setStartBefore( enlargeable );
+ }
+ else
+ needsWhiteSpace = true;
+ }
+
+ if ( sibling )
+ {
+ var next = sibling.getPrevious();
+
+ if ( !enlargeable && !next )
+ {
+ // Set the sibling as enlargeable, so it's
+ // parent will be get later outside this while.
+ enlargeable = sibling;
+ sibling = null;
+ break;
+ }
+
+ sibling = next;
+ }
+ else
+ {
+ // If sibling has been set to null, then we
+ // need to stop enlarging.
+ enlargeable = null;
+ }
+ }
+
+ if ( enlargeable )
+ enlargeable = enlargeable.getParent();
+ }
+
+ // Process the end boundary. This is basically the same
+ // code used for the start boundary, with small changes to
+ // make it work in the oposite side (to the right). This
+ // makes it difficult to reuse the code here. So, fixes to
+ // the above code are likely to be replicated here.
+
+ container = this.endContainer;
+ offset = this.endOffset;
+
+ // Reset the common variables.
+ enlargeable = sibling = null;
+ commonReached = needsWhiteSpace = false;
+
+ if ( container.type == CKEDITOR.NODE_TEXT )
+ {
+ // Check if there is any non-space text after the
+ // offset. Otherwise, container is null.
+ container = !CKEDITOR.tools.trim( container.substring( offset ) ).length && container;
+
+ // If we found only whitespace in the node, it
+ // means that we'll need more whitespace to be able
+ // to expand. For example, can be expanded in
+ // "A [B] ", but not in "A [B] ".
+ needsWhiteSpace = !( container && container.getLength() );
+
+ if ( container )
+ {
+ if ( !( sibling = container.getNext() ) )
+ enlargeable = container.getParent();
+ }
+ }
+ else
+ {
+ // Get the node right after the boudary to be checked
+ // first.
+ sibling = container.getChild( offset );
+
+ if ( !sibling )
+ enlargeable = container;
+ }
+
+ while ( enlargeable || sibling )
+ {
+ if ( enlargeable && !sibling )
+ {
+ if ( !commonReached && enlargeable.equals( commonAncestor ) )
+ commonReached = true;
+
+ if ( !body.contains( enlargeable ) )
+ break;
+
+ if ( !needsWhiteSpace || enlargeable.getComputedStyle( 'display' ) != 'inline' )
+ {
+ needsWhiteSpace = false;
+
+ if ( commonReached )
+ endTop = enlargeable;
+ else if ( enlargeable )
+ this.setEndAfter( enlargeable );
+ }
+
+ sibling = enlargeable.getNext();
+ }
+
+ while ( sibling )
+ {
+ isWhiteSpace = false;
+
+ if ( sibling.type == CKEDITOR.NODE_TEXT )
+ {
+ siblingText = sibling.getText();
+
+ if ( /[^\s\ufeff]/.test( siblingText ) )
+ sibling = null;
+
+ isWhiteSpace = /^[\s\ufeff]/.test( siblingText );
+ }
+ else
+ {
+ // If this is a visible element.
+ // We need to check for the bookmark attribute because IE insists on
+ // rendering the display:none nodes we use for bookmarks. (#3363)
+ // Line-breaks (br) are rendered with zero width, which we don't want to include. (#7041)
+ if ( ( sibling.$.offsetWidth > 0 || excludeBrs && sibling.is( 'br' ) ) && !sibling.data( 'cke-bookmark' ) )
+ {
+ // We'll accept it only if we need
+ // whitespace, and this is an inline
+ // element with whitespace only.
+ if ( needsWhiteSpace && CKEDITOR.dtd.$removeEmpty[ sibling.getName() ] )
+ {
+ // It must contains spaces and inline elements only.
+
+ siblingText = sibling.getText();
+
+ if ( (/[^\s\ufeff]/).test( siblingText ) )
+ sibling = null;
+ else
+ {
+ allChildren = sibling.$.all || sibling.$.getElementsByTagName( '*' );
+ for ( i = 0 ; child = allChildren[ i++ ] ; )
+ {
+ if ( !CKEDITOR.dtd.$removeEmpty[ child.nodeName.toLowerCase() ] )
+ {
+ sibling = null;
+ break;
+ }
+ }
+ }
+
+ if ( sibling )
+ isWhiteSpace = !!siblingText.length;
+ }
+ else
+ sibling = null;
+ }
+ }
+
+ if ( isWhiteSpace )
+ {
+ if ( needsWhiteSpace )
+ {
+ if ( commonReached )
+ endTop = enlargeable;
+ else
+ this.setEndAfter( enlargeable );
+ }
+ }
+
+ if ( sibling )
+ {
+ next = sibling.getNext();
+
+ if ( !enlargeable && !next )
+ {
+ enlargeable = sibling;
+ sibling = null;
+ break;
+ }
+
+ sibling = next;
+ }
+ else
+ {
+ // If sibling has been set to null, then we
+ // need to stop enlarging.
+ enlargeable = null;
+ }
+ }
+
+ if ( enlargeable )
+ enlargeable = enlargeable.getParent();
+ }
+
+ // If the common ancestor can be enlarged by both boundaries, then include it also.
+ if ( startTop && endTop )
+ {
+ commonAncestor = startTop.contains( endTop ) ? endTop : startTop;
+
+ this.setStartBefore( commonAncestor );
+ this.setEndAfter( commonAncestor );
+ }
+ break;
+
+ case CKEDITOR.ENLARGE_BLOCK_CONTENTS:
+ case CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS:
+
+ // Enlarging the start boundary.
+ var walkerRange = new CKEDITOR.dom.range( this.document );
+
+ body = this.document.getBody();
+
+ walkerRange.setStartAt( body, CKEDITOR.POSITION_AFTER_START );
+ walkerRange.setEnd( this.startContainer, this.startOffset );
+
+ var walker = new CKEDITOR.dom.walker( walkerRange ),
+ blockBoundary, // The node on which the enlarging should stop.
+ tailBr, // In case BR as block boundary.
+ notBlockBoundary = CKEDITOR.dom.walker.blockBoundary(
+ ( unit == CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS ) ? { br : 1 } : null ),
+ // Record the encountered 'blockBoundary' for later use.
+ boundaryGuard = function( node )
+ {
+ var retval = notBlockBoundary( node );
+ if ( !retval )
+ blockBoundary = node;
+ return retval;
+ },
+ // Record the encounted 'tailBr' for later use.
+ tailBrGuard = function( node )
+ {
+ var retval = boundaryGuard( node );
+ if ( !retval && node.is && node.is( 'br' ) )
+ tailBr = node;
+ return retval;
+ };
+
+ walker.guard = boundaryGuard;
+
+ enlargeable = walker.lastBackward();
+
+ // It's the body which stop the enlarging if no block boundary found.
+ blockBoundary = blockBoundary || body;
+
+ // Start the range either after the end of found block ( ...
[text)
+ // or at the start of block ([text...), by comparing the document position
+ // with 'enlargeable' node.
+ this.setStartAt(
+ blockBoundary,
+ !blockBoundary.is( 'br' ) &&
+ ( !enlargeable && this.checkStartOfBlock()
+ || enlargeable && blockBoundary.contains( enlargeable ) ) ?
+ CKEDITOR.POSITION_AFTER_START :
+ CKEDITOR.POSITION_AFTER_END );
+
+ // Enlarging the end boundary.
+ walkerRange = this.clone();
+ walkerRange.collapse();
+ walkerRange.setEndAt( body, CKEDITOR.POSITION_BEFORE_END );
+ walker = new CKEDITOR.dom.walker( walkerRange );
+
+ // tailBrGuard only used for on range end.
+ walker.guard = ( unit == CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS ) ?
+ tailBrGuard : boundaryGuard;
+ blockBoundary = null;
+ // End the range right before the block boundary node.
+
+ enlargeable = walker.lastForward();
+
+ // It's the body which stop the enlarging if no block boundary found.
+ blockBoundary = blockBoundary || body;
+
+ // Close the range either before the found block start (text]
...
) or at the block end (...text])
+ // by comparing the document position with 'enlargeable' node.
+ this.setEndAt(
+ blockBoundary,
+ ( !enlargeable && this.checkEndOfBlock()
+ || enlargeable && blockBoundary.contains( enlargeable ) ) ?
+ CKEDITOR.POSITION_BEFORE_END :
+ CKEDITOR.POSITION_BEFORE_START );
+ // We must include the at the end of range if there's
+ // one and we're expanding list item contents
+ if ( tailBr )
+ this.setEndAfter( tailBr );
+ }
+ },
+
+ /**
+ * Descrease the range to make sure that boundaries
+ * always anchor beside text nodes or innermost element.
+ * @param {Number} mode ( CKEDITOR.SHRINK_ELEMENT | CKEDITOR.SHRINK_TEXT ) The shrinking mode.
+ *
+ * CKEDITOR.SHRINK_ELEMENT
+ * Shrink the range boundaries to the edge of the innermost element.
+ * CKEDITOR.SHRINK_TEXT
+ * Shrink the range boudaries to anchor by the side of enclosed text node, range remains if there's no text nodes on boundaries at all.
+ *
+ * @param {Boolean} selectContents Whether result range anchors at the inner OR outer boundary of the node.
+ */
+ shrink : function( mode, selectContents )
+ {
+ // Unable to shrink a collapsed range.
+ if ( !this.collapsed )
+ {
+ mode = mode || CKEDITOR.SHRINK_TEXT;
+
+ var walkerRange = this.clone();
+
+ var startContainer = this.startContainer,
+ endContainer = this.endContainer,
+ startOffset = this.startOffset,
+ endOffset = this.endOffset,
+ collapsed = this.collapsed;
+
+ // Whether the start/end boundary is moveable.
+ var moveStart = 1,
+ moveEnd = 1;
+
+ if ( startContainer && startContainer.type == CKEDITOR.NODE_TEXT )
+ {
+ if ( !startOffset )
+ walkerRange.setStartBefore( startContainer );
+ else if ( startOffset >= startContainer.getLength( ) )
+ walkerRange.setStartAfter( startContainer );
+ else
+ {
+ // Enlarge the range properly to avoid walker making
+ // DOM changes caused by triming the text nodes later.
+ walkerRange.setStartBefore( startContainer );
+ moveStart = 0;
+ }
+ }
+
+ if ( endContainer && endContainer.type == CKEDITOR.NODE_TEXT )
+ {
+ if ( !endOffset )
+ walkerRange.setEndBefore( endContainer );
+ else if ( endOffset >= endContainer.getLength( ) )
+ walkerRange.setEndAfter( endContainer );
+ else
+ {
+ walkerRange.setEndAfter( endContainer );
+ moveEnd = 0;
+ }
+ }
+
+ var walker = new CKEDITOR.dom.walker( walkerRange ),
+ isBookmark = CKEDITOR.dom.walker.bookmark();
+
+ walker.evaluator = function( node )
+ {
+ return node.type == ( mode == CKEDITOR.SHRINK_ELEMENT ?
+ CKEDITOR.NODE_ELEMENT : CKEDITOR.NODE_TEXT );
+ };
+
+ var currentElement;
+ walker.guard = function( node, movingOut )
+ {
+ if ( isBookmark( node ) )
+ return true;
+
+ // Stop when we're shrink in element mode while encountering a text node.
+ if ( mode == CKEDITOR.SHRINK_ELEMENT && node.type == CKEDITOR.NODE_TEXT )
+ return false;
+
+ // Stop when we've already walked "through" an element.
+ if ( movingOut && node.equals( currentElement ) )
+ return false;
+
+ if ( !movingOut && node.type == CKEDITOR.NODE_ELEMENT )
+ currentElement = node;
+
+ return true;
+ };
+
+ if ( moveStart )
+ {
+ var textStart = walker[ mode == CKEDITOR.SHRINK_ELEMENT ? 'lastForward' : 'next']();
+ textStart && this.setStartAt( textStart, selectContents ? CKEDITOR.POSITION_AFTER_START : CKEDITOR.POSITION_BEFORE_START );
+ }
+
+ if ( moveEnd )
+ {
+ walker.reset();
+ var textEnd = walker[ mode == CKEDITOR.SHRINK_ELEMENT ? 'lastBackward' : 'previous']();
+ textEnd && this.setEndAt( textEnd, selectContents ? CKEDITOR.POSITION_BEFORE_END : CKEDITOR.POSITION_AFTER_END );
+ }
+
+ return !!( moveStart || moveEnd );
+ }
+ },
+
+ /**
+ * Inserts a node at the start of the range. The range will be expanded
+ * the contain the node.
+ */
+ insertNode : function( node )
+ {
+ this.optimizeBookmark();
+ this.trim( false, true );
+
+ var startContainer = this.startContainer;
+ var startOffset = this.startOffset;
+
+ var nextNode = startContainer.getChild( startOffset );
+
+ if ( nextNode )
+ node.insertBefore( nextNode );
+ else
+ startContainer.append( node );
+
+ // Check if we need to update the end boundary.
+ if ( node.getParent().equals( this.endContainer ) )
+ this.endOffset++;
+
+ // Expand the range to embrace the new node.
+ this.setStartBefore( node );
+ },
+
+ moveToPosition : function( node, position )
+ {
+ this.setStartAt( node, position );
+ this.collapse( true );
+ },
+
+ selectNodeContents : function( node )
+ {
+ this.setStart( node, 0 );
+ this.setEnd( node, node.type == CKEDITOR.NODE_TEXT ? node.getLength() : node.getChildCount() );
+ },
+
+ /**
+ * Sets the start position of a Range.
+ * @param {CKEDITOR.dom.node} startNode The node to start the range.
+ * @param {Number} startOffset An integer greater than or equal to zero
+ * representing the offset for the start of the range from the start
+ * of startNode.
+ */
+ setStart : function( startNode, startOffset )
+ {
+ // W3C requires a check for the new position. If it is after the end
+ // boundary, the range should be collapsed to the new start. It seams
+ // we will not need this check for our use of this class so we can
+ // ignore it for now.
+
+ // Fixing invalid range start inside dtd empty elements.
+ if( startNode.type == CKEDITOR.NODE_ELEMENT
+ && CKEDITOR.dtd.$empty[ startNode.getName() ] )
+ startOffset = startNode.getIndex(), startNode = startNode.getParent();
+
+ this.startContainer = startNode;
+ this.startOffset = startOffset;
+
+ if ( !this.endContainer )
+ {
+ this.endContainer = startNode;
+ this.endOffset = startOffset;
+ }
+
+ updateCollapsed( this );
+ },
+
+ /**
+ * Sets the end position of a Range.
+ * @param {CKEDITOR.dom.node} endNode The node to end the range.
+ * @param {Number} endOffset An integer greater than or equal to zero
+ * representing the offset for the end of the range from the start
+ * of endNode.
+ */
+ setEnd : function( endNode, endOffset )
+ {
+ // W3C requires a check for the new position. If it is before the start
+ // boundary, the range should be collapsed to the new end. It seams we
+ // will not need this check for our use of this class so we can ignore
+ // it for now.
+
+ // Fixing invalid range end inside dtd empty elements.
+ if( endNode.type == CKEDITOR.NODE_ELEMENT
+ && CKEDITOR.dtd.$empty[ endNode.getName() ] )
+ endOffset = endNode.getIndex() + 1, endNode = endNode.getParent();
+
+ this.endContainer = endNode;
+ this.endOffset = endOffset;
+
+ if ( !this.startContainer )
+ {
+ this.startContainer = endNode;
+ this.startOffset = endOffset;
+ }
+
+ updateCollapsed( this );
+ },
+
+ setStartAfter : function( node )
+ {
+ this.setStart( node.getParent(), node.getIndex() + 1 );
+ },
+
+ setStartBefore : function( node )
+ {
+ this.setStart( node.getParent(), node.getIndex() );
+ },
+
+ setEndAfter : function( node )
+ {
+ this.setEnd( node.getParent(), node.getIndex() + 1 );
+ },
+
+ setEndBefore : function( node )
+ {
+ this.setEnd( node.getParent(), node.getIndex() );
+ },
+
+ setStartAt : function( node, position )
+ {
+ switch( position )
+ {
+ case CKEDITOR.POSITION_AFTER_START :
+ this.setStart( node, 0 );
+ break;
+
+ case CKEDITOR.POSITION_BEFORE_END :
+ if ( node.type == CKEDITOR.NODE_TEXT )
+ this.setStart( node, node.getLength() );
+ else
+ this.setStart( node, node.getChildCount() );
+ break;
+
+ case CKEDITOR.POSITION_BEFORE_START :
+ this.setStartBefore( node );
+ break;
+
+ case CKEDITOR.POSITION_AFTER_END :
+ this.setStartAfter( node );
+ }
+
+ updateCollapsed( this );
+ },
+
+ setEndAt : function( node, position )
+ {
+ switch( position )
+ {
+ case CKEDITOR.POSITION_AFTER_START :
+ this.setEnd( node, 0 );
+ break;
+
+ case CKEDITOR.POSITION_BEFORE_END :
+ if ( node.type == CKEDITOR.NODE_TEXT )
+ this.setEnd( node, node.getLength() );
+ else
+ this.setEnd( node, node.getChildCount() );
+ break;
+
+ case CKEDITOR.POSITION_BEFORE_START :
+ this.setEndBefore( node );
+ break;
+
+ case CKEDITOR.POSITION_AFTER_END :
+ this.setEndAfter( node );
+ }
+
+ updateCollapsed( this );
+ },
+
+ fixBlock : function( isStart, blockTag )
+ {
+ var bookmark = this.createBookmark(),
+ fixedBlock = this.document.createElement( blockTag );
+
+ this.collapse( isStart );
+
+ this.enlarge( CKEDITOR.ENLARGE_BLOCK_CONTENTS );
+
+ this.extractContents().appendTo( fixedBlock );
+ fixedBlock.trim();
+
+ if ( !CKEDITOR.env.ie )
+ fixedBlock.appendBogus();
+
+ this.insertNode( fixedBlock );
+
+ this.moveToBookmark( bookmark );
+
+ return fixedBlock;
+ },
+
+ splitBlock : function( blockTag )
+ {
+ var startPath = new CKEDITOR.dom.elementPath( this.startContainer ),
+ endPath = new CKEDITOR.dom.elementPath( this.endContainer );
+
+ var startBlockLimit = startPath.blockLimit,
+ endBlockLimit = endPath.blockLimit;
+
+ var startBlock = startPath.block,
+ endBlock = endPath.block;
+
+ var elementPath = null;
+ // Do nothing if the boundaries are in different block limits.
+ if ( !startBlockLimit.equals( endBlockLimit ) )
+ return null;
+
+ // Get or fix current blocks.
+ if ( blockTag != 'br' )
+ {
+ if ( !startBlock )
+ {
+ startBlock = this.fixBlock( true, blockTag );
+ endBlock = new CKEDITOR.dom.elementPath( this.endContainer ).block;
+ }
+
+ if ( !endBlock )
+ endBlock = this.fixBlock( false, blockTag );
+ }
+
+ // Get the range position.
+ var isStartOfBlock = startBlock && this.checkStartOfBlock(),
+ isEndOfBlock = endBlock && this.checkEndOfBlock();
+
+ // Delete the current contents.
+ // TODO: Why is 2.x doing CheckIsEmpty()?
+ this.deleteContents();
+
+ if ( startBlock && startBlock.equals( endBlock ) )
+ {
+ if ( isEndOfBlock )
+ {
+ elementPath = new CKEDITOR.dom.elementPath( this.startContainer );
+ this.moveToPosition( endBlock, CKEDITOR.POSITION_AFTER_END );
+ endBlock = null;
+ }
+ else if ( isStartOfBlock )
+ {
+ elementPath = new CKEDITOR.dom.elementPath( this.startContainer );
+ this.moveToPosition( startBlock, CKEDITOR.POSITION_BEFORE_START );
+ startBlock = null;
+ }
+ else
+ {
+ endBlock = this.splitElement( startBlock );
+
+ // In Gecko, the last child node must be a bogus .
+ // Note: bogus added under or would cause
+ // lists to be incorrectly rendered.
+ if ( !CKEDITOR.env.ie && !startBlock.is( 'ul', 'ol') )
+ startBlock.appendBogus() ;
+ }
+ }
+
+ return {
+ previousBlock : startBlock,
+ nextBlock : endBlock,
+ wasStartOfBlock : isStartOfBlock,
+ wasEndOfBlock : isEndOfBlock,
+ elementPath : elementPath
+ };
+ },
+
+ /**
+ * Branch the specified element from the collapsed range position and
+ * place the caret between the two result branches.
+ * Note: The range must be collapsed and been enclosed by this element.
+ * @param {CKEDITOR.dom.element} element
+ * @return {CKEDITOR.dom.element} Root element of the new branch after the split.
+ */
+ splitElement : function( toSplit )
+ {
+ if ( !this.collapsed )
+ return null;
+
+ // Extract the contents of the block from the selection point to the end
+ // of its contents.
+ this.setEndAt( toSplit, CKEDITOR.POSITION_BEFORE_END );
+ var documentFragment = this.extractContents();
+
+ // Duplicate the element after it.
+ var clone = toSplit.clone( false );
+
+ // Place the extracted contents into the duplicated element.
+ documentFragment.appendTo( clone );
+ clone.insertAfter( toSplit );
+ this.moveToPosition( toSplit, CKEDITOR.POSITION_AFTER_END );
+ return clone;
+ },
+
+ /**
+ * Check whether a range boundary is at the inner boundary of a given
+ * element.
+ * @param {CKEDITOR.dom.element} element The target element to check.
+ * @param {Number} checkType The boundary to check for both the range
+ * and the element. It can be CKEDITOR.START or CKEDITOR.END.
+ * @returns {Boolean} "true" if the range boundary is at the inner
+ * boundary of the element.
+ */
+ checkBoundaryOfElement : function( element, checkType )
+ {
+ var checkStart = ( checkType == CKEDITOR.START );
+
+ // Create a copy of this range, so we can manipulate it for our checks.
+ var walkerRange = this.clone();
+
+ // Collapse the range at the proper size.
+ walkerRange.collapse( checkStart );
+
+ // Expand the range to element boundary.
+ walkerRange[ checkStart ? 'setStartAt' : 'setEndAt' ]
+ ( element, checkStart ? CKEDITOR.POSITION_AFTER_START : CKEDITOR.POSITION_BEFORE_END );
+
+ // Create the walker, which will check if we have anything useful
+ // in the range.
+ var walker = new CKEDITOR.dom.walker( walkerRange );
+ walker.evaluator = elementBoundaryEval;
+
+ return walker[ checkStart ? 'checkBackward' : 'checkForward' ]();
+ },
+
+ // Calls to this function may produce changes to the DOM. The range may
+ // be updated to reflect such changes.
+ checkStartOfBlock : function()
+ {
+ var startContainer = this.startContainer,
+ startOffset = this.startOffset;
+
+ // If the starting node is a text node, and non-empty before the offset,
+ // then we're surely not at the start of block.
+ if ( startOffset && startContainer.type == CKEDITOR.NODE_TEXT )
+ {
+ var textBefore = CKEDITOR.tools.ltrim( startContainer.substring( 0, startOffset ) );
+ if ( textBefore.length )
+ return false;
+ }
+
+ // Antecipate the trim() call here, so the walker will not make
+ // changes to the DOM, which would not get reflected into this
+ // range otherwise.
+ this.trim();
+
+ // We need to grab the block element holding the start boundary, so
+ // let's use an element path for it.
+ var path = new CKEDITOR.dom.elementPath( this.startContainer );
+
+ // Creates a range starting at the block start until the range start.
+ var walkerRange = this.clone();
+ walkerRange.collapse( true );
+ walkerRange.setStartAt( path.block || path.blockLimit, CKEDITOR.POSITION_AFTER_START );
+
+ var walker = new CKEDITOR.dom.walker( walkerRange );
+ walker.evaluator = getCheckStartEndBlockEvalFunction( true );
+
+ return walker.checkBackward();
+ },
+
+ checkEndOfBlock : function()
+ {
+ var endContainer = this.endContainer,
+ endOffset = this.endOffset;
+
+ // If the ending node is a text node, and non-empty after the offset,
+ // then we're surely not at the end of block.
+ if ( endContainer.type == CKEDITOR.NODE_TEXT )
+ {
+ var textAfter = CKEDITOR.tools.rtrim( endContainer.substring( endOffset ) );
+ if ( textAfter.length )
+ return false;
+ }
+
+ // Antecipate the trim() call here, so the walker will not make
+ // changes to the DOM, which would not get reflected into this
+ // range otherwise.
+ this.trim();
+
+ // We need to grab the block element holding the start boundary, so
+ // let's use an element path for it.
+ var path = new CKEDITOR.dom.elementPath( this.endContainer );
+
+ // Creates a range starting at the block start until the range start.
+ var walkerRange = this.clone();
+ walkerRange.collapse( false );
+ walkerRange.setEndAt( path.block || path.blockLimit, CKEDITOR.POSITION_BEFORE_END );
+
+ var walker = new CKEDITOR.dom.walker( walkerRange );
+ walker.evaluator = getCheckStartEndBlockEvalFunction( false );
+
+ return walker.checkForward();
+ },
+
+ /**
+ * Check if elements at which the range boundaries anchor are read-only,
+ * with respect to "contenteditable" attribute.
+ */
+ checkReadOnly : ( function()
+ {
+ function checkNodesEditable( node, anotherEnd )
+ {
+ while( node )
+ {
+ if ( node.type == CKEDITOR.NODE_ELEMENT )
+ {
+ if ( node.getAttribute( 'contentEditable' ) == 'false'
+ && !node.data( 'cke-editable' ) )
+ {
+ return 0;
+ }
+ // Range enclosed entirely in an editable element.
+ else if ( node.is( 'html' )
+ || node.getAttribute( 'contentEditable' ) == 'true'
+ && ( node.contains( anotherEnd ) || node.equals( anotherEnd ) ) )
+ {
+ break;
+ }
+ }
+ node = node.getParent();
+ }
+
+ return 1;
+ }
+
+ return function()
+ {
+ var startNode = this.startContainer,
+ endNode = this.endContainer;
+
+ // Check if elements path at both boundaries are editable.
+ return !( checkNodesEditable( startNode, endNode ) && checkNodesEditable( endNode, startNode ) );
+ };
+ })(),
+
+ /**
+ * Moves the range boundaries to the first/end editing point inside an
+ * element. For example, in an element tree like
+ * "<p><b><i></i></b> Text</p>", the start editing point is
+ * "<p><b><i>^</i></b> Text</p>" (inside <i>).
+ * @param {CKEDITOR.dom.element} el The element into which look for the
+ * editing spot.
+ * @param {Boolean} isMoveToEnd Whether move to the end editable position.
+ */
+ moveToElementEditablePosition : function( el, isMoveToEnd )
+ {
+ var isEditable;
+
+ // Empty elements are rejected.
+ if ( CKEDITOR.dtd.$empty[ el.getName() ] )
+ return false;
+
+ while ( el && el.type == CKEDITOR.NODE_ELEMENT )
+ {
+ isEditable = el.isEditable();
+
+ // If an editable element is found, move inside it.
+ if ( isEditable )
+ this.moveToPosition( el, isMoveToEnd ?
+ CKEDITOR.POSITION_BEFORE_END :
+ CKEDITOR.POSITION_AFTER_START );
+ // Stop immediately if we've found a non editable inline element (e.g ).
+ else if ( CKEDITOR.dtd.$inline[ el.getName() ] )
+ {
+ this.moveToPosition( el, isMoveToEnd ?
+ CKEDITOR.POSITION_AFTER_END :
+ CKEDITOR.POSITION_BEFORE_START );
+ return true;
+ }
+
+ // Non-editable non-inline elements are to be bypassed, getting the next one.
+ if ( CKEDITOR.dtd.$empty[ el.getName() ] )
+ el = el[ isMoveToEnd ? 'getPrevious' : 'getNext' ]( nonWhitespaceOrBookmarkEval );
+ else
+ el = el[ isMoveToEnd ? 'getLast' : 'getFirst' ]( nonWhitespaceOrBookmarkEval );
+
+ // Stop immediately if we've found a text node.
+ if ( el && el.type == CKEDITOR.NODE_TEXT )
+ {
+ this.moveToPosition( el, isMoveToEnd ?
+ CKEDITOR.POSITION_AFTER_END :
+ CKEDITOR.POSITION_BEFORE_START );
+ return true;
+ }
+ }
+
+ return isEditable;
+ },
+
+ /**
+ *@see {CKEDITOR.dom.range.moveToElementEditablePosition}
+ */
+ moveToElementEditStart : function( target )
+ {
+ return this.moveToElementEditablePosition( target );
+ },
+
+ /**
+ *@see {CKEDITOR.dom.range.moveToElementEditablePosition}
+ */
+ moveToElementEditEnd : function( target )
+ {
+ return this.moveToElementEditablePosition( target, true );
+ },
+
+ /**
+ * Get the single node enclosed within the range if there's one.
+ */
+ getEnclosedNode : function()
+ {
+ var walkerRange = this.clone();
+
+ // Optimize and analyze the range to avoid DOM destructive nature of walker. (#5780)
+ walkerRange.optimize();
+ if ( walkerRange.startContainer.type != CKEDITOR.NODE_ELEMENT
+ || walkerRange.endContainer.type != CKEDITOR.NODE_ELEMENT )
+ return null;
+
+ var walker = new CKEDITOR.dom.walker( walkerRange ),
+ isNotBookmarks = CKEDITOR.dom.walker.bookmark( true ),
+ isNotWhitespaces = CKEDITOR.dom.walker.whitespaces( true ),
+ evaluator = function( node )
+ {
+ return isNotWhitespaces( node ) && isNotBookmarks( node );
+ };
+ walkerRange.evaluator = evaluator;
+ var node = walker.next();
+ walker.reset();
+ return node && node.equals( walker.previous() ) ? node : null;
+ },
+
+ getTouchedStartNode : function()
+ {
+ var container = this.startContainer ;
+
+ if ( this.collapsed || container.type != CKEDITOR.NODE_ELEMENT )
+ return container ;
+
+ return container.getChild( this.startOffset ) || container ;
+ },
+
+ getTouchedEndNode : function()
+ {
+ var container = this.endContainer ;
+
+ if ( this.collapsed || container.type != CKEDITOR.NODE_ELEMENT )
+ return container ;
+
+ return container.getChild( this.endOffset - 1 ) || container ;
+ }
+ };
+})();
+
+CKEDITOR.POSITION_AFTER_START = 1; // ^contents "^text"
+CKEDITOR.POSITION_BEFORE_END = 2; // contents^ "text^"
+CKEDITOR.POSITION_BEFORE_START = 3; // ^contents ^"text"
+CKEDITOR.POSITION_AFTER_END = 4; // contents ^ "text"
+
+CKEDITOR.ENLARGE_ELEMENT = 1;
+CKEDITOR.ENLARGE_BLOCK_CONTENTS = 2;
+CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS = 3;
+
+// Check boundary types.
+// @see CKEDITOR.dom.range.prototype.checkBoundaryOfElement
+CKEDITOR.START = 1;
+CKEDITOR.END = 2;
+CKEDITOR.STARTEND = 3;
+
+// Shrink range types.
+// @see CKEDITOR.dom.range.prototype.shrink
+CKEDITOR.SHRINK_ELEMENT = 1;
+CKEDITOR.SHRINK_TEXT = 2;
diff --git a/skins/ckeditor/_source/core/dom/rangelist.js b/skins/ckeditor/_source/core/dom/rangelist.js
new file mode 100644
index 0000000..2685506
--- /dev/null
+++ b/skins/ckeditor/_source/core/dom/rangelist.js
@@ -0,0 +1,213 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+ /**
+ * Represents a list os CKEDITOR.dom.range objects, which can be easily
+ * iterated sequentially.
+ * @constructor
+ * @param {CKEDITOR.dom.range|Array} [ranges] The ranges contained on this list.
+ * Note that, if an array of ranges is specified, the range sequence
+ * should match its DOM order. This class will not help to sort them.
+ */
+ CKEDITOR.dom.rangeList = function( ranges )
+ {
+ if ( ranges instanceof CKEDITOR.dom.rangeList )
+ return ranges;
+
+ if ( !ranges )
+ ranges = [];
+ else if ( ranges instanceof CKEDITOR.dom.range )
+ ranges = [ ranges ];
+
+ return CKEDITOR.tools.extend( ranges, mixins );
+ };
+
+ var mixins =
+ /** @lends CKEDITOR.dom.rangeList.prototype */
+ {
+ /**
+ * Creates an instance of the rangeList iterator, it should be used
+ * only when the ranges processing could be DOM intrusive, which
+ * means it may pollute and break other ranges in this list.
+ * Otherwise, it's enough to just iterate over this array in a for loop.
+ * @returns {CKEDITOR.dom.rangeListIterator}
+ */
+ createIterator : function()
+ {
+ var rangeList = this,
+ bookmark = CKEDITOR.dom.walker.bookmark(),
+ guard = function( node ) { return ! ( node.is && node.is( 'tr' ) ); },
+ bookmarks = [],
+ current;
+
+ /**
+ * @lends CKEDITOR.dom.rangeListIterator.prototype
+ */
+ return {
+
+ /**
+ * Retrieves the next range in the list.
+ * @param {Boolean} mergeConsequent Whether join two adjacent ranges into single, e.g. consequent table cells.
+ */
+ getNextRange : function( mergeConsequent )
+ {
+ current = current == undefined ? 0 : current + 1;
+
+ var range = rangeList[ current ];
+
+ // Multiple ranges might be mangled by each other.
+ if ( range && rangeList.length > 1 )
+ {
+ // Bookmarking all other ranges on the first iteration,
+ // the range correctness after it doesn't matter since we'll
+ // restore them before the next iteration.
+ if ( !current )
+ {
+ // Make sure bookmark correctness by reverse processing.
+ for ( var i = rangeList.length - 1; i >= 0; i-- )
+ bookmarks.unshift( rangeList[ i ].createBookmark( true ) );
+ }
+
+ if ( mergeConsequent )
+ {
+ // Figure out how many ranges should be merged.
+ var mergeCount = 0;
+ while ( rangeList[ current + mergeCount + 1 ] )
+ {
+ var doc = range.document,
+ found = 0,
+ left = doc.getById( bookmarks[ mergeCount ].endNode ),
+ right = doc.getById( bookmarks[ mergeCount + 1 ].startNode ),
+ next;
+
+ // Check subsequent range.
+ while ( 1 )
+ {
+ next = left.getNextSourceNode( false );
+ if ( !right.equals( next ) )
+ {
+ // This could be yet another bookmark or
+ // walking across block boundaries.
+ if ( bookmark( next ) || ( next.type == CKEDITOR.NODE_ELEMENT && next.isBlockBoundary() ) )
+ {
+ left = next;
+ continue;
+ }
+ }
+ else
+ found = 1;
+
+ break;
+ }
+
+ if ( !found )
+ break;
+
+ mergeCount++;
+ }
+ }
+
+ range.moveToBookmark( bookmarks.shift() );
+
+ // Merge ranges finally after moving to bookmarks.
+ while( mergeCount-- )
+ {
+ next = rangeList[ ++current ];
+ next.moveToBookmark( bookmarks.shift() );
+ range.setEnd( next.endContainer, next.endOffset );
+ }
+ }
+
+ return range;
+ }
+ };
+ },
+
+ createBookmarks : function( serializable )
+ {
+ var retval = [], bookmark;
+ for ( var i = 0; i < this.length ; i++ )
+ {
+ retval.push( bookmark = this[ i ].createBookmark( serializable, true) );
+
+ // Updating the container & offset values for ranges
+ // that have been touched.
+ for ( var j = i + 1; j < this.length; j++ )
+ {
+ this[ j ] = updateDirtyRange( bookmark, this[ j ] );
+ this[ j ] = updateDirtyRange( bookmark, this[ j ], true );
+ }
+ }
+ return retval;
+ },
+
+ createBookmarks2 : function( normalized )
+ {
+ var bookmarks = [];
+
+ for ( var i = 0 ; i < this.length ; i++ )
+ bookmarks.push( this[ i ].createBookmark2( normalized ) );
+
+ return bookmarks;
+ },
+
+ /**
+ * Move each range in the list to the position specified by a list of bookmarks.
+ * @param {Array} bookmarks The list of bookmarks, each one matching a range in the list.
+ */
+ moveToBookmarks : function( bookmarks )
+ {
+ for ( var i = 0 ; i < this.length ; i++ )
+ this[ i ].moveToBookmark( bookmarks[ i ] );
+ }
+ };
+
+ // Update the specified range which has been mangled by previous insertion of
+ // range bookmark nodes.(#3256)
+ function updateDirtyRange( bookmark, dirtyRange, checkEnd )
+ {
+ var serializable = bookmark.serializable,
+ container = dirtyRange[ checkEnd ? 'endContainer' : 'startContainer' ],
+ offset = checkEnd ? 'endOffset' : 'startOffset';
+
+ var bookmarkStart = serializable ?
+ dirtyRange.document.getById( bookmark.startNode )
+ : bookmark.startNode;
+
+ var bookmarkEnd = serializable ?
+ dirtyRange.document.getById( bookmark.endNode )
+ : bookmark.endNode;
+
+ if ( container.equals( bookmarkStart.getPrevious() ) )
+ {
+ dirtyRange.startOffset = dirtyRange.startOffset
+ - container.getLength()
+ - bookmarkEnd.getPrevious().getLength();
+ container = bookmarkEnd.getNext();
+ }
+ else if ( container.equals( bookmarkEnd.getPrevious() ) )
+ {
+ dirtyRange.startOffset = dirtyRange.startOffset - container.getLength();
+ container = bookmarkEnd.getNext();
+ }
+
+ container.equals( bookmarkStart.getParent() ) && dirtyRange[ offset ]++;
+ container.equals( bookmarkEnd.getParent() ) && dirtyRange[ offset ]++;
+
+ // Update and return this range.
+ dirtyRange[ checkEnd ? 'endContainer' : 'startContainer' ] = container;
+ return dirtyRange;
+ }
+})();
+
+/**
+ * (Virtual Class) Do not call this constructor. This class is not really part
+ * of the API. It just describes the return type of {@link CKEDITOR.dom.rangeList#createIterator}.
+ * @name CKEDITOR.dom.rangeListIterator
+ * @constructor
+ * @example
+ */
diff --git a/skins/ckeditor/_source/core/dom/text.js b/skins/ckeditor/_source/core/dom/text.js
new file mode 100644
index 0000000..4abf8fc
--- /dev/null
+++ b/skins/ckeditor/_source/core/dom/text.js
@@ -0,0 +1,128 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.dom.text} class, which represents
+ * a DOM text node.
+ */
+
+/**
+ * Represents a DOM text node.
+ * @constructor
+ * @augments CKEDITOR.dom.node
+ * @param {Object|String} text A native DOM text node or a string containing
+ * the text to use to create a new text node.
+ * @param {CKEDITOR.dom.document} [ownerDocument] The document that will contain
+ * the node in case of new node creation. Defaults to the current document.
+ * @example
+ * var nativeNode = document.createTextNode( 'Example' );
+ * var text = CKEDITOR.dom.text( nativeNode );
+ * @example
+ * var text = CKEDITOR.dom.text( 'Example' );
+ */
+CKEDITOR.dom.text = function( text, ownerDocument )
+{
+ if ( typeof text == 'string' )
+ text = ( ownerDocument ? ownerDocument.$ : document ).createTextNode( text );
+
+ // Theoretically, we should call the base constructor here
+ // (not CKEDITOR.dom.node though). But, IE doesn't support expando
+ // properties on text node, so the features provided by domObject will not
+ // work for text nodes (which is not a big issue for us).
+ //
+ // CKEDITOR.dom.domObject.call( this, element );
+
+ /**
+ * The native DOM text node represented by this class instance.
+ * @type Object
+ * @example
+ * var element = new CKEDITOR.dom.text( 'Example' );
+ * alert( element.$.nodeType ); // "3"
+ */
+ this.$ = text;
+};
+
+CKEDITOR.dom.text.prototype = new CKEDITOR.dom.node();
+
+CKEDITOR.tools.extend( CKEDITOR.dom.text.prototype,
+ /** @lends CKEDITOR.dom.text.prototype */
+ {
+ /**
+ * The node type. This is a constant value set to
+ * {@link CKEDITOR.NODE_TEXT}.
+ * @type Number
+ * @example
+ */
+ type : CKEDITOR.NODE_TEXT,
+
+ getLength : function()
+ {
+ return this.$.nodeValue.length;
+ },
+
+ getText : function()
+ {
+ return this.$.nodeValue;
+ },
+
+ setText : function( text )
+ {
+ this.$.nodeValue = text;
+ },
+
+ /**
+ * Breaks this text node into two nodes at the specified offset,
+ * keeping both in the tree as siblings. This node then only contains
+ * all the content up to the offset point. A new text node, which is
+ * inserted as the next sibling of this node, contains all the content
+ * at and after the offset point. When the offset is equal to the
+ * length of this node, the new node has no data.
+ * @param {Number} The position at which to split, starting from zero.
+ * @returns {CKEDITOR.dom.text} The new text node.
+ */
+ split : function( offset )
+ {
+ // If the offset is after the last char, IE creates the text node
+ // on split, but don't include it into the DOM. So, we have to do
+ // that manually here.
+ if ( CKEDITOR.env.ie && offset == this.getLength() )
+ {
+ var next = this.getDocument().createText( '' );
+ next.insertAfter( this );
+ return next;
+ }
+
+ var doc = this.getDocument();
+ var retval = new CKEDITOR.dom.text( this.$.splitText( offset ), doc );
+
+ // IE BUG: IE8 does not update the childNodes array in DOM after splitText(),
+ // we need to make some DOM changes to make it update. (#3436)
+ if ( CKEDITOR.env.ie8 )
+ {
+ var workaround = new CKEDITOR.dom.text( '', doc );
+ workaround.insertAfter( retval );
+ workaround.remove();
+ }
+
+ return retval;
+ },
+
+ /**
+ * Extracts characters from indexA up to but not including indexB.
+ * @param {Number} indexA An integer between 0 and one less than the
+ * length of the text.
+ * @param {Number} [indexB] An integer between 0 and the length of the
+ * string. If omitted, extracts characters to the end of the text.
+ */
+ substring : function( indexA, indexB )
+ {
+ // We need the following check due to a Firefox bug
+ // https://bugzilla.mozilla.org/show_bug.cgi?id=458886
+ if ( typeof indexB != 'number' )
+ return this.$.nodeValue.substr( indexA );
+ else
+ return this.$.nodeValue.substring( indexA, indexB );
+ }
+ });
diff --git a/skins/ckeditor/_source/core/dom/walker.js b/skins/ckeditor/_source/core/dom/walker.js
new file mode 100644
index 0000000..7f430b8
--- /dev/null
+++ b/skins/ckeditor/_source/core/dom/walker.js
@@ -0,0 +1,462 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+ // This function is to be called under a "walker" instance scope.
+ function iterate( rtl, breakOnFalse )
+ {
+ // Return null if we have reached the end.
+ if ( this._.end )
+ return null;
+
+ var node,
+ range = this.range,
+ guard,
+ userGuard = this.guard,
+ type = this.type,
+ getSourceNodeFn = ( rtl ? 'getPreviousSourceNode' : 'getNextSourceNode' );
+
+ // This is the first call. Initialize it.
+ if ( !this._.start )
+ {
+ this._.start = 1;
+
+ // Trim text nodes and optmize the range boundaries. DOM changes
+ // may happen at this point.
+ range.trim();
+
+ // A collapsed range must return null at first call.
+ if ( range.collapsed )
+ {
+ this.end();
+ return null;
+ }
+ }
+
+ // Create the LTR guard function, if necessary.
+ if ( !rtl && !this._.guardLTR )
+ {
+ // Gets the node that stops the walker when going LTR.
+ var limitLTR = range.endContainer,
+ blockerLTR = limitLTR.getChild( range.endOffset );
+
+ this._.guardLTR = function( node, movingOut )
+ {
+ return ( ( !movingOut || !limitLTR.equals( node ) )
+ && ( !blockerLTR || !node.equals( blockerLTR ) )
+ && ( node.type != CKEDITOR.NODE_ELEMENT || !movingOut || node.getName() != 'body' ) );
+ };
+ }
+
+ // Create the RTL guard function, if necessary.
+ if ( rtl && !this._.guardRTL )
+ {
+ // Gets the node that stops the walker when going LTR.
+ var limitRTL = range.startContainer,
+ blockerRTL = ( range.startOffset > 0 ) && limitRTL.getChild( range.startOffset - 1 );
+
+ this._.guardRTL = function( node, movingOut )
+ {
+ return ( ( !movingOut || !limitRTL.equals( node ) )
+ && ( !blockerRTL || !node.equals( blockerRTL ) )
+ && ( node.type != CKEDITOR.NODE_ELEMENT || !movingOut || node.getName() != 'body' ) );
+ };
+ }
+
+ // Define which guard function to use.
+ var stopGuard = rtl ? this._.guardRTL : this._.guardLTR;
+
+ // Make the user defined guard function participate in the process,
+ // otherwise simply use the boundary guard.
+ if ( userGuard )
+ {
+ guard = function( node, movingOut )
+ {
+ if ( stopGuard( node, movingOut ) === false )
+ return false;
+
+ return userGuard( node, movingOut );
+ };
+ }
+ else
+ guard = stopGuard;
+
+ if ( this.current )
+ node = this.current[ getSourceNodeFn ]( false, type, guard );
+ else
+ {
+ // Get the first node to be returned.
+
+ if ( rtl )
+ {
+ node = range.endContainer;
+
+ if ( range.endOffset > 0 )
+ {
+ node = node.getChild( range.endOffset - 1 );
+ if ( guard( node ) === false )
+ node = null;
+ }
+ else
+ node = ( guard ( node, true ) === false ) ?
+ null : node.getPreviousSourceNode( true, type, guard );
+ }
+ else
+ {
+ node = range.startContainer;
+ node = node.getChild( range.startOffset );
+
+ if ( node )
+ {
+ if ( guard( node ) === false )
+ node = null;
+ }
+ else
+ node = ( guard ( range.startContainer, true ) === false ) ?
+ null : range.startContainer.getNextSourceNode( true, type, guard ) ;
+ }
+ }
+
+ while ( node && !this._.end )
+ {
+ this.current = node;
+
+ if ( !this.evaluator || this.evaluator( node ) !== false )
+ {
+ if ( !breakOnFalse )
+ return node;
+ }
+ else if ( breakOnFalse && this.evaluator )
+ return false;
+
+ node = node[ getSourceNodeFn ]( false, type, guard );
+ }
+
+ this.end();
+ return this.current = null;
+ }
+
+ function iterateToLast( rtl )
+ {
+ var node, last = null;
+
+ while ( ( node = iterate.call( this, rtl ) ) )
+ last = node;
+
+ return last;
+ }
+
+ CKEDITOR.dom.walker = CKEDITOR.tools.createClass(
+ {
+ /**
+ * Utility class to "walk" the DOM inside a range boundaries. If
+ * necessary, partially included nodes (text nodes) are broken to
+ * reflect the boundaries limits, so DOM and range changes may happen.
+ * Outside changes to the range may break the walker.
+ *
+ * The walker may return nodes that are not totaly included into the
+ * range boundaires. Let's take the following range representation,
+ * where the square brackets indicate the boundaries:
+ *
+ * [<p>Some <b>sample] text</b>
+ *
+ * While walking forward into the above range, the following nodes are
+ * returned: <p>, "Some ", <b> and "sample". Going
+ * backwards instead we have: "sample" and "Some ". So note that the
+ * walker always returns nodes when "entering" them, but not when
+ * "leaving" them. The guard function is instead called both when
+ * entering and leaving nodes.
+ *
+ * @constructor
+ * @param {CKEDITOR.dom.range} range The range within which walk.
+ */
+ $ : function( range )
+ {
+ this.range = range;
+
+ /**
+ * A function executed for every matched node, to check whether
+ * it's to be considered into the walk or not. If not provided, all
+ * matched nodes are considered good.
+ * If the function returns "false" the node is ignored.
+ * @name CKEDITOR.dom.walker.prototype.evaluator
+ * @property
+ * @type Function
+ */
+ // this.evaluator = null;
+
+ /**
+ * A function executed for every node the walk pass by to check
+ * whether the walk is to be finished. It's called when both
+ * entering and exiting nodes, as well as for the matched nodes.
+ * If this function returns "false", the walking ends and no more
+ * nodes are evaluated.
+ * @name CKEDITOR.dom.walker.prototype.guard
+ * @property
+ * @type Function
+ */
+ // this.guard = null;
+
+ /** @private */
+ this._ = {};
+ },
+
+// statics :
+// {
+// /* Creates a CKEDITOR.dom.walker instance to walk inside DOM boundaries set by nodes.
+// * @param {CKEDITOR.dom.node} startNode The node from wich the walk
+// * will start.
+// * @param {CKEDITOR.dom.node} [endNode] The last node to be considered
+// * in the walk. No more nodes are retrieved after touching or
+// * passing it. If not provided, the walker stops at the
+// * <body> closing boundary.
+// * @returns {CKEDITOR.dom.walker} A DOM walker for the nodes between the
+// * provided nodes.
+// */
+// createOnNodes : function( startNode, endNode, startInclusive, endInclusive )
+// {
+// var range = new CKEDITOR.dom.range();
+// if ( startNode )
+// range.setStartAt( startNode, startInclusive ? CKEDITOR.POSITION_BEFORE_START : CKEDITOR.POSITION_AFTER_END ) ;
+// else
+// range.setStartAt( startNode.getDocument().getBody(), CKEDITOR.POSITION_AFTER_START ) ;
+//
+// if ( endNode )
+// range.setEndAt( endNode, endInclusive ? CKEDITOR.POSITION_AFTER_END : CKEDITOR.POSITION_BEFORE_START ) ;
+// else
+// range.setEndAt( startNode.getDocument().getBody(), CKEDITOR.POSITION_BEFORE_END ) ;
+//
+// return new CKEDITOR.dom.walker( range );
+// }
+// },
+//
+ proto :
+ {
+ /**
+ * Stop walking. No more nodes are retrieved if this function gets
+ * called.
+ */
+ end : function()
+ {
+ this._.end = 1;
+ },
+
+ /**
+ * Retrieves the next node (at right).
+ * @returns {CKEDITOR.dom.node} The next node or null if no more
+ * nodes are available.
+ */
+ next : function()
+ {
+ return iterate.call( this );
+ },
+
+ /**
+ * Retrieves the previous node (at left).
+ * @returns {CKEDITOR.dom.node} The previous node or null if no more
+ * nodes are available.
+ */
+ previous : function()
+ {
+ return iterate.call( this, 1 );
+ },
+
+ /**
+ * Check all nodes at right, executing the evaluation fuction.
+ * @returns {Boolean} "false" if the evaluator function returned
+ * "false" for any of the matched nodes. Otherwise "true".
+ */
+ checkForward : function()
+ {
+ return iterate.call( this, 0, 1 ) !== false;
+ },
+
+ /**
+ * Check all nodes at left, executing the evaluation fuction.
+ * @returns {Boolean} "false" if the evaluator function returned
+ * "false" for any of the matched nodes. Otherwise "true".
+ */
+ checkBackward : function()
+ {
+ return iterate.call( this, 1, 1 ) !== false;
+ },
+
+ /**
+ * Executes a full walk forward (to the right), until no more nodes
+ * are available, returning the last valid node.
+ * @returns {CKEDITOR.dom.node} The last node at the right or null
+ * if no valid nodes are available.
+ */
+ lastForward : function()
+ {
+ return iterateToLast.call( this );
+ },
+
+ /**
+ * Executes a full walk backwards (to the left), until no more nodes
+ * are available, returning the last valid node.
+ * @returns {CKEDITOR.dom.node} The last node at the left or null
+ * if no valid nodes are available.
+ */
+ lastBackward : function()
+ {
+ return iterateToLast.call( this, 1 );
+ },
+
+ reset : function()
+ {
+ delete this.current;
+ this._ = {};
+ }
+
+ }
+ });
+
+ /*
+ * Anything whose display computed style is block, list-item, table,
+ * table-row-group, table-header-group, table-footer-group, table-row,
+ * table-column-group, table-column, table-cell, table-caption, or whose node
+ * name is hr, br (when enterMode is br only) is a block boundary.
+ */
+ var blockBoundaryDisplayMatch =
+ {
+ block : 1,
+ 'list-item' : 1,
+ table : 1,
+ 'table-row-group' : 1,
+ 'table-header-group' : 1,
+ 'table-footer-group' : 1,
+ 'table-row' : 1,
+ 'table-column-group' : 1,
+ 'table-column' : 1,
+ 'table-cell' : 1,
+ 'table-caption' : 1
+ };
+
+ CKEDITOR.dom.element.prototype.isBlockBoundary = function( customNodeNames )
+ {
+ var nodeNameMatches = customNodeNames ?
+ CKEDITOR.tools.extend( {}, CKEDITOR.dtd.$block, customNodeNames || {} ) :
+ CKEDITOR.dtd.$block;
+
+ // Don't consider floated formatting as block boundary, fall back to dtd check in that case. (#6297)
+ return this.getComputedStyle( 'float' ) == 'none' && blockBoundaryDisplayMatch[ this.getComputedStyle( 'display' ) ]
+ || nodeNameMatches[ this.getName() ];
+ };
+
+ CKEDITOR.dom.walker.blockBoundary = function( customNodeNames )
+ {
+ return function( node , type )
+ {
+ return ! ( node.type == CKEDITOR.NODE_ELEMENT
+ && node.isBlockBoundary( customNodeNames ) );
+ };
+ };
+
+ CKEDITOR.dom.walker.listItemBoundary = function()
+ {
+ return this.blockBoundary( { br : 1 } );
+ };
+
+ /**
+ * Whether the to-be-evaluated node is a bookmark node OR bookmark node
+ * inner contents.
+ * @param {Boolean} contentOnly Whether only test againt the text content of
+ * bookmark node instead of the element itself(default).
+ * @param {Boolean} isReject Whether should return 'false' for the bookmark
+ * node instead of 'true'(default).
+ */
+ CKEDITOR.dom.walker.bookmark = function( contentOnly, isReject )
+ {
+ function isBookmarkNode( node )
+ {
+ return ( node && node.getName
+ && node.getName() == 'span'
+ && node.data( 'cke-bookmark' ) );
+ }
+
+ return function( node )
+ {
+ var isBookmark, parent;
+ // Is bookmark inner text node?
+ isBookmark = ( node && !node.getName && ( parent = node.getParent() )
+ && isBookmarkNode( parent ) );
+ // Is bookmark node?
+ isBookmark = contentOnly ? isBookmark : isBookmark || isBookmarkNode( node );
+ return !! ( isReject ^ isBookmark );
+ };
+ };
+
+ /**
+ * Whether the node is a text node containing only whitespaces characters.
+ * @param isReject
+ */
+ CKEDITOR.dom.walker.whitespaces = function( isReject )
+ {
+ return function( node )
+ {
+ var isWhitespace = node && ( node.type == CKEDITOR.NODE_TEXT )
+ && !CKEDITOR.tools.trim( node.getText() );
+ return !! ( isReject ^ isWhitespace );
+ };
+ };
+
+ /**
+ * Whether the node is invisible in wysiwyg mode.
+ * @param isReject
+ */
+ CKEDITOR.dom.walker.invisible = function( isReject )
+ {
+ var whitespace = CKEDITOR.dom.walker.whitespaces();
+ return function( node )
+ {
+ // Nodes that take no spaces in wysiwyg:
+ // 1. White-spaces but not including NBSP;
+ // 2. Empty inline elements, e.g. we're checking here
+ // 'offsetHeight' instead of 'offsetWidth' for properly excluding
+ // all sorts of empty paragraph, e.g. .
+ var isInvisible = whitespace( node ) || node.is && !node.$.offsetHeight;
+ return !! ( isReject ^ isInvisible );
+ };
+ };
+
+ CKEDITOR.dom.walker.nodeType = function( type, isReject )
+ {
+ return function( node )
+ {
+ return !! ( isReject ^ ( node.type == type ) );
+ };
+ };
+
+ var tailNbspRegex = /^[\t\r\n ]*(?: |\xa0)$/,
+ isWhitespaces = CKEDITOR.dom.walker.whitespaces(),
+ isBookmark = CKEDITOR.dom.walker.bookmark(),
+ toSkip = function( node )
+ {
+ return isBookmark( node )
+ || isWhitespaces( node )
+ || node.type == CKEDITOR.NODE_ELEMENT
+ && node.getName() in CKEDITOR.dtd.$inline
+ && !( node.getName() in CKEDITOR.dtd.$empty );
+ };
+
+ // Check if there's a filler node at the end of an element, and return it.
+ CKEDITOR.dom.element.prototype.getBogus = function()
+ {
+ // Bogus are not always at the end, e.g. text
(#7070).
+ var tail = this;
+ do { tail = tail.getPreviousSourceNode(); }
+ while ( toSkip( tail ) )
+
+ if ( tail && ( !CKEDITOR.env.ie ? tail.is && tail.is( 'br' )
+ : tail.getText && tailNbspRegex.test( tail.getText() ) ) )
+ {
+ return tail;
+ }
+ return false;
+ };
+
+})();
diff --git a/skins/ckeditor/_source/core/dom/window.js b/skins/ckeditor/_source/core/dom/window.js
new file mode 100644
index 0000000..c5492b6
--- /dev/null
+++ b/skins/ckeditor/_source/core/dom/window.js
@@ -0,0 +1,96 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.dom.document} class, which
+ * represents a DOM document.
+ */
+
+/**
+ * Represents a DOM window.
+ * @constructor
+ * @augments CKEDITOR.dom.domObject
+ * @param {Object} domWindow A native DOM window.
+ * @example
+ * var document = new CKEDITOR.dom.window( window );
+ */
+CKEDITOR.dom.window = function( domWindow )
+{
+ CKEDITOR.dom.domObject.call( this, domWindow );
+};
+
+CKEDITOR.dom.window.prototype = new CKEDITOR.dom.domObject();
+
+CKEDITOR.tools.extend( CKEDITOR.dom.window.prototype,
+ /** @lends CKEDITOR.dom.window.prototype */
+ {
+ /**
+ * Moves the selection focus to this window.
+ * @function
+ * @example
+ * var win = new CKEDITOR.dom.window( window );
+ * win.focus() ;
+ */
+ focus : function()
+ {
+ // Webkit is sometimes failed to focus iframe, blur it first(#3835).
+ if ( CKEDITOR.env.webkit && this.$.parent )
+ this.$.parent.focus();
+ this.$.focus();
+ },
+
+ /**
+ * Gets the width and height of this window's viewable area.
+ * @function
+ * @returns {Object} An object with the "width" and "height"
+ * properties containing the size.
+ * @example
+ * var win = new CKEDITOR.dom.window( window );
+ * var size = win.getViewPaneSize() ;
+ * alert( size.width );
+ * alert( size.height );
+ */
+ getViewPaneSize : function()
+ {
+ var doc = this.$.document,
+ stdMode = doc.compatMode == 'CSS1Compat';
+ return {
+ width : ( stdMode ? doc.documentElement.clientWidth : doc.body.clientWidth ) || 0,
+ height : ( stdMode ? doc.documentElement.clientHeight : doc.body.clientHeight ) || 0
+ };
+ },
+
+ /**
+ * Gets the current position of the window's scroll.
+ * @function
+ * @returns {Object} An object with the "x" and "y" properties
+ * containing the scroll position.
+ * @example
+ * var win = new CKEDITOR.dom.window( window );
+ * var pos = win.getScrollPosition() ;
+ * alert( pos.x );
+ * alert( pos.y );
+ */
+ getScrollPosition : function()
+ {
+ var $ = this.$;
+
+ if ( 'pageXOffset' in $ )
+ {
+ return {
+ x : $.pageXOffset || 0,
+ y : $.pageYOffset || 0
+ };
+ }
+ else
+ {
+ var doc = $.document;
+ return {
+ x : doc.documentElement.scrollLeft || doc.body.scrollLeft || 0,
+ y : doc.documentElement.scrollTop || doc.body.scrollTop || 0
+ };
+ }
+ }
+ });
diff --git a/skins/ckeditor/_source/core/dtd.js b/skins/ckeditor/_source/core/dtd.js
new file mode 100644
index 0000000..51293a0
--- /dev/null
+++ b/skins/ckeditor/_source/core/dtd.js
@@ -0,0 +1,266 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.dtd} object, which holds the DTD
+ * mapping for XHTML 1.0 Transitional. This file was automatically
+ * generated from the file: xhtml1-transitional.dtd.
+ */
+
+/**
+ * @namespace Holds and object representation of the HTML DTD to be used by the
+ * editor in its internal operations.
+ *
+ * Each element in the DTD is represented by a property in this object. Each
+ * property contains the list of elements that can be contained by the element.
+ * Text is represented by the "#" property.
+ *
+ * Several special grouping properties are also available. Their names start
+ * with the "$" character.
+ * @example
+ * // Check if "div" can be contained in a "p" element.
+ * alert( !!CKEDITOR.dtd[ 'p' ][ 'div' ] ); "false"
+ * @example
+ * // Check if "p" can be contained in a "div" element.
+ * alert( !!CKEDITOR.dtd[ 'div' ][ 'p' ] ); "true"
+ * @example
+ * // Check if "p" is a block element.
+ * alert( !!CKEDITOR.dtd.$block[ 'p' ] ); "true"
+ */
+CKEDITOR.dtd = (function()
+{
+ var X = CKEDITOR.tools.extend,
+
+ A = {isindex:1,fieldset:1},
+ B = {input:1,button:1,select:1,textarea:1,label:1},
+ C = X({a:1},B),
+ D = X({iframe:1},C),
+ E = {hr:1,ul:1,menu:1,div:1,section:1,header:1,footer:1,nav:1,article:1,aside:1,figure:1,dialog:1,hgroup:1,mark:1,time:1,meter:1,command:1,keygen:1,output:1,progress:1,audio:1,video:1,details:1,datagrid:1,datalist:1,blockquote:1,noscript:1,table:1,center:1,address:1,dir:1,pre:1,h5:1,dl:1,h4:1,noframes:1,h6:1,ol:1,h1:1,h3:1,h2:1},
+ F = {ins:1,del:1,script:1,style:1},
+ G = X({b:1,acronym:1,bdo:1,'var':1,'#':1,abbr:1,code:1,br:1,i:1,cite:1,kbd:1,u:1,strike:1,s:1,tt:1,strong:1,q:1,samp:1,em:1,dfn:1,span:1,wbr:1},F),
+ H = X({sub:1,img:1,object:1,sup:1,basefont:1,map:1,applet:1,font:1,big:1,small:1,mark:1},G),
+ I = X({p:1},H),
+ J = X({iframe:1},H,B),
+ K = {img:1,noscript:1,br:1,kbd:1,center:1,button:1,basefont:1,h5:1,h4:1,samp:1,h6:1,ol:1,h1:1,h3:1,h2:1,form:1,font:1,'#':1,select:1,menu:1,ins:1,abbr:1,label:1,code:1,table:1,script:1,cite:1,input:1,iframe:1,strong:1,textarea:1,noframes:1,big:1,small:1,span:1,hr:1,sub:1,bdo:1,'var':1,div:1,section:1,header:1,footer:1,nav:1,article:1,aside:1,figure:1,dialog:1,hgroup:1,mark:1,time:1,meter:1,menu:1,command:1,keygen:1,output:1,progress:1,audio:1,video:1,details:1,datagrid:1,datalist:1,object:1,sup:1,strike:1,dir:1,map:1,dl:1,applet:1,del:1,isindex:1,fieldset:1,ul:1,b:1,acronym:1,a:1,blockquote:1,i:1,u:1,s:1,tt:1,address:1,q:1,pre:1,p:1,em:1,dfn:1},
+
+ L = X({a:1},J),
+ M = {tr:1},
+ N = {'#':1},
+ O = X({param:1},K),
+ P = X({form:1},A,D,E,I),
+ Q = {li:1},
+ R = {style:1,script:1},
+ S = {base:1,link:1,meta:1,title:1},
+ T = X(S,R),
+ U = {head:1,body:1},
+ V = {html:1};
+
+ var block = {address:1,blockquote:1,center:1,dir:1,div:1,section:1,header:1,footer:1,nav:1,article:1,aside:1,figure:1,dialog:1,hgroup:1,time:1,meter:1,menu:1,command:1,keygen:1,output:1,progress:1,audio:1,video:1,details:1,datagrid:1,datalist:1,dl:1,fieldset:1,form:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,hr:1,isindex:1,noframes:1,ol:1,p:1,pre:1,table:1,ul:1};
+
+ return /** @lends CKEDITOR.dtd */ {
+
+ // The "$" items have been added manually.
+
+ // List of elements living outside body.
+ $nonBodyContent: X(V,U,S),
+
+ /**
+ * List of block elements, like "p" or "div".
+ * @type Object
+ * @example
+ */
+ $block : block,
+
+ /**
+ * List of block limit elements.
+ * @type Object
+ * @example
+ */
+ $blockLimit : { body:1,div:1,section:1,header:1,footer:1,nav:1,article:1,aside:1,figure:1,dialog:1,hgroup:1,time:1,meter:1,menu:1,command:1,keygen:1,output:1,progress:1,audio:1,video:1,details:1,datagrid:1,datalist:1,td:1,th:1,caption:1,form:1 },
+
+ /**
+ * List of inline (<span> like) elements.
+ */
+ $inline : L, // Just like span.
+
+ /**
+ * list of elements that can be children at <body>.
+ */
+ $body : X({script:1,style:1}, block),
+
+ $cdata : {script:1,style:1},
+
+ /**
+ * List of empty (self-closing) elements, like "br" or "img".
+ * @type Object
+ * @example
+ */
+ $empty : {area:1,base:1,br:1,col:1,hr:1,img:1,input:1,link:1,meta:1,param:1,wbr:1},
+
+ /**
+ * List of list item elements, like "li" or "dd".
+ * @type Object
+ * @example
+ */
+ $listItem : {dd:1,dt:1,li:1},
+
+ /**
+ * List of list root elements.
+ * @type Object
+ * @example
+ */
+ $list: {ul:1,ol:1,dl:1},
+
+ /**
+ * Elements that accept text nodes, but are not possible to edit into
+ * the browser.
+ * @type Object
+ * @example
+ */
+ $nonEditable : {applet:1,button:1,embed:1,iframe:1,map:1,object:1,option:1,script:1,textarea:1,param:1,audio:1,video:1},
+
+ /**
+ * List of block tags with each one a singleton element lives in the corresponding structure for description.
+ */
+ $captionBlock : { caption:1, legend:1 },
+
+ /**
+ * List of elements that can be ignored if empty, like "b" or "span".
+ * @type Object
+ * @example
+ */
+ $removeEmpty : {abbr:1,acronym:1,address:1,b:1,bdo:1,big:1,cite:1,code:1,del:1,dfn:1,em:1,font:1,i:1,ins:1,label:1,kbd:1,q:1,s:1,samp:1,small:1,span:1,strike:1,strong:1,sub:1,sup:1,tt:1,u:1,'var':1,mark:1},
+
+ /**
+ * List of elements that have tabindex set to zero by default.
+ * @type Object
+ * @example
+ */
+ $tabIndex : {a:1,area:1,button:1,input:1,object:1,select:1,textarea:1},
+
+ /**
+ * List of elements used inside the "table" element, like "tbody" or "td".
+ * @type Object
+ * @example
+ */
+ $tableContent : {caption:1,col:1,colgroup:1,tbody:1,td:1,tfoot:1,th:1,thead:1,tr:1},
+
+ html: U,
+ head: T,
+ style: N,
+ script: N,
+ body: P,
+ base: {},
+ link: {},
+ meta: {},
+ title: N,
+ col : {},
+ tr : {td:1,th:1},
+ img : {},
+ colgroup : {col:1},
+ noscript : P,
+ td : P,
+ br : {},
+ wbr : {},
+ th : P,
+ center : P,
+ kbd : L,
+ button : X(I,E),
+ basefont : {},
+ h5 : L,
+ h4 : L,
+ samp : L,
+ h6 : L,
+ ol : Q,
+ h1 : L,
+ h3 : L,
+ option : N,
+ h2 : L,
+ form : X(A,D,E,I),
+ select : {optgroup:1,option:1},
+ font : L,
+ ins : L,
+ menu : Q,
+ abbr : L,
+ label : L,
+ table : {thead:1,col:1,tbody:1,tr:1,colgroup:1,caption:1,tfoot:1},
+ code : L,
+ tfoot : M,
+ cite : L,
+ li : P,
+ input : {},
+ iframe : P,
+ strong : L,
+ textarea : N,
+ noframes : P,
+ big : L,
+ small : L,
+ span : L,
+ hr : {},
+ dt : L,
+ sub : L,
+ optgroup : {option:1},
+ param : {},
+ bdo : L,
+ 'var' : L,
+ div : P,
+ object : O,
+ sup : L,
+ dd : P,
+ strike : L,
+ area : {},
+ dir : Q,
+ map : X({area:1,form:1,p:1},A,F,E),
+ applet : O,
+ dl : {dt:1,dd:1},
+ del : L,
+ isindex : {},
+ fieldset : X({legend:1},K),
+ thead : M,
+ ul : Q,
+ acronym : L,
+ b : L,
+ a : J,
+ blockquote : P,
+ caption : L,
+ i : L,
+ u : L,
+ tbody : M,
+ s : L,
+ address : X(D,I),
+ tt : L,
+ legend : L,
+ q : L,
+ pre : X(G,C),
+ p : L,
+ em : L,
+ dfn : L,
+ //HTML5
+ section : P,
+ header : P,
+ footer : P,
+ nav : P,
+ article : P,
+ aside : P,
+ figure: P,
+ dialog : P,
+ hgroup : P,
+ mark : L,
+ time : L,
+ meter : L,
+ menu : L,
+ command : L,
+ keygen : L,
+ output : L,
+ progress : O,
+ audio : O,
+ video : O,
+ details : O,
+ datagrid : O,
+ datalist : O
+ };
+})();
+
+// PACKAGER_RENAME( CKEDITOR.dtd )
diff --git a/skins/ckeditor/_source/core/editor.js b/skins/ckeditor/_source/core/editor.js
new file mode 100644
index 0000000..ff17efb
--- /dev/null
+++ b/skins/ckeditor/_source/core/editor.js
@@ -0,0 +1,1059 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.editor} class, which represents an
+ * editor instance.
+ */
+
+(function()
+{
+ // The counter for automatic instance names.
+ var nameCounter = 0;
+
+ var getNewName = function()
+ {
+ var name = 'editor' + ( ++nameCounter );
+ return ( CKEDITOR.instances && CKEDITOR.instances[ name ] ) ? getNewName() : name;
+ };
+
+ // ##### START: Config Privates
+
+ // These function loads custom configuration files and cache the
+ // CKEDITOR.editorConfig functions defined on them, so there is no need to
+ // download them more than once for several instances.
+ var loadConfigLoaded = {};
+ var loadConfig = function( editor )
+ {
+ var customConfig = editor.config.customConfig;
+
+ // Check if there is a custom config to load.
+ if ( !customConfig )
+ return false;
+
+ customConfig = CKEDITOR.getUrl( customConfig );
+
+ var loadedConfig = loadConfigLoaded[ customConfig ] || ( loadConfigLoaded[ customConfig ] = {} );
+
+ // If the custom config has already been downloaded, reuse it.
+ if ( loadedConfig.fn )
+ {
+ // Call the cached CKEDITOR.editorConfig defined in the custom
+ // config file for the editor instance depending on it.
+ loadedConfig.fn.call( editor, editor.config );
+
+ // If there is no other customConfig in the chain, fire the
+ // "configLoaded" event.
+ if ( CKEDITOR.getUrl( editor.config.customConfig ) == customConfig || !loadConfig( editor ) )
+ editor.fireOnce( 'customConfigLoaded' );
+ }
+ else
+ {
+ // Load the custom configuration file.
+ CKEDITOR.scriptLoader.load( customConfig, function()
+ {
+ // If the CKEDITOR.editorConfig function has been properly
+ // defined in the custom configuration file, cache it.
+ if ( CKEDITOR.editorConfig )
+ loadedConfig.fn = CKEDITOR.editorConfig;
+ else
+ loadedConfig.fn = function(){};
+
+ // Call the load config again. This time the custom
+ // config is already cached and so it will get loaded.
+ loadConfig( editor );
+ });
+ }
+
+ return true;
+ };
+
+ var initConfig = function( editor, instanceConfig )
+ {
+ // Setup the lister for the "customConfigLoaded" event.
+ editor.on( 'customConfigLoaded', function()
+ {
+ if ( instanceConfig )
+ {
+ // Register the events that may have been set at the instance
+ // configuration object.
+ if ( instanceConfig.on )
+ {
+ for ( var eventName in instanceConfig.on )
+ {
+ editor.on( eventName, instanceConfig.on[ eventName ] );
+ }
+ }
+
+ // Overwrite the settings from the in-page config.
+ CKEDITOR.tools.extend( editor.config, instanceConfig, true );
+
+ delete editor.config.on;
+ }
+
+ onConfigLoaded( editor );
+ });
+
+ // The instance config may override the customConfig setting to avoid
+ // loading the default ~/config.js file.
+ if ( instanceConfig && instanceConfig.customConfig != undefined )
+ editor.config.customConfig = instanceConfig.customConfig;
+
+ // Load configs from the custom configuration files.
+ if ( !loadConfig( editor ) )
+ editor.fireOnce( 'customConfigLoaded' );
+ };
+
+ // ##### END: Config Privates
+
+ var onConfigLoaded = function( editor )
+ {
+ // Set config related properties.
+
+ var skin = editor.config.skin.split( ',' ),
+ skinName = skin[ 0 ],
+ skinPath = CKEDITOR.getUrl( skin[ 1 ] || (
+ '_source/' + // @Packager.RemoveLine
+ 'skins/' + skinName + '/' ) );
+
+ /**
+ * The name of the skin used by this editor instance. The skin name can
+ * be set through the {@link CKEDITOR.config.skin}
setting.
+ * @name CKEDITOR.editor.prototype.skinName
+ * @type String
+ * @example
+ * alert( editor.skinName ); // E.g. "kama"
+ */
+ editor.skinName = skinName;
+
+ /**
+ * The full URL of the skin directory.
+ * @name CKEDITOR.editor.prototype.skinPath
+ * @type String
+ * @example
+ * alert( editor.skinPath ); // E.g. "http://example.com/ckeditor/skins/kama/"
+ */
+ editor.skinPath = skinPath;
+
+ /**
+ * The CSS class name used for skin identification purposes.
+ * @name CKEDITOR.editor.prototype.skinClass
+ * @type String
+ * @example
+ * alert( editor.skinClass ); // E.g. "cke_skin_kama"
+ */
+ editor.skinClass = 'cke_skin_' + skinName;
+
+ /**
+ * The tabbing
+ * navigation order that has been calculated for this editor
+ * instance. This can be set by the {@link CKEDITOR.config.tabIndex}
+ * setting or taken from the tabindex
attribute of the
+ * {@link #element}
associated with the editor.
+ * @name CKEDITOR.editor.prototype.tabIndex
+ * @type Number
+ * @default 0 (zero)
+ * @example
+ * alert( editor.tabIndex ); // E.g. "0"
+ */
+ editor.tabIndex = editor.config.tabIndex || editor.element.getAttribute( 'tabindex' ) || 0;
+
+ /**
+ * Indicates the read-only state of this editor. This is a read-only property.
+ * @name CKEDITOR.editor.prototype.readOnly
+ * @type Boolean
+ * @since 3.6
+ * @see CKEDITOR.editor#setReadOnly
+ */
+ editor.readOnly = !!( editor.config.readOnly || editor.element.getAttribute( 'disabled' ) );
+
+ // Fire the "configLoaded" event.
+ editor.fireOnce( 'configLoaded' );
+
+ // Load language file.
+ loadSkin( editor );
+ };
+
+ var loadLang = function( editor )
+ {
+ CKEDITOR.lang.load( editor.config.language, editor.config.defaultLanguage, function( languageCode, lang )
+ {
+ /**
+ * The code for the language resources that have been loaded
+ * for the user interface elements of this editor instance.
+ * @name CKEDITOR.editor.prototype.langCode
+ * @type String
+ * @example
+ * alert( editor.langCode ); // E.g. "en"
+ */
+ editor.langCode = languageCode;
+
+ /**
+ * An object that contains all language strings used by the editor
+ * interface.
+ * @name CKEDITOR.editor.prototype.lang
+ * @type CKEDITOR.lang
+ * @example
+ * alert( editor.lang.bold ); // E.g. "Negrito" (if the language is set to Portuguese)
+ */
+ // As we'll be adding plugin specific entries that could come
+ // from different language code files, we need a copy of lang,
+ // not a direct reference to it.
+ editor.lang = CKEDITOR.tools.prototypedCopy( lang );
+
+ // We're not able to support RTL in Firefox 2 at this time.
+ if ( CKEDITOR.env.gecko && CKEDITOR.env.version < 10900 && editor.lang.dir == 'rtl' )
+ editor.lang.dir = 'ltr';
+
+ editor.fire( 'langLoaded' );
+
+ var config = editor.config;
+ config.contentsLangDirection == 'ui' && ( config.contentsLangDirection = editor.lang.dir );
+
+ loadPlugins( editor );
+ });
+ };
+
+ var loadPlugins = function( editor )
+ {
+ var config = editor.config,
+ plugins = config.plugins,
+ extraPlugins = config.extraPlugins,
+ removePlugins = config.removePlugins;
+
+ if ( extraPlugins )
+ {
+ // Remove them first to avoid duplications.
+ var removeRegex = new RegExp( '(?:^|,)(?:' + extraPlugins.replace( /\s*,\s*/g, '|' ) + ')(?=,|$)' , 'g' );
+ plugins = plugins.replace( removeRegex, '' );
+
+ plugins += ',' + extraPlugins;
+ }
+
+ if ( removePlugins )
+ {
+ removeRegex = new RegExp( '(?:^|,)(?:' + removePlugins.replace( /\s*,\s*/g, '|' ) + ')(?=,|$)' , 'g' );
+ plugins = plugins.replace( removeRegex, '' );
+ }
+
+ // Load the Adobe AIR plugin conditionally.
+ CKEDITOR.env.air && ( plugins += ',adobeair' );
+
+ // Load all plugins defined in the "plugins" setting.
+ CKEDITOR.plugins.load( plugins.split( ',' ), function( plugins )
+ {
+ // The list of plugins.
+ var pluginsArray = [];
+
+ // The language code to get loaded for each plugin. Null
+ // entries will be appended for plugins with no language files.
+ var languageCodes = [];
+
+ // The list of URLs to language files.
+ var languageFiles = [];
+
+ /**
+ * An object that contains references to all plugins used by this
+ * editor instance.
+ * @name CKEDITOR.editor.prototype.plugins
+ * @type Object
+ * @example
+ * alert( editor.plugins.dialog.path ); // E.g. "http://example.com/ckeditor/plugins/dialog/"
+ */
+ editor.plugins = plugins;
+
+ // Loop through all plugins, to build the list of language
+ // files to get loaded.
+ for ( var pluginName in plugins )
+ {
+ var plugin = plugins[ pluginName ],
+ pluginLangs = plugin.lang,
+ pluginPath = CKEDITOR.plugins.getPath( pluginName ),
+ lang = null;
+
+ // Set the plugin path in the plugin.
+ plugin.path = pluginPath;
+
+ // If the plugin has "lang".
+ if ( pluginLangs )
+ {
+ // Resolve the plugin language. If the current language
+ // is not available, get the first one (default one).
+ lang = ( CKEDITOR.tools.indexOf( pluginLangs, editor.langCode ) >= 0 ? editor.langCode : pluginLangs[ 0 ] );
+
+ if ( !plugin.langEntries || !plugin.langEntries[ lang ] )
+ {
+ // Put the language file URL into the list of files to
+ // get downloaded.
+ languageFiles.push( CKEDITOR.getUrl( pluginPath + 'lang/' + lang + '.js' ) );
+ }
+ else
+ {
+ CKEDITOR.tools.extend( editor.lang, plugin.langEntries[ lang ] );
+ lang = null;
+ }
+ }
+
+ // Save the language code, so we know later which
+ // language has been resolved to this plugin.
+ languageCodes.push( lang );
+
+ pluginsArray.push( plugin );
+ }
+
+ // Load all plugin specific language files in a row.
+ CKEDITOR.scriptLoader.load( languageFiles, function()
+ {
+ // Initialize all plugins that have the "beforeInit" and "init" methods defined.
+ var methods = [ 'beforeInit', 'init', 'afterInit' ];
+ for ( var m = 0 ; m < methods.length ; m++ )
+ {
+ for ( var i = 0 ; i < pluginsArray.length ; i++ )
+ {
+ var plugin = pluginsArray[ i ];
+
+ // Uses the first loop to update the language entries also.
+ if ( m === 0 && languageCodes[ i ] && plugin.lang )
+ CKEDITOR.tools.extend( editor.lang, plugin.langEntries[ languageCodes[ i ] ] );
+
+ // Call the plugin method (beforeInit and init).
+ if ( plugin[ methods[ m ] ] )
+ plugin[ methods[ m ] ]( editor );
+ }
+ }
+
+ // Load the editor skin.
+ editor.fire( 'pluginsLoaded' );
+ loadTheme( editor );
+ });
+ });
+ };
+
+ var loadSkin = function( editor )
+ {
+ CKEDITOR.skins.load( editor, 'editor', function()
+ {
+ loadLang( editor );
+ });
+ };
+
+ var loadTheme = function( editor )
+ {
+ var theme = editor.config.theme;
+ CKEDITOR.themes.load( theme, function()
+ {
+ /**
+ * The theme used by this editor instance.
+ * @name CKEDITOR.editor.prototype.theme
+ * @type CKEDITOR.theme
+ * @example
+ * alert( editor.theme ); // E.g. "http://example.com/ckeditor/themes/default/"
+ */
+ var editorTheme = editor.theme = CKEDITOR.themes.get( theme );
+ editorTheme.path = CKEDITOR.themes.getPath( theme );
+ editorTheme.build( editor );
+
+ if ( editor.config.autoUpdateElement )
+ attachToForm( editor );
+ });
+ };
+
+ var attachToForm = function( editor )
+ {
+ var element = editor.element;
+
+ // If are replacing a textarea, we must
+ if ( editor.elementMode == CKEDITOR.ELEMENT_MODE_REPLACE && element.is( 'textarea' ) )
+ {
+ var form = element.$.form && new CKEDITOR.dom.element( element.$.form );
+ if ( form )
+ {
+ function onSubmit()
+ {
+ editor.updateElement();
+ }
+ form.on( 'submit',onSubmit );
+
+ // Setup the submit function because it doesn't fire the
+ // "submit" event.
+ if ( !form.$.submit.nodeName && !form.$.submit.length )
+ {
+ form.$.submit = CKEDITOR.tools.override( form.$.submit, function( originalSubmit )
+ {
+ return function()
+ {
+ editor.updateElement();
+
+ // For IE, the DOM submit function is not a
+ // function, so we need thid check.
+ if ( originalSubmit.apply )
+ originalSubmit.apply( this, arguments );
+ else
+ originalSubmit();
+ };
+ });
+ }
+
+ // Remove 'submit' events registered on form element before destroying.(#3988)
+ editor.on( 'destroy', function()
+ {
+ form.removeListener( 'submit', onSubmit );
+ } );
+ }
+ }
+ };
+
+ function updateCommands()
+ {
+ var command,
+ commands = this._.commands,
+ mode = this.mode;
+
+ if ( !mode )
+ return;
+
+ for ( var name in commands )
+ {
+ command = commands[ name ];
+ command[ command.startDisabled ? 'disable' :
+ this.readOnly && !command.readOnly ? 'disable' : command.modes[ mode ] ? 'enable' : 'disable' ]();
+ }
+ }
+
+ /**
+ * Initializes the editor instance. This function is called by the editor
+ * contructor (editor_basic.js
).
+ * @private
+ */
+ CKEDITOR.editor.prototype._init = function()
+ {
+ // Get the properties that have been saved in the editor_base
+ // implementation.
+ var element = CKEDITOR.dom.element.get( this._.element ),
+ instanceConfig = this._.instanceConfig;
+ delete this._.element;
+ delete this._.instanceConfig;
+
+ this._.commands = {};
+ this._.styles = [];
+
+ /**
+ * The DOM element that was replaced by this editor instance. This
+ * element stores the editor data on load and post.
+ * @name CKEDITOR.editor.prototype.element
+ * @type CKEDITOR.dom.element
+ * @example
+ * var editor = CKEDITOR.instances.editor1;
+ * alert( editor.element .getName() ); // E.g. "textarea"
+ */
+ this.element = element;
+
+ /**
+ * The editor instance name. It may be the replaced element ID, name, or
+ * a default name using the progressive counter (editor1
,
+ * editor2
, ...).
+ * @name CKEDITOR.editor.prototype.name
+ * @type String
+ * @example
+ * var editor = CKEDITOR.instances.editor1;
+ * alert( editor.name ); // "editor1"
+ */
+ this.name = ( element && ( this.elementMode == CKEDITOR.ELEMENT_MODE_REPLACE )
+ && ( element.getId() || element.getNameAtt() ) )
+ || getNewName();
+
+ if ( this.name in CKEDITOR.instances )
+ throw '[CKEDITOR.editor] The instance "' + this.name + '" already exists.';
+
+ /**
+ * A unique random string assigned to each editor instance on the page.
+ * @name CKEDITOR.editor.prototype.id
+ * @type String
+ */
+ this.id = CKEDITOR.tools.getNextId();
+
+ /**
+ * The configurations for this editor instance. It inherits all
+ * settings defined in (@link CKEDITOR.config}
, combined with settings
+ * loaded from custom configuration files and those defined inline in
+ * the page when creating the editor.
+ * @name CKEDITOR.editor.prototype.config
+ * @type Object
+ * @example
+ * var editor = CKEDITOR.instances.editor1;
+ * alert( editor.config.theme ); // E.g. "default"
+ */
+ this.config = CKEDITOR.tools.prototypedCopy( CKEDITOR.config );
+
+ /**
+ * The namespace containing UI features related to this editor instance.
+ * @name CKEDITOR.editor.prototype.ui
+ * @type CKEDITOR.ui
+ * @example
+ */
+ this.ui = new CKEDITOR.ui( this );
+
+ /**
+ * Controls the focus state of this editor instance. This property
+ * is rarely used for normal API operations. It is mainly
+ * intended for developers adding UI elements to the editor interface.
+ * @name CKEDITOR.editor.prototype.focusManager
+ * @type CKEDITOR.focusManager
+ * @example
+ */
+ this.focusManager = new CKEDITOR.focusManager( this );
+
+ CKEDITOR.fire( 'instanceCreated', null, this );
+
+ this.on( 'mode', updateCommands, null, null, 1 );
+ this.on( 'readOnly', updateCommands, null, null, 1 );
+
+ initConfig( this, instanceConfig );
+ };
+})();
+
+CKEDITOR.tools.extend( CKEDITOR.editor.prototype,
+ /** @lends CKEDITOR.editor.prototype */
+ {
+ /**
+ * Adds a command definition to the editor instance. Commands added with
+ * this function can be executed later with the {@link #execCommand}
method.
+ * @param {String} commandName The indentifier name of the command.
+ * @param {CKEDITOR.commandDefinition} commandDefinition The command definition.
+ * @example
+ * editorInstance.addCommand( 'sample',
+ * {
+ * exec : function( editor )
+ * {
+ * alert( 'Executing a command for the editor name "' + editor.name + '"!' );
+ * }
+ * });
+ */
+ addCommand : function( commandName, commandDefinition )
+ {
+ return this._.commands[ commandName ] = new CKEDITOR.command( this, commandDefinition );
+ },
+
+ /**
+ * Adds a piece of CSS code to the editor which will be applied to the WYSIWYG editing document.
+ * This CSS would not be added to the output, and is there mainly for editor-specific editing requirements.
+ * Note: This function should be called before the editor is loaded to take effect.
+ * @param css {String} CSS text.
+ * @example
+ * editorInstance.addCss( 'body { background-color: grey; }' );
+ */
+ addCss : function( css )
+ {
+ this._.styles.push( css );
+ },
+
+ /**
+ * Destroys the editor instance, releasing all resources used by it.
+ * If the editor replaced an element, the element will be recovered.
+ * @param {Boolean} [noUpdate] If the instance is replacing a DOM
+ * element, this parameter indicates whether or not to update the
+ * element with the instance contents.
+ * @example
+ * alert( CKEDITOR.instances.editor1 ); // E.g "object"
+ * CKEDITOR.instances.editor1.destroy() ;
+ * alert( CKEDITOR.instances.editor1 ); // "undefined"
+ */
+ destroy : function( noUpdate )
+ {
+ if ( !noUpdate )
+ this.updateElement();
+
+ this.fire( 'destroy' );
+ this.theme && this.theme.destroy( this );
+
+ CKEDITOR.remove( this );
+ CKEDITOR.fire( 'instanceDestroyed', null, this );
+ },
+
+ /**
+ * Executes a command associated with the editor.
+ * @param {String} commandName The indentifier name of the command.
+ * @param {Object} [data] Data to be passed to the command.
+ * @returns {Boolean} true
if the command was executed
+ * successfully, otherwise false
.
+ * @see CKEDITOR.editor.addCommand
+ * @example
+ * editorInstance.execCommand( 'bold' );
+ */
+ execCommand : function( commandName, data )
+ {
+ var command = this.getCommand( commandName );
+
+ var eventData =
+ {
+ name: commandName,
+ commandData: data,
+ command: command
+ };
+
+ if ( command && command.state != CKEDITOR.TRISTATE_DISABLED )
+ {
+ if ( this.fire( 'beforeCommandExec', eventData ) !== true )
+ {
+ eventData.returnValue = command.exec( eventData.commandData );
+
+ // Fire the 'afterCommandExec' immediately if command is synchronous.
+ if ( !command.async && this.fire( 'afterCommandExec', eventData ) !== true )
+ return eventData.returnValue;
+ }
+ }
+
+ // throw 'Unknown command name "' + commandName + '"';
+ return false;
+ },
+
+ /**
+ * Gets one of the registered commands. Note that after registering a
+ * command definition with {@link #addCommand}
, it is
+ * transformed internally into an instance of
+ * {@link CKEDITOR.command}
, which will then be returned
+ * by this function.
+ * @param {String} commandName The name of the command to be returned.
+ * This is the same name that is used to register the command with
+ * addCommand
.
+ * @returns {CKEDITOR.command} The command object identified by the
+ * provided name.
+ */
+ getCommand : function( commandName )
+ {
+ return this._.commands[ commandName ];
+ },
+
+ /**
+ * Gets the editor data. The data will be in raw format. It is the same
+ * data that is posted by the editor.
+ * @type String
+ * @returns (String) The editor data.
+ * @example
+ * if ( CKEDITOR.instances.editor1.getData() == '' )
+ * alert( 'There is no data available' );
+ */
+ getData : function()
+ {
+ this.fire( 'beforeGetData' );
+
+ var eventData = this._.data;
+
+ if ( typeof eventData != 'string' )
+ {
+ var element = this.element;
+ if ( element && this.elementMode == CKEDITOR.ELEMENT_MODE_REPLACE )
+ eventData = element.is( 'textarea' ) ? element.getValue() : element.getHtml();
+ else
+ eventData = '';
+ }
+
+ eventData = { dataValue : eventData };
+
+ // Fire "getData" so data manipulation may happen.
+ this.fire( 'getData', eventData );
+
+ return eventData.dataValue;
+ },
+
+ /**
+ * Gets the "raw data" currently available in the editor. This is a
+ * fast method which returns the data as is, without processing, so it is
+ * not recommended to use it on resulting pages. Instead it can be used
+ * combined with the {@link #loadSnapshot}
method in order
+ * to be able to automatically save the editor data from time to time
+ * while the user is using the editor, to avoid data loss, without risking
+ * performance issues.
+ * @see CKEDITOR.editor.getData
+ * @example
+ * alert( editor.getSnapshot() );
+ */
+ getSnapshot : function()
+ {
+ var data = this.fire( 'getSnapshot' );
+
+ if ( typeof data != 'string' )
+ {
+ var element = this.element;
+ if ( element && this.elementMode == CKEDITOR.ELEMENT_MODE_REPLACE )
+ data = element.is( 'textarea' ) ? element.getValue() : element.getHtml();
+ }
+
+ return data;
+ },
+
+ /**
+ * Loads "raw data" into the editor. The data is loaded with processing
+ * straight to the editing area. It should not be used as a way to load
+ * any kind of data, but instead in combination with
+ * {@link #getSnapshot}
produced data.
+ * @see CKEDITOR.editor.setData
+ * @example
+ * var data = editor.getSnapshot();
+ * editor.loadSnapshot( data ) ;
+ */
+ loadSnapshot : function( snapshot )
+ {
+ this.fire( 'loadSnapshot', snapshot );
+ },
+
+ /**
+ * Sets the editor data. The data must be provided in the raw format (HTML).
+ *
+ * Note that this method is asynchronous. The callback
parameter must
+ * be used if interaction with the editor is needed after setting the data.
+ * @param {String} data HTML code to replace the curent content in the
+ * editor.
+ * @param {Function} callback Function to be called after the setData
+ * is completed.
+ *@param {Boolean} internal Whether to suppress any event firing when copying data
+ * internally inside the editor.
+ * @example
+ * CKEDITOR.instances.editor1.setData ( '<p>This is the editor data.</p>' );
+ * @example
+ * CKEDITOR.instances.editor1.setData ( '<p>Some other editor data.</p>', function()
+ * {
+ * this.checkDirty(); // true
+ * });
+ */
+ setData : function( data , callback, internal )
+ {
+ if( callback )
+ {
+ this.on( 'dataReady', function( evt )
+ {
+ evt.removeListener();
+ callback.call( evt.editor );
+ } );
+ }
+
+ // Fire "setData" so data manipulation may happen.
+ var eventData = { dataValue : data };
+ !internal && this.fire( 'setData', eventData );
+
+ this._.data = eventData.dataValue;
+
+ !internal && this.fire( 'afterSetData', eventData );
+ },
+
+ /**
+ * Puts or restores the editor into read-only state. When in read-only,
+ * the user is not able to change the editor contents, but can still use
+ * some editor features. This function sets the {@link CKEDITOR.config.readOnly}
+ * property of the editor, firing the {@link CKEDITOR.editor#readOnly}
event.
+ * Note: the current editing area will be reloaded.
+ * @param {Boolean} [isReadOnly] Indicates that the editor must go
+ * read-only (true
, default) or be restored and made editable
+ * (false
).
+ * @since 3.6
+ */
+ setReadOnly : function( isReadOnly )
+ {
+ isReadOnly = ( isReadOnly == undefined ) || isReadOnly;
+
+ if ( this.readOnly != isReadOnly )
+ {
+ this.readOnly = isReadOnly;
+
+ // Fire the readOnly event so the editor features can update
+ // their state accordingly.
+ this.fire( 'readOnly' );
+ }
+ },
+
+ /**
+ * Inserts HTML code into the currently selected position in the editor in WYSIWYG mode.
+ * @param {String} data HTML code to be inserted into the editor.
+ * @example
+ * CKEDITOR.instances.editor1.insertHtml( '<p>This is a new paragraph.</p>' ) ;
+ */
+ insertHtml : function( data )
+ {
+ this.fire( 'insertHtml', data );
+ },
+
+ /**
+ * Insert text content into the currently selected position in the
+ * editor in WYSIWYG mode. The styles of the selected element will be applied to the inserted text.
+ * Spaces around the text will be leaving untouched.
+ * Note: two subsequent line-breaks will introduce one paragraph. This depends on {@link CKEDITOR.config.enterMode}
;
+ * A single line-break will be instead translated into one <br />.
+ * @since 3.5
+ * @param {String} text Text to be inserted into the editor.
+ * @example
+ * CKEDITOR.instances.editor1.insertText( ' line1 \n\n line2' ) ;
+ */
+ insertText : function( text )
+ {
+ this.fire( 'insertText', text );
+ },
+
+ /**
+ * Inserts an element into the currently selected position in the
+ * editor in WYSIWYG mode.
+ * @param {CKEDITOR.dom.element} element The element to be inserted
+ * into the editor.
+ * @example
+ * var element = CKEDITOR.dom.element.createFromHtml( '<img src="hello.png" border="0" title="Hello" />' );
+ * CKEDITOR.instances.editor1.insertElement( element ) ;
+ */
+ insertElement : function( element )
+ {
+ this.fire( 'insertElement', element );
+ },
+
+ /**
+ * Checks whether the current editor contents contain changes when
+ * compared to the contents loaded into the editor at startup, or to
+ * the contents available in the editor when {@link #resetDirty}
+ * was called.
+ * @returns {Boolean} "true" is the contents contain changes.
+ * @example
+ * function beforeUnload( e )
+ * {
+ * if ( CKEDITOR.instances.editor1.checkDirty() )
+ * return e.returnValue = "You will lose the changes made in the editor.";
+ * }
+ *
+ * if ( window.addEventListener )
+ * window.addEventListener( 'beforeunload', beforeUnload, false );
+ * else
+ * window.attachEvent( 'onbeforeunload', beforeUnload );
+ */
+ checkDirty : function()
+ {
+ return ( this.mayBeDirty && this._.previousValue !== this.getSnapshot() );
+ },
+
+ /**
+ * Resets the "dirty state" of the editor so subsequent calls to
+ * {@link #checkDirty}
will return false
if the user will not
+ * have made further changes to the contents.
+ * @example
+ * alert( editor.checkDirty() ); // E.g. "true"
+ * editor.resetDirty() ;
+ * alert( editor.checkDirty() ); // "false"
+ */
+ resetDirty : function()
+ {
+ if ( this.mayBeDirty )
+ this._.previousValue = this.getSnapshot();
+ },
+
+ /**
+ * Updates the <textarea>
element that was replaced by the editor with
+ * the current data available in the editor.
+ * @see CKEDITOR.editor.element
+ * @example
+ * CKEDITOR.instances.editor1.updateElement();
+ * alert( document.getElementById( 'editor1' ).value ); // The current editor data.
+ */
+ updateElement : function()
+ {
+ var element = this.element;
+ if ( element && this.elementMode == CKEDITOR.ELEMENT_MODE_REPLACE )
+ {
+ var data = this.getData();
+
+ if ( this.config.htmlEncodeOutput )
+ data = CKEDITOR.tools.htmlEncode( data );
+
+ if ( element.is( 'textarea' ) )
+ element.setValue( data );
+ else
+ element.setHtml( data );
+ }
+ }
+ });
+
+CKEDITOR.on( 'loaded', function()
+ {
+ // Run the full initialization for pending editors.
+ var pending = CKEDITOR.editor._pending;
+ if ( pending )
+ {
+ delete CKEDITOR.editor._pending;
+
+ for ( var i = 0 ; i < pending.length ; i++ )
+ pending[ i ]._init();
+ }
+ });
+
+/**
+ * Whether to escape HTML when the editor updates the original input element.
+ * @name CKEDITOR.config.htmlEncodeOutput
+ * @since 3.1
+ * @type Boolean
+ * @default false
+ * @example
+ * config.htmlEncodeOutput = true;
+ */
+
+/**
+ * If true
, makes the editor start in read-only state. Otherwise, it will check
+ * if the linked <textarea>
element has the disabled
attribute.
+ * @name CKEDITOR.config.readOnly
+ * @see CKEDITOR.editor#setReadOnly
+ * @type Boolean
+ * @default false
+ * @since 3.6
+ * @example
+ * config.readOnly = true;
+ */
+
+/**
+ * Fired when a CKEDITOR instance is created, but still before initializing it.
+ * To interact with a fully initialized instance, use the
+ * {@link CKEDITOR#instanceReady}
event instead.
+ * @name CKEDITOR#instanceCreated
+ * @event
+ * @param {CKEDITOR.editor} editor The editor instance that has been created.
+ */
+
+/**
+ * Fired when a CKEDITOR instance is destroyed.
+ * @name CKEDITOR#instanceDestroyed
+ * @event
+ * @param {CKEDITOR.editor} editor The editor instance that has been destroyed.
+ */
+
+/**
+ * Fired when the language is loaded into the editor instance.
+ * @name CKEDITOR.editor#langLoaded
+ * @event
+ * @since 3.6.1
+ * @param {CKEDITOR.editor} editor This editor instance.
+ */
+
+/**
+ * Fired when all plugins are loaded and initialized into the editor instance.
+ * @name CKEDITOR.editor#pluginsLoaded
+ * @event
+ * @param {CKEDITOR.editor} editor This editor instance.
+ */
+
+/**
+ * Fired before the command execution when {@link #execCommand}
is called.
+ * @name CKEDITOR.editor#beforeCommandExec
+ * @event
+ * @param {CKEDITOR.editor} editor This editor instance.
+ * @param {String} data.name The command name.
+ * @param {Object} data.commandData The data to be sent to the command. This
+ * can be manipulated by the event listener.
+ * @param {CKEDITOR.command} data.command The command itself.
+ */
+
+/**
+ * Fired after the command execution when {@link #execCommand}
is called.
+ * @name CKEDITOR.editor#afterCommandExec
+ * @event
+ * @param {CKEDITOR.editor} editor This editor instance.
+ * @param {String} data.name The command name.
+ * @param {Object} data.commandData The data sent to the command.
+ * @param {CKEDITOR.command} data.command The command itself.
+ * @param {Object} data.returnValue The value returned by the command execution.
+ */
+
+/**
+ * Fired when the custom configuration file is loaded, before the final
+ * configurations initialization.
+ *
+ * Custom configuration files can be loaded thorugh the
+ * {@link CKEDITOR.config.customConfig}
setting. Several files can be loaded
+ * by changing this setting.
+ * @name CKEDITOR.editor#customConfigLoaded
+ * @event
+ * @param {CKEDITOR.editor} editor This editor instance.
+ */
+
+/**
+ * Fired once the editor configuration is ready (loaded and processed).
+ * @name CKEDITOR.editor#configLoaded
+ * @event
+ * @param {CKEDITOR.editor} editor This editor instance.
+ */
+
+/**
+ * Fired when this editor instance is destroyed. The editor at this
+ * point is not usable and this event should be used to perform the clean-up
+ * in any plugin.
+ * @name CKEDITOR.editor#destroy
+ * @event
+ */
+
+/**
+ * Internal event to get the current data.
+ * @name CKEDITOR.editor#beforeGetData
+ * @event
+ */
+
+/**
+ * Internal event to perform the #getSnapshot
call.
+ * @name CKEDITOR.editor#getSnapshot
+ * @event
+ */
+
+/**
+ * Internal event to perform the #loadSnapshot
call.
+ * @name CKEDITOR.editor#loadSnapshot
+ * @event
+ */
+
+/**
+ * Event fired before the #getData
call returns allowing additional manipulation.
+ * @name CKEDITOR.editor#getData
+ * @event
+ * @param {CKEDITOR.editor} editor This editor instance.
+ * @param {String} data.dataValue The data that will be returned.
+ */
+
+/**
+ * Event fired before the #setData
call is executed allowing additional manipulation.
+ * @name CKEDITOR.editor#setData
+ * @event
+ * @param {CKEDITOR.editor} editor This editor instance.
+ * @param {String} data.dataValue The data that will be used.
+ */
+
+/**
+ * Event fired at the end of the #setData
call execution. Usually it is better to use the
+ * {@link CKEDITOR.editor.prototype.dataReady}
event.
+ * @name CKEDITOR.editor#afterSetData
+ * @event
+ * @param {CKEDITOR.editor} editor This editor instance.
+ * @param {String} data.dataValue The data that has been set.
+ */
+
+/**
+ * Internal event to perform the #insertHtml
call
+ * @name CKEDITOR.editor#insertHtml
+ * @event
+ * @param {CKEDITOR.editor} editor This editor instance.
+ * @param {String} data The HTML to insert.
+ */
+
+/**
+ * Internal event to perform the #insertText
call
+ * @name CKEDITOR.editor#insertText
+ * @event
+ * @param {CKEDITOR.editor} editor This editor instance.
+ * @param {String} text The text to insert.
+ */
+
+/**
+ * Internal event to perform the #insertElement
call
+ * @name CKEDITOR.editor#insertElement
+ * @event
+ * @param {CKEDITOR.editor} editor This editor instance.
+ * @param {Object} element The element to insert.
+ */
+
+/**
+ * Event fired after the {@link CKEDITOR.editor#readOnly}
property changes.
+ * @name CKEDITOR.editor#readOnly
+ * @event
+ * @since 3.6
+ * @param {CKEDITOR.editor} editor This editor instance.
+ */
diff --git a/skins/ckeditor/_source/core/editor_basic.js b/skins/ckeditor/_source/core/editor_basic.js
new file mode 100644
index 0000000..8d109c8
--- /dev/null
+++ b/skins/ckeditor/_source/core/editor_basic.js
@@ -0,0 +1,186 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+if ( !CKEDITOR.editor )
+{
+ /**
+ * No element is linked to the editor instance.
+ * @constant
+ * @example
+ */
+ CKEDITOR.ELEMENT_MODE_NONE = 0;
+
+ /**
+ * The element is to be replaced by the editor instance.
+ * @constant
+ * @example
+ */
+ CKEDITOR.ELEMENT_MODE_REPLACE = 1;
+
+ /**
+ * The editor is to be created inside the element.
+ * @constant
+ * @example
+ */
+ CKEDITOR.ELEMENT_MODE_APPENDTO = 2;
+
+ /**
+ * Creates an editor class instance. This constructor should be rarely
+ * used, in favor of the {@link CKEDITOR} editor creation functions.
+ * @ class Represents an editor instance.
+ * @param {Object} instanceConfig Configuration values for this specific
+ * instance.
+ * @param {CKEDITOR.dom.element} [element] The element linked to this
+ * instance.
+ * @param {Number} [mode] The mode in which the element is linked to this
+ * instance. See {@link #elementMode}.
+ * @param {String} [data] Since 3.3. Initial value for the instance.
+ * @augments CKEDITOR.event
+ * @example
+ */
+ CKEDITOR.editor = function( instanceConfig, element, mode, data )
+ {
+ this._ =
+ {
+ // Save the config to be processed later by the full core code.
+ instanceConfig : instanceConfig,
+ element : element,
+ data : data
+ };
+
+ /**
+ * The mode in which the {@link #element} is linked to this editor
+ * instance. It can be any of the following values:
+ *
+ * {@link CKEDITOR.ELEMENT_MODE_NONE}: No element is linked to the
+ * editor instance.
+ * {@link CKEDITOR.ELEMENT_MODE_REPLACE}: The element is to be
+ * replaced by the editor instance.
+ * {@link CKEDITOR.ELEMENT_MODE_APPENDTO}: The editor is to be
+ * created inside the element.
+ *
+ * @name CKEDITOR.editor.prototype.elementMode
+ * @type Number
+ * @example
+ * var editor = CKEDITOR.replace( 'editor1' );
+ * alert( editor.elementMode ); "1"
+ */
+ this.elementMode = mode || CKEDITOR.ELEMENT_MODE_NONE;
+
+ // Call the CKEDITOR.event constructor to initialize this instance.
+ CKEDITOR.event.call( this );
+
+ this._init();
+ };
+
+ /**
+ * Replaces a <textarea> or a DOM element (DIV) with a CKEditor
+ * instance. For textareas, the initial value in the editor will be the
+ * textarea value. For DOM elements, their innerHTML will be used
+ * instead. We recommend using TEXTAREA and DIV elements only. Do not use
+ * this function directly. Use {@link CKEDITOR.replace} instead.
+ * @param {Object|String} elementOrIdOrName The DOM element (textarea), its
+ * ID or name.
+ * @param {Object} [config] The specific configurations to apply to this
+ * editor instance. Configurations set here will override global CKEditor
+ * settings.
+ * @returns {CKEDITOR.editor} The editor instance created.
+ * @example
+ */
+ CKEDITOR.editor.replace = function( elementOrIdOrName, config )
+ {
+ var element = elementOrIdOrName;
+
+ if ( typeof element != 'object' )
+ {
+ // Look for the element by id. We accept any kind of element here.
+ element = document.getElementById( elementOrIdOrName );
+
+ // Elements that should go into head are unacceptable (#6791).
+ if ( element && element.tagName.toLowerCase() in {style:1,script:1,base:1,link:1,meta:1,title:1} )
+ element = null;
+
+ // If not found, look for elements by name. In this case we accept only
+ // textareas.
+ if ( !element )
+ {
+ var i = 0,
+ textareasByName = document.getElementsByName( elementOrIdOrName );
+
+ while ( ( element = textareasByName[ i++ ] ) && element.tagName.toLowerCase() != 'textarea' )
+ { /*jsl:pass*/ }
+ }
+
+ if ( !element )
+ throw '[CKEDITOR.editor.replace] The element with id or name "' + elementOrIdOrName + '" was not found.';
+ }
+
+ // Do not replace the textarea right now, just hide it. The effective
+ // replacement will be done by the _init function.
+ element.style.visibility = 'hidden';
+
+ // Create the editor instance.
+ return new CKEDITOR.editor( config, element, CKEDITOR.ELEMENT_MODE_REPLACE );
+ };
+
+ /**
+ * Creates a new editor instance inside a specific DOM element. Do not use
+ * this function directly. Use {@link CKEDITOR.appendTo} instead.
+ * @param {Object|String} elementOrId The DOM element or its ID.
+ * @param {Object} [config] The specific configurations to apply to this
+ * editor instance. Configurations set here will override global CKEditor
+ * settings.
+ * @param {String} [data] Since 3.3. Initial value for the instance.
+ * @returns {CKEDITOR.editor} The editor instance created.
+ * @example
+ */
+ CKEDITOR.editor.appendTo = function( elementOrId, config, data )
+ {
+ var element = elementOrId;
+ if ( typeof element != 'object' )
+ {
+ element = document.getElementById( elementOrId );
+
+ if ( !element )
+ throw '[CKEDITOR.editor.appendTo] The element with id "' + elementOrId + '" was not found.';
+ }
+
+ // Create the editor instance.
+ return new CKEDITOR.editor( config, element, CKEDITOR.ELEMENT_MODE_APPENDTO, data );
+ };
+
+ CKEDITOR.editor.prototype =
+ {
+ /**
+ * Initializes the editor instance. This function will be overriden by the
+ * full CKEDITOR.editor implementation (editor.js).
+ * @private
+ */
+ _init : function()
+ {
+ var pending = CKEDITOR.editor._pending || ( CKEDITOR.editor._pending = [] );
+ pending.push( this );
+ },
+
+ // Both fire and fireOnce will always pass this editor instance as the
+ // "editor" param in CKEDITOR.event.fire. So, we override it to do that
+ // automaticaly.
+
+ /** @ignore */
+ fire : function( eventName, data )
+ {
+ return CKEDITOR.event.prototype.fire.call( this, eventName, data, this );
+ },
+
+ /** @ignore */
+ fireOnce : function( eventName, data )
+ {
+ return CKEDITOR.event.prototype.fireOnce.call( this, eventName, data, this );
+ }
+ };
+
+ // "Inherit" (copy actually) from CKEDITOR.event.
+ CKEDITOR.event.implementOn( CKEDITOR.editor.prototype, true );
+}
diff --git a/skins/ckeditor/_source/core/env.js b/skins/ckeditor/_source/core/env.js
new file mode 100644
index 0000000..9b73aea
--- /dev/null
+++ b/skins/ckeditor/_source/core/env.js
@@ -0,0 +1,291 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.env} object, which constains
+ * environment and browser information.
+ */
+
+if ( !CKEDITOR.env )
+{
+ /**
+ * @namespace Environment and browser information.
+ */
+ CKEDITOR.env = (function()
+ {
+ var agent = navigator.userAgent.toLowerCase();
+ var opera = window.opera;
+
+ var env =
+ /** @lends CKEDITOR.env */
+ {
+ /**
+ * Indicates that CKEditor is running on Internet Explorer.
+ * @type Boolean
+ * @example
+ * if ( CKEDITOR.env.ie )
+ * alert( "I'm on IE!" );
+ */
+ ie : /*@cc_on!@*/false,
+
+ /**
+ * Indicates that CKEditor is running on Opera.
+ * @type Boolean
+ * @example
+ * if ( CKEDITOR.env.opera )
+ * alert( "I'm on Opera!" );
+ */
+ opera : ( !!opera && opera.version ),
+
+ /**
+ * Indicates that CKEditor is running on a WebKit based browser, like
+ * Safari.
+ * @type Boolean
+ * @example
+ * if ( CKEDITOR.env.webkit )
+ * alert( "I'm on WebKit!" );
+ */
+ webkit : ( agent.indexOf( ' applewebkit/' ) > -1 ),
+
+ /**
+ * Indicates that CKEditor is running on Adobe AIR.
+ * @type Boolean
+ * @example
+ * if ( CKEDITOR.env.air )
+ * alert( "I'm on AIR!" );
+ */
+ air : ( agent.indexOf( ' adobeair/' ) > -1 ),
+
+ /**
+ * Indicates that CKEditor is running on Macintosh.
+ * @type Boolean
+ * @example
+ * if ( CKEDITOR.env.mac )
+ * alert( "I love apples!" );
+ */
+ mac : ( agent.indexOf( 'macintosh' ) > -1 ),
+
+ /**
+ * Indicates that CKEditor is running on a quirks mode environemnt.
+ * @type Boolean
+ * @example
+ * if ( CKEDITOR.env.quirks )
+ * alert( "Nooooo!" );
+ */
+ quirks : ( document.compatMode == 'BackCompat' ),
+
+ /**
+ * Indicates that CKEditor is running on a mobile like environemnt.
+ * @type Boolean
+ * @example
+ * if ( CKEDITOR.env.mobile )
+ * alert( "I'm running with CKEditor today!" );
+ */
+ mobile : ( agent.indexOf( 'mobile' ) > -1 ),
+
+ /**
+ * Indicates that the browser has a custom domain enabled. This has
+ * been set with "document.domain".
+ * @returns {Boolean} "true" if a custom domain is enabled.
+ * @example
+ * if ( CKEDITOR.env.isCustomDomain() )
+ * alert( "I'm in a custom domain!" );
+ */
+ isCustomDomain : function()
+ {
+ if ( !this.ie )
+ return false;
+
+ var domain = document.domain,
+ hostname = window.location.hostname;
+
+ return domain != hostname &&
+ domain != ( '[' + hostname + ']' ); // IPv6 IP support (#5434)
+ },
+
+ /**
+ * Indicates that page is running under an encrypted connection.
+ * @returns {Boolean} "true" if the page has an encrypted connection.
+ * @example
+ * if ( CKEDITOR.env.secure )
+ * alert( "I'm in SSL!" );
+ */
+ secure : location.protocol == 'https:'
+ };
+
+ /**
+ * Indicates that CKEditor is running on a Gecko based browser, like
+ * Firefox.
+ * @name CKEDITOR.env.gecko
+ * @type Boolean
+ * @example
+ * if ( CKEDITOR.env.gecko )
+ * alert( "I'm riding a gecko!" );
+ */
+ env.gecko = ( navigator.product == 'Gecko' && !env.webkit && !env.opera );
+
+ var version = 0;
+
+ // Internet Explorer 6.0+
+ if ( env.ie )
+ {
+ version = parseFloat( agent.match( /msie (\d+)/ )[1] );
+
+ /**
+ * Indicates that CKEditor is running on Internet Explorer 8.
+ * @name CKEDITOR.env.ie8
+ * @type Boolean
+ * @example
+ * if ( CKEDITOR.env.ie8 )
+ * alert( "I'm on IE8!" );
+ */
+ env.ie8 = !!document.documentMode;
+
+ /**
+ * Indicates that CKEditor is running on Internet Explorer 8 on
+ * standards mode.
+ * @name CKEDITOR.env.ie8Compat
+ * @type Boolean
+ * @example
+ * if ( CKEDITOR.env.ie8Compat )
+ * alert( "Now I'm on IE8, for real!" );
+ */
+ env.ie8Compat = document.documentMode == 8;
+
+ /**
+ * Indicates that CKEditor is running on Internet Explorer 9's standards mode.
+ * @name CKEDITOR.env.ie9Compat
+ * @type Boolean
+ * @example
+ * if ( CKEDITOR.env.ie9Compat )
+ * alert( "IE9, the beauty of the web!" );
+ */
+ env.ie9Compat = document.documentMode == 9;
+
+ /**
+ * Indicates that CKEditor is running on an IE7-like environment, which
+ * includes IE7 itself and IE8's IE7 document mode.
+ * @name CKEDITOR.env.ie7Compat
+ * @type Boolean
+ * @example
+ * if ( CKEDITOR.env.ie8Compat )
+ * alert( "I'm on IE7 or on an IE7 like IE8!" );
+ */
+ env.ie7Compat = ( ( version == 7 && !document.documentMode )
+ || document.documentMode == 7 );
+
+ /**
+ * Indicates that CKEditor is running on an IE6-like environment, which
+ * includes IE6 itself and IE7 and IE8 quirks mode.
+ * @name CKEDITOR.env.ie6Compat
+ * @type Boolean
+ * @example
+ * if ( CKEDITOR.env.ie6Compat )
+ * alert( "I'm on IE6 or quirks mode!" );
+ */
+ env.ie6Compat = ( version < 7 || env.quirks );
+ }
+
+ // Gecko.
+ if ( env.gecko )
+ {
+ var geckoRelease = agent.match( /rv:([\d\.]+)/ );
+ if ( geckoRelease )
+ {
+ geckoRelease = geckoRelease[1].split( '.' );
+ version = geckoRelease[0] * 10000 + ( geckoRelease[1] || 0 ) * 100 + ( geckoRelease[2] || 0 ) * 1;
+ }
+ }
+
+ // Opera 9.50+
+ if ( env.opera )
+ version = parseFloat( opera.version() );
+
+ // Adobe AIR 1.0+
+ // Checked before Safari because AIR have the WebKit rich text editor
+ // features from Safari 3.0.4, but the version reported is 420.
+ if ( env.air )
+ version = parseFloat( agent.match( / adobeair\/(\d+)/ )[1] );
+
+ // WebKit 522+ (Safari 3+)
+ if ( env.webkit )
+ version = parseFloat( agent.match( / applewebkit\/(\d+)/ )[1] );
+
+ /**
+ * Contains the browser version.
+ *
+ * For gecko based browsers (like Firefox) it contains the revision
+ * number with first three parts concatenated with a padding zero
+ * (e.g. for revision 1.9.0.2 we have 10900).
+ *
+ * For webkit based browser (like Safari and Chrome) it contains the
+ * WebKit build version (e.g. 522).
+ * @name CKEDITOR.env.version
+ * @type Boolean
+ * @example
+ * if ( CKEDITOR.env.ie && CKEDITOR.env.version <= 6 )
+ * alert( "Ouch!" );
+ */
+ env.version = version;
+
+ /**
+ * Indicates that CKEditor is running on a compatible browser.
+ * @name CKEDITOR.env.isCompatible
+ * @type Boolean
+ * @example
+ * if ( CKEDITOR.env.isCompatible )
+ * alert( "Your browser is pretty cool!" );
+ */
+ env.isCompatible =
+ !env.mobile && (
+ ( env.ie && version >= 6 ) ||
+ ( env.gecko && version >= 10801 ) ||
+ ( env.opera && version >= 9.5 ) ||
+ ( env.air && version >= 1 ) ||
+ ( env.webkit && version >= 522 ) ||
+ false );
+
+ /**
+ * The CSS class to be appended on the main UI containers, making it
+ * easy to apply browser specific styles to it.
+ * @name CKEDITOR.env.cssClass
+ * @type String
+ * @example
+ * myDiv.className = CKEDITOR.env.cssClass;
+ */
+ env.cssClass =
+ 'cke_browser_' + (
+ env.ie ? 'ie' :
+ env.gecko ? 'gecko' :
+ env.opera ? 'opera' :
+ env.webkit ? 'webkit' :
+ 'unknown' );
+
+ if ( env.quirks )
+ env.cssClass += ' cke_browser_quirks';
+
+ if ( env.ie )
+ {
+ env.cssClass += ' cke_browser_ie' + (
+ env.version < 7 ? '6' :
+ env.version >= 8 ? document.documentMode:
+ '7' );
+
+ if ( env.quirks )
+ env.cssClass += ' cke_browser_iequirks';
+ }
+
+ if ( env.gecko && version < 10900 )
+ env.cssClass += ' cke_browser_gecko18';
+
+ if ( env.air )
+ env.cssClass += ' cke_browser_air';
+
+ return env;
+ })();
+}
+
+// PACKAGER_RENAME( CKEDITOR.env )
+// PACKAGER_RENAME( CKEDITOR.env.ie )
diff --git a/skins/ckeditor/_source/core/event.js b/skins/ckeditor/_source/core/event.js
new file mode 100644
index 0000000..fa19060
--- /dev/null
+++ b/skins/ckeditor/_source/core/event.js
@@ -0,0 +1,342 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.event} class, which serves as the
+ * base for classes and objects that require event handling features.
+ */
+
+if ( !CKEDITOR.event )
+{
+ /**
+ * Creates an event class instance. This constructor is rearely used, being
+ * the {@link #.implementOn} function used in class prototypes directly
+ * instead.
+ * @class This is a base class for classes and objects that require event
+ * handling features.
+ *
+ * Do not confuse this class with {@link CKEDITOR.dom.event} which is
+ * instead used for DOM events. The CKEDITOR.event class implements the
+ * internal event system used by the CKEditor to fire API related events.
+ * @example
+ */
+ CKEDITOR.event = function()
+ {};
+
+ /**
+ * Implements the {@link CKEDITOR.event} features in an object.
+ * @param {Object} targetObject The object into which implement the features.
+ * @example
+ * var myObject = { message : 'Example' };
+ * CKEDITOR.event.implementOn( myObject } ;
+ * myObject.on( 'testEvent', function()
+ * {
+ * alert( this.message ); // "Example"
+ * });
+ * myObject.fire( 'testEvent' );
+ */
+ CKEDITOR.event.implementOn = function( targetObject )
+ {
+ var eventProto = CKEDITOR.event.prototype;
+
+ for ( var prop in eventProto )
+ {
+ if ( targetObject[ prop ] == undefined )
+ targetObject[ prop ] = eventProto[ prop ];
+ }
+ };
+
+ CKEDITOR.event.prototype = (function()
+ {
+ // Returns the private events object for a given object.
+ var getPrivate = function( obj )
+ {
+ var _ = ( obj.getPrivate && obj.getPrivate() ) || obj._ || ( obj._ = {} );
+ return _.events || ( _.events = {} );
+ };
+
+ var eventEntry = function( eventName )
+ {
+ this.name = eventName;
+ this.listeners = [];
+ };
+
+ eventEntry.prototype =
+ {
+ // Get the listener index for a specified function.
+ // Returns -1 if not found.
+ getListenerIndex : function( listenerFunction )
+ {
+ for ( var i = 0, listeners = this.listeners ; i < listeners.length ; i++ )
+ {
+ if ( listeners[i].fn == listenerFunction )
+ return i;
+ }
+ return -1;
+ }
+ };
+
+ return /** @lends CKEDITOR.event.prototype */ {
+ /**
+ * Registers a listener to a specific event in the current object.
+ * @param {String} eventName The event name to which listen.
+ * @param {Function} listenerFunction The function listening to the
+ * event. A single {@link CKEDITOR.eventInfo} object instanced
+ * is passed to this function containing all the event data.
+ * @param {Object} [scopeObj] The object used to scope the listener
+ * call (the this object. If omitted, the current object is used.
+ * @param {Object} [listenerData] Data to be sent as the
+ * {@link CKEDITOR.eventInfo#listenerData} when calling the
+ * listener.
+ * @param {Number} [priority] The listener priority. Lower priority
+ * listeners are called first. Listeners with the same priority
+ * value are called in registration order. Defaults to 10.
+ * @example
+ * someObject.on( 'someEvent', function()
+ * {
+ * alert( this == someObject ); // "true"
+ * });
+ * @example
+ * someObject.on( 'someEvent', function()
+ * {
+ * alert( this == anotherObject ); // "true"
+ * }
+ * , anotherObject );
+ * @example
+ * someObject.on( 'someEvent', function( event )
+ * {
+ * alert( event.listenerData ); // "Example"
+ * }
+ * , null, 'Example' );
+ * @example
+ * someObject.on( 'someEvent', function() { ... } ); // 2nd called
+ * someObject.on( 'someEvent', function() { ... }, null, null, 100 ); // 3rd called
+ * someObject.on( 'someEvent', function() { ... }, null, null, 1 ); // 1st called
+ */
+ on : function( eventName, listenerFunction, scopeObj, listenerData, priority )
+ {
+ // Get the event entry (create it if needed).
+ var events = getPrivate( this ),
+ event = events[ eventName ] || ( events[ eventName ] = new eventEntry( eventName ) );
+
+ if ( event.getListenerIndex( listenerFunction ) < 0 )
+ {
+ // Get the listeners.
+ var listeners = event.listeners;
+
+ // Fill the scope.
+ if ( !scopeObj )
+ scopeObj = this;
+
+ // Default the priority, if needed.
+ if ( isNaN( priority ) )
+ priority = 10;
+
+ var me = this;
+
+ // Create the function to be fired for this listener.
+ var listenerFirer = function( editor, publisherData, stopFn, cancelFn )
+ {
+ var ev =
+ {
+ name : eventName,
+ sender : this,
+ editor : editor,
+ data : publisherData,
+ listenerData : listenerData,
+ stop : stopFn,
+ cancel : cancelFn,
+ removeListener : function()
+ {
+ me.removeListener( eventName, listenerFunction );
+ }
+ };
+
+ listenerFunction.call( scopeObj, ev );
+
+ return ev.data;
+ };
+ listenerFirer.fn = listenerFunction;
+ listenerFirer.priority = priority;
+
+ // Search for the right position for this new listener, based on its
+ // priority.
+ for ( var i = listeners.length - 1 ; i >= 0 ; i-- )
+ {
+ // Find the item which should be before the new one.
+ if ( listeners[ i ].priority <= priority )
+ {
+ // Insert the listener in the array.
+ listeners.splice( i + 1, 0, listenerFirer );
+ return;
+ }
+ }
+
+ // If no position has been found (or zero length), put it in
+ // the front of list.
+ listeners.unshift( listenerFirer );
+ }
+ },
+
+ /**
+ * Fires an specific event in the object. All registered listeners are
+ * called at this point.
+ * @function
+ * @param {String} eventName The event name to fire.
+ * @param {Object} [data] Data to be sent as the
+ * {@link CKEDITOR.eventInfo#data} when calling the
+ * listeners.
+ * @param {CKEDITOR.editor} [editor] The editor instance to send as the
+ * {@link CKEDITOR.eventInfo#editor} when calling the
+ * listener.
+ * @returns {Boolean|Object} A booloan indicating that the event is to be
+ * canceled, or data returned by one of the listeners.
+ * @example
+ * someObject.on( 'someEvent', function() { ... } );
+ * someObject.on( 'someEvent', function() { ... } );
+ * someObject.fire( 'someEvent' ) ; // both listeners are called
+ * @example
+ * someObject.on( 'someEvent', function( event )
+ * {
+ * alert( event.data ); // "Example"
+ * });
+ * someObject.fire( 'someEvent', 'Example' ) ;
+ */
+ fire : (function()
+ {
+ // Create the function that marks the event as stopped.
+ var stopped = false;
+ var stopEvent = function()
+ {
+ stopped = true;
+ };
+
+ // Create the function that marks the event as canceled.
+ var canceled = false;
+ var cancelEvent = function()
+ {
+ canceled = true;
+ };
+
+ return function( eventName, data, editor )
+ {
+ // Get the event entry.
+ var event = getPrivate( this )[ eventName ];
+
+ // Save the previous stopped and cancelled states. We may
+ // be nesting fire() calls.
+ var previousStopped = stopped,
+ previousCancelled = canceled;
+
+ // Reset the stopped and canceled flags.
+ stopped = canceled = false;
+
+ if ( event )
+ {
+ var listeners = event.listeners;
+
+ if ( listeners.length )
+ {
+ // As some listeners may remove themselves from the
+ // event, the original array length is dinamic. So,
+ // let's make a copy of all listeners, so we are
+ // sure we'll call all of them.
+ listeners = listeners.slice( 0 );
+
+ // Loop through all listeners.
+ for ( var i = 0 ; i < listeners.length ; i++ )
+ {
+ // Call the listener, passing the event data.
+ var retData = listeners[i].call( this, editor, data, stopEvent, cancelEvent );
+
+ if ( typeof retData != 'undefined' )
+ data = retData;
+
+ // No further calls is stopped or canceled.
+ if ( stopped || canceled )
+ break;
+ }
+ }
+ }
+
+ var ret = canceled || ( typeof data == 'undefined' ? false : data );
+
+ // Restore the previous stopped and canceled states.
+ stopped = previousStopped;
+ canceled = previousCancelled;
+
+ return ret;
+ };
+ })(),
+
+ /**
+ * Fires an specific event in the object, releasing all listeners
+ * registered to that event. The same listeners are not called again on
+ * successive calls of it or of {@link #fire}.
+ * @param {String} eventName The event name to fire.
+ * @param {Object} [data] Data to be sent as the
+ * {@link CKEDITOR.eventInfo#data} when calling the
+ * listeners.
+ * @param {CKEDITOR.editor} [editor] The editor instance to send as the
+ * {@link CKEDITOR.eventInfo#editor} when calling the
+ * listener.
+ * @returns {Boolean|Object} A booloan indicating that the event is to be
+ * canceled, or data returned by one of the listeners.
+ * @example
+ * someObject.on( 'someEvent', function() { ... } );
+ * someObject.fire( 'someEvent' ); // above listener called
+ * someObject.fireOnce( 'someEvent' ) ; // above listener called
+ * someObject.fire( 'someEvent' ); // no listeners called
+ */
+ fireOnce : function( eventName, data, editor )
+ {
+ var ret = this.fire( eventName, data, editor );
+ delete getPrivate( this )[ eventName ];
+ return ret;
+ },
+
+ /**
+ * Unregisters a listener function from being called at the specified
+ * event. No errors are thrown if the listener has not been
+ * registered previously.
+ * @param {String} eventName The event name.
+ * @param {Function} listenerFunction The listener function to unregister.
+ * @example
+ * var myListener = function() { ... };
+ * someObject.on( 'someEvent', myListener );
+ * someObject.fire( 'someEvent' ); // myListener called
+ * someObject.removeListener( 'someEvent', myListener ) ;
+ * someObject.fire( 'someEvent' ); // myListener not called
+ */
+ removeListener : function( eventName, listenerFunction )
+ {
+ // Get the event entry.
+ var event = getPrivate( this )[ eventName ];
+
+ if ( event )
+ {
+ var index = event.getListenerIndex( listenerFunction );
+ if ( index >= 0 )
+ event.listeners.splice( index, 1 );
+ }
+ },
+
+ /**
+ * Checks if there is any listener registered to a given event.
+ * @param {String} eventName The event name.
+ * @example
+ * var myListener = function() { ... };
+ * someObject.on( 'someEvent', myListener );
+ * alert( someObject.hasListeners( 'someEvent' ) ); // "true"
+ * alert( someObject.hasListeners( 'noEvent' ) ); // "false"
+ */
+ hasListeners : function( eventName )
+ {
+ var event = getPrivate( this )[ eventName ];
+ return ( event && event.listeners.length > 0 ) ;
+ }
+ };
+ })();
+}
diff --git a/skins/ckeditor/_source/core/eventInfo.js b/skins/ckeditor/_source/core/eventInfo.js
new file mode 100644
index 0000000..0f313e8
--- /dev/null
+++ b/skins/ckeditor/_source/core/eventInfo.js
@@ -0,0 +1,120 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the "virtual" {@link CKEDITOR.eventInfo} class, which
+ * contains the defintions of the event object passed to event listeners.
+ * This file is for documentation purposes only.
+ */
+
+/**
+ * (Virtual Class) Do not call this constructor. This class is not really part
+ * of the API.
+ * @class Virtual class that illustrates the features of the event object to be
+ * passed to event listeners by a {@link CKEDITOR.event} based object.
+ * @name CKEDITOR.eventInfo
+ * @example
+ * // Do not do this.
+ * var myEvent = new CKEDITOR.eventInfo(); // Error: CKEDITOR.eventInfo is undefined
+ */
+
+/**
+ * The event name.
+ * @name CKEDITOR.eventInfo.prototype.name
+ * @field
+ * @type String
+ * @example
+ * someObject.on( 'someEvent', function( event )
+ * {
+ * alert( event.name ); // "someEvent"
+ * });
+ * someObject.fire( 'someEvent' );
+ */
+
+/**
+ * The object that publishes (sends) the event.
+ * @name CKEDITOR.eventInfo.prototype.sender
+ * @field
+ * @type Object
+ * @example
+ * someObject.on( 'someEvent', function( event )
+ * {
+ * alert( event.sender == someObject ); // "true"
+ * });
+ * someObject.fire( 'someEvent' );
+ */
+
+/**
+ * The editor instance that holds the sender. May be the same as sender. May be
+ * null if the sender is not part of an editor instance, like a component
+ * running in standalone mode.
+ * @name CKEDITOR.eventInfo.prototype.editor
+ * @field
+ * @type CKEDITOR.editor
+ * @example
+ * myButton.on( 'someEvent', function( event )
+ * {
+ * alert( event.editor == myEditor ); // "true"
+ * });
+ * myButton.fire( 'someEvent', null, myEditor );
+ */
+
+/**
+ * Any kind of additional data. Its format and usage is event dependent.
+ * @name CKEDITOR.eventInfo.prototype.data
+ * @field
+ * @type Object
+ * @example
+ * someObject.on( 'someEvent', function( event )
+ * {
+ * alert( event.data ); // "Example"
+ * });
+ * someObject.fire( 'someEvent', 'Example' );
+ */
+
+/**
+ * Any extra data appended during the listener registration.
+ * @name CKEDITOR.eventInfo.prototype.listenerData
+ * @field
+ * @type Object
+ * @example
+ * someObject.on( 'someEvent', function( event )
+ * {
+ * alert( event.listenerData ); // "Example"
+ * }
+ * , null, 'Example' );
+ */
+
+/**
+ * Indicates that no further listeners are to be called.
+ * @name CKEDITOR.eventInfo.prototype.stop
+ * @function
+ * @example
+ * someObject.on( 'someEvent', function( event )
+ * {
+ * event.stop() ;
+ * });
+ * someObject.on( 'someEvent', function( event )
+ * {
+ * // This one will not be called.
+ * });
+ * alert( someObject.fire( 'someEvent' ) ); // "false"
+ */
+
+/**
+ * Indicates that the event is to be cancelled (if cancelable).
+ * @name CKEDITOR.eventInfo.prototype.cancel
+ * @function
+ * @example
+ * someObject.on( 'someEvent', function( event )
+ * {
+ * event.cancel() ;
+ * });
+ * someObject.on( 'someEvent', function( event )
+ * {
+ * // This one will not be called.
+ * });
+ * alert( someObject.fire( 'someEvent' ) ); // "true"
+ */
diff --git a/skins/ckeditor/_source/core/focusmanager.js b/skins/ckeditor/_source/core/focusmanager.js
new file mode 100644
index 0000000..e59900d
--- /dev/null
+++ b/skins/ckeditor/_source/core/focusmanager.js
@@ -0,0 +1,152 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.focusManager} class, which is used
+ * to handle the focus on editor instances..
+ */
+
+/**
+ * Creates a focusManager class instance.
+ * @class Manages the focus activity in an editor instance. This class is to be
+ * used mainly by UI elements coders when adding interface elements that need
+ * to set the focus state of the editor.
+ * @param {CKEDITOR.editor} editor The editor instance.
+ * @example
+ * var focusManager = new CKEDITOR.focusManager( editor ) ;
+ * focusManager.focus();
+ */
+CKEDITOR.focusManager = function( editor )
+{
+ if ( editor.focusManager )
+ return editor.focusManager;
+
+ /**
+ * Indicates that the editor instance has focus.
+ * @type Boolean
+ * @example
+ * alert( CKEDITOR.instances.editor1.focusManager.hasFocus ); // e.g "true"
+ */
+ this.hasFocus = false;
+
+ /**
+ * Object used to hold private stuff.
+ * @private
+ */
+ this._ =
+ {
+ editor : editor
+ };
+
+ return this;
+};
+
+CKEDITOR.focusManager.prototype =
+{
+ /**
+ * Used to indicate that the editor instance has the focus.
+ *
+ * Note that this function will not explicitelly set the focus in the
+ * editor (for example, making the caret blinking on it). Use
+ * {@link CKEDITOR.editor#focus} for it instead.
+ * @example
+ * var editor = CKEDITOR.instances.editor1;
+ * editor.focusManager.focus() ;
+ */
+ focus : function()
+ {
+ if ( this._.timer )
+ clearTimeout( this._.timer );
+
+ if ( !this.hasFocus )
+ {
+ // If another editor has the current focus, we first "blur" it. In
+ // this way the events happen in a more logical sequence, like:
+ // "focus 1" > "blur 1" > "focus 2"
+ // ... instead of:
+ // "focus 1" > "focus 2" > "blur 1"
+ if ( CKEDITOR.currentInstance )
+ CKEDITOR.currentInstance.focusManager.forceBlur();
+
+ var editor = this._.editor;
+
+ editor.container.getChild( 1 ).addClass( 'cke_focus' );
+
+ this.hasFocus = true;
+ editor.fire( 'focus' );
+ }
+ },
+
+ /**
+ * Used to indicate that the editor instance has lost the focus.
+ *
+ * Note that this functions acts asynchronously with a delay of 100ms to
+ * avoid subsequent blur/focus effects. If you want the "blur" to happen
+ * immediately, use the {@link #forceBlur} function instead.
+ * @example
+ * var editor = CKEDITOR.instances.editor1;
+ * editor.focusManager.blur() ;
+ */
+ blur : function()
+ {
+ var focusManager = this;
+
+ if ( focusManager._.timer )
+ clearTimeout( focusManager._.timer );
+
+ focusManager._.timer = setTimeout(
+ function()
+ {
+ delete focusManager._.timer;
+ focusManager.forceBlur();
+ }
+ , 100 );
+ },
+
+ /**
+ * Used to indicate that the editor instance has lost the focus. Unlike
+ * {@link #blur}, this function is synchronous, marking the instance as
+ * "blured" immediately.
+ * @example
+ * var editor = CKEDITOR.instances.editor1;
+ * editor.focusManager.forceBlur() ;
+ */
+ forceBlur : function()
+ {
+ if ( this.hasFocus )
+ {
+ var editor = this._.editor;
+
+ editor.container.getChild( 1 ).removeClass( 'cke_focus' );
+
+ this.hasFocus = false;
+ editor.fire( 'blur' );
+ }
+ }
+};
+
+/**
+ * Fired when the editor instance receives the input focus.
+ * @name CKEDITOR.editor#focus
+ * @event
+ * @param {CKEDITOR.editor} editor The editor instance.
+ * @example
+ * editor.on( 'focus', function( e )
+ * {
+ * alert( 'The editor named ' + e.editor.name + ' is now focused' );
+ * });
+ */
+
+/**
+ * Fired when the editor instance loses the input focus.
+ * @name CKEDITOR.editor#blur
+ * @event
+ * @param {CKEDITOR.editor} editor The editor instance.
+ * @example
+ * editor.on( 'blur', function( e )
+ * {
+ * alert( 'The editor named ' + e.editor.name + ' lost the focus' );
+ * });
+ */
diff --git a/skins/ckeditor/_source/core/htmlparser.js b/skins/ckeditor/_source/core/htmlparser.js
new file mode 100644
index 0000000..45808e3
--- /dev/null
+++ b/skins/ckeditor/_source/core/htmlparser.js
@@ -0,0 +1,224 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * Creates a {@link CKEDITOR.htmlParser} class instance.
+ * @class Provides an "event like" system to parse strings of HTML data.
+ * @example
+ * var parser = new CKEDITOR.htmlParser();
+ * parser.onTagOpen = function( tagName, attributes, selfClosing )
+ * {
+ * alert( tagName );
+ * };
+ * parser.parse( '<p>Some <b>text</b>.</p>' );
+ */
+CKEDITOR.htmlParser = function()
+{
+ this._ =
+ {
+ htmlPartsRegex : new RegExp( '<(?:(?:\\/([^>]+)>)|(?:!--([\\S|\\s]*?)-->)|(?:([^\\s>]+)\\s*((?:(?:"[^"]*")|(?:\'[^\']*\')|[^"\'>])*)\\/?>))', 'g' )
+ };
+};
+
+(function()
+{
+ var attribsRegex = /([\w\-:.]+)(?:(?:\s*=\s*(?:(?:"([^"]*)")|(?:'([^']*)')|([^\s>]+)))|(?=\s|$))/g,
+ emptyAttribs = {checked:1,compact:1,declare:1,defer:1,disabled:1,ismap:1,multiple:1,nohref:1,noresize:1,noshade:1,nowrap:1,readonly:1,selected:1};
+
+ CKEDITOR.htmlParser.prototype =
+ {
+ /**
+ * Function to be fired when a tag opener is found. This function
+ * should be overriden when using this class.
+ * @param {String} tagName The tag name. The name is guarantted to be
+ * lowercased.
+ * @param {Object} attributes An object containing all tag attributes. Each
+ * property in this object represent and attribute name and its
+ * value is the attribute value.
+ * @param {Boolean} selfClosing true if the tag closes itself, false if the
+ * tag doesn't.
+ * @example
+ * var parser = new CKEDITOR.htmlParser();
+ * parser.onTagOpen = function( tagName, attributes, selfClosing )
+ * {
+ * alert( tagName ); // e.g. "b"
+ * });
+ * parser.parse( "<!-- Example --><b>Hello</b>" );
+ */
+ onTagOpen : function() {},
+
+ /**
+ * Function to be fired when a tag closer is found. This function
+ * should be overriden when using this class.
+ * @param {String} tagName The tag name. The name is guarantted to be
+ * lowercased.
+ * @example
+ * var parser = new CKEDITOR.htmlParser();
+ * parser.onTagClose = function( tagName )
+ * {
+ * alert( tagName ); // e.g. "b"
+ * });
+ * parser.parse( "<!-- Example --><b>Hello</b>" );
+ */
+ onTagClose : function() {},
+
+ /**
+ * Function to be fired when text is found. This function
+ * should be overriden when using this class.
+ * @param {String} text The text found.
+ * @example
+ * var parser = new CKEDITOR.htmlParser();
+ * parser.onText = function( text )
+ * {
+ * alert( text ); // e.g. "Hello"
+ * });
+ * parser.parse( "<!-- Example --><b>Hello</b>" );
+ */
+ onText : function() {},
+
+ /**
+ * Function to be fired when CDATA section is found. This function
+ * should be overriden when using this class.
+ * @param {String} cdata The CDATA been found.
+ * @example
+ * var parser = new CKEDITOR.htmlParser();
+ * parser.onCDATA = function( cdata )
+ * {
+ * alert( cdata ); // e.g. "var hello;"
+ * });
+ * parser.parse( "<script>var hello;</script>" );
+ */
+ onCDATA : function() {},
+
+ /**
+ * Function to be fired when a commend is found. This function
+ * should be overriden when using this class.
+ * @param {String} comment The comment text.
+ * @example
+ * var parser = new CKEDITOR.htmlParser();
+ * parser.onComment = function( comment )
+ * {
+ * alert( comment ); // e.g. " Example "
+ * });
+ * parser.parse( "<!-- Example --><b>Hello</b>" );
+ */
+ onComment : function() {},
+
+ /**
+ * Parses text, looking for HTML tokens, like tag openers or closers,
+ * or comments. This function fires the onTagOpen, onTagClose, onText
+ * and onComment function during its execution.
+ * @param {String} html The HTML to be parsed.
+ * @example
+ * var parser = new CKEDITOR.htmlParser();
+ * // The onTagOpen, onTagClose, onText and onComment should be overriden
+ * // at this point.
+ * parser.parse( "<!-- Example --><b>Hello</b>" );
+ */
+ parse : function( html )
+ {
+ var parts,
+ tagName,
+ nextIndex = 0,
+ cdata; // The collected data inside a CDATA section.
+
+ while ( ( parts = this._.htmlPartsRegex.exec( html ) ) )
+ {
+ var tagIndex = parts.index;
+ if ( tagIndex > nextIndex )
+ {
+ var text = html.substring( nextIndex, tagIndex );
+
+ if ( cdata )
+ cdata.push( text );
+ else
+ this.onText( text );
+ }
+
+ nextIndex = this._.htmlPartsRegex.lastIndex;
+
+ /*
+ "parts" is an array with the following items:
+ 0 : The entire match for opening/closing tags and comments.
+ 1 : Group filled with the tag name for closing tags.
+ 2 : Group filled with the comment text.
+ 3 : Group filled with the tag name for opening tags.
+ 4 : Group filled with the attributes part of opening tags.
+ */
+
+ // Closing tag
+ if ( ( tagName = parts[ 1 ] ) )
+ {
+ tagName = tagName.toLowerCase();
+
+ if ( cdata && CKEDITOR.dtd.$cdata[ tagName ] )
+ {
+ // Send the CDATA data.
+ this.onCDATA( cdata.join('') );
+ cdata = null;
+ }
+
+ if ( !cdata )
+ {
+ this.onTagClose( tagName );
+ continue;
+ }
+ }
+
+ // If CDATA is enabled, just save the raw match.
+ if ( cdata )
+ {
+ cdata.push( parts[ 0 ] );
+ continue;
+ }
+
+ // Opening tag
+ if ( ( tagName = parts[ 3 ] ) )
+ {
+ tagName = tagName.toLowerCase();
+
+ // There are some tag names that can break things, so let's
+ // simply ignore them when parsing. (#5224)
+ if ( /="/.test( tagName ) )
+ continue;
+
+ var attribs = {},
+ attribMatch,
+ attribsPart = parts[ 4 ],
+ selfClosing = !!( attribsPart && attribsPart.charAt( attribsPart.length - 1 ) == '/' );
+
+ if ( attribsPart )
+ {
+ while ( ( attribMatch = attribsRegex.exec( attribsPart ) ) )
+ {
+ var attName = attribMatch[1].toLowerCase(),
+ attValue = attribMatch[2] || attribMatch[3] || attribMatch[4] || '';
+
+ if ( !attValue && emptyAttribs[ attName ] )
+ attribs[ attName ] = attName;
+ else
+ attribs[ attName ] = attValue;
+ }
+ }
+
+ this.onTagOpen( tagName, attribs, selfClosing );
+
+ // Open CDATA mode when finding the appropriate tags.
+ if ( !cdata && CKEDITOR.dtd.$cdata[ tagName ] )
+ cdata = [];
+
+ continue;
+ }
+
+ // Comment
+ if ( ( tagName = parts[ 2 ] ) )
+ this.onComment( tagName );
+ }
+
+ if ( html.length > nextIndex )
+ this.onText( html.substring( nextIndex, html.length ) );
+ }
+ };
+})();
diff --git a/skins/ckeditor/_source/core/htmlparser/basicwriter.js b/skins/ckeditor/_source/core/htmlparser/basicwriter.js
new file mode 100644
index 0000000..010ae74
--- /dev/null
+++ b/skins/ckeditor/_source/core/htmlparser/basicwriter.js
@@ -0,0 +1,145 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.htmlParser.basicWriter = CKEDITOR.tools.createClass(
+{
+ $ : function()
+ {
+ this._ =
+ {
+ output : []
+ };
+ },
+
+ proto :
+ {
+ /**
+ * Writes the tag opening part for a opener tag.
+ * @param {String} tagName The element name for this tag.
+ * @param {Object} attributes The attributes defined for this tag. The
+ * attributes could be used to inspect the tag.
+ * @example
+ * // Writes "<p".
+ * writer.openTag( 'p', { class : 'MyClass', id : 'MyId' } );
+ */
+ openTag : function( tagName, attributes )
+ {
+ this._.output.push( '<', tagName );
+ },
+
+ /**
+ * Writes the tag closing part for a opener tag.
+ * @param {String} tagName The element name for this tag.
+ * @param {Boolean} isSelfClose Indicates that this is a self-closing tag,
+ * like "br" or "img".
+ * @example
+ * // Writes ">".
+ * writer.openTagClose( 'p', false );
+ * @example
+ * // Writes " />".
+ * writer.openTagClose( 'br', true );
+ */
+ openTagClose : function( tagName, isSelfClose )
+ {
+ if ( isSelfClose )
+ this._.output.push( ' />' );
+ else
+ this._.output.push( '>' );
+ },
+
+ /**
+ * Writes an attribute. This function should be called after opening the
+ * tag with {@link #openTagClose}.
+ * @param {String} attName The attribute name.
+ * @param {String} attValue The attribute value.
+ * @example
+ * // Writes ' class="MyClass"'.
+ * writer.attribute( 'class', 'MyClass' );
+ */
+ attribute : function( attName, attValue )
+ {
+ // Browsers don't always escape special character in attribute values. (#4683, #4719).
+ if ( typeof attValue == 'string' )
+ attValue = CKEDITOR.tools.htmlEncodeAttr( attValue );
+
+ this._.output.push( ' ', attName, '="', attValue, '"' );
+ },
+
+ /**
+ * Writes a closer tag.
+ * @param {String} tagName The element name for this tag.
+ * @example
+ * // Writes "</p>".
+ * writer.closeTag( 'p' );
+ */
+ closeTag : function( tagName )
+ {
+ this._.output.push( '', tagName, '>' );
+ },
+
+ /**
+ * Writes text.
+ * @param {String} text The text value
+ * @example
+ * // Writes "Hello Word".
+ * writer.text( 'Hello Word' );
+ */
+ text : function( text )
+ {
+ this._.output.push( text );
+ },
+
+ /**
+ * Writes a comment.
+ * @param {String} comment The comment text.
+ * @example
+ * // Writes "<!-- My comment -->".
+ * writer.comment( ' My comment ' );
+ */
+ comment : function( comment )
+ {
+ this._.output.push( '' );
+ },
+
+ /**
+ * Writes any kind of data to the ouput.
+ * @example
+ * writer.write( 'This is an <b>example</b>.' );
+ */
+ write : function( data )
+ {
+ this._.output.push( data );
+ },
+
+ /**
+ * Empties the current output buffer.
+ * @example
+ * writer.reset();
+ */
+ reset : function()
+ {
+ this._.output = [];
+ this._.indent = false;
+ },
+
+ /**
+ * Empties the current output buffer.
+ * @param {Boolean} reset Indicates that the {@link reset} function is to
+ * be automatically called after retrieving the HTML.
+ * @returns {String} The HTML written to the writer so far.
+ * @example
+ * var html = writer.getHtml();
+ */
+ getHtml : function( reset )
+ {
+ var html = this._.output.join( '' );
+
+ if ( reset )
+ this.reset();
+
+ return html;
+ }
+ }
+});
diff --git a/skins/ckeditor/_source/core/htmlparser/cdata.js b/skins/ckeditor/_source/core/htmlparser/cdata.js
new file mode 100644
index 0000000..422f603
--- /dev/null
+++ b/skins/ckeditor/_source/core/htmlparser/cdata.js
@@ -0,0 +1,43 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+
+ /**
+ * A lightweight representation of HTML text.
+ * @constructor
+ * @example
+ */
+ CKEDITOR.htmlParser.cdata = function( value )
+ {
+ /**
+ * The CDATA value.
+ * @type String
+ * @example
+ */
+ this.value = value;
+ };
+
+ CKEDITOR.htmlParser.cdata.prototype =
+ {
+ /**
+ * CDATA has the same type as {@link CKEDITOR.htmlParser.text} This is
+ * a constant value set to {@link CKEDITOR.NODE_TEXT}.
+ * @type Number
+ * @example
+ */
+ type : CKEDITOR.NODE_TEXT,
+
+ /**
+ * Writes write the CDATA with no special manipulations.
+ * @param {CKEDITOR.htmlWriter} writer The writer to which write the HTML.
+ */
+ writeHtml : function( writer )
+ {
+ writer.write( this.value );
+ }
+ };
+})();
diff --git a/skins/ckeditor/_source/core/htmlparser/comment.js b/skins/ckeditor/_source/core/htmlparser/comment.js
new file mode 100644
index 0000000..a55b489
--- /dev/null
+++ b/skins/ckeditor/_source/core/htmlparser/comment.js
@@ -0,0 +1,60 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * A lightweight representation of an HTML comment.
+ * @constructor
+ * @example
+ */
+CKEDITOR.htmlParser.comment = function( value )
+{
+ /**
+ * The comment text.
+ * @type String
+ * @example
+ */
+ this.value = value;
+
+ /** @private */
+ this._ =
+ {
+ isBlockLike : false
+ };
+};
+
+CKEDITOR.htmlParser.comment.prototype =
+{
+ /**
+ * The node type. This is a constant value set to {@link CKEDITOR.NODE_COMMENT}.
+ * @type Number
+ * @example
+ */
+ type : CKEDITOR.NODE_COMMENT,
+
+ /**
+ * Writes the HTML representation of this comment to a CKEDITOR.htmlWriter.
+ * @param {CKEDITOR.htmlWriter} writer The writer to which write the HTML.
+ * @example
+ */
+ writeHtml : function( writer, filter )
+ {
+ var comment = this.value;
+
+ if ( filter )
+ {
+ if ( !( comment = filter.onComment( comment, this ) ) )
+ return;
+
+ if ( typeof comment != 'string' )
+ {
+ comment.parent = this.parent;
+ comment.writeHtml( writer, filter );
+ return;
+ }
+ }
+
+ writer.comment( comment );
+ }
+};
diff --git a/skins/ckeditor/_source/core/htmlparser/element.js b/skins/ckeditor/_source/core/htmlparser/element.js
new file mode 100644
index 0000000..b1d5547
--- /dev/null
+++ b/skins/ckeditor/_source/core/htmlparser/element.js
@@ -0,0 +1,308 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * A lightweight representation of an HTML element.
+ * @param {String} name The element name.
+ * @param {Object} attributes And object holding all attributes defined for
+ * this element.
+ * @constructor
+ * @example
+ */
+CKEDITOR.htmlParser.element = function( name, attributes )
+{
+ /**
+ * The element name.
+ * @type String
+ * @example
+ */
+ this.name = name;
+
+ /**
+ * Holds the attributes defined for this element.
+ * @type Object
+ * @example
+ */
+ this.attributes = attributes || ( attributes = {} );
+
+ /**
+ * The nodes that are direct children of this element.
+ * @type Array
+ * @example
+ */
+ this.children = [];
+
+ var tagName = attributes[ 'data-cke-real-element-type' ] || name || '';
+
+ // Reveal the real semantic of our internal custom tag name (#6639).
+ var internalTag = tagName.match( /^cke:(.*)/ );
+ internalTag && ( tagName = internalTag[ 1 ] );
+
+ var dtd = CKEDITOR.dtd,
+ isBlockLike = !!( dtd.$nonBodyContent[ tagName ]
+ || dtd.$block[ tagName ]
+ || dtd.$listItem[ tagName ]
+ || dtd.$tableContent[ tagName ]
+ || dtd.$nonEditable[ tagName ]
+ || tagName == 'br' ),
+ isEmpty = !!dtd.$empty[ name ];
+
+ this.isEmpty = isEmpty;
+ this.isUnknown = !dtd[ name ];
+
+ /** @private */
+ this._ =
+ {
+ isBlockLike : isBlockLike,
+ hasInlineStarted : isEmpty || !isBlockLike
+ };
+};
+
+/**
+ * Object presentation of CSS style declaration text.
+ * @param {CKEDITOR.htmlParser.element|String} elementOrStyleText A html parser element or the inline style text.
+ */
+CKEDITOR.htmlParser.cssStyle = function()
+{
+ var styleText,
+ arg = arguments[ 0 ],
+ rules = {};
+
+ styleText = arg instanceof CKEDITOR.htmlParser.element ? arg.attributes.style : arg;
+
+ // html-encoded quote might be introduced by 'font-family'
+ // from MS-Word which confused the following regexp. e.g.
+ //'font-family: "Lucida, Console"'
+ ( styleText || '' )
+ .replace( /"/g, '"' )
+ .replace( /\s*([^ :;]+)\s*:\s*([^;]+)\s*(?=;|$)/g,
+ function( match, name, value )
+ {
+ name == 'font-family' && ( value = value.replace( /["']/g, '' ) );
+ rules[ name.toLowerCase() ] = value;
+ });
+
+ return {
+
+ rules : rules,
+
+ /**
+ * Apply the styles onto the specified element or object.
+ * @param {CKEDITOR.htmlParser.element|CKEDITOR.dom.element|Object} obj
+ */
+ populate : function( obj )
+ {
+ var style = this.toString();
+ if ( style )
+ {
+ obj instanceof CKEDITOR.dom.element ?
+ obj.setAttribute( 'style', style ) :
+ obj instanceof CKEDITOR.htmlParser.element ?
+ obj.attributes.style = style :
+ obj.style = style;
+ }
+ },
+
+ toString : function()
+ {
+ var output = [];
+ for ( var i in rules )
+ rules[ i ] && output.push( i, ':', rules[ i ], ';' );
+ return output.join( '' );
+ }
+ };
+};
+
+(function()
+{
+ // Used to sort attribute entries in an array, where the first element of
+ // each object is the attribute name.
+ var sortAttribs = function( a, b )
+ {
+ a = a[0];
+ b = b[0];
+ return a < b ? -1 : a > b ? 1 : 0;
+ };
+
+ CKEDITOR.htmlParser.element.prototype =
+ {
+ /**
+ * The node type. This is a constant value set to {@link CKEDITOR.NODE_ELEMENT}.
+ * @type Number
+ * @example
+ */
+ type : CKEDITOR.NODE_ELEMENT,
+
+ /**
+ * Adds a node to the element children list.
+ * @param {Object} node The node to be added. It can be any of of the
+ * following types: {@link CKEDITOR.htmlParser.element},
+ * {@link CKEDITOR.htmlParser.text} and
+ * {@link CKEDITOR.htmlParser.comment}.
+ * @function
+ * @example
+ */
+ add : CKEDITOR.htmlParser.fragment.prototype.add,
+
+ /**
+ * Clone this element.
+ * @returns {CKEDITOR.htmlParser.element} The element clone.
+ * @example
+ */
+ clone : function()
+ {
+ return new CKEDITOR.htmlParser.element( this.name, this.attributes );
+ },
+
+ /**
+ * Writes the element HTML to a CKEDITOR.htmlWriter.
+ * @param {CKEDITOR.htmlWriter} writer The writer to which write the HTML.
+ * @example
+ */
+ writeHtml : function( writer, filter )
+ {
+ var attributes = this.attributes;
+
+ // Ignore cke: prefixes when writing HTML.
+ var element = this,
+ writeName = element.name,
+ a, newAttrName, value;
+
+ var isChildrenFiltered;
+
+ /**
+ * Providing an option for bottom-up filtering order ( element
+ * children to be pre-filtered before the element itself ).
+ */
+ element.filterChildren = function()
+ {
+ if ( !isChildrenFiltered )
+ {
+ var writer = new CKEDITOR.htmlParser.basicWriter();
+ CKEDITOR.htmlParser.fragment.prototype.writeChildrenHtml.call( element, writer, filter );
+ element.children = new CKEDITOR.htmlParser.fragment.fromHtml( writer.getHtml(), 0, element.clone() ).children;
+ isChildrenFiltered = 1;
+ }
+ };
+
+ if ( filter )
+ {
+ while ( true )
+ {
+ if ( !( writeName = filter.onElementName( writeName ) ) )
+ return;
+
+ element.name = writeName;
+
+ if ( !( element = filter.onElement( element ) ) )
+ return;
+
+ element.parent = this.parent;
+
+ if ( element.name == writeName )
+ break;
+
+ // If the element has been replaced with something of a
+ // different type, then make the replacement write itself.
+ if ( element.type != CKEDITOR.NODE_ELEMENT )
+ {
+ element.writeHtml( writer, filter );
+ return;
+ }
+
+ writeName = element.name;
+
+ // This indicate that the element has been dropped by
+ // filter but not the children.
+ if ( !writeName )
+ {
+ // Fix broken parent refs.
+ for ( var c = 0, length = this.children.length ; c < length ; c++ )
+ this.children[ c ].parent = element.parent;
+
+ this.writeChildrenHtml.call( element, writer, isChildrenFiltered ? null : filter );
+ return;
+ }
+ }
+
+ // The element may have been changed, so update the local
+ // references.
+ attributes = element.attributes;
+ }
+
+ // Open element tag.
+ writer.openTag( writeName, attributes );
+
+ // Copy all attributes to an array.
+ var attribsArray = [];
+ // Iterate over the attributes twice since filters may alter
+ // other attributes.
+ for ( var i = 0 ; i < 2; i++ )
+ {
+ for ( a in attributes )
+ {
+ newAttrName = a;
+ value = attributes[ a ];
+ if ( i == 1 )
+ attribsArray.push( [ a, value ] );
+ else if ( filter )
+ {
+ while ( true )
+ {
+ if ( !( newAttrName = filter.onAttributeName( a ) ) )
+ {
+ delete attributes[ a ];
+ break;
+ }
+ else if ( newAttrName != a )
+ {
+ delete attributes[ a ];
+ a = newAttrName;
+ continue;
+ }
+ else
+ break;
+ }
+ if ( newAttrName )
+ {
+ if ( ( value = filter.onAttribute( element, newAttrName, value ) ) === false )
+ delete attributes[ newAttrName ];
+ else
+ attributes [ newAttrName ] = value;
+ }
+ }
+ }
+ }
+ // Sort the attributes by name.
+ if ( writer.sortAttributes )
+ attribsArray.sort( sortAttribs );
+
+ // Send the attributes.
+ var len = attribsArray.length;
+ for ( i = 0 ; i < len ; i++ )
+ {
+ var attrib = attribsArray[ i ];
+ writer.attribute( attrib[0], attrib[1] );
+ }
+
+ // Close the tag.
+ writer.openTagClose( writeName, element.isEmpty );
+
+ if ( !element.isEmpty )
+ {
+ this.writeChildrenHtml.call( element, writer, isChildrenFiltered ? null : filter );
+ // Close the element.
+ writer.closeTag( writeName );
+ }
+ },
+
+ writeChildrenHtml : function( writer, filter )
+ {
+ // Send children.
+ CKEDITOR.htmlParser.fragment.prototype.writeChildrenHtml.apply( this, arguments );
+
+ }
+ };
+})();
diff --git a/skins/ckeditor/_source/core/htmlparser/filter.js b/skins/ckeditor/_source/core/htmlparser/filter.js
new file mode 100644
index 0000000..a1f16e2
--- /dev/null
+++ b/skins/ckeditor/_source/core/htmlparser/filter.js
@@ -0,0 +1,288 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+ CKEDITOR.htmlParser.filter = CKEDITOR.tools.createClass(
+ {
+ $ : function( rules )
+ {
+ this._ =
+ {
+ elementNames : [],
+ attributeNames : [],
+ elements : { $length : 0 },
+ attributes : { $length : 0 }
+ };
+
+ if ( rules )
+ this.addRules( rules, 10 );
+ },
+
+ proto :
+ {
+ addRules : function( rules, priority )
+ {
+ if ( typeof priority != 'number' )
+ priority = 10;
+
+ // Add the elementNames.
+ addItemsToList( this._.elementNames, rules.elementNames, priority );
+
+ // Add the attributeNames.
+ addItemsToList( this._.attributeNames, rules.attributeNames, priority );
+
+ // Add the elements.
+ addNamedItems( this._.elements, rules.elements, priority );
+
+ // Add the attributes.
+ addNamedItems( this._.attributes, rules.attributes, priority );
+
+ // Add the text.
+ this._.text = transformNamedItem( this._.text, rules.text, priority ) || this._.text;
+
+ // Add the comment.
+ this._.comment = transformNamedItem( this._.comment, rules.comment, priority ) || this._.comment;
+
+ // Add root fragment.
+ this._.root = transformNamedItem( this._.root, rules.root, priority ) || this._.root;
+ },
+
+ onElementName : function( name )
+ {
+ return filterName( name, this._.elementNames );
+ },
+
+ onAttributeName : function( name )
+ {
+ return filterName( name, this._.attributeNames );
+ },
+
+ onText : function( text )
+ {
+ var textFilter = this._.text;
+ return textFilter ? textFilter.filter( text ) : text;
+ },
+
+ onComment : function( commentText, comment )
+ {
+ var textFilter = this._.comment;
+ return textFilter ? textFilter.filter( commentText, comment ) : commentText;
+ },
+
+ onFragment : function( element )
+ {
+ var rootFilter = this._.root;
+ return rootFilter ? rootFilter.filter( element ) : element;
+ },
+
+ onElement : function( element )
+ {
+ // We must apply filters set to the specific element name as
+ // well as those set to the generic $ name. So, add both to an
+ // array and process them in a small loop.
+ var filters = [ this._.elements[ '^' ], this._.elements[ element.name ], this._.elements.$ ],
+ filter, ret;
+
+ for ( var i = 0 ; i < 3 ; i++ )
+ {
+ filter = filters[ i ];
+ if ( filter )
+ {
+ ret = filter.filter( element, this );
+
+ if ( ret === false )
+ return null;
+
+ if ( ret && ret != element )
+ return this.onNode( ret );
+
+ // The non-root element has been dismissed by one of the filters.
+ if ( element.parent && !element.name )
+ break;
+ }
+ }
+
+ return element;
+ },
+
+ onNode : function( node )
+ {
+ var type = node.type;
+
+ return type == CKEDITOR.NODE_ELEMENT ? this.onElement( node ) :
+ type == CKEDITOR.NODE_TEXT ? new CKEDITOR.htmlParser.text( this.onText( node.value ) ) :
+ type == CKEDITOR.NODE_COMMENT ? new CKEDITOR.htmlParser.comment( this.onComment( node.value ) ):
+ null;
+ },
+
+ onAttribute : function( element, name, value )
+ {
+ var filter = this._.attributes[ name ];
+
+ if ( filter )
+ {
+ var ret = filter.filter( value, element, this );
+
+ if ( ret === false )
+ return false;
+
+ if ( typeof ret != 'undefined' )
+ return ret;
+ }
+
+ return value;
+ }
+ }
+ });
+
+ function filterName( name, filters )
+ {
+ for ( var i = 0 ; name && i < filters.length ; i++ )
+ {
+ var filter = filters[ i ];
+ name = name.replace( filter[ 0 ], filter[ 1 ] );
+ }
+ return name;
+ }
+
+ function addItemsToList( list, items, priority )
+ {
+ if ( typeof items == 'function' )
+ items = [ items ];
+
+ var i, j,
+ listLength = list.length,
+ itemsLength = items && items.length;
+
+ if ( itemsLength )
+ {
+ // Find the index to insert the items at.
+ for ( i = 0 ; i < listLength && list[ i ].pri < priority ; i++ )
+ { /*jsl:pass*/ }
+
+ // Add all new items to the list at the specific index.
+ for ( j = itemsLength - 1 ; j >= 0 ; j-- )
+ {
+ var item = items[ j ];
+ if ( item )
+ {
+ item.pri = priority;
+ list.splice( i, 0, item );
+ }
+ }
+ }
+ }
+
+ function addNamedItems( hashTable, items, priority )
+ {
+ if ( items )
+ {
+ for ( var name in items )
+ {
+ var current = hashTable[ name ];
+
+ hashTable[ name ] =
+ transformNamedItem(
+ current,
+ items[ name ],
+ priority );
+
+ if ( !current )
+ hashTable.$length++;
+ }
+ }
+ }
+
+ function transformNamedItem( current, item, priority )
+ {
+ if ( item )
+ {
+ item.pri = priority;
+
+ if ( current )
+ {
+ // If the current item is not an Array, transform it.
+ if ( !current.splice )
+ {
+ if ( current.pri > priority )
+ current = [ item, current ];
+ else
+ current = [ current, item ];
+
+ current.filter = callItems;
+ }
+ else
+ addItemsToList( current, item, priority );
+
+ return current;
+ }
+ else
+ {
+ item.filter = item;
+ return item;
+ }
+ }
+ }
+
+ // Invoke filters sequentially on the array, break the iteration
+ // when it doesn't make sense to continue anymore.
+ function callItems( currentEntry )
+ {
+ var isNode = currentEntry.type
+ || currentEntry instanceof CKEDITOR.htmlParser.fragment;
+
+ for ( var i = 0 ; i < this.length ; i++ )
+ {
+ // Backup the node info before filtering.
+ if ( isNode )
+ {
+ var orgType = currentEntry.type,
+ orgName = currentEntry.name;
+ }
+
+ var item = this[ i ],
+ ret = item.apply( window, arguments );
+
+ if ( ret === false )
+ return ret;
+
+ // We're filtering node (element/fragment).
+ if ( isNode )
+ {
+ // No further filtering if it's not anymore
+ // fitable for the subsequent filters.
+ if ( ret && ( ret.name != orgName
+ || ret.type != orgType ) )
+ {
+ return ret;
+ }
+ }
+ // Filtering value (nodeName/textValue/attrValue).
+ else
+ {
+ // No further filtering if it's not
+ // any more values.
+ if ( typeof ret != 'string' )
+ return ret;
+ }
+
+ ret != undefined && ( currentEntry = ret );
+ }
+
+ return currentEntry;
+ }
+})();
+
+// "entities" plugin
+/*
+{
+ text : function( text )
+ {
+ // TODO : Process entities.
+ return text.toUpperCase();
+ }
+};
+*/
diff --git a/skins/ckeditor/_source/core/htmlparser/fragment.js b/skins/ckeditor/_source/core/htmlparser/fragment.js
new file mode 100644
index 0000000..bfa5cc5
--- /dev/null
+++ b/skins/ckeditor/_source/core/htmlparser/fragment.js
@@ -0,0 +1,497 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * A lightweight representation of an HTML DOM structure.
+ * @constructor
+ * @example
+ */
+CKEDITOR.htmlParser.fragment = function()
+{
+ /**
+ * The nodes contained in the root of this fragment.
+ * @type Array
+ * @example
+ * var fragment = CKEDITOR.htmlParser.fragment.fromHtml( 'Sample Text' );
+ * alert( fragment.children.length ); "2"
+ */
+ this.children = [];
+
+ /**
+ * Get the fragment parent. Should always be null.
+ * @type Object
+ * @default null
+ * @example
+ */
+ this.parent = null;
+
+ /** @private */
+ this._ =
+ {
+ isBlockLike : true,
+ hasInlineStarted : false
+ };
+};
+
+(function()
+{
+ // Block-level elements whose internal structure should be respected during
+ // parser fixing.
+ var nonBreakingBlocks = CKEDITOR.tools.extend( { table:1,ul:1,ol:1,dl:1 }, CKEDITOR.dtd.table, CKEDITOR.dtd.ul, CKEDITOR.dtd.ol, CKEDITOR.dtd.dl );
+
+ // IE < 8 don't output the close tag on definition list items. (#6975)
+ var optionalCloseTags = CKEDITOR.env.ie && CKEDITOR.env.version < 8 ? { dd : 1, dt :1 } : {};
+
+ var listBlocks = { ol:1, ul:1 };
+
+ // Dtd of the fragment element, basically it accept anything except for intermediate structure, e.g. orphan .
+ var rootDtd = CKEDITOR.tools.extend( {}, { html: 1 }, CKEDITOR.dtd.html, CKEDITOR.dtd.body, CKEDITOR.dtd.head, { style:1,script:1 } );
+
+ /**
+ * Creates a {@link CKEDITOR.htmlParser.fragment} from an HTML string.
+ * @param {String} fragmentHtml The HTML to be parsed, filling the fragment.
+ * @param {Number} [fixForBody=false] Wrap body with specified element if needed.
+ * @param {CKEDITOR.htmlParser.element} contextNode Parse the html as the content of this element.
+ * @returns CKEDITOR.htmlParser.fragment The fragment created.
+ * @example
+ * var fragment = CKEDITOR.htmlParser.fragment.fromHtml( 'Sample Text' );
+ * alert( fragment.children[0].name ); "b"
+ * alert( fragment.children[1].value ); " Text"
+ */
+ CKEDITOR.htmlParser.fragment.fromHtml = function( fragmentHtml, fixForBody, contextNode )
+ {
+ var parser = new CKEDITOR.htmlParser(),
+ fragment = contextNode || new CKEDITOR.htmlParser.fragment(),
+ pendingInline = [],
+ pendingBRs = [],
+ currentNode = fragment,
+ // Indicate we're inside a element, spaces should be touched differently.
+ inPre = false;
+
+ function checkPending( newTagName )
+ {
+ var pendingBRsSent;
+
+ if ( pendingInline.length > 0 )
+ {
+ for ( var i = 0 ; i < pendingInline.length ; i++ )
+ {
+ var pendingElement = pendingInline[ i ],
+ pendingName = pendingElement.name,
+ pendingDtd = CKEDITOR.dtd[ pendingName ],
+ currentDtd = currentNode.name && CKEDITOR.dtd[ currentNode.name ];
+
+ if ( ( !currentDtd || currentDtd[ pendingName ] ) && ( !newTagName || !pendingDtd || pendingDtd[ newTagName ] || !CKEDITOR.dtd[ newTagName ] ) )
+ {
+ if ( !pendingBRsSent )
+ {
+ sendPendingBRs();
+ pendingBRsSent = 1;
+ }
+
+ // Get a clone for the pending element.
+ pendingElement = pendingElement.clone();
+
+ // Add it to the current node and make it the current,
+ // so the new element will be added inside of it.
+ pendingElement.parent = currentNode;
+ currentNode = pendingElement;
+
+ // Remove the pending element (back the index by one
+ // to properly process the next entry).
+ pendingInline.splice( i, 1 );
+ i--;
+ }
+ }
+ }
+ }
+
+ function sendPendingBRs()
+ {
+ while ( pendingBRs.length )
+ currentNode.add( pendingBRs.shift() );
+ }
+
+ /*
+ * Beside of simply append specified element to target, this function also takes
+ * care of other dirty lifts like forcing block in body, trimming spaces at
+ * the block boundaries etc.
+ *
+ * @param {Element} element The element to be added as the last child of {@link target}.
+ * @param {Element} target The parent element to relieve the new node.
+ * @param {Boolean} [moveCurrent=false] Don't change the "currentNode" global unless
+ * there's a return point node specified on the element, otherwise move current onto {@link target} node.
+ */
+ function addElement( element, target, moveCurrent )
+ {
+ // Ignore any element that has already been added.
+ if ( element.previous !== undefined )
+ return;
+
+ target = target || currentNode || fragment;
+
+ // Current element might be mangled by fix body below,
+ // save it for restore later.
+ var savedCurrent = currentNode;
+
+ // If the target is the fragment and this inline element can't go inside
+ // body (if fixForBody).
+ if ( fixForBody && ( !target.type || target.name == 'body' ) )
+ {
+ var elementName, realElementName;
+ if ( element.attributes
+ && ( realElementName =
+ element.attributes[ 'data-cke-real-element-type' ] ) )
+ elementName = realElementName;
+ else
+ elementName = element.name;
+
+ if ( elementName && !( elementName in CKEDITOR.dtd.$body || elementName == 'body' || element.isOrphan ) )
+ {
+ // Create a in the fragment.
+ currentNode = target;
+ parser.onTagOpen( fixForBody, {} );
+
+ // The new target now is the
.
+ element.returnPoint = target = currentNode;
+ }
+ }
+
+ // Rtrim empty spaces on block end boundary. (#3585)
+ if ( element._.isBlockLike
+ && element.name != 'pre' )
+ {
+
+ var length = element.children.length,
+ lastChild = element.children[ length - 1 ],
+ text;
+ if ( lastChild && lastChild.type == CKEDITOR.NODE_TEXT )
+ {
+ if ( !( text = CKEDITOR.tools.rtrim( lastChild.value ) ) )
+ element.children.length = length -1;
+ else
+ lastChild.value = text;
+ }
+ }
+
+ target.add( element );
+
+ if ( element.returnPoint )
+ {
+ currentNode = element.returnPoint;
+ delete element.returnPoint;
+ }
+ else
+ currentNode = moveCurrent ? target : savedCurrent;
+ }
+
+ parser.onTagOpen = function( tagName, attributes, selfClosing, optionalClose )
+ {
+ var element = new CKEDITOR.htmlParser.element( tagName, attributes );
+
+ // "isEmpty" will be always "false" for unknown elements, so we
+ // must force it if the parser has identified it as a selfClosing tag.
+ if ( element.isUnknown && selfClosing )
+ element.isEmpty = true;
+
+ // Check for optional closed elements, including browser quirks and manually opened blocks.
+ element.isOptionalClose = tagName in optionalCloseTags || optionalClose;
+
+ // This is a tag to be removed if empty, so do not add it immediately.
+ if ( CKEDITOR.dtd.$removeEmpty[ tagName ] )
+ {
+ pendingInline.push( element );
+ return;
+ }
+ else if ( tagName == 'pre' )
+ inPre = true;
+ else if ( tagName == 'br' && inPre )
+ {
+ currentNode.add( new CKEDITOR.htmlParser.text( '\n' ) );
+ return;
+ }
+
+ if ( tagName == 'br' )
+ {
+ pendingBRs.push( element );
+ return;
+ }
+
+ while( 1 )
+ {
+ var currentName = currentNode.name;
+
+ var currentDtd = currentName ? ( CKEDITOR.dtd[ currentName ]
+ || ( currentNode._.isBlockLike ? CKEDITOR.dtd.div : CKEDITOR.dtd.span ) )
+ : rootDtd;
+
+ // If the element cannot be child of the current element.
+ if ( !element.isUnknown && !currentNode.isUnknown && !currentDtd[ tagName ] )
+ {
+ // Current node doesn't have a close tag, time for a close
+ // as this element isn't fit in. (#7497)
+ if ( currentNode.isOptionalClose )
+ parser.onTagClose( currentName );
+ // Fixing malformed nested lists by moving it into a previous list item. (#3828)
+ else if ( tagName in listBlocks
+ && currentName in listBlocks )
+ {
+ var children = currentNode.children,
+ lastChild = children[ children.length - 1 ];
+
+ // Establish the list item if it's not existed.
+ if ( !( lastChild && lastChild.name == 'li' ) )
+ addElement( ( lastChild = new CKEDITOR.htmlParser.element( 'li' ) ), currentNode );
+
+ !element.returnPoint && ( element.returnPoint = currentNode );
+ currentNode = lastChild;
+ }
+ // Establish new list root for orphan list items.
+ else if ( tagName in CKEDITOR.dtd.$listItem && currentName != tagName )
+ parser.onTagOpen( tagName == 'li' ? 'ul' : 'dl', {}, 0, 1 );
+ // We're inside a structural block like table and list, AND the incoming element
+ // is not of the same type (e.g.
td1 td2 ), we simply add this new one before it,
+ // and most importantly, return back to here once this element is added,
+ // e.g.
+ else if ( currentName in nonBreakingBlocks && currentName != tagName )
+ {
+ !element.returnPoint && ( element.returnPoint = currentNode );
+ currentNode = currentNode.parent;
+ }
+ else
+ {
+ // The current element is an inline element, which
+ // need to be continued even after the close, so put
+ // it in the pending list.
+ if ( currentName in CKEDITOR.dtd.$inline )
+ pendingInline.unshift( currentNode );
+
+ // The most common case where we just need to close the
+ // current one and append the new one to the parent.
+ if ( currentNode.parent )
+ addElement( currentNode, currentNode.parent, 1 );
+ // We've tried our best to fix the embarrassment here, while
+ // this element still doesn't find it's parent, mark it as
+ // orphan and show our tolerance to it.
+ else
+ {
+ element.isOrphan = 1;
+ break;
+ }
+ }
+ }
+ else
+ break;
+ }
+
+ checkPending( tagName );
+ sendPendingBRs();
+
+ element.parent = currentNode;
+
+ if ( element.isEmpty )
+ addElement( element );
+ else
+ currentNode = element;
+ };
+
+ parser.onTagClose = function( tagName )
+ {
+ // Check if there is any pending tag to be closed.
+ for ( var i = pendingInline.length - 1 ; i >= 0 ; i-- )
+ {
+ // If found, just remove it from the list.
+ if ( tagName == pendingInline[ i ].name )
+ {
+ pendingInline.splice( i, 1 );
+ return;
+ }
+ }
+
+ var pendingAdd = [],
+ newPendingInline = [],
+ candidate = currentNode;
+
+ while ( candidate != fragment && candidate.name != tagName )
+ {
+ // If this is an inline element, add it to the pending list, if we're
+ // really closing one of the parents element later, they will continue
+ // after it.
+ if ( !candidate._.isBlockLike )
+ newPendingInline.unshift( candidate );
+
+ // This node should be added to it's parent at this point. But,
+ // it should happen only if the closing tag is really closing
+ // one of the nodes. So, for now, we just cache it.
+ pendingAdd.push( candidate );
+
+ // Make sure return point is properly restored.
+ candidate = candidate.returnPoint || candidate.parent;
+ }
+
+ if ( candidate != fragment )
+ {
+ // Add all elements that have been found in the above loop.
+ for ( i = 0 ; i < pendingAdd.length ; i++ )
+ {
+ var node = pendingAdd[ i ];
+ addElement( node, node.parent );
+ }
+
+ currentNode = candidate;
+
+ if ( currentNode.name == 'pre' )
+ inPre = false;
+
+ if ( candidate._.isBlockLike )
+ sendPendingBRs();
+
+ addElement( candidate, candidate.parent );
+
+ // The parent should start receiving new nodes now, except if
+ // addElement changed the currentNode.
+ if ( candidate == currentNode )
+ currentNode = currentNode.parent;
+
+ pendingInline = pendingInline.concat( newPendingInline );
+ }
+
+ if ( tagName == 'body' )
+ fixForBody = false;
+ };
+
+ parser.onText = function( text )
+ {
+ // Trim empty spaces at beginning of text contents except .
+ if ( ( !currentNode._.hasInlineStarted || pendingBRs.length ) && !inPre )
+ {
+ text = CKEDITOR.tools.ltrim( text );
+
+ if ( text.length === 0 )
+ return;
+ }
+
+ sendPendingBRs();
+ checkPending();
+
+ if ( fixForBody
+ && ( !currentNode.type || currentNode.name == 'body' )
+ && CKEDITOR.tools.trim( text ) )
+ {
+ this.onTagOpen( fixForBody, {}, 0, 1 );
+ }
+
+ // Shrinking consequential spaces into one single for all elements
+ // text contents.
+ if ( !inPre )
+ text = text.replace( /[\t\r\n ]{2,}|[\t\r\n]/g, ' ' );
+
+ currentNode.add( new CKEDITOR.htmlParser.text( text ) );
+ };
+
+ parser.onCDATA = function( cdata )
+ {
+ currentNode.add( new CKEDITOR.htmlParser.cdata( cdata ) );
+ };
+
+ parser.onComment = function( comment )
+ {
+ sendPendingBRs();
+ checkPending();
+ currentNode.add( new CKEDITOR.htmlParser.comment( comment ) );
+ };
+
+ // Parse it.
+ parser.parse( fragmentHtml );
+
+ // Send all pending BRs except one, which we consider a unwanted bogus. (#5293)
+ sendPendingBRs( !CKEDITOR.env.ie && 1 );
+
+ // Close all pending nodes, make sure return point is properly restored.
+ while ( currentNode != fragment )
+ addElement( currentNode, currentNode.parent, 1 );
+
+ return fragment;
+ };
+
+ CKEDITOR.htmlParser.fragment.prototype =
+ {
+ /**
+ * Adds a node to this fragment.
+ * @param {Object} node The node to be added. It can be any of of the
+ * following types: {@link CKEDITOR.htmlParser.element},
+ * {@link CKEDITOR.htmlParser.text} and
+ * {@link CKEDITOR.htmlParser.comment}.
+ * @param {Number} [index] From where the insertion happens.
+ * @example
+ */
+ add : function( node, index )
+ {
+ isNaN( index ) && ( index = this.children.length );
+
+ var previous = index > 0 ? this.children[ index - 1 ] : null;
+ if ( previous )
+ {
+ // If the block to be appended is following text, trim spaces at
+ // the right of it.
+ if ( node._.isBlockLike && previous.type == CKEDITOR.NODE_TEXT )
+ {
+ previous.value = CKEDITOR.tools.rtrim( previous.value );
+
+ // If we have completely cleared the previous node.
+ if ( previous.value.length === 0 )
+ {
+ // Remove it from the list and add the node again.
+ this.children.pop();
+ this.add( node );
+ return;
+ }
+ }
+
+ previous.next = node;
+ }
+
+ node.previous = previous;
+ node.parent = this;
+
+ this.children.splice( index, 0, node );
+
+ this._.hasInlineStarted = node.type == CKEDITOR.NODE_TEXT || ( node.type == CKEDITOR.NODE_ELEMENT && !node._.isBlockLike );
+ },
+
+ /**
+ * Writes the fragment HTML to a CKEDITOR.htmlWriter.
+ * @param {CKEDITOR.htmlWriter} writer The writer to which write the HTML.
+ * @example
+ * var writer = new CKEDITOR.htmlWriter();
+ * var fragment = CKEDITOR.htmlParser.fragment.fromHtml( '<P><B>Example' );
+ * fragment.writeHtml( writer )
+ * alert( writer.getHtml() ); "<p><b>Example</b></p>"
+ */
+ writeHtml : function( writer, filter )
+ {
+ var isChildrenFiltered;
+ this.filterChildren = function()
+ {
+ var writer = new CKEDITOR.htmlParser.basicWriter();
+ this.writeChildrenHtml.call( this, writer, filter, true );
+ var html = writer.getHtml();
+ this.children = new CKEDITOR.htmlParser.fragment.fromHtml( html ).children;
+ isChildrenFiltered = 1;
+ };
+
+ // Filtering the root fragment before anything else.
+ !this.name && filter && filter.onFragment( this );
+
+ this.writeChildrenHtml( writer, isChildrenFiltered ? null : filter );
+ },
+
+ writeChildrenHtml : function( writer, filter )
+ {
+ for ( var i = 0 ; i < this.children.length ; i++ )
+ this.children[i].writeHtml( writer, filter );
+ }
+ };
+})();
diff --git a/skins/ckeditor/_source/core/htmlparser/text.js b/skins/ckeditor/_source/core/htmlparser/text.js
new file mode 100644
index 0000000..02f8935
--- /dev/null
+++ b/skins/ckeditor/_source/core/htmlparser/text.js
@@ -0,0 +1,55 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+ var spacesRegex = /[\t\r\n ]{2,}|[\t\r\n]/g;
+
+ /**
+ * A lightweight representation of HTML text.
+ * @constructor
+ * @example
+ */
+ CKEDITOR.htmlParser.text = function( value )
+ {
+ /**
+ * The text value.
+ * @type String
+ * @example
+ */
+ this.value = value;
+
+ /** @private */
+ this._ =
+ {
+ isBlockLike : false
+ };
+ };
+
+ CKEDITOR.htmlParser.text.prototype =
+ {
+ /**
+ * The node type. This is a constant value set to {@link CKEDITOR.NODE_TEXT}.
+ * @type Number
+ * @example
+ */
+ type : CKEDITOR.NODE_TEXT,
+
+ /**
+ * Writes the HTML representation of this text to a CKEDITOR.htmlWriter.
+ * @param {CKEDITOR.htmlWriter} writer The writer to which write the HTML.
+ * @example
+ */
+ writeHtml : function( writer, filter )
+ {
+ var text = this.value;
+
+ if ( filter && !( text = filter.onText( text, this ) ) )
+ return;
+
+ writer.text( text );
+ }
+ };
+})();
diff --git a/skins/ckeditor/_source/core/lang.js b/skins/ckeditor/_source/core/lang.js
new file mode 100644
index 0000000..19b903d
--- /dev/null
+++ b/skins/ckeditor/_source/core/lang.js
@@ -0,0 +1,157 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+ var loadedLangs = {};
+
+ /**
+ * @namespace Holds language related functions.
+ */
+ CKEDITOR.lang =
+ {
+ /**
+ * The list of languages available in the editor core.
+ * @type Object
+ * @example
+ * alert( CKEDITOR.lang.en ); // "true"
+ */
+ languages :
+ {
+ 'af' : 1,
+ 'ar' : 1,
+ 'bg' : 1,
+ 'bn' : 1,
+ 'bs' : 1,
+ 'ca' : 1,
+ 'cs' : 1,
+ 'cy' : 1,
+ 'da' : 1,
+ 'de' : 1,
+ 'el' : 1,
+ 'en-au' : 1,
+ 'en-ca' : 1,
+ 'en-gb' : 1,
+ 'en' : 1,
+ 'eo' : 1,
+ 'es' : 1,
+ 'et' : 1,
+ 'eu' : 1,
+ 'fa' : 1,
+ 'fi' : 1,
+ 'fo' : 1,
+ 'fr-ca' : 1,
+ 'fr' : 1,
+ 'gl' : 1,
+ 'gu' : 1,
+ 'he' : 1,
+ 'hi' : 1,
+ 'hr' : 1,
+ 'hu' : 1,
+ 'is' : 1,
+ 'it' : 1,
+ 'ja' : 1,
+ 'ka' : 1,
+ 'km' : 1,
+ 'ko' : 1,
+ 'lt' : 1,
+ 'lv' : 1,
+ 'mn' : 1,
+ 'ms' : 1,
+ 'nb' : 1,
+ 'nl' : 1,
+ 'no' : 1,
+ 'pl' : 1,
+ 'pt-br' : 1,
+ 'pt' : 1,
+ 'ro' : 1,
+ 'ru' : 1,
+ 'sk' : 1,
+ 'sl' : 1,
+ 'sr-latn' : 1,
+ 'sr' : 1,
+ 'sv' : 1,
+ 'th' : 1,
+ 'tr' : 1,
+ 'uk' : 1,
+ 'vi' : 1,
+ 'zh-cn' : 1,
+ 'zh' : 1
+ },
+
+ /**
+ * Loads a specific language file, or auto detect it. A callback is
+ * then called when the file gets loaded.
+ * @param {String} languageCode The code of the language file to be
+ * loaded. If null or empty, autodetection will be performed. The
+ * same happens if the language is not supported.
+ * @param {String} defaultLanguage The language to be used if
+ * languageCode is not supported or if the autodetection fails.
+ * @param {Function} callback A function to be called once the
+ * language file is loaded. Two parameters are passed to this
+ * function: the language code and the loaded language entries.
+ * @example
+ */
+ load : function( languageCode, defaultLanguage, callback )
+ {
+ // If no languageCode - fallback to browser or default.
+ // If languageCode - fallback to no-localized version or default.
+ if ( !languageCode || !CKEDITOR.lang.languages[ languageCode ] )
+ languageCode = this.detect( defaultLanguage, languageCode );
+
+ if ( !this[ languageCode ] )
+ {
+ CKEDITOR.scriptLoader.load( CKEDITOR.getUrl(
+ '_source/' + // @Packager.RemoveLine
+ 'lang/' + languageCode + '.js' ),
+ function()
+ {
+ callback( languageCode, this[ languageCode ] );
+ }
+ , this );
+ }
+ else
+ callback( languageCode, this[ languageCode ] );
+ },
+
+ /**
+ * Returns the language that best fit the user language. For example,
+ * suppose that the user language is "pt-br". If this language is
+ * supported by the editor, it is returned. Otherwise, if only "pt" is
+ * supported, it is returned instead. If none of the previous are
+ * supported, a default language is then returned.
+ * @param {String} defaultLanguage The default language to be returned
+ * if the user language is not supported.
+ * @param {String} [probeLanguage] A language code to try to use,
+ * instead of the browser based autodetection.
+ * @returns {String} The detected language code.
+ * @example
+ * alert( CKEDITOR.lang.detect( 'en' ) ); // e.g., in a German browser: "de"
+ */
+ detect : function( defaultLanguage, probeLanguage )
+ {
+ var languages = this.languages;
+ probeLanguage = probeLanguage || navigator.userLanguage || navigator.language;
+
+ var parts = probeLanguage
+ .toLowerCase()
+ .match( /([a-z]+)(?:-([a-z]+))?/ ),
+ lang = parts[1],
+ locale = parts[2];
+
+ if ( languages[ lang + '-' + locale ] )
+ lang = lang + '-' + locale;
+ else if ( !languages[ lang ] )
+ lang = null;
+
+ CKEDITOR.lang.detect = lang ?
+ function() { return lang; } :
+ function( defaultLanguage ) { return defaultLanguage; };
+
+ return lang || defaultLanguage;
+ }
+ };
+
+})();
diff --git a/skins/ckeditor/_source/core/loader.js b/skins/ckeditor/_source/core/loader.js
new file mode 100644
index 0000000..d8a8302
--- /dev/null
+++ b/skins/ckeditor/_source/core/loader.js
@@ -0,0 +1,240 @@
+/*
+Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.loader} objects, which is used to
+ * load core scripts and their dependencies from _source.
+ */
+
+if ( typeof CKEDITOR == 'undefined' )
+ CKEDITOR = {};
+
+if ( !CKEDITOR.loader )
+{
+ /**
+ * Load core scripts and their dependencies from _source.
+ * @namespace
+ * @example
+ */
+ CKEDITOR.loader = (function()
+ {
+ // Table of script names and their dependencies.
+ var scripts =
+ {
+ 'core/_bootstrap' : [ 'core/config', 'core/ckeditor', 'core/plugins', 'core/scriptloader', 'core/tools', /* The following are entries that we want to force loading at the end to avoid dependence recursion */ 'core/dom/comment', 'core/dom/elementpath', 'core/dom/text', 'core/dom/rangelist' ],
+ 'core/ckeditor' : [ 'core/ckeditor_basic', 'core/dom', 'core/dtd', 'core/dom/document', 'core/dom/element', 'core/editor', 'core/event', 'core/htmlparser', 'core/htmlparser/element', 'core/htmlparser/fragment', 'core/htmlparser/filter', 'core/htmlparser/basicwriter', 'core/tools' ],
+ 'core/ckeditor_base' : [],
+ 'core/ckeditor_basic' : [ 'core/editor_basic', 'core/env', 'core/event' ],
+ 'core/command' : [],
+ 'core/config' : [ 'core/ckeditor_base' ],
+ 'core/dom' : [],
+ 'core/dom/comment' : [ 'core/dom/node' ],
+ 'core/dom/document' : [ 'core/dom', 'core/dom/domobject', 'core/dom/window' ],
+ 'core/dom/documentfragment' : [ 'core/dom/element' ],
+ 'core/dom/element' : [ 'core/dom', 'core/dom/document', 'core/dom/domobject', 'core/dom/node', 'core/dom/nodelist', 'core/tools' ],
+ 'core/dom/elementpath' : [ 'core/dom/element' ],
+ 'core/dom/event' : [],
+ 'core/dom/node' : [ 'core/dom/domobject', 'core/tools' ],
+ 'core/dom/nodelist' : [ 'core/dom/node' ],
+ 'core/dom/domobject' : [ 'core/dom/event' ],
+ 'core/dom/range' : [ 'core/dom/document', 'core/dom/documentfragment', 'core/dom/element', 'core/dom/walker' ],
+ 'core/dom/rangelist' : [ 'core/dom/range' ],
+ 'core/dom/text' : [ 'core/dom/node', 'core/dom/domobject' ],
+ 'core/dom/walker' : [ 'core/dom/node' ],
+ 'core/dom/window' : [ 'core/dom/domobject' ],
+ 'core/dtd' : [ 'core/tools' ],
+ 'core/editor' : [ 'core/command', 'core/config', 'core/editor_basic', 'core/focusmanager', 'core/lang', 'core/plugins', 'core/skins', 'core/themes', 'core/tools', 'core/ui' ],
+ 'core/editor_basic' : [ 'core/event' ],
+ 'core/env' : [],
+ 'core/event' : [],
+ 'core/focusmanager' : [],
+ 'core/htmlparser' : [],
+ 'core/htmlparser/comment' : [ 'core/htmlparser' ],
+ 'core/htmlparser/element' : [ 'core/htmlparser', 'core/htmlparser/fragment' ],
+ 'core/htmlparser/fragment' : [ 'core/htmlparser', 'core/htmlparser/comment', 'core/htmlparser/text', 'core/htmlparser/cdata' ],
+ 'core/htmlparser/text' : [ 'core/htmlparser' ],
+ 'core/htmlparser/cdata' : [ 'core/htmlparser' ],
+ 'core/htmlparser/filter' : [ 'core/htmlparser' ],
+ 'core/htmlparser/basicwriter': [ 'core/htmlparser' ],
+ 'core/lang' : [],
+ 'core/plugins' : [ 'core/resourcemanager' ],
+ 'core/resourcemanager' : [ 'core/scriptloader', 'core/tools' ],
+ 'core/scriptloader' : [ 'core/dom/element', 'core/env' ],
+ 'core/skins' : [ 'core/scriptloader' ],
+ 'core/themes' : [ 'core/resourcemanager' ],
+ 'core/tools' : [ 'core/env' ],
+ 'core/ui' : []
+ };
+
+ var basePath = (function()
+ {
+ // This is a copy of CKEDITOR.basePath, but requires the script having
+ // "_source/core/loader.js".
+ if ( CKEDITOR && CKEDITOR.basePath )
+ return CKEDITOR.basePath;
+
+ // Find out the editor directory path, based on its