fckconfig.js
上传用户:dbstep
上传日期:2022-08-06
资源大小:2803k
文件大小:8k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

ASP/ASPX

  1. /*
  2.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3.  * Copyright (C) 2003-2009 Frederico Caldeira Knabben
  4.  *
  5.  * == BEGIN LICENSE ==
  6.  *
  7.  * Licensed under the terms of any of the following licenses at your
  8.  * choice:
  9.  *
  10.  *  - GNU General Public License Version 2 or later (the "GPL")
  11.  *    http://www.gnu.org/licenses/gpl.html
  12.  *
  13.  *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  14.  *    http://www.gnu.org/licenses/lgpl.html
  15.  *
  16.  *  - Mozilla Public License Version 1.1 or later (the "MPL")
  17.  *    http://www.mozilla.org/MPL/MPL-1.1.html
  18.  *
  19.  * == END LICENSE ==
  20.  *
  21.  * Creates and initializes the FCKConfig object.
  22.  */
  23. var FCKConfig = FCK.Config = new Object() ;
  24. /*
  25. For the next major version (probably 3.0) we should move all this stuff to
  26. another dedicated object and leave FCKConfig as a holder object for settings only).
  27. */
  28. // Editor Base Path
  29. if ( document.location.protocol == 'file:' )
  30. {
  31. FCKConfig.BasePath = decodeURIComponent( document.location.pathname.substr(1) ) ;
  32. FCKConfig.BasePath = FCKConfig.BasePath.replace( /\/gi, '/' ) ;
  33. // The way to address local files is different according to the OS.
  34. // In Windows it is file:// but in MacOs it is file:/// so let's get it automatically
  35. var sFullProtocol = document.location.href.match( /^(file:/{2,3})/ )[1] ;
  36. // #945 Opera does strange things with files loaded from the disk, and it fails in Mac to load xml files
  37. if ( FCKBrowserInfo.IsOpera )
  38. sFullProtocol += 'localhost/' ;
  39. FCKConfig.BasePath = sFullProtocol + FCKConfig.BasePath.substring( 0, FCKConfig.BasePath.lastIndexOf( '/' ) + 1) ;
  40. }
  41. else
  42. FCKConfig.BasePath = document.location.protocol + '//' + document.location.host +
  43. document.location.pathname.substring( 0, document.location.pathname.lastIndexOf( '/' ) + 1) ;
  44. FCKConfig.FullBasePath = FCKConfig.BasePath ;
  45. FCKConfig.EditorPath = FCKConfig.BasePath.replace( /editor/$/, '' ) ;
  46. // There is a bug in Gecko. If the editor is hidden on startup, an error is
  47. // thrown when trying to get the screen dimensions.
  48. try
  49. {
  50. FCKConfig.ScreenWidth = screen.width ;
  51. FCKConfig.ScreenHeight = screen.height ;
  52. }
  53. catch (e)
  54. {
  55. FCKConfig.ScreenWidth = 800 ;
  56. FCKConfig.ScreenHeight = 600 ;
  57. }
  58. // Override the actual configuration values with the values passed throw the
  59. // hidden field "<InstanceName>___Config".
  60. FCKConfig.ProcessHiddenField = function()
  61. {
  62. this.PageConfig = new Object() ;
  63. // Get the hidden field.
  64. var oConfigField = window.parent.document.getElementById( FCK.Name + '___Config' ) ;
  65. // Do nothing if the config field was not defined.
  66. if ( ! oConfigField ) return ;
  67. var aCouples = oConfigField.value.split('&') ;
  68. for ( var i = 0 ; i < aCouples.length ; i++ )
  69. {
  70. if ( aCouples[i].length == 0 )
  71. continue ;
  72. var aConfig = aCouples[i].split( '=' ) ;
  73. var sKey = decodeURIComponent( aConfig[0] ) ;
  74. var sVal = decodeURIComponent( aConfig[1] ) ;
  75. if ( sKey == 'CustomConfigurationsPath' ) // The Custom Config File path must be loaded immediately.
  76. FCKConfig[ sKey ] = sVal ;
  77. else if ( sVal.toLowerCase() == "true" ) // If it is a boolean TRUE.
  78. this.PageConfig[ sKey ] = true ;
  79. else if ( sVal.toLowerCase() == "false" ) // If it is a boolean FALSE.
  80. this.PageConfig[ sKey ] = false ;
  81. else if ( sVal.length > 0 && !isNaN( sVal ) ) // If it is a number.
  82. this.PageConfig[ sKey ] = parseInt( sVal, 10 ) ;
  83. else // In any other case it is a string.
  84. this.PageConfig[ sKey ] = sVal ;
  85. }
  86. }
  87. function FCKConfig_LoadPageConfig()
  88. {
  89. var oPageConfig = FCKConfig.PageConfig ;
  90. for ( var sKey in oPageConfig )
  91. FCKConfig[ sKey ] = oPageConfig[ sKey ] ;
  92. }
  93. function FCKConfig_PreProcess()
  94. {
  95. var oConfig = FCKConfig ;
  96. // Force debug mode if fckdebug=true in the QueryString (main page).
  97. if ( oConfig.AllowQueryStringDebug )
  98. {
  99. try
  100. {
  101. if ( (/fckdebug=true/i).test( window.top.location.search ) )
  102. oConfig.Debug = true ;
  103. }
  104. catch (e) { /* Ignore it. Much probably we are inside a FRAME where the "top" is in another domain (security error). */ }
  105. }
  106. // Certifies that the "PluginsPath" configuration ends with a slash.
  107. if ( !oConfig.PluginsPath.EndsWith('/') )
  108. oConfig.PluginsPath += '/' ;
  109. // If no ToolbarComboPreviewCSS, point it to EditorAreaCSS.
  110. var sComboPreviewCSS = oConfig.ToolbarComboPreviewCSS ;
  111. if ( !sComboPreviewCSS || sComboPreviewCSS.length == 0 )
  112. oConfig.ToolbarComboPreviewCSS = oConfig.EditorAreaCSS ;
  113. // Turn the attributes that will be removed in the RemoveFormat from a string to an array
  114. oConfig.RemoveAttributesArray = (oConfig.RemoveAttributes || '').split( ',' );
  115. if ( !FCKConfig.SkinEditorCSS || FCKConfig.SkinEditorCSS.length == 0 )
  116. FCKConfig.SkinEditorCSS = FCKConfig.SkinPath + 'fck_editor.css' ;
  117. if ( !FCKConfig.SkinDialogCSS || FCKConfig.SkinDialogCSS.length == 0 )
  118. FCKConfig.SkinDialogCSS = FCKConfig.SkinPath + 'fck_dialog.css' ;
  119. }
  120. // Define toolbar sets collection.
  121. FCKConfig.ToolbarSets = new Object() ;
  122. // Defines the plugins collection.
  123. FCKConfig.Plugins = new Object() ;
  124. FCKConfig.Plugins.Items = new Array() ;
  125. FCKConfig.Plugins.Add = function( name, langs, path )
  126. {
  127. FCKConfig.Plugins.Items.push( [name, langs, path] ) ;
  128. }
  129. // FCKConfig.ProtectedSource: object that holds a collection of Regular
  130. // Expressions that defined parts of the raw HTML that must remain untouched
  131. // like custom tags, scripts, server side code, etc...
  132. FCKConfig.ProtectedSource = new Object() ;
  133. // Generates a string used to identify and locate the Protected Tags comments.
  134. FCKConfig.ProtectedSource._CodeTag = (new Date()).valueOf() ;
  135. // Initialize the regex array with the default ones.
  136. FCKConfig.ProtectedSource.RegexEntries = [
  137. // First of any other protection, we must protect all comments to avoid
  138. // loosing them (of course, IE related).
  139. /<!--[sS]*?-->/g ,
  140. // Script tags will also be forced to be protected, otherwise IE will execute them.
  141. /<script[sS]*?</script>/gi,
  142. // <noscript> tags (get lost in IE and messed up in FF).
  143. /<noscript[sS]*?</noscript>/gi
  144. ] ;
  145. FCKConfig.ProtectedSource.Add = function( regexPattern )
  146. {
  147. this.RegexEntries.push( regexPattern ) ;
  148. }
  149. FCKConfig.ProtectedSource.Protect = function( html )
  150. {
  151. var codeTag = this._CodeTag ;
  152. function _Replace( protectedSource )
  153. {
  154. var index = FCKTempBin.AddElement( protectedSource ) ;
  155. return '<!--{' + codeTag + index + '}-->' ;
  156. }
  157. for ( var i = 0 ; i < this.RegexEntries.length ; i++ )
  158. {
  159. html = html.replace( this.RegexEntries[i], _Replace ) ;
  160. }
  161. return html ;
  162. }
  163. FCKConfig.ProtectedSource.Revert = function( html, clearBin )
  164. {
  165. function _Replace( m, opener, index )
  166. {
  167. var protectedValue = clearBin ? FCKTempBin.RemoveElement( index ) : FCKTempBin.Elements[ index ] ;
  168. // There could be protected source inside another one.
  169. return FCKConfig.ProtectedSource.Revert( protectedValue, clearBin ) ;
  170. }
  171. var regex = new RegExp( "(<|&lt;)!--\{" + this._CodeTag + "(\d+)\}--(>|&gt;)", "g" ) ;
  172. return html.replace( regex, _Replace ) ;
  173. }
  174. // Returns a string with the attributes that must be appended to the body
  175. FCKConfig.GetBodyAttributes = function()
  176. {
  177. var bodyAttributes = '' ;
  178. // Add id and class to the body.
  179. if ( this.BodyId && this.BodyId.length > 0 )
  180. bodyAttributes += ' id="' + this.BodyId + '"' ;
  181. if ( this.BodyClass && this.BodyClass.length > 0 )
  182. bodyAttributes += ' class="' + this.BodyClass + '"' ;
  183. return bodyAttributes ;
  184. }
  185. // Sets the body attributes directly on the node
  186. FCKConfig.ApplyBodyAttributes = function( oBody )
  187. {
  188. // Add ID and Class to the body
  189. if ( this.BodyId && this.BodyId.length > 0 )
  190. oBody.id = FCKConfig.BodyId ;
  191. if ( this.BodyClass && this.BodyClass.length > 0 )
  192. oBody.className += ' ' + FCKConfig.BodyClass ;
  193. }