Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/dialog Modified Files: fck_about.html fck_anchor.html fck_button.html fck_checkbox.html fck_colorselector.html fck_docprops.html fck_find.html fck_form.html fck_hiddenfield.html fck_image.html fck_link.html fck_listprop.html fck_paste.html fck_radiobutton.html fck_replace.html fck_select.html fck_smiley.html fck_specialchar.html fck_spellerpages.html fck_table.html fck_tablecell.html fck_textarea.html fck_textfield.html fck_universalkey.html Added Files: fck_flash.html fck_source.html fck_template.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: fck_table.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_table.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fck_table.html 1 Sep 2005 18:15:41 -0000 1.4 --- fck_table.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 **** * Table dialog window. * - * Version: 2.0 RC3 - * Modified: 2005-02-19 00:38:53 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <html> --- 12,18 ---- * Table dialog window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <html> *************** *** 130,137 **** { var oCell = oRow.insertCell(-1) ; ! oCell.innerHTML = " " ; } } oEditor.FCK.InsertElement( table ) ; } --- 127,137 ---- { var oCell = oRow.insertCell(-1) ; ! if ( oEditor.FCKBrowserInfo.IsGecko ) ! oCell.innerHTML = '<br _moz_editor_bogus_node="TRUE">' ; ! //oCell.innerHTML = " " ; } } + oEditor.FCKUndo.SaveUndoStep() ; oEditor.FCK.InsertElement( table ) ; } --- NEW FILE: fck_template.html --- <!-- * FCKeditor - The text editor for internet * Copyright (C) 2003-2005 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: * http://www.opensource.org/licenses/lgpl-license.php * * For further information visit: * http://www.fckeditor.net/ * * File Name: fck_template.html * Template selection dialog window. * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <style> .TplList { border: #dcdcdc 2px solid; background-color: #ffffff; overflow: auto; width: 90%; } .TplItem { margin: 5px; padding: 7px; border: #eeeeee 1px solid; } .TplItem TABLE { display: inline; } .TplTitle { font-weight: bold; } </style> <script src="common/fck_dialog_common.js" type="text/javascript"></script> <script language="javascript"> var oEditor = window.parent.InnerDialogLoaded() ; var FCK = oEditor.FCK ; var FCKLang = oEditor.FCKLang ; var FCKConfig = oEditor.FCKConfig ; window.onload = function() { // Set the right box height (browser dependent). GetE('eList').style.height = document.all ? '100%' : '295px' ; // Translate the dialog box texts. oEditor.FCKLanguageManager.TranslatePage(document) ; window.parent.SetAutoSize( true ) ; LoadTemplatesXml() ; } function LoadTemplatesXml() { if ( !FCK._Templates ) { GetE('eLoading').style.display = '' ; // Create the Templates array. FCK._Templates = new Array() ; // Load the XML file. var oXml = new oEditor.FCKXml() ; oXml.LoadUrl( FCKConfig.TemplatesXmlPath ) ; // Get the Images Base Path. var oAtt = oXml.SelectSingleNode( 'Templates/@imagesBasePath' ) ; var sImagesBasePath = oAtt ? oAtt.value : '' ; // Get the "Template" nodes defined in the XML file. var aTplNodes = oXml.SelectNodes( 'Templates/Template' ) ; for ( var i = 0 ; i < aTplNodes.length ; i++ ) { var oNode = aTplNodes[i] var oTemplate = new Object() ; var oPart ; // Get the Template Title. if ( oPart = oNode.attributes.getNamedItem('title') ) oTemplate.Title = oPart.value ; else oTemplate.Title = 'Template ' + ( i + 1 ) ; // Get the Template Description. if ( oPart = oXml.SelectSingleNode( 'Description', oNode ) ) oTemplate.Description = oPart.text ? oPart.text : oPart.textContent ; // Get the Template Image. if ( oPart = oNode.attributes.getNamedItem('image') ) oTemplate.Image = sImagesBasePath + oPart.value ; // Get the Template HTML. if ( oPart = oXml.SelectSingleNode( 'Html', oNode ) ) oTemplate.Html = oPart.text ? oPart.text : oPart.textContent ; else { alert( 'No HTML defined for template index ' + i + '. Please review the "' + FCKConfig.TemplatesXmlPath + '" file.' ) ; continue ; } FCK._Templates[ FCK._Templates.length ] = oTemplate ; } GetE('eLoading').style.display = 'none' ; } if ( FCK._Templates.length == 0 ) GetE('eEmpty').style.display = '' ; else { for ( var i = 0 ; i < FCK._Templates.length ; i++ ) { var oTemplate = FCK._Templates[i] ; var oItemDiv = GetE('eList').appendChild( document.createElement( 'DIV' ) ) ; oItemDiv.TplIndex = i ; oItemDiv.className = 'TplItem' ; // Build the inner HTML of our new item DIV. var sInner = '<table><tr>' ; if ( oTemplate.Image ) sInner += '<td valign="top"><img src="' + oTemplate.Image + '"></td>' ; sInner += '<td valign="top"><div class="TplTitle">' + oTemplate.Title + '</div>' ; if ( oTemplate.Description ) sInner += '<div>' + oTemplate.Description + '</div>' ; sInner += '</td></tr></table>' ; oItemDiv.innerHTML = sInner ; oItemDiv.onmouseover = ItemDiv_OnMouseOver ; oItemDiv.onmouseout = ItemDiv_OnMouseOut ; oItemDiv.onclick = ItemDiv_OnClick ; } } } function ItemDiv_OnMouseOver() { this.className += ' PopupSelectionBox' ; } function ItemDiv_OnMouseOut() { this.className = this.className.replace( /\s*PopupSelectionBox\s*/, '' ) ; } function ItemDiv_OnClick() { SelectTemplate( this.TplIndex ) ; } function SelectTemplate( index ) { oEditor.FCKUndo.SaveUndoStep() ; FCK.SetHTML( FCK._Templates[index].Html ) ; window.parent.Cancel() ; } </script> </head> <body scroll="no" style="OVERFLOW: hidden"> <table width="100%" height="100%"> <tr> <td align="center"> <span fckLang="DlgTemplatesSelMsg">Please select the template to open in the editor<br> (the actual contents will be lost):</span> </td> </tr> <tr> <td height="100%" align="center"> <div id="eList" align="left" class="TplList"> <div id="eLoading" align="center" style="DISPLAY: none"> <br> <span fckLang="DlgTemplatesLoading">Loading templates list. Please wait...</span> </div> <div id="eEmpty" align="center" style="DISPLAY: none"> <br> <span fckLang="DlgTemplatesNoTpl">(No templates defined)</span> </div> </div> </td> </tr> </table> </body> </html> Index: fck_radiobutton.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_radiobutton.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fck_radiobutton.html 1 Sep 2005 18:15:41 -0000 1.1 --- fck_radiobutton.html 29 Sep 2005 19:49:17 -0000 1.2 *************** *** 1,6 **** <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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,6 ---- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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 **** * Radio Button dialog window. * - * Version: 2.0 RC3 - * Modified: 2005-02-16 20:12:28 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> --- 13,19 ---- * Radio Button dialog window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> *************** *** 42,46 **** { GetE('txtName').value = oActiveEl.name ; ! GetE('txtValue').value = GetAttribute( oActiveEl, 'value' ) ; GetE('txtSelected').checked = oActiveEl.checked ; } --- 39,43 ---- { GetE('txtName').value = oActiveEl.name ; ! GetE('txtValue').value = oActiveEl.value ; GetE('txtSelected').checked = oActiveEl.checked ; } Index: fck_hiddenfield.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_hiddenfield.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fck_hiddenfield.html 1 Sep 2005 18:15:41 -0000 1.1 --- fck_hiddenfield.html 29 Sep 2005 19:49:17 -0000 1.2 *************** *** 1,6 **** <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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,6 ---- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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 **** * Hidden Field dialog window. * - * Version: 2.0 RC3 - * Modified: 2005-02-08 19:18:19 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> --- 13,19 ---- * Hidden Field dialog window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> Index: fck_link.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_link.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fck_link.html 1 Sep 2005 18:15:41 -0000 1.4 --- fck_link.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 **** * Link dialog window. * - * Version: 2.0 RC3 - * Modified: 2005-02-18 23:55:22 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> --- 12,18 ---- * Link dialog window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> *************** *** 38,42 **** <br /> <div id="divLinkTypeUrl"> ! <table cellspacing="0" cellpadding="0" width="100%" border="0"> <tr> <td nowrap="nowrap"> --- 35,39 ---- <br /> <div id="divLinkTypeUrl"> ! <table cellspacing="0" cellpadding="0" width="100%" border="0" dir="ltr"> <tr> <td nowrap="nowrap"> *************** *** 101,110 **** </div> <div id="divUpload" style="DISPLAY: none"> ! <form method="post" target="UploadWindow" enctype="multipart/form-data" action=""> <span fckLang="DlgLnkUpload">Upload</span><br /> ! <input style="WIDTH: 100%" type="file" size="40" /><br /> <br /> ! <input id="btnUpload" onclick="uploadFile();" type="button" value="Send it to the Server" ! fckLang="DlgLnkBtnUpload" /> </form> </div> --- 98,107 ---- </div> <div id="divUpload" style="DISPLAY: none"> ! <form id="frmUpload" method="post" target="UploadWindow" enctype="multipart/form-data" action="" onsubmit="return CheckUpload();"> <span fckLang="DlgLnkUpload">Upload</span><br /> ! <input id="txtUploadFile" style="WIDTH: 100%" type="file" size="40" name="NewFile" /><br /> <br /> ! <input id="btnUpload" type="submit" value="Send it to the Server" fckLang="DlgLnkBtnUpload" /> ! <iframe name="UploadWindow" style="DISPLAY: none"></iframe> </form> </div> Index: fck_find.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_find.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fck_find.html 1 Sep 2005 18:15:41 -0000 1.4 --- fck_find.html 29 Sep 2005 19:49:17 -0000 1.5 *************** *** 1,6 **** <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <!-- * 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,6 ---- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <!-- * 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 **** * "Find" dialog window. * - * Version: 2.0 RC3 - * Modified: 2005-02-09 13:52:09 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> --- 13,19 ---- * "Find" dialog window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> *************** *** 141,158 **** </td> <td width="100%"> ! <input id="txtFind" onkeyup="btnStat(this.form)" style="WIDTH: 100%" tabIndex="1" type="text"> </td> <td> ! <input id="btnFind" style="WIDTH: 100%; PADDING-RIGHT: 5px; PADDING-LEFT: 5px" disabled ! onclick="Ok();" type="button" value="Find" fckLang="DlgFindFindBtn"> </td> </tr> <tr> <td valign="bottom" colSpan="3"> ! <input id="chkCase" tabIndex="3" type="checkbox"><label for="chkCase" fckLang="DlgReplaceCaseChk">Match case</label> <br> <div id="divWord" style="DISPLAY: none"> ! <input id="chkWord" tabIndex="4" type="checkbox"><label for="chkWord" fckLang="DlgReplaceWordChk">Match whole word</label> </div> --- 138,155 ---- </td> <td width="100%"> ! <input id="txtFind" style="WIDTH: 100%" tabIndex="1" type="text"> </td> <td> ! <input id="btnFind" style="WIDTH: 100%; PADDING-RIGHT: 5px; PADDING-LEFT: 5px" onclick="Ok();" ! type="button" value="Find" fckLang="DlgFindFindBtn"> </td> </tr> <tr> <td valign="bottom" colSpan="3"> ! <input id="chkCase" tabIndex="3" type="checkbox"><label for="chkCase" fckLang="DlgReplaceCaseChk">Match case</label> <br> <div id="divWord" style="DISPLAY: none"> ! <input id="chkWord" tabIndex="4" type="checkbox"><label for="chkWord" fckLang="DlgReplaceWordChk">Match whole word</label> </div> Index: fck_button.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_button.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fck_button.html 1 Sep 2005 18:15:41 -0000 1.1 --- fck_button.html 29 Sep 2005 19:49:17 -0000 1.2 *************** *** 1,6 **** <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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,6 ---- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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 **** * Button dialog window. * - * Version: 2.0 RC3 - * Modified: 2005-02-09 20:14:46 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> --- 13,19 ---- * Button dialog window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> Index: fck_listprop.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_listprop.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fck_listprop.html 1 Sep 2005 18:15:41 -0000 1.1 --- fck_listprop.html 29 Sep 2005 19:49:17 -0000 1.2 *************** *** 1,6 **** <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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,6 ---- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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 **** * Bulleted List dialog window. * - * Version: 2.0 RC3 - * Modified: 2005-02-16 20:29:05 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> --- 13,19 ---- * Bulleted List dialog window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> Index: fck_about.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_about.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fck_about.html 1 Sep 2005 18:15:41 -0000 1.4 --- fck_about.html 29 Sep 2005 19:49:17 -0000 1.5 *************** *** 1,6 **** <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <!-- * 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,6 ---- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <!-- * 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 **** * "About" dialog window. * - * Version: 2.0 RC3 - * Modified: 2005-03-02 10:56:09 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> --- 13,19 ---- * "About" dialog window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> *************** *** 72,76 **** <span fckLang="DlgAboutVersion">version</span> <br> ! <b>2.0 RC3</b></td> </tr> </table> --- 69,73 ---- <span fckLang="DlgAboutVersion">version</span> <br> ! <b>2.0</b></td> </tr> </table> *************** *** 100,104 **** </table> </div> ! <div id="divInfo" style="DISPLAY: none"> <table align="center" width="80%" border="0"> <tr> --- 97,101 ---- </table> </div> ! <div id="divInfo" style="DISPLAY: none" dir="ltr"> <table align="center" width="80%" border="0"> <tr> Index: fck_image.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_image.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fck_image.html 1 Sep 2005 18:15:41 -0000 1.4 --- fck_image.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 **** * Image Properties dialog window. * - * Version: 2.0 RC3 - * Modified: 2005-02-18 23:54:52 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> --- 12,18 ---- * Image Properties dialog window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> *************** *** 39,45 **** </td> <td id="tdBrowse" style="DISPLAY: none" nowrap rowspan="2"> ! ! <input id="btnBrowse" onclick="BrowseServer();" type="button" ! value="Browse Server" fckLang="DlgBtnBrowseServer" NAME="btnBrowse"> </td> </tr> --- 36,40 ---- </td> <td id="tdBrowse" style="DISPLAY: none" nowrap rowspan="2"> ! <input id="btnBrowse" onclick="BrowseServer();" type="button" value="Browse Server" fckLang="DlgBtnBrowseServer"> </td> </tr> *************** *** 54,59 **** <tr> <td> ! <span fckLang="DlgImgAlt">Short Description</span><br> ! <input id="txtAlt" style="WIDTH: 100%" type="text"><br> </td> </tr> --- 49,54 ---- <tr> <td> ! <span fckLang="DlgImgAlt">Short Description</span><br /> ! <input id="txtAlt" style="WIDTH: 100%" type="text"><br /> </td> </tr> *************** *** 63,67 **** <tr> <td valign="top"> ! <br> <table cellspacing="0" cellpadding="0" border="0"> <tr> --- 58,62 ---- <tr> <td valign="top"> ! <br /> <table cellspacing="0" cellpadding="0" border="0"> <tr> *************** *** 70,77 **** <input type="text" size="3" id="txtWidth" onkeyup="OnSizeChanged('Width',this.value);"></td> <td nowrap rowspan="2"> ! <div id="btnLockSizes" class="BtnLocked" onmouseover="this.className = (bLockRatio ? 'BtnLocked' : 'BtnUnlocked' ) + ' BtnOver';" onmouseout="this.className = (bLockRatio ? 'BtnLocked' : 'BtnUnlocked' );" ! title="Lock Sizes" onclick="SwitchLock(this);"></div> ! <div id="btnResetSize" class="BtnReset" onmouseover="this.className='BtnReset BtnOver';" onmouseout="this.className='BtnReset';" ! title="Reset Size" onclick="ResetSizes();"></div> </td> </tr> --- 65,73 ---- <input type="text" size="3" id="txtWidth" onkeyup="OnSizeChanged('Width',this.value);"></td> <td nowrap rowspan="2"> ! <div id="btnLockSizes" class="BtnLocked" onmouseover="this.className = (bLockRatio ? 'BtnLocked' : 'BtnUnlocked' ) + ' BtnOver';" ! onmouseout="this.className = (bLockRatio ? 'BtnLocked' : 'BtnUnlocked' );" title="Lock Sizes" ! onclick="SwitchLock(this);"></div> ! <div id="btnResetSize" class="BtnReset" onmouseover="this.className='BtnReset BtnOver';" ! onmouseout="this.className='BtnReset';" title="Reset Size" onclick="ResetSizes();"></div> </td> </tr> *************** *** 82,86 **** </tr> </table> ! <br> <table cellspacing="0" cellpadding="0" border="0"> <tr> --- 78,82 ---- </tr> </table> ! <br /> <table cellspacing="0" cellpadding="0" border="0"> <tr> *************** *** 126,144 **** <td valign="top"> <div class="ImagePreviewArea"> ! <img id="imgPreview" style="DISPLAY: none">Magnus es, domine, et laudabilis ! valde: magna virtus tua, et sapientiae tuae non est numerus. et laudare te vult ! homo, aliqua portio creaturae tuae, et homo circumferens mortalitem suam, ! circumferens testimonium peccati sui et testimonium, quia superbis resistis: et ! tamen laudare te vult homo, aliqua portio creaturae tuae.tu excitas, ut laudare ! te delectet, quia fecisti nos ad te et inquietum est cor nostrum, donec ! requiescat in te. da mihi, domine, scire et intellegere, utrum sit prius ! invocare te an laudare te, et scire te prius sit an invocare te. sed quis te ! invocat nesciens te? aliud enim pro alio potest invocare nesciens. an potius ! invocaris, ut sciaris? quomodo autem invocabunt, in quem non crediderunt? aut ! quomodo credent sine praedicante? et laudabunt dominum qui requirunt eum. ! quaerentes enim inveniunt eum et invenientes laudabunt eum. quaeram te, domine, ! invocans te, et invocem te credens in te: praedicatus enim es nobis. invocat ! te, domine, fides mea, quam dedisti mihi, quam inspirasti mihi per humanitatem ! filii tui, per ministerium praedicatoris tui. </div> </td> --- 122,141 ---- <td valign="top"> <div class="ImagePreviewArea"> ! <a id="lnkPreview" onclick="return false;" style="CURSOR: default"><img id="imgPreview" style="DISPLAY: none"></a>Magnus ! es, domine, et laudabilis valde: magna virtus tua, et sapientiae tuae non est ! numerus. et laudare te vult homo, aliqua portio creaturae tuae, et homo ! circumferens mortalitem suam, circumferens testimonium peccati sui et ! testimonium, quia superbis resistis: et tamen laudare te vult homo, aliqua ! portio creaturae tuae.tu excitas, ut laudare te delectet, quia fecisti nos ad ! te et inquietum est cor nostrum, donec requiescat in te. da mihi, domine, scire ! et intellegere, utrum sit prius invocare te an laudare te, et scire te prius ! sit an invocare te. sed quis te invocat nesciens te? aliud enim pro alio potest ! invocare nesciens. an potius invocaris, ut sciaris? quomodo autem invocabunt, ! in quem non crediderunt? aut quomodo credent sine praedicante? et laudabunt ! dominum qui requirunt eum. quaerentes enim inveniunt eum et invenientes ! laudabunt eum. quaeram te, domine, invocans te, et invocem te credens in te: ! praedicatus enim es nobis. invocat te, domine, fides mea, quam dedisti mihi, ! quam inspirasti mihi per humanitatem filii tui, per ministerium praedicatoris ! tui. </div> </td> *************** *** 152,160 **** </table> </div> <div id="divAdvanced" style="DISPLAY: none"> <table cellspacing="0" cellpadding="0" width="100%" align="center" border="0"> <tr> <td valign="top" width="50%"> ! <span fckLang="DlgGenId">Id</span><br> <input id="txtAttId" style="WIDTH: 100%" type="text"> </td> --- 149,191 ---- </table> </div> + <div id="divUpload" style="DISPLAY: none"> + <form id="frmUpload" method="post" target="UploadWindow" enctype="multipart/form-data" action="" onsubmit="return CheckUpload();"> + <span fckLang="DlgLnkUpload">Upload</span><br /> + <input id="txtUploadFile" style="WIDTH: 100%" type="file" size="40" name="NewFile" /><br /> + <br /> + <input id="btnUpload" type="submit" value="Send it to the Server" fckLang="DlgLnkBtnUpload" /> + <iframe name="UploadWindow" style="DISPLAY: none"></iframe> + </form> + </div> + <div id="divLink" style="DISPLAY: none"> + <table cellspacing="1" cellpadding="1" border="0" width="100%"> + <tr> + <td> + <div> + <span fckLang="DlgLnkURL">URL</span><br /> + <input id="txtLnkUrl" style="WIDTH: 100%" type="text" onblur="UpdatePreview();" /> + </div> + <div id="divLnkBrowseServer" align="right"> + <input type="button" value="Browse Server" fckLang="DlgBtnBrowseServer" onclick="LnkBrowseServer();" /> + </div> + <div> + <span fckLang="DlgLnkTarget">Target</span><br /> + <select id="cmbLnkTarget"> + <option value="" fckLang="DlgGenNotSet" selected="selected"><not set></option> + <option value="_blank" fckLang="DlgLnkTargetBlank">New Window (_blank)</option> + <option value="_top" fckLang="DlgLnkTargetTop">Topmost Window (_top)</option> + <option value="_self" fckLang="DlgLnkTargetSelf">Same Window (_self)</option> + <option value="_parent" fckLang="DlgLnkTargetParent">Parent Window (_parent)</option> + </select> + </div> + </td> + </tr> + </table> + </div> <div id="divAdvanced" style="DISPLAY: none"> <table cellspacing="0" cellpadding="0" width="100%" align="center" border="0"> <tr> <td valign="top" width="50%"> ! <span fckLang="DlgGenId">Id</span><br /> <input id="txtAttId" style="WIDTH: 100%" type="text"> </td> *************** *** 164,168 **** <tr> <td width="60%"> ! <span fckLang="DlgGenLangDir">Language Direction</span><br> <select id="cmbAttLangDir" style="WIDTH: 100%"> <option value="" fckLang="DlgGenNotSet" selected><not set></option> --- 195,199 ---- <tr> <td width="60%"> ! <span fckLang="DlgGenLangDir">Language Direction</span><br /> <select id="cmbAttLangDir" style="WIDTH: 100%"> <option value="" fckLang="DlgGenNotSet" selected><not set></option> *************** *** 173,177 **** <td width="1%"> </td> <td nowrap> ! <span fckLang="DlgGenLangCode">Language Code</span><br> <input id="txtAttLangCode" style="WIDTH: 100%" type="text"> </td> --- 204,208 ---- <td width="1%"> </td> <td nowrap> ! <span fckLang="DlgGenLangCode">Language Code</span><br /> <input id="txtAttLangCode" style="WIDTH: 100%" type="text"> </td> *************** *** 185,189 **** <tr> <td colspan="3"> ! <span fckLang="DlgGenLongDescr">Long Description URL</span><br> <input id="txtLongDesc" style="WIDTH: 100%" type="text"> </td> --- 216,220 ---- <tr> <td colspan="3"> ! <span fckLang="DlgGenLongDescr">Long Description URL</span><br /> <input id="txtLongDesc" style="WIDTH: 100%" type="text"> </td> *************** *** 194,207 **** <tr> <td valign="top"> ! <span fckLang="DlgGenClass">Stylesheet Classes</span><br> <input id="txtAttClasses" style="WIDTH: 100%" type="text"> </td> <td></td> ! <td valign="top"> <span fckLang="DlgGenTitle">Advisory Title</span><br> <input id="txtAttTitle" style="WIDTH: 100%" type="text"> </td> </tr> </table> ! <span fckLang="DlgGenStyle">Style</span><br> <input id="txtAttStyle" style="WIDTH: 100%" type="text"> </div> --- 225,238 ---- <tr> <td valign="top"> ! <span fckLang="DlgGenClass">Stylesheet Classes</span><br /> <input id="txtAttClasses" style="WIDTH: 100%" type="text"> </td> <td></td> ! <td valign="top"> <span fckLang="DlgGenTitle">Advisory Title</span><br /> <input id="txtAttTitle" style="WIDTH: 100%" type="text"> </td> </tr> </table> ! <span fckLang="DlgGenStyle">Style</span><br /> <input id="txtAttStyle" style="WIDTH: 100%" type="text"> </div> Index: fck_smiley.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_smiley.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fck_smiley.html 1 Sep 2005 18:15:41 -0000 1.4 --- fck_smiley.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 **** * Smileys (emoticons) dialog window. * - * Version: 2.0 RC3 - * Modified: 2005-02-08 13:23:07 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <html> --- 12,18 ---- * Smileys (emoticons) dialog window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <html> *************** *** 40,44 **** { var oImg = oEditor.FCK.CreateElement( 'IMG' ) ; ! oImg.src = url ; window.parent.Cancel() ; --- 37,41 ---- { var oImg = oEditor.FCK.CreateElement( 'IMG' ) ; ! oImg.src = url ; window.parent.Cancel() ; Index: fck_docprops.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_docprops.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fck_docprops.html 1 Sep 2005 18:15:41 -0000 1.1 --- fck_docprops.html 29 Sep 2005 19:49:17 -0000 1.2 *************** *** 1,6 **** <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <!-- * 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,6 ---- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <!-- * 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 **** * Link dialog window. * - * Version: 2.0 RC3 - * Modified: 2005-02-19 00:11:20 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> --- 13,19 ---- * Link dialog window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> *************** *** 27,33 **** <script language="javascript"> ! var oEditor = window.parent.InnerDialogLoaded() ; ! var FCK = oEditor.FCK ; ! var FCKLang = oEditor.FCKLang ; //#### Dialog Tabs --- 24,31 ---- <script language="javascript"> ! var oEditor = window.parent.InnerDialogLoaded() ; ! var FCK = oEditor.FCK ; ! var FCKLang = oEditor.FCKLang ; ! var FCKConfig = oEditor.FCKConfig ; //#### Dialog Tabs *************** *** 371,374 **** --- 369,392 ---- } + function BrowseServerBack() + { + var iLeft = (screen.width - FCKConfig.ImageBrowserWindowWidth) / 2 ; + var iTop = (screen.height - FCKConfig.ImageBrowserWindowHeight) / 2 ; + + var sOptions = "toolbar=no,status=no,resizable=yes,dependent=yes" ; + sOptions += ",width=" + FCKConfig.LinkBrowserWindowWidth ; + sOptions += ",height=" + FCKConfig.LinkBrowserWindowHeight ; + sOptions += ",left=" + iLeft ; + sOptions += ",top=" + iTop ; + + var oWindow = window.open( FCKConfig.ImageBrowserURL, "FCKBrowseWindow", sOptions ) ; + } + + function SetUrl( url ) + { + GetE('txtBackImage').value = url ; + UpdatePreview() ; + } + </script> </head> *************** *** 470,474 **** <tr> <td width="100%"><input id="txtBackImage" style="WIDTH: 100%" type="text" onchange="UpdatePreview();" onkeyup="UpdatePreview();"></td> ! <td nowrap> <input id="btnBrowse" onclick="BrowseServer();" type="button" fckLang="DlgBtnBrowseServer" value="Browse Server" fckLang="DlgBtnBrowseServer"></td> </tr> </table> --- 488,492 ---- <tr> <td width="100%"><input id="txtBackImage" style="WIDTH: 100%" type="text" onchange="UpdatePreview();" onkeyup="UpdatePreview();"></td> ! <td nowrap> <input id="btnBrowse" onclick="BrowseServerBack();" type="button" fckLang="DlgBtnBrowseServer" value="Browse Server" fckLang="DlgBtnBrowseServer"></td> </tr> </table> Index: fck_tablecell.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_tablecell.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fck_tablecell.html 1 Sep 2005 18:15:41 -0000 1.4 --- fck_tablecell.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 **** * Cell properties dialog window. * - * Version: 2.0 RC3 - * Modified: 2005-02-09 13:48:22 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <html> --- 12,18 ---- * Cell properties dialog window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <html> Index: fck_universalkey.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_universalkey.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fck_universalkey.html 1 Sep 2005 18:15:41 -0000 1.1 --- fck_universalkey.html 29 Sep 2005 19:49:17 -0000 1.2 *************** *** 1,6 **** <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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,6 ---- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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,25 **** * Unicode Keyboard dialog window. * - * Version: 2.0 RC3 - * Modified: 2005-02-10 18:13:36 - * * File Authors: ! * Abdul-Aziz Al-Oraij (to...@ho...) ! * Michel Staelens ! * Bernadette Cierzniak ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> --- 13,22 ---- * Unicode Keyboard dialog window. * * File Authors: ! * Abdul-Aziz Al-Oraij (to...@ho...) ! * Michel Staelens ! * Bernadette Cierzniak ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> Index: fck_replace.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_replace.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fck_replace.html 1 Sep 2005 18:15:41 -0000 1.4 --- fck_replace.html 29 Sep 2005 19:49:17 -0000 1.5 *************** *** 1,6 **** <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <!-- * 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,6 ---- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <!-- * 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,23 **** * "Replace" dialog box window. * - * Version: 2.0 RC3 - * Modified: 2004-11-30 10:26:37 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! * Abdul-Aziz A. Al-Oraij (aziz.oraij.com) ! --> <html> <head> --- 13,20 ---- * "Replace" dialog box window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! * Abdul-Aziz A. Al-Oraij (aziz.oraij.com) ! --> <html> <head> *************** *** 34,37 **** --- 31,36 ---- window.parent.SetAutoSize( true ) ; + + oEditor.FCKUndo.SaveUndoStep() ; } Index: fck_colorselector.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_colorselector.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fck_colorselector.html 1 Sep 2005 18:15:41 -0000 1.4 --- fck_colorselector.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 **** * Color Selection dialog window. * - * Version: 2.0 RC3 - * Modified: 2004-12-19 23:16:57 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <html> --- 12,18 ---- * Color Selection dialog window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <html> Index: fck_textfield.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_textfield.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fck_textfield.html 1 Sep 2005 18:15:41 -0000 1.1 --- fck_textfield.html 29 Sep 2005 19:49:17 -0000 1.2 *************** *** 1,6 **** <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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,6 ---- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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 **** * Text field dialog window. * - * Version: 2.0 RC3 - * Modified: 2005-02-16 20:13:50 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> --- 13,19 ---- * Text field dialog window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> Index: fck_spellerpages.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_spellerpages.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fck_spellerpages.html 1 Sep 2005 18:15:41 -0000 1.1 --- fck_spellerpages.html 29 Sep 2005 19:49:17 -0000 1.2 *************** *** 1,6 **** <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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,6 ---- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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 **** * Spell Check dialog window. * - * Version: 2.0 RC3 - * Modified: 2005-02-19 14:45:46 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> --- 13,19 ---- * Spell Check dialog window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> *************** *** 33,39 **** { document.getElementById('txtHtml').value = oEditor.FCK.GetHTML() ; ! ! var oSpeller = new spellChecker( document.getElementById('txtHtml') ) ; ! oSpeller.OnFinished = oSpeller_OnFinished ; oSpeller.openChecker() ; } --- 30,36 ---- { document.getElementById('txtHtml').value = oEditor.FCK.GetHTML() ; ! ! var oSpeller = new spellChecker( document.getElementById('txtHtml') ) ; ! oSpeller.OnFinished = oSpeller_OnFinished ; oSpeller.openChecker() ; } Index: fck_checkbox.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_checkbox.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fck_checkbox.html 1 Sep 2005 18:15:41 -0000 1.1 --- fck_checkbox.html 29 Sep 2005 19:49:17 -0000 1.2 *************** *** 1,6 **** <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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,6 ---- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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 **** * Checkbox dialog window. * - * Version: 2.0 RC3 - * Modified: 2005-02-16 20:12:02 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> --- 13,19 ---- * Checkbox dialog window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> *************** *** 42,46 **** { GetE('txtName').value = oActiveEl.name ; ! GetE('txtValue').value = GetAttribute( oActiveEl, 'value' ) ; GetE('txtSelected').checked = oActiveEl.checked ; } --- 39,43 ---- { GetE('txtName').value = oActiveEl.name ; ! GetE('txtValue').value = oActiveEl.value ; GetE('txtSelected').checked = oActiveEl.checked ; } Index: fck_specialchar.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_specialchar.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fck_specialchar.html 1 Sep 2005 18:15:41 -0000 1.4 --- fck_specialchar.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,24 **** * Special Chars Selector dialog window. * - * Version: 2.0 RC3 - * Modified: 2005-02-25 22:01:23 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <html> <head> <style type="text/css"> .HandIE { cursor: hand ; } --- 12,23 ---- * Special Chars Selector dialog window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <html> <head> + <meta name="robots" content="noindex, nofollow"> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <style type="text/css"> .HandIE { cursor: hand ; } Index: fck_form.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_form.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fck_form.html 1 Sep 2005 18:15:41 -0000 1.1 --- fck_form.html 29 Sep 2005 19:49:17 -0000 1.2 *************** *** 1,6 **** <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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,6 ---- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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 **** * Checkbox dialog window. * - * Version: 2.0 RC3 - * Modified: 2005-02-09 18:27:10 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> --- 13,19 ---- * Checkbox dialog window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> Index: fck_select.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_select.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fck_select.html 1 Sep 2005 18:15:41 -0000 1.1 --- fck_select.html 29 Sep 2005 19:49:17 -0000 1.2 *************** *** 1,6 **** <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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,6 ---- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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 **** * Select dialog window. * - * Version: 2.0 RC3 - * Modified: 2005-02-09 13:44:26 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> --- 13,19 ---- * Select dialog window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> Index: fck_textarea.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_textarea.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fck_textarea.html 1 Sep 2005 18:15:41 -0000 1.1 --- fck_textarea.html 29 Sep 2005 19:49:17 -0000 1.2 *************** *** 1,6 **** <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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,6 ---- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <!-- * 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 **** * Text Area dialog window. * - * Version: 2.0 RC3 - * Modified: 2005-02-19 00:16:07 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> --- 13,19 ---- * Text Area dialog window. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! --> <html> <head> --- NEW FILE: fck_flash.html --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!-- * FCKeditor - The text editor for internet * Copyright (C) 2003-2005 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: * http://www.opensource.org/licenses/lgpl-license.php * * For further information visit: * http://www.fckeditor.net/ * * File Name: fck_flash.html * Flash Properties dialog window. * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <html> <head> <title>Flash Properties</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta content="noindex, nofollow" name="robots"> <script src="common/fck_dialog_common.js" type="text/javascript"></script> <script src="fck_flash/fck_flash.js" type="text/javascript"></script> <link href="common/fck_dialog_common.css" type="text/css" rel="stylesheet"> </head> <body scroll="no" style="OVERFLOW: hidden"> <div id="divInfo"> <table cellSpacing="1" cellPadding="1" width="100%" border="0"> <tr> <td> <table cellSpacing="0" cellPadding="0" width="100%" border="0"> <tr> <td width="100%"><span fckLang="DlgImgURL">URL</span> </td> <td id="tdBrowse" style="DISPLAY: none" noWrap rowSpan="2"> <input id="btnBrowse" onclick="BrowseServer();" type="button" value="Browse Server" fckLang="DlgBtnBrowseServer"> </td> </tr> <tr> <td vAlign="top"><input id="txtUrl" onblur="UpdatePreview();" style="WIDTH: 100%" type="text"> </td> </tr> </table> </td> </tr> <TR> <TD> <table cellSpacing="0" cellPadding="0" border="0"> <TR> <TD nowrap> <span fckLang="DlgImgWidth">Width</span><br> <input id="txtWidth" class="FCK__FieldNumeric" type="text" size="3"> </TD> <TD> </TD> <TD> <span fckLang="DlgImgHeight">Height</span><br> <input id="txtHeight" class="FCK__FieldNumeric" type="text" size="3"> </TD> </TR> </table> </TD> </TR> <tr> <td vAlign="top"> <table cellSpacing="0" cellPadding="0" width="100%" border="0"> <tr> <td valign="top" width="100%"> <table cellSpacing="0" cellPadding="0" width="100%"> <tr> <td><span fckLang="DlgImgPreview">Preview</span></td> </tr> <tr> <td id="ePreviewCell" valign="top" class="FlashPreviewArea"> </td> </tr> </table> </td> </tr> </table> </td> </tr> </table> </div> <div id="divUpload" style="DISPLAY: none"> <form id="frmUpload" method="post" target="UploadWindow" enctype="multipart/form-data" action="" onsubmit="return CheckUpload();"> <span fckLang="DlgLnkUpload">Upload</span><br /> <input id="txtUploadFile" style="WIDTH: 100%" type="file" size="40" name="NewFile" /><br /> <br /> <input id="btnUpload" type="submit" value="Send it to the Server" fckLang="DlgLnkBtnUpload" /> <iframe name="UploadWindow" style="DISPLAY: none"></iframe> </form> </div> <div id="divAdvanced" style="DISPLAY: none"> <TABLE cellSpacing="0" cellPadding="0" border="0"> <TR> <TD nowrap> <span fckLang="DlgFlashScale">Scale</span><BR> <select id="cmbScale"> <option value="" selected></option> <option value="showall" fckLang="DlgFlashScaleAll">Show all</option> <option value="noborder" fckLang="DlgFlashScaleNoBorder">No Border</option> <option value="exactfit" fckLang="DlgFlashScaleFit">Exact Fit</option> </select></TD> <TD> </TD> <td valign="bottom"> <table> <tr> <td><input id="chkAutoPlay" type="checkbox" checked></td> <td><label for="chkAutoPlay" nowrap fckLang="DlgFlashChkPlay">Auto Play</label> </td> <td><input id="chkLoop" type="checkbox" checked></td> <td><label for="chkLoop" nowrap fckLang="DlgFlashChkLoop">Loop</label> </td> <td><input id="chkMenu" type="checkbox" checked></td> <td><label for="chkMenu" nowrap fckLang="DlgFlashChkMenu">Enable Flash Menu</label></td> </tr> </table> </td> </TR> </TABLE> <br> <table cellSpacing="0" cellPadding="0" width="100%" align="center" border="0"> <tr> <td vAlign="top" width="50%"><span fckLang="DlgGenId">Id</span><br> <input id="txtAttId" style="WIDTH: 100%" type="text"> </td> <td> </td> <td vAlign="top" nowrap><span fckLang="DlgGenClass">Stylesheet Classes</span><br> <input id="txtAttClasses" style="WIDTH: 100%" type="text"> </td> <td> </td> <td vAlign="top" nowrap width="50%"> <span fckLang="DlgGenTitle">Advisory Title</span><br> <input id="txtAttTitle" style="WIDTH: 100%" type="text"> </td> </tr> </table> <span fckLang="DlgGenStyle">Style</span><br> <input id="txtAttStyle" style="WIDTH: 100%" type="text"> </div> </body> </html> --- NEW FILE: fck_source.html --- <!-- * FCKeditor - The text editor for internet * Copyright (C) 2003-2005 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: * http://www.opensource.org/licenses/lgpl-license.php * * For further information visit: * http://www.fckeditor.net/ * * File Name: fck_source.html * Source editor dialog window. * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <html> <head> <title>Source</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="common/fck_dialog_common.css" rel="stylesheet" type="text/css" /> <script language="javascript"> var oEditor = window.parent.InnerDialogLoaded() ; var FCK = oEditor.FCK ; var FCKConfig = oEditor.FCKConfig ; window.onload = function() { document.getElementById('txtSource').value = ( FCKConfig.EnableXHTML && FCKConfig.EnableSourceXHTML ? FCK.GetXHTML( FCKConfig.FormatSource ) : FCK.GetHTML( FCKConfig.FormatSource ) ) ; // Activate the "OK" button. window.parent.SetOkButton( true ) ; } //#### The OK button was hit. function Ok() { if ( oEditor.FCKBrowserInfo.IsIE ) oEditor.FCKUndo.SaveUndoStep() ; FCK.SetHTML( document.getElementById('txtSource').value, false ) ; return true ; } </script> </head> <body scroll="no" style="OVERFLOW: hidden"> ... [truncated message content] |