Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/_source/globals
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16237/phpslash-dev/public_html/scripts/fckeditor/editor/_source/globals
Added Files:
fck_constants.js fckeditorapi.js
Log Message:
added fckeditor to comment submittal.
--- NEW FILE: fck_constants.js ---
/*
* FCKeditor - The text editor for internet
* Copyright (C) 2003-2004 Frederico Caldeira Knabben
*
* Licensed under the terms of the GNU Lesser General Public License:
* http://www.opensource.org/licenses/lgpl-license.php
*
* For further information visit:
* http://www.fckeditor.net/
*
* File Name: fck_constants.js
* Defines some constants used by the editor. These constants are also
* globally available in the page where the editor is placed.
*
* Version: 2.0 Beta 1
* Modified: 2004-05-31 23:07:48
*
* File Authors:
* Frederico Caldeira Knabben (fr...@fc...)
*/
// Editor Instance Status.
FCK_STATUS_NOTLOADED = window.parent.FCK_STATUS_NOTLOADED = 0 ;
FCK_STATUS_ACTIVE = window.parent.FCK_STATUS_ACTIVE = 1 ;
FCK_STATUS_COMPLETE = window.parent.FCK_STATUS_COMPLETE = 2 ;
// Tristate Operations.
FCK_TRISTATE_OFF = window.parent.FCK_TRISTATE_OFF = 0 ;
FCK_TRISTATE_ON = window.parent.FCK_TRISTATE_ON = 1 ;
FCK_TRISTATE_DISABLED = window.parent.FCK_TRISTATE_DISABLED = -1 ;
// For unknown values.
FCK_UNKNOWN = window.parent.FCK_UNKNOWN = -1000 ;
// Toolbar Items Style.
FCK_TOOLBARITEM_ONLYICON = window.parent.FCK_TOOLBARITEM_ONLYTEXT = 0 ;
FCK_TOOLBARITEM_ONLYTEXT = window.parent.FCK_TOOLBARITEM_ONLYTEXT = 1 ;
FCK_TOOLBARITEM_ICONTEXT = window.parent.FCK_TOOLBARITEM_ONLYTEXT = 2 ;
// Edit Mode
FCK_EDITMODE_WYSIWYG = window.parent.FCK_EDITMODE_WYSIWYG = 0 ;
FCK_EDITMODE_SOURCE = window.parent.FCK_EDITMODE_SOURCE = 1 ;
--- NEW FILE: fckeditorapi.js ---
/*
* FCKeditor - The text editor for internet
* Copyright (C) 2003-2004 Frederico Caldeira Knabben
*
* Licensed under the terms of the GNU Lesser General Public License:
* http://www.opensource.org/licenses/lgpl-license.php
*
* For further information visit:
* http://www.fckeditor.net/
*
* File Name: fckeditorapi.js
* Create the FCKeditorAPI object that is available as a global object in
* the page where the editor is placed in.
*
* Version: 2.0 Beta 1
* Modified: 2004-05-31 23:07:48
*
* File Authors:
* Frederico Caldeira Knabben (fr...@fc...)
*/
var FCKeditorAPI ;
if ( !window.parent.FCKeditorAPI )
{
// Make the FCKeditorAPI object available in the parent window.
FCKeditorAPI = window.parent.FCKeditorAPI = new Object() ;
FCKeditorAPI.__Instances = new Object() ;
// Set the current version.
FCKeditorAPI.Version = '2.0 Beta 1' ;
// Function used to get a instance of an existing editor present in the
// page.
FCKeditorAPI.GetInstance = function( instanceName )
{
return this.__Instances[ instanceName ] ;
}
}
else
FCKeditorAPI = window.parent.FCKeditorAPI ;
// Add the current instance to the FCKeditorAPI's instances collection.
FCKeditorAPI.__Instances[ FCK.Name ] = FCK ;
|