From: Thyamad c. <th...@us...> - 2005-09-29 19:50:26
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor Modified Files: fckdebug.html fckdialog.html fckeditor.html fckeditor.original.html Log Message: Commiting file additions and modification from SVN revision 2028 to 2029... Changes made by frank on 2005-09-29 21:42:57 +0200 (Thu, 29 Sep 2005) corresponding to SVN revision 2029 with message: updating fckeditor in dynapi Index: fckeditor.original.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/fckeditor.original.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fckeditor.original.html 1 Sep 2005 18:15:40 -0000 1.4 --- fckeditor.original.html 29 Sep 2005 19:49:17 -0000 1.5 *************** *** 1,5 **** ! <!-- * FCKeditor - The text editor for internet ! * Copyright (C) 2003-2004 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: --- 1,5 ---- ! <!-- * FCKeditor - The text editor for internet ! * Copyright (C) 2003-2005 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: *************** *** 12,21 **** * Main page that holds the editor. * - * Version: 2.0 RC3 - * Modified: 2005-03-02 10:54:21 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> --- 12,18 ---- * Main page that holds the editor. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> *************** *** 30,33 **** --- 27,31 ---- @Packager.RemoveLine --> <!-- @Packager.Remove.Start --> + <script type="text/javascript" src="_source/internals/fcknamespace.js"></script> <script type="text/javascript" src="_source/internals/fckcoreextensions.js"></script> <script type="text/javascript" src="_source/globals/fck_constants.js"></script> *************** *** 63,67 **** <tr id="eWysiwyg"> <td id="eWysiwygCell" height="100%" valign="top"> ! <iframe id="eEditorArea" name="eEditorArea" height="100%" width="100%" frameborder="no" src="fckeditorarea.html"></iframe> </td> </tr> --- 61,65 ---- <tr id="eWysiwyg"> <td id="eWysiwygCell" height="100%" valign="top"> ! <iframe id="eEditorArea" name="eEditorArea" height="100%" width="100%" frameborder="no" src="fckblank.html"></iframe> </td> </tr> Index: fckdialog.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/fckdialog.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fckdialog.html 1 Sep 2005 18:15:40 -0000 1.4 --- fckdialog.html 29 Sep 2005 19:49:17 -0000 1.5 *************** *** 1,5 **** ! <!-- * FCKeditor - The text editor for internet ! * Copyright (C) 2003-2004 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: --- 1,5 ---- ! <!-- * FCKeditor - The text editor for internet ! * Copyright (C) 2003-2005 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: *************** *** 12,21 **** * This page is used by all dialog box as the container. * - * Version: 2.0 RC3 - * Modified: 2005-02-19 14:49:02 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> --- 12,18 ---- * This page is used by all dialog box as the container. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> *************** *** 24,30 **** <meta name="robots" content="noindex, nofollow" /> <script type="text/javascript"> - <!-- ! // On some Gecko browsers (probably over slow connections) the // "dialogArguments" are not set so we must get it from the opener window. if ( !dialogArguments ) --- 21,26 ---- <meta name="robots" content="noindex, nofollow" /> <script type="text/javascript"> ! // On some Gecko browsers (probably over slow connections) the // "dialogArguments" are not set so we must get it from the opener window. if ( !dialogArguments ) *************** *** 44,48 **** if ( window.onresize ) window.onresize() ; ! // First of all, translate the dialog box contents. dialogArguments.Editor.FCKLanguageManager.TranslatePage( document ) ; --- 40,44 ---- if ( window.onresize ) window.onresize() ; ! // First of all, translate the dialog box contents. dialogArguments.Editor.FCKLanguageManager.TranslatePage( document ) ; *************** *** 57,67 **** // Set the language direction. oInnerDoc.dir = dialogArguments.Editor.FCKLang.Dir ; ! // Sets the Skin CSS. oInnerDoc.write( '<link href="' + dialogArguments.Editor.FCKConfig.SkinPath + 'fck_dialog.css" type="text/css" rel="stylesheet">' ) ; ! SetOnKeyDown( oInnerDoc ) ; DisableContextMenu( oInnerDoc ) ; ! return dialogArguments.Editor ; } --- 53,63 ---- // Set the language direction. oInnerDoc.dir = dialogArguments.Editor.FCKLang.Dir ; ! // Sets the Skin CSS. oInnerDoc.write( '<link href="' + dialogArguments.Editor.FCKConfig.SkinPath + 'fck_dialog.css" type="text/css" rel="stylesheet">' ) ; ! SetOnKeyDown( oInnerDoc ) ; DisableContextMenu( oInnerDoc ) ; ! return dialogArguments.Editor ; } *************** *** 85,98 **** { var oInnerDoc = document.getElementById('frmMain').contentWindow.document ; ! if ( document.all ) var iFrameHeight = oInnerDoc.body.offsetHeight ; else var iFrameHeight = document.getElementById('frmMain').contentWindow.innerHeight ; ! var iInnerHeight = oInnerDoc.body.scrollHeight ; ! var iDiff = iInnerHeight - iFrameHeight ; ! if ( iDiff > 0 ) { --- 81,94 ---- { var oInnerDoc = document.getElementById('frmMain').contentWindow.document ; ! if ( document.all ) var iFrameHeight = oInnerDoc.body.offsetHeight ; else var iFrameHeight = document.getElementById('frmMain').contentWindow.innerHeight ; ! var iInnerHeight = oInnerDoc.body.scrollHeight ; ! var iDiff = iInnerHeight - iFrameHeight ; ! if ( iDiff > 0 ) { *************** *** 119,122 **** --- 115,123 ---- var oTabs = new Object() ; + function TabDiv_OnClick() + { + SetSelectedTab( this.TabCode ) ; + } + function AddTab( tabCode, tabText, startHidden ) { *************** *** 133,160 **** oDiv.innerHTML = tabText ; oDiv.TabCode = tabCode ; ! oDiv.onclick = function() ! { ! SetSelectedTab( this.TabCode ) ; ! } ! if ( startHidden ) oDiv.style.display = 'none' ; ! var eTabsRow = document.getElementById( 'TabsRow' ) ; ! oCell.appendChild( oDiv ) ; ! if ( eTabsRow.style.display == 'none' ) { var eTitleArea = document.getElementById( 'TitleArea' ) ; eTitleArea.className = 'PopupTitle' ; ! oDiv.className = 'PopupTabSelected' ; eTabsRow.style.display = '' ; ! if ( ! dialogArguments.Editor.FCKBrowserInfo.IsIE ) window.onresize() ; } ! oTabs[ tabCode ] = oDiv ; oTabs[ tabCode ].Index = oTabs.length - 1 ; --- 134,158 ---- oDiv.innerHTML = tabText ; oDiv.TabCode = tabCode ; ! oDiv.onclick = TabDiv_OnClick ; ! if ( startHidden ) oDiv.style.display = 'none' ; ! var eTabsRow = document.getElementById( 'TabsRow' ) ; ! oCell.appendChild( oDiv ) ; ! if ( eTabsRow.style.display == 'none' ) { var eTitleArea = document.getElementById( 'TitleArea' ) ; eTitleArea.className = 'PopupTitle' ; ! oDiv.className = 'PopupTabSelected' ; eTabsRow.style.display = '' ; ! if ( ! dialogArguments.Editor.FCKBrowserInfo.IsIE ) window.onresize() ; } ! oTabs[ tabCode ] = oDiv ; oTabs[ tabCode ].Index = oTabs.length - 1 ; *************** *** 170,174 **** oTabs[sCode].className = 'PopupTab' ; } ! if ( typeof( window.frames["frmMain"].OnDialogTabChange ) == 'function' ) window.frames["frmMain"].OnDialogTabChange( tabCode ) ; --- 168,172 ---- oTabs[sCode].className = 'PopupTab' ; } ! if ( typeof( window.frames["frmMain"].OnDialogTabChange ) == 'function' ) window.frames["frmMain"].OnDialogTabChange( tabCode ) ; *************** *** 179,183 **** var oTab = oTabs[ tabCode ] ; oTab.style.display = isVisible ? '' : 'none' ; ! if ( ! isVisible && oTab.className == 'PopupTabSelected' ) { --- 177,181 ---- var oTab = oTabs[ tabCode ] ; oTab.style.display = isVisible ? '' : 'none' ; ! if ( ! isVisible && oTab.className == 'PopupTabSelected' ) { *************** *** 217,221 **** { if ( dialogArguments.Editor.FCKBrowserInfo.IsIE ) return ; ! // Disable Right-Click var oOnContextMenu = function( e ) --- 215,219 ---- { if ( dialogArguments.Editor.FCKBrowserInfo.IsIE ) return ; ! // Disable Right-Click var oOnContextMenu = function( e ) *************** *** 234,246 **** { var oFrame = document.getElementById("frmMain") ; ! if ( ! oFrame ) return ; ! oFrame.height = 0 ; ! var oCell = document.getElementById("FrameCell") ; var iHeight = oCell.offsetHeight ; ! oFrame.height = iHeight - 2 ; } --- 232,244 ---- { var oFrame = document.getElementById("frmMain") ; ! if ( ! oFrame ) return ; ! oFrame.height = 0 ; ! var oCell = document.getElementById("FrameCell") ; var iHeight = oCell.offsetHeight ; ! oFrame.height = iHeight - 2 ; } *************** *** 252,256 **** } ! //--> </script> </head> --- 250,265 ---- } ! if ( dialogArguments.Editor.FCKBrowserInfo.IsIE ) ! { ! function Window_OnBeforeUnload() ! { ! for ( var t in oTabs ) ! oTabs[t] = null ; ! ! dialogArguments.Editor = null ; ! } ! window.attachEvent( "onbeforeunload", Window_OnBeforeUnload ) ; ! } ! </script> </head> *************** *** 260,266 **** <td id="TitleArea" class="PopupTitle PopupTitleBorder"> <script type="text/javascript"> - <!-- document.write( sTitle ) ; - //--> </script> </td> --- 269,273 ---- Index: fckeditor.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/fckeditor.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fckeditor.html 1 Sep 2005 18:15:40 -0000 1.4 --- fckeditor.html 29 Sep 2005 19:49:17 -0000 1.5 *************** *** 1,5 **** ! <!-- * FCKeditor - The text editor for internet ! * Copyright (C) 2003-2004 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: --- 1,5 ---- ! <!-- * FCKeditor - The text editor for internet ! * Copyright (C) 2003-2005 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: *************** *** 12,21 **** * Main page that holds the editor. * - * Version: 2.0 RC3 - * Modified: 2005-03-02 10:54:21 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> --- 12,18 ---- * Main page that holds the editor. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> *************** *** 47,51 **** <tr id="eWysiwyg"> <td id="eWysiwygCell" height="100%" valign="top"> ! <iframe id="eEditorArea" name="eEditorArea" height="100%" width="100%" frameborder="no" src="fckeditorarea.html"></iframe> </td> </tr> --- 44,48 ---- <tr id="eWysiwyg"> <td id="eWysiwygCell" height="100%" valign="top"> ! <iframe id="eEditorArea" name="eEditorArea" height="100%" width="100%" frameborder="no" src="fckblank.html"></iframe> </td> </tr> Index: fckdebug.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/fckdebug.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fckdebug.html 1 Sep 2005 18:15:40 -0000 1.4 --- fckdebug.html 29 Sep 2005 19:49:17 -0000 1.5 *************** *** 1,5 **** ! <!-- * FCKeditor - The text editor for internet ! * Copyright (C) 2003-2004 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: --- 1,5 ---- ! <!-- * FCKeditor - The text editor for internet ! * Copyright (C) 2003-2005 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: *************** *** 13,22 **** * It automatically popups if the Debug = true in the configuration file. * - * Version: 2.0 RC3 - * Modified: 2005-02-23 20:49:25 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> --- 13,19 ---- * It automatically popups if the Debug = true in the configuration file. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> |