Lines Matching refs:FCKConfig

24 var FCKConfig = FCK.Config = new Object() ;  variable
34 FCKConfig.BasePath = decodeURIComponent( document.location.pathname.substr(1) ) ;
35 FCKConfig.BasePath = FCKConfig.BasePath.replace( /\\/gi, '/' ) ;
44FCKConfig.BasePath = sFullProtocol + FCKConfig.BasePath.substring( 0, FCKConfig.BasePath.lastIndex…
45 FCKConfig.FullBasePath = FCKConfig.BasePath ;
49FCKConfig.BasePath = document.location.pathname.substring( 0, document.location.pathname.lastIndex…
50FCKConfig.FullBasePath = document.location.protocol + '//' + document.location.host + FCKConfig.Ba…
53 FCKConfig.EditorPath = FCKConfig.BasePath.replace( /editor\/$/, '' ) ;
59 FCKConfig.ScreenWidth = screen.width ;
60 FCKConfig.ScreenHeight = screen.height ;
64 FCKConfig.ScreenWidth = 800 ;
65 FCKConfig.ScreenHeight = 600 ;
70 FCKConfig.ProcessHiddenField = function()
92 FCKConfig[ sKey ] = sVal ;
110 var oPageConfig = FCKConfig.PageConfig ;
112 FCKConfig[ sKey ] = oPageConfig[ sKey ] ;
117 var oConfig = FCKConfig ;
148 FCKConfig.ToolbarSets = new Object() ;
151 FCKConfig.Plugins = new Object() ;
152 FCKConfig.Plugins.Items = new Array() ;
154 FCKConfig.Plugins.Add = function( name, langs, path )
156 FCKConfig.Plugins.Items.AddItem( [name, langs, path] ) ;
162 FCKConfig.ProtectedSource = new Object() ;
165 FCKConfig.ProtectedSource._CodeTag = (new Date()).valueOf() ;
168 FCKConfig.ProtectedSource.RegexEntries = [
183 FCKConfig.ProtectedSource.Add = function( regexPattern )
188 FCKConfig.ProtectedSource.Protect = function( html )
205 FCKConfig.ProtectedSource.Revert = function( html, clearBin )
211 return FCKConfig.ProtectedSource.Revert( protectedValue, clearBin ) ;
219 FCKConfig.GetBodyAttributes = function()
232 FCKConfig.ApplyBodyAttributes = function( oBody )
236 oBody.id = FCKConfig.BodyId ;
238 oBody.className += ' ' + FCKConfig.BodyClass ;