Index: branches/RC/admin/editor/cmseditor/fckeditor.js =================================================================== diff -u -N --- branches/RC/admin/editor/cmseditor/fckeditor.js (revision 8929) +++ branches/RC/admin/editor/cmseditor/fckeditor.js (revision 0) @@ -1,176 +0,0 @@ -/* - * 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: fckeditor.js - * This is the integration file for JavaScript. - * - * It defines the FCKeditor class that can be used to create editor - * instances in a HTML page in the client side. For server side - * operations, use the specific integration system. - * - * Version: 2.0 RC3 - * Modified: 2005-02-27 19:04:39 - * - * File Authors: - * Frederico Caldeira Knabben (fredck@fckeditor.net) - */ -// FCKeditor Class -var FCKeditor = function( instanceName, width, height, toolbarSet, value ) -{ - // Properties - this.InstanceName = instanceName ; - this.Width = width || '100%' ; - this.Height = height || '100%' ; - this.ToolbarSet = toolbarSet || 'Default' ; - this.Value = value || '' ; - this.BasePath = '/fckeditor/' ; - this.CheckBrowser = true ; - this.DisplayErrors = true ; - //this.ProjectDir = ''; - - this.Config = new Object() ; - - // Events - this.OnError = null ; // function( source, errorNumber, errorDescription ) -} - -FCKeditor.prototype.Create = function() -{ - // Check for errors - if ( !this.InstanceName || this.InstanceName.length == 0 ) - { - this._ThrowError( 701, 'You must specify a instance name.' ) ; - return ; - } - - document.write( '
' ) ; - - if ( !this.CheckBrowser || this._IsCompatibleBrowser() ) - { - document.write( '' ) ; - document.write( this._GetConfigHtml() ) ; - document.write( this._GetIFrameHtml() ) ; - } - else - { - var sWidth = this.Width.toString().indexOf('%') > 0 ? this.Width : this.Width + 'px' ; - var sHeight = this.Height.toString().indexOf('%') > 0 ? this.Height : this.Height + 'px' ; - document.write('