Index: Editor/branches/prototype/_source/core/pluginDefinition.js
===================================================================
--- /CKEditor/branches/prototype/_source/core/pluginDefinition.js	(revision 2355)
+++ 	(revision )
@@ -1,84 +1,0 @@
-﻿/*
- * CKEditor - The text editor for Internet - http://ckeditor.com
- * Copyright (C) 2003-2008 Frederico Caldeira Knabben
- *
- * == BEGIN LICENSE ==
- *
- * Licensed under the terms of any of the following licenses at your
- * choice:
- *
- *  - GNU General Public License Version 2 or later (the "GPL")
- *    http://www.gnu.org/licenses/gpl.html
- *
- *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
- *    http://www.gnu.org/licenses/lgpl.html
- *
- *  - Mozilla Public License Version 1.1 or later (the "MPL")
- *    http://www.mozilla.org/MPL/MPL-1.1.html
- *
- * == END LICENSE ==
- */
-
-/**
- * @fileOverview Defines the "virtual" {@link CKEDITOR.pluginDefinition} class, which
- *		contains the defintion of a plugin. This file is for documentation
- *		purposes only.
- */
-
-/**
- * (Virtual Class) Do not call this constructor. This class is not really part
- *		of the API. It just illustrates the features of plugin objects to be
- *		passed to the {@link CKEDITOR.plugins.add} function.
- * @name CKEDITOR.pluginDefinition
- * @constructor
- * @example
- */
-
-/**
- * A list of plugins that are required by this plugin. Note that this property
- * doesn't guarantee the loading order of the plugins.
- * @name CKEDITOR.pluginDefinition.prototype.requires
- * @type Array
- * @example
- * CKEDITOR.plugins.add( 'sample',
- * {
- *     requires : [ 'button', 'selection' ]
- * });
- */
-
- /**
- * Function called on initialization of every editor instance created in the
- * page before the init() call task. The beforeInit function will be called for
- * all plugins, after that the init function is called for all of them. This
- * feature makes it possible to initialize things that could be used in the
- * init function of other plugins.
- * @name CKEDITOR.pluginDefinition.prototype.beforeInit
- * @function
- * @param {CKEDITOR.editor} editor The editor instance being initialized.
- * @param {String} pluginPath The URL path for the plugin installation folder.
- * @example
- * CKEDITOR.plugins.add( 'sample',
- * {
- *     beforeInit : function( editor, pluginPath )
- *     {
- *         alert( 'Editor "' + editor.name + '" is to be initialized!' );
- *     }
- * });
- */
-
- /**
- * Function called on initialization of every editor instance created in the
- * page.
- * @name CKEDITOR.pluginDefinition.prototype.init
- * @function
- * @param {CKEDITOR.editor} editor The editor instance being initialized.
- * @param {String} pluginPath The URL path for the plugin installation folder.
- * @example
- * CKEDITOR.plugins.add( 'sample',
- * {
- *     init : function( editor, pluginPath )
- *     {
- *         alert( 'Editor "' + editor.name + '" is being initialized!' );
- *     }
- * });
- */
Index: /CKEditor/branches/prototype/_source/core/plugindefinition.js
===================================================================
--- /CKEditor/branches/prototype/_source/core/plugindefinition.js	(revision 2356)
+++ /CKEditor/branches/prototype/_source/core/plugindefinition.js	(revision 2356)
@@ -0,0 +1,84 @@
+﻿/*
+ * CKEditor - The text editor for Internet - http://ckeditor.com
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
+ *
+ * == BEGIN LICENSE ==
+ *
+ * Licensed under the terms of any of the following licenses at your
+ * choice:
+ *
+ *  - GNU General Public License Version 2 or later (the "GPL")
+ *    http://www.gnu.org/licenses/gpl.html
+ *
+ *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
+ *    http://www.gnu.org/licenses/lgpl.html
+ *
+ *  - Mozilla Public License Version 1.1 or later (the "MPL")
+ *    http://www.mozilla.org/MPL/MPL-1.1.html
+ *
+ * == END LICENSE ==
+ */
+
+/**
+ * @fileOverview Defines the "virtual" {@link CKEDITOR.pluginDefinition} class, which
+ *		contains the defintion of a plugin. This file is for documentation
+ *		purposes only.
+ */
+
+/**
+ * (Virtual Class) Do not call this constructor. This class is not really part
+ *		of the API. It just illustrates the features of plugin objects to be
+ *		passed to the {@link CKEDITOR.plugins.add} function.
+ * @name CKEDITOR.pluginDefinition
+ * @constructor
+ * @example
+ */
+
+/**
+ * A list of plugins that are required by this plugin. Note that this property
+ * doesn't guarantee the loading order of the plugins.
+ * @name CKEDITOR.pluginDefinition.prototype.requires
+ * @type Array
+ * @example
+ * CKEDITOR.plugins.add( 'sample',
+ * {
+ *     requires : [ 'button', 'selection' ]
+ * });
+ */
+
+ /**
+ * Function called on initialization of every editor instance created in the
+ * page before the init() call task. The beforeInit function will be called for
+ * all plugins, after that the init function is called for all of them. This
+ * feature makes it possible to initialize things that could be used in the
+ * init function of other plugins.
+ * @name CKEDITOR.pluginDefinition.prototype.beforeInit
+ * @function
+ * @param {CKEDITOR.editor} editor The editor instance being initialized.
+ * @param {String} pluginPath The URL path for the plugin installation folder.
+ * @example
+ * CKEDITOR.plugins.add( 'sample',
+ * {
+ *     beforeInit : function( editor, pluginPath )
+ *     {
+ *         alert( 'Editor "' + editor.name + '" is to be initialized!' );
+ *     }
+ * });
+ */
+
+ /**
+ * Function called on initialization of every editor instance created in the
+ * page.
+ * @name CKEDITOR.pluginDefinition.prototype.init
+ * @function
+ * @param {CKEDITOR.editor} editor The editor instance being initialized.
+ * @param {String} pluginPath The URL path for the plugin installation folder.
+ * @example
+ * CKEDITOR.plugins.add( 'sample',
+ * {
+ *     init : function( editor, pluginPath )
+ *     {
+ *         alert( 'Editor "' + editor.name + '" is being initialized!' );
+ *     }
+ * });
+ */
