forked from extern/egroupware
backported FCKeditor 2.6 and security fixes to 1.4
This commit is contained in:
commit
81a955b8a4
@ -109,6 +109,23 @@
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr class="row_off">
|
||||
<td>{lang_Enable_the_spellcheck_in_the_ritch_text_editor_?}:</td>
|
||||
<td>
|
||||
<select name="newsettings[enabled_spellcheck]">
|
||||
<option value="">{lang_No}</option>
|
||||
<option value="True"{selected_enabled_spellcheck_True}>{lang_Yes}</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr class="row_on">
|
||||
<td>{lang_Complete_path_to_aspell_program}:</td>
|
||||
<td>
|
||||
<input name="newsettings[aspell_path]" value="{value_aspell_path}" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr class="th">
|
||||
<td colspan="2"> <b>{lang_security}</b></td>
|
||||
</tr>
|
||||
|
@ -422,15 +422,10 @@ class html
|
||||
*/
|
||||
function htmlarea_availible()
|
||||
{
|
||||
switch($this->user_agent)
|
||||
{
|
||||
case 'msie':
|
||||
return $this->ua_version >= 5.5;
|
||||
case 'mozilla':
|
||||
return $this->ua_version >= 1.3;
|
||||
default:
|
||||
return False;
|
||||
}
|
||||
require_once(EGW_INCLUDE_ROOT.'/phpgwapi/js/fckeditor/fckeditor.php');
|
||||
|
||||
// use FCKeditor's own check
|
||||
return FCKeditor_IsCompatibleBrowser();
|
||||
}
|
||||
|
||||
/**
|
||||
@ -451,7 +446,7 @@ class html
|
||||
* this function is a wrapper for fckEditor to create some reuseable layouts
|
||||
*
|
||||
* @param string $_name name and id of the input-field
|
||||
* @param string $_content of the tinymce (will be run through htmlspecialchars !!!), default ''
|
||||
* @param string $_content of the tinymce (will be run through htmlspecialchars !!!), default ''
|
||||
* @param string $_mode display mode of the tinymce editor can be: simple, extended or advanced
|
||||
* @param array $_options (toolbar_expanded true/false)
|
||||
* @param string $_height='400px'
|
||||
@ -459,7 +454,7 @@ class html
|
||||
* @param string $base_href='' if passed activates the browser for image at absolute path passed
|
||||
* @return string the necessary html for the textarea
|
||||
*/
|
||||
function fckEditor($_name, $_content, $_mode, $_options=array('toolbar_expanded' =>'true'), $_height='400px', $_width='100%',$_base_href='')
|
||||
function fckEditor($_name, $_content, $_mode, $_options=array('toolbar_expanded' =>'true'), $_height='400px', $_width='100%',$_base_href='')
|
||||
{
|
||||
if (!$this->htmlarea_availible() || $_mode == 'ascii')
|
||||
{
|
||||
@ -469,20 +464,25 @@ class html
|
||||
|
||||
$oFCKeditor = new FCKeditor($_name) ;
|
||||
$oFCKeditor->BasePath = $GLOBALS['egw_info']['server']['webserver_url'].'/phpgwapi/js/fckeditor/' ;
|
||||
$oFCKeditor->Config['CustomConfigurationsPath'] = $oFCKeditor->BasePath . 'fckeditor.egwconfig.js' ;
|
||||
$oFCKeditor->Value = $_content;
|
||||
$oFCKeditor->Width = str_replace('px','',$_width); // FCK adds px if width contains no %
|
||||
$oFCKeditor->Height = str_replace('px','',$_height);
|
||||
|
||||
|
||||
// by default switch all browsers and uploads off
|
||||
$oFCKeditor->Config['LinkBrowser'] = $oFCKeditor->Config['LinkUpload'] = false;
|
||||
$oFCKeditor->Config['FlashBrowser'] = $oFCKeditor->Config['FlashUpload'] = false;
|
||||
$oFCKeditor->Config['ImageBrowser'] = $oFCKeditor->Config['ImageUpload'] = false;
|
||||
|
||||
|
||||
// Activate the image browser+upload, if $_base_href exists and is browsable by the webserver
|
||||
if ($_base_href && is_dir($_SERVER['DOCUMENT_ROOT'].$_base_href) && file_exists($_SERVER['DOCUMENT_ROOT'].$_base_href.'/.'))
|
||||
{
|
||||
// Only images for now
|
||||
$oFCKeditor->Config['ImageBrowserURL'] = $oFCKeditor->BasePath.'editor/filemanager/browser/default/browser.html?ServerPath='.$_base_href.'&Type=images&Connector=connectors/php/connector.php';
|
||||
if (substr($_base_href,-1) != '/') $_base_href .= '/' ;
|
||||
// store the path and application in the session, to make sure it can't be called with arbitrary pathes
|
||||
$GLOBALS['egw']->session->appsession($_base_href,'FCKeditor',$GLOBALS['egw_info']['flags']['currentapp']);
|
||||
|
||||
$oFCKeditor->Config['ImageBrowserURL'] = $oFCKeditor->BasePath.'editor/filemanager/browser/default/browser.html?ServerPath='.$_base_href.'&Type=Image&Connector='.$oFCKeditor->BasePath.'editor/filemanager/connectors/php/connector.php';
|
||||
$oFCKeditor->Config['ImageBrowser'] = true;
|
||||
$oFCKeditor->Config['ImageUpload'] = is_writable($_SERVER['DOCUMENT_ROOT'].$_base_href);
|
||||
}
|
||||
@ -493,21 +493,51 @@ class html
|
||||
}
|
||||
// switching the encoding as html entities off, as we correctly handle charsets and it messes up the wiki totally
|
||||
$oFCKeditor->Config['ProcessHTMLEntities'] = false;
|
||||
|
||||
// Now setting the admin settings
|
||||
$spell = '';
|
||||
if (isset($GLOBALS['egw_info']['server']['enabled_spellcheck']))
|
||||
{
|
||||
$spell = '_spellcheck';
|
||||
$oFCKeditor->Config['SpellChecker'] = 'SpellerPages';
|
||||
$oFCKeditor->Config['SpellerPagesServerScript'] = 'server-scripts/spellchecker.php?enabled=1';
|
||||
if (isset($GLOBALS['egw_info']['server']['aspell_path']))
|
||||
{
|
||||
$oFCKeditor->Config['SpellerPagesServerScript'] .= '&aspell_path='.$GLOBALS['egw_info']['server']['aspell_path'];
|
||||
}
|
||||
if (isset($GLOBALS['egw_info']['user']['preferences']['common']['spellchecker_lang']))
|
||||
{
|
||||
$oFCKeditor->Config['SpellerPagesServerScript'] .= '&spellchecker_lang='.$GLOBALS['egw_info']['user']['preferences']['common']['spellchecker_lang'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$oFCKeditor->Config['SpellerPagesServerScript'] .= '&spellchecker_lang='.$GLOBALS['egw_info']['user']['preferences']['common']['lang'];
|
||||
}
|
||||
$oFCKeditor->Config['FirefoxSpellChecker'] = false;
|
||||
}
|
||||
// Now setting the user preferences
|
||||
if (isset($GLOBALS['egw_info']['user']['preferences']['common']['rte_enter_mode']))
|
||||
{
|
||||
$oFCKeditor->Config['EnterMode'] = $GLOBALS['egw_info']['user']['preferences']['common']['rte_enter_mode'];
|
||||
}
|
||||
if (isset($GLOBALS['egw_info']['user']['preferences']['common']['rte_skin']))
|
||||
{
|
||||
$oFCKeditor->Config['SkinPath'] = $oFCKeditor->BasePath.'editor/skins/'.$GLOBALS['egw_info']['user']['preferences']['common']['rte_skin'].'/';
|
||||
}
|
||||
|
||||
switch($_mode) {
|
||||
case 'simple':
|
||||
$oFCKeditor->ToolbarSet = 'egw_simple';
|
||||
$oFCKeditor->ToolbarSet = 'egw_simple'.$spell;
|
||||
$oFCKeditor->Config['ContextMenu'] = false;
|
||||
break;
|
||||
|
||||
default:
|
||||
case 'extended':
|
||||
$oFCKeditor->ToolbarSet = 'egw_extended';
|
||||
$oFCKeditor->ToolbarSet = 'egw_extended'.$spell;
|
||||
break;
|
||||
|
||||
case 'advanced':
|
||||
$oFCKeditor->ToolbarSet = 'egw_advanced';
|
||||
break;
|
||||
$oFCKeditor->ToolbarSet = 'egw_advanced'.$spell;
|
||||
break;
|
||||
}
|
||||
return $oFCKeditor->CreateHTML();
|
||||
}
|
||||
@ -524,7 +554,7 @@ class html
|
||||
* @param string $base_href=''
|
||||
* @return string the necessary html for the textarea
|
||||
*/
|
||||
function fckEditorQuick($_name, $_mode, $_content='', $_height='400px', $_width='100%')
|
||||
function fckEditorQuick($_name, $_mode, $_content='', $_height='400px', $_width='100%')
|
||||
{
|
||||
include_once(EGW_INCLUDE_ROOT."/phpgwapi/js/fckeditor/fckeditor.php");
|
||||
|
||||
@ -545,7 +575,7 @@ class html
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* represents html's input tag
|
||||
*
|
||||
@ -864,7 +894,7 @@ class html
|
||||
{
|
||||
$path = EGW_SERVER_ROOT.$url;
|
||||
}
|
||||
|
||||
|
||||
if (is_null($path) || !@is_readable($path))
|
||||
{
|
||||
// if the image-name is a percentage, use a progressbar
|
||||
@ -911,10 +941,10 @@ class html
|
||||
$vars = $url;
|
||||
$url = '/index.php';
|
||||
}
|
||||
elseif (strpos($url,'/')===false &&
|
||||
count(explode('.',$url)) >= 3 &&
|
||||
!(strpos($url,'mailto:')!==false ||
|
||||
strpos($url,'://')!==false ||
|
||||
elseif (strpos($url,'/')===false &&
|
||||
count(explode('.',$url)) >= 3 &&
|
||||
!(strpos($url,'mailto:')!==false ||
|
||||
strpos($url,'://')!==false ||
|
||||
strpos($url,'javascript:')!==false))
|
||||
{
|
||||
$url = "/index.php?menuaction=$url";
|
||||
@ -1063,7 +1093,7 @@ class html
|
||||
}
|
||||
return $html;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* tree widget using dhtmlXtree
|
||||
*
|
||||
@ -1109,7 +1139,7 @@ class html
|
||||
$html .= "tree.enableCheckBoxes(1);\n";
|
||||
$html .= "tree.setOnCheckHandler('$_onCheckHandler');\n";
|
||||
}
|
||||
|
||||
|
||||
$top = 0;
|
||||
if ($_topFolder)
|
||||
{
|
||||
@ -1126,7 +1156,7 @@ class html
|
||||
else
|
||||
{
|
||||
$label = $_topFolder;
|
||||
}
|
||||
}
|
||||
$html .= "\ntree.insertNewItem(0,'$top','".addslashes($label)."',$_onNodeSelect,'$topImage','$topImage','$topImage','CHILD,TOP');\n";
|
||||
|
||||
if (is_array($_topFolder) && isset($_topFolder['title']))
|
||||
@ -1150,15 +1180,15 @@ class html
|
||||
// evtl. remove leading delimiter
|
||||
if ($path{0} == $delimiter) $path = substr($path,1);
|
||||
$folderParts = explode($delimiter,$path);
|
||||
|
||||
|
||||
//get rightmost folderpart
|
||||
$label = array_pop($folderParts);
|
||||
if (isset($data['label'])) $label = $data['label'];
|
||||
|
||||
|
||||
// the rest of the array is the name of the parent
|
||||
$parentName = implode((array)$folderParts,$delimiter);
|
||||
if(empty($parentName)) $parentName = $top;
|
||||
|
||||
|
||||
$entryOptions = 'CHILD,CHECKED';
|
||||
// highlight currently item
|
||||
if ($_selected === $path)
|
||||
@ -1179,17 +1209,17 @@ class html
|
||||
$html .= "tree.closeAllItems(0);\n";
|
||||
$html .= "tree.openItem('".($_selected ? addslashes($_selected) : $top)."');\n";
|
||||
$html .= "</script>\n";
|
||||
|
||||
|
||||
return $html;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* html-class singleton, return a referenze to the global instanciated html object in $GLOBALS['egw']->html
|
||||
*
|
||||
* Please use that static method in all new code, instead of instanciating an own html object:
|
||||
* $my_html =& html::singleton();
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @static
|
||||
* @return html
|
||||
*/
|
||||
function &singleton()
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -32,7 +32,7 @@
|
||||
<h1>
|
||||
FCKeditor Documentation</h1>
|
||||
<p>
|
||||
You can find the official documentation for FCKeditor online, at <a href="http://wiki.fckeditor.net/">
|
||||
http://wiki.fckeditor.net/</a>.</p>
|
||||
You can find the official documentation for FCKeditor online, at <a href="http://docs.fckeditor.net/">
|
||||
http://docs.fckeditor.net/</a>.</p>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -35,4 +35,4 @@ FCKToolbarItems.RegisterItem( 'My_Find', oFindItem ) ; // 'My_Find' is the nam
|
||||
var oReplaceItem = new FCKToolbarButton( 'My_Replace', FCKLang['DlgMyReplaceTitle'] ) ;
|
||||
oReplaceItem.IconPath = FCKConfig.PluginsPath + 'findreplace/replace.gif' ;
|
||||
|
||||
FCKToolbarItems.RegisterItem( 'My_Replace', oReplaceItem ) ; // 'My_Replace' is the name used in the Toolbar config.
|
||||
FCKToolbarItems.RegisterItem( 'My_Replace', oReplaceItem ) ; // 'My_Replace' is the name used in the Toolbar config.
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -30,4 +30,4 @@ FCKLang['DlgMyReplaceReplAllBtn'] = 'Replace All' ;
|
||||
FCKLang['DlgMyReplaceWordChk'] = 'Match whole word' ;
|
||||
|
||||
FCKLang['DlgMyFindTitle'] = 'Plugin - Find' ;
|
||||
FCKLang['DlgMyFindFindBtn'] = 'Find' ;
|
||||
FCKLang['DlgMyFindFindBtn'] = 'Find' ;
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -30,4 +30,4 @@ FCKLang['DlgMyReplaceReplAllBtn'] = 'Remplacer Tout' ;
|
||||
FCKLang['DlgMyReplaceWordChk'] = 'Mot entier' ;
|
||||
|
||||
FCKLang['DlgMyFindTitle'] = 'Plugin - Chercher' ;
|
||||
FCKLang['DlgMyFindFindBtn'] = 'Chercher' ;
|
||||
FCKLang['DlgMyFindFindBtn'] = 'Chercher' ;
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -30,4 +30,4 @@ FCKLang['DlgMyReplaceReplAllBtn'] = 'Sostituisci tutto' ;
|
||||
FCKLang['DlgMyReplaceWordChk'] = 'Parola intera' ;
|
||||
|
||||
FCKLang['DlgMyFindTitle'] = 'Plugin - Cerca' ;
|
||||
FCKLang['DlgMyFindFindBtn'] = 'Cerca' ;
|
||||
FCKLang['DlgMyFindFindBtn'] = 'Cerca' ;
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -70,4 +70,4 @@ oMyContextMenuListener.AddItems = function( contextMenu, tag, tagName )
|
||||
}
|
||||
|
||||
// ## 4. Register our context menu listener.
|
||||
FCK.ContextMenu.RegisterListener( oMyContextMenuListener ) ;
|
||||
FCK.ContextMenu.RegisterListener( oMyContextMenuListener ) ;
|
||||
|
34
phpgwapi/js/fckeditor/_samples/adobeair/application.xml
Normal file
34
phpgwapi/js/fckeditor/_samples/adobeair/application.xml
Normal file
@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<application xmlns="http://ns.adobe.com/air/application/1.0">
|
||||
<id>net.fckeditor.air.samples.sample01</id>
|
||||
<name>FCKeditor Sample Application 1.0</name>
|
||||
<version>1.0</version>
|
||||
<filename>FCKeditor AIR Sample</filename>
|
||||
<description>This is a sample AIR application including FCKeditor.</description>
|
||||
<copyright>Copyright (C) 2003-2008 Frederico Caldeira Knabben</copyright>
|
||||
<initialWindow>
|
||||
<content>_samples/adobeair/sample01.html</content>
|
||||
<title>FCKeditor AIR Sample</title>
|
||||
<systemChrome>standard</systemChrome>
|
||||
<transparent>false</transparent>
|
||||
<visible>true</visible>
|
||||
<minimizable>true</minimizable>
|
||||
<maximizable>true</maximizable>
|
||||
<resizable>true</resizable>
|
||||
<x>100</x>
|
||||
<y>80</y>
|
||||
<width>820</width>
|
||||
<height>600</height>
|
||||
<minSize>600 400</minSize>
|
||||
</initialWindow>
|
||||
<installFolder>FCKeditor/AIR Samples/Sample01</installFolder>
|
||||
<programMenuFolder>FCKeditor/AIR Samples</programMenuFolder>
|
||||
<icon>
|
||||
<image16x16>_samples/adobeair/icons/16.png</image16x16>
|
||||
<image32x32>_samples/adobeair/icons/32.png</image32x32>
|
||||
<image48x48>_samples/adobeair/icons/48.png</image48x48>
|
||||
<image128x128>_samples/adobeair/icons/128.png</image128x128>
|
||||
</icon>
|
||||
<customUpdateUI>false</customUpdateUI>
|
||||
<allowBrowserInvocation>false</allowBrowserInvocation>
|
||||
</application>
|
BIN
phpgwapi/js/fckeditor/_samples/adobeair/icons/128.png
Normal file
BIN
phpgwapi/js/fckeditor/_samples/adobeair/icons/128.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
BIN
phpgwapi/js/fckeditor/_samples/adobeair/icons/16.png
Normal file
BIN
phpgwapi/js/fckeditor/_samples/adobeair/icons/16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 273 B |
BIN
phpgwapi/js/fckeditor/_samples/adobeair/icons/32.png
Normal file
BIN
phpgwapi/js/fckeditor/_samples/adobeair/icons/32.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 562 B |
BIN
phpgwapi/js/fckeditor/_samples/adobeair/icons/48.png
Normal file
BIN
phpgwapi/js/fckeditor/_samples/adobeair/icons/48.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 563 B |
26
phpgwapi/js/fckeditor/_samples/adobeair/package.bat
Normal file
26
phpgwapi/js/fckeditor/_samples/adobeair/package.bat
Normal file
@ -0,0 +1,26 @@
|
||||
@ECHO OFF
|
||||
|
||||
::
|
||||
:: FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
:: Copyright (C) 2003-2008 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 ==
|
||||
::
|
||||
|
||||
:: adt -package SIGNING_OPTIONS air_file app_xml [file_or_dir | -C dir file_or_dir | -e file dir ...] ...
|
||||
|
||||
"C:\Adobe AIR SDK\bin\adt" -package -storetype pkcs12 -keystore sample01_cert.pfx -storepass 123abc FCKeditor.air application.xml -C ../../ .
|
26
phpgwapi/js/fckeditor/_samples/adobeair/run.bat
Normal file
26
phpgwapi/js/fckeditor/_samples/adobeair/run.bat
Normal file
@ -0,0 +1,26 @@
|
||||
@ECHO OFF
|
||||
|
||||
::
|
||||
:: FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
:: Copyright (C) 2003-2008 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 ==
|
||||
::
|
||||
|
||||
:: adl [-runtime runtime-directory] [-pubId publisher-id] [-nodebug] application.xml [rootdirectory] [-- arguments]
|
||||
|
||||
"C:\Adobe AIR SDK\bin\adl" application.xml ../../
|
58
phpgwapi/js/fckeditor/_samples/adobeair/sample01.html
Normal file
58
phpgwapi/js/fckeditor/_samples/adobeair/sample01.html
Normal file
@ -0,0 +1,58 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2008 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 ==
|
||||
*
|
||||
* Sample Adobe AIR application.
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>FCKeditor - Adobe AIR Sample</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="robots" content="noindex, nofollow" />
|
||||
<link href="../sample.css" rel="stylesheet" type="text/css" />
|
||||
<script type="text/javascript" src="../../fckeditor.js"></script>
|
||||
<style type="text/css">
|
||||
body { margin: 10px ; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>
|
||||
FCKeditor - Adobe AIR Sample
|
||||
</h1>
|
||||
<div>
|
||||
This sample loads FCKeditor with full features enabled.
|
||||
</div>
|
||||
<hr />
|
||||
<script type="text/javascript">
|
||||
|
||||
// Automatically calculates the editor base path based on the _samples directory.
|
||||
// This is usefull only for these samples. A real application should use something like this:
|
||||
// oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
|
||||
var sBasePath = document.location.href.substring(0,document.location.href.lastIndexOf('_samples')) ;
|
||||
|
||||
var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ;
|
||||
oFCKeditor.BasePath = sBasePath ;
|
||||
oFCKeditor.Height = 400 ;
|
||||
oFCKeditor.Value = '<p>FCKeditor is in the <strong>AIR</strong>!<\/p>' ;
|
||||
oFCKeditor.Create() ;
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
BIN
phpgwapi/js/fckeditor/_samples/adobeair/sample01_cert.pfx
Normal file
BIN
phpgwapi/js/fckeditor/_samples/adobeair/sample01_cert.pfx
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
<application ID="fck"/>
|
||||
<application ID="fck"/>
|
||||
|
@ -1,5 +1,5 @@
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -163,4 +163,3 @@
|
||||
RETURN (tcString)
|
||||
|
||||
ENDDEFINE
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
<%
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -38,7 +38,7 @@
|
||||
|
||||
sBasePath="../../../fckeditor/" && Change this to your local path
|
||||
|
||||
lcText=[This is some <strong>sample text</strong>. You are using ]
|
||||
lcText=[<p>This is some <strong>sample text</strong>. You are using ]
|
||||
lcText=lcText+[<a href='http://www.fckeditor.net/'>FCKeditor</a>.]
|
||||
|
||||
oFCKeditor = CREATEOBJECT("FCKeditor")
|
||||
|
@ -1,6 +1,6 @@
|
||||
<%
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -17,7 +17,7 @@
|
||||
* http://www.mozilla.org/MPL/MPL-1.1.html
|
||||
*
|
||||
* == END LICENSE ==
|
||||
*
|
||||
*
|
||||
* This page is a basic Sample for FCKeditor integration in the AFP script language (www.afpages.de)
|
||||
*
|
||||
%>
|
||||
@ -97,7 +97,7 @@
|
||||
oFCKeditor.aconfig[2,2]=lcLanguage
|
||||
ENDIF
|
||||
|
||||
lcText=[This is some <strong>sample text</strong>. You are using ]
|
||||
lcText=[<p>This is some <strong>sample text</strong>. You are using ]
|
||||
lcText=lcText+[<a href='http://www.fckeditor.net/'>FCKeditor</a>.]
|
||||
|
||||
oFCKeditor.BasePath = sBasePath
|
||||
|
@ -1,6 +1,6 @@
|
||||
<%
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -75,7 +75,7 @@
|
||||
oFCKeditor.ToolbarSet=lcToolbar
|
||||
ENDIF
|
||||
|
||||
lcText=[This is some <strong>sample text</strong>. You are using ]
|
||||
lcText=[<p>This is some <strong>sample text</strong>. You are using ]
|
||||
lcText=lcText+[<a href='http://www.fckeditor.net/'>FCKeditor</a>.]
|
||||
|
||||
oFCKeditor.BasePath = sBasePath
|
||||
|
@ -1,6 +1,6 @@
|
||||
<%
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -82,7 +82,7 @@
|
||||
oFCKeditor.aconfig[1,2]="/fckeditor/editor/skins/"+lcSkin+"/" && <-- Change this to your local path
|
||||
ENDIF
|
||||
|
||||
lcText=[This is some <strong>sample text</strong>. You are using ]
|
||||
lcText=[<p>This is some <strong>sample text</strong>. You are using ]
|
||||
lcText=lcText+[<a href='http://www.fckeditor.net/'>FCKeditor</a>.]
|
||||
|
||||
oFCKeditor.BasePath = sBasePath
|
||||
|
@ -1,6 +1,6 @@
|
||||
<%
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
|
@ -2,7 +2,7 @@
|
||||
<% Option Explicit %>
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -52,7 +52,7 @@ sBasePath = Left( sBasePath, InStrRev( sBasePath, "/_samples" ) )
|
||||
Dim oFCKeditor
|
||||
Set oFCKeditor = New FCKeditor
|
||||
oFCKeditor.BasePath = sBasePath
|
||||
oFCKeditor.Value = "This is some <strong>sample text</strong>. You are using <a href=""http://www.fckeditor.net/"">FCKeditor</a>."
|
||||
oFCKeditor.Value = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://www.fckeditor.net/"">FCKeditor</a>."
|
||||
oFCKeditor.Create "FCKeditor1"
|
||||
%>
|
||||
<br />
|
||||
|
@ -2,7 +2,7 @@
|
||||
<% Option Explicit %>
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -98,11 +98,11 @@ Else
|
||||
oFCKeditor.Config("DefaultLanguage") = Request.QueryString("Lang")
|
||||
End If
|
||||
|
||||
oFCKeditor.Value = "This is some <strong>sample text</strong>. You are using <a href=""http://www.fckeditor.net/"">FCKeditor</a>."
|
||||
oFCKeditor.Value = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://www.fckeditor.net/"">FCKeditor</a>."
|
||||
oFCKeditor.Create "FCKeditor1"
|
||||
%>
|
||||
<br>
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
@ -2,7 +2,7 @@
|
||||
<% Option Explicit %>
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -82,11 +82,11 @@ If Request.QueryString("Toolbar") <> "" Then
|
||||
oFCKeditor.ToolbarSet = Server.HTMLEncode( Request.QueryString("Toolbar") )
|
||||
End If
|
||||
|
||||
oFCKeditor.Value = "This is some <strong>sample text</strong>. You are using <a href=""http://www.fckeditor.net/"">FCKeditor</a>."
|
||||
oFCKeditor.Value = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://www.fckeditor.net/"">FCKeditor</a>."
|
||||
oFCKeditor.Create "FCKeditor1"
|
||||
%>
|
||||
<br>
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
@ -2,7 +2,7 @@
|
||||
<% Option Explicit %>
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -88,11 +88,11 @@ If Request.QueryString("Skin") <> "" Then
|
||||
oFCKeditor.Config("SkinPath") = sBasePath + "editor/skins/" & Server.HTMLEncode( Request.QueryString("Skin") ) + "/"
|
||||
End If
|
||||
|
||||
oFCKeditor.Value = "This is some <strong>sample text</strong>. You are using <a href=""http://www.fckeditor.net/"">FCKeditor</a>."
|
||||
oFCKeditor.Value = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://www.fckeditor.net/"">FCKeditor</a>."
|
||||
oFCKeditor.Create "FCKeditor1"
|
||||
%>
|
||||
<br>
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
@ -2,7 +2,7 @@
|
||||
<% Option Explicit %>
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -45,7 +45,7 @@
|
||||
%>
|
||||
<tr>
|
||||
<td valign="top" nowrap><b><%=sForm%></b></td>
|
||||
<td width="100%"><%=Server.HTMLEncode( Request.Form(sForm) )%></td>
|
||||
<td width="100%" style="white-space:pre"><%=Server.HTMLEncode( Request.Form(sForm) )%></td>
|
||||
</tr>
|
||||
<% Next %>
|
||||
</table>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<cfsetting enablecfoutputonly="true" showdebugoutput="false">
|
||||
<cfsetting enablecfoutputonly="true">
|
||||
<!---
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -31,57 +31,33 @@
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<link href="../sample.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>FCKeditor - ColdFusion - Sample 1</h1>
|
||||
|
||||
This sample displays a normal HTML form with a FCKeditor with full features enabled; invoked by a ColdFusion Custom Tag / Module.
|
||||
This sample displays a normal HTML form with a FCKeditor with full features enabled.
|
||||
<hr>
|
||||
<form method="POST" action="#cgi.script_name#">
|
||||
|
||||
<form method="POST" action="sampleposteddata.cfm">
|
||||
</cfoutput>
|
||||
|
||||
<!--- Calculate basepath for FCKeditor. It's in the folder right above _samples --->
|
||||
<cfset basePath = Left( cgi.script_name, FindNoCase( '_samples', cgi.script_name ) - 1 )>
|
||||
|
||||
<cfmodule
|
||||
template="../../fckeditor.cfm"
|
||||
basePath="#Left(cgi.script_name, FindNoCase('_samples', cgi.script_name)-1)#"
|
||||
basePath="#basePath#"
|
||||
instanceName="myEditor"
|
||||
value='This is some sample text. You are using <a href="http://fckeditor.net/" target="_blank">FCKeditor</a>.'
|
||||
value='<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>'
|
||||
width="100%"
|
||||
height="200"
|
||||
>
|
||||
|
||||
<cfoutput>
|
||||
<br />
|
||||
<input type="submit" value="Submit">
|
||||
<br />
|
||||
<hr />
|
||||
</form>
|
||||
</cfoutput>
|
||||
|
||||
<cfif isDefined( 'FORM.fieldnames' )>
|
||||
<cfoutput>
|
||||
<hr />
|
||||
<style>
|
||||
<!--
|
||||
td, th { font: 11px Verdana, Arial, Helv, Helvetica, sans-serif; }
|
||||
-->
|
||||
</style>
|
||||
<table border="1" cellspacing="0" cellpadding="2" bordercolor="darkblue" bordercolordark="darkblue" bordercolorlight="darkblue">
|
||||
<tr>
|
||||
<th colspan="2" bgcolor="darkblue"><font color="white"><strong>Dump of FORM Variables</strong></font></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="lightskyblue">FieldNames</td>
|
||||
<td>#FORM.fieldNames#</td>
|
||||
</tr>
|
||||
<cfloop list="#FORM.fieldnames#" index="key">
|
||||
<tr>
|
||||
<td valign="top" bgcolor="lightskyblue">#key#</td>
|
||||
<td>#HTMLEditFormat(evaluate("FORM.#key#"))#</td>
|
||||
</tr>
|
||||
</cfloop>
|
||||
</table>
|
||||
</cfoutput>
|
||||
</cfif>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<cfsetting enablecfoutputonly="false">
|
||||
</cfoutput>
|
||||
<cfsetting enablecfoutputonly="false">
|
||||
|
67
phpgwapi/js/fckeditor/_samples/cfm/sample01_mx.cfm
Normal file
67
phpgwapi/js/fckeditor/_samples/cfm/sample01_mx.cfm
Normal file
@ -0,0 +1,67 @@
|
||||
<cfsetting enablecfoutputonly="true">
|
||||
<!---
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2008 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 ==
|
||||
*
|
||||
* Sample page for ColdFusion MX 6.0 and above.
|
||||
--->
|
||||
|
||||
<cfoutput>
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>FCKeditor - Sample</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<link href="../sample.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1>FCKeditor - ColdFusion Component (CFC) - Sample 1</h1>
|
||||
|
||||
This sample displays a normal HTML form with a FCKeditor with full features enabled.
|
||||
<hr>
|
||||
|
||||
<form method="POST" action="sampleposteddata.cfm">
|
||||
</cfoutput>
|
||||
|
||||
<cfif listFirst( server.coldFusion.productVersion ) LT 6>
|
||||
<cfoutput><br><em style="color: red;">This sample works only with a ColdFusion MX server and higher, because it uses some advantages of this version.</em></cfoutput>
|
||||
<cfabort>
|
||||
</cfif>
|
||||
|
||||
<cfscript>
|
||||
// Calculate basepath for FCKeditor. It's in the folder right above _samples
|
||||
basePath = Left( cgi.script_name, FindNoCase( '_samples', cgi.script_name ) - 1 ) ;
|
||||
|
||||
fckEditor = createObject( "component", "#basePath#fckeditor" ) ;
|
||||
fckEditor.instanceName = "myEditor" ;
|
||||
fckEditor.value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ;
|
||||
fckEditor.basePath = basePath ;
|
||||
fckEditor.Create() ; // create the editor.
|
||||
</cfscript>
|
||||
|
||||
<cfoutput>
|
||||
<br />
|
||||
<input type="submit" value="Submit">
|
||||
<hr />
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
</cfoutput>
|
||||
<cfsetting enablecfoutputonly="false">
|
110
phpgwapi/js/fckeditor/_samples/cfm/sample02.cfm
Normal file
110
phpgwapi/js/fckeditor/_samples/cfm/sample02.cfm
Normal file
@ -0,0 +1,110 @@
|
||||
<cfsetting enablecfoutputonly="true">
|
||||
<!---
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2008 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 ==
|
||||
*
|
||||
* Sample page for ColdFusion.
|
||||
--->
|
||||
|
||||
<cfoutput>
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>FCKeditor - Sample</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<link href="../sample.css" rel="stylesheet" type="text/css" />
|
||||
<script type="text/javascript">
|
||||
|
||||
function FCKeditor_OnComplete( editorInstance )
|
||||
{
|
||||
var oCombo = document.getElementById( 'cmbLanguages' ) ;
|
||||
for ( code in editorInstance.Language.AvailableLanguages )
|
||||
{
|
||||
AddComboOption( oCombo, editorInstance.Language.AvailableLanguages[code] + ' (' + code + ')', code ) ;
|
||||
}
|
||||
oCombo.value = editorInstance.Language.ActiveLanguage.Code ;
|
||||
}
|
||||
|
||||
function AddComboOption(combo, optionText, optionValue)
|
||||
{
|
||||
var oOption = document.createElement("OPTION") ;
|
||||
|
||||
combo.options.add(oOption) ;
|
||||
|
||||
oOption.innerHTML = optionText ;
|
||||
oOption.value = optionValue ;
|
||||
|
||||
return oOption ;
|
||||
}
|
||||
|
||||
function ChangeLanguage( languageCode )
|
||||
{
|
||||
window.location.href = window.location.pathname + "?Lang=" + languageCode ;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>FCKeditor - ColdFusion - Sample 2</h1>
|
||||
This sample shows the editor in all its available languages.
|
||||
<hr>
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
Select a language:
|
||||
</td>
|
||||
<td>
|
||||
<select id="cmbLanguages" onchange="ChangeLanguage(this.value);">
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<form action="sampleposteddata.cfm" method="post" target="_blank">
|
||||
</cfoutput>
|
||||
|
||||
<cfset config = structNew()>
|
||||
<cfif isDefined( "URL.Lang" )>
|
||||
<cfset config["AutoDetectLanguage"] = false>
|
||||
<cfset config["DefaultLanguage"] = HTMLEditFormat( URL.Lang )>
|
||||
<cfelse>
|
||||
<cfset config["AutoDetectLanguage"] = true>
|
||||
<cfset config["DefaultLanguage"] = 'en'>
|
||||
</cfif>
|
||||
|
||||
<!--- Calculate basepath for FCKeditor. It's in the folder right above _samples --->
|
||||
<cfset basePath = Left( cgi.script_name, FindNoCase( '_samples', cgi.script_name ) - 1 )>
|
||||
|
||||
<cfmodule
|
||||
template="../../fckeditor.cfm"
|
||||
basePath="#basePath#"
|
||||
instanceName="myEditor"
|
||||
value='<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>'
|
||||
width="100%"
|
||||
height="200"
|
||||
config="#config#"
|
||||
>
|
||||
<cfoutput>
|
||||
<br>
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
</cfoutput>
|
||||
<cfsetting enablecfoutputonly="false">
|
@ -1,7 +1,7 @@
|
||||
<cfsetting enablecfoutputonly="true">
|
||||
<cfsetting enablecfoutputonly="true">
|
||||
<!---
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -19,28 +19,9 @@
|
||||
*
|
||||
* == END LICENSE ==
|
||||
*
|
||||
* Sample page for ColdFusion MX.
|
||||
* Sample page for ColdFusion MX 6.0 and above.
|
||||
--->
|
||||
|
||||
<!--- ::
|
||||
* You must set the url path to the base directory for your media files (images, flash, files)
|
||||
* The best position for this variable is in your Application.cfm file
|
||||
*
|
||||
* Possible variable scopes are:
|
||||
* <cfset APPLICATION.userFilesPath = "/userfiles/">
|
||||
* OR:
|
||||
* <cfset SERVER.userFilesPath = "/userfiles/">
|
||||
* OR:
|
||||
* <cfset request.FCKeditor.userFilesPath = "/userfiles/">
|
||||
* OR:
|
||||
* <cfset application.FCKeditor.userFilesPath = "/userfiles/">
|
||||
* OR:
|
||||
* <cfset server.FCKeditor.userFilesPath = "/userfiles/">
|
||||
*
|
||||
* Note #1: Do _not_ set the physical directory on your server, only a path relative to your current webroot
|
||||
* Note #2: Directories will be automatically created
|
||||
:: --->
|
||||
|
||||
<cfoutput>
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
@ -49,45 +30,85 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<link href="../sample.css" rel="stylesheet" type="text/css" />
|
||||
<script type="text/javascript">
|
||||
|
||||
function FCKeditor_OnComplete( editorInstance )
|
||||
{
|
||||
var oCombo = document.getElementById( 'cmbLanguages' ) ;
|
||||
for ( code in editorInstance.Language.AvailableLanguages )
|
||||
{
|
||||
AddComboOption( oCombo, editorInstance.Language.AvailableLanguages[code] + ' (' + code + ')', code ) ;
|
||||
}
|
||||
oCombo.value = editorInstance.Language.ActiveLanguage.Code ;
|
||||
}
|
||||
|
||||
function AddComboOption(combo, optionText, optionValue)
|
||||
{
|
||||
var oOption = document.createElement("OPTION") ;
|
||||
|
||||
combo.options.add(oOption) ;
|
||||
|
||||
oOption.innerHTML = optionText ;
|
||||
oOption.value = optionValue ;
|
||||
|
||||
return oOption ;
|
||||
}
|
||||
|
||||
function ChangeLanguage( languageCode )
|
||||
{
|
||||
window.location.href = window.location.pathname + "?Lang=" + languageCode ;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>FCKeditor - ColdFusion Component (CFC) - Sample 2</h1>
|
||||
|
||||
This sample displays a normal HTML form with a FCKeditor with full features enabled; invoked by a ColdFusion Component.
|
||||
This sample shows the editor in all its available languages.
|
||||
<hr>
|
||||
|
||||
<form method="POST" action="#cgi.script_name#">
|
||||
</cfoutput>
|
||||
|
||||
<cfif listFirst( server.coldFusion.productVersion ) LT 6>
|
||||
<cfoutput><br><em style="color: red;">This sample works only with a ColdFusion MX server and higher, because it uses some advantages of this version.</em></cfoutput>
|
||||
<cfabort>
|
||||
</cfif>
|
||||
|
||||
<cfscript>
|
||||
// Calculate basepath for FCKeditor. It's in the folder right above _samples
|
||||
basePath = Left(cgi.script_name, FindNoCase('_samples', cgi.script_name)-1);
|
||||
|
||||
fckEditor = createObject("component", "#basePath#fckeditor");
|
||||
fckEditor.instanceName = "myEditor";
|
||||
fckEditor.value = 'This is some sample text. You are using <a href="http://fckeditor.net/" target="_blank">FCKeditor</a>.';
|
||||
fckEditor.basePath = basePath;
|
||||
fckEditor.width = "100%";
|
||||
fckEditor.height = 300;
|
||||
fckEditor.create(); // create the editor.
|
||||
</cfscript>
|
||||
|
||||
<cfoutput>
|
||||
<br />
|
||||
<input type="submit" value="Submit">
|
||||
<hr />
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
Select a language:
|
||||
</td>
|
||||
<td>
|
||||
<select id="cmbLanguages" onchange="ChangeLanguage(this.value);">
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<form action="sampleposteddata.cfm" method="post" target="_blank">
|
||||
</cfoutput>
|
||||
<cfscript>
|
||||
// Calculate basepath for FCKeditor. It's in the folder right above _samples
|
||||
basePath = Left( cgi.script_name, FindNoCase( '_samples', cgi.script_name ) - 1 ) ;
|
||||
|
||||
<cfdump
|
||||
var="#FORM#"
|
||||
label="Dump of FORM Variables"
|
||||
>
|
||||
|
||||
<cfoutput></form></body></html></cfoutput>
|
||||
|
||||
<cfsetting enablecfoutputonly="false">
|
||||
fckEditor = createObject( "component", "#basePath#fckeditor" ) ;
|
||||
fckEditor.instanceName = "myEditor" ;
|
||||
fckEditor.value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ;
|
||||
fckEditor.basePath = basePath ;
|
||||
if ( isDefined( "URL.Lang" ) )
|
||||
{
|
||||
fckEditor.config["AutoDetectLanguage"] = false ;
|
||||
fckEditor.config["DefaultLanguage"] = HTMLEditFormat( URL.Lang ) ;
|
||||
}
|
||||
else
|
||||
{
|
||||
fckEeditor.config["AutoDetectLanguage"] = true ;
|
||||
fckEeditor.config["DefaultLanguage"] = 'en' ;
|
||||
}
|
||||
fckEditor.create() ; // create the editor.
|
||||
</cfscript>
|
||||
<cfoutput>
|
||||
<br>
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
</cfoutput>
|
||||
<cfsetting enablecfoutputonly="false">
|
||||
|
95
phpgwapi/js/fckeditor/_samples/cfm/sample03.cfm
Normal file
95
phpgwapi/js/fckeditor/_samples/cfm/sample03.cfm
Normal file
@ -0,0 +1,95 @@
|
||||
<cfsetting enablecfoutputonly="true">
|
||||
<!---
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2008 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 ==
|
||||
*
|
||||
* Sample page for ColdFusion.
|
||||
--->
|
||||
<cfoutput>
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>FCKeditor - Sample</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<link href="../sample.css" rel="stylesheet" type="text/css" />
|
||||
<script type="text/javascript">
|
||||
|
||||
function FCKeditor_OnComplete( editorInstance )
|
||||
{
|
||||
var oCombo = document.getElementById( 'cmbToolbars' ) ;
|
||||
oCombo.value = editorInstance.ToolbarSet.Name ;
|
||||
oCombo.style.visibility = '' ;
|
||||
}
|
||||
|
||||
function ChangeToolbar( toolbarName )
|
||||
{
|
||||
window.location.href = window.location.pathname + "?Toolbar=" + toolbarName ;
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>FCKeditor - ColdFusion - Sample 3</h1>
|
||||
This sample shows how to change the editor toolbar.
|
||||
<hr>
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
Select the toolbar to load:
|
||||
</td>
|
||||
<td>
|
||||
<select id="cmbToolbars" onchange="ChangeToolbar(this.value);" style="VISIBILITY: hidden">
|
||||
<option value="Default" selected>Default</option>
|
||||
<option value="Basic">Basic</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<form action="sampleposteddata.cfm" method="post" target="_blank">
|
||||
</cfoutput>
|
||||
|
||||
<cfif isDefined( "URL.Toolbar" )>
|
||||
<cfset toolbarSet = HTMLEditFormat( URL.Toolbar )>
|
||||
<cfelse>
|
||||
<cfset toolbarSet = "Default">
|
||||
</cfif>
|
||||
|
||||
<!--- Calculate basepath for FCKeditor. It's in the folder right above _samples --->
|
||||
<cfset basePath = Left( cgi.script_name, FindNoCase( '_samples', cgi.script_name ) - 1 )>
|
||||
|
||||
<cfmodule
|
||||
template="../../fckeditor.cfm"
|
||||
basePath="#basePath#"
|
||||
instanceName="myEditor"
|
||||
value='<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>'
|
||||
width="100%"
|
||||
height="200"
|
||||
toolbarSet="#toolbarSet#"
|
||||
>
|
||||
|
||||
<cfoutput>
|
||||
<br>
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
</cfoutput>
|
||||
<cfsetting enablecfoutputonly="false">
|
95
phpgwapi/js/fckeditor/_samples/cfm/sample03_mx.cfm
Normal file
95
phpgwapi/js/fckeditor/_samples/cfm/sample03_mx.cfm
Normal file
@ -0,0 +1,95 @@
|
||||
<cfsetting enablecfoutputonly="true">
|
||||
<!---
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2008 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 ==
|
||||
*
|
||||
* Sample page for ColdFusion MX 6.0 and above.
|
||||
--->
|
||||
<cfoutput>
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>FCKeditor - Sample</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<link href="../sample.css" rel="stylesheet" type="text/css" />
|
||||
<script type="text/javascript">
|
||||
|
||||
function FCKeditor_OnComplete( editorInstance )
|
||||
{
|
||||
var oCombo = document.getElementById( 'cmbToolbars' ) ;
|
||||
oCombo.value = editorInstance.ToolbarSet.Name ;
|
||||
oCombo.style.visibility = '' ;
|
||||
}
|
||||
|
||||
function ChangeToolbar( toolbarName )
|
||||
{
|
||||
window.location.href = window.location.pathname + "?Toolbar=" + toolbarName ;
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>FCKeditor - ColdFusion Component (CFC) - Sample 3</h1>
|
||||
This sample shows how to change the editor toolbar.
|
||||
<hr>
|
||||
</cfoutput>
|
||||
<cfif listFirst( server.coldFusion.productVersion ) LT 6>
|
||||
<cfoutput><br><em style="color: red;">This sample works only with a ColdFusion MX server and higher, because it uses some advantages of this version.</em></cfoutput>
|
||||
<cfabort>
|
||||
</cfif>
|
||||
<cfoutput>
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
Select the toolbar to load:
|
||||
</td>
|
||||
<td>
|
||||
<select id="cmbToolbars" onchange="ChangeToolbar(this.value);" style="VISIBILITY: hidden">
|
||||
<option value="Default" selected>Default</option>
|
||||
<option value="Basic">Basic</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<form action="sampleposteddata.cfm" method="post" target="_blank">
|
||||
</cfoutput>
|
||||
<cfscript>
|
||||
// Calculate basepath for FCKeditor. It's in the folder right above _samples
|
||||
basePath = Left( cgi.script_name, FindNoCase( '_samples', cgi.script_name ) - 1 ) ;
|
||||
|
||||
fckEditor = createObject( "component", "#basePath#fckeditor" ) ;
|
||||
fckEditor.instanceName = "myEditor" ;
|
||||
fckEditor.value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ;
|
||||
fckEditor.basePath = basePath ;
|
||||
if ( isDefined( "URL.Toolbar" ) )
|
||||
{
|
||||
fckEditor.ToolbarSet = HTMLEditFormat( URL.Toolbar ) ;
|
||||
}
|
||||
fckEditor.create() ; // create the editor.
|
||||
</cfscript>
|
||||
<cfoutput>
|
||||
<br>
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
</cfoutput>
|
||||
<cfsetting enablecfoutputonly="false">
|
100
phpgwapi/js/fckeditor/_samples/cfm/sample04.cfm
Normal file
100
phpgwapi/js/fckeditor/_samples/cfm/sample04.cfm
Normal file
@ -0,0 +1,100 @@
|
||||
<cfsetting enablecfoutputonly="true">
|
||||
<!---
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2008 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 ==
|
||||
*
|
||||
* Sample page for ColdFusion.
|
||||
--->
|
||||
<cfoutput>
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>FCKeditor - Sample</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<link href="../sample.css" rel="stylesheet" type="text/css" />
|
||||
<script type="text/javascript">
|
||||
|
||||
function FCKeditor_OnComplete( editorInstance )
|
||||
{
|
||||
var oCombo = document.getElementById( 'cmbSkins' ) ;
|
||||
|
||||
// Get the active skin.
|
||||
var sSkin = editorInstance.Config['SkinPath'] ;
|
||||
sSkin = sSkin.match( /[^\/]+(?=\/$)/g ) ;
|
||||
|
||||
oCombo.value = sSkin ;
|
||||
oCombo.style.visibility = '' ;
|
||||
}
|
||||
|
||||
function ChangeSkin( skinName )
|
||||
{
|
||||
window.location.href = window.location.pathname + "?Skin=" + skinName ;
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>FCKeditor - ColdFusion - Sample 4</h1>
|
||||
This sample shows how to change the editor skin.
|
||||
<hr>
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
Select the skin to load:
|
||||
</td>
|
||||
<td>
|
||||
<select id="cmbSkins" onchange="ChangeSkin(this.value);" style="VISIBILITY: hidden">
|
||||
<option value="default" selected>Default</option>
|
||||
<option value="office2003">Office 2003</option>
|
||||
<option value="silver">Silver</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<form action="sampleposteddata.cfm" method="post" target="_blank">
|
||||
</cfoutput>
|
||||
|
||||
<!--- Calculate basepath for FCKeditor. It's in the folder right above _samples --->
|
||||
<cfset basePath = Left( cgi.script_name, FindNoCase( '_samples', cgi.script_name ) - 1 )>
|
||||
|
||||
<cfset config = structNew()>
|
||||
<cfif isDefined( "URL.Skin" )>
|
||||
<cfset config["SkinPath"] = basePath & 'editor/skins/' & HTMLEditFormat( URL.Skin ) & '/'>
|
||||
</cfif>
|
||||
|
||||
<cfmodule
|
||||
template="../../fckeditor.cfm"
|
||||
basePath="#basePath#"
|
||||
instanceName="myEditor"
|
||||
value='<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>'
|
||||
width="100%"
|
||||
height="200"
|
||||
config="#config#"
|
||||
>
|
||||
|
||||
<cfoutput>
|
||||
<br>
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
</cfoutput>
|
||||
<cfsetting enablecfoutputonly="false">
|
101
phpgwapi/js/fckeditor/_samples/cfm/sample04_mx.cfm
Normal file
101
phpgwapi/js/fckeditor/_samples/cfm/sample04_mx.cfm
Normal file
@ -0,0 +1,101 @@
|
||||
<cfsetting enablecfoutputonly="true">
|
||||
<!---
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2008 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 ==
|
||||
*
|
||||
* Sample page for ColdFusion MX 6.0 and above.
|
||||
--->
|
||||
<cfoutput>
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>FCKeditor - Sample</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<link href="../sample.css" rel="stylesheet" type="text/css" />
|
||||
<script type="text/javascript">
|
||||
|
||||
function FCKeditor_OnComplete( editorInstance )
|
||||
{
|
||||
var oCombo = document.getElementById( 'cmbSkins' ) ;
|
||||
|
||||
// Get the active skin.
|
||||
var sSkin = editorInstance.Config['SkinPath'] ;
|
||||
sSkin = sSkin.match( /[^\/]+(?=\/$)/g ) ;
|
||||
|
||||
oCombo.value = sSkin ;
|
||||
oCombo.style.visibility = '' ;
|
||||
}
|
||||
|
||||
function ChangeSkin( skinName )
|
||||
{
|
||||
window.location.href = window.location.pathname + "?Skin=" + skinName ;
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>FCKeditor - ColdFusion Component (CFC) - Sample 4</h1>
|
||||
This sample shows how to change the editor skin.
|
||||
<hr>
|
||||
</cfoutput>
|
||||
<cfif listFirst( server.coldFusion.productVersion ) LT 6>
|
||||
<cfoutput><br><em style="color: red;">This sample works only with a ColdFusion MX server and higher, because it uses some advantages of this version.</em></cfoutput>
|
||||
<cfabort>
|
||||
</cfif>
|
||||
<cfoutput>
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
Select the skin to load:
|
||||
</td>
|
||||
<td>
|
||||
<select id="cmbSkins" onchange="ChangeSkin(this.value);" style="VISIBILITY: hidden">
|
||||
<option value="default" selected>Default</option>
|
||||
<option value="office2003">Office 2003</option>
|
||||
<option value="silver">Silver</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<form action="sampleposteddata.cfm" method="post" target="_blank">
|
||||
</cfoutput>
|
||||
<cfscript>
|
||||
// Calculate basepath for FCKeditor. It's in the folder right above _samples
|
||||
basePath = Left( cgi.script_name, FindNoCase( '_samples', cgi.script_name ) - 1 ) ;
|
||||
|
||||
fckEditor = createObject( "component", "#basePath#fckeditor" ) ;
|
||||
fckEditor.instanceName = "myEditor" ;
|
||||
fckEditor.value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ;
|
||||
fckEditor.basePath = basePath ;
|
||||
if ( isDefined( "URL.Skin" ) )
|
||||
{
|
||||
fckEditor.config['SkinPath'] = basePath & 'editor/skins/' & HTMLEditFormat( URL.Skin ) & '/' ;
|
||||
}
|
||||
fckEditor.create() ; // create the editor.
|
||||
</cfscript>
|
||||
<cfoutput>
|
||||
<br>
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
</cfoutput>
|
||||
<cfsetting enablecfoutputonly="false">
|
69
phpgwapi/js/fckeditor/_samples/cfm/sampleposteddata.cfm
Normal file
69
phpgwapi/js/fckeditor/_samples/cfm/sampleposteddata.cfm
Normal file
@ -0,0 +1,69 @@
|
||||
<!---
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2008 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 page lists the data posted by a form.
|
||||
*/
|
||||
--->
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>FCKeditor - Samples - Posted Data</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<link href="../sample.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1>FCKeditor - Samples - Posted Data</h1>
|
||||
This page lists all data posted by the form.
|
||||
<hr>
|
||||
<cfif listFirst( server.coldFusion.productVersion ) LT 6>
|
||||
<cfif isDefined( 'FORM.fieldnames' )>
|
||||
<cfoutput>
|
||||
<hr />
|
||||
<style>
|
||||
<!--
|
||||
td, th { font: 11px Verdana, Arial, Helv, Helvetica, sans-serif; }
|
||||
-->
|
||||
</style>
|
||||
<table border="1" cellspacing="0" cellpadding="2" bordercolor="darkblue" bordercolordark="darkblue" bordercolorlight="darkblue">
|
||||
<tr>
|
||||
<th colspan="2" bgcolor="darkblue"><font color="white"><strong>Dump of FORM Variables</strong></font></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="lightskyblue">FieldNames</td>
|
||||
<td>#FORM.fieldNames#</td>
|
||||
</tr>
|
||||
<cfloop list="#FORM.fieldnames#" index="key">
|
||||
<tr>
|
||||
<td valign="top" bgcolor="lightskyblue">#key#</td>
|
||||
<td style="white-space:pre">#HTMLEditFormat( evaluate( "FORM.#key#" ) )#</td>
|
||||
</tr>
|
||||
</cfloop>
|
||||
</table>
|
||||
</cfoutput>
|
||||
</cfif>
|
||||
<cfelse>
|
||||
<cfdump var="#FORM#" label="Dump of FORM Variables">
|
||||
</cfif>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
@ -1,7 +1,8 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
|
||||
"http://www.w3.org/TR/html4/frameset.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -43,12 +43,12 @@
|
||||
// Automatically calculates the editor base path based on the _samples directory.
|
||||
// This is usefull only for these samples. A real application should use something like this:
|
||||
// oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
|
||||
var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ;
|
||||
var sBasePath = document.location.href.substring(0,document.location.href.lastIndexOf('_samples')) ;
|
||||
|
||||
var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ;
|
||||
oFCKeditor.BasePath = sBasePath ;
|
||||
oFCKeditor.Height = 300 ;
|
||||
oFCKeditor.Value = 'This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.' ;
|
||||
oFCKeditor.Value = '<p>This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.<\/p>' ;
|
||||
oFCKeditor.Create() ;
|
||||
//-->
|
||||
</script>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -35,7 +35,7 @@ window.onload = function()
|
||||
// Automatically calculates the editor base path based on the _samples directory.
|
||||
// This is usefull only for these samples. A real application should use something like this:
|
||||
// oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
|
||||
var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ;
|
||||
var sBasePath = document.location.href.substring(0,document.location.href.lastIndexOf('_samples')) ;
|
||||
|
||||
var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ;
|
||||
oFCKeditor.BasePath = sBasePath ;
|
||||
@ -54,7 +54,7 @@ window.onload = function()
|
||||
<hr />
|
||||
<form action="sampleposteddata.asp" method="post" target="_blank">
|
||||
<div>
|
||||
<textarea name="FCKeditor1" rows="10" cols="80" style="width: 100%; height: 200px">This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</textarea>
|
||||
<textarea name="FCKeditor1" rows="10" cols="80" style="width: 100%; height: 200px"><p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p></textarea>
|
||||
</div>
|
||||
<br />
|
||||
<input type="submit" value="Submit" />
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -39,6 +39,9 @@ function FCKeditor_OnComplete( editorInstance )
|
||||
|
||||
var oCombo = document.getElementById( 'cmbLanguages' ) ;
|
||||
|
||||
// Remove all options. (#1399)
|
||||
oCombo.innerHTML = '' ;
|
||||
|
||||
var aLanguages = new Array() ;
|
||||
|
||||
for ( code in editorInstance.Language.AvailableLanguages )
|
||||
@ -75,7 +78,7 @@ function AddComboOption(combo, optionText, optionValue)
|
||||
|
||||
function ChangeLanguage( languageCode )
|
||||
{
|
||||
window.location.href = window.location.pathname + "?" + languageCode ;
|
||||
document.location.href = document.location.href.replace( /\?.*$/, '' ) + "?" + languageCode ;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
@ -93,6 +96,7 @@ function ChangeLanguage( languageCode )
|
||||
</td>
|
||||
<td>
|
||||
<select id="cmbLanguages" onchange="ChangeLanguage(this.value);">
|
||||
<option> </option>
|
||||
</select>
|
||||
</td>
|
||||
<td>
|
||||
@ -107,7 +111,7 @@ function ChangeLanguage( languageCode )
|
||||
// Automatically calculates the editor base path based on the _samples directory.
|
||||
// This is usefull only for these samples. A real application should use something like this:
|
||||
// oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
|
||||
var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ;
|
||||
var sBasePath = document.location.href.substring(0,document.location.href.lastIndexOf('_samples')) ;
|
||||
|
||||
var sLang ;
|
||||
if ( document.location.search.length > 1 )
|
||||
@ -125,7 +129,7 @@ else
|
||||
oFCKeditor.Config["AutoDetectLanguage"] = false ;
|
||||
oFCKeditor.Config["DefaultLanguage"] = sLang ;
|
||||
}
|
||||
oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
|
||||
oFCKeditor.Value = '<p>This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.<\/p>' ;
|
||||
oFCKeditor.Create() ;
|
||||
//-->
|
||||
</script>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -39,7 +39,7 @@ function FCKeditor_OnComplete( editorInstance )
|
||||
|
||||
function ChangeLanguage( languageCode )
|
||||
{
|
||||
window.location.href = window.location.pathname + "?" + languageCode ;
|
||||
document.location.href = document.location.href.replace( /\?.*$/, '' ) + "?" + languageCode ;
|
||||
}
|
||||
|
||||
</script>
|
||||
@ -71,7 +71,7 @@ function ChangeLanguage( languageCode )
|
||||
// Automatically calculates the editor base path based on the _samples directory.
|
||||
// This is usefull only for these samples. A real application should use something like this:
|
||||
// oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
|
||||
var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ;
|
||||
var sBasePath = document.location.href.substring(0,document.location.href.lastIndexOf('_samples')) ;
|
||||
|
||||
// Get the toolbar from the URL.
|
||||
var sToolbar ;
|
||||
@ -84,7 +84,7 @@ oFCKeditor.BasePath = sBasePath ;
|
||||
if ( sToolbar != null )
|
||||
oFCKeditor.ToolbarSet = sToolbar ;
|
||||
|
||||
oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
|
||||
oFCKeditor.Value = '<p>This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.<\/p>' ;
|
||||
oFCKeditor.Create() ;
|
||||
//-->
|
||||
</script>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -44,7 +44,7 @@ function FCKeditor_OnComplete( editorInstance )
|
||||
|
||||
function ChangeLanguage( languageCode )
|
||||
{
|
||||
window.location.href = window.location.pathname + "?" + languageCode ;
|
||||
document.location.href = document.location.href.replace( /\?.*$/, '' ) + "?" + languageCode ;
|
||||
}
|
||||
|
||||
</script>
|
||||
@ -77,7 +77,7 @@ function ChangeLanguage( languageCode )
|
||||
// Automatically calculates the editor base path based on the _samples directory.
|
||||
// This is usefull only for these samples. A real application should use something like this:
|
||||
// oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
|
||||
var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ;
|
||||
var sBasePath = document.location.href.substring(0,document.location.href.lastIndexOf('_samples')) ;
|
||||
|
||||
// Get the skin from the URL.
|
||||
var sSkin ;
|
||||
@ -114,7 +114,7 @@ if ( sSkin != null )
|
||||
}
|
||||
}
|
||||
|
||||
oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
|
||||
oFCKeditor.Value = '<p>This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.<\/p>' ;
|
||||
oFCKeditor.Create() ;
|
||||
//-->
|
||||
</script>
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -26,7 +26,7 @@ FCKConfig.ToolbarSets['PluginTest'] = [
|
||||
['SourceSimple'],
|
||||
['My_Find','My_Replace','-','Placeholder'],
|
||||
['StyleSimple','FontFormatSimple','FontNameSimple','FontSizeSimple'],
|
||||
['Table','-','TableInsertRow','TableDeleteRows','TableInsertColumn','TableDeleteColumns','TableInsertCell','TableDeleteCells','TableMergeCells','TableSplitCell'],
|
||||
['Table','-','TableInsertRowAfter','TableDeleteRows','TableInsertColumnAfter','TableDeleteColumns','TableInsertCellAfter','TableDeleteCells','TableMergeCells','TableHorizontalSplitCell','TableCellProp'],
|
||||
['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink'],
|
||||
'/',
|
||||
['My_BigStyle','-','Smiley','-','About']
|
||||
@ -39,11 +39,11 @@ FCKConfig.PluginsPath = FCKConfig.BasePath.substr(0, FCKConfig.BasePath.length -
|
||||
// FCKConfig.Plugins.Add( pluginName, availableLanguages )
|
||||
// pluginName: The plugin name. The plugin directory must match this name.
|
||||
// availableLanguages: a list of available language files for the plugin (separated by a comma).
|
||||
FCKConfig.Plugins.Add( 'findreplace', 'en,it,fr' ) ;
|
||||
FCKConfig.Plugins.Add( 'findreplace', 'en,fr,it' ) ;
|
||||
FCKConfig.Plugins.Add( 'samples' ) ;
|
||||
|
||||
// If you want to use plugins found on other directories, just use the third parameter.
|
||||
var sOtherPluginPath = FCKConfig.BasePath.substr(0, FCKConfig.BasePath.length - 7) + 'editor/plugins/' ;
|
||||
FCKConfig.Plugins.Add( 'placeholder', 'en,it,de,fr', sOtherPluginPath ) ;
|
||||
FCKConfig.Plugins.Add( 'placeholder', 'de,en,es,fr,it,pl', sOtherPluginPath ) ;
|
||||
FCKConfig.Plugins.Add( 'tablecommands', null, sOtherPluginPath ) ;
|
||||
FCKConfig.Plugins.Add( 'simplecommands', null, sOtherPluginPath ) ;
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -51,7 +51,7 @@
|
||||
// Automatically calculates the editor base path based on the _samples directory.
|
||||
// This is usefull only for these samples. A real application should use something like this:
|
||||
// oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
|
||||
var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ;
|
||||
var sBasePath = document.location.href.substring(0,document.location.href.lastIndexOf('_samples')) ;
|
||||
|
||||
var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ;
|
||||
oFCKeditor.BasePath = sBasePath ;
|
||||
@ -62,7 +62,7 @@ oFCKeditor.Config['CustomConfigurationsPath'] = sBasePath + '_samples/html/sampl
|
||||
// Let's use a custom toolbar for this sample.
|
||||
oFCKeditor.ToolbarSet = 'PluginTest' ;
|
||||
|
||||
oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
|
||||
oFCKeditor.Value = '<p>This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.<\/p>' ;
|
||||
oFCKeditor.Create() ;
|
||||
//-->
|
||||
</script>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -43,12 +43,12 @@
|
||||
// Automatically calculates the editor base path based on the _samples directory.
|
||||
// This is usefull only for these samples. A real application should use something like this:
|
||||
// oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
|
||||
var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ;
|
||||
var sBasePath = document.location.href.substring(0,document.location.href.lastIndexOf('_samples')) ;
|
||||
|
||||
var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ;
|
||||
oFCKeditor.BasePath = sBasePath ;
|
||||
oFCKeditor.Config['FullPage'] = true ;
|
||||
oFCKeditor.Value = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>Full Page Test</title><meta content="text/html; charset=utf-8" http-equiv="Content-Type"/></head><body>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</body></html>' ;
|
||||
oFCKeditor.Value = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>Full Page Test<\/title><meta content="text/html; charset=utf-8" http-equiv="Content-Type"><\/head><body><p>This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.<\/body><\/html>' ;
|
||||
oFCKeditor.Create() ;
|
||||
//-->
|
||||
</script>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -29,7 +29,7 @@
|
||||
<link href="../sample.css" rel="stylesheet" type="text/css" />
|
||||
<script type="text/javascript" src="../../fckeditor.js"></script>
|
||||
<script type="text/javascript">
|
||||
|
||||
<!--
|
||||
// FCKeditor_OnComplete is a special function that is called when an editor
|
||||
// instance is loaded ad available to the API. It must be named exactly in
|
||||
// this way.
|
||||
@ -51,7 +51,7 @@ function InsertHTML()
|
||||
if ( oEditor.EditMode == FCK_EDITMODE_WYSIWYG )
|
||||
{
|
||||
// Insert the desired HTML.
|
||||
oEditor.InsertHtml( '- This is some <a href="/Test1.html">sample</a> HTML -' ) ;
|
||||
oEditor.InsertHtml( '- This is some <a href="/Test1.html">sample<\/a> HTML -' ) ;
|
||||
}
|
||||
else
|
||||
alert( 'You must be on WYSIWYG mode!' ) ;
|
||||
@ -63,7 +63,7 @@ function SetContents()
|
||||
var oEditor = FCKeditorAPI.GetInstance('FCKeditor1') ;
|
||||
|
||||
// Set the editor contents (replace the actual one).
|
||||
oEditor.SetHTML( 'This is the <b>new content</b> I want in the editor.' ) ;
|
||||
oEditor.SetData( 'This is the <b>new content<\/b> I want in the editor.' ) ;
|
||||
}
|
||||
|
||||
function GetContents()
|
||||
@ -136,7 +136,7 @@ function ResetIsDirty()
|
||||
oEditor.ResetIsDirty() ;
|
||||
alert( 'The "IsDirty" status has been reset' ) ;
|
||||
}
|
||||
|
||||
-->
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
@ -154,11 +154,11 @@ function ResetIsDirty()
|
||||
// Automatically calculates the editor base path based on the _samples directory.
|
||||
// This is usefull only for these samples. A real application should use something like this:
|
||||
// oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
|
||||
var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ;
|
||||
var sBasePath = document.location.href.substring(0,document.location.href.lastIndexOf('_samples')) ;
|
||||
|
||||
var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ;
|
||||
oFCKeditor.BasePath = sBasePath ;
|
||||
oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
|
||||
oFCKeditor.Value = '<p>This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.<\/p>' ;
|
||||
oFCKeditor.Create() ;
|
||||
//-->
|
||||
</script>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -68,7 +68,7 @@ function FCKeditor_OnFocus( editorInstance )
|
||||
// Automatically calculates the editor base path based on the _samples directory.
|
||||
// This is usefull only for these samples. A real application should use something like this:
|
||||
// oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
|
||||
var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ;
|
||||
var sBasePath = document.location.href.substring(0,document.location.href.lastIndexOf('_samples')) ;
|
||||
|
||||
var oFCKeditor = new FCKeditor( 'FCKeditor_Basic' ) ;
|
||||
|
||||
@ -76,7 +76,7 @@ oFCKeditor.Config['ToolbarStartExpanded'] = false ;
|
||||
|
||||
oFCKeditor.BasePath = sBasePath ;
|
||||
oFCKeditor.ToolbarSet = 'Basic' ;
|
||||
oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
|
||||
oFCKeditor.Value = '<p>This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.<\/p>' ;
|
||||
oFCKeditor.Create() ;
|
||||
//-->
|
||||
</script>
|
||||
@ -89,7 +89,7 @@ oFCKeditor = new FCKeditor( 'FCKeditor_Default' ) ;
|
||||
oFCKeditor.Config['ToolbarStartExpanded'] = false ;
|
||||
|
||||
oFCKeditor.BasePath = sBasePath ;
|
||||
oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
|
||||
oFCKeditor.Value = '<p>This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.<\/p>' ;
|
||||
oFCKeditor.Create() ;
|
||||
//-->
|
||||
</script>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -50,13 +50,13 @@
|
||||
// Automatically calculates the editor base path based on the _samples directory.
|
||||
// This is usefull only for these samples. A real application should use something like this:
|
||||
// oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
|
||||
var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ;
|
||||
var sBasePath = document.location.href.substring(0,document.location.href.lastIndexOf('_samples')) ;
|
||||
|
||||
var oFCKeditor = new FCKeditor( 'FCKeditor_1' ) ;
|
||||
oFCKeditor.BasePath = sBasePath ;
|
||||
oFCKeditor.Height = 100 ;
|
||||
oFCKeditor.Config[ 'ToolbarLocation' ] = 'Out:xToolbar' ;
|
||||
oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
|
||||
oFCKeditor.Value = '<p>This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.<\/p>' ;
|
||||
oFCKeditor.Create() ;
|
||||
//-->
|
||||
</script>
|
||||
@ -68,7 +68,7 @@ oFCKeditor = new FCKeditor( 'FCKeditor_2' ) ;
|
||||
oFCKeditor.BasePath = sBasePath ;
|
||||
oFCKeditor.Height = 100 ;
|
||||
oFCKeditor.Config[ 'ToolbarLocation' ] = 'Out:xToolbar' ;
|
||||
oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
|
||||
oFCKeditor.Value = '<p>This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.<\/p>' ;
|
||||
oFCKeditor.Create() ;
|
||||
//-->
|
||||
</script>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!--
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -40,13 +40,13 @@
|
||||
// Automatically calculates the editor base path based on the _samples directory.
|
||||
// This is usefull only for these samples. A real application should use something like this:
|
||||
// oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
|
||||
var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ;
|
||||
var sBasePath = document.location.href.substring(0,document.location.href.lastIndexOf('_samples')) ;
|
||||
|
||||
var oFCKeditor = new FCKeditor( 'FCKeditor_1' ) ;
|
||||
oFCKeditor.BasePath = sBasePath ;
|
||||
oFCKeditor.Height = 100 ;
|
||||
oFCKeditor.Config[ 'ToolbarLocation' ] = 'Out:parent(xToolbar)' ;
|
||||
oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
|
||||
oFCKeditor.Value = '<p>This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.<\/p>' ;
|
||||
oFCKeditor.Create() ;
|
||||
//-->
|
||||
</script>
|
||||
@ -58,7 +58,7 @@ oFCKeditor = new FCKeditor( 'FCKeditor_2' ) ;
|
||||
oFCKeditor.BasePath = sBasePath ;
|
||||
oFCKeditor.Height = 100 ;
|
||||
oFCKeditor.Config[ 'ToolbarLocation' ] = 'Out:parent(xToolbar)' ;
|
||||
oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
|
||||
oFCKeditor.Value = '<p>This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.<\/p>' ;
|
||||
oFCKeditor.Create() ;
|
||||
//-->
|
||||
</script>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -29,7 +29,7 @@
|
||||
<link href="../sample.css" rel="stylesheet" type="text/css" />
|
||||
<script type="text/javascript" src="../../fckeditor.js"></script>
|
||||
<script type="text/javascript">
|
||||
|
||||
<!--
|
||||
// The following function is used in this samples to reload the page,
|
||||
// setting the querystring parameters for the enter mode.
|
||||
function ChangeMode()
|
||||
@ -39,7 +39,7 @@ function ChangeMode()
|
||||
|
||||
window.location.href = window.location.pathname + '?enter=' + sEnterMode + '&shift=' + sShiftEnterMode ;
|
||||
}
|
||||
|
||||
-->
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
@ -82,7 +82,7 @@ function ChangeMode()
|
||||
// Automatically calculates the editor base path based on the _samples directory.
|
||||
// This is usefull only for these samples. A real application should use something like this:
|
||||
// oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
|
||||
var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ;
|
||||
var sBasePath = document.location.href.substring(0,document.location.href.lastIndexOf('_samples')) ;
|
||||
|
||||
// The following are the default configurations for the Enter and Shift+Enter modes.
|
||||
var sEnterMode = 'p' ;
|
||||
@ -103,10 +103,7 @@ if ( document.location.search.length > 1 )
|
||||
// Create the FCKeditor instance.
|
||||
var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ;
|
||||
oFCKeditor.BasePath = sBasePath ;
|
||||
oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
|
||||
|
||||
// Enable the Enter Key Handler. This feature will not be available in the release version.
|
||||
oFCKeditor.Config["DisableEnterKeyHandler"] = false ;
|
||||
oFCKeditor.Value = 'This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.' ;
|
||||
|
||||
// Set the configuration options for the Enter Key mode.
|
||||
oFCKeditor.Config["EnterMode"] = sEnterMode ;
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -35,11 +35,11 @@ function Toggle()
|
||||
// Try to get the FCKeditor instance, if available.
|
||||
var oEditor ;
|
||||
if ( typeof( FCKeditorAPI ) != 'undefined' )
|
||||
oEditor = FCKeditorAPI.GetInstance( '_DataFCKeditor' ) ;
|
||||
oEditor = FCKeditorAPI.GetInstance( 'DataFCKeditor' ) ;
|
||||
|
||||
// Get the _Textarea and _FCKeditor DIVs.
|
||||
var eTextareaDiv = document.getElementById( '_Textarea' ) ;
|
||||
var eFCKeditorDiv = document.getElementById( '_FCKeditor' ) ;
|
||||
var eTextareaDiv = document.getElementById( 'Textarea' ) ;
|
||||
var eFCKeditorDiv = document.getElementById( 'FCKeditor' ) ;
|
||||
|
||||
// If the _Textarea DIV is visible, switch to FCKeditor.
|
||||
if ( eTextareaDiv.style.display != 'none' )
|
||||
@ -52,7 +52,7 @@ function Toggle()
|
||||
else
|
||||
{
|
||||
// Set the current text in the textarea to the editor.
|
||||
oEditor.SetHTML( document.getElementById('_DataTextarea').value ) ;
|
||||
oEditor.SetData( document.getElementById('DataTextarea').value ) ;
|
||||
}
|
||||
|
||||
// Switch the DIVs display.
|
||||
@ -69,7 +69,7 @@ function Toggle()
|
||||
else
|
||||
{
|
||||
// Set the textarea value to the editor value.
|
||||
document.getElementById('_DataTextarea').value = oEditor.GetXHTML() ;
|
||||
document.getElementById('DataTextarea').value = oEditor.GetXHTML() ;
|
||||
|
||||
// Switch the DIVs display.
|
||||
eTextareaDiv.style.display = '' ;
|
||||
@ -80,15 +80,15 @@ function Toggle()
|
||||
function CreateEditor()
|
||||
{
|
||||
// Copy the value of the current textarea, to the textarea that will be used by the editor.
|
||||
document.getElementById('_DataFCKeditor').value = document.getElementById('_DataTextarea').value ;
|
||||
document.getElementById('DataFCKeditor').value = document.getElementById('DataTextarea').value ;
|
||||
|
||||
// Automatically calculates the editor base path based on the _samples directory.
|
||||
// This is usefull only for these samples. A real application should use something like this:
|
||||
// oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
|
||||
var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ;
|
||||
var sBasePath = document.location.href.substring(0,document.location.href.lastIndexOf('_samples')) ;
|
||||
|
||||
// Create an instance of FCKeditor (using the target textarea as the name).
|
||||
var oFCKeditor = new FCKeditor( '_DataFCKeditor' ) ;
|
||||
var oFCKeditor = new FCKeditor( 'DataFCKeditor' ) ;
|
||||
oFCKeditor.BasePath = sBasePath ;
|
||||
oFCKeditor.Width = '100%' ;
|
||||
oFCKeditor.Height = '350' ;
|
||||
@ -100,16 +100,16 @@ function CreateEditor()
|
||||
function FCKeditor_OnComplete( editorInstance )
|
||||
{
|
||||
// Enable the switch button. It is disabled at startup, waiting the editor to be loaded.
|
||||
document.getElementById('_BtnSwitchTextarea').disabled = false ;
|
||||
document.getElementById('BtnSwitchTextarea').disabled = false ;
|
||||
}
|
||||
|
||||
function PrepareSave()
|
||||
{
|
||||
// If the textarea isn't visible update the content from the editor.
|
||||
if ( document.getElementById( '_Textarea' ).style.display == 'none' )
|
||||
if ( document.getElementById( 'Textarea' ).style.display == 'none' )
|
||||
{
|
||||
var oEditor = FCKeditorAPI.GetInstance( '_DataFCKeditor' ) ;
|
||||
document.getElementById( '_DataTextarea' ).value = oEditor.GetXHTML() ;
|
||||
var oEditor = FCKeditorAPI.GetInstance( 'DataFCKeditor' ) ;
|
||||
document.getElementById( 'DataTextarea' ).value = oEditor.GetXHTML() ;
|
||||
}
|
||||
}
|
||||
|
||||
@ -126,20 +126,20 @@ function PrepareSave()
|
||||
</div>
|
||||
<hr />
|
||||
<form action="sampleposteddata.asp" method="post" target="_blank" onsubmit="PrepareSave();">
|
||||
<div id="_Textarea">
|
||||
<div id="Textarea">
|
||||
<input type="button" value="Switch to FCKeditor" onclick="Toggle()" />
|
||||
<br />
|
||||
<br />
|
||||
<textarea id="_DataTextarea" name="Data" cols="80" rows="20" style="width: 95%">This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</textarea>
|
||||
<textarea id="DataTextarea" name="Data" cols="80" rows="20" style="width: 95%">This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</textarea>
|
||||
</div>
|
||||
<div id="_FCKeditor" style="display: none">
|
||||
<div id="FCKeditor" style="display: none">
|
||||
<!-- Note that the following button is disabled at startup.
|
||||
It will be enabled once the editor is completely loaded. -->
|
||||
<input id="_BtnSwitchTextarea" type="button" disabled="disabled" value="Switch to Textarea" onclick="Toggle()" />
|
||||
<input id="BtnSwitchTextarea" type="button" disabled="disabled" value="Switch to Textarea" onclick="Toggle()" />
|
||||
<br />
|
||||
<br />
|
||||
<!-- Note that the following textarea doesn't have a "name", so it will not be posted. -->
|
||||
<textarea id="_DataFCKeditor" cols="80" rows="20"></textarea>
|
||||
<textarea id="DataFCKeditor" cols="80" rows="20"></textarea>
|
||||
</div>
|
||||
<br />
|
||||
<input type="submit" value="Submit" />
|
||||
|
121
phpgwapi/js/fckeditor/_samples/html/sample14.config.js
Normal file
121
phpgwapi/js/fckeditor/_samples/html/sample14.config.js
Normal file
@ -0,0 +1,121 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2008 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 ==
|
||||
*
|
||||
* Configuration settings used by the XHTML 1.1 sample page (sample14.html).
|
||||
*/
|
||||
|
||||
// Our intention is force all formatting features to use CSS classes or
|
||||
// semantic aware elements.
|
||||
|
||||
// Load our custom CSS files for this sample.
|
||||
// We are using "BasePath" just for this sample convenience. In normal
|
||||
// situations it would be just pointed to the file directly,
|
||||
// like "/css/myfile.css".
|
||||
FCKConfig.EditorAreaCSS = FCKConfig.BasePath + '../_samples/html/sample14.styles.css' ;
|
||||
|
||||
/**
|
||||
* Core styles.
|
||||
*/
|
||||
FCKConfig.CoreStyles.Bold = { Element : 'span', Attributes : { 'class' : 'Bold' } } ;
|
||||
FCKConfig.CoreStyles.Italic = { Element : 'span', Attributes : { 'class' : 'Italic' } } ;
|
||||
FCKConfig.CoreStyles.Underline = { Element : 'span', Attributes : { 'class' : 'Underline' } } ;
|
||||
FCKConfig.CoreStyles.StrikeThrough = { Element : 'span', Attributes : { 'class' : 'StrikeThrough' } } ;
|
||||
|
||||
/**
|
||||
* Font face
|
||||
*/
|
||||
// List of fonts available in the toolbar combo. Each font definition is
|
||||
// separated by a semi-colon (;). We are using class names here, so each font
|
||||
// is defined by {Class Name}/{Combo Label}.
|
||||
FCKConfig.FontNames = 'FontComic/Comic Sans MS;FontCourier/Courier New;FontTimes/Times New Roman' ;
|
||||
|
||||
// Define the way font elements will be applied to the document. The "span"
|
||||
// element will be used. When a font is selected, the font name defined in the
|
||||
// above list is passed to this definition with the name "Font", being it
|
||||
// injected in the "class" attribute.
|
||||
// We must also instruct the editor to replace span elements that are used to
|
||||
// set the font (Overrides).
|
||||
FCKConfig.CoreStyles.FontFace =
|
||||
{
|
||||
Element : 'span',
|
||||
Attributes : { 'class' : '#("Font")' },
|
||||
Overrides : [ { Element : 'span', Attributes : { 'class' : /^Font(?:Comic|Courier|Times)$/ } } ]
|
||||
} ;
|
||||
|
||||
/**
|
||||
* Font sizes.
|
||||
*/
|
||||
FCKConfig.FontSizes = 'FontSmaller/Smaller;FontLarger/Larger;FontSmall/8pt;FontBig/14pt;FontDouble/Double Size' ;
|
||||
FCKConfig.CoreStyles.Size =
|
||||
{
|
||||
Element : 'span',
|
||||
Attributes : { 'class' : '#("Size")' },
|
||||
Overrides : [ { Element : 'span', Attributes : { 'class' : /^Font(?:Smaller|Larger|Small|Big|Double)$/ } } ]
|
||||
} ;
|
||||
|
||||
/**
|
||||
* Font colors.
|
||||
*/
|
||||
FCKConfig.EnableMoreFontColors = false ;
|
||||
FCKConfig.FontColors = 'ff9900/FontColor1,0066cc/FontColor2,ff0000/FontColor3' ;
|
||||
FCKConfig.CoreStyles.Color =
|
||||
{
|
||||
Element : 'span',
|
||||
Attributes : { 'class' : '#("Color")' },
|
||||
Overrides : [ { Element : 'span', Attributes : { 'class' : /^FontColor(?:1|2|3)$/ } } ]
|
||||
} ;
|
||||
|
||||
FCKConfig.CoreStyles.BackColor =
|
||||
{
|
||||
Element : 'span',
|
||||
Attributes : { 'class' : '#("Color")BG' },
|
||||
Overrides : [ { Element : 'span', Attributes : { 'class' : /^FontColor(?:1|2|3)BG$/ } } ]
|
||||
} ;
|
||||
|
||||
/**
|
||||
* Indentation.
|
||||
*/
|
||||
FCKConfig.IndentClasses = [ 'Indent1', 'Indent2', 'Indent3' ] ;
|
||||
|
||||
/**
|
||||
* Paragraph justification.
|
||||
*/
|
||||
FCKConfig.JustifyClasses = [ 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyFull' ] ;
|
||||
|
||||
/**
|
||||
* Styles combo.
|
||||
*/
|
||||
FCKConfig.StylesXmlPath = '' ;
|
||||
FCKConfig.CustomStyles =
|
||||
{
|
||||
'Strong Emphasis' : { Element : 'strong' },
|
||||
'Emphasis' : { Element : 'em' },
|
||||
|
||||
'Computer Code' : { Element : 'code' },
|
||||
'Keyboard Phrase' : { Element : 'kbd' },
|
||||
'Sample Text' : { Element : 'samp' },
|
||||
'Variable' : { Element : 'var' },
|
||||
|
||||
'Deleted Text' : { Element : 'del' },
|
||||
'Inserted Text' : { Element : 'ins' },
|
||||
|
||||
'Cited Work' : { Element : 'cite' },
|
||||
'Inline Quotation' : { Element : 'q' }
|
||||
} ;
|
66
phpgwapi/js/fckeditor/_samples/html/sample14.html
Normal file
66
phpgwapi/js/fckeditor/_samples/html/sample14.html
Normal file
@ -0,0 +1,66 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2008 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 ==
|
||||
*
|
||||
* Sample page.
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>FCKeditor - Sample</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="robots" content="noindex, nofollow" />
|
||||
<link href="../sample.css" rel="stylesheet" type="text/css" />
|
||||
<script type="text/javascript" src="../../fckeditor.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>
|
||||
FCKeditor - JavaScript - Sample 14
|
||||
</h1>
|
||||
<div>
|
||||
This sample shows FCKeditor configured to produce <strong>XHTML 1.1</strong> compliant
|
||||
HTML. Deprecated elements or attributes, like the <font> and <u> elements
|
||||
or the "style" attribute, are avoided.
|
||||
</div>
|
||||
<hr />
|
||||
<form action="sampleposteddata.asp" method="post" target="_blank">
|
||||
<script type="text/javascript">
|
||||
<!--
|
||||
// Automatically calculates the editor base path based on the _samples directory.
|
||||
// This is usefull only for these samples. A real application should use something like this:
|
||||
// oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
|
||||
var sBasePath = document.location.href.substring(0,document.location.href.lastIndexOf('_samples')) ;
|
||||
|
||||
var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ;
|
||||
oFCKeditor.BasePath = sBasePath ;
|
||||
|
||||
// Instruct the editor to load our configurations from a custom file, leaving the
|
||||
// original configuration file untouched.
|
||||
oFCKeditor.Config['CustomConfigurationsPath'] = sBasePath + '_samples/html/sample14.config.js' ;
|
||||
|
||||
oFCKeditor.Height = 300 ;
|
||||
oFCKeditor.Value = '<p>This is some <span class="Bold">sample text<\/span>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.<\/p>' ;
|
||||
oFCKeditor.Create() ;
|
||||
//-->
|
||||
</script>
|
||||
<br />
|
||||
<input type="submit" value="Submit" />
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
228
phpgwapi/js/fckeditor/_samples/html/sample14.styles.css
Normal file
228
phpgwapi/js/fckeditor/_samples/html/sample14.styles.css
Normal file
@ -0,0 +1,228 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2008 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 ==
|
||||
*
|
||||
* Styles used by the XHTML 1.1 sample page (sample14.html).
|
||||
*/
|
||||
|
||||
/**
|
||||
* Basic definitions for the editing area.
|
||||
*/
|
||||
body
|
||||
{
|
||||
background-color: #ffffff;
|
||||
padding: 5px 5px 5px 5px;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
body, td
|
||||
{
|
||||
font-family: Arial, Verdana, sans-serif;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
a[href]
|
||||
{
|
||||
color: #0000FF !important; /* For Firefox... mark as important, otherwise it becomes black */
|
||||
}
|
||||
|
||||
/**
|
||||
* Core styles.
|
||||
*/
|
||||
|
||||
.Bold
|
||||
{
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.Italic
|
||||
{
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.Underline
|
||||
{
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.StrikeThrough
|
||||
{
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
.Subscript
|
||||
{
|
||||
vertical-align: sub;
|
||||
font-size: smaller;
|
||||
}
|
||||
|
||||
.Superscript
|
||||
{
|
||||
vertical-align: super;
|
||||
font-size: smaller;
|
||||
}
|
||||
|
||||
/**
|
||||
* Font faces.
|
||||
*/
|
||||
|
||||
.FontComic
|
||||
{
|
||||
font-family: 'Comic Sans MS';
|
||||
}
|
||||
|
||||
.FontCourier
|
||||
{
|
||||
font-family: 'Courier New';
|
||||
}
|
||||
|
||||
.FontTimes
|
||||
{
|
||||
font-family: 'Times New Roman';
|
||||
}
|
||||
|
||||
/**
|
||||
* Font sizes.
|
||||
*/
|
||||
|
||||
.FontSmaller
|
||||
{
|
||||
font-size: smaller;
|
||||
}
|
||||
|
||||
.FontLarger
|
||||
{
|
||||
font-size: larger;
|
||||
}
|
||||
|
||||
.FontSmall
|
||||
{
|
||||
font-size: 8pt;
|
||||
}
|
||||
|
||||
.FontBig
|
||||
{
|
||||
font-size: 14pt;
|
||||
}
|
||||
|
||||
.FontDouble
|
||||
{
|
||||
font-size: 200%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Font colors.
|
||||
*/
|
||||
.FontColor1
|
||||
{
|
||||
color: #ff9900;
|
||||
}
|
||||
|
||||
.FontColor2
|
||||
{
|
||||
color: #0066cc;
|
||||
}
|
||||
|
||||
.FontColor3
|
||||
{
|
||||
color: #ff0000;
|
||||
}
|
||||
|
||||
.FontColor1BG
|
||||
{
|
||||
background-color: #ff9900;
|
||||
}
|
||||
|
||||
.FontColor2BG
|
||||
{
|
||||
background-color: #0066cc;
|
||||
}
|
||||
|
||||
.FontColor3BG
|
||||
{
|
||||
background-color: #ff0000;
|
||||
}
|
||||
|
||||
/**
|
||||
* Indentation.
|
||||
*/
|
||||
|
||||
.Indent1
|
||||
{
|
||||
margin-left: 40px;
|
||||
}
|
||||
|
||||
.Indent2
|
||||
{
|
||||
margin-left: 80px;
|
||||
}
|
||||
|
||||
.Indent3
|
||||
{
|
||||
margin-left: 120px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Alignment.
|
||||
*/
|
||||
|
||||
.JustifyLeft
|
||||
{
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.JustifyRight
|
||||
{
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.JustifyCenter
|
||||
{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.JustifyFull
|
||||
{
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
/**
|
||||
* Other.
|
||||
*/
|
||||
|
||||
code
|
||||
{
|
||||
font-family: courier, monospace;
|
||||
background-color: #eeeeee;
|
||||
padding-left: 1px;
|
||||
padding-right: 1px;
|
||||
border: #c0c0c0 1px solid;
|
||||
}
|
||||
|
||||
kbd
|
||||
{
|
||||
padding: 0px 1px 0px 1px;
|
||||
border-width: 1px 2px 2px 1px;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
blockquote
|
||||
{
|
||||
color: #808080;
|
||||
}
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -65,7 +65,7 @@
|
||||
' cases, no processing must be done, and the data is saved as posted.
|
||||
Function ModifyForOutput( value )
|
||||
|
||||
ModifyForOutput = Server.HTMLEncode( Request.Form(sForm) )
|
||||
ModifyForOutput = Server.HTMLEncode( value )
|
||||
|
||||
End Function
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
|
@ -1,7 +1,7 @@
|
||||
[//lasso
|
||||
[//lasso
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -43,7 +43,7 @@
|
||||
var('myeditor') = fck_editor(
|
||||
-instancename='FCKeditor1',
|
||||
-basepath=$basepath,
|
||||
-initialvalue='This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.'
|
||||
-initialvalue='<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>'
|
||||
);
|
||||
|
||||
$myeditor->create;
|
||||
|
@ -1,7 +1,7 @@
|
||||
[//lasso
|
||||
[//lasso
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -97,7 +97,7 @@ function ChangeLanguage( languageCode )
|
||||
-instancename='FCKeditor1',
|
||||
-basepath=$basepath,
|
||||
-config=$config,
|
||||
-initialvalue='This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.'
|
||||
-initialvalue='<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>'
|
||||
);
|
||||
|
||||
$myeditor->create;
|
||||
|
@ -1,7 +1,7 @@
|
||||
[//lasso
|
||||
[//lasso
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -71,7 +71,7 @@ function ChangeToolbar( toolbarName )
|
||||
var('myeditor') = fck_editor(
|
||||
-instancename='FCKeditor1',
|
||||
-basepath=$basepath,
|
||||
-initialvalue='This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.'
|
||||
-initialvalue='<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>'
|
||||
);
|
||||
|
||||
if(action_param('Toolbar'));
|
||||
|
@ -1,7 +1,7 @@
|
||||
[//lasso
|
||||
[//lasso
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -77,7 +77,7 @@ function ChangeSkin( skinName )
|
||||
var('myeditor') = fck_editor(
|
||||
-instancename='FCKeditor1',
|
||||
-basepath=$basepath,
|
||||
-initialvalue='This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.'
|
||||
-initialvalue='<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>'
|
||||
);
|
||||
|
||||
if(action_param('Skin'));
|
||||
|
@ -1,7 +1,7 @@
|
||||
[//lasso
|
||||
[//lasso
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -42,7 +42,7 @@
|
||||
[iterate(client_postparams, local('this'))]
|
||||
<tr>
|
||||
<td valign="top" nowrap><b>[#this->first]</b></td>
|
||||
<td width="100%">[#this->second]</td>
|
||||
<td width="100%" style="white-space:pre">[#this->second]</td>
|
||||
</tr>
|
||||
[/iterate]
|
||||
</table>
|
||||
|
@ -1,8 +1,8 @@
|
||||
#!/usr/bin/env perl
|
||||
#!/usr/bin/env perl
|
||||
|
||||
#####
|
||||
# FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
# Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
# Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
#
|
||||
# == BEGIN LICENSE ==
|
||||
#
|
||||
@ -84,7 +84,7 @@ _HTML_TAG_
|
||||
$sBasePath = substr($sBasePath,0,index($sBasePath,"_samples"));
|
||||
&FCKeditor('FCKeditor1');
|
||||
$BasePath = $sBasePath;
|
||||
$Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.';
|
||||
$Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>';
|
||||
&Create();
|
||||
|
||||
print <<"_HTML_TAG_";
|
||||
@ -109,6 +109,8 @@ my $dir;
|
||||
$dir = $ENV{'PATH_INFO'};
|
||||
} elsif($ENV{'FILEPATH_INFO'}) {
|
||||
$dir = $ENV{'FILEPATH_INFO'};
|
||||
} elsif($ENV{'REQUEST_URI'}) {
|
||||
$dir = $ENV{'REQUEST_URI'};
|
||||
}
|
||||
}
|
||||
return($dir);
|
||||
|
@ -1,8 +1,8 @@
|
||||
#!/usr/bin/env perl
|
||||
#!/usr/bin/env perl
|
||||
|
||||
#####
|
||||
# FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
# Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
# Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
#
|
||||
# == BEGIN LICENSE ==
|
||||
#
|
||||
@ -149,7 +149,7 @@ _HTML_TAG_
|
||||
$Config{'AutoDetectLanguage'} = "true";
|
||||
$Config{'DefaultLanguage'} = 'en' ;
|
||||
}
|
||||
$Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
|
||||
$Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ;
|
||||
&Create();
|
||||
|
||||
print <<"_HTML_TAG_";
|
||||
@ -174,6 +174,8 @@ my $dir;
|
||||
$dir = $ENV{'PATH_INFO'};
|
||||
} elsif($ENV{'FILEPATH_INFO'}) {
|
||||
$dir = $ENV{'FILEPATH_INFO'};
|
||||
} elsif($ENV{'REQUEST_URI'}) {
|
||||
$dir = $ENV{'REQUEST_URI'};
|
||||
}
|
||||
}
|
||||
return($dir);
|
||||
|
@ -1,8 +1,8 @@
|
||||
#!/usr/bin/env perl
|
||||
#!/usr/bin/env perl
|
||||
|
||||
#####
|
||||
# FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
# Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
# Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
#
|
||||
# == BEGIN LICENSE ==
|
||||
#
|
||||
@ -134,7 +134,7 @@ _HTML_TAG_
|
||||
if($FORM{'Toolbar'} ne "") {
|
||||
$ToolbarSet = &specialchar_cnv( $FORM{'Toolbar'} );
|
||||
}
|
||||
$Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
|
||||
$Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ;
|
||||
&Create();
|
||||
|
||||
print <<"_HTML_TAG_";
|
||||
@ -159,6 +159,8 @@ my $dir;
|
||||
$dir = $ENV{'PATH_INFO'};
|
||||
} elsif($ENV{'FILEPATH_INFO'}) {
|
||||
$dir = $ENV{'FILEPATH_INFO'};
|
||||
} elsif($ENV{'REQUEST_URI'}) {
|
||||
$dir = $ENV{'REQUEST_URI'};
|
||||
}
|
||||
}
|
||||
return($dir);
|
||||
|
@ -1,8 +1,8 @@
|
||||
#!/usr/bin/env perl
|
||||
#!/usr/bin/env perl
|
||||
|
||||
#####
|
||||
# FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
# Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
# Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
#
|
||||
# == BEGIN LICENSE ==
|
||||
#
|
||||
@ -141,7 +141,7 @@ _HTML_TAG_
|
||||
if($FORM{'Skin'} ne "") {
|
||||
$Config{'SkinPath'} = $sBasePath . 'editor/skins/' . &specialchar_cnv( $FORM{'Skin'} ) . '/' ;
|
||||
}
|
||||
$Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
|
||||
$Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ;
|
||||
&Create() ;
|
||||
|
||||
print <<"_HTML_TAG_";
|
||||
@ -166,6 +166,8 @@ my $dir;
|
||||
$dir = $ENV{'PATH_INFO'};
|
||||
} elsif($ENV{'FILEPATH_INFO'}) {
|
||||
$dir = $ENV{'FILEPATH_INFO'};
|
||||
} elsif($ENV{'REQUEST_URI'}) {
|
||||
$dir = $ENV{'REQUEST_URI'};
|
||||
}
|
||||
}
|
||||
return($dir);
|
||||
|
@ -1,8 +1,8 @@
|
||||
#!/usr/bin/env perl
|
||||
#!/usr/bin/env perl
|
||||
|
||||
#####
|
||||
# FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
# Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
# Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
#
|
||||
# == BEGIN LICENSE ==
|
||||
#
|
||||
@ -94,7 +94,7 @@ _HTML_TAG_
|
||||
print <<"_HTML_TAG_";
|
||||
<tr>
|
||||
<td valign="top" nowrap><b>$key</b></td>
|
||||
<td width="100%">$postedValue</td>
|
||||
<td width="100%" style="white-space:pre">$postedValue</td>
|
||||
</tr>
|
||||
_HTML_TAG_
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
<?php
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -47,11 +47,11 @@ $sBasePath = substr( $sBasePath, 0, strpos( $sBasePath, "_samples" ) ) ;
|
||||
|
||||
$oFCKeditor = new FCKeditor('FCKeditor1') ;
|
||||
$oFCKeditor->BasePath = $sBasePath ;
|
||||
$oFCKeditor->Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
|
||||
$oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ;
|
||||
$oFCKeditor->Create() ;
|
||||
?>
|
||||
<br>
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
<?php
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -99,10 +99,10 @@ else
|
||||
$oFCKeditor->Config['DefaultLanguage'] = 'en' ;
|
||||
}
|
||||
|
||||
$oFCKeditor->Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
|
||||
$oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ;
|
||||
$oFCKeditor->Create() ;
|
||||
?> <br>
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
<?php
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -79,11 +79,11 @@ $oFCKeditor->BasePath = $sBasePath ;
|
||||
if ( isset($_GET['Toolbar']) )
|
||||
$oFCKeditor->ToolbarSet = htmlspecialchars($_GET['Toolbar']);
|
||||
|
||||
$oFCKeditor->Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
|
||||
$oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ;
|
||||
$oFCKeditor->Create() ;
|
||||
?>
|
||||
<br>
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
<?php
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -85,11 +85,11 @@ $oFCKeditor->BasePath = $sBasePath ;
|
||||
if ( isset($_GET['Skin']) )
|
||||
$oFCKeditor->Config['SkinPath'] = $sBasePath . 'editor/skins/' . htmlspecialchars($_GET['Skin']) . '/' ;
|
||||
|
||||
$oFCKeditor->Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
|
||||
$oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ;
|
||||
$oFCKeditor->Create() ;
|
||||
?>
|
||||
<br>
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
<?php
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -56,7 +56,7 @@ foreach ( $postArray as $sForm => $value )
|
||||
?>
|
||||
<tr>
|
||||
<td valign="top" nowrap><b><?=$sForm?></b></td>
|
||||
<td width="100%"><?=$postedValue?></td>
|
||||
<td width="100%" style="white-space:pre"><?=$postedValue?></td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
|
@ -1,8 +1,8 @@
|
||||
#!/usr/bin/env python
|
||||
#!/usr/bin/env python
|
||||
|
||||
"""
|
||||
FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
|
||||
== BEGIN LICENSE ==
|
||||
|
||||
@ -57,7 +57,7 @@ try:
|
||||
|
||||
oFCKeditor = fckeditor.FCKeditor('FCKeditor1')
|
||||
oFCKeditor.BasePath = sBasePath
|
||||
oFCKeditor.Value = """This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>."""
|
||||
oFCKeditor.Value = """<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>"""
|
||||
print oFCKeditor.Create()
|
||||
except Exception, e:
|
||||
print e
|
||||
@ -78,5 +78,3 @@ print """
|
||||
</body>
|
||||
</html>
|
||||
"""
|
||||
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
#!/usr/bin/env python
|
||||
#!/usr/bin/env python
|
||||
|
||||
"""
|
||||
FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
|
||||
== BEGIN LICENSE ==
|
||||
|
||||
@ -65,7 +65,7 @@ for key in form.keys():
|
||||
print """
|
||||
<tr>
|
||||
<td valign="top" nowrap><b>%s</b></td>
|
||||
<td width="100%%">%s</td>
|
||||
<td width="100%%" style="white-space:pre">%s</td>
|
||||
</tr>
|
||||
""" % (key, value)
|
||||
except Exception, e:
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -47,4 +47,4 @@ pre
|
||||
white-space: pre-wrap; /* css-3 */
|
||||
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
|
||||
word-wrap: break-word; /* Internet Explorer 5.5+ */
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,8 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
||||
"http://www.w3.org/TR/html4/strict.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -21,12 +22,12 @@
|
||||
*
|
||||
* Page used to select the sample to view.
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<html>
|
||||
<head>
|
||||
<title>FCKeditor - Sample Selection</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="robots" content="noindex, nofollow" />
|
||||
<link href="sample.css" rel="stylesheet" type="text/css" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<link href="sample.css" rel="stylesheet" type="text/css">
|
||||
<script type="text/javascript">
|
||||
|
||||
if ( window.top == window )
|
||||
@ -40,7 +41,7 @@ function OpenSample( sample )
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body style="margin-top: 0px; margin-bottom: 0px;">
|
||||
<body style="margin:1em;">
|
||||
<table border="0" cellpadding="0" cellspacing="0" style="height: 100%">
|
||||
<tr>
|
||||
<td>
|
||||
@ -62,55 +63,49 @@ function OpenSample( sample )
|
||||
<option value="html/sample11.html">JavaScript : Sample 11 : Shared toolbar from IFRAME</option>
|
||||
<option value="html/sample12.html">JavaScript : Sample 12 : Enter key behavior</option>
|
||||
<option value="html/sample13.html">JavaScript : Sample 13 : Dinamically switching with a Textarea</option>
|
||||
</optgroup>
|
||||
<optgroup label=" ">
|
||||
<option value="html/sample14.html">JavaScript : Sample 14 : XHTML 1.1</option>
|
||||
<option value=""></option>
|
||||
</optgroup>
|
||||
<optgroup label="Active Fox Pro">
|
||||
<option value="afp/sample01.afp">AFP : Sample 01 : Editor with all features</option>
|
||||
<option value="afp/sample02.afp">AFP : Sample 02 : Multi-language support</option>
|
||||
<option value="afp/sample03.afp">AFP : Sample 03 : Toolbar selection</option>
|
||||
<option value="afp/sample04.afp">AFP : Sample 04 : Skins support</option>
|
||||
</optgroup>
|
||||
<optgroup label=" ">
|
||||
<option value=""></option>
|
||||
</optgroup>
|
||||
<optgroup label="ASP">
|
||||
<option value="asp/sample01.asp">ASP : Sample 01 : Editor with all features</option>
|
||||
<option value="asp/sample02.asp">ASP : Sample 02 : Multi-language support</option>
|
||||
<option value="asp/sample03.asp">ASP : Sample 03 : Toolbar selection</option>
|
||||
<option value="asp/sample04.asp">ASP : Sample 04 : Skins support</option>
|
||||
</optgroup>
|
||||
<optgroup label=" ">
|
||||
<option value=""></option>
|
||||
</optgroup>
|
||||
<optgroup label="ColdFusion">
|
||||
<option value="cfm/sample01.cfm">ColdFusion : Sample 01 : Editor with all features</option>
|
||||
<option value="cfm/sample02_mx.cfm">ColdFusion : Sample 02 : Advanced version for ColdFusion
|
||||
MX</option>
|
||||
</optgroup>
|
||||
<optgroup label=" ">
|
||||
<option value=""></option>
|
||||
</optgroup>
|
||||
<optgroup label="Lasso">
|
||||
<option value="lasso/sample01.lasso">Lasso : Sample 01 : Editor with all features</option>
|
||||
<option value="lasso/sample02.lasso">Lasso : Sample 02 : Multi-language support</option>
|
||||
<option value="lasso/sample03.lasso">Lasso : Sample 03 : Toolbar selection</option>
|
||||
<option value="lasso/sample04.lasso">Lasso : Sample 04 : Skins support</option>
|
||||
</optgroup>
|
||||
<optgroup label=" ">
|
||||
<option value=""></option>
|
||||
</optgroup>
|
||||
<optgroup label="Perl">
|
||||
<option value="perl/sample01.cgi">Perl : Sample 01 : Editor with all features</option>
|
||||
<option value="perl/sample02.cgi">Perl : Sample 02 : Multi-language support</option>
|
||||
<option value="perl/sample03.cgi">Perl : Sample 03 : Toolbar selection</option>
|
||||
<option value="perl/sample04.cgi">Perl : Sample 04 : Skins support</option>
|
||||
</optgroup>
|
||||
<optgroup label=" ">
|
||||
<option value=""></option>
|
||||
</optgroup>
|
||||
<optgroup label="PHP">
|
||||
<option value="php/sample01.php">PHP : Sample 01 : Editor with all features</option>
|
||||
<option value="php/sample02.php">PHP : Sample 02 : Multi-language support</option>
|
||||
<option value="php/sample03.php">PHP : Sample 03 : Toolbar selection</option>
|
||||
<option value="php/sample04.php">PHP : Sample 04 : Skins support</option>
|
||||
</optgroup>
|
||||
<optgroup label=" ">
|
||||
<option value=""></option>
|
||||
</optgroup>
|
||||
<optgroup label="Python">
|
||||
<option value="py/sample01.py">Python : Sample 01 : Editor with all features</option>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -32,7 +32,8 @@
|
||||
<h1>
|
||||
FCKeditor Upgrade</h1>
|
||||
<p>
|
||||
Please check the following URL for notes regarding upgrade: <a href="http://wiki.fckeditor.net/Developer%27s_Guide/Upgrade">
|
||||
http://wiki.fckeditor.net/Developer%27s_Guide/Upgrade</a></p>
|
||||
Please check the following URL for notes regarding upgrade:<br />
|
||||
<a href="http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Installation/Upgrading">
|
||||
http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Installation/Upgrading</a></p>
|
||||
</body>
|
||||
</html>
|
||||
|
File diff suppressed because it is too large
Load Diff
3373
phpgwapi/js/fckeditor/_whatsnew_history.html
Normal file
3373
phpgwapi/js/fckeditor/_whatsnew_history.html
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -23,8 +23,10 @@
|
||||
|
||||
var FCKContextMenu = function( parentWindow, langDir )
|
||||
{
|
||||
var oPanel = this._Panel = new FCKPanel( parentWindow, true ) ;
|
||||
oPanel.AppendStyleSheet( FCKConfig.SkinPath + 'fck_editor.css' ) ;
|
||||
this.CtrlDisable = false ;
|
||||
|
||||
var oPanel = this._Panel = new FCKPanel( parentWindow ) ;
|
||||
oPanel.AppendStyleSheet( FCKConfig.SkinEditorCSS ) ;
|
||||
oPanel.IsContextMenu = true ;
|
||||
|
||||
// The FCKTools.DisableSelection doesn't seems to work to avoid dragging of the icons in Mozilla
|
||||
@ -45,13 +47,22 @@ FCKContextMenu.prototype.SetMouseClickWindow = function( mouseClickWindow )
|
||||
if ( !FCKBrowserInfo.IsIE )
|
||||
{
|
||||
this._Document = mouseClickWindow.document ;
|
||||
if ( FCKBrowserInfo.IsOpera && !( 'oncontextmenu' in document.createElement('foo') ) )
|
||||
{
|
||||
this._Document.addEventListener( 'mousedown', FCKContextMenu_Document_OnMouseDown, false ) ;
|
||||
this._Document.addEventListener( 'mouseup', FCKContextMenu_Document_OnMouseUp, false ) ;
|
||||
}
|
||||
this._Document.addEventListener( 'contextmenu', FCKContextMenu_Document_OnContextMenu, false ) ;
|
||||
}
|
||||
}
|
||||
|
||||
FCKContextMenu.prototype.AddItem = function( name, label, iconPathOrStripInfoArrayOrIndex, isDisabled )
|
||||
/**
|
||||
The customData parameter is just a value that will be send to the command that is executed,
|
||||
so it's possible to reuse the same command for several items just by assigning different data for each one.
|
||||
*/
|
||||
FCKContextMenu.prototype.AddItem = function( name, label, iconPathOrStripInfoArrayOrIndex, isDisabled, customData )
|
||||
{
|
||||
var oItem = this._MenuBlock.AddItem( name, label, iconPathOrStripInfoArrayOrIndex, isDisabled) ;
|
||||
var oItem = this._MenuBlock.AddItem( name, label, iconPathOrStripInfoArrayOrIndex, isDisabled, customData ) ;
|
||||
this._Redraw = true ;
|
||||
return oItem ;
|
||||
}
|
||||
@ -74,8 +85,6 @@ FCKContextMenu.prototype.AttachToElement = function( element )
|
||||
FCKTools.AddEventListenerEx( element, 'contextmenu', FCKContextMenu_AttachedElement_OnContextMenu, this ) ;
|
||||
else
|
||||
element._FCKContextMenu = this ;
|
||||
|
||||
// element.onmouseup = FCKContextMenu_AttachedElement_OnMouseUp ;
|
||||
}
|
||||
|
||||
function FCKContextMenu_Document_OnContextMenu( e )
|
||||
@ -86,19 +95,77 @@ function FCKContextMenu_Document_OnContextMenu( e )
|
||||
{
|
||||
if ( el._FCKContextMenu )
|
||||
{
|
||||
if ( el._FCKContextMenu.CtrlDisable && ( e.ctrlKey || e.metaKey ) )
|
||||
return true ;
|
||||
|
||||
FCKTools.CancelEvent( e ) ;
|
||||
FCKContextMenu_AttachedElement_OnContextMenu( e, el._FCKContextMenu, el ) ;
|
||||
return false ;
|
||||
}
|
||||
el = el.parentNode ;
|
||||
}
|
||||
return true ;
|
||||
}
|
||||
|
||||
var FCKContextMenu_OverrideButton ;
|
||||
|
||||
function FCKContextMenu_Document_OnMouseDown( e )
|
||||
{
|
||||
if( !e || e.button != 2 )
|
||||
return false ;
|
||||
|
||||
var el = e.target ;
|
||||
|
||||
while ( el )
|
||||
{
|
||||
if ( el._FCKContextMenu )
|
||||
{
|
||||
if ( el._FCKContextMenu.CtrlDisable && ( e.ctrlKey || e.metaKey ) )
|
||||
return true ;
|
||||
|
||||
var overrideButton = FCKContextMenu_OverrideButton ;
|
||||
if( !overrideButton )
|
||||
{
|
||||
var doc = FCKTools.GetElementDocument( e.target ) ;
|
||||
overrideButton = FCKContextMenu_OverrideButton = doc.createElement('input') ;
|
||||
overrideButton.type = 'button' ;
|
||||
var buttonHolder = doc.createElement('p') ;
|
||||
doc.body.appendChild( buttonHolder ) ;
|
||||
buttonHolder.appendChild( overrideButton ) ;
|
||||
}
|
||||
|
||||
overrideButton.style.cssText = 'position:absolute;top:' + ( e.clientY - 2 ) +
|
||||
'px;left:' + ( e.clientX - 2 ) +
|
||||
'px;width:5px;height:5px;opacity:0.01' ;
|
||||
}
|
||||
el = el.parentNode ;
|
||||
}
|
||||
return false ;
|
||||
}
|
||||
|
||||
function FCKContextMenu_Document_OnMouseUp( e )
|
||||
{
|
||||
var overrideButton = FCKContextMenu_OverrideButton ;
|
||||
|
||||
if ( overrideButton )
|
||||
{
|
||||
var parent = overrideButton.parentNode ;
|
||||
parent.parentNode.removeChild( parent ) ;
|
||||
FCKContextMenu_OverrideButton = undefined ;
|
||||
|
||||
if( e && e.button == 2 )
|
||||
{
|
||||
FCKContextMenu_Document_OnContextMenu( e ) ;
|
||||
return false ;
|
||||
}
|
||||
}
|
||||
return true ;
|
||||
}
|
||||
|
||||
function FCKContextMenu_AttachedElement_OnContextMenu( ev, fckContextMenu, el )
|
||||
{
|
||||
// var iButton = e ? e.which - 1 : event.button ;
|
||||
|
||||
// if ( iButton != 2 )
|
||||
// return ;
|
||||
if ( fckContextMenu.CtrlDisable && ( ev.ctrlKey || ev.metaKey ) )
|
||||
return true ;
|
||||
|
||||
var eTarget = el || this ;
|
||||
|
||||
@ -113,16 +180,29 @@ function FCKContextMenu_AttachedElement_OnContextMenu( ev, fckContextMenu, el )
|
||||
fckContextMenu._MenuBlock.Create( fckContextMenu._Panel.MainNode ) ;
|
||||
fckContextMenu._Redraw = false ;
|
||||
}
|
||||
|
||||
|
||||
// This will avoid that the content of the context menu can be dragged in IE
|
||||
// as the content of the panel is recreated we need to do it every time
|
||||
FCKTools.DisableSelection( fckContextMenu._Panel.Document.body ) ;
|
||||
|
||||
fckContextMenu._Panel.Show(
|
||||
ev.pageX || ev.screenX,
|
||||
ev.pageY || ev.screenY,
|
||||
ev.currentTarget || null
|
||||
) ;
|
||||
var x = 0 ;
|
||||
var y = 0 ;
|
||||
if ( FCKBrowserInfo.IsIE )
|
||||
{
|
||||
x = ev.screenX ;
|
||||
y = ev.screenY ;
|
||||
}
|
||||
else if ( FCKBrowserInfo.IsSafari )
|
||||
{
|
||||
x = ev.clientX ;
|
||||
y = ev.clientY ;
|
||||
}
|
||||
else
|
||||
{
|
||||
x = ev.pageX ;
|
||||
y = ev.pageY ;
|
||||
}
|
||||
fckContextMenu._Panel.Show( x, y, ev.currentTarget || null ) ;
|
||||
|
||||
return false ;
|
||||
}
|
||||
@ -131,4 +211,4 @@ function FCKContextMenu_MenuBlock_OnClick( menuItem, contextMenu )
|
||||
{
|
||||
contextMenu._Panel.Hide() ;
|
||||
FCKTools.RunFunction( contextMenu.OnItemClick, contextMenu, menuItem ) ;
|
||||
}
|
||||
}
|
||||
|
119
phpgwapi/js/fckeditor/editor/_source/classes/fckdataprocessor.js
Normal file
119
phpgwapi/js/fckeditor/editor/_source/classes/fckdataprocessor.js
Normal file
@ -0,0 +1,119 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2008 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 ==
|
||||
*
|
||||
* The Data Processor is responsible for transforming the input and output data
|
||||
* in the editor. For more info:
|
||||
* http://dev.fckeditor.net/wiki/Components/DataProcessor
|
||||
*
|
||||
* The default implementation offers the base XHTML compatibility features of
|
||||
* FCKeditor. Further Data Processors may be implemented for other purposes.
|
||||
*
|
||||
*/
|
||||
|
||||
var FCKDataProcessor = function()
|
||||
{}
|
||||
|
||||
FCKDataProcessor.prototype =
|
||||
{
|
||||
/*
|
||||
* Returns a string representing the HTML format of "data". The returned
|
||||
* value will be loaded in the editor.
|
||||
* The HTML must be from <html> to </html>, including <head>, <body> and
|
||||
* eventually the DOCTYPE.
|
||||
* Note: HTML comments may already be part of the data because of the
|
||||
* pre-processing made with ProtectedSource.
|
||||
* @param {String} data The data to be converted in the
|
||||
* DataProcessor specific format.
|
||||
*/
|
||||
ConvertToHtml : function( data )
|
||||
{
|
||||
// The default data processor must handle two different cases depending
|
||||
// on the FullPage setting. Custom Data Processors will not be
|
||||
// compatible with FullPage, much probably.
|
||||
if ( FCKConfig.FullPage )
|
||||
{
|
||||
// Save the DOCTYPE.
|
||||
FCK.DocTypeDeclaration = data.match( FCKRegexLib.DocTypeTag ) ;
|
||||
|
||||
// Check if the <body> tag is available.
|
||||
if ( !FCKRegexLib.HasBodyTag.test( data ) )
|
||||
data = '<body>' + data + '</body>' ;
|
||||
|
||||
// Check if the <html> tag is available.
|
||||
if ( !FCKRegexLib.HtmlOpener.test( data ) )
|
||||
data = '<html dir="' + FCKConfig.ContentLangDirection + '">' + data + '</html>' ;
|
||||
|
||||
// Check if the <head> tag is available.
|
||||
if ( !FCKRegexLib.HeadOpener.test( data ) )
|
||||
data = data.replace( FCKRegexLib.HtmlOpener, '$&<head><title></title></head>' ) ;
|
||||
|
||||
return data ;
|
||||
}
|
||||
else
|
||||
{
|
||||
var html =
|
||||
FCKConfig.DocType +
|
||||
'<html dir="' + FCKConfig.ContentLangDirection + '"' ;
|
||||
|
||||
// On IE, if you are using a DOCTYPE different of HTML 4 (like
|
||||
// XHTML), you must force the vertical scroll to show, otherwise
|
||||
// the horizontal one may appear when the page needs vertical scrolling.
|
||||
// TODO : Check it with IE7 and make it IE6- if it is the case.
|
||||
if ( FCKBrowserInfo.IsIE && FCKConfig.DocType.length > 0 && !FCKRegexLib.Html4DocType.test( FCKConfig.DocType ) )
|
||||
html += ' style="overflow-y: scroll"' ;
|
||||
|
||||
html += '><head><title></title></head>' +
|
||||
'<body' + FCKConfig.GetBodyAttributes() + '>' +
|
||||
data +
|
||||
'</body></html>' ;
|
||||
|
||||
return html ;
|
||||
}
|
||||
},
|
||||
|
||||
/*
|
||||
* Converts a DOM (sub-)tree to a string in the data format.
|
||||
* @param {Object} rootNode The node that contains the DOM tree to be
|
||||
* converted to the data format.
|
||||
* @param {Boolean} excludeRoot Indicates that the root node must not
|
||||
* be included in the conversion, only its children.
|
||||
* @param {Boolean} format Indicates that the data must be formatted
|
||||
* for human reading. Not all Data Processors may provide it.
|
||||
*/
|
||||
ConvertToDataFormat : function( rootNode, excludeRoot, ignoreIfEmptyParagraph, format )
|
||||
{
|
||||
var data = FCKXHtml.GetXHTML( rootNode, !excludeRoot, format ) ;
|
||||
|
||||
if ( ignoreIfEmptyParagraph && FCKRegexLib.EmptyOutParagraph.test( data ) )
|
||||
return '' ;
|
||||
|
||||
return data ;
|
||||
},
|
||||
|
||||
/*
|
||||
* Makes any necessary changes to a piece of HTML for insertion in the
|
||||
* editor selection position.
|
||||
* @param {String} html The HTML to be fixed.
|
||||
*/
|
||||
FixHtml : function( html )
|
||||
{
|
||||
return html ;
|
||||
}
|
||||
} ;
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -43,4 +43,4 @@ FCKDocumentFragment.prototype =
|
||||
{
|
||||
FCKDomTools.InsertAfterNode( existingNode, this.RootNode ) ;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -55,4 +55,4 @@ FCKDocumentFragment.prototype =
|
||||
while( ( eLast = eRoot.lastChild ) )
|
||||
FCKDomTools.InsertAfterNode( existingNode, eRoot.removeChild( eLast ) ) ;
|
||||
}
|
||||
} ;
|
||||
} ;
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -19,12 +19,13 @@
|
||||
* == END LICENSE ==
|
||||
*
|
||||
* Class for working with a selection range, much like the W3C DOM Range, but
|
||||
* it is not intented to be an implementation of the W3C interface.
|
||||
* it is not intended to be an implementation of the W3C interface.
|
||||
*/
|
||||
|
||||
var FCKDomRange = function( sourceWindow )
|
||||
{
|
||||
this.Window = sourceWindow ;
|
||||
this._Cache = {} ;
|
||||
}
|
||||
|
||||
FCKDomRange.prototype =
|
||||
@ -32,24 +33,47 @@ FCKDomRange.prototype =
|
||||
|
||||
_UpdateElementInfo : function()
|
||||
{
|
||||
if ( !this._Range )
|
||||
var innerRange = this._Range ;
|
||||
|
||||
if ( !innerRange )
|
||||
this.Release( true ) ;
|
||||
else
|
||||
{
|
||||
var eStart = this._Range.startContainer ;
|
||||
var eEnd = this._Range.endContainer ;
|
||||
// For text nodes, the node itself is the StartNode.
|
||||
var eStart = innerRange.startContainer ;
|
||||
var eEnd = innerRange.endContainer ;
|
||||
|
||||
var oElementPath = new FCKElementPath( eStart ) ;
|
||||
this.StartContainer = oElementPath.LastElement ;
|
||||
this.StartNode = eStart.nodeType == 3 ? eStart : eStart.childNodes[ innerRange.startOffset ] ;
|
||||
this.StartContainer = eStart ;
|
||||
this.StartBlock = oElementPath.Block ;
|
||||
this.StartBlockLimit = oElementPath.BlockLimit ;
|
||||
|
||||
if ( eStart != eEnd )
|
||||
oElementPath = new FCKElementPath( eEnd ) ;
|
||||
this.EndContainer = oElementPath.LastElement ;
|
||||
|
||||
// The innerRange.endContainer[ innerRange.endOffset ] is not
|
||||
// usually part of the range, but the marker for the range end. So,
|
||||
// let's get the previous available node as the real end.
|
||||
var eEndNode = eEnd ;
|
||||
if ( innerRange.endOffset == 0 )
|
||||
{
|
||||
while ( eEndNode && !eEndNode.previousSibling )
|
||||
eEndNode = eEndNode.parentNode ;
|
||||
|
||||
if ( eEndNode )
|
||||
eEndNode = eEndNode.previousSibling ;
|
||||
}
|
||||
else if ( eEndNode.nodeType == 1 )
|
||||
eEndNode = eEndNode.childNodes[ innerRange.endOffset - 1 ] ;
|
||||
|
||||
this.EndNode = eEndNode ;
|
||||
this.EndContainer = eEnd ;
|
||||
this.EndBlock = oElementPath.Block ;
|
||||
this.EndBlockLimit = oElementPath.BlockLimit ;
|
||||
}
|
||||
|
||||
this._Cache = {} ;
|
||||
},
|
||||
|
||||
CreateRange : function()
|
||||
@ -74,12 +98,15 @@ FCKDomRange.prototype =
|
||||
this._UpdateElementInfo() ;
|
||||
return docFrag ;
|
||||
}
|
||||
return null ;
|
||||
},
|
||||
|
||||
CheckIsCollapsed : function()
|
||||
{
|
||||
if ( this._Range )
|
||||
return this._Range.collapsed ;
|
||||
|
||||
return false ;
|
||||
},
|
||||
|
||||
Collapse : function( toStart )
|
||||
@ -121,12 +148,20 @@ FCKDomRange.prototype =
|
||||
// is "<p><b><i>^</i></b> Text</p>" (inside <i>).
|
||||
MoveToElementEditStart : function( targetElement )
|
||||
{
|
||||
var child ;
|
||||
var editableElement ;
|
||||
|
||||
while ( ( child = targetElement.firstChild ) && child.nodeType == 1 && FCKListsLib.EmptyElements[ child.nodeName.toLowerCase() ] == null )
|
||||
targetElement = child ;
|
||||
while ( targetElement && targetElement.nodeType == 1 )
|
||||
{
|
||||
if ( FCKDomTools.CheckIsEditable( targetElement ) )
|
||||
editableElement = targetElement ;
|
||||
else if ( editableElement )
|
||||
break ; // If we already found an editable element, stop the loop.
|
||||
|
||||
this.MoveToElementStart( targetElement ) ;
|
||||
targetElement = targetElement.firstChild ;
|
||||
}
|
||||
|
||||
if ( editableElement )
|
||||
this.MoveToElementStart( editableElement ) ;
|
||||
},
|
||||
|
||||
InsertNode : function( node )
|
||||
@ -135,7 +170,7 @@ FCKDomRange.prototype =
|
||||
this._Range.insertNode( node ) ;
|
||||
},
|
||||
|
||||
CheckIsEmpty : function( ignoreEndBRs )
|
||||
CheckIsEmpty : function()
|
||||
{
|
||||
if ( this.CheckIsCollapsed() )
|
||||
return true ;
|
||||
@ -144,124 +179,250 @@ FCKDomRange.prototype =
|
||||
var eToolDiv = this.Window.document.createElement( 'div' ) ;
|
||||
this._Range.cloneContents().AppendTo( eToolDiv ) ;
|
||||
|
||||
FCKDomTools.TrimNode( eToolDiv, ignoreEndBRs ) ;
|
||||
FCKDomTools.TrimNode( eToolDiv ) ;
|
||||
|
||||
return ( eToolDiv.innerHTML.length == 0 ) ;
|
||||
},
|
||||
|
||||
/**
|
||||
* Checks if the start boundary of the current range is "visually" (like a
|
||||
* selection caret) at the beginning of the block. It means that some
|
||||
* things could be brefore the range, like spaces or empty inline elements,
|
||||
* but it would still be considered at the beginning of the block.
|
||||
*/
|
||||
CheckStartOfBlock : function()
|
||||
{
|
||||
// Create a clone of the current range.
|
||||
var oTestRange = this.Clone() ;
|
||||
var cache = this._Cache ;
|
||||
var bIsStartOfBlock = cache.IsStartOfBlock ;
|
||||
|
||||
// Collapse it to its start point.
|
||||
oTestRange.Collapse( true ) ;
|
||||
if ( bIsStartOfBlock != undefined )
|
||||
return bIsStartOfBlock ;
|
||||
|
||||
// Move the start boundary to the start of the block.
|
||||
oTestRange.SetStart( oTestRange.StartBlock || oTestRange.StartBlockLimit, 1 ) ;
|
||||
// Take the block reference.
|
||||
var block = this.StartBlock || this.StartBlockLimit ;
|
||||
|
||||
var bIsStartOfBlock = oTestRange.CheckIsEmpty() ;
|
||||
var container = this._Range.startContainer ;
|
||||
var offset = this._Range.startOffset ;
|
||||
var currentNode ;
|
||||
|
||||
oTestRange.Release() ;
|
||||
if ( offset > 0 )
|
||||
{
|
||||
// First, check the start container. If it is a text node, get the
|
||||
// substring of the node value before the range offset.
|
||||
if ( container.nodeType == 3 )
|
||||
{
|
||||
var textValue = container.nodeValue.substr( 0, offset ).Trim() ;
|
||||
|
||||
return bIsStartOfBlock ;
|
||||
// If we have some text left in the container, we are not at
|
||||
// the end for the block.
|
||||
if ( textValue.length != 0 )
|
||||
return cache.IsStartOfBlock = false ;
|
||||
}
|
||||
else
|
||||
currentNode = container.childNodes[ offset - 1 ] ;
|
||||
}
|
||||
|
||||
// We'll not have a currentNode if the container was a text node, or
|
||||
// the offset is zero.
|
||||
if ( !currentNode )
|
||||
currentNode = FCKDomTools.GetPreviousSourceNode( container, true, null, block ) ;
|
||||
|
||||
while ( currentNode )
|
||||
{
|
||||
switch ( currentNode.nodeType )
|
||||
{
|
||||
case 1 :
|
||||
// It's not an inline element.
|
||||
if ( !FCKListsLib.InlineChildReqElements[ currentNode.nodeName.toLowerCase() ] )
|
||||
return cache.IsStartOfBlock = false ;
|
||||
|
||||
break ;
|
||||
|
||||
case 3 :
|
||||
// It's a text node with real text.
|
||||
if ( currentNode.nodeValue.Trim().length > 0 )
|
||||
return cache.IsStartOfBlock = false ;
|
||||
}
|
||||
|
||||
currentNode = FCKDomTools.GetPreviousSourceNode( currentNode, false, null, block ) ;
|
||||
}
|
||||
|
||||
return cache.IsStartOfBlock = true ;
|
||||
},
|
||||
|
||||
/**
|
||||
* Checks if the end boundary of the current range is "visually" (like a
|
||||
* selection caret) at the end of the block. It means that some things
|
||||
* could be after the range, like spaces, empty inline elements, or a
|
||||
* single <br>, but it would still be considered at the end of the block.
|
||||
*/
|
||||
CheckEndOfBlock : function( refreshSelection )
|
||||
{
|
||||
// Create a clone of the current range.
|
||||
var oTestRange = this.Clone() ;
|
||||
var isEndOfBlock = this._Cache.IsEndOfBlock ;
|
||||
|
||||
// Collapse it to its end point.
|
||||
oTestRange.Collapse( false ) ;
|
||||
if ( isEndOfBlock != undefined )
|
||||
return isEndOfBlock ;
|
||||
|
||||
// Move the end boundary to the end of the block.
|
||||
oTestRange.SetEnd( oTestRange.EndBlock || oTestRange.EndBlockLimit, 2 ) ;
|
||||
// Take the block reference.
|
||||
var block = this.EndBlock || this.EndBlockLimit ;
|
||||
|
||||
var bIsEndOfBlock = oTestRange.CheckIsCollapsed() ;
|
||||
|
||||
if ( !bIsEndOfBlock )
|
||||
var container = this._Range.endContainer ;
|
||||
var offset = this._Range.endOffset ;
|
||||
var currentNode ;
|
||||
|
||||
// First, check the end container. If it is a text node, get the
|
||||
// substring of the node value after the range offset.
|
||||
if ( container.nodeType == 3 )
|
||||
{
|
||||
// Inserts the contents of the range in a div tag.
|
||||
var eToolDiv = this.Window.document.createElement( 'div' ) ;
|
||||
oTestRange._Range.cloneContents().AppendTo( eToolDiv ) ;
|
||||
FCKDomTools.TrimNode( eToolDiv, true ) ;
|
||||
|
||||
// Find out if we are in an empty tree of inline elements, like <b><i><span></span></i></b>
|
||||
bIsEndOfBlock = true ;
|
||||
var eLastChild = eToolDiv ;
|
||||
while ( ( eLastChild = eLastChild.lastChild ) )
|
||||
var textValue = container.nodeValue ;
|
||||
if ( offset < textValue.length )
|
||||
{
|
||||
// Check the following:
|
||||
// 1. Is there more than one node in the parents children?
|
||||
// 2. Is the node not an element node?
|
||||
// 3. Is it not a inline element.
|
||||
if ( eLastChild.previousSibling || eLastChild.nodeType != 1 || FCKListsLib.InlineChildReqElements[ eLastChild.nodeName.toLowerCase() ] == null )
|
||||
{
|
||||
// So we are not in the end of the range.
|
||||
bIsEndOfBlock = false ;
|
||||
break ;
|
||||
}
|
||||
textValue = textValue.substr( offset ) ;
|
||||
|
||||
// If we have some text left in the container, we are not at
|
||||
// the end for the block.
|
||||
if ( textValue.Trim().length != 0 )
|
||||
return this._Cache.IsEndOfBlock = false ;
|
||||
}
|
||||
}
|
||||
|
||||
oTestRange.Release() ;
|
||||
else
|
||||
currentNode = container.childNodes[ offset ] ;
|
||||
|
||||
// We'll not have a currentNode if the container was a text node, of
|
||||
// the offset is out the container children limits (after it probably).
|
||||
if ( !currentNode )
|
||||
currentNode = FCKDomTools.GetNextSourceNode( container, true, null, block ) ;
|
||||
|
||||
var hadBr = false ;
|
||||
|
||||
while ( currentNode )
|
||||
{
|
||||
switch ( currentNode.nodeType )
|
||||
{
|
||||
case 1 :
|
||||
var nodeName = currentNode.nodeName.toLowerCase() ;
|
||||
|
||||
// It's an inline element.
|
||||
if ( FCKListsLib.InlineChildReqElements[ nodeName ] )
|
||||
break ;
|
||||
|
||||
// It is the first <br> found.
|
||||
if ( nodeName == 'br' && !hadBr )
|
||||
{
|
||||
hadBr = true ;
|
||||
break ;
|
||||
}
|
||||
|
||||
return this._Cache.IsEndOfBlock = false ;
|
||||
|
||||
case 3 :
|
||||
// It's a text node with real text.
|
||||
if ( currentNode.nodeValue.Trim().length > 0 )
|
||||
return this._Cache.IsEndOfBlock = false ;
|
||||
}
|
||||
|
||||
currentNode = FCKDomTools.GetNextSourceNode( currentNode, false, null, block ) ;
|
||||
}
|
||||
|
||||
if ( refreshSelection )
|
||||
this.Select() ;
|
||||
|
||||
return bIsEndOfBlock ;
|
||||
return this._Cache.IsEndOfBlock = true ;
|
||||
},
|
||||
|
||||
CreateBookmark : function()
|
||||
// This is an "intrusive" way to create a bookmark. It includes <span> tags
|
||||
// in the range boundaries. The advantage of it is that it is possible to
|
||||
// handle DOM mutations when moving back to the bookmark.
|
||||
// Attention: the inclusion of nodes in the DOM is a design choice and
|
||||
// should not be changed as there are other points in the code that may be
|
||||
// using those nodes to perform operations. See GetBookmarkNode.
|
||||
// For performance, includeNodes=true if intended to SelectBookmark.
|
||||
CreateBookmark : function( includeNodes )
|
||||
{
|
||||
// Create the bookmark info (random IDs).
|
||||
var oBookmark =
|
||||
{
|
||||
StartId : 'fck_dom_range_start_' + (new Date()).valueOf() + '_' + Math.floor(Math.random()*1000),
|
||||
EndId : 'fck_dom_range_end_' + (new Date()).valueOf() + '_' + Math.floor(Math.random()*1000)
|
||||
StartId : (new Date()).valueOf() + Math.floor(Math.random()*1000) + 'S',
|
||||
EndId : (new Date()).valueOf() + Math.floor(Math.random()*1000) + 'E'
|
||||
} ;
|
||||
|
||||
var oDoc = this.Window.document ;
|
||||
var eSpan ;
|
||||
var eStartSpan ;
|
||||
var eEndSpan ;
|
||||
var oClone ;
|
||||
|
||||
// For collapsed ranges, add just the start marker.
|
||||
if ( !this.CheckIsCollapsed() )
|
||||
{
|
||||
eSpan = oDoc.createElement( 'span' ) ;
|
||||
eSpan.id = oBookmark.EndId ;
|
||||
eSpan.innerHTML = ' ' ; // For IE, it must have something inside, otherwise it may be removed during operations.
|
||||
eEndSpan = oDoc.createElement( 'span' ) ;
|
||||
eEndSpan.style.display = 'none' ;
|
||||
eEndSpan.id = oBookmark.EndId ;
|
||||
eEndSpan.setAttribute( '_fck_bookmark', true ) ;
|
||||
|
||||
// For IE, it must have something inside, otherwise it may be
|
||||
// removed during DOM operations.
|
||||
// if ( FCKBrowserInfo.IsIE )
|
||||
eEndSpan.innerHTML = ' ' ;
|
||||
|
||||
oClone = this.Clone() ;
|
||||
oClone.Collapse( false ) ;
|
||||
oClone.InsertNode( eSpan ) ;
|
||||
oClone.InsertNode( eEndSpan ) ;
|
||||
}
|
||||
|
||||
eSpan = oDoc.createElement( 'span' ) ;
|
||||
eSpan.id = oBookmark.StartId ;
|
||||
eSpan.innerHTML = ' ' ; // For IE, it must have something inside, otherwise it may be removed during operations.
|
||||
eStartSpan = oDoc.createElement( 'span' ) ;
|
||||
eStartSpan.style.display = 'none' ;
|
||||
eStartSpan.id = oBookmark.StartId ;
|
||||
eStartSpan.setAttribute( '_fck_bookmark', true ) ;
|
||||
|
||||
// For IE, it must have something inside, otherwise it may be removed
|
||||
// during DOM operations.
|
||||
// if ( FCKBrowserInfo.IsIE )
|
||||
eStartSpan.innerHTML = ' ' ;
|
||||
|
||||
oClone = this.Clone() ;
|
||||
oClone.Collapse( true ) ;
|
||||
oClone.InsertNode( eSpan ) ;
|
||||
oClone.InsertNode( eStartSpan ) ;
|
||||
|
||||
if ( includeNodes )
|
||||
{
|
||||
oBookmark.StartNode = eStartSpan ;
|
||||
oBookmark.EndNode = eEndSpan ;
|
||||
}
|
||||
|
||||
// Update the range position.
|
||||
if ( eEndSpan )
|
||||
{
|
||||
this.SetStart( eStartSpan, 4 ) ;
|
||||
this.SetEnd( eEndSpan, 3 ) ;
|
||||
}
|
||||
else
|
||||
this.MoveToPosition( eStartSpan, 4 ) ;
|
||||
|
||||
return oBookmark ;
|
||||
},
|
||||
|
||||
// This one should be a part of a hypothetic "bookmark" object.
|
||||
GetBookmarkNode : function( bookmark, start )
|
||||
{
|
||||
var doc = this.Window.document ;
|
||||
|
||||
if ( start )
|
||||
return bookmark.StartNode || doc.getElementById( bookmark.StartId ) ;
|
||||
else
|
||||
return bookmark.EndNode || doc.getElementById( bookmark.EndId ) ;
|
||||
},
|
||||
|
||||
MoveToBookmark : function( bookmark, preserveBookmark )
|
||||
{
|
||||
var oDoc = this.Window.document ;
|
||||
|
||||
var eStartSpan = oDoc.getElementById( bookmark.StartId ) ;
|
||||
var eEndSpan = oDoc.getElementById( bookmark.EndId ) ;
|
||||
var eStartSpan = this.GetBookmarkNode( bookmark, true ) ;
|
||||
var eEndSpan = this.GetBookmarkNode( bookmark, false ) ;
|
||||
|
||||
this.SetStart( eStartSpan, 3 ) ;
|
||||
|
||||
if ( !preserveBookmark )
|
||||
FCKDomTools.RemoveNode( eStartSpan ) ;
|
||||
|
||||
// If collapsed, the start span will not be available.
|
||||
// If collapsed, the end span will not be available.
|
||||
if ( eEndSpan )
|
||||
{
|
||||
this.SetEnd( eEndSpan, 3 ) ;
|
||||
@ -271,6 +432,113 @@ FCKDomRange.prototype =
|
||||
}
|
||||
else
|
||||
this.Collapse( true ) ;
|
||||
|
||||
this._UpdateElementInfo() ;
|
||||
},
|
||||
|
||||
// Non-intrusive bookmark algorithm
|
||||
CreateBookmark2 : function()
|
||||
{
|
||||
// If there is no range then get out of here.
|
||||
// It happens on initial load in Safari #962 and if the editor it's hidden also in Firefox
|
||||
if ( ! this._Range )
|
||||
return { "Start" : 0, "End" : 0 } ;
|
||||
|
||||
// First, we record down the offset values
|
||||
var bookmark =
|
||||
{
|
||||
"Start" : [ this._Range.startOffset ],
|
||||
"End" : [ this._Range.endOffset ]
|
||||
} ;
|
||||
// Since we're treating the document tree as normalized, we need to backtrack the text lengths
|
||||
// of previous text nodes into the offset value.
|
||||
var curStart = this._Range.startContainer.previousSibling ;
|
||||
var curEnd = this._Range.endContainer.previousSibling ;
|
||||
|
||||
// Also note that the node that we use for "address base" would change during backtracking.
|
||||
var addrStart = this._Range.startContainer ;
|
||||
var addrEnd = this._Range.endContainer ;
|
||||
while ( curStart && curStart.nodeType == 3 )
|
||||
{
|
||||
bookmark.Start[0] += curStart.length ;
|
||||
addrStart = curStart ;
|
||||
curStart = curStart.previousSibling ;
|
||||
}
|
||||
while ( curEnd && curEnd.nodeType == 3 )
|
||||
{
|
||||
bookmark.End[0] += curEnd.length ;
|
||||
addrEnd = curEnd ;
|
||||
curEnd = curEnd.previousSibling ;
|
||||
}
|
||||
|
||||
// If the object pointed to by the startOffset and endOffset are text nodes, we need
|
||||
// to backtrack and add in the text offset to the bookmark addresses.
|
||||
if ( addrStart.nodeType == 1 && addrStart.childNodes[bookmark.Start[0]] && addrStart.childNodes[bookmark.Start[0]].nodeType == 3 )
|
||||
{
|
||||
var curNode = addrStart.childNodes[bookmark.Start[0]] ;
|
||||
var offset = 0 ;
|
||||
while ( curNode.previousSibling && curNode.previousSibling.nodeType == 3 )
|
||||
{
|
||||
curNode = curNode.previousSibling ;
|
||||
offset += curNode.length ;
|
||||
}
|
||||
addrStart = curNode ;
|
||||
bookmark.Start[0] = offset ;
|
||||
}
|
||||
if ( addrEnd.nodeType == 1 && addrEnd.childNodes[bookmark.End[0]] && addrEnd.childNodes[bookmark.End[0]].nodeType == 3 )
|
||||
{
|
||||
var curNode = addrEnd.childNodes[bookmark.End[0]] ;
|
||||
var offset = 0 ;
|
||||
while ( curNode.previousSibling && curNode.previousSibling.nodeType == 3 )
|
||||
{
|
||||
curNode = curNode.previousSibling ;
|
||||
offset += curNode.length ;
|
||||
}
|
||||
addrEnd = curNode ;
|
||||
bookmark.End[0] = offset ;
|
||||
}
|
||||
|
||||
// Then, we record down the precise position of the container nodes
|
||||
// by walking up the DOM tree and counting their childNode index
|
||||
bookmark.Start = FCKDomTools.GetNodeAddress( addrStart, true ).concat( bookmark.Start ) ;
|
||||
bookmark.End = FCKDomTools.GetNodeAddress( addrEnd, true ).concat( bookmark.End ) ;
|
||||
return bookmark;
|
||||
},
|
||||
|
||||
MoveToBookmark2 : function( bookmark )
|
||||
{
|
||||
// Reverse the childNode counting algorithm in CreateBookmark2()
|
||||
var curStart = FCKDomTools.GetNodeFromAddress( this.Window.document, bookmark.Start.slice( 0, -1 ), true ) ;
|
||||
var curEnd = FCKDomTools.GetNodeFromAddress( this.Window.document, bookmark.End.slice( 0, -1 ), true ) ;
|
||||
|
||||
// Generate the W3C Range object and update relevant data
|
||||
this.Release( true ) ;
|
||||
this._Range = new FCKW3CRange( this.Window.document ) ;
|
||||
var startOffset = bookmark.Start[ bookmark.Start.length - 1 ] ;
|
||||
var endOffset = bookmark.End[ bookmark.End.length - 1 ] ;
|
||||
while ( curStart.nodeType == 3 && startOffset > curStart.length )
|
||||
{
|
||||
if ( ! curStart.nextSibling || curStart.nextSibling.nodeType != 3 )
|
||||
break ;
|
||||
startOffset -= curStart.length ;
|
||||
curStart = curStart.nextSibling ;
|
||||
}
|
||||
while ( curEnd.nodeType == 3 && endOffset > curEnd.length )
|
||||
{
|
||||
if ( ! curEnd.nextSibling || curEnd.nextSibling.nodeType != 3 )
|
||||
break ;
|
||||
endOffset -= curEnd.length ;
|
||||
curEnd = curEnd.nextSibling ;
|
||||
}
|
||||
this._Range.setStart( curStart, startOffset ) ;
|
||||
this._Range.setEnd( curEnd, endOffset ) ;
|
||||
this._UpdateElementInfo() ;
|
||||
},
|
||||
|
||||
MoveToPosition : function( targetElement, position )
|
||||
{
|
||||
this.SetStart( targetElement, position ) ;
|
||||
this.Collapse( true ) ;
|
||||
},
|
||||
|
||||
/*
|
||||
@ -282,7 +550,7 @@ FCKDomRange.prototype =
|
||||
* 3 = Before Start ^<target>contents</target>
|
||||
* 4 = After End <target>contents</target>^
|
||||
*/
|
||||
SetStart : function( targetElement, position )
|
||||
SetStart : function( targetElement, position, noInfoUpdate )
|
||||
{
|
||||
var oRange = this._Range ;
|
||||
if ( !oRange )
|
||||
@ -305,7 +573,9 @@ FCKDomRange.prototype =
|
||||
case 4 : // After End <target>contents</target>^
|
||||
oRange.setStartAfter( targetElement ) ;
|
||||
}
|
||||
this._UpdateElementInfo() ;
|
||||
|
||||
if ( !noInfoUpdate )
|
||||
this._UpdateElementInfo() ;
|
||||
},
|
||||
|
||||
/*
|
||||
@ -317,7 +587,7 @@ FCKDomRange.prototype =
|
||||
* 3 = Before Start ^<target>contents</target>
|
||||
* 4 = After End <target>contents</target>^
|
||||
*/
|
||||
SetEnd : function( targetElement, position )
|
||||
SetEnd : function( targetElement, position, noInfoUpdate )
|
||||
{
|
||||
var oRange = this._Range ;
|
||||
if ( !oRange )
|
||||
@ -340,7 +610,9 @@ FCKDomRange.prototype =
|
||||
case 4 : // After End <target>contents</target>^
|
||||
oRange.setEndAfter( targetElement ) ;
|
||||
}
|
||||
this._UpdateElementInfo() ;
|
||||
|
||||
if ( !noInfoUpdate )
|
||||
this._UpdateElementInfo() ;
|
||||
},
|
||||
|
||||
Expand : function( unit )
|
||||
@ -349,53 +621,95 @@ FCKDomRange.prototype =
|
||||
|
||||
switch ( unit )
|
||||
{
|
||||
// Expand the range to include all inline parent elements if we are
|
||||
// are in their boundary limits.
|
||||
// For example (where [ ] are the range limits):
|
||||
// Before => Some <b>[<i>Some sample text]</i></b>.
|
||||
// After => Some [<b><i>Some sample text</i></b>].
|
||||
case 'inline_elements' :
|
||||
// Expand the start boundary.
|
||||
if ( this._Range.startOffset == 0 )
|
||||
{
|
||||
oNode = this._Range.startContainer ;
|
||||
|
||||
if ( oNode.nodeType != 1 )
|
||||
oNode = oNode.previousSibling ? null : oNode.parentNode ;
|
||||
|
||||
if ( oNode )
|
||||
{
|
||||
while ( FCKListsLib.InlineNonEmptyElements[ oNode.nodeName.toLowerCase() ] )
|
||||
{
|
||||
this._Range.setStartBefore( oNode ) ;
|
||||
|
||||
if ( oNode != oNode.parentNode.firstChild )
|
||||
break ;
|
||||
|
||||
oNode = oNode.parentNode ;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Expand the end boundary.
|
||||
oNode = this._Range.endContainer ;
|
||||
var offset = this._Range.endOffset ;
|
||||
|
||||
if ( ( oNode.nodeType == 3 && offset >= oNode.nodeValue.length ) || ( oNode.nodeType == 1 && offset >= oNode.childNodes.length ) || ( oNode.nodeType != 1 && oNode.nodeType != 3 ) )
|
||||
{
|
||||
if ( oNode.nodeType != 1 )
|
||||
oNode = oNode.nextSibling ? null : oNode.parentNode ;
|
||||
|
||||
if ( oNode )
|
||||
{
|
||||
while ( FCKListsLib.InlineNonEmptyElements[ oNode.nodeName.toLowerCase() ] )
|
||||
{
|
||||
this._Range.setEndAfter( oNode ) ;
|
||||
|
||||
if ( oNode != oNode.parentNode.lastChild )
|
||||
break ;
|
||||
|
||||
oNode = oNode.parentNode ;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
break ;
|
||||
|
||||
case 'block_contents' :
|
||||
if ( this.StartBlock )
|
||||
case 'list_contents' :
|
||||
var boundarySet = FCKListsLib.BlockBoundaries ;
|
||||
if ( unit == 'list_contents' || FCKConfig.EnterMode == 'br' )
|
||||
boundarySet = FCKListsLib.ListBoundaries ;
|
||||
|
||||
if ( this.StartBlock && FCKConfig.EnterMode != 'br' && unit == 'block_contents' )
|
||||
this.SetStart( this.StartBlock, 1 ) ;
|
||||
else
|
||||
{
|
||||
// Get the start node for the current range.
|
||||
oNode = this._Range.startContainer ;
|
||||
|
||||
// If it is an element, get the current child node for the range (in the offset).
|
||||
// If the offset node is not available, the the first one.
|
||||
// If it is an element, get the node right before of it (in source order).
|
||||
if ( oNode.nodeType == 1 )
|
||||
{
|
||||
if ( !( oNode = oNode.childNodes[ this._Range.startOffset ] ) )
|
||||
oNode = oNode.firstChild ;
|
||||
var lastNode = oNode.childNodes[ this._Range.startOffset ] ;
|
||||
if ( lastNode )
|
||||
oNode = FCKDomTools.GetPreviousSourceNode( lastNode, true ) ;
|
||||
else
|
||||
oNode = oNode.lastChild || oNode ;
|
||||
}
|
||||
|
||||
// Not able to defined the current position.
|
||||
if ( !oNode )
|
||||
return ;
|
||||
|
||||
// We must look for the left boundary, relative to the range
|
||||
// start, which is limited by a block element.
|
||||
while ( true )
|
||||
while ( oNode
|
||||
&& ( oNode.nodeType != 1
|
||||
|| ( oNode != this.StartBlockLimit
|
||||
&& !boundarySet[ oNode.nodeName.toLowerCase() ] ) ) )
|
||||
{
|
||||
oSibling = oNode.previousSibling ;
|
||||
|
||||
if ( !oSibling )
|
||||
{
|
||||
// Continue if we are not yet in the block limit (inside a <b>, for example).
|
||||
if ( oNode.parentNode != this.StartBlockLimit )
|
||||
oNode = oNode.parentNode ;
|
||||
else
|
||||
break ;
|
||||
}
|
||||
else if ( oSibling.nodeType != 1 || !(/^(?:P|DIV|H1|H2|H3|H4|H5|H6|ADDRESS|PRE|OL|UL|LI|DT|DE)$/).test( oSibling.nodeName.toUpperCase() ) )
|
||||
{
|
||||
// Continue if the sibling is not a block tag.
|
||||
oNode = oSibling ;
|
||||
}
|
||||
else
|
||||
break ;
|
||||
this._Range.setStartBefore( oNode ) ;
|
||||
oNode = oNode.previousSibling || oNode.parentNode ;
|
||||
}
|
||||
|
||||
this._Range.setStartBefore( oNode ) ;
|
||||
}
|
||||
|
||||
if ( this.EndBlock )
|
||||
if ( this.EndBlock && FCKConfig.EnterMode != 'br' && unit == 'block_contents' && this.EndBlock.nodeName.toLowerCase() != 'li' )
|
||||
this.SetEnd( this.EndBlock, 2 ) ;
|
||||
else
|
||||
{
|
||||
@ -403,50 +717,202 @@ FCKDomRange.prototype =
|
||||
if ( oNode.nodeType == 1 )
|
||||
oNode = oNode.childNodes[ this._Range.endOffset ] || oNode.lastChild ;
|
||||
|
||||
if ( !oNode )
|
||||
return ;
|
||||
|
||||
// We must look for the right boundary, relative to the range
|
||||
// end, which is limited by a block element.
|
||||
while ( true )
|
||||
while ( oNode
|
||||
&& ( oNode.nodeType != 1
|
||||
|| ( oNode != this.StartBlockLimit
|
||||
&& !boundarySet[ oNode.nodeName.toLowerCase() ] ) ) )
|
||||
{
|
||||
oSibling = oNode.nextSibling ;
|
||||
|
||||
if ( !oSibling )
|
||||
{
|
||||
// Continue if we are not yet in the block limit (inide a <b>, for example).
|
||||
if ( oNode.parentNode != this.EndBlockLimit )
|
||||
oNode = oNode.parentNode ;
|
||||
else
|
||||
break ;
|
||||
}
|
||||
else if ( oSibling.nodeType != 1 || !(/^(?:P|DIV|H1|H2|H3|H4|H5|H6|ADDRESS|PRE|OL|UL|LI|DT|DE)$/).test( oSibling.nodeName.toUpperCase() ) )
|
||||
{
|
||||
// Continue if the sibling is not a block tag.
|
||||
oNode = oSibling ;
|
||||
}
|
||||
else
|
||||
break ;
|
||||
this._Range.setEndAfter( oNode ) ;
|
||||
oNode = oNode.nextSibling || oNode.parentNode ;
|
||||
}
|
||||
|
||||
this._Range.setEndAfter( oNode ) ;
|
||||
// In EnterMode='br', the end <br> boundary element must
|
||||
// be included in the expanded range.
|
||||
if ( oNode && oNode.nodeName.toLowerCase() == 'br' )
|
||||
this._Range.setEndAfter( oNode ) ;
|
||||
}
|
||||
|
||||
this._UpdateElementInfo() ;
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Split the block element for the current range. It deletes the contents
|
||||
* of the range and splits the block in the collapsed position, resulting
|
||||
* in two sucessive blocks. The range is then positioned in the middle of
|
||||
* them.
|
||||
*
|
||||
* It returns and object with the following properties:
|
||||
* - PreviousBlock : a reference to the block element that preceeds
|
||||
* the range after the split.
|
||||
* - NextBlock : a reference to the block element that follows the
|
||||
* range after the split.
|
||||
* - WasStartOfBlock : a boolean indicating that the range was
|
||||
* originaly at the start of the block.
|
||||
* - WasEndOfBlock : a boolean indicating that the range was originaly
|
||||
* at the end of the block.
|
||||
*
|
||||
* If the range was originaly at the start of the block, no split will happen
|
||||
* and the PreviousBlock value will be null. The same is valid for the
|
||||
* NextBlock value if the range was at the end of the block.
|
||||
*/
|
||||
SplitBlock : function( forceBlockTag )
|
||||
{
|
||||
var blockTag = forceBlockTag || FCKConfig.EnterMode ;
|
||||
|
||||
if ( !this._Range )
|
||||
this.MoveToSelection() ;
|
||||
|
||||
// The range boundaries must be in the same "block limit" element.
|
||||
if ( this.StartBlockLimit == this.EndBlockLimit )
|
||||
{
|
||||
// Get the current blocks.
|
||||
var eStartBlock = this.StartBlock ;
|
||||
var eEndBlock = this.EndBlock ;
|
||||
var oElementPath = null ;
|
||||
|
||||
if ( blockTag != 'br' )
|
||||
{
|
||||
if ( !eStartBlock )
|
||||
{
|
||||
eStartBlock = this.FixBlock( true, blockTag ) ;
|
||||
eEndBlock = this.EndBlock ; // FixBlock may have fixed the EndBlock too.
|
||||
}
|
||||
|
||||
if ( !eEndBlock )
|
||||
eEndBlock = this.FixBlock( false, blockTag ) ;
|
||||
}
|
||||
|
||||
// Get the range position.
|
||||
var bIsStartOfBlock = ( eStartBlock != null && this.CheckStartOfBlock() ) ;
|
||||
var bIsEndOfBlock = ( eEndBlock != null && this.CheckEndOfBlock() ) ;
|
||||
|
||||
// Delete the current contents.
|
||||
if ( !this.CheckIsEmpty() )
|
||||
this.DeleteContents() ;
|
||||
|
||||
if ( eStartBlock && eEndBlock && eStartBlock == eEndBlock )
|
||||
{
|
||||
if ( bIsEndOfBlock )
|
||||
{
|
||||
oElementPath = new FCKElementPath( this.StartContainer ) ;
|
||||
this.MoveToPosition( eEndBlock, 4 ) ;
|
||||
eEndBlock = null ;
|
||||
}
|
||||
else if ( bIsStartOfBlock )
|
||||
{
|
||||
oElementPath = new FCKElementPath( this.StartContainer ) ;
|
||||
this.MoveToPosition( eStartBlock, 3 ) ;
|
||||
eStartBlock = null ;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Extract the contents of the block from the selection point to the end of its contents.
|
||||
this.SetEnd( eStartBlock, 2 ) ;
|
||||
var eDocFrag = this.ExtractContents() ;
|
||||
|
||||
// Duplicate the block element after it.
|
||||
eEndBlock = eStartBlock.cloneNode( false ) ;
|
||||
eEndBlock.removeAttribute( 'id', false ) ;
|
||||
|
||||
// Place the extracted contents in the duplicated block.
|
||||
eDocFrag.AppendTo( eEndBlock ) ;
|
||||
|
||||
FCKDomTools.InsertAfterNode( eStartBlock, eEndBlock ) ;
|
||||
|
||||
this.MoveToPosition( eStartBlock, 4 ) ;
|
||||
|
||||
// In Gecko, the last child node must be a bogus <br>.
|
||||
// Note: bogus <br> added under <ul> or <ol> would cause lists to be incorrectly rendered.
|
||||
if ( FCKBrowserInfo.IsGecko &&
|
||||
! eStartBlock.nodeName.IEquals( ['ul', 'ol'] ) )
|
||||
FCKTools.AppendBogusBr( eStartBlock ) ;
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
PreviousBlock : eStartBlock,
|
||||
NextBlock : eEndBlock,
|
||||
WasStartOfBlock : bIsStartOfBlock,
|
||||
WasEndOfBlock : bIsEndOfBlock,
|
||||
ElementPath : oElementPath
|
||||
} ;
|
||||
}
|
||||
|
||||
return null ;
|
||||
},
|
||||
|
||||
// Transform a block without a block tag in a valid block (orphan text in the body or td, usually).
|
||||
FixBlock : function( isStart, blockTag )
|
||||
{
|
||||
// Bookmark the range so we can restore it later.
|
||||
var oBookmark = this.CreateBookmark() ;
|
||||
|
||||
// Collapse the range to the requested ending boundary.
|
||||
this.Collapse( isStart ) ;
|
||||
|
||||
// Expands it to the block contents.
|
||||
this.Expand( 'block_contents' ) ;
|
||||
|
||||
// Create the fixed block.
|
||||
var oFixedBlock = this.Window.document.createElement( blockTag ) ;
|
||||
|
||||
// Move the contents of the temporary range to the fixed block.
|
||||
this.ExtractContents().AppendTo( oFixedBlock ) ;
|
||||
FCKDomTools.TrimNode( oFixedBlock ) ;
|
||||
|
||||
// Insert the fixed block into the DOM.
|
||||
this.InsertNode( oFixedBlock ) ;
|
||||
|
||||
// Move the range back to the bookmarked place.
|
||||
this.MoveToBookmark( oBookmark ) ;
|
||||
|
||||
return oFixedBlock ;
|
||||
},
|
||||
|
||||
Release : function( preserveWindow )
|
||||
{
|
||||
if ( !preserveWindow )
|
||||
this.Window = null ;
|
||||
|
||||
this.StartNode = null ;
|
||||
this.StartContainer = null ;
|
||||
this.StartBlock = null ;
|
||||
this.StartBlockLimit = null ;
|
||||
this.EndNode = null ;
|
||||
this.EndContainer = null ;
|
||||
this.EndBlock = null ;
|
||||
this.EndBlockLimit = null ;
|
||||
this._Range = null ;
|
||||
this._Cache = null ;
|
||||
},
|
||||
|
||||
CheckHasRange : function()
|
||||
{
|
||||
return !!this._Range ;
|
||||
},
|
||||
|
||||
GetTouchedStartNode : function()
|
||||
{
|
||||
var range = this._Range ;
|
||||
var container = range.startContainer ;
|
||||
|
||||
if ( range.collapsed || container.nodeType != 1 )
|
||||
return container ;
|
||||
|
||||
return container.childNodes[ range.startOffset ] || container ;
|
||||
},
|
||||
|
||||
GetTouchedEndNode : function()
|
||||
{
|
||||
var range = this._Range ;
|
||||
var container = range.endContainer ;
|
||||
|
||||
if ( range.collapsed || container.nodeType != 1 )
|
||||
return container ;
|
||||
|
||||
return container.childNodes[ range.endOffset - 1 ] || container ;
|
||||
}
|
||||
} ;
|
||||
} ;
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -19,7 +19,7 @@
|
||||
* == END LICENSE ==
|
||||
*
|
||||
* Class for working with a selection range, much like the W3C DOM Range, but
|
||||
* it is not intented to be an implementation of the W3C interface.
|
||||
* it is not intended to be an implementation of the W3C interface.
|
||||
* (Gecko Implementation)
|
||||
*/
|
||||
|
||||
@ -29,11 +29,14 @@ FCKDomRange.prototype.MoveToSelection = function()
|
||||
|
||||
var oSel = this.Window.getSelection() ;
|
||||
|
||||
if ( oSel.rangeCount == 1 )
|
||||
if ( oSel && oSel.rangeCount > 0 )
|
||||
{
|
||||
this._Range = FCKW3CRange.CreateFromRange( this.Window.document, oSel.getRangeAt(0) ) ;
|
||||
this._UpdateElementInfo() ;
|
||||
}
|
||||
else
|
||||
if ( this.Window.document )
|
||||
this.MoveToElementStart( this.Window.document.body ) ;
|
||||
}
|
||||
|
||||
FCKDomRange.prototype.Select = function()
|
||||
@ -41,8 +44,15 @@ FCKDomRange.prototype.Select = function()
|
||||
var oRange = this._Range ;
|
||||
if ( oRange )
|
||||
{
|
||||
var startContainer = oRange.startContainer ;
|
||||
|
||||
// If we have a collapsed range, inside an empty element, we must add
|
||||
// something to it, otherwise the caret will not be visible.
|
||||
if ( oRange.collapsed && startContainer.nodeType == 1 && startContainer.childNodes.length == 0 )
|
||||
startContainer.appendChild( oRange._Document.createTextNode('') ) ;
|
||||
|
||||
var oDocRange = this.Window.document.createRange() ;
|
||||
oDocRange.setStart( oRange.startContainer, oRange.startOffset ) ;
|
||||
oDocRange.setStart( startContainer, oRange.startOffset ) ;
|
||||
|
||||
try
|
||||
{
|
||||
@ -51,7 +61,7 @@ FCKDomRange.prototype.Select = function()
|
||||
catch ( e )
|
||||
{
|
||||
// There is a bug in Firefox implementation (it would be too easy
|
||||
// otherwhise). The new start can't be after the end (W3C says it can).
|
||||
// otherwise). The new start can't be after the end (W3C says it can).
|
||||
// So, let's create a new range and collapse it to the desired point.
|
||||
if ( e.toString().Contains( 'NS_ERROR_ILLEGAL_VALUE' ) )
|
||||
{
|
||||
@ -69,3 +79,26 @@ FCKDomRange.prototype.Select = function()
|
||||
oSel.addRange( oDocRange ) ;
|
||||
}
|
||||
}
|
||||
|
||||
// Not compatible with bookmark created with CreateBookmark2.
|
||||
// The bookmark nodes will be deleted from the document.
|
||||
FCKDomRange.prototype.SelectBookmark = function( bookmark )
|
||||
{
|
||||
var domRange = this.Window.document.createRange() ;
|
||||
|
||||
var startNode = this.GetBookmarkNode( bookmark, true ) ;
|
||||
var endNode = this.GetBookmarkNode( bookmark, false ) ;
|
||||
|
||||
domRange.setStart( startNode.parentNode, FCKDomTools.GetIndexOf( startNode ) ) ;
|
||||
FCKDomTools.RemoveNode( startNode ) ;
|
||||
|
||||
if ( endNode )
|
||||
{
|
||||
domRange.setEnd( endNode.parentNode, FCKDomTools.GetIndexOf( endNode ) ) ;
|
||||
FCKDomTools.RemoveNode( endNode ) ;
|
||||
}
|
||||
|
||||
var selection = this.Window.getSelection() ;
|
||||
selection.removeAllRanges() ;
|
||||
selection.addRange( domRange ) ;
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -19,7 +19,7 @@
|
||||
* == END LICENSE ==
|
||||
*
|
||||
* Class for working with a selection range, much like the W3C DOM Range, but
|
||||
* it is not intented to be an implementation of the W3C interface.
|
||||
* it is not intended to be an implementation of the W3C interface.
|
||||
* (IE Implementation)
|
||||
*/
|
||||
|
||||
@ -33,15 +33,23 @@ FCKDomRange.prototype.MoveToSelection = function()
|
||||
|
||||
if ( oSel.type != 'Control' )
|
||||
{
|
||||
var eMarkerStart = this._GetSelectionMarkerTag( true ) ;
|
||||
var eMarkerEnd = this._GetSelectionMarkerTag( false ) ;
|
||||
|
||||
if ( !eMarkerStart && !eMarkerEnd )
|
||||
{
|
||||
this._Range.setStart( this.Window.document.body, 0 ) ;
|
||||
this._UpdateElementInfo() ;
|
||||
return ;
|
||||
}
|
||||
|
||||
// Set the start boundary.
|
||||
eMarker = this._GetSelectionMarkerTag( true ) ;
|
||||
this._Range.setStart( eMarker.parentNode, FCKDomTools.GetIndexOf( eMarker ) ) ;
|
||||
eMarker.parentNode.removeChild( eMarker ) ;
|
||||
this._Range.setStart( eMarkerStart.parentNode, FCKDomTools.GetIndexOf( eMarkerStart ) ) ;
|
||||
eMarkerStart.parentNode.removeChild( eMarkerStart ) ;
|
||||
|
||||
// Set the end boundary.
|
||||
var eMarker = this._GetSelectionMarkerTag( false ) ;
|
||||
this._Range.setEnd( eMarker.parentNode, FCKDomTools.GetIndexOf( eMarker ) ) ;
|
||||
eMarker.parentNode.removeChild( eMarker ) ;
|
||||
this._Range.setEnd( eMarkerEnd.parentNode, FCKDomTools.GetIndexOf( eMarkerEnd ) ) ;
|
||||
eMarkerEnd.parentNode.removeChild( eMarkerEnd ) ;
|
||||
|
||||
this._UpdateElementInfo() ;
|
||||
}
|
||||
@ -58,92 +66,134 @@ FCKDomRange.prototype.MoveToSelection = function()
|
||||
}
|
||||
}
|
||||
|
||||
FCKDomRange.prototype.Select = function()
|
||||
FCKDomRange.prototype.Select = function( forceExpand )
|
||||
{
|
||||
if ( this._Range )
|
||||
this.SelectBookmark( this.CreateBookmark( true ), forceExpand ) ;
|
||||
}
|
||||
|
||||
// Not compatible with bookmark created with CreateBookmark2.
|
||||
// The bookmark nodes will be deleted from the document.
|
||||
FCKDomRange.prototype.SelectBookmark = function( bookmark, forceExpand )
|
||||
{
|
||||
var bIsCollapsed = this.CheckIsCollapsed() ;
|
||||
var bIsStartMakerAlone ;
|
||||
var dummySpan ;
|
||||
|
||||
// Create marker tags for the start and end boundaries.
|
||||
var eStartMarker = this.GetBookmarkNode( bookmark, true ) ;
|
||||
|
||||
if ( !eStartMarker )
|
||||
return ;
|
||||
|
||||
var eEndMarker ;
|
||||
if ( !bIsCollapsed )
|
||||
eEndMarker = this.GetBookmarkNode( bookmark, false ) ;
|
||||
|
||||
// Create the main range which will be used for the selection.
|
||||
var oIERange = this.Window.document.body.createTextRange() ;
|
||||
|
||||
// Position the range at the start boundary.
|
||||
oIERange.moveToElementText( eStartMarker ) ;
|
||||
oIERange.moveStart( 'character', 1 ) ;
|
||||
|
||||
if ( eEndMarker )
|
||||
{
|
||||
var bIsCollapsed = this.CheckIsCollapsed() ;
|
||||
// Create a tool range for the end.
|
||||
var oIERangeEnd = this.Window.document.body.createTextRange() ;
|
||||
|
||||
// Create marker tags for the start and end boundaries.
|
||||
var eStartMarker = this._GetRangeMarkerTag( true ) ;
|
||||
// Position the tool range at the end.
|
||||
oIERangeEnd.moveToElementText( eEndMarker ) ;
|
||||
|
||||
if ( !bIsCollapsed )
|
||||
var eEndMarker = this._GetRangeMarkerTag( false ) ;
|
||||
// Move the end boundary of the main range to match the tool range.
|
||||
oIERange.setEndPoint( 'EndToEnd', oIERangeEnd ) ;
|
||||
oIERange.moveEnd( 'character', -1 ) ;
|
||||
}
|
||||
else
|
||||
{
|
||||
bIsStartMakerAlone = ( forceExpand || !eStartMarker.previousSibling || eStartMarker.previousSibling.nodeName.toLowerCase() == 'br' ) && !eStartMarker.nextSibing ;
|
||||
|
||||
// Create the main range which will be used for the selection.
|
||||
var oIERange = this.Window.document.body.createTextRange() ;
|
||||
// Append a temporary <span></span> before the selection.
|
||||
// This is needed to avoid IE destroying selections inside empty
|
||||
// inline elements, like <b></b> (#253).
|
||||
// It is also needed when placing the selection right after an inline
|
||||
// element to avoid the selection moving inside of it.
|
||||
dummySpan = this.Window.document.createElement( 'span' ) ;
|
||||
dummySpan.innerHTML = '' ; // Zero Width No-Break Space (U+FEFF). See #1359.
|
||||
eStartMarker.parentNode.insertBefore( dummySpan, eStartMarker ) ;
|
||||
|
||||
// Position the range at the start boundary.
|
||||
oIERange.moveToElementText( eStartMarker ) ;
|
||||
oIERange.moveStart( 'character', 1 ) ;
|
||||
|
||||
if ( !bIsCollapsed )
|
||||
if ( bIsStartMakerAlone )
|
||||
{
|
||||
// Create a tool range for the end.
|
||||
var oIERangeEnd = this.Window.document.body.createTextRange() ;
|
||||
|
||||
// Position the tool range at the end.
|
||||
oIERangeEnd.moveToElementText( eEndMarker ) ;
|
||||
|
||||
// Move the end boundary of the main range to match the tool range.
|
||||
oIERange.setEndPoint( 'EndToEnd', oIERangeEnd ) ;
|
||||
oIERange.moveEnd( 'character', -1 ) ;
|
||||
// To expand empty blocks or line spaces after <br>, we need
|
||||
// instead to have any char, which will be later deleted using the
|
||||
// selection.
|
||||
// \ufeff = Zero Width No-Break Space (U+FEFF). See #1359.
|
||||
eStartMarker.parentNode.insertBefore( this.Window.document.createTextNode( '\ufeff' ), eStartMarker ) ;
|
||||
}
|
||||
}
|
||||
|
||||
// Remove the markers (reset the position, because of the changes in the DOM tree).
|
||||
this._Range.setStartBefore( eStartMarker ) ;
|
||||
eStartMarker.parentNode.removeChild( eStartMarker ) ;
|
||||
if ( !this._Range )
|
||||
this._Range = this.CreateRange() ;
|
||||
|
||||
if ( bIsCollapsed )
|
||||
// Remove the markers (reset the position, because of the changes in the DOM tree).
|
||||
this._Range.setStartBefore( eStartMarker ) ;
|
||||
eStartMarker.parentNode.removeChild( eStartMarker ) ;
|
||||
|
||||
if ( bIsCollapsed )
|
||||
{
|
||||
if ( bIsStartMakerAlone )
|
||||
{
|
||||
// The following trick is needed so IE makes collapsed selections
|
||||
// inside empty blocks visible (expands the block).
|
||||
try
|
||||
{
|
||||
oIERange.pasteHTML(' ') ;
|
||||
oIERange.moveStart( 'character', -1 ) ;
|
||||
}
|
||||
catch (e){}
|
||||
// Move the selection start to include the temporary .
|
||||
oIERange.moveStart( 'character', -1 ) ;
|
||||
|
||||
oIERange.select() ;
|
||||
oIERange.pasteHTML('') ;
|
||||
|
||||
// Remove our temporary stuff.
|
||||
this.Window.document.selection.clear() ;
|
||||
}
|
||||
else
|
||||
{
|
||||
this._Range.setEndBefore( eEndMarker ) ;
|
||||
eEndMarker.parentNode.removeChild( eEndMarker ) ;
|
||||
oIERange.select() ;
|
||||
}
|
||||
|
||||
FCKDomTools.RemoveNode( dummySpan ) ;
|
||||
}
|
||||
else
|
||||
{
|
||||
this._Range.setEndBefore( eEndMarker ) ;
|
||||
eEndMarker.parentNode.removeChild( eEndMarker ) ;
|
||||
oIERange.select() ;
|
||||
}
|
||||
}
|
||||
|
||||
FCKDomRange.prototype._GetSelectionMarkerTag = function( toStart )
|
||||
{
|
||||
var doc = this.Window.document ;
|
||||
var selection = doc.selection ;
|
||||
|
||||
// Get a range for the start boundary.
|
||||
var oRange = this.Window.document.selection.createRange() ;
|
||||
var oRange ;
|
||||
|
||||
// IE may throw an "unspecified error" on some cases (it happened when
|
||||
// loading _samples/default.html), so try/catch.
|
||||
try
|
||||
{
|
||||
oRange = selection.createRange() ;
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
return null ;
|
||||
}
|
||||
|
||||
// IE might take the range object to the main window instead of inside the editor iframe window.
|
||||
// This is known to happen when the editor window has not been selected before (See #933).
|
||||
// We need to avoid that.
|
||||
if ( oRange.parentElement().document != doc )
|
||||
return null ;
|
||||
|
||||
oRange.collapse( toStart === true ) ;
|
||||
|
||||
// Paste a marker element at the collapsed range and get it from the DOM.
|
||||
var sMarkerId = 'fck_dom_range_temp_' + (new Date()).valueOf() + '_' + Math.floor(Math.random()*1000) ;
|
||||
oRange.pasteHTML( '<span id="' + sMarkerId + '"></span>' ) ;
|
||||
return this.Window.document.getElementById( sMarkerId ) ;
|
||||
|
||||
return doc.getElementById( sMarkerId ) ;
|
||||
}
|
||||
|
||||
FCKDomRange.prototype._GetRangeMarkerTag = function( toStart )
|
||||
{
|
||||
// Get a range for the start boundary.
|
||||
var oRange = this._Range ;
|
||||
|
||||
// insertNode() will add the node at the beginning of the Range, updating
|
||||
// the endOffset if necessary. So, we can work with the current range in this case.
|
||||
if ( !toStart )
|
||||
{
|
||||
oRange = oRange.cloneRange() ;
|
||||
oRange.collapse( toStart === true ) ;
|
||||
}
|
||||
|
||||
var eSpan = this.Window.document.createElement( 'span' ) ;
|
||||
eSpan.innerHTML = ' ' ;
|
||||
oRange.insertNode( eSpan ) ;
|
||||
|
||||
return eSpan ;
|
||||
}
|
@ -0,0 +1,327 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2008 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 class can be used to interate through nodes inside a range.
|
||||
*
|
||||
* During interation, the provided range can become invalid, due to document
|
||||
* mutations, so CreateBookmark() used to restore it after processing, if
|
||||
* needed.
|
||||
*/
|
||||
|
||||
var FCKDomRangeIterator = function( range )
|
||||
{
|
||||
/**
|
||||
* The FCKDomRange object that marks the interation boundaries.
|
||||
*/
|
||||
this.Range = range ;
|
||||
|
||||
/**
|
||||
* Indicates that <br> elements must be used as paragraph boundaries.
|
||||
*/
|
||||
this.ForceBrBreak = false ;
|
||||
|
||||
/**
|
||||
* Guarantees that the iterator will always return "real" block elements.
|
||||
* If "false", elements like <li>, <th> and <td> are returned. If "true", a
|
||||
* dedicated block element block element will be created inside those
|
||||
* elements to hold the selected content.
|
||||
*/
|
||||
this.EnforceRealBlocks = false ;
|
||||
}
|
||||
|
||||
FCKDomRangeIterator.CreateFromSelection = function( targetWindow )
|
||||
{
|
||||
var range = new FCKDomRange( targetWindow ) ;
|
||||
range.MoveToSelection() ;
|
||||
return new FCKDomRangeIterator( range ) ;
|
||||
}
|
||||
|
||||
FCKDomRangeIterator.prototype =
|
||||
{
|
||||
/**
|
||||
* Get the next paragraph element. It automatically breaks the document
|
||||
* when necessary to generate block elements for the paragraphs.
|
||||
*/
|
||||
GetNextParagraph : function()
|
||||
{
|
||||
// The block element to be returned.
|
||||
var block ;
|
||||
|
||||
// The range object used to identify the paragraph contents.
|
||||
var range ;
|
||||
|
||||
// Indicated that the current element in the loop is the last one.
|
||||
var isLast ;
|
||||
|
||||
// Instructs to cleanup remaining BRs.
|
||||
var removePreviousBr ;
|
||||
var removeLastBr ;
|
||||
|
||||
var boundarySet = this.ForceBrBreak ? FCKListsLib.ListBoundaries : FCKListsLib.BlockBoundaries ;
|
||||
|
||||
// This is the first iteration. Let's initialize it.
|
||||
if ( !this._LastNode )
|
||||
{
|
||||
var range = this.Range.Clone() ;
|
||||
range.Expand( this.ForceBrBreak ? 'list_contents' : 'block_contents' ) ;
|
||||
|
||||
this._NextNode = range.GetTouchedStartNode() ;
|
||||
this._LastNode = range.GetTouchedEndNode() ;
|
||||
|
||||
// Let's reuse this variable.
|
||||
range = null ;
|
||||
}
|
||||
|
||||
var currentNode = this._NextNode ;
|
||||
var lastNode = this._LastNode ;
|
||||
|
||||
this._NextNode = null ;
|
||||
|
||||
while ( currentNode )
|
||||
{
|
||||
// closeRange indicates that a paragraph boundary has been found,
|
||||
// so the range can be closed.
|
||||
var closeRange = false ;
|
||||
|
||||
// includeNode indicates that the current node is good to be part
|
||||
// of the range. By default, any non-element node is ok for it.
|
||||
var includeNode = ( currentNode.nodeType != 1 ) ;
|
||||
|
||||
var continueFromSibling = false ;
|
||||
|
||||
// If it is an element node, let's check if it can be part of the
|
||||
// range.
|
||||
if ( !includeNode )
|
||||
{
|
||||
var nodeName = currentNode.nodeName.toLowerCase() ;
|
||||
|
||||
if ( boundarySet[ nodeName ] && ( !FCKBrowserInfo.IsIE || currentNode.scopeName == 'HTML' ) )
|
||||
{
|
||||
// <br> boundaries must be part of the range. It will
|
||||
// happen only if ForceBrBreak.
|
||||
if ( nodeName == 'br' )
|
||||
includeNode = true ;
|
||||
else if ( !range && currentNode.childNodes.length == 0 && nodeName != 'hr' )
|
||||
{
|
||||
// If we have found an empty block, and haven't started
|
||||
// the range yet, it means we must return this block.
|
||||
block = currentNode ;
|
||||
isLast = currentNode == lastNode ;
|
||||
break ;
|
||||
}
|
||||
|
||||
// The range must finish right before the boundary,
|
||||
// including possibly skipped empty spaces. (#1603)
|
||||
if ( range )
|
||||
{
|
||||
range.SetEnd( currentNode, 3, true ) ;
|
||||
|
||||
// The found boundary must be set as the next one at this
|
||||
// point. (#1717)
|
||||
if ( nodeName != 'br' )
|
||||
this._NextNode = currentNode ;
|
||||
}
|
||||
|
||||
closeRange = true ;
|
||||
}
|
||||
else
|
||||
{
|
||||
// If we have child nodes, let's check them.
|
||||
if ( currentNode.firstChild )
|
||||
{
|
||||
// If we don't have a range yet, let's start it.
|
||||
if ( !range )
|
||||
{
|
||||
range = new FCKDomRange( this.Range.Window ) ;
|
||||
range.SetStart( currentNode, 3, true ) ;
|
||||
}
|
||||
|
||||
currentNode = currentNode.firstChild ;
|
||||
continue ;
|
||||
}
|
||||
includeNode = true ;
|
||||
}
|
||||
}
|
||||
else if ( currentNode.nodeType == 3 )
|
||||
{
|
||||
// Ignore normal whitespaces (i.e. not including or
|
||||
// other unicode whitespaces) before/after a block node.
|
||||
if ( /^[\r\n\t ]+$/.test( currentNode.nodeValue ) )
|
||||
includeNode = false ;
|
||||
}
|
||||
|
||||
// The current node is good to be part of the range and we are
|
||||
// starting a new range, initialize it first.
|
||||
if ( includeNode && !range )
|
||||
{
|
||||
range = new FCKDomRange( this.Range.Window ) ;
|
||||
range.SetStart( currentNode, 3, true ) ;
|
||||
}
|
||||
|
||||
// The last node has been found.
|
||||
isLast = ( ( !closeRange || includeNode ) && currentNode == lastNode ) ;
|
||||
// isLast = ( currentNode == lastNode && ( currentNode.nodeType != 1 || currentNode.childNodes.length == 0 ) ) ;
|
||||
|
||||
// If we are in an element boundary, let's check if it is time
|
||||
// to close the range, otherwise we include the parent within it.
|
||||
if ( range && !closeRange )
|
||||
{
|
||||
while ( !currentNode.nextSibling && !isLast )
|
||||
{
|
||||
var parentNode = currentNode.parentNode ;
|
||||
|
||||
if ( boundarySet[ parentNode.nodeName.toLowerCase() ] )
|
||||
{
|
||||
closeRange = true ;
|
||||
isLast = isLast || ( parentNode == lastNode ) ;
|
||||
break ;
|
||||
}
|
||||
|
||||
currentNode = parentNode ;
|
||||
includeNode = true ;
|
||||
isLast = ( currentNode == lastNode ) ;
|
||||
continueFromSibling = true ;
|
||||
}
|
||||
}
|
||||
|
||||
// Now finally include the node.
|
||||
if ( includeNode )
|
||||
range.SetEnd( currentNode, 4, true ) ;
|
||||
|
||||
// We have found a block boundary. Let's close the range and move out of the
|
||||
// loop.
|
||||
if ( ( closeRange || isLast ) && range )
|
||||
{
|
||||
range._UpdateElementInfo() ;
|
||||
|
||||
if ( range.StartNode == range.EndNode
|
||||
&& range.StartNode.parentNode == range.StartBlockLimit
|
||||
&& range.StartNode.getAttribute && range.StartNode.getAttribute( '_fck_bookmark' ) )
|
||||
range = null ;
|
||||
else
|
||||
break ;
|
||||
}
|
||||
|
||||
if ( isLast )
|
||||
break ;
|
||||
|
||||
currentNode = FCKDomTools.GetNextSourceNode( currentNode, continueFromSibling, null, lastNode ) ;
|
||||
}
|
||||
|
||||
// Now, based on the processed range, look for (or create) the block to be returned.
|
||||
if ( !block )
|
||||
{
|
||||
// If no range has been found, this is the end.
|
||||
if ( !range )
|
||||
{
|
||||
this._NextNode = null ;
|
||||
return null ;
|
||||
}
|
||||
|
||||
block = range.StartBlock ;
|
||||
|
||||
if ( !block
|
||||
&& !this.EnforceRealBlocks
|
||||
&& range.StartBlockLimit.nodeName.IEquals( 'DIV', 'TH', 'TD' )
|
||||
&& range.CheckStartOfBlock()
|
||||
&& range.CheckEndOfBlock() )
|
||||
{
|
||||
block = range.StartBlockLimit ;
|
||||
}
|
||||
else if ( !block || ( this.EnforceRealBlocks && block.nodeName.toLowerCase() == 'li' ) )
|
||||
{
|
||||
// Create the fixed block.
|
||||
block = this.Range.Window.document.createElement( FCKConfig.EnterMode == 'p' ? 'p' : 'div' ) ;
|
||||
|
||||
// Move the contents of the temporary range to the fixed block.
|
||||
range.ExtractContents().AppendTo( block ) ;
|
||||
FCKDomTools.TrimNode( block ) ;
|
||||
|
||||
// Insert the fixed block into the DOM.
|
||||
range.InsertNode( block ) ;
|
||||
|
||||
removePreviousBr = true ;
|
||||
removeLastBr = true ;
|
||||
}
|
||||
else if ( block.nodeName.toLowerCase() != 'li' )
|
||||
{
|
||||
// If the range doesn't includes the entire contents of the
|
||||
// block, we must split it, isolating the range in a dedicated
|
||||
// block.
|
||||
if ( !range.CheckStartOfBlock() || !range.CheckEndOfBlock() )
|
||||
{
|
||||
// The resulting block will be a clone of the current one.
|
||||
block = block.cloneNode( false ) ;
|
||||
|
||||
// Extract the range contents, moving it to the new block.
|
||||
range.ExtractContents().AppendTo( block ) ;
|
||||
FCKDomTools.TrimNode( block ) ;
|
||||
|
||||
// Split the block. At this point, the range will be in the
|
||||
// right position for our intents.
|
||||
var splitInfo = range.SplitBlock() ;
|
||||
|
||||
removePreviousBr = !splitInfo.WasStartOfBlock ;
|
||||
removeLastBr = !splitInfo.WasEndOfBlock ;
|
||||
|
||||
// Insert the new block into the DOM.
|
||||
range.InsertNode( block ) ;
|
||||
}
|
||||
}
|
||||
else if ( !isLast )
|
||||
{
|
||||
// LIs are returned as is, with all their children (due to the
|
||||
// nested lists). But, the next node is the node right after
|
||||
// the current range, which could be an <li> child (nested
|
||||
// lists) or the next sibling <li>.
|
||||
|
||||
this._NextNode = block == lastNode ? null : FCKDomTools.GetNextSourceNode( range.EndNode, true, null, lastNode ) ;
|
||||
return block ;
|
||||
}
|
||||
}
|
||||
|
||||
if ( removePreviousBr )
|
||||
{
|
||||
var previousSibling = block.previousSibling ;
|
||||
if ( previousSibling && previousSibling.nodeType == 1 )
|
||||
{
|
||||
if ( previousSibling.nodeName.toLowerCase() == 'br' )
|
||||
previousSibling.parentNode.removeChild( previousSibling ) ;
|
||||
else if ( previousSibling.lastChild && previousSibling.lastChild.nodeName.IEquals( 'br' ) )
|
||||
previousSibling.removeChild( previousSibling.lastChild ) ;
|
||||
}
|
||||
}
|
||||
|
||||
if ( removeLastBr )
|
||||
{
|
||||
var lastChild = block.lastChild ;
|
||||
if ( lastChild && lastChild.nodeType == 1 && lastChild.nodeName.toLowerCase() == 'br' )
|
||||
block.removeChild( lastChild ) ;
|
||||
}
|
||||
|
||||
// Get a reference for the next element. This is important because the
|
||||
// above block can be removed or changed, so we can rely on it for the
|
||||
// next interation.
|
||||
if ( !this._NextNode )
|
||||
this._NextNode = ( isLast || block == lastNode ) ? null : FCKDomTools.GetNextSourceNode( block, true, null, lastNode ) ;
|
||||
|
||||
return block ;
|
||||
}
|
||||
} ;
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -44,49 +44,82 @@ FCKEditingArea.prototype.Start = function( html, secondCall )
|
||||
var oTargetDocument = FCKTools.GetElementDocument( eTargetElement ) ;
|
||||
|
||||
// Remove all child nodes from the target.
|
||||
while( eTargetElement.childNodes.length > 0 )
|
||||
eTargetElement.removeChild( eTargetElement.childNodes[0] ) ;
|
||||
while( eTargetElement.firstChild )
|
||||
eTargetElement.removeChild( eTargetElement.firstChild ) ;
|
||||
|
||||
if ( this.Mode == FCK_EDITMODE_WYSIWYG )
|
||||
{
|
||||
// Create the editing area IFRAME.
|
||||
var oIFrame = this.IFrame = oTargetDocument.createElement( 'iframe' ) ;
|
||||
oIFrame.src = 'javascript:void(0)' ;
|
||||
oIFrame.frameBorder = 0 ;
|
||||
oIFrame.width = oIFrame.height = '100%' ;
|
||||
|
||||
// Append the new IFRAME to the target.
|
||||
eTargetElement.appendChild( oIFrame ) ;
|
||||
// For FF, document.domain must be set only when different, otherwhise
|
||||
// we'll strangely have "Permission denied" issues.
|
||||
if ( FCK_IS_CUSTOM_DOMAIN )
|
||||
html = '<script>document.domain="' + FCK_RUNTIME_DOMAIN + '";</script>' + html ;
|
||||
|
||||
// IE has a bug with the <base> tag... it must have a </base> closer,
|
||||
// otherwise the all sucessive tags will be set as children nodes of the <base>.
|
||||
// otherwise the all successive tags will be set as children nodes of the <base>.
|
||||
if ( FCKBrowserInfo.IsIE )
|
||||
html = html.replace( /(<base[^>]*?)\s*\/?>(?!\s*<\/base>)/gi, '$1></base>' ) ;
|
||||
else if ( !secondCall )
|
||||
{
|
||||
// If nothing in the body, place a BOGUS tag so the cursor will appear.
|
||||
if ( FCKBrowserInfo.IsGecko )
|
||||
html = html.replace( /(<body[^>]*>)\s*(<\/body>)/i, '$1' + GECKO_BOGUS + '$2' ) ;
|
||||
|
||||
// Gecko moves some tags out of the body to the head, so we must use
|
||||
// innerHTML to set the body contents (SF BUG 1526154).
|
||||
|
||||
// Extract the BODY contents from the html.
|
||||
var oMatch = html.match( FCKRegexLib.BodyContents ) ;
|
||||
var oMatchBefore = html.match( FCKRegexLib.BeforeBody ) ;
|
||||
var oMatchAfter = html.match( FCKRegexLib.AfterBody ) ;
|
||||
|
||||
if ( oMatch )
|
||||
if ( oMatchBefore && oMatchAfter )
|
||||
{
|
||||
html =
|
||||
oMatch[1] + // This is the HTML until the <body...> tag, inclusive.
|
||||
' ' +
|
||||
oMatch[3] ; // This is the HTML from the </body> tag, inclusive.
|
||||
var sBody = html.substr( oMatchBefore[1].length,
|
||||
html.length - oMatchBefore[1].length - oMatchAfter[1].length ) ; // This is the BODY tag contents.
|
||||
|
||||
html =
|
||||
oMatchBefore[1] + // This is the HTML until the <body...> tag, inclusive.
|
||||
' ' +
|
||||
oMatchAfter[1] ; // This is the HTML from the </body> tag, inclusive.
|
||||
|
||||
// If nothing in the body, place a BOGUS tag so the cursor will appear.
|
||||
if ( FCKBrowserInfo.IsGecko && ( sBody.length == 0 || FCKRegexLib.EmptyParagraph.test( sBody ) ) )
|
||||
sBody = '<br type="_moz">' ;
|
||||
|
||||
this._BodyHTML = sBody ;
|
||||
|
||||
this._BodyHTML = oMatch[2] ; // This is the BODY tag contents.
|
||||
}
|
||||
else
|
||||
this._BodyHTML = html ; // Invalid HTML input.
|
||||
}
|
||||
|
||||
// Create the editing area IFRAME.
|
||||
var oIFrame = this.IFrame = oTargetDocument.createElement( 'iframe' ) ;
|
||||
|
||||
// IE: Avoid JavaScript errors thrown by the editing are source (like tags events).
|
||||
// See #1055.
|
||||
var sOverrideError = '<script type="text/javascript" _fcktemp="true">window.onerror=function(){return true;};</script>' ;
|
||||
|
||||
oIFrame.frameBorder = 0 ;
|
||||
oIFrame.width = oIFrame.height = '100%' ;
|
||||
|
||||
if ( FCK_IS_CUSTOM_DOMAIN && FCKBrowserInfo.IsIE )
|
||||
{
|
||||
window._FCKHtmlToLoad = sOverrideError + html ;
|
||||
oIFrame.src = 'javascript:void( (function(){' +
|
||||
'document.open() ;' +
|
||||
'document.domain="' + document.domain + '" ;' +
|
||||
'document.write( window.parent._FCKHtmlToLoad );' +
|
||||
'document.close() ;' +
|
||||
'window.parent._FCKHtmlToLoad = null ;' +
|
||||
'})() )' ;
|
||||
}
|
||||
else if ( !FCKBrowserInfo.IsGecko )
|
||||
{
|
||||
// Firefox will render the tables inside the body in Quirks mode if the
|
||||
// source of the iframe is set to javascript. see #515
|
||||
oIFrame.src = 'javascript:void(0)' ;
|
||||
}
|
||||
|
||||
// Append the new IFRAME to the target. For IE, it must be done after
|
||||
// setting the "src", to avoid the "secure/unsecure" message under HTTPS.
|
||||
eTargetElement.appendChild( oIFrame ) ;
|
||||
|
||||
// Get the window and document objects used to interact with the newly created IFRAME.
|
||||
this.Window = oIFrame.contentWindow ;
|
||||
|
||||
@ -94,38 +127,69 @@ FCKEditingArea.prototype.Start = function( html, secondCall )
|
||||
// TODO: This error handler is not being fired.
|
||||
// this.Window.onerror = function() { alert( 'Error!' ) ; return true ; }
|
||||
|
||||
var oDoc = this.Document = this.Window.document ;
|
||||
if ( !FCK_IS_CUSTOM_DOMAIN || !FCKBrowserInfo.IsIE )
|
||||
{
|
||||
var oDoc = this.Window.document ;
|
||||
|
||||
oDoc.open() ;
|
||||
oDoc.write( html ) ;
|
||||
oDoc.close() ;
|
||||
oDoc.open() ;
|
||||
oDoc.write( sOverrideError + html ) ;
|
||||
oDoc.close() ;
|
||||
}
|
||||
|
||||
if ( FCKBrowserInfo.IsAIR )
|
||||
FCKAdobeAIR.EditingArea_Start( oDoc, html ) ;
|
||||
|
||||
// Firefox 1.0.x is buggy... ohh yes... so let's do it two times and it
|
||||
// will magicaly work.
|
||||
// will magically work.
|
||||
if ( FCKBrowserInfo.IsGecko10 && !secondCall )
|
||||
{
|
||||
this.Start( html, true ) ;
|
||||
return ;
|
||||
}
|
||||
|
||||
this.Window._FCKEditingArea = this ;
|
||||
|
||||
// FF 1.0.x is buggy... we must wait a lot to enable editing because
|
||||
// sometimes the content simply disappears, for example when pasting
|
||||
// "bla1!<img src='some_url'>!bla2" in the source and then switching
|
||||
// back to design.
|
||||
if ( FCKBrowserInfo.IsGecko10 )
|
||||
this.Window.setTimeout( FCKEditingArea_CompleteStart, 500 ) ;
|
||||
if ( oIFrame.readyState && oIFrame.readyState != 'completed' )
|
||||
{
|
||||
var editArea = this ;
|
||||
( oIFrame.onreadystatechange = function()
|
||||
{
|
||||
if ( oIFrame.readyState == 'complete' )
|
||||
{
|
||||
oIFrame.onreadystatechange = null ;
|
||||
editArea.Window._FCKEditingArea = editArea ;
|
||||
FCKEditingArea_CompleteStart.call( editArea.Window ) ;
|
||||
}
|
||||
// It happened that IE changed the state to "complete" after the
|
||||
// "if" and before the "onreadystatechange" assignement, making we
|
||||
// lost the event call, so we do a manual call just to be sure.
|
||||
} )() ;
|
||||
}
|
||||
else
|
||||
FCKEditingArea_CompleteStart.call( this.Window ) ;
|
||||
{
|
||||
this.Window._FCKEditingArea = this ;
|
||||
|
||||
// FF 1.0.x is buggy... we must wait a lot to enable editing because
|
||||
// sometimes the content simply disappears, for example when pasting
|
||||
// "bla1!<img src='some_url'>!bla2" in the source and then switching
|
||||
// back to design.
|
||||
if ( FCKBrowserInfo.IsGecko10 )
|
||||
this.Window.setTimeout( FCKEditingArea_CompleteStart, 500 ) ;
|
||||
else
|
||||
FCKEditingArea_CompleteStart.call( this.Window ) ;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
var eTextarea = this.Textarea = oTargetDocument.createElement( 'textarea' ) ;
|
||||
eTextarea.className = 'SourceField' ;
|
||||
eTextarea.dir = 'ltr' ;
|
||||
eTextarea.style.width = eTextarea.style.height = '100%' ;
|
||||
eTextarea.style.border = 'none' ;
|
||||
FCKDomTools.SetElementStyles( eTextarea,
|
||||
{
|
||||
width : '100%',
|
||||
height : '100%',
|
||||
border : 'none',
|
||||
resize : 'none',
|
||||
outline : 'none'
|
||||
} ) ;
|
||||
eTargetElement.appendChild( eTextarea ) ;
|
||||
|
||||
eTextarea.value = html ;
|
||||
@ -138,7 +202,7 @@ FCKEditingArea.prototype.Start = function( html, secondCall )
|
||||
// "this" here is FCKEditingArea.Window
|
||||
function FCKEditingArea_CompleteStart()
|
||||
{
|
||||
// Of Firefox, the DOM takes a little to become available. So we must wait for it in a loop.
|
||||
// On Firefox, the DOM takes a little to become available. So we must wait for it in a loop.
|
||||
if ( !this.document.body )
|
||||
{
|
||||
this.setTimeout( FCKEditingArea_CompleteStart, 50 ) ;
|
||||
@ -146,6 +210,10 @@ function FCKEditingArea_CompleteStart()
|
||||
}
|
||||
|
||||
var oEditorArea = this._FCKEditingArea ;
|
||||
|
||||
// Save this reference to be re-used later.
|
||||
oEditorArea.Document = oEditorArea.Window.document ;
|
||||
|
||||
oEditorArea.MakeEditable() ;
|
||||
|
||||
// Fire the "OnLoad" event.
|
||||
@ -158,7 +226,10 @@ FCKEditingArea.prototype.MakeEditable = function()
|
||||
|
||||
if ( FCKBrowserInfo.IsIE )
|
||||
{
|
||||
// Kludge for #141 and #523
|
||||
oDoc.body.disabled = true ;
|
||||
oDoc.body.contentEditable = true ;
|
||||
oDoc.body.removeAttribute( "disabled" ) ;
|
||||
|
||||
/* The following commands don't throw errors, but have no effect.
|
||||
oDoc.execCommand( 'AutoDetect', false, false ) ;
|
||||
@ -180,51 +251,58 @@ FCKEditingArea.prototype.MakeEditable = function()
|
||||
|
||||
oDoc.designMode = 'on' ;
|
||||
|
||||
// Tell Gecko to use or not the <SPAN> tag for the bold, italic and underline.
|
||||
try
|
||||
{
|
||||
oDoc.execCommand( 'styleWithCSS', false, FCKConfig.GeckoUseSPAN ) ;
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
// As evidenced here, useCSS is deprecated in favor of styleWithCSS:
|
||||
// http://www.mozilla.org/editor/midas-spec.html
|
||||
oDoc.execCommand( 'useCSS', false, !FCKConfig.GeckoUseSPAN ) ;
|
||||
}
|
||||
|
||||
// Analysing Firefox 1.5 source code, it seams that there is support for a
|
||||
// "insertBrOnReturn" command. Applying it gives no error, but it doesn't
|
||||
// gives the same behavior that you have with IE. It works only if you are
|
||||
// already inside a paragraph and it doesn't render correctly in the first enter.
|
||||
// oDoc.execCommand( 'insertBrOnReturn', false, false ) ;
|
||||
|
||||
// Tell Gecko (Firefox 1.5+) to enable or not live resizing of objects (by Alfonso Martinez)
|
||||
oDoc.execCommand( 'enableObjectResizing', false, !FCKConfig.DisableObjectResizing ) ;
|
||||
|
||||
// Disable the standard table editing features of Firefox.
|
||||
oDoc.execCommand( 'enableInlineTableEditing', false, !FCKConfig.DisableFFTableHandles ) ;
|
||||
}
|
||||
catch (e) {}
|
||||
catch (e)
|
||||
{
|
||||
// In Firefox if the iframe is initially hidden it can't be set to designMode and it raises an exception
|
||||
// So we set up a DOM Mutation event Listener on the HTML, as it will raise several events when the document is visible again
|
||||
FCKTools.AddEventListener( this.Window.frameElement, 'DOMAttrModified', FCKEditingArea_Document_AttributeNodeModified ) ;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
// This function processes the notifications of the DOM Mutation event on the document
|
||||
// We use it to know that the document will be ready to be editable again (or we hope so)
|
||||
function FCKEditingArea_Document_AttributeNodeModified( evt )
|
||||
{
|
||||
var editingArea = evt.currentTarget.contentWindow._FCKEditingArea ;
|
||||
|
||||
// We want to run our function after the events no longer fire, so we can know that it's a stable situation
|
||||
if ( editingArea._timer )
|
||||
window.clearTimeout( editingArea._timer ) ;
|
||||
|
||||
editingArea._timer = FCKTools.SetTimeout( FCKEditingArea_MakeEditableByMutation, 1000, editingArea ) ;
|
||||
}
|
||||
|
||||
// This function ideally should be called after the document is visible, it does clean up of the
|
||||
// mutation tracking and tries again to make the area editable.
|
||||
function FCKEditingArea_MakeEditableByMutation()
|
||||
{
|
||||
// Clean up
|
||||
delete this._timer ;
|
||||
// Now we don't want to keep on getting this event
|
||||
FCKTools.RemoveEventListener( this.Window.frameElement, 'DOMAttrModified', FCKEditingArea_Document_AttributeNodeModified ) ;
|
||||
// Let's try now to set the editing area editable
|
||||
// If it fails it will set up the Mutation Listener again automatically
|
||||
this.MakeEditable() ;
|
||||
}
|
||||
|
||||
FCKEditingArea.prototype.Focus = function()
|
||||
{
|
||||
try
|
||||
{
|
||||
if ( this.Mode == FCK_EDITMODE_WYSIWYG )
|
||||
{
|
||||
// The following check is important to avoid IE entering in a focus loop. Ref:
|
||||
// http://sourceforge.net/tracker/index.php?func=detail&aid=1567060&group_id=75348&atid=543653
|
||||
if ( FCKBrowserInfo.IsIE && this.Document.hasFocus() )
|
||||
return ;
|
||||
|
||||
if ( FCKBrowserInfo.IsSafari )
|
||||
this.IFrame.focus() ;
|
||||
if ( FCKBrowserInfo.IsIE )
|
||||
this._FocusIE() ;
|
||||
else
|
||||
{
|
||||
this.Window.focus() ;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -238,8 +316,39 @@ FCKEditingArea.prototype.Focus = function()
|
||||
catch(e) {}
|
||||
}
|
||||
|
||||
FCKEditingArea.prototype._FocusIE = function()
|
||||
{
|
||||
// In IE it can happen that the document is in theory focused but the
|
||||
// active element is outside of it.
|
||||
this.Document.body.setActive() ;
|
||||
|
||||
this.Window.focus() ;
|
||||
|
||||
// Kludge for #141... yet more code to workaround IE bugs
|
||||
var range = this.Document.selection.createRange() ;
|
||||
|
||||
var parentNode = range.parentElement() ;
|
||||
var parentTag = parentNode.nodeName.toLowerCase() ;
|
||||
|
||||
// Only apply the fix when in a block, and the block is empty.
|
||||
if ( parentNode.childNodes.length > 0 ||
|
||||
!( FCKListsLib.BlockElements[parentTag] ||
|
||||
FCKListsLib.NonEmptyBlockElements[parentTag] ) )
|
||||
{
|
||||
return ;
|
||||
}
|
||||
|
||||
// Force the selection to happen, in this way we guarantee the focus will
|
||||
// be there.
|
||||
range = new FCKDomRange( this.Window ) ;
|
||||
range.MoveToElementEditStart( parentNode ) ;
|
||||
range.Select() ;
|
||||
}
|
||||
|
||||
function FCKEditingArea_Cleanup()
|
||||
{
|
||||
if ( this.Document )
|
||||
this.Document.body.innerHTML = "" ;
|
||||
this.TargetElement = null ;
|
||||
this.IFrame = null ;
|
||||
this.Document = null ;
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -18,12 +18,10 @@
|
||||
*
|
||||
* == END LICENSE ==
|
||||
*
|
||||
* Manages the DOM anscensors element list of a specific DOM node
|
||||
* Manages the DOM ascensors element list of a specific DOM node
|
||||
* (limited to body, inclusive).
|
||||
*/
|
||||
|
||||
// TODO: Implement IE cleanup.
|
||||
|
||||
var FCKElementPath = function( lastNode )
|
||||
{
|
||||
var eBlock = null ;
|
||||
@ -40,6 +38,8 @@ var FCKElementPath = function( lastNode )
|
||||
this.LastElement = e ;
|
||||
|
||||
var sElementName = e.nodeName.toLowerCase() ;
|
||||
if ( FCKBrowserInfo.IsIE && e.scopeName != 'HTML' )
|
||||
sElementName = e.scopeName.toLowerCase() + ':' + sElementName ;
|
||||
|
||||
if ( !eBlockLimit )
|
||||
{
|
||||
@ -47,7 +47,14 @@ var FCKElementPath = function( lastNode )
|
||||
eBlock = e ;
|
||||
|
||||
if ( FCKListsLib.PathBlockLimitElements[ sElementName ] != null )
|
||||
eBlockLimit = e ;
|
||||
{
|
||||
// DIV is considered the Block, if no block is available (#525)
|
||||
// and if it doesn't contain other blocks.
|
||||
if ( !eBlock && sElementName == 'div' && !FCKElementPath._CheckHasBlock( e ) )
|
||||
eBlock = e ;
|
||||
else
|
||||
eBlockLimit = e ;
|
||||
}
|
||||
}
|
||||
|
||||
aElements.push( e ) ;
|
||||
@ -63,4 +70,20 @@ var FCKElementPath = function( lastNode )
|
||||
this.Elements = aElements ;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if an element contains any block element.
|
||||
*/
|
||||
FCKElementPath._CheckHasBlock = function( element )
|
||||
{
|
||||
var childNodes = element.childNodes ;
|
||||
|
||||
for ( var i = 0, count = childNodes.length ; i < count ; i++ )
|
||||
{
|
||||
var child = childNodes[i] ;
|
||||
|
||||
if ( child.nodeType == 1 && FCKListsLib.BlockElements[ child.nodeName.toLowerCase() ] )
|
||||
return true ;
|
||||
}
|
||||
|
||||
return false ;
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -29,7 +29,7 @@
|
||||
* @shiftEnterMode : the behavior for the <Shift>+<Enter> keystroke.
|
||||
* May be "p", "div", "br". Defaults to "br".
|
||||
*/
|
||||
var FCKEnterKey = function( targetWindow, enterMode, shiftEnterMode )
|
||||
var FCKEnterKey = function( targetWindow, enterMode, shiftEnterMode, tabSpaces )
|
||||
{
|
||||
this.Window = targetWindow ;
|
||||
this.EnterMode = enterMode || 'p' ;
|
||||
@ -43,10 +43,19 @@ var FCKEnterKey = function( targetWindow, enterMode, shiftEnterMode )
|
||||
oKeystrokeHandler.SetKeystrokes( [
|
||||
[ 13 , 'Enter' ],
|
||||
[ SHIFT + 13, 'ShiftEnter' ],
|
||||
[ 9 , 'Tab' ],
|
||||
[ 8 , 'Backspace' ],
|
||||
[ CTRL + 8 , 'CtrlBackspace' ],
|
||||
[ 46 , 'Delete' ]
|
||||
] ) ;
|
||||
|
||||
if ( tabSpaces > 0 )
|
||||
{
|
||||
this.TabText = '' ;
|
||||
while ( tabSpaces-- > 0 )
|
||||
this.TabText += '\xa0' ;
|
||||
}
|
||||
|
||||
oKeystrokeHandler.AttachToElement( targetWindow.document ) ;
|
||||
}
|
||||
|
||||
@ -62,17 +71,21 @@ function FCKEnterKey_OnKeystroke( keyCombination, keystrokeValue )
|
||||
case 'Enter' :
|
||||
return oEnterKey.DoEnter() ;
|
||||
break ;
|
||||
|
||||
case 'ShiftEnter' :
|
||||
return oEnterKey.DoShiftEnter() ;
|
||||
break ;
|
||||
|
||||
case 'Backspace' :
|
||||
return oEnterKey.DoBackspace() ;
|
||||
break ;
|
||||
|
||||
case 'Delete' :
|
||||
return oEnterKey.DoDelete() ;
|
||||
break ;
|
||||
case 'Tab' :
|
||||
return oEnterKey.DoTab() ;
|
||||
break ;
|
||||
case 'CtrlBackspace' :
|
||||
return oEnterKey.DoCtrlBackspace() ;
|
||||
break ;
|
||||
}
|
||||
}
|
||||
catch (e)
|
||||
@ -89,11 +102,16 @@ function FCKEnterKey_OnKeystroke( keyCombination, keystrokeValue )
|
||||
*/
|
||||
FCKEnterKey.prototype.DoEnter = function( mode, hasShift )
|
||||
{
|
||||
// Save an undo snapshot before doing anything
|
||||
FCKUndo.SaveUndoStep() ;
|
||||
|
||||
this._HasShift = ( hasShift === true ) ;
|
||||
|
||||
var parentElement = FCKSelection.GetParentElement() ;
|
||||
var parentPath = new FCKElementPath( parentElement ) ;
|
||||
var sMode = mode || this.EnterMode ;
|
||||
|
||||
if ( sMode == 'br' )
|
||||
if ( sMode == 'br' || parentPath.Block && parentPath.Block.tagName.toLowerCase() == 'pre' )
|
||||
return this._ExecuteEnterBr() ;
|
||||
else
|
||||
return this._ExecuteEnterBlock( sMode ) ;
|
||||
@ -118,8 +136,32 @@ FCKEnterKey.prototype.DoBackspace = function()
|
||||
var oRange = new FCKDomRange( this.Window ) ;
|
||||
oRange.MoveToSelection() ;
|
||||
|
||||
if ( !oRange.CheckIsCollapsed() )
|
||||
// Kludge for #247
|
||||
if ( FCKBrowserInfo.IsIE && this._CheckIsAllContentsIncluded( oRange, this.Window.document.body ) )
|
||||
{
|
||||
this._FixIESelectAllBug( oRange ) ;
|
||||
return true ;
|
||||
}
|
||||
|
||||
var isCollapsed = oRange.CheckIsCollapsed() ;
|
||||
|
||||
if ( !isCollapsed )
|
||||
{
|
||||
// Bug #327, Backspace with an img selection would activate the default action in IE.
|
||||
// Let's override that with our logic here.
|
||||
if ( FCKBrowserInfo.IsIE && this.Window.document.selection.type.toLowerCase() == "control" )
|
||||
{
|
||||
var controls = this.Window.document.selection.createRange() ;
|
||||
for ( var i = controls.length - 1 ; i >= 0 ; i-- )
|
||||
{
|
||||
var el = controls.item( i ) ;
|
||||
el.parentNode.removeChild( el ) ;
|
||||
}
|
||||
return true ;
|
||||
}
|
||||
|
||||
return false ;
|
||||
}
|
||||
|
||||
var oStartBlock = oRange.StartBlock ;
|
||||
var oEndBlock = oRange.EndBlock ;
|
||||
@ -127,7 +169,7 @@ FCKEnterKey.prototype.DoBackspace = function()
|
||||
// The selection boundaries must be in the same "block limit" element
|
||||
if ( oRange.StartBlockLimit == oRange.EndBlockLimit && oStartBlock && oEndBlock )
|
||||
{
|
||||
if ( !oRange.CheckIsCollapsed() )
|
||||
if ( !isCollapsed )
|
||||
{
|
||||
var bEndOfBlock = oRange.CheckEndOfBlock() ;
|
||||
|
||||
@ -155,9 +197,10 @@ FCKEnterKey.prototype.DoBackspace = function()
|
||||
|
||||
bCustom = this._ExecuteBackspace( oRange, ePrevious, oCurrentBlock ) ;
|
||||
}
|
||||
else if ( FCKBrowserInfo.IsGecko )
|
||||
else if ( FCKBrowserInfo.IsGeckoLike )
|
||||
{
|
||||
// Firefox looses the selection when executing CheckStartOfBlock, so we must reselect.
|
||||
// Firefox and Opera (#1095) loose the selection when executing
|
||||
// CheckStartOfBlock, so we must reselect.
|
||||
oRange.Select() ;
|
||||
}
|
||||
}
|
||||
@ -166,12 +209,25 @@ FCKEnterKey.prototype.DoBackspace = function()
|
||||
return bCustom ;
|
||||
}
|
||||
|
||||
FCKEnterKey.prototype.DoCtrlBackspace = function()
|
||||
{
|
||||
FCKUndo.SaveUndoStep() ;
|
||||
var oRange = new FCKDomRange( this.Window ) ;
|
||||
oRange.MoveToSelection() ;
|
||||
if ( FCKBrowserInfo.IsIE && this._CheckIsAllContentsIncluded( oRange, this.Window.document.body ) )
|
||||
{
|
||||
this._FixIESelectAllBug( oRange ) ;
|
||||
return true ;
|
||||
}
|
||||
return false ;
|
||||
}
|
||||
|
||||
FCKEnterKey.prototype._ExecuteBackspace = function( range, previous, currentBlock )
|
||||
{
|
||||
var bCustom = false ;
|
||||
|
||||
// We could be in a nested LI.
|
||||
if ( !previous && currentBlock.nodeName.IEquals( 'LI' ) && currentBlock.parentNode.parentNode.nodeName.IEquals( 'LI' ) )
|
||||
if ( !previous && currentBlock && currentBlock.nodeName.IEquals( 'LI' ) && currentBlock.parentNode.parentNode.nodeName.IEquals( 'LI' ) )
|
||||
{
|
||||
this._OutdentWithSelection( currentBlock, range ) ;
|
||||
return true ;
|
||||
@ -220,24 +276,26 @@ FCKEnterKey.prototype._ExecuteBackspace = function( range, previous, currentBloc
|
||||
}
|
||||
|
||||
// Cleanup the previous and the current elements.
|
||||
FCKDomTools.TrimNode( currentBlock ) ;
|
||||
FCKDomTools.TrimNode( previous ) ;
|
||||
FCKDomTools.LTrimNode( currentBlock ) ;
|
||||
FCKDomTools.RTrimNode( previous ) ;
|
||||
|
||||
// Append a space to the previous.
|
||||
// Maybe it is not always desirable...
|
||||
// previous.appendChild( this.Window.document.createTextNode( ' ' ) ) ;
|
||||
|
||||
// Set the range to the end of the previous element and bookmark it.
|
||||
range.SetStart( previous, 2 ) ;
|
||||
range.SetStart( previous, 2, true ) ;
|
||||
range.Collapse( true ) ;
|
||||
var oBookmark = range.CreateBookmark() ;
|
||||
var oBookmark = range.CreateBookmark( true ) ;
|
||||
|
||||
// Move the contents of the block to the previous element and delete it.
|
||||
FCKDomTools.MoveChildren( currentBlock, previous ) ;
|
||||
// But for some block types (e.g. table), moving the children to the previous block makes no sense.
|
||||
// So a check is needed. (See #1081)
|
||||
if ( ! currentBlock.tagName.IEquals( [ 'TABLE' ] ) )
|
||||
FCKDomTools.MoveChildren( currentBlock, previous ) ;
|
||||
|
||||
// Place the selection at the bookmark.
|
||||
range.MoveToBookmark( oBookmark ) ;
|
||||
range.Select() ;
|
||||
range.SelectBookmark( oBookmark ) ;
|
||||
|
||||
bCustom = true ;
|
||||
}
|
||||
@ -251,6 +309,10 @@ FCKEnterKey.prototype._ExecuteBackspace = function( range, previous, currentBloc
|
||||
*/
|
||||
FCKEnterKey.prototype.DoDelete = function()
|
||||
{
|
||||
// Save an undo snapshot before doing anything
|
||||
// This is to conform with the behavior seen in MS Word
|
||||
FCKUndo.SaveUndoStep() ;
|
||||
|
||||
// The <Delete> has the same effect as the <Backspace>, so we have the same
|
||||
// results if we just move to the next block and apply the same <Backspace> logic.
|
||||
|
||||
@ -260,12 +322,30 @@ FCKEnterKey.prototype.DoDelete = function()
|
||||
var oRange = new FCKDomRange( this.Window ) ;
|
||||
oRange.MoveToSelection() ;
|
||||
|
||||
// Kludge for #247
|
||||
if ( FCKBrowserInfo.IsIE && this._CheckIsAllContentsIncluded( oRange, this.Window.document.body ) )
|
||||
{
|
||||
this._FixIESelectAllBug( oRange ) ;
|
||||
return true ;
|
||||
}
|
||||
|
||||
// There is just one special case for collapsed selections at the end of a block.
|
||||
if ( oRange.CheckIsCollapsed() && oRange.CheckEndOfBlock( FCKBrowserInfo.IsGecko ) )
|
||||
if ( oRange.CheckIsCollapsed() && oRange.CheckEndOfBlock( FCKBrowserInfo.IsGeckoLike ) )
|
||||
{
|
||||
var oCurrentBlock = oRange.StartBlock ;
|
||||
var eCurrentCell = FCKTools.GetElementAscensor( oCurrentBlock, 'td' );
|
||||
|
||||
var eNext = FCKDomTools.GetNextSourceElement( oCurrentBlock, true, [ oRange.StartBlockLimit.nodeName ], ['UL','OL'] ) ;
|
||||
var eNext = FCKDomTools.GetNextSourceElement( oCurrentBlock, true, [ oRange.StartBlockLimit.nodeName ],
|
||||
['UL','OL','TR'], true ) ;
|
||||
|
||||
// Bug #1323 : if we're in a table cell, and the next node belongs to a different cell, then don't
|
||||
// delete anything.
|
||||
if ( eCurrentCell )
|
||||
{
|
||||
var eNextCell = FCKTools.GetElementAscensor( eNext, 'td' );
|
||||
if ( eNextCell != eCurrentCell )
|
||||
return true ;
|
||||
}
|
||||
|
||||
bCustom = this._ExecuteBackspace( oRange, oCurrentBlock, eNext ) ;
|
||||
}
|
||||
@ -274,145 +354,161 @@ FCKEnterKey.prototype.DoDelete = function()
|
||||
return bCustom ;
|
||||
}
|
||||
|
||||
/*
|
||||
* Executes the <Tab> key behavior.
|
||||
*/
|
||||
FCKEnterKey.prototype.DoTab = function()
|
||||
{
|
||||
var oRange = new FCKDomRange( this.Window );
|
||||
oRange.MoveToSelection() ;
|
||||
|
||||
// If the user pressed <tab> inside a table, we should give him the default behavior ( moving between cells )
|
||||
// instead of giving him more non-breaking spaces. (Bug #973)
|
||||
var node = oRange._Range.startContainer ;
|
||||
while ( node )
|
||||
{
|
||||
if ( node.nodeType == 1 )
|
||||
{
|
||||
var tagName = node.tagName.toLowerCase() ;
|
||||
if ( tagName == "tr" || tagName == "td" || tagName == "th" || tagName == "tbody" || tagName == "table" )
|
||||
return false ;
|
||||
else
|
||||
break ;
|
||||
}
|
||||
node = node.parentNode ;
|
||||
}
|
||||
|
||||
if ( this.TabText )
|
||||
{
|
||||
oRange.DeleteContents() ;
|
||||
oRange.InsertNode( this.Window.document.createTextNode( this.TabText ) ) ;
|
||||
oRange.Collapse( false ) ;
|
||||
oRange.Select() ;
|
||||
}
|
||||
return true ;
|
||||
}
|
||||
|
||||
FCKEnterKey.prototype._ExecuteEnterBlock = function( blockTag, range )
|
||||
{
|
||||
// Get the current selection.
|
||||
var oRange = range || new FCKDomRange( this.Window ) ;
|
||||
|
||||
// If we don't have a range, move it to the selection.
|
||||
if ( !range )
|
||||
oRange.MoveToSelection() ;
|
||||
var oSplitInfo = oRange.SplitBlock( blockTag ) ;
|
||||
|
||||
// The selection boundaries must be in the same "block limit" element.
|
||||
if ( oRange.StartBlockLimit == oRange.EndBlockLimit )
|
||||
if ( oSplitInfo )
|
||||
{
|
||||
// If the StartBlock or EndBlock are not available (for text without a
|
||||
// block tag), we must fix them, by moving the text to a block.
|
||||
if ( !oRange.StartBlock )
|
||||
this._FixBlock( oRange, true, blockTag ) ;
|
||||
|
||||
if ( !oRange.EndBlock )
|
||||
this._FixBlock( oRange, false, blockTag ) ;
|
||||
|
||||
// Get the current blocks.
|
||||
var eStartBlock = oRange.StartBlock ;
|
||||
var eEndBlock = oRange.EndBlock ;
|
||||
var ePreviousBlock = oSplitInfo.PreviousBlock ;
|
||||
var eNextBlock = oSplitInfo.NextBlock ;
|
||||
|
||||
// Delete the current selection.
|
||||
if ( !oRange.CheckIsEmpty() )
|
||||
oRange.DeleteContents() ;
|
||||
var bIsStartOfBlock = oSplitInfo.WasStartOfBlock ;
|
||||
var bIsEndOfBlock = oSplitInfo.WasEndOfBlock ;
|
||||
|
||||
// If the selection boundaries are in the same block element
|
||||
if ( eStartBlock == eEndBlock )
|
||||
// If there is one block under a list item, modify the split so that the list item gets split as well. (Bug #1647)
|
||||
if ( eNextBlock )
|
||||
{
|
||||
var eNewBlock ;
|
||||
|
||||
var bIsStartOfBlock = oRange.CheckStartOfBlock() ;
|
||||
var bIsEndOfBlock = oRange.CheckEndOfBlock() ;
|
||||
|
||||
if ( bIsStartOfBlock && !bIsEndOfBlock )
|
||||
if ( eNextBlock.parentNode.nodeName.IEquals( 'li' ) )
|
||||
{
|
||||
eNewBlock = eStartBlock.cloneNode(false) ;
|
||||
|
||||
if ( FCKBrowserInfo.IsGeckoLike )
|
||||
eNewBlock.innerHTML = GECKO_BOGUS ;
|
||||
|
||||
// Place the new block before the current block element.
|
||||
eStartBlock.parentNode.insertBefore( eNewBlock, eStartBlock ) ;
|
||||
|
||||
// This is tricky, but to make the new block visible correctly
|
||||
// we must select it.
|
||||
if ( FCKBrowserInfo.IsIE )
|
||||
{
|
||||
// Move the selection to the new block.
|
||||
oRange.MoveToNodeContents( eNewBlock ) ;
|
||||
|
||||
oRange.Select() ;
|
||||
}
|
||||
|
||||
// Move the selection to the new block.
|
||||
oRange.MoveToElementEditStart( eStartBlock ) ;
|
||||
FCKDomTools.BreakParent( eNextBlock, eNextBlock.parentNode ) ;
|
||||
FCKDomTools.MoveNode( eNextBlock, eNextBlock.nextSibling, true ) ;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Check if the selection is at the end of the block.
|
||||
if ( bIsEndOfBlock )
|
||||
{
|
||||
var sStartBlockTag = eStartBlock.tagName.toUpperCase() ;
|
||||
}
|
||||
else if ( ePreviousBlock && ePreviousBlock.parentNode.nodeName.IEquals( 'li' ) )
|
||||
{
|
||||
FCKDomTools.BreakParent( ePreviousBlock, ePreviousBlock.parentNode ) ;
|
||||
oRange.MoveToElementEditStart( ePreviousBlock.nextSibling );
|
||||
FCKDomTools.MoveNode( ePreviousBlock, ePreviousBlock.previousSibling ) ;
|
||||
}
|
||||
|
||||
// If the entire block is selected, and we are in a LI, let's decrease its indentation.
|
||||
if ( bIsStartOfBlock && sStartBlockTag == 'LI' )
|
||||
{
|
||||
this._OutdentWithSelection( eStartBlock, oRange ) ;
|
||||
oRange.Release() ;
|
||||
return true ;
|
||||
}
|
||||
else
|
||||
{
|
||||
// If is a header tag, or we are in a Shift+Enter (#77),
|
||||
// create a new block element.
|
||||
if ( (/^H[1-6]$/).test( sStartBlockTag ) || this._HasShift )
|
||||
eNewBlock = this.Window.document.createElement( blockTag ) ;
|
||||
// Otherwise, duplicate the current block.
|
||||
else
|
||||
{
|
||||
eNewBlock = eStartBlock.cloneNode(false) ;
|
||||
this._RecreateEndingTree( eStartBlock, eNewBlock ) ;
|
||||
}
|
||||
|
||||
if ( FCKBrowserInfo.IsGeckoLike )
|
||||
{
|
||||
eNewBlock.innerHTML = GECKO_BOGUS ;
|
||||
|
||||
// If the entire block is selected, let's add a bogus in the start block.
|
||||
if ( bIsStartOfBlock )
|
||||
eStartBlock.innerHTML = GECKO_BOGUS ;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// Extract the contents of the block from the selection point to the end of its contents.
|
||||
oRange.SetEnd( eStartBlock, 2 ) ;
|
||||
var eDocFrag = oRange.ExtractContents() ;
|
||||
|
||||
// Duplicate the block element after it.
|
||||
eNewBlock = eStartBlock.cloneNode(false) ;
|
||||
|
||||
// It could be that we are in a LI with a child UL/OL. Insert a bogus to give us space to type.
|
||||
FCKDomTools.TrimNode( eDocFrag.RootNode ) ;
|
||||
if ( eDocFrag.RootNode.firstChild.nodeType == 1 && eDocFrag.RootNode.firstChild.tagName.toUpperCase().Equals( 'UL', 'OL' ) )
|
||||
eNewBlock.innerHTML = GECKO_BOGUS ;
|
||||
|
||||
// Place the extracted contents in the duplicated block.
|
||||
eDocFrag.AppendTo( eNewBlock ) ;
|
||||
|
||||
if ( FCKBrowserInfo.IsGecko )
|
||||
{
|
||||
// In Gecko, the last child node must be a bogus <br>.
|
||||
this._AppendBogusBr( eStartBlock ) ;
|
||||
this._AppendBogusBr( eNewBlock ) ;
|
||||
}
|
||||
}
|
||||
|
||||
if ( eNewBlock )
|
||||
{
|
||||
FCKDomTools.InsertAfterNode( eStartBlock, eNewBlock ) ;
|
||||
|
||||
// Move the selection to the new block.
|
||||
oRange.MoveToElementEditStart( eNewBlock ) ;
|
||||
|
||||
if ( FCKBrowserInfo.IsGecko )
|
||||
eNewBlock.scrollIntoView( false ) ;
|
||||
}
|
||||
}
|
||||
// If we have both the previous and next blocks, it means that the
|
||||
// boundaries were on separated blocks, or none of them where on the
|
||||
// block limits (start/end).
|
||||
if ( !bIsStartOfBlock && !bIsEndOfBlock )
|
||||
{
|
||||
// If the next block is an <li> with another list tree as the first child
|
||||
// We'll need to append a placeholder or the list item wouldn't be editable. (Bug #1420)
|
||||
if ( eNextBlock.nodeName.IEquals( 'li' ) && eNextBlock.firstChild
|
||||
&& eNextBlock.firstChild.nodeName.IEquals( ['ul', 'ol'] ) )
|
||||
eNextBlock.insertBefore( FCKTools.GetElementDocument( eNextBlock ).createTextNode( '\xa0' ), eNextBlock.firstChild ) ;
|
||||
// Move the selection to the end block.
|
||||
if ( eNextBlock )
|
||||
oRange.MoveToElementEditStart( eNextBlock ) ;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Move the selection to the end block.
|
||||
oRange.MoveToElementEditStart( eEndBlock ) ;
|
||||
if ( bIsStartOfBlock && bIsEndOfBlock && ePreviousBlock.tagName.toUpperCase() == 'LI' )
|
||||
{
|
||||
oRange.MoveToElementStart( ePreviousBlock ) ;
|
||||
this._OutdentWithSelection( ePreviousBlock, oRange ) ;
|
||||
oRange.Release() ;
|
||||
return true ;
|
||||
}
|
||||
|
||||
var eNewBlock ;
|
||||
|
||||
if ( ePreviousBlock )
|
||||
{
|
||||
var sPreviousBlockTag = ePreviousBlock.tagName.toUpperCase() ;
|
||||
|
||||
// If is a header tag, or we are in a Shift+Enter (#77),
|
||||
// create a new block element (later in the code).
|
||||
if ( !this._HasShift && !(/^H[1-6]$/).test( sPreviousBlockTag ) )
|
||||
{
|
||||
// Otherwise, duplicate the previous block.
|
||||
eNewBlock = FCKDomTools.CloneElement( ePreviousBlock ) ;
|
||||
}
|
||||
}
|
||||
else if ( eNextBlock )
|
||||
eNewBlock = FCKDomTools.CloneElement( eNextBlock ) ;
|
||||
|
||||
if ( !eNewBlock )
|
||||
eNewBlock = this.Window.document.createElement( blockTag ) ;
|
||||
|
||||
// Recreate the inline elements tree, which was available
|
||||
// before the hitting enter, so the same styles will be
|
||||
// available in the new block.
|
||||
var elementPath = oSplitInfo.ElementPath ;
|
||||
if ( elementPath )
|
||||
{
|
||||
for ( var i = 0, len = elementPath.Elements.length ; i < len ; i++ )
|
||||
{
|
||||
var element = elementPath.Elements[i] ;
|
||||
|
||||
if ( element == elementPath.Block || element == elementPath.BlockLimit )
|
||||
break ;
|
||||
|
||||
if ( FCKListsLib.InlineChildReqElements[ element.nodeName.toLowerCase() ] )
|
||||
{
|
||||
element = FCKDomTools.CloneElement( element ) ;
|
||||
FCKDomTools.MoveChildren( eNewBlock, element ) ;
|
||||
eNewBlock.appendChild( element ) ;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ( FCKBrowserInfo.IsGeckoLike )
|
||||
FCKTools.AppendBogusBr( eNewBlock ) ;
|
||||
|
||||
oRange.InsertNode( eNewBlock ) ;
|
||||
|
||||
// This is tricky, but to make the new block visible correctly
|
||||
// we must select it.
|
||||
if ( FCKBrowserInfo.IsIE )
|
||||
{
|
||||
// Move the selection to the new block.
|
||||
oRange.MoveToElementEditStart( eNewBlock ) ;
|
||||
oRange.Select() ;
|
||||
}
|
||||
|
||||
// Move the selection to the new block.
|
||||
oRange.MoveToElementEditStart( bIsStartOfBlock && !bIsEndOfBlock ? eNextBlock : eNewBlock ) ;
|
||||
}
|
||||
|
||||
if ( FCKBrowserInfo.IsSafari )
|
||||
FCKDomTools.ScrollIntoView( eNextBlock || eNewBlock, false ) ;
|
||||
else if ( FCKBrowserInfo.IsGeckoLike )
|
||||
( eNextBlock || eNewBlock ).scrollIntoView( false ) ;
|
||||
|
||||
oRange.Select() ;
|
||||
}
|
||||
|
||||
@ -442,6 +538,7 @@ FCKEnterKey.prototype._ExecuteEnterBr = function( blockTag )
|
||||
var sStartBlockTag = oRange.StartBlock ? oRange.StartBlock.tagName.toUpperCase() : '' ;
|
||||
|
||||
var bHasShift = this._HasShift ;
|
||||
var bIsPre = false ;
|
||||
|
||||
if ( !bHasShift && sStartBlockTag == 'LI' )
|
||||
return this._ExecuteEnterBlock( null, oRange ) ;
|
||||
@ -449,8 +546,6 @@ FCKEnterKey.prototype._ExecuteEnterBr = function( blockTag )
|
||||
// If we are at the end of a header block.
|
||||
if ( !bHasShift && bIsEndOfBlock && (/^H[1-6]$/).test( sStartBlockTag ) )
|
||||
{
|
||||
FCKDebug.Output( 'BR - Header' ) ;
|
||||
|
||||
// Insert a BR after the current paragraph.
|
||||
FCKDomTools.InsertAfterNode( oRange.StartBlock, this.Window.document.createElement( 'br' ) ) ;
|
||||
|
||||
@ -463,31 +558,51 @@ FCKEnterKey.prototype._ExecuteEnterBr = function( blockTag )
|
||||
}
|
||||
else
|
||||
{
|
||||
FCKDebug.Output( 'BR - No Header' ) ;
|
||||
var eLineBreak ;
|
||||
bIsPre = sStartBlockTag.IEquals( 'pre' ) ;
|
||||
if ( bIsPre )
|
||||
eLineBreak = this.Window.document.createTextNode( FCKBrowserInfo.IsIE ? '\r' : '\n' ) ;
|
||||
else
|
||||
eLineBreak = this.Window.document.createElement( 'br' ) ;
|
||||
|
||||
var eBr = this.Window.document.createElement( 'br' ) ;
|
||||
|
||||
oRange.InsertNode( eBr ) ;
|
||||
oRange.InsertNode( eLineBreak ) ;
|
||||
|
||||
// The space is required by Gecko only to make the cursor blink.
|
||||
if ( FCKBrowserInfo.IsGecko )
|
||||
FCKDomTools.InsertAfterNode( eBr, this.Window.document.createTextNode( '' ) ) ;
|
||||
FCKDomTools.InsertAfterNode( eLineBreak, this.Window.document.createTextNode( '' ) ) ;
|
||||
|
||||
// If we are at the end of a block, we must be sure the bogus node is available in that block.
|
||||
if ( bIsEndOfBlock && FCKBrowserInfo.IsGecko )
|
||||
this._AppendBogusBr( eBr.parentNode ) ;
|
||||
if ( bIsEndOfBlock && FCKBrowserInfo.IsGeckoLike )
|
||||
FCKTools.AppendBogusBr( eLineBreak.parentNode ) ;
|
||||
|
||||
if ( FCKBrowserInfo.IsIE )
|
||||
oRange.SetStart( eBr, 4 ) ;
|
||||
oRange.SetStart( eLineBreak, 4 ) ;
|
||||
else
|
||||
oRange.SetStart( eBr.nextSibling, 1 ) ;
|
||||
oRange.SetStart( eLineBreak.nextSibling, 1 ) ;
|
||||
|
||||
if ( ! FCKBrowserInfo.IsIE )
|
||||
{
|
||||
var dummy = null ;
|
||||
if ( FCKBrowserInfo.IsOpera )
|
||||
dummy = this.Window.document.createElement( 'span' ) ;
|
||||
else
|
||||
dummy = this.Window.document.createElement( 'br' ) ;
|
||||
|
||||
eLineBreak.parentNode.insertBefore( dummy, eLineBreak.nextSibling ) ;
|
||||
|
||||
if ( FCKBrowserInfo.IsSafari )
|
||||
FCKDomTools.ScrollIntoView( dummy, false ) ;
|
||||
else
|
||||
dummy.scrollIntoView( false ) ;
|
||||
|
||||
dummy.parentNode.removeChild( dummy ) ;
|
||||
}
|
||||
}
|
||||
|
||||
// This collapse guarantees the cursor will be blinking.
|
||||
oRange.Collapse( true ) ;
|
||||
|
||||
oRange.Select() ;
|
||||
oRange.Select( bIsPre ) ;
|
||||
}
|
||||
|
||||
// Release the resources used by the range.
|
||||
@ -496,55 +611,7 @@ FCKEnterKey.prototype._ExecuteEnterBr = function( blockTag )
|
||||
return true ;
|
||||
}
|
||||
|
||||
// Transform a block without a block tag in a valid block (orphan text in the body or td, usually).
|
||||
FCKEnterKey.prototype._FixBlock = function( range, isStart, blockTag )
|
||||
{
|
||||
// Bookmark the range so we can restore it later.
|
||||
var oBookmark = range.CreateBookmark() ;
|
||||
|
||||
// Collapse the range to the requested ending boundary.
|
||||
range.Collapse( isStart ) ;
|
||||
|
||||
// Expands it to the block contents.
|
||||
range.Expand( 'block_contents' ) ;
|
||||
|
||||
// Create the fixed block.
|
||||
var oFixedBlock = this.Window.document.createElement( blockTag ) ;
|
||||
|
||||
// Move the contents of the temporary range to the fixed block.
|
||||
range.ExtractContents().AppendTo( oFixedBlock ) ;
|
||||
FCKDomTools.TrimNode( oFixedBlock ) ;
|
||||
|
||||
// Insert the fixed block into the DOM.
|
||||
range.InsertNode( oFixedBlock ) ;
|
||||
|
||||
// Move the range back to the bookmarked place.
|
||||
range.MoveToBookmark( oBookmark ) ;
|
||||
}
|
||||
|
||||
// Appends a bogus <br> at the end of the element, if not yet available.
|
||||
FCKEnterKey.prototype._AppendBogusBr = function( element )
|
||||
{
|
||||
var eLastChild = element.getElementsByTagName('br') ;
|
||||
|
||||
if ( eLastChild )
|
||||
eLastChild = eLastChild[ eLastChild.legth - 1 ] ;
|
||||
|
||||
if ( !eLastChild || eLastChild.getAttribute( 'type', 2 ) != '_moz' )
|
||||
element.appendChild( FCKTools.CreateBogusBR( this.Window.document ) ) ;
|
||||
}
|
||||
|
||||
// Recreate the elements tree at the end of the source block, at the beginning
|
||||
// of the target block. Eg.:
|
||||
// If source = <p><u>Some</u> sample <b><i>text</i></b></p> then target = <p><b><i></i></b></p>
|
||||
// If source = <p><u>Some</u> sample text</p> then target = <p></p>
|
||||
FCKEnterKey.prototype._RecreateEndingTree = function( source, target )
|
||||
{
|
||||
while ( ( source = source.lastChild ) && source.nodeType == 1 && FCKListsLib.InlineChildReqElements[ source.nodeName.toLowerCase() ] != null )
|
||||
target = target.insertBefore( source.cloneNode( false ), target.firstChild ) ;
|
||||
}
|
||||
|
||||
// Outdents a LI, maintaining the seletion defined on a range.
|
||||
// Outdents a LI, maintaining the selection defined on a range.
|
||||
FCKEnterKey.prototype._OutdentWithSelection = function( li, range )
|
||||
{
|
||||
var oBookmark = range.CreateBookmark() ;
|
||||
@ -553,4 +620,48 @@ FCKEnterKey.prototype._OutdentWithSelection = function( li, range )
|
||||
|
||||
range.MoveToBookmark( oBookmark ) ;
|
||||
range.Select() ;
|
||||
}
|
||||
}
|
||||
|
||||
// Is all the contents under a node included by a range?
|
||||
FCKEnterKey.prototype._CheckIsAllContentsIncluded = function( range, node )
|
||||
{
|
||||
var startOk = false ;
|
||||
var endOk = false ;
|
||||
|
||||
/*
|
||||
FCKDebug.Output( 'sc='+range.StartContainer.nodeName+
|
||||
',so='+range._Range.startOffset+
|
||||
',ec='+range.EndContainer.nodeName+
|
||||
',eo='+range._Range.endOffset ) ;
|
||||
*/
|
||||
if ( range.StartContainer == node || range.StartContainer == node.firstChild )
|
||||
startOk = ( range._Range.startOffset == 0 ) ;
|
||||
|
||||
if ( range.EndContainer == node || range.EndContainer == node.lastChild )
|
||||
{
|
||||
var nodeLength = range.EndContainer.nodeType == 3 ? range.EndContainer.length : range.EndContainer.childNodes.length ;
|
||||
endOk = ( range._Range.endOffset == nodeLength ) ;
|
||||
}
|
||||
|
||||
return startOk && endOk ;
|
||||
}
|
||||
|
||||
// Kludge for #247
|
||||
FCKEnterKey.prototype._FixIESelectAllBug = function( range )
|
||||
{
|
||||
var doc = this.Window.document ;
|
||||
doc.body.innerHTML = '' ;
|
||||
var editBlock ;
|
||||
if ( FCKConfig.EnterMode.IEquals( ['div', 'p'] ) )
|
||||
{
|
||||
editBlock = doc.createElement( FCKConfig.EnterMode ) ;
|
||||
doc.body.appendChild( editBlock ) ;
|
||||
}
|
||||
else
|
||||
editBlock = doc.body ;
|
||||
|
||||
range.MoveToNodeContents( editBlock ) ;
|
||||
range.Collapse( true ) ;
|
||||
range.Select() ;
|
||||
range.Release() ;
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -34,7 +34,12 @@ FCKEvents.prototype.AttachEvent = function( eventName, functionPointer )
|
||||
if ( !( aTargets = this._RegisteredEvents[ eventName ] ) )
|
||||
this._RegisteredEvents[ eventName ] = [ functionPointer ] ;
|
||||
else
|
||||
aTargets.push( functionPointer ) ;
|
||||
{
|
||||
// Check that the event handler isn't already registered with the same listener
|
||||
// It doesn't detect function pointers belonging to an object (at least in Gecko)
|
||||
if ( aTargets.IndexOf( functionPointer ) == -1 )
|
||||
aTargets.push( functionPointer ) ;
|
||||
}
|
||||
}
|
||||
|
||||
FCKEvents.prototype.FireEvent = function( eventName, params )
|
||||
@ -46,7 +51,20 @@ FCKEvents.prototype.FireEvent = function( eventName, params )
|
||||
if ( oCalls )
|
||||
{
|
||||
for ( var i = 0 ; i < oCalls.length ; i++ )
|
||||
bReturnValue = ( oCalls[ i ]( this.Owner, params ) && bReturnValue ) ;
|
||||
{
|
||||
try
|
||||
{
|
||||
bReturnValue = ( oCalls[ i ]( this.Owner, params ) && bReturnValue ) ;
|
||||
}
|
||||
catch(e)
|
||||
{
|
||||
// Ignore the following error. It may happen if pointing to a
|
||||
// script not anymore available (#934):
|
||||
// -2146823277 = Can't execute code from a freed script
|
||||
if ( e.number != -2146823277 )
|
||||
throw e ;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return bReturnValue ;
|
||||
|
142
phpgwapi/js/fckeditor/editor/_source/classes/fckhtmliterator.js
Normal file
142
phpgwapi/js/fckeditor/editor/_source/classes/fckhtmliterator.js
Normal file
@ -0,0 +1,142 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2008 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 class can be used to interate through nodes inside a range.
|
||||
*
|
||||
* During interation, the provided range can become invalid, due to document
|
||||
* mutations, so CreateBookmark() used to restore it after processing, if
|
||||
* needed.
|
||||
*/
|
||||
|
||||
var FCKHtmlIterator = function( source )
|
||||
{
|
||||
this._sourceHtml = source ;
|
||||
}
|
||||
FCKHtmlIterator.prototype =
|
||||
{
|
||||
Next : function()
|
||||
{
|
||||
var sourceHtml = this._sourceHtml ;
|
||||
if ( sourceHtml == null )
|
||||
return null ;
|
||||
|
||||
var match = FCKRegexLib.HtmlTag.exec( sourceHtml ) ;
|
||||
var isTag = false ;
|
||||
var value = "" ;
|
||||
if ( match )
|
||||
{
|
||||
if ( match.index > 0 )
|
||||
{
|
||||
value = sourceHtml.substr( 0, match.index ) ;
|
||||
this._sourceHtml = sourceHtml.substr( match.index ) ;
|
||||
}
|
||||
else
|
||||
{
|
||||
isTag = true ;
|
||||
value = match[0] ;
|
||||
this._sourceHtml = sourceHtml.substr( match[0].length ) ;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
value = sourceHtml ;
|
||||
this._sourceHtml = null ;
|
||||
}
|
||||
return { 'isTag' : isTag, 'value' : value } ;
|
||||
},
|
||||
|
||||
Each : function( func )
|
||||
{
|
||||
var chunk ;
|
||||
while ( ( chunk = this.Next() ) )
|
||||
func( chunk.isTag, chunk.value ) ;
|
||||
}
|
||||
} ;
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2008 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 class can be used to interate through nodes inside a range.
|
||||
*
|
||||
* During interation, the provided range can become invalid, due to document
|
||||
* mutations, so CreateBookmark() used to restore it after processing, if
|
||||
* needed.
|
||||
*/
|
||||
|
||||
var FCKHtmlIterator = function( source )
|
||||
{
|
||||
this._sourceHtml = source ;
|
||||
}
|
||||
FCKHtmlIterator.prototype =
|
||||
{
|
||||
Next : function()
|
||||
{
|
||||
var sourceHtml = this._sourceHtml ;
|
||||
if ( sourceHtml == null )
|
||||
return null ;
|
||||
|
||||
var match = FCKRegexLib.HtmlTag.exec( sourceHtml ) ;
|
||||
var isTag = false ;
|
||||
var value = "" ;
|
||||
if ( match )
|
||||
{
|
||||
if ( match.index > 0 )
|
||||
{
|
||||
value = sourceHtml.substr( 0, match.index ) ;
|
||||
this._sourceHtml = sourceHtml.substr( match.index ) ;
|
||||
}
|
||||
else
|
||||
{
|
||||
isTag = true ;
|
||||
value = match[0] ;
|
||||
this._sourceHtml = sourceHtml.substr( match[0].length ) ;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
value = sourceHtml ;
|
||||
this._sourceHtml = null ;
|
||||
}
|
||||
return { 'isTag' : isTag, 'value' : value } ;
|
||||
},
|
||||
|
||||
Each : function( func )
|
||||
{
|
||||
var chunk ;
|
||||
while ( ( chunk = this.Next() ) )
|
||||
func( chunk.isTag, chunk.value ) ;
|
||||
}
|
||||
} ;
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -74,25 +74,30 @@ FCKIcon.prototype.CreateIconElement = function( document )
|
||||
eIcon = document.createElement( 'IMG' ) ;
|
||||
eIcon.src = FCK_SPACER_PATH ;
|
||||
eIcon.style.backgroundPosition = '0px ' + sPos ;
|
||||
eIcon.style.backgroundImage = 'url(' + this.Path + ')' ;
|
||||
eIcon.style.backgroundImage = 'url("' + this.Path + '")' ;
|
||||
}
|
||||
}
|
||||
else // It is using a single icon image.
|
||||
{
|
||||
// This is not working well with IE. See notes bellow.
|
||||
// <img class="TB_Button_Image" src="smiley.gif">
|
||||
// eIcon = document.createElement( 'IMG' ) ;
|
||||
// eIcon.src = this.Path ? this.Path : FCK_SPACER_PATH ;
|
||||
if ( FCKBrowserInfo.IsIE )
|
||||
{
|
||||
// IE makes the button 1px higher if using the <img> directly, so we
|
||||
// are changing to the <div> system to clip the image correctly.
|
||||
eIcon = document.createElement( 'DIV' ) ;
|
||||
|
||||
// IE makes the button 1px higher if using the <img> directly, so we
|
||||
// are changing to the <div> system to clip the image correctly.
|
||||
eIcon = document.createElement( 'DIV' ) ;
|
||||
|
||||
eIconImage = eIcon.appendChild( document.createElement( 'IMG' ) ) ;
|
||||
eIconImage.src = this.Path ? this.Path : FCK_SPACER_PATH ;
|
||||
eIconImage = eIcon.appendChild( document.createElement( 'IMG' ) ) ;
|
||||
eIconImage.src = this.Path ? this.Path : FCK_SPACER_PATH ;
|
||||
}
|
||||
else
|
||||
{
|
||||
// This is not working well with IE. See notes above.
|
||||
// <img class="TB_Button_Image" src="smiley.gif">
|
||||
eIcon = document.createElement( 'IMG' ) ;
|
||||
eIcon.src = this.Path ? this.Path : FCK_SPACER_PATH ;
|
||||
}
|
||||
}
|
||||
|
||||
eIcon.className = 'TB_Button_Image' ;
|
||||
|
||||
return eIcon ;
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -23,7 +23,7 @@
|
||||
|
||||
var FCKIECleanup = function( attachWindow )
|
||||
{
|
||||
// If the attachWindow already have a cleanup object, jusgt use that one.
|
||||
// If the attachWindow already have a cleanup object, just use that one.
|
||||
if ( attachWindow._FCKCleanupObj )
|
||||
this.Items = attachWindow._FCKCleanupObj.Items ;
|
||||
else
|
||||
@ -43,7 +43,7 @@ FCKIECleanup.prototype.AddItem = function( dirtyItem, cleanupFunction )
|
||||
|
||||
function FCKIECleanup_Cleanup()
|
||||
{
|
||||
if ( !this._FCKCleanupObj )
|
||||
if ( !this._FCKCleanupObj || !window.FCKUnloadFlag )
|
||||
return ;
|
||||
|
||||
var aItems = this._FCKCleanupObj.Items ;
|
||||
@ -65,4 +65,4 @@ function FCKIECleanup_Cleanup()
|
||||
|
||||
if ( CollectGarbage )
|
||||
CollectGarbage() ;
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -44,8 +44,8 @@ FCKImagePreloader.prototype =
|
||||
for ( var i = 0 ; i < aImages.length ; i++ )
|
||||
{
|
||||
var eImg = document.createElement( 'img' ) ;
|
||||
eImg.onload = eImg.onerror = _FCKImagePreloader_OnImage ;
|
||||
eImg._FCKImagePreloader = this ;
|
||||
FCKTools.AddEventListenerEx( eImg, 'load', _FCKImagePreloader_OnImage, this ) ;
|
||||
FCKTools.AddEventListenerEx( eImg, 'error', _FCKImagePreloader_OnImage, this ) ;
|
||||
eImg.src = aImages[i] ;
|
||||
|
||||
_FCKImagePreloader_ImageCache.push( eImg ) ;
|
||||
@ -57,12 +57,8 @@ FCKImagePreloader.prototype =
|
||||
// magic will not happen.
|
||||
var _FCKImagePreloader_ImageCache = new Array() ;
|
||||
|
||||
function _FCKImagePreloader_OnImage()
|
||||
function _FCKImagePreloader_OnImage( ev, imagePreloader )
|
||||
{
|
||||
var oImagePreloader = this._FCKImagePreloader ;
|
||||
|
||||
if ( (--oImagePreloader._PreloadCount) == 0 && oImagePreloader.OnComplete )
|
||||
oImagePreloader.OnComplete() ;
|
||||
|
||||
this._FCKImagePreloader = null ;
|
||||
}
|
||||
if ( (--imagePreloader._PreloadCount) == 0 && imagePreloader.OnComplete )
|
||||
imagePreloader.OnComplete() ;
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
||||
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
@ -54,11 +54,16 @@ FCKKeystrokeHandler.prototype.SetKeystrokes = function()
|
||||
{
|
||||
var keyDef = arguments[i] ;
|
||||
|
||||
// If the configuration for the keystrokes is missing some element or has any extra comma
|
||||
// this item won't be valid, so skip it and keep on processing.
|
||||
if ( !keyDef )
|
||||
continue ;
|
||||
|
||||
if ( typeof( keyDef[0] ) == 'object' ) // It is an array with arrays defining the keystrokes.
|
||||
this.SetKeystrokes.apply( this, keyDef ) ;
|
||||
else
|
||||
{
|
||||
if ( keyDef.length == 1 ) // If it has only one element, removed the keystroke.
|
||||
if ( keyDef.length == 1 ) // If it has only one element, remove the keystroke.
|
||||
delete this.Keystrokes[ keyDef[0] ] ;
|
||||
else // Otherwise add it.
|
||||
this.Keystrokes[ keyDef[0] ] = keyDef[1] === true ? true : keyDef ;
|
||||
@ -95,7 +100,7 @@ function _FCKKeystrokeHandler_OnKeyDown( ev, keystrokeHandler )
|
||||
// If the keystroke is defined
|
||||
if ( keystrokeValue )
|
||||
{
|
||||
// If the keystroke has been explicetly set to "true" OR calling the
|
||||
// If the keystroke has been explicitly set to "true" OR calling the
|
||||
// "OnKeystroke" event, it doesn't return "true", the default behavior
|
||||
// must be preserved.
|
||||
if ( keystrokeValue === true || !( keystrokeHandler.OnKeystroke && keystrokeHandler.OnKeystroke.apply( keystrokeHandler, keystrokeValue ) ) )
|
||||
@ -133,4 +138,4 @@ function _FCKKeystrokeHandler_OnKeyPress( ev, keystrokeHandler )
|
||||
}
|
||||
|
||||
return true ;
|
||||
}
|
||||
}
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user