Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F391022
fckscriptloader.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
4 KB
Subscribers
None
fckscriptloader.js
View Options
/*
* 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 a utility object which can be used to load specific components of
* FCKeditor, including all dependencies.
*/
var
FCK_GENERIC
=
1
;
var
FCK_GENERIC_SPECIFIC
=
2
;
var
FCK_SPECIFIC
=
3
;
var
FCKScriptLoader
=
new
Object
()
;
FCKScriptLoader
.
FCKeditorPath
=
'/fckeditor/'
;
FCKScriptLoader
.
_Scripts
=
new
Object
()
;
FCKScriptLoader
.
_LoadedScripts
=
new
Object
()
;
FCKScriptLoader
.
_IsIE
=
(
/msie/
).
test
(
navigator
.
userAgent
.
toLowerCase
()
)
;
FCKScriptLoader
.
Load
=
function
(
scriptName
)
{
// Check if the script has already been loaded.
if
(
scriptName
in
FCKScriptLoader
.
_LoadedScripts
)
return
;
var
oScriptInfo
=
this
.
_Scripts
[
scriptName
]
;
if
(
!
oScriptInfo
)
{
alert
(
'FCKScriptLoader: The script "'
+
scriptName
+
'" could not be loaded'
)
;
return
;
}
for
(
var
i
=
0
;
i
<
oScriptInfo
.
Dependency
.
length
;
i
++
)
{
this
.
Load
(
oScriptInfo
.
Dependency
[
i
]
)
;
}
var
sBaseScriptName
=
oScriptInfo
.
BasePath
+
scriptName
.
toLowerCase
()
;
if
(
oScriptInfo
.
Compatibility
==
FCK_GENERIC
||
oScriptInfo
.
Compatibility
==
FCK_GENERIC_SPECIFIC
)
this
.
_LoadScript
(
sBaseScriptName
+
'.js'
)
;
if
(
oScriptInfo
.
Compatibility
==
FCK_SPECIFIC
||
oScriptInfo
.
Compatibility
==
FCK_GENERIC_SPECIFIC
)
{
if
(
this
.
_IsIE
)
this
.
_LoadScript
(
sBaseScriptName
+
'_ie.js'
)
;
else
this
.
_LoadScript
(
sBaseScriptName
+
'_gecko.js'
)
;
}
FCKScriptLoader
.
_LoadedScripts
[
scriptName
]
=
true
;
}
FCKScriptLoader
.
_LoadScript
=
function
(
scriptPathFromSource
)
{
document
.
write
(
'<script type="text/javascript" src="'
+
this
.
FCKeditorPath
+
'editor/_source/'
+
scriptPathFromSource
+
'" onerror="alert(\'Error loading \' + scriptPathFromSource);"><\/script>'
)
;
}
FCKScriptLoader
.
AddScript
=
function
(
scriptName
,
scriptBasePath
,
dependency
,
compatibility
)
{
this
.
_Scripts
[
scriptName
]
=
{
BasePath
:
scriptBasePath
||
''
,
Dependency
:
dependency
||
[],
Compatibility
:
compatibility
||
FCK_GENERIC
}
;
}
/*
* ####################################
* ### Scripts Definition List
*/
FCKScriptLoader
.
AddScript
(
'FCKConstants'
)
;
FCKScriptLoader
.
AddScript
(
'FCKJSCoreExtensions'
)
;
FCKScriptLoader
.
AddScript
(
'FCKImagePreloader'
,
'classes/'
)
;
FCKScriptLoader
.
AddScript
(
'FCKBrowserInfo'
,
'internals/'
,
[
'FCKJSCoreExtensions'
]
)
;
FCKScriptLoader
.
AddScript
(
'FCKConfig'
,
'internals/'
)
;
FCKScriptLoader
.
AddScript
(
'FCKListsLib'
,
'internals/'
)
;
FCKScriptLoader
.
AddScript
(
'FCKDebug'
,
'internals/'
,
[
'FCKConfig'
]
)
;
FCKScriptLoader
.
AddScript
(
'FCKDomTools'
,
'internals/'
,
[
'FCKJSCoreExtensions'
],
FCK_GENERIC
)
;
FCKScriptLoader
.
AddScript
(
'FCKTools'
,
'internals/'
,
[
'FCKJSCoreExtensions'
,
'FCKBrowserInfo'
],
FCK_GENERIC_SPECIFIC
)
;
FCKScriptLoader
.
AddScript
(
'FCKElementPath'
,
'classes/'
,
[
'FCKListsLib'
],
FCK_GENERIC
)
;
FCKScriptLoader
.
AddScript
(
'FCKDocumentFragment'
,
'classes/'
,
[
'FCKDomTools'
],
FCK_SPECIFIC
)
;
FCKScriptLoader
.
AddScript
(
'FCKDomRange'
,
'classes/'
,
[
'FCKBrowserInfo'
,
'FCKJSCoreExtensions'
,
'FCKW3CRange'
,
'FCKElementPath'
,
'FCKDomTools'
,
'FCKTools'
,
'FCKDocumentFragment'
],
FCK_GENERIC_SPECIFIC
)
;
FCKScriptLoader
.
AddScript
(
'FCKEnterKey'
,
'classes/'
,
[
'FCKDomRange'
,
'FCKDomTools'
,
'FCKTools'
,
'FCKKeystrokeHandler'
,
'FCKListHandler'
],
FCK_GENERIC
)
;
FCKScriptLoader
.
AddScript
(
'FCKKeystrokeHandler'
,
'classes/'
,
[
'FCKConstants'
,
'FCKBrowserInfo'
,
'FCKTools'
],
FCK_GENERIC
)
;
FCKScriptLoader
.
AddScript
(
'FCKListHandler'
,
'internals/'
,
[
'FCKJSCoreExtensions'
,
'FCKDomTools'
,
'FCKTools'
],
FCK_GENERIC
)
;
FCKScriptLoader
.
AddScript
(
'FCKW3CRange'
,
'classes/'
,
[
'FCKDomTools'
,
'FCKTools'
,
'FCKDocumentFragment'
],
FCK_GENERIC
)
;
// ####################################
File Metadata
Details
Attached
Mime Type
text/html
Expires
Sat, Feb 22, 20:21 (15 h, 42 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
26124
Default Alt Text
fckscriptloader.js (4 KB)
Attached To
rZED Zed
Event Timeline
Log In to Comment