| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444 |
- /*
- * 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, url_insertImg )
- {
- // Properties
- this.InstanceName = instanceName ;
- this.Width = width || '100%' ;
- this.Height = height || '200' ;
- this.ToolbarSet = toolbarSet || 'Default' ;
- this.Value = value || '' ;
- this.url_insertImg = url_insertImg || '';
- this.BasePath = '/fckeditor/' ;
- this.CheckBrowser = true ;
- this.DisplayErrors = true ;
- this.EnableSafari = false ; // This is a temporary property, while Safari support is under development.
- this.EnableOpera = false ; // This is a temporary property, while Opera support is under development.
- this.Config = new Object() ;
- // Events
- this.OnError = null ; // function( source, errorNumber, errorDescription )
- }
- FCKeditor.prototype.Version = '2.4.3' ;
- FCKeditor.prototype.VersionBuild = '15657' ;
- 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 = '<div>' ;
- if ( !this.CheckBrowser || this._IsCompatibleBrowser() )
- {
- sHtml += '<input type="hidden" id="' + this.InstanceName + '" name="' + this.InstanceName + '" value="' + this._HTMLEncode( this.Value ) + '" style="display:none" />' ;
- sHtml += this._GetConfigHtml() ;
- sHtml += 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' ;
- sHtml += '<textarea name="' + this.InstanceName + '" rows="4" cols="40" style="width:' + sWidth + ';height:' + sHeight + '">' + this._HTMLEncode( this.Value ) + '<\/textarea>' ;
- }
- sHtml += '</div>' ;
- return sHtml ;
- }
- FCKeditor.prototype.ReplaceTextarea = function()
- {
- if ( !this.CheckBrowser || this._IsCompatibleBrowser() )
- {
- // We must check the elements firstly using the Id and then the name.
- var oTextarea = document.getElementById( this.InstanceName ) ;
- var colElementsByName = document.getElementsByName( this.InstanceName ) ;
- var i = 0;
- while ( oTextarea || i == 0 )
- {
- if ( oTextarea && oTextarea.tagName.toLowerCase() == 'textarea' )
- break ;
- oTextarea = colElementsByName[i++] ;
- }
- if ( !oTextarea )
- {
- alert( 'Error: The TEXTAREA with id or name set to "' + this.InstanceName + '" was not found' ) ;
- return ;
- }
- oTextarea.style.display = 'none' ;
- this._InsertHtmlBefore( this._GetConfigHtml(), oTextarea ) ;
- this._InsertHtmlBefore( this._GetIFrameHtml(), oTextarea ) ;
- }
- }
- FCKeditor.prototype._InsertHtmlBefore = function( html, element )
- {
- if ( element.insertAdjacentHTML ) // IE
- element.insertAdjacentHTML( 'beforeBegin', html ) ;
- else // Gecko
- {
- var oRange = document.createRange() ;
- oRange.setStartBefore( element ) ;
- var oFragment = oRange.createContextualFragment( html );
- element.parentNode.insertBefore( oFragment, element ) ;
- }
- }
- FCKeditor.prototype._GetConfigHtml = function()
- {
- var sConfig = '' ;
- for ( var o in this.Config )
- {
- if ( sConfig.length > 0 ) sConfig += '&' ;
- sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.Config[o] ) ;
- }
- return '<input type="hidden" id="' + this.InstanceName + '___Config" value="' + sConfig + '" style="display:none" />' ;
- }
- FCKeditor.prototype._GetIFrameHtml = function()
- {
- var sFile = 'fckeditor.html' ;
- try
- {
- if ( (/fcksource=true/i).test( window.top.location.search ) )
- sFile = 'fckeditor.original.html' ;
- }
- catch (e) { /* Ignore it. Much probably we are inside a FRAME where the "top" is in another domain (security error). */ }
- var sLink = this.BasePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.InstanceName ) ;
- if (this.ToolbarSet) sLink += '&Toolbar=' + this.ToolbarSet ;
- return '<iframe onfocus="childFocus(\'' + this.InstanceName + '___Frame\')" id="' + this.InstanceName + '___Frame" src="' + sLink + '&v=2.3.html" width="' + this.Width + '" height="' + this.Height + '" frameborder="0" scrolling="no"></iframe>' ;
- }
- function childFocus(elm) {
- try{
- var ifr = document.getElementById(elm);
- ifr.contentWindow.document.getElementsByTagName('iframe')[0].contentWindow.focus();
- }catch(e){}
- }
- FCKeditor.prototype._IsCompatibleBrowser = function()
- {
- return FCKeditor_IsCompatibleBrowser( this.EnableSafari, this.EnableOpera ) ;
- }
- FCKeditor.prototype._ThrowError = function( errorNumber, errorDescription )
- {
- this.ErrorNumber = errorNumber ;
- this.ErrorDescription = errorDescription ;
- if ( this.DisplayErrors )
- {
- document.write( '<div style="COLOR: #ff0000">' ) ;
- document.write( '[ FCKeditor Error ' + this.ErrorNumber + ': ' + this.ErrorDescription + ' ]' ) ;
- document.write( '</div>' ) ;
- }
- if ( typeof( this.OnError ) == 'function' )
- this.OnError( this, errorNumber, errorDescription ) ;
- }
- FCKeditor.prototype._HTMLEncode = function( text )
- {
- if ( typeof( text ) != "string" )
- text = text.toString() ;
- text = text.replace(
- /&/g, "&").replace(
- /"/g, """).replace(
- /</g, "<").replace(
- />/g, ">") ;
- return text ;
- }
- function FCKeditor_IsCompatibleBrowser( enableSafari, enableOpera )
- {
- var sAgent = navigator.userAgent.toLowerCase() ;
- // Internet Explorer
- if ( sAgent.indexOf("msie") != -1 && sAgent.indexOf("mac") == -1 && sAgent.indexOf("opera") == -1 )
- {
- var sBrowserVersion = navigator.appVersion.match(/MSIE (.\..)/)[1] ;
- return ( sBrowserVersion >= 5.5 ) ;
- }
- // Gecko (Opera 9 tries to behave like Gecko at this point).
- if ( navigator.product == "Gecko" && navigator.productSub >= 20030210 && !( typeof(opera) == 'object' && opera.postError ) )
- return true ;
- // Opera
- if ( enableOpera && sAgent.indexOf( 'opera' ) == 0 && parseInt( navigator.appVersion, 10 ) >= 9 )
- return true ;
- // Safari
- if ( enableSafari && sAgent.indexOf( 'safari' ) != -1 )
- return ( sAgent.match( /safari\/(\d+)/ )[1] >= 312 ) ; // Build must be at least 312 (1.3)
- return false ;
- }
- var BD_F1 = true;
|