fckconfig.js
上传用户:ah_jiwei
上传日期:2022-07-24
资源大小:54044k
文件大小:8k
源码类别:

数据库编程

开发平台:

Visual C++

  1. /*
  2.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3.  * Copyright (C) 2003-2007 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. FCKConfig.FullBasePath = FCKConfig.BasePath ;
  41. }
  42. else
  43. {
  44. FCKConfig.BasePath = document.location.pathname.substring( 0, document.location.pathname.lastIndexOf( '/' ) + 1) ;
  45. FCKConfig.FullBasePath = document.location.protocol + '//' + document.location.host + FCKConfig.BasePath ;
  46. }
  47. FCKConfig.EditorPath = FCKConfig.BasePath.replace( /editor/$/, '' ) ;
  48. // There is a bug in Gecko. If the editor is hidden on startup, an error is
  49. // thrown when trying to get the screen dimensions.
  50. try
  51. {
  52. FCKConfig.ScreenWidth = screen.width ;
  53. FCKConfig.ScreenHeight = screen.height ;
  54. }
  55. catch (e)
  56. {
  57. FCKConfig.ScreenWidth = 800 ;
  58. FCKConfig.ScreenHeight = 600 ;
  59. }
  60. // Override the actual configuration values with the values passed throw the
  61. // hidden field "<InstanceName>___Config".
  62. FCKConfig.ProcessHiddenField = function()
  63. {
  64. this.PageConfig = new Object() ;
  65. // Get the hidden field.
  66. var oConfigField = window.parent.document.getElementById( FCK.Name + '___Config' ) ;
  67. // Do nothing if the config field was not defined.
  68. if ( ! oConfigField ) return ;
  69. var aCouples = oConfigField.value.split('&') ;
  70. for ( var i = 0 ; i < aCouples.length ; i++ )
  71. {
  72. if ( aCouples[i].length == 0 )
  73. continue ;
  74. var aConfig = aCouples[i].split( '=' ) ;
  75. var sKey = decodeURIComponent( aConfig[0] ) ;
  76. var sVal = decodeURIComponent( aConfig[1] ) ;
  77. if ( sKey == 'CustomConfigurationsPath' ) // The Custom Config File path must be loaded immediately.
  78. FCKConfig[ sKey ] = sVal ;
  79. else if ( sVal.toLowerCase() == "true" ) // If it is a boolean TRUE.
  80. this.PageConfig[ sKey ] = true ;
  81. else if ( sVal.toLowerCase() == "false" ) // If it is a boolean FALSE.
  82. this.PageConfig[ sKey ] = false ;
  83. else if ( sVal.length > 0 && !isNaN( sVal ) ) // If it is a number.
  84. this.PageConfig[ sKey ] = parseInt( sVal, 10 ) ;
  85. else // In any other case it is a string.
  86. this.PageConfig[ sKey ] = sVal ;
  87. }
  88. }
  89. function FCKConfig_LoadPageConfig()
  90. {
  91. var oPageConfig = FCKConfig.PageConfig ;
  92. for ( var sKey in oPageConfig )
  93. FCKConfig[ sKey ] = oPageConfig[ sKey ] ;
  94. }
  95. function FCKConfig_PreProcess()
  96. {
  97. var oConfig = FCKConfig ;
  98. // Force debug mode if fckdebug=true in the QueryString (main page).
  99. if ( oConfig.AllowQueryStringDebug )
  100. {
  101. try
  102. {
  103. if ( (/fckdebug=true/i).test( window.top.location.search ) )
  104. oConfig.Debug = true ;
  105. }
  106. catch (e) { /* Ignore it. Much probably we are inside a FRAME where the "top" is in another domain (security error). */ }
  107. }
  108. // Certifies that the "PluginsPath" configuration ends with a slash.
  109. if ( !oConfig.PluginsPath.EndsWith('/') )
  110. oConfig.PluginsPath += '/' ;
  111. // EditorAreaCSS accepts a single path string, a list of paths separated by
  112. // a comma or and array of paths.
  113. // In the string cases, transform it in an array.
  114. if ( typeof( oConfig.EditorAreaCSS ) == 'string' )
  115. oConfig.EditorAreaCSS = oConfig.EditorAreaCSS.split(',') ;
  116. var sComboPreviewCSS = oConfig.ToolbarComboPreviewCSS ;
  117. if ( !sComboPreviewCSS || sComboPreviewCSS.length == 0 )
  118. oConfig.ToolbarComboPreviewCSS = oConfig.EditorAreaCSS ;
  119. else if ( typeof( sComboPreviewCSS ) == 'string' )
  120. oConfig.ToolbarComboPreviewCSS = [ sComboPreviewCSS ] ;
  121. }
  122. // Define toolbar sets collection.
  123. FCKConfig.ToolbarSets = new Object() ;
  124. // Defines the plugins collection.
  125. FCKConfig.Plugins = new Object() ;
  126. FCKConfig.Plugins.Items = new Array() ;
  127. FCKConfig.Plugins.Add = function( name, langs, path )
  128. {
  129. FCKConfig.Plugins.Items.AddItem( [name, langs, path] ) ;
  130. }
  131. // FCKConfig.ProtectedSource: object that holds a collection of Regular
  132. // Expressions that defined parts of the raw HTML that must remain untouched
  133. // like custom tags, scripts, server side code, etc...
  134. FCKConfig.ProtectedSource = new Object() ;
  135. // Generates a string used to identify and locate the Protected Tags comments.
  136. FCKConfig.ProtectedSource._CodeTag = (new Date()).valueOf() ;
  137. // Initialize the regex array with the default ones.
  138. FCKConfig.ProtectedSource.RegexEntries = [
  139. // First of any other protection, we must protect all comments to avoid
  140. // loosing them (of course, IE related).
  141. /<!--[sS]*?-->/g ,
  142. // Script tags will also be forced to be protected, otherwise IE will execute them.
  143. /<script[sS]*?</script>/gi,
  144. // <noscript> tags (get lost in IE and messed up in FF).
  145. /<noscript[sS]*?</noscript>/gi,
  146. // Protect <object> tags. See #359.
  147. /<object[sS]+?</object>/gi
  148. ] ;
  149. FCKConfig.ProtectedSource.Add = function( regexPattern )
  150. {
  151. this.RegexEntries.AddItem( regexPattern ) ;
  152. }
  153. FCKConfig.ProtectedSource.Protect = function( html )
  154. {
  155. var codeTag = this._CodeTag ;
  156. function _Replace( protectedSource )
  157. {
  158. var index = FCKTempBin.AddElement( protectedSource ) ;
  159. return '<!--{' + codeTag + index + '}-->' ;
  160. }
  161. for ( var i = 0 ; i < this.RegexEntries.length ; i++ )
  162. {
  163. html = html.replace( this.RegexEntries[i], _Replace ) ;
  164. }
  165. return html ;
  166. }
  167. FCKConfig.ProtectedSource.Revert = function( html, clearBin )
  168. {
  169. function _Replace( m, opener, index )
  170. {
  171. var protectedValue = clearBin ? FCKTempBin.RemoveElement( index ) : FCKTempBin.Elements[ index ] ;
  172. // There could be protected source inside another one.
  173. return FCKConfig.ProtectedSource.Revert( protectedValue, clearBin ) ;
  174. }
  175. var regex = new RegExp( "(<|&lt;)!--\{" + this._CodeTag + "(\d+)\}--(>|&gt;)", "g" ) ;
  176. return html.replace( regex, _Replace ) ;
  177. }
  178. // Returns a string with the attributes that must be appended to the body
  179. FCKConfig.GetBodyAttributes = function()
  180. {
  181. var bodyAttributes = '' ;
  182. // Add id and class to the body.
  183. if ( this.BodyId && this.BodyId.length > 0 )
  184. bodyAttributes += ' id="' + this.BodyId + '"' ;
  185. if ( this.BodyClass && this.BodyClass.length > 0 )
  186. bodyAttributes += ' class="' + this.BodyClass + '"' ;
  187. return bodyAttributes ;
  188. }
  189. // Sets the body attributes directly on the node
  190. FCKConfig.ApplyBodyAttributes = function( oBody )
  191. {
  192. // Add ID and Class to the body
  193. if ( this.BodyId && this.BodyId.length > 0 )
  194. oBody.id = FCKConfig.BodyId ;
  195. if ( this.BodyClass && this.BodyClass.length > 0 )
  196. oBody.className += ' ' + FCKConfig.BodyClass ;
  197. }