2007-04-14 14:21:09 +02:00
|
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
2006-11-07 19:18:22 +01:00
|
|
|
|
<!--
|
2007-04-14 14:21:09 +02:00
|
|
|
|
* 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 ==
|
|
|
|
|
*
|
|
|
|
|
* Main page that holds the editor.
|
2006-11-07 19:18:22 +01:00
|
|
|
|
-->
|
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
|
<head>
|
|
|
|
|
<title>FCKeditor</title>
|
|
|
|
|
<meta name="robots" content="noindex, nofollow" />
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
|
<meta http-equiv="Cache-Control" content="public" />
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
|
|
// Instead of loading scripts and CSSs using inline tags, all scripts are
|
|
|
|
|
// loaded by code. In this way we can guarantee the correct processing order,
|
|
|
|
|
// otherwise external scripts and inline scripts could be executed in an
|
|
|
|
|
// unwanted order (IE).
|
|
|
|
|
|
|
|
|
|
function LoadScript( url )
|
|
|
|
|
{
|
2007-04-14 14:21:09 +02:00
|
|
|
|
document.write( '<scr' + 'ipt type="text/javascript" src="' + url + '" onerror="alert(\'Error loading \' + this.src);"><\/scr' + 'ipt>' ) ;
|
2006-11-07 19:18:22 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function LoadCss( url )
|
|
|
|
|
{
|
|
|
|
|
document.write( '<link href="' + url + '" type="text/css" rel="stylesheet" onerror="alert(\'Error loading \' + this.src);" />' ) ;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Main editor scripts.
|
|
|
|
|
var sSuffix = /msie/.test( navigator.userAgent.toLowerCase() ) ? 'ie' : 'gecko' ;
|
|
|
|
|
|
|
|
|
|
LoadScript( 'js/fckeditorcode_' + sSuffix + '.js' ) ;
|
|
|
|
|
|
|
|
|
|
// Base configuration file.
|
|
|
|
|
LoadScript( '../fckconfig.js' ) ;
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
|
|
if ( FCKBrowserInfo.IsIE )
|
|
|
|
|
{
|
2007-04-14 14:21:09 +02:00
|
|
|
|
// Remove IE mouse flickering.
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
document.execCommand( 'BackgroundImageCache', false, true ) ;
|
|
|
|
|
}
|
|
|
|
|
catch (e)
|
|
|
|
|
{
|
|
|
|
|
// We have been reported about loading problems caused by the above
|
|
|
|
|
// line. For safety, let's just ignore errors.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Create the default cleanup object used by the editor.
|
2006-11-07 19:18:22 +01:00
|
|
|
|
FCK.IECleanup = new FCKIECleanup( window ) ;
|
|
|
|
|
FCK.IECleanup.AddItem( FCKTempBin, FCKTempBin.Reset ) ;
|
|
|
|
|
FCK.IECleanup.AddItem( FCK, FCK_Cleanup ) ;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// The config hidden field is processed immediately, because
|
|
|
|
|
// CustomConfigurationsPath may be set in the page.
|
|
|
|
|
FCKConfig.ProcessHiddenField() ;
|
|
|
|
|
|
|
|
|
|
// Load the custom configurations file (if defined).
|
|
|
|
|
if ( FCKConfig.CustomConfigurationsPath.length > 0 )
|
|
|
|
|
LoadScript( FCKConfig.CustomConfigurationsPath ) ;
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
|
|
// Load configurations defined at page level.
|
|
|
|
|
FCKConfig_LoadPageConfig() ;
|
|
|
|
|
|
|
|
|
|
FCKConfig_PreProcess() ;
|
|
|
|
|
|
|
|
|
|
// Load the active skin CSS.
|
|
|
|
|
LoadCss( FCKConfig.SkinPath + 'fck_editor.css' ) ;
|
|
|
|
|
|
|
|
|
|
// Load the language file.
|
|
|
|
|
FCKLanguageManager.Initialize() ;
|
|
|
|
|
LoadScript( 'lang/' + FCKLanguageManager.ActiveLanguage.Code + '.js' ) ;
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
|
|
// Initialize the editing area context menu.
|
|
|
|
|
FCK_ContextMenu_Init() ;
|
|
|
|
|
|
|
|
|
|
FCKPlugins.Load() ;
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
<script type="text/javascript">
|
2007-04-14 14:21:09 +02:00
|
|
|
|
|
2006-11-07 19:18:22 +01:00
|
|
|
|
// Set the editor interface direction.
|
|
|
|
|
window.document.dir = FCKLang.Dir ;
|
|
|
|
|
|
|
|
|
|
// Activate pasting operations.
|
|
|
|
|
if ( FCKConfig.ForcePasteAsPlainText || FCKConfig.AutoDetectPasteFromWord )
|
2007-04-14 14:21:09 +02:00
|
|
|
|
FCK.Events.AttachEvent( 'OnPaste', FCK.Paste ) ;
|
2006-11-07 19:18:22 +01:00
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
|
|
window.onload = function()
|
|
|
|
|
{
|
|
|
|
|
InitializeAPI() ;
|
|
|
|
|
|
|
|
|
|
if ( FCKBrowserInfo.IsIE )
|
|
|
|
|
FCK_PreloadImages() ;
|
|
|
|
|
else
|
|
|
|
|
LoadToolbarSetup() ;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function LoadToolbarSetup()
|
|
|
|
|
{
|
|
|
|
|
FCKeditorAPI._FunctionQueue.Add( LoadToolbar ) ;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function LoadToolbar()
|
|
|
|
|
{
|
|
|
|
|
var oToolbarSet = FCK.ToolbarSet = FCKToolbarSet_Create() ;
|
2007-04-14 14:21:09 +02:00
|
|
|
|
|
2006-11-07 19:18:22 +01:00
|
|
|
|
if ( oToolbarSet.IsLoaded )
|
|
|
|
|
StartEditor() ;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
oToolbarSet.OnLoad = StartEditor ;
|
|
|
|
|
oToolbarSet.Load( FCKURLParams['Toolbar'] || 'Default' ) ;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function StartEditor()
|
|
|
|
|
{
|
|
|
|
|
// Remove the onload listener.
|
|
|
|
|
FCK.ToolbarSet.OnLoad = null ;
|
|
|
|
|
|
|
|
|
|
FCKeditorAPI._FunctionQueue.Remove( LoadToolbar ) ;
|
|
|
|
|
|
|
|
|
|
FCK.Events.AttachEvent( 'OnStatusChange', WaitForActive ) ;
|
|
|
|
|
|
|
|
|
|
// Start the editor.
|
|
|
|
|
FCK.StartEditor() ;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function WaitForActive( editorInstance, newStatus )
|
|
|
|
|
{
|
|
|
|
|
if ( newStatus == FCK_STATUS_ACTIVE )
|
|
|
|
|
{
|
|
|
|
|
if ( FCKBrowserInfo.IsGecko )
|
|
|
|
|
FCKTools.RunFunction( window.onresize ) ;
|
|
|
|
|
|
2007-04-14 14:21:09 +02:00
|
|
|
|
_AttachFormSubmitToAPI() ;
|
|
|
|
|
|
2006-11-07 19:18:22 +01:00
|
|
|
|
FCK.SetStatus( FCK_STATUS_COMPLETE ) ;
|
|
|
|
|
|
2007-04-14 14:21:09 +02:00
|
|
|
|
// Call the special "FCKeditor_OnComplete" function that should be present in
|
2006-11-07 19:18:22 +01:00
|
|
|
|
// the HTML page where the editor is located.
|
|
|
|
|
if ( typeof( window.parent.FCKeditor_OnComplete ) == 'function' )
|
2007-04-14 14:21:09 +02:00
|
|
|
|
window.parent.FCKeditor_OnComplete( FCK ) ;
|
2006-11-07 19:18:22 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Gecko browsers doens't calculate well that IFRAME size so we must
|
|
|
|
|
// recalculate it every time the window size changes.
|
|
|
|
|
if ( FCKBrowserInfo.IsGecko )
|
|
|
|
|
{
|
|
|
|
|
function Window_OnResize()
|
|
|
|
|
{
|
|
|
|
|
if ( FCKBrowserInfo.IsOpera )
|
|
|
|
|
return ;
|
|
|
|
|
|
|
|
|
|
var oCell = document.getElementById( 'xEditingArea' ) ;
|
|
|
|
|
|
2007-04-14 14:21:09 +02:00
|
|
|
|
var eInnerElement = oCell.firstChild ;
|
|
|
|
|
if ( eInnerElement )
|
2006-11-07 19:18:22 +01:00
|
|
|
|
{
|
|
|
|
|
eInnerElement.style.height = 0 ;
|
|
|
|
|
eInnerElement.style.height = oCell.scrollHeight - 2 ;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
window.onresize = Window_OnResize ;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<table width="100%" cellpadding="0" cellspacing="0" style="height: 100%; table-layout: fixed">
|
|
|
|
|
<tr id="xToolbarRow" style="display: none">
|
|
|
|
|
<td id="xToolbarSpace" style="overflow: hidden">
|
|
|
|
|
<table width="100%" cellpadding="0" cellspacing="0">
|
|
|
|
|
<tr id="xCollapsed" style="display: none">
|
|
|
|
|
<td id="xExpandHandle" class="TB_Expand" colspan="3">
|
|
|
|
|
<img class="TB_ExpandImg" alt="" src="images/spacer.gif" width="8" height="4" /></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr id="xExpanded" style="display: none">
|
|
|
|
|
<td id="xTBLeftBorder" class="TB_SideBorder" style="width: 1px; display: none;"></td>
|
|
|
|
|
<td id="xCollapseHandle" style="display: none" class="TB_Collapse" valign="bottom">
|
|
|
|
|
<img class="TB_CollapseImg" alt="" src="images/spacer.gif" width="8" height="4" /></td>
|
|
|
|
|
<td id="xToolbar" class="TB_ToolbarSet"></td>
|
|
|
|
|
<td class="TB_SideBorder" style="width: 1px"></td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
2007-04-14 14:21:09 +02:00
|
|
|
|
<tr>
|
|
|
|
|
<td id="xEditingArea" valign="top" style="height: 100%"></td>
|
2006-11-07 19:18:22 +01:00
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|