You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(34) |
Sep
(302) |
Oct
(13) |
Nov
(35) |
Dec
(15) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(56) |
Feb
(12) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Thyamad c. <th...@us...> - 2005-09-29 19:49:54
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/plugins/placeholder/lang In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/plugins/placeholder/lang Added Files: fr.js 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 --- NEW FILE: fr.js --- (This appears to be a binary file; contents omitted.) |
From: Thyamad c. <th...@us...> - 2005-09-29 19:49:54
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/skins/office2003/toolbar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/skins/office2003/toolbar Added Files: templates.gif 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 --- NEW FILE: templates.gif --- (This appears to be a binary file; contents omitted.) |
From: Thyamad c. <th...@us...> - 2005-09-29 19:49:53
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/plugins/tablecommands In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/plugins/tablecommands Modified Files: fckplugin.js 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: fckplugin.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/plugins/tablecommands/fckplugin.js,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fckplugin.js 1 Sep 2005 19:05:04 -0000 1.1 --- fckplugin.js 29 Sep 2005 19:49:21 -0000 1.2 *************** *** 1,4 **** ! // This plugin register the required Toolbar items to be able to insert the ! // toolbar commands in the toolbar. FCKToolbarItems.RegisterItem( 'TableInsertRow' , new FCKToolbarButton( 'TableInsertRow' , FCKLang.InsertRow ) ) ; FCKToolbarItems.RegisterItem( 'TableDeleteRows' , new FCKToolbarButton( 'TableDeleteRows' , FCKLang.DeleteRows ) ) ; --- 1,20 ---- ! /* ! * 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: fckplugin.js ! * This plugin register the required Toolbar items to be able to insert the ! * toolbar commands in the toolbar. ! * ! * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! */ ! FCKToolbarItems.RegisterItem( 'TableInsertRow' , new FCKToolbarButton( 'TableInsertRow' , FCKLang.InsertRow ) ) ; FCKToolbarItems.RegisterItem( 'TableDeleteRows' , new FCKToolbarButton( 'TableDeleteRows' , FCKLang.DeleteRows ) ) ; |
From: Thyamad c. <th...@us...> - 2005-09-29 19:49:53
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/plugins/placeholder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/plugins/placeholder Modified Files: fck_placeholder.html fckplugin.js 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: fckplugin.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/plugins/placeholder/fckplugin.js,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fckplugin.js 1 Sep 2005 19:05:04 -0000 1.1 --- fckplugin.js 29 Sep 2005 19:49:21 -0000 1.2 *************** *** 1,3 **** ! // Register the related command. FCKCommands.RegisterCommand( 'Placeholder', new FCKDialogCommand( 'Placeholder', FCKLang.PlaceholderDlgTitle, FCKPlugins.Items['placeholder'].Path + 'fck_placeholder.html', 340, 170 ) ) ; --- 1,20 ---- ! /* ! * 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: fckplugin.js ! * Plugin to insert "Placeholders" in the editor. ! * ! * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! */ ! ! // Register the related command. FCKCommands.RegisterCommand( 'Placeholder', new FCKDialogCommand( 'Placeholder', FCKLang.PlaceholderDlgTitle, FCKPlugins.Items['placeholder'].Path + 'fck_placeholder.html', 340, 170 ) ) ; *************** *** 20,32 **** FCKPlaceholders.SetupSpan = function( span, name ) { ! span.innerHTML = '[[ ' + name + ' ]]' ; ! ! span.style.backgroundColor = '#ffff00' ; ! span.style.color = '#000000' ; ! if ( FCKBrowserInfo.IsGecko ) ! span.style.cursor = 'default' ; ! ! span._fckplaceholder = name ; span.contentEditable = false ; --- 37,49 ---- FCKPlaceholders.SetupSpan = function( span, name ) { ! span.innerHTML = '[[ ' + name + ' ]]' ; ! ! span.style.backgroundColor = '#ffff00' ; ! span.style.color = '#000000' ; ! if ( FCKBrowserInfo.IsGecko ) ! span.style.cursor = 'default' ; ! ! span._fckplaceholder = name ; span.contentEditable = false ; *************** *** 45,49 **** { if ( e.target.tagName == 'SPAN' && e.target._fckplaceholder ) ! FCKSelection.SelectElement( e.target ) ; } --- 62,66 ---- { if ( e.target.tagName == 'SPAN' && e.target._fckplaceholder ) ! FCKSelection.SelectNode( e.target ) ; } Index: fck_placeholder.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/plugins/placeholder/fck_placeholder.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fck_placeholder.html 1 Sep 2005 19:05:04 -0000 1.1 --- fck_placeholder.html 29 Sep 2005 19:49:21 -0000 1.2 *************** *** 1,3 **** --- 1,19 ---- <!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_placeholder.html + * Placeholder Plugin. + * + * File Authors: + * Frederico Caldeira Knabben (fr...@fc...) + --> <html> <head> |
From: Thyamad c. <th...@us...> - 2005-09-29 19:49:53
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/skins/default/toolbar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/skins/default/toolbar Added Files: flash.gif templates.gif 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 --- NEW FILE: flash.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: templates.gif --- (This appears to be a binary file; contents omitted.) |
From: Thyamad c. <th...@us...> - 2005-09-29 19:49:53
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_template/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/dialog/fck_template/images Added Files: template1.gif template2.gif template3.gif 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 --- NEW FILE: template3.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: template2.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: template1.gif --- (This appears to be a binary file; contents omitted.) |
From: Thyamad c. <th...@us...> - 2005-09-29 19:49:53
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/skins/office2003 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/skins/office2003 Modified Files: fck_contextmenu.css fck_dialog.css fck_editor.css 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_editor.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/skins/office2003/fck_editor.css,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fck_editor.css 1 Sep 2005 18:15:46 -0000 1.4 --- fck_editor.css 29 Sep 2005 19:49:22 -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,22 **** * Styles used by the editor IFRAME and Toolbar. * - * Version: 2.0 RC3 - * Modified: 2005-02-09 18:08:04 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! * Aziz Oraij (az...@or...) ! */ /* --- 12,19 ---- * Styles used by the editor IFRAME and Toolbar. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! * Aziz Oraij (az...@or...) ! */ /* *************** *** 111,114 **** --- 108,112 ---- filter: alpha(opacity=70); -moz-opacity: 0.70; + background-color: #f7f8fd; } *************** *** 133,151 **** } - .TB_ButtonType_Icon .TB_Text - { - display: none; - } - - .TB_ButtonType_Text .TB_Icon - { - display: none; - } - - .TB_ButtonType_Text .TB_Text - { - padding-left: 5px; - } - .TB_Break { --- 131,134 ---- Index: fck_dialog.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/skins/office2003/fck_dialog.css,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fck_dialog.css 1 Sep 2005 18:15:46 -0000 1.4 --- fck_dialog.css 29 Sep 2005 19:49:22 -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 **** * Styles used by the dialog boxes. * - * Version: 2.0 RC3 - * Modified: 2005-02-09 13:45:44 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! */ body --- 12,18 ---- * Styles used by the dialog boxes. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! */ body *************** *** 120,122 **** --- 117,127 ---- border-bottom: #f7f8fd 1px solid; background-color: #f7f8fd; + } + + .PopupSelectionBox + { + border: #1e90ff 1px solid; + background-color: #add8e6; + cursor: pointer; + cursor: hand; } \ No newline at end of file Index: fck_contextmenu.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/skins/office2003/fck_contextmenu.css,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fck_contextmenu.css 1 Sep 2005 18:15:46 -0000 1.4 --- fck_contextmenu.css 29 Sep 2005 19:49:22 -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 **** * Styles used by the context menu. * - * Version: 2.0 RC3 - * Modified: 2005-02-23 18:58:21 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! */ .CM_ContextMenu, .CM_ContextMenu * --- 12,18 ---- * Styles used by the context menu. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! */ .CM_ContextMenu, .CM_ContextMenu * *************** *** 55,58 **** --- 52,60 ---- } + .CM_Disabled + { + background-color: #ffffff; + } + .CM_Disabled .CM_Icon IMG, .CM_Disabled .CM_Label { *************** *** 207,210 **** --- 209,213 ---- -moz-opacity:0.75; height: 23px; + background-color: #f7f8fd; } |
From: Thyamad c. <th...@us...> - 2005-09-29 19:49:53
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/filemanager/upload In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/filemanager/upload Added Files: test.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 --- NEW FILE: test.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: test.html * Test page for the "File Uploaders". * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <html> <head> <title>FCKeditor - Uploaders Tests</title> <script language="javascript"> function SendFile() { var sUploaderUrl = cmbUploaderUrl.value ; if ( sUploaderUrl.length == 0 ) sUploaderUrl = txtCustomUrl.value ; if ( sUploaderUrl.length == 0 ) { alert( 'Please provide your custom URL or select a default one' ) ; return ; } eURL.innerHTML = sUploaderUrl ; txtUrl.value = '' ; frmUpload.action = sUploaderUrl ; frmUpload.submit() ; } function OnUploadCompleted( errorNumber, fileUrl, fileName, customMsg ) { switch ( errorNumber ) { case 0 : // No errors txtUrl.value = fileUrl ; alert( 'File uploaded with no errors' ) ; break ; case 1 : // Custom error alert( customMsg ) ; break ; case 10 : // Custom warning txtUrl.value = fileUrl ; alert( customMsg ) ; break ; case 201 : txtUrl.value = fileUrl ; alert( 'A file with the same name is already available. The uploaded file has been renamed to "' + fileName + '"' ) ; break ; case 202 : alert( 'Invalid file' ) ; break ; case 203 : alert( "Security error. You probably don't have enough permissions to upload. Please check your server." ) ; break ; default : alert( 'Error on file upload. Error number: ' + errorNumber ) ; break ; } } </script> </head> <body> <table cellSpacing="0" cellPadding="0" width="100%" border="0" height="100%"> <tr> <td> <table cellSpacing="0" cellPadding="0" width="100%" border="0"> <tr> <td nowrap> Select the "File Uploader" to use:<br> <select id="cmbUploaderUrl" name="Select1"> <option selected value="asp/upload.asp">ASP</option> <option value="php/upload.php">PHP</option> <option value="">(Custom)</option> </select> </td> <td nowrap> </td> <td width="100%"> Custom Uploader URL:<BR> <input id="txtCustomUrl" style="WIDTH: 100%; BACKGROUND-COLOR: #dcdcdc" disabled type="text"> </td> </tr> </table> <br> <table cellSpacing="0" cellPadding="0" width="100%" border="0"> <tr> <td noWrap> <form id="frmUpload" target="UploadWindow" enctype="multipart/form-data" action="" method="post"> Upload a new file:<br> <input type="file" name="NewFile"><br> <input type="button" value="Send it to the Server" onclick="SendFile();"> </form> </td> <td style="WIDTH: 16px"> </td> <td vAlign="top" width="100%"> Uploaded File URL:<br> <INPUT id="txtUrl" style="WIDTH: 100%" readonly type="text"> </td> </tr> </table> <br> Post URL: <span id="eURL"> </span> </td> </tr> <tr> <td height="100%"> <iframe name="UploadWindow" width="100%" height="100%"></iframe> </td> </tr> </table> </body> </html> |
From: Thyamad c. <th...@us...> - 2005-09-29 19:49:52
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/images Added Files: 2x2.gif 2x2_w.gif ButtonArrow.gif Folder.gif Folder32.gif Folder96.jpg FolderOpened.gif FolderOpened32.gif FolderUp.gif close.gif delete.gif edit.gif editImage.gif spacer.gif 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 --- NEW FILE: spacer.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Folder32.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: FolderUp.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: edit.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: FolderOpened.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: editImage.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: 2x2.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: 2x2_w.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: FolderOpened32.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ButtonArrow.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: close.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Folder.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Folder96.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: delete.gif --- (This appears to be a binary file; contents omitted.) |
From: Thyamad c. <th...@us...> - 2005-09-29 19:49:52
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/images/toolbar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/images/toolbar Added Files: close.gif crop.gif flip.gif resize.gif rotate.gif save.gif 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 --- NEW FILE: rotate.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: crop.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: flip.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: resize.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: save.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: close.gif --- (This appears to be a binary file; contents omitted.) |
From: Thyamad c. <th...@us...> - 2005-09-29 19:49:52
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/dtd In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/dtd Added Files: iso-lat1.ent 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 --- NEW FILE: iso-lat1.ent --- <!ENTITY aacute "á"> <!ENTITY Aacute "Á"> <!ENTITY acirc "â"> <!ENTITY Acirc "Â"> <!ENTITY agrave "à"> <!ENTITY Agrave "À"> <!ENTITY aring "å"> <!ENTITY Aring "Å"> <!ENTITY atilde "ã"> <!ENTITY Atilde "Ã"> <!ENTITY auml "ä"> <!ENTITY Auml "Ä"> <!ENTITY aelig "æ"> <!ENTITY AElig "Æ"> <!ENTITY ccedil "ç"> <!ENTITY Ccedil "Ç"> <!ENTITY eth "ð"> <!ENTITY ETH "Ð"> <!ENTITY eacute "é"> <!ENTITY Eacute "É"> <!ENTITY ecirc "ê"> <!ENTITY Ecirc "Ê"> <!ENTITY egrave "è"> <!ENTITY Egrave "È"> <!ENTITY euml "ë"> <!ENTITY Euml "Ë"> <!ENTITY iacute "í"> <!ENTITY Iacute "Í"> <!ENTITY icirc "î"> <!ENTITY Icirc "Î"> <!ENTITY igrave "ì"> <!ENTITY Igrave "Ì"> <!ENTITY iuml "ï"> <!ENTITY Iuml "Ï"> <!ENTITY ntilde "ñ"> <!ENTITY Ntilde "Ñ"> <!ENTITY oacute "ó"> <!ENTITY Oacute "Ó"> <!ENTITY ocirc "ô"> <!ENTITY Ocirc "Ô"> <!ENTITY ograve "ò"> <!ENTITY Ograve "Ò"> <!ENTITY oslash "ø"> <!ENTITY Oslash "Ø"> <!ENTITY otilde "õ"> <!ENTITY Otilde "Õ"> <!ENTITY ouml "ö"> <!ENTITY Ouml "Ö"> <!ENTITY szlig "ß"> <!ENTITY thorn "þ"> <!ENTITY THORN "Þ"> <!ENTITY uacute "ú"> <!ENTITY Uacute "Ú"> <!ENTITY ucirc "û"> <!ENTITY Ucirc "Û"> <!ENTITY ugrave "ù"> <!ENTITY Ugrave "Ù"> <!ENTITY uuml "ü"> <!ENTITY Uuml "Ü"> <!ENTITY yacute "ý"> <!ENTITY Yacute "Ý"> <!ENTITY yuml "ÿ"> |
From: Thyamad c. <th...@us...> - 2005-09-29 19:49:51
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images Added Files: ascii.jpg binary.jpg document2.jpg email.jpg empty.jpg html.jpg image.jpg info.jpg kmplot.jpg kmultiple.jpg pdf.jpg php.jpg postscript.jpg real_doc.jpg sound.jpg spreadsheet.jpg tar.jpg video.jpg 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 --- NEW FILE: kmplot.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tar.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: real_doc.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: spreadsheet.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: email.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: empty.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: php.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: pdf.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: document2.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: binary.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: sound.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kmultiple.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: info.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ascii.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: postscript.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: video.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: html.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: image.jpg --- (This appears to be a binary file; contents omitted.) |
From: Thyamad c. <th...@us...> - 2005-09-29 19:49:51
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Auth In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Auth Added Files: Default.php 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 --- NEW FILE: Default.php --- <?php /* * 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: Default.php * Im not very clued up on authentication but even i can see that anyone * who can spoof an IP could perform a replay attack on this, but its * better than nothing. * There is a 1 hour time out on tokens to help this slightly. * * File Authors: * Grant French (gr...@mc...) */ class Auth { function authenticate($data,$fckphp_config) { //Hold relevant$fckphp_config vars locally $key=$fckphp_config['auth']['Handler']['SharedKey']; $fckphp_config['authSuccess']=false; //Decrypt the data passed to us $decData=""; for ($i=0;$i<strlen($data)-1;$i+=2) $decData.=chr(hexdec($data[$i].$data[$i+1])); $decArray=explode("|^SEP^|",$decData); if (sizeof($decArray)==4) { //0 = Timestamp //1 = Client IP //2 = Username //3 = MD5 if ($decArray[3]==md5($decArray[0]."|^SEP^|".$decArray[1]."|^SEP^|".$decArray[2].$key)) { if (time()-$decArray[0]<3600) { //Token valid for max of 1 hour if ($_SERVER['REMOTE_ADDR']==$decArray[1]) { //Set the file root to the users individual one $top=str_replace("//","/",$fckphp_config['basedir'].'/'.$fckphp_config['UserFilesPath']."/users"); $fckphp_config['UserFilesPath']=$fckphp_config['UserFilesPath']."/users/".$decArray[2]; $up=str_replace("//","/",$fckphp_config['basedir'].'/'.$fckphp_config['UserFilesPath']); if (!file_exists($top)) { mkdir($top,0777) or die("users folder in UserFilesPath does not exist and could not be created."); chmod($top,0777); } //Create folder if it doesnt exist if (!file_exists($up)) { mkdir($up,0777) or die("users/".$decArray[2]." folder in UserFilesPath does not exist and could not be created."); chmod($up,0777); //Just for good measure } //Create resource area subfolders if they dont exist foreach ($fckphp_config['ResourceTypes'] as $value) { if (!file_exists("$up/$value")) { mkdir("$up/$value",0777) or die("users/".$decArray[2]."/$value folder in UserFilesPath does not exist and could not be created."); chmod("$up/$value",0777); //Just for good measure } } $fckphp_config['authSuccess']=true; } else { //Not same client as auth token is for } } else { //Token more than an hour old } } else { //Data integrity failed } } else { //Not enough data (decryption failed?) } return $fckphp_config; } } ?> |
From: Thyamad c. <th...@us...> - 2005-09-29 19:49:47
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/jscalendar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/jscalendar Modified Files: calendar-tas.css 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: calendar-tas.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/jscalendar/calendar-tas.css,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** calendar-tas.css 1 Sep 2005 18:15:47 -0000 1.1 --- calendar-tas.css 29 Sep 2005 19:49:22 -0000 1.2 *************** *** 11,15 **** font-family: tahoma,verdana,sans-serif; filter: ! progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#DDDCCC,EndColorStr=#FFFFFF); } --- 11,15 ---- font-family: tahoma,verdana,sans-serif; filter: ! progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#DDDCCC,EndColorStr=#FFF); } *************** *** 33,37 **** padding: 2px; filter: ! progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#ffffff,EndColorStr=#dddccc); } --- 33,37 ---- padding: 2px; filter: ! progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#FFF,EndColorStr=#dddccc); } *************** *** 41,45 **** font-weight: bold; filter: ! progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#ffffff,EndColorStr=#3b86a0); } --- 41,45 ---- font-weight: bold; filter: ! progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#FFF,EndColorStr=#3b86a0); } *************** *** 50,54 **** color: #363636; filter: ! progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#DDDCCC,EndColorStr=#FFFFFF); } --- 50,54 ---- color: #363636; filter: ! progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#DDDCCC,EndColorStr=#FFF); } *************** *** 152,156 **** font-weight: bold; filter: ! progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#FFFFFF,EndColorStr=#DDDCCC); } .calendar tfoot .hilite { /* Hover style for buttons in footer */ --- 152,156 ---- font-weight: bold; filter: ! progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#FFF,EndColorStr=#DDDCCC); } .calendar tfoot .hilite { /* Hover style for buttons in footer */ |
From: Thyamad c. <th...@us...> - 2005-09-29 19:49:47
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/skins/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/skins/default Modified Files: fck_contextmenu.css fck_dialog.css fck_editor.css 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_editor.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/skins/default/fck_editor.css,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fck_editor.css 1 Sep 2005 18:15:45 -0000 1.4 --- fck_editor.css 29 Sep 2005 19:49:21 -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 **** * Styles used by the editor IFRAME and Toolbar. * - * Version: 2.0 RC3 - * Modified: 2005-03-01 15:49:28 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! */ /* --- 12,18 ---- * Styles used by the editor IFRAME and Toolbar. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! */ /* *************** *** 108,111 **** --- 105,109 ---- filter: alpha(opacity=70); -moz-opacity: 0.70; + background-color: #efefde; } *************** *** 116,119 **** --- 114,122 ---- } + .TB_Button_On_Over, .TB_Button_Off_Over + { + background-color: #dff1ff; + } + .TB_Icon DIV { *************** *** 135,153 **** } - .TB_ButtonType_Icon .TB_Text - { - display: none; - } - - .TB_ButtonType_Text .TB_Icon - { - display: none; - } - - .TB_ButtonType_Text .TB_Text - { - padding-left: 5px; - } - .TB_Break { --- 138,141 ---- Index: fck_dialog.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/skins/default/fck_dialog.css,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fck_dialog.css 1 Sep 2005 18:15:45 -0000 1.4 --- fck_dialog.css 29 Sep 2005 19:49:21 -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 **** * Styles used by the dialog boxes. * - * Version: 2.0 RC3 - * Modified: 2005-02-10 13:10:27 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! */ body --- 12,18 ---- * Styles used by the dialog boxes. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! */ body *************** *** 122,124 **** --- 119,129 ---- border-bottom: #f1f1e3 1px solid; background-color: #f1f1e3; + } + + .PopupSelectionBox + { + border: #ff9933 1px solid; + background-color: #fffacd; + cursor: pointer; + cursor: hand; } \ No newline at end of file Index: fck_contextmenu.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/skins/default/fck_contextmenu.css,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fck_contextmenu.css 1 Sep 2005 18:15:45 -0000 1.4 --- fck_contextmenu.css 29 Sep 2005 19:49:21 -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 **** * Styles used by the context menu and panels. * - * Version: 2.0 RC3 - * Modified: 2005-02-23 18:58:26 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! */ .CM_ContextMenu, .CM_ContextMenu * --- 12,18 ---- * Styles used by the context menu and panels. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! */ .CM_ContextMenu, .CM_ContextMenu * *************** *** 55,58 **** --- 52,60 ---- } + .CM_Disabled + { + background-color: #ffffff; + } + .CM_Disabled .CM_Icon IMG, .CM_Disabled .CM_Label { *************** *** 202,205 **** --- 204,208 ---- -moz-opacity:0.75; height: 23px; + background-color: #efefde; } |
From: Thyamad c. <th...@us...> - 2005-09-29 19:49:42
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/skins/silver In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/skins/silver Modified Files: fck_contextmenu.css fck_dialog.css fck_editor.css 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_editor.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/skins/silver/fck_editor.css,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fck_editor.css 1 Sep 2005 18:15:47 -0000 1.4 --- fck_editor.css 29 Sep 2005 19:49:22 -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,22 **** * Styles used by the editor IFRAME and Toolbar. * - * Version: 2.0 RC3 - * Modified: 2005-02-09 18:08:02 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! * gazou[Fr] ! */ /* --- 12,19 ---- * Styles used by the editor IFRAME and Toolbar. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! * gazou[Fr] ! */ /* *************** *** 150,168 **** } - .TB_ButtonType_Icon .TB_Text - { - display: none; - } - - .TB_ButtonType_Text .TB_Icon - { - display: none; - } - - .TB_ButtonType_Text .TB_Text - { - padding-left: 5px; - } - .TB_Break { --- 147,150 ---- Index: fck_dialog.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/skins/silver/fck_dialog.css,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fck_dialog.css 1 Sep 2005 18:15:47 -0000 1.4 --- fck_dialog.css 29 Sep 2005 19:49:22 -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 **** * Styles used by the dialog boxes. * - * Version: 2.0 RC3 - * Modified: 2005-02-09 13:45:31 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! */ body --- 12,18 ---- * Styles used by the dialog boxes. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! */ body *************** *** 123,125 **** --- 120,130 ---- border-bottom: #f1f1e3 1px solid; background-color: #f7f7f7; + } + + .PopupSelectionBox + { + border: #a9a9a9 1px solid; + background-color: #dcdcdc; + cursor: pointer; + cursor: hand; } \ No newline at end of file Index: fck_contextmenu.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/skins/silver/fck_contextmenu.css,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fck_contextmenu.css 1 Sep 2005 18:15:47 -0000 1.4 --- fck_contextmenu.css 29 Sep 2005 19:49:22 -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 **** * Styles used by the context menu. * - * Version: 2.0 RC3 - * Modified: 2005-02-23 18:58:19 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! */ .CM_ContextMenu, .CM_ContextMenu * --- 12,18 ---- * Styles used by the context menu. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! */ .CM_ContextMenu, .CM_ContextMenu * *************** *** 55,58 **** --- 52,60 ---- } + .CM_Disabled + { + background-color: #ffffff; + } + .CM_Disabled .CM_Icon IMG, .CM_Disabled .CM_Label { *************** *** 204,207 **** --- 206,210 ---- -moz-opacity:0.75; height: 23px; + background-color: #f7f7f7; } |
From: Thyamad c. <th...@us...> - 2005-09-29 19:49:42
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/skins/silver/toolbar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/skins/silver/toolbar Added Files: flash.gif templates.gif 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 --- NEW FILE: flash.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: templates.gif --- (This appears to be a binary file; contents omitted.) |
From: Thyamad c. <th...@us...> - 2005-09-29 19:49:39
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/css/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/css/images Added Files: fck_anchor.gif fck_flashlogo.gif 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 --- NEW FILE: fck_flashlogo.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: fck_anchor.gif --- (This appears to be a binary file; contents omitted.) |
From: Thyamad c. <th...@us...> - 2005-09-29 19:49:39
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/_samples/afp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/_samples/afp Added Files: fck.afpa fck.afpa.code sample01.afp sampleposteddata.afp 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 --- NEW FILE: fck.afpa.code --- DEFINE CLASS fckeditor AS custom cInstanceName ="" BasePath ="" cWIDTH ="" cHEIGHT ="" ToolbarSet ="" cValue="" DIMENSION aConfig(10,2) && ----------------------------------------------------------------------- FUNCTION fckeditor( tcInstanceName ) LOCAL lnLoop,lnLoop2 THIS.cInstanceName = tcInstanceName THIS.BasePath = '../../../FCKeditor/' THIS.cWIDTH = '100%' THIS.cHEIGHT = '200' THIS.ToolbarSet = 'Default' THIS.cValue = '' FOR lnLoop=1 TO 10 FOR lnLoop2=1 TO 2 THIS.aConfig(lnLoop,lnLoop2) = "" NEXT NEXT RETURN ENDFUNC && ----------------------------------------------------------------------- FUNCTION CREATE() RETURN(THIS.CreateHtml()) ENDFUNC && ----------------------------------------------------------------------- FUNCTION CreateHtml() LOCAL html LOCAL lcLink HtmlValue = THIS.cValue && HTMLSPECIALCHARS() html = [<div>] IF THIS.IsCompatible() lcLink = THIS.BasePath+[editor/fckeditor.html?InstanceName=]+THIS.cInstanceName IF ( THIS.ToolbarSet # '' ) lcLink = lcLink + [Toolbar=]+THIS.ToolbarSet ENDIF && Render the LINKED HIDDEN FIELD. html = html + [<input type="hidden" id="]+THIS.cInstanceName +[" name="]+THIS.cInstanceName +[" value="]+HtmlValue+[">] && Render the configurations HIDDEN FIELD. html = html + [<input type="hidden" id="]+THIS.cInstanceName +[___Config" value="]+THIS.GetConfigFieldString() + [">] +CHR(13)+CHR(10) && Render the EDITOR IFRAME. html = html + [<iframe id="]+THIS.cInstanceName +[___Frame" src="]+lcLink+[" width="]+THIS.cWIDTH+[" height="]+THIS.cHEIGHT+[" frameborder="no" scrolling="no"></iframe>] ELSE IF ( AT("%", THIS.cWIDTH)=0 ) WidthCSS = THIS.cWIDTH + 'px' ELSE WidthCSS = THIS.cWIDTH ENDIF IF ( AT("%",THIS.cHEIGHT)=0 ) HeightCSS = THIS.cHEIGHT + 'px' ELSE HeightCSS = THIS.cHEIGHT ENDIF html = html + [<textarea name="]+THIS.cInstanceName +[" rows="4" cols="40" style="width: ]+WidthCSS+[ height: ]+HeightCSS+[" wrap="virtual">]+HtmlValue+[</textarea>] ENDIF html = html + [</div>] RETURN (html) ENDFUNC && ----------------------------------------------------------------------- FUNCTION IsCompatible() LOCAL llRetval LOCAL sAgent llRetval=.F. sAgent= LOWER(Request.ServerVariables("HTTP_USER_AGENT")) IF AT("msie",sAgent) >0 .AND. AT("mac",sAgent)=0 .AND. AT("opera",sAgent)=0 iVersion=VAL(SUBSTR(sAgent,AT("msie",sAgent)+5,3)) llRetval= iVersion > 5.5 ELSE IF AT("gecko",sAgent)>0 iVersion=VAL(SUBSTR(sAgent,AT("gecko/",sAgent)+6,8)) llRetval =iVersion > 20030210 ENDIF ENDIF RETURN (llRetval) ENDFUNC && ----------------------------------------------------------------------- FUNCTION GetConfigFieldString() LOCAL sParams LOCAL bFirst LOCAL sKey sParams = "" bFirst = .T. FOR lnLoop=1 TO 10 && ALEN(this.aconfig) IF !EMPTY(THIS.aConfig(lnLoop,1)) IF bFirst = .F. sParams = sParams + "&" ELSE bFirst = .F. ENDIF sParams = sParams +THIS.aConfig(lnLoop,1)+[=]+THIS.aConfig(lnLoop,2) ELSE EXIT ENDIF NEXT RETURN(sParams) ENDFUNC ENDDEFINE --- NEW FILE: fck.afpa --- <application ID="fck"/> --- NEW FILE: sample01.afp --- <% * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 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: sampleposteddata.php * This page lists the data posted by a form. * * Version: 1.0 * Modified: 2005-07-01 * * File Authors: Soenke Freitag (www.afp-hosting.de) * %> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="../sample.css" rel="stylesheet" type="text/css" /> </head> <body> <h1>FCKeditor - AFP - Sample 1</h1> This sample displays a normal HTML form with an FCKeditor with full features enabled. <hr> <form action="sampleposteddata.afp" method="post" target="_blank"> <% sBasePath="../../fckeditor/" && Change this to your local path lcText=[This is some <strong>sample text</strong>. You are using ] lcText=lcText+[<a href='http://www.fckeditor.net/'>FCKeditor</a>.] oFCKeditor = CREATEOBJECT("FCKeditor") oFCKeditor.fckeditor("FCKeditor1") oFCKeditor.BasePath = sBasePath oFCKeditor.cValue = lcText ? oFCKeditor.Create() %> <br> <input type="submit" value="Submit"> </form> </body> </html> --- NEW FILE: sampleposteddata.afp --- <% * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 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: sampleposteddata.php * This page lists the data posted by a form. * * Version: 1.0 * Modified: 2005-07-01 * * File Authors: Soenke Freitag (www.afp-hosting.de) * %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>FCKeditor - Samples - Posted Data</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="../sample.css" rel="stylesheet" type="text/css" /> </head> <body> <h1>FCKeditor - Samples - Posted Data</h1> This page lists all data posted by the form. <hr> <table width="100%" border="1" cellspacing="0" bordercolor="#999999"> <tr style="FONT-WEIGHT: bold; COLOR: #dddddd; BACKGROUND-COLOR: #999999"> <td nowrap>Field Name </td> <td>Value</td> </tr> <% lcForm=REQUEST.Form() lcForm=STRTRAN(lcForm,"&",CHR(13)+CHR(10)) FOR lnLoop=1 TO MEMLINES(lcForm) lcZeile=ALLTRIM(MLINE(lcForm,lnLoop)) IF AT("=",lcZeile)>0 lcVariable=UPPER(ALLTRIM(LEFT(lcZeile,AT("=",lcZeile)-1))) lcWert=ALLTRIM(RIGHT(lcZeile,LEN(lcZeile)-AT("=",lcZeile))) lcWert=Server.UrlDecode( lcWert ) ? [<tr><td>]+lcVariable+[ =</td><td>]+lcWert+[</td></tr>] ENDIF NEXT %> </table> </body> </html> |
From: Thyamad c. <th...@us...> - 2005-09-29 19:49:39
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_flash In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/dialog/fck_flash Added Files: fck_flash.js 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 --- NEW FILE: fck_flash.js --- (This appears to be a binary file; contents omitted.) |
From: Thyamad c. <th...@us...> - 2005-09-29 19:46:25
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands/helpers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32155/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands/helpers Log Message: Directory /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands/helpers added to the repository |
From: Thyamad c. <th...@us...> - 2005-09-29 19:44:28
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31756/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands Log Message: Directory /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Commands added to the repository |
From: Thyamad c. <th...@us...> - 2005-09-29 19:41:46
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31110/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images Log Message: Directory /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/images added to the repository |
From: Thyamad c. <th...@us...> - 2005-09-29 19:40:41
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30951/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Docs Log Message: Directory /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Docs added to the repository |
From: Thyamad c. <th...@us...> - 2005-09-29 19:40:31
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Auth In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30809/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Auth Log Message: Directory /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/filemanager/browser/mcpuk/connectors/php/Auth added to the repository |