Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/dialog
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6803/phpslash-dev/public_html/scripts/fckeditor/editor/dialog
Modified Files:
fck_about.html fck_image.html fck_link.html fck_smiley.html
fck_specialchar.html fck_table.html
Log Message:
complete fckeditor addition
Index: fck_about.html
===================================================================
RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/dialog/fck_about.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** fck_about.html 28 Oct 2004 20:17:43 -0000 1.1
--- fck_about.html 30 Oct 2004 13:53:13 -0000 1.2
***************
*** 12,16 ****
* About dialog window.
*
! * Version: 2.0 Beta 1
* Modified: 2004-05-31 23:07:51
*
--- 12,16 ----
* About dialog window.
*
! * Version: 2.0 Beta 2
* Modified: 2004-05-31 23:07:51
*
***************
*** 64,68 ****
<span fckLang="DlgAboutVersion">version</span>
<br>
! <b>2.0 Beta 1</b></td>
</tr>
</table>
--- 64,68 ----
<span fckLang="DlgAboutVersion">version</span>
<br>
! <b>2.0 Beta 2</b></td>
</tr>
</table>
Index: fck_image.html
===================================================================
RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/dialog/fck_image.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** fck_image.html 28 Oct 2004 20:17:43 -0000 1.1
--- fck_image.html 30 Oct 2004 13:53:13 -0000 1.2
***************
*** 10,453 ****
*
* File Name: fck_image.html
! * Image dialog window.
*
! * Version: 2.0 Beta 1
! * Modified: 2004-05-31 23:07:51
*
* File Authors:
* Frederico Caldeira Knabben (fr...@fc...)
! -->
! <html>
! <head>
! <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
! <script type="text/javascript">
! var dialogArguments = window.parent.InnerDialogLoaded() ;
! var FCK = dialogArguments.FCK ;
!
! // Sets the Skin CSS
! document.write( '<link href="' + dialogArguments.FCKConfig.SkinPath + 'fck_dialog.css" type="text/css" rel="stylesheet">' ) ;
!
! var FCKConfig = dialogArguments.FCKConfig ;
!
! // Get browsing configuration
! var bCanBrowse = FCKConfig.ImageBrowser ;
! var sBrowseURL = FCKConfig.ImageBrowserURL ;
! var iBrowseWindowWidth = FCKConfig.ImageBrowserWindowWidth ;
! var iBrowseWindowHeight = FCKConfig.ImageBrowserWindowHeight ;
!
! // Get upload configuration
! var bCanUpload = FCKConfig.ImageUpload && dialogArguments.BrowserInfo.IsIE55OrMore ;
! var sUploadURL = FCKConfig.ImageUploadURL ;
! var iUploadWindowWidth = FCKConfig.ImageUploadWindowWidth ;
! var iUploadWindowHeight = FCKConfig.ImageUploadWindowHeight ;
! var sUploadAllowedExtensions = FCKConfig.ImageUploadAllowedExtensions ;
!
! // Gets the document DOM
! var oDOM = dialogArguments.FCK.EditorDocument ;
!
! // Gets the image if there is one selected.
! var image ;
! var e = FCK.Selection.GetSelectedElement( 'A' ) ;
! if ( e && e.tagName == 'IMG' )
! image = e ;
!
! // this var is used to update the existing image
! var imageSource = image ;
!
! // Gets a copy of the image (for image size purposes)
! var imageOriginal ;
! if (image != null)
! {
! imageOriginal = new Image() ;
! imageOriginal.src = image.src ;
! }
! else
! imageOriginal = null ;
!
! // Get the IMG tag.
! function getImageHtml()
! {
! return '<IMG'
! + attr("src", document.getElementById('txtURL').value)
! + attr("alt", document.getElementById('txtAlt').value)
! + attr("align", document.getElementById('cmbAlign')[document.getElementById('cmbAlign').selectedIndex].value)
! + ((txtWidth.value) ? attr("width" , document.getElementById('txtWidth').value) : "")
! + ((txtHeight.value) ? attr("height", document.getElementById('txtHeight').value) : "")
! + ((txtVSpace.value) ? attr("vspace", document.getElementById('txtVSpace').value) : "")
! + ((txtHSpace.value) ? attr("hspace", document.getElementById('txtHSpace').value) : "")
! + ((txtBorder.value) ? attr("border", document.getElementById('txtBorder').value) : attr("border",0))
! + '/>' ;
! }
!
! // Returns a formatted image attribute. Used by getImageHtml().
! function attr(name, value)
! {
! if (!value || value == "") return "" ;
! return ' ' + name + '="' + value + '"' ;
! }
!
! // Update any image (the selected or preview one)
! function updateImage(imgTarget)
! {
! if ( document.getElementById('txtURL').value.length == 0 )
! imgTarget.style.display = "none" ;
! else
! {
! imgTarget.style.removeAttribute("display") ;
! imgTarget.style.removeAttribute("height") ;
! imgTarget.style.removeAttribute("width") ;
!
! imgTarget.src = document.getElementById('txtURL').value ;
! setAttribute(imgTarget, "alt" , document.getElementById('txtAlt').value) ;
! setAttribute(imgTarget, "width" , document.getElementById('txtWidth').value) ;
! setAttribute(imgTarget, "height", document.getElementById('txtHeight').value) ;
! setAttribute(imgTarget, "vspace", document.getElementById('txtVSpace').value) ;
! setAttribute(imgTarget, "hspace", document.getElementById('txtHSpace').value) ;
! setAttribute(imgTarget, "border", document.getElementById('txtBorder').value) ;
! setAttribute(imgTarget, "align" , document.getElementById('cmbAlign').options[ document.getElementById('cmbAlign').selectedIndex ].value) ;
! }
! }
!
! function setAttribute(element, attribute, value)
! {
! if (value == null || value == "")
! element.removeAttribute(attribute, 0) ; // 0 = case insensitive
! else
! element.setAttribute(attribute, value, 0) ; // 0 = overwrite
! }
!
! // Fired when any field change to update the preview image.
! function updatePreview()
! {
! updateImage(imgPreview) ;
! }
!
! // Fired when the user press the OK button
! function Ok()
! {
! if ( document.getElementById('txtURL').value.length == 0 )
! {
! cancel() ;
! return ;
! }
!
! if ( imageSource == null )
! window.returnValue = getImageHtml() ;
! else
! {
! updateImage( imageSource ) ;
! window.returnValue = null ;
! }
! window.close() ;
! }
!
! // Fired when the user load the window. It sets the fields with the
! // actual values if an image is selected in the editor.
! function setDefaults()
! {
! // First of all, translate the dialog box texts
! dialogArguments.FCKLanguageManager.TranslatePage(document) ;
!
! window.parent.AddTab( 'Info', 'Image Info' ) ;
! window.parent.AddTab( 'Upload', 'Upload' ) ;
!
! if (image == null) return ;
!
! if (image.getAttribute("src",2) != null) document.getElementById('txtURL').value = image.getAttribute("src",2) ;
! if (image.getAttribute("alt",2) != null) document.getElementById('txtAlt').value = image.getAttribute("alt",2) ;
! if (image.getAttribute("vspace",2) != null) document.getElementById('txtVSpace').value = image.getAttribute("vspace",2) > 0 ? image.getAttribute("vspace",2) : "" ;
! if (image.getAttribute("hspace",2) != null) document.getElementById('txtHSpace').value = image.getAttribute("hspace",2) > 0 ? image.getAttribute("hspace",2) : "" ;
! if (image.getAttribute("border",2) != null) document.getElementById('txtBorder').value = image.getAttribute("border",2) ;
!
! if ( image.style.getAttribute("pixelWidth") > 0 )
! document.getElementById('txtWidth').value = image.style.getAttribute("pixelWidth") ;
! else if (image.getAttribute("width",2) != null)
! document.getElementById('txtWidth').value = image.getAttribute("width",2) ;
!
! if ( image.style.getAttribute("pixelHeight") > 0 )
! document.getElementById('txtHeight').value = image.style.getAttribute("pixelHeight") ;
! else if (image.getAttribute("height",2) != null)
! document.getElementById('txtHeight').value = image.getAttribute("height",2) ;
!
! if (image.getAttribute("align") != null)
! document.getElementById('cmbAlign').value = image.getAttribute("align") ;
!
! updatePreview() ;
! }
!
! // Fired when the width or height input texts change
! function sizeChanged(axe)
! {
! // Verifies if the aspect ration has to be mantained
! if (imageOriginal && document.getElementById('chkLockRatio').checked)
! {
! if ((axe) == "Width")
! {
! if ( document.getElementById('txtWidth').value != "")
! {
! if (! isNaN(txtWidth.value))
! document.getElementById('txtHeight').value = Math.round( imageOriginal.height * ( txtWidth.value / imageOriginal.width ) ) ;
! }
! else
! document.getElementById('txtHeight').value = "" ;
! }
! else
! if (txtHeight.value != "")
! {
! if (! isNaN(txtHeight.value))
! document.getElementById('txtWidth').value = Math.round( imageOriginal.width * ( document.getElementById('txtHeight').value / imageOriginal.height ) ) ;
! }
! else
! document.getElementById('txtWidth').value = "" ;
! }
!
! updatePreview() ;
! }
!
! // Fired when the Lock Ratio checkbox is clicked
! function onLockRationClick()
! {
! sizeChanged("Width") ;
! }
!
! // Fired when the Reset Size button is clicked
! function resetSize()
! {
! if (! imageOriginal) return ;
!
! document.getElementById('txtWidth').value = imageOriginal.width ;
! document.getElementById('txtHeight').value = imageOriginal.height ;
! updatePreview() ;
! }
!
! // Fired when the user click in the "Sent it to the Server" button.
! function uploadFile()
! {
! var sFile = frmUpload.FCKeditor_File.value ;
!
! if (sFile == "")
! {
! alert( dialogArguments.FCKLang["DlgImgAlertSelect"] ) ;
! return ;
! }
!
! var sExt = sFile.match( /\.[^\.]*$/ ) ;
! sExt = sExt ? sExt[0].toLowerCase() : "." ;
!
! if ( sUploadAllowedExtensions.indexOf( sExt ) < 0 )
! {
! alert( dialogArguments.FCKLang["DlgImgMsgWrongExt"] ) ;
! return ;
! }
!
! var oWindow = openNewWindow("", "UploadWindow", iUploadWindowWidth, iUploadWindowHeight) ;
! frmUpload.submit() ;
! oWindow.setImage = setImage ;
! }
!
! function browserServer()
! {
! var oWindow = openNewWindow(sBrowseURL, "BrowseWindow", iBrowseWindowWidth, iBrowseWindowHeight) ;
! oWindow.setImage = setImage ;
! }
!
! function openNewWindow(sURL, sName, iWidth, iHeight, bResizable, bScrollbars)
! {
! var iTop = (screen.height - iHeight) / 2 ;
! var iLeft = (screen.width - iWidth) / 2 ;
!
! var sOptions = "toolbar=no" ;
! sOptions += ",width=" + iWidth ;
! sOptions += ",height=" + iHeight ;
! sOptions += ",resizable=" + (bResizable ? "yes" : "no") ;
! sOptions += ",scrollbars=" + (bScrollbars ? "yes" : "no") ;
! sOptions += ",left=" + iLeft ;
! sOptions += ",top=" + iTop ;
!
! var oWindow = window.open(sURL, sName, sOptions)
! oWindow.focus();
!
! return oWindow ;
! }
!
! function setImage(sImageURL)
! {
! if (image != null)
! {
! image = new Image() ;
! image.src = sImageURL ;
! }
!
! imageOriginal = new Image() ;
! imageOriginal.onload = resetSize ;
! imageOriginal.src = sImageURL ;
!
! document.getElementById('txtURL').value = sImageURL ;
! updatePreview() ;
! }
! </script>
! <style type="text/css">
! .ImagePreviewArea
! {
! border-right: #000000 1px solid;
! padding-right: 5px;
! border-top: #000000 1px solid;
! padding-left: 5px;
! padding-bottom: 5px;
! overflow: auto;
! border-left: #000000 1px solid;
! width: 100%;
! padding-top: 5px;
! border-bottom: #000000 1px solid;
! height: 150px;
! background-color: #ffffff;
! }
! </style>
! </head>
! <body bottommargin="5" leftmargin="5" topmargin="5" rightmargin="5" onload="setDefaults()" scroll="no">
! <table cellspacing="1" cellpadding="1" border="0" width="100%" class="dlg" height="100%">
! <tr>
! <td>
! <table cellspacing="0" cellpadding="0" width="100%" border="0">
! <tr>
! <td valign="top" colspan="2">
! <span fckLang="DlgImgURL">URL</span><br>
! <input style="WIDTH: 100%" type="text" id="txtURL" onblur="updatePreview();">
! </td>
! </tr>
! <tr>
! <td>
! <table cellspacing="0" cellpadding="0" width="100%" border="0" style="DISPLAY: none" id="tableUpload">
! <tr>
! <form id="frmUpload" enctype="multipart/form-data" method="post" target="UploadWindow">
! <td><span fckLang="DlgImgUpload">Upload</span><br>
! <input style="WIDTH: 100%" type="file" name="FCKeditor_File" id="FCKeditor_File">
! </td>
! </tr>
! <tr>
! <td align="right">
! <input id="btnUpload" type="button" fckLang="DlgImgBtnUpload" value="Send it to the Server"
! onclick="uploadFile();">
! </td>
! </form>
! </tr>
! </table>
! </td>
! <td valign="middle" width="100">
! <input type="button" style="DISPLAY: none; WIDTH: 100%" fckLang="DlgImgBtnBrowse" value="Browse Server"
! onclick="browserServer();" id="btnBrowse">
! </td>
! </tr>
! </table>
! <hr width="100%" color="#000000" size="2">
! </td>
! </tr>
! <tr>
! <td><span fckLang="DlgImgAlt">Alternative Text</span><BR>
! <input style="WIDTH: 100%" type="text" id="txtAlt" onkeyup="updatePreview();">
! </td>
! </tr>
! <tr height="100%">
! <td>
! <table cellspacing="0" cellpadding="0" width="100%" border="0" height="100%">
! <tr>
! <td valign="top">
! <br>
! <table cellspacing="0" cellpadding="0" border="0">
! <tr>
! <td><span fckLang="DlgImgWidth">Width</span> </td>
! <td>
! <input type="text" size="3" id="txtWidth" onkeyup="sizeChanged('Width');"></td>
! </tr>
! <tr>
! <td><span fckLang="DlgImgHeight">Height</span> </td>
! <td>
! <input type="text" size="3" id="txtHeight" onkeyup="sizeChanged('Height');"></td>
! </tr>
! </table>
! <input type="checkbox" class="CheckBox" checked id="chkLockRatio" onclick="onLockRationClick();">
! <span fckLang="DlgImgLockRatio">Lock Ratio</span>
! <br>
! <input type="button" fckLang="DlgBtnResetSize" value="Reset Size" onclick="resetSize();"><br>
! <br>
! <table cellspacing="0" cellpadding="0" border="0">
! <tr>
! <td><span fckLang="DlgImgBorder">Border</span> </td>
! <td>
! <input type="text" size="2" value="0" id="txtBorder" onkeyup="updatePreview();"></td>
! </tr>
! <tr>
! <td><span fckLang="DlgImgHSpace">HSpace</span> </td>
! <td>
! <input type="text" size="2" id="txtHSpace" onkeyup="updatePreview();"></td>
! </tr>
! <tr>
! <td><span fckLang="DlgImgVSpace">VSpace</span> </td>
! <td>
! <input type="text" size="2" id="txtVSpace" onkeyup="updatePreview();"></td>
! </tr>
! <tr>
! <td><span fckLang="DlgImgAlign">Align</span> </td>
! <td><select id="cmbAlign" onchange="updatePreview();">
! <option value="" selected></option>
! <option fckLang="DlgImgAlignLeft" value="left">Left</option>
! <option fckLang="DlgImgAlignAbsBottom" value="absBottom">Abs Bottom</option>
! <option fckLang="DlgImgAlignAbsMiddle" value="absMiddle">Abs Middle</option>
! <option fckLang="DlgImgAlignBaseline" value="baseline">Baseline</option>
! <option fckLang="DlgImgAlignBottom" value="bottom">Bottom</option>
! <option fckLang="DlgImgAlignMiddle" value="middle">Middle</option>
! <option fckLang="DlgImgAlignRight" value="right">Right</option>
! <option fckLang="DlgImgAlignTextTop" value="textTop">Text Top</option>
! <option fckLang="DlgImgAlignTop" value="top">Top</option>
! </select></td>
! </tr>
! </table>
! </td>
! <td> </td>
! <td width="100%">
! <table cellpadding="0" cellspacing="0">
! <tr>
! <td><span fckLang="DlgImgPreview">Preview</span></td>
! </tr>
! <tr>
! <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>
! </tr>
! </table>
! </td>
! </tr>
! </table>
! </td>
! </tr>
! </table>
! <script type="text/javascript">
! <!--
! if (bCanUpload)
! {
! tableUpload.style.display = "block" ;
! frmUpload.action = sUploadURL ;
! }
!
! if (bCanBrowse)
! btnBrowse.style.display = "block" ;
! //-->
! </script>
! </body>
! </html>
--- 10,204 ----
*
* File Name: fck_image.html
! * Image Properties dialog window.
*
! * Version: 2.0 Beta 2
! * Modified: 2004-06-19 00:24:56
*
* File Authors:
* Frederico Caldeira Knabben (fr...@fc...)
! -->
! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
! <html>
! <head>
! <title>Image Properties</title>
! <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
! <meta name="robots" content="noindex, nofollow">
! <script src="js/fck_dialog_common.js" type="text/javascript"></script>
! <script src="js/fck_image.js" type="text/javascript"></script>
! <link href="css/common.css" rel="stylesheet" type="text/css" />
! </head>
! <body scroll="no">
! <div id="divInfo">
! <table cellspacing="1" cellpadding="1" border="0" width="100%" height="100%">
! <tr>
! <td>
! <table cellspacing="0" cellpadding="0" width="100%" border="0">
! <tr>
! <td valign="top" width="100%">
! <span fckLang="DlgImgURL">URL</span><br>
! <input id="txtURL" style="WIDTH: 100%" type="text" onblur="UpdatePreview();">
! </td>
! <td id="tdBrowse" style="DISPLAY: none" nowrap>
!
! <input id="btnBrowse" onclick="BrowseServer();" type="button"
! value="Browse Server" fckLang="DlgImgBtnBrowse">
! </td>
! </tr>
! </table>
! </td>
! </tr>
! <tr>
! <td>
! <span fckLang="DlgImgAlt">Short Description</span><br>
! <input id="txtAlt" style="WIDTH: 100%" type="text"><br>
! </td>
! </tr>
! <tr height="100%">
! <td valign="top">
! <table cellspacing="0" cellpadding="0" width="100%" border="0" height="100%">
! <tr>
! <td valign="top">
! <br>
! <table cellspacing="0" cellpadding="0" border="0">
! <tr>
! <td><span fckLang="DlgImgWidth">Width</span> </td>
! <td>
! <input type="text" size="3" id="txtWidth" onkeyup="OnSizeChanged('Width',this.value);"></td>
! <td rowspan="2">
! <div class="BtnLocked" onmouseover="this.className = (bLockRatio ? 'BtnLocked' : 'BtnUnlocked' ) + ' BtnOver';" onmouseout="this.className = (bLockRatio ? 'BtnLocked' : 'BtnUnlocked' );"
! title="Lock Sizes" onclick="SwitchLock(this);"></div>
! <div class="BtnReset" onmouseover="this.className='BtnReset BtnOver';" onmouseout="this.className='BtnReset';"
! title="Reset Size" onclick="ResetSizes();"></div>
! </td>
! </tr>
! <tr>
! <td><span fckLang="DlgImgHeight">Height</span> </td>
! <td>
! <input type="text" size="3" id="txtHeight" onkeyup="OnSizeChanged('Height',this.value);"></td>
! </tr>
! </table>
! <br>
! <table cellspacing="0" cellpadding="0" border="0">
! <tr>
! <td><span fckLang="DlgImgBorder">Border</span> </td>
! <td>
! <input type="text" size="2" value="" id="txtBorder" onkeyup="UpdatePreview();"></td>
! </tr>
! <tr>
! <td><span fckLang="DlgImgHSpace">HSpace</span> </td>
! <td>
! <input type="text" size="2" id="txtHSpace" onkeyup="UpdatePreview();"></td>
! </tr>
! <tr>
! <td><span fckLang="DlgImgVSpace">VSpace</span> </td>
! <td>
! <input type="text" size="2" id="txtVSpace" onkeyup="UpdatePreview();"></td>
! </tr>
! <tr>
! <td><span fckLang="DlgImgAlign">Align</span> </td>
! <td><select id="cmbAlign" onchange="UpdatePreview();">
! <option value="" selected></option>
! <option fckLang="DlgImgAlignLeft" value="left">Left</option>
! <option fckLang="DlgImgAlignAbsBottom" value="absBottom">Abs Bottom</option>
! <option fckLang="DlgImgAlignAbsMiddle" value="absMiddle">Abs Middle</option>
! <option fckLang="DlgImgAlignBaseline" value="baseline">Baseline</option>
! <option fckLang="DlgImgAlignBottom" value="bottom">Bottom</option>
! <option fckLang="DlgImgAlignMiddle" value="middle">Middle</option>
! <option fckLang="DlgImgAlignRight" value="right">Right</option>
! <option fckLang="DlgImgAlignTextTop" value="textTop">Text Top</option>
! <option fckLang="DlgImgAlignTop" value="top">Top</option>
! </select>
! </td>
! </tr>
! </table>
! </td>
! <td> </td>
! <td width="100%" valign="top">
! <table cellpadding="0" cellspacing="0">
! <tr>
! <td><span fckLang="DlgImgPreview">Preview</span></td>
! </tr>
! <tr>
! <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>
! </tr>
! </table>
! </td>
! </tr>
! </table>
! </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%">
! Id<br>
! <input id="txtAttId" style="WIDTH: 100%" type="text">
! </td>
! <td width="1"> </td>
! <td valign="top">
! <table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
! <tr>
! <td width="60%">
! Language Direction<br>
! <select id="cmbAttLangDir" style="WIDTH: 100%">
! <option value="" selected><not set></option>
! <option value="ltr">Left to Right (LTR)</option>
! <option value="rtl">Right to Left (RTL)</option>
! </select>
! </td>
! <td width="1%"> </td>
! <td nowrap>Language Code<BR>
! <INPUT id="txtAttLangCode" style="WIDTH: 100%" type="text">
! </td>
! </tr>
! </table>
! </td>
! </tr>
! <tr>
! <td colspan="3"> </td>
! </tr>
! <tr>
! <td colspan="3">
! Long Description URL<br>
! <input id="txtLongDesc" style="WIDTH: 100%" type="text">
! </td>
! </tr>
! <tr>
! <td colspan="3"> </td>
! </tr>
! <tr>
! <td valign="top">
! Stylesheet Classes<br>
! <input id="txtAttClasses" style="WIDTH: 100%" type="text">
! </td>
! <td></td>
! <td valign="top"> Advisory Title<BR>
! <INPUT id="txtAttTitle" style="WIDTH: 100%" type="text">
! </td>
! </tr>
! </table>
! Style<br>
! <input id="txtAttStyle" style="WIDTH: 100%" type="text">
! </div>
! </body>
! </html>
Index: fck_link.html
===================================================================
RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/dialog/fck_link.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** fck_link.html 28 Oct 2004 20:17:43 -0000 1.1
--- fck_link.html 30 Oct 2004 13:53:13 -0000 1.2
***************
*** 12,17 ****
* Link dialog window.
*
! * Version: 2.0 Beta 1
! * Modified: 2004-05-31 23:07:51
*
* File Authors:
--- 12,17 ----
* Link dialog window.
*
! * Version: 2.0 Beta 2
! * Modified: 2004-06-02 00:26:17
*
* File Authors:
***************
*** 27,31 ****
<script src="js/fck_link.js" type="text/javascript"></script>
</head>
! <body onload="OnLoad();" scroll="no">
<div id="divInfo" style="DISPLAY: none">Link Type<br />
<select id="cmbLinkType" onchange="SetLinkType(this.value);">
--- 27,31 ----
<script src="js/fck_link.js" type="text/javascript"></script>
</head>
! <body scroll="no">
<div id="divInfo" style="DISPLAY: none">Link Type<br />
<select id="cmbLinkType" onchange="SetLinkType(this.value);">
***************
*** 55,59 ****
--- 55,61 ----
</table>
<br />
+ <div id="divBrowseServer">
<input type="button" value="Browse Server" onclick="BrowseServer();" />
+ </div>
</div>
<div id="divLinkTypeAnchor" style="DISPLAY: none" align="center">
Index: fck_smiley.html
===================================================================
RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/dialog/fck_smiley.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** fck_smiley.html 28 Oct 2004 20:17:43 -0000 1.1
--- fck_smiley.html 30 Oct 2004 13:53:13 -0000 1.2
***************
*** 12,17 ****
* Smileys (emoticons) dialog window.
*
! * Version: 2.0 Beta 1
! * Modified: 2004-05-31 23:07:51
*
* File Authors:
--- 12,17 ----
* Smileys (emoticons) dialog window.
*
! * Version: 2.0 Beta 2
! * Modified: 2004-08-20 01:19:47
*
* File Authors:
***************
*** 34,37 ****
--- 34,43 ----
document.write( '<link href="' + dialogArguments.FCKConfig.SkinPath + 'fck_dialog.css" type="text/css" rel="stylesheet">' ) ;
+ function setDefaults()
+ {
+ // First of all, translate the dialog box texts
+ dialogArguments.FCKLanguageManager.TranslatePage(document) ;
+ }
+
function insertChar(td)
{
***************
*** 49,59 ****
td.className = 'DarkBackground HandIE HandMozilla' ;
}
-
- function setDefaults()
- {
- // First of all, translate the dialog box texts
- dialogArguments.FCKLanguageManager.TranslatePage(document) ;
- }
-
</script>
</head>
--- 55,58 ----
Index: fck_specialchar.html
===================================================================
RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/dialog/fck_specialchar.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** fck_specialchar.html 28 Oct 2004 20:17:43 -0000 1.1
--- fck_specialchar.html 30 Oct 2004 13:53:13 -0000 1.2
***************
*** 12,16 ****
* Special Chars Selector dialog window.
*
! * Version: 2.0 Beta 1
* Modified: 2004-05-31 23:07:51
*
--- 12,16 ----
* Special Chars Selector dialog window.
*
! * Version: 2.0 Beta 2
* Modified: 2004-05-31 23:07:51
*
Index: fck_table.html
===================================================================
RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/dialog/fck_table.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** fck_table.html 28 Oct 2004 20:17:43 -0000 1.1
--- fck_table.html 30 Oct 2004 13:53:13 -0000 1.2
***************
*** 12,17 ****
* Table dialog window.
*
! * Version: 2.0 Beta 1
! * Modified: 2004-05-31 23:07:51
*
* File Authors:
--- 12,17 ----
* Table dialog window.
*
! * Version: 2.0 Beta 2
! * Modified: 2004-09-03 09:52:12
*
* File Authors:
***************
*** 22,26 ****
<head>
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
- <!-- Constants -->
<script type="text/javascript">
<!--
--- 22,25 ----
|