Index: lams_central/web/fckeditor/fckeditor.js
===================================================================
RCS file: /usr/local/cvsroot/lams_central/web/fckeditor/Attic/fckeditor.js,v
diff -u -r1.7 -r1.8
--- lams_central/web/fckeditor/fckeditor.js 4 Jan 2008 07:40:55 -0000 1.7
+++ lams_central/web/fckeditor/fckeditor.js 6 Feb 2009 02:42:23 -0000 1.8
@@ -1,299 +1,332 @@
-/*
- * FCKeditor - The text editor for Internet - http://www.fckeditor.net
- * Copyright (C) 2003-2007 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 ==
- *
- * 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.
- */
-
-// FCKeditor Class
-var FCKeditor = function( instanceName, width, height, toolbarSet, value )
-{
- // Properties
- this.InstanceName = instanceName ;
- this.Width = width || '100%' ;
- this.Height = height || '200' ;
- this.ToolbarSet = toolbarSet || 'Default' ;
- this.Value = value || '' ;
- this.BasePath = FCKeditor.BasePath ;
- this.CheckBrowser = true ;
- this.DisplayErrors = true ;
-
- this.Config = new Object() ;
-
- // Events
- this.OnError = null ; // function( source, errorNumber, errorDescription )
-}
-
-/**
- * This is the default BasePath used by all editor instances.
- */
-FCKeditor.BasePath = '/fckeditor/' ;
-
-/**
- * The minimum height used when replacing textareas.
- */
-FCKeditor.MinHeight = 200 ;
-
-/**
- * The minimum width used when replacing textareas.
- */
-FCKeditor.MinWidth = 750 ;
-
-FCKeditor.prototype.Version = '2.5.1' ;
-FCKeditor.prototype.VersionBuild = '17566' ;
-
-FCKeditor.prototype.Create = function()
-{
- document.write( this.CreateHtml() ) ;
-}
-
-FCKeditor.prototype.CreateHtml = function()
-{
- // Check for errors
- if ( !this.InstanceName || this.InstanceName.length == 0 )
- {
- this._ThrowError( 701, 'You must specify an instance name.' ) ;
- return '' ;
- }
-
- var sHtml = '