phpslash-commit Mailing List for phpSlash (Page 15)
Brought to you by:
joestewart,
nhruby
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(11) |
Nov
(59) |
Dec
(60) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(52) |
Feb
(77) |
Mar
(118) |
Apr
(76) |
May
(106) |
Jun
(145) |
Jul
(9) |
Aug
(15) |
Sep
(78) |
Oct
(83) |
Nov
(105) |
Dec
(51) |
2003 |
Jan
(105) |
Feb
(100) |
Mar
(111) |
Apr
(149) |
May
(95) |
Jun
(56) |
Jul
(8) |
Aug
(2) |
Sep
|
Oct
(22) |
Nov
(117) |
Dec
(6) |
2004 |
Jan
(1) |
Feb
|
Mar
(3) |
Apr
(25) |
May
|
Jun
(11) |
Jul
(26) |
Aug
(85) |
Sep
(119) |
Oct
(312) |
Nov
(271) |
Dec
(5) |
2005 |
Jan
(6) |
Feb
|
Mar
|
Apr
(12) |
May
(7) |
Jun
(8) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Joe S. <joe...@us...> - 2004-10-30 13:53:55
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/dialog/js In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6803/phpslash-dev/public_html/scripts/fckeditor/editor/dialog/js Modified Files: fck_dialog_common.js fck_link.js Log Message: complete fckeditor addition Index: fck_dialog_common.js =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/dialog/js/fck_dialog_common.js,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fck_dialog_common.js 28 Oct 2004 20:17:44 -0000 1.1 --- fck_dialog_common.js 30 Oct 2004 13:53:13 -0000 1.2 *************** *** 12,17 **** * Useful functions used by almost all dialog window pages. * ! * Version: 2.0 Beta 1 ! * Modified: 2004-05-31 23:07:51 * * File Authors: --- 12,17 ---- * Useful functions used by almost all dialog window pages. * ! * Version: 2.0 Beta 2 ! * Modified: 2004-06-18 01:15:41 * * File Authors: *************** *** 39,41 **** --- 39,53 ---- element.setAttribute( attName, attValue, 0 ) ; // 0 : Case Insensitive + } + + function GetAttribute( element, attName, valueIfNull ) + { + var oAtt = element.attributes[attName] ; + + if ( oAtt == null || !oAtt.specified ) + return valueIfNull ; + + var oValue = element.getAttribute( attName, 2 ) ; + + return ( oValue == null ? valueIfNull : oValue ) ; } \ No newline at end of file Index: fck_link.js =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/dialog/js/fck_link.js,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fck_link.js 28 Oct 2004 20:17:44 -0000 1.1 --- fck_link.js 30 Oct 2004 13:53:13 -0000 1.2 *************** *** 12,17 **** * Scripts related to the Link dialog window (see fck_link.html). * ! * Version: 2.0 Beta 1 ! * Modified: 2004-05-31 23:07:51 * * File Authors: --- 12,17 ---- * Scripts related to the Link dialog window (see fck_link.html). * ! * Version: 2.0 Beta 2 ! * Modified: 2004-06-02 00:26:07 * * File Authors: *************** *** 125,129 **** FCK.Selection.MoveToNode( oLink ) ; ! function OnLoad() { // Translate the dialog box texts. --- 125,129 ---- FCK.Selection.MoveToNode( oLink ) ; ! window.onload = function() { // Translate the dialog box texts. *************** *** 139,142 **** --- 139,145 ---- SetLinkType( GetE('cmbLinkType').value ) ; + // Show/Hide the "Browse Server" button. + GetE('divBrowseServer').style.display = oEditor.FCKConfig.LinkBrowser ? '' : 'none' ; + // Show the initial dialog content. GetE('divInfo').style.display = '' ; |
From: Joe S. <joe...@us...> - 2004-10-30 13:53:55
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/_source/globals In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6803/phpslash-dev/public_html/scripts/fckeditor/editor/_source/globals Modified Files: fck_constants.js fckeditorapi.js Log Message: complete fckeditor addition Index: fck_constants.js =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/_source/globals/fck_constants.js,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fck_constants.js 28 Oct 2004 20:17:42 -0000 1.1 --- fck_constants.js 30 Oct 2004 13:53:12 -0000 1.2 *************** *** 13,17 **** * globally available in the page where the editor is placed. * ! * Version: 2.0 Beta 1 * Modified: 2004-05-31 23:07:48 * --- 13,17 ---- * globally available in the page where the editor is placed. * ! * Version: 2.0 Beta 2 * Modified: 2004-05-31 23:07:48 * Index: fckeditorapi.js =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/_source/globals/fckeditorapi.js,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fckeditorapi.js 28 Oct 2004 20:17:42 -0000 1.1 --- fckeditorapi.js 30 Oct 2004 13:53:12 -0000 1.2 *************** *** 13,17 **** * the page where the editor is placed in. * ! * Version: 2.0 Beta 1 * Modified: 2004-05-31 23:07:48 * --- 13,17 ---- * the page where the editor is placed in. * ! * Version: 2.0 Beta 2 * Modified: 2004-05-31 23:07:48 * *************** *** 29,33 **** // Set the current version. ! FCKeditorAPI.Version = '2.0 Beta 1' ; // Function used to get a instance of an existing editor present in the --- 29,33 ---- // Set the current version. ! FCKeditorAPI.Version = '2.0 Beta 2' ; // Function used to get a instance of an existing editor present in the |
From: Joe S. <joe...@us...> - 2004-10-30 13:53:55
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/_samples/cfm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6803/phpslash-dev/public_html/scripts/fckeditor/_samples/cfm Modified Files: sample01.cfm sample02_mx.cfm Log Message: complete fckeditor addition Index: sample01.cfm =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/_samples/cfm/sample01.cfm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** sample01.cfm 28 Oct 2004 20:17:41 -0000 1.1 --- sample01.cfm 30 Oct 2004 13:53:11 -0000 1.2 *************** *** 1,3 **** ! <!-- * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben --- 1,3 ---- ! <!--- * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben *************** *** 12,21 **** * Sample page. * ! * Version: 2.0 Beta 1 * Modified: 2004-05-31 23:18:38 * * File Authors: * Hendrik Kramer (hk...@lw...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> --- 12,21 ---- * Sample page. * ! * Version: 2.0 Beta 2 * Modified: 2004-05-31 23:18:38 * * File Authors: * Hendrik Kramer (hk...@lw...) ! ---> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> Index: sample02_mx.cfm =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/_samples/cfm/sample02_mx.cfm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** sample02_mx.cfm 28 Oct 2004 20:17:41 -0000 1.1 --- sample02_mx.cfm 30 Oct 2004 13:53:12 -0000 1.2 *************** *** 1,3 **** ! <!-- * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben --- 1,3 ---- ! <!--- * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben *************** *** 12,21 **** * Sample page. * ! * Version: 2.0 Beta 1 * Modified: 2004-05-31 23:18:45 * * File Authors: * Hendrik Kramer (hk...@lw...) ! --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> --- 12,21 ---- * Sample page. * ! * Version: 2.0 Beta 2 * Modified: 2004-05-31 23:18:45 * * File Authors: * Hendrik Kramer (hk...@lw...) ! ---> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> |
From: Joe S. <joe...@us...> - 2004-10-30 13:53:54
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6803/phpslash-dev/public_html/scripts/fckeditor Modified Files: fckconfig.js fckeditor.cfc fckeditor.cfm fckeditor.js Log Message: complete fckeditor addition Index: fckconfig.js =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/fckconfig.js,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fckconfig.js 28 Oct 2004 20:17:39 -0000 1.1 --- fckconfig.js 30 Oct 2004 13:53:11 -0000 1.2 *************** *** 12,17 **** * Editor configuration settings. * ! * Version: 2.0 Beta 1 ! * Modified: 2004-05-31 23:07:55 * * File Authors: --- 12,17 ---- * Editor configuration settings. * ! * Version: 2.0 Beta 2 ! * Modified: 2004-08-30 23:27:01 * * File Authors: *************** *** 27,31 **** // Set the path for the skin files to use. FCKConfig.SkinPath = FCKConfig.BasePath + 'skins/default/' ; - //FCKConfig.SkinPath = FCKConfig.BasePath + 'skins/office2003/' ; // Language settings --- 27,30 ---- *************** *** 37,40 **** --- 36,45 ---- FCKConfig.EnableSourceXHTML = true ; + // Tells Gecko browsers to use SPAN instead of <B>, <I> and <U>. + FCKConfig.GeckoUseSPAN = true ; + + // Force the editor to get the focus on startup (page load). + FCKConfig.StartupFocus = true ; + // Cut and Paste options FCKConfig.ForcePasteAsPlainText = false ; *************** *** 54,58 **** FCKConfig.ToolbarSets["Default"] = [ ['Source','-','Save','NewPage','Preview'], ! ['Cut','Copy','Paste'/*,'PasteText','PasteWord'*/,'-','Print'/*,'SpellCheck'*/], ['Undo','Redo',/*'-','Find','Replace',*/'-','SelectAll','RemoveFormat'], ['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'], --- 59,63 ---- FCKConfig.ToolbarSets["Default"] = [ ['Source','-','Save','NewPage','Preview'], ! ['Cut','Copy','Paste','PasteText','PasteWord','-','Print'/*,'SpellCheck'*/], ['Undo','Redo',/*'-','Find','Replace',*/'-','SelectAll','RemoveFormat'], ['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'], *************** *** 60,68 **** ['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'], ['Link','Unlink'/*,'Anchor'*/], ! [/*'Image',*/'Table','Rule','SpecialChar'/*,'UniversalKey'*/,'Smiley'], /*['Form','Checkbox','Radio','Input','Textarea','Select','Button','ImageButton','Hidden']*/ /*['ShowTableBorders','ShowDetails','-','Zoom'],*/ [/*'FontStyleAdv','-','FontStyle','-',*/'FontFormat','-','FontName','-','FontSize'], ! /*['TextColor','BGColor'],*/ ['About'] ] ; --- 65,73 ---- ['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'], ['Link','Unlink'/*,'Anchor'*/], ! ['Image','Table','Rule','SpecialChar'/*,'UniversalKey'*/,'Smiley'], /*['Form','Checkbox','Radio','Input','Textarea','Select','Button','ImageButton','Hidden']*/ /*['ShowTableBorders','ShowDetails','-','Zoom'],*/ [/*'FontStyleAdv','-','FontStyle','-',*/'FontFormat','-','FontName','-','FontSize'], ! ['TextColor','BGColor'], ['About'] ] ; *************** *** 71,74 **** --- 76,81 ---- ] ; + // Font Colors + FCKConfig.FontColors = '000000,993300,333300,003300,003366,000080,333399,333333,800000,FF6600,808000,808080,008080,0000FF,666699,808080,FF0000,FF9900,99CC00,339966,33CCCC,3366FF,800080,999999,FF00FF,FFCC00,FFFF00,00FF00,00FFFF,00CCFF,993366,C0C0C0,FF99CC,FFCC99,FFFF99,CCFFCC,CCFFFF,99CCFF,CC99FF,FFFFFF' ; // Font Names *************** *** 76,80 **** // Link Browsing ! FCKConfig.LinkBrowser = false ; FCKConfig.LinkBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Connector=connectors/aspx/connector.aspx" ; FCKConfig.LinkBrowserWindowWidth = screen.width * 0.7 ; // 70% --- 83,87 ---- // Link Browsing ! FCKConfig.LinkBrowser = true ; FCKConfig.LinkBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Connector=connectors/aspx/connector.aspx" ; FCKConfig.LinkBrowserWindowWidth = screen.width * 0.7 ; // 70% *************** *** 84,92 **** FCKConfig.LinkUpload = false ; FCKConfig.LinkUploadURL = FCKConfig.BasePath + "filemanager/upload/aspx/upload.aspx" ; ! FCKConfig.LinkUploadWindowWidth = 300 ; FCKConfig.LinkUploadWindowHeight = 150 ; FCKConfig.LinkUploadAllowedExtensions = "*" ; // * or empty for all FCKConfig.LinkUploadDeniedExtensions = ".exe .asp .php .aspx .js .cfm .dll" ; // empty for no one // Smiley Dialog FCKConfig.SmileyPath = FCKConfig.BasePath + "images/smiley/msn/" ; --- 91,105 ---- FCKConfig.LinkUpload = false ; FCKConfig.LinkUploadURL = FCKConfig.BasePath + "filemanager/upload/aspx/upload.aspx" ; ! FCKConfig.LinkUploadWindowWidth = 300 ; FCKConfig.LinkUploadWindowHeight = 150 ; FCKConfig.LinkUploadAllowedExtensions = "*" ; // * or empty for all FCKConfig.LinkUploadDeniedExtensions = ".exe .asp .php .aspx .js .cfm .dll" ; // empty for no one + // Image Browsing + FCKConfig.ImageBrowser = true ; + FCKConfig.ImageBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=connectors/aspx/connector.aspx" ; + FCKConfig.ImageBrowserWindowWidth = screen.width * 0.7 ; // 70% ; + FCKConfig.ImageBrowserWindowHeight = screen.height * 0.7 ; // 70% ; + // Smiley Dialog FCKConfig.SmileyPath = FCKConfig.BasePath + "images/smiley/msn/" ; Index: fckeditor.cfc =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/fckeditor.cfc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fckeditor.cfc 28 Oct 2004 20:17:39 -0000 1.1 --- fckeditor.cfc 30 Oct 2004 13:53:11 -0000 1.2 *************** *** 1,4 **** <cfcomponent output="no" displayname="FCKEditor" hint="Create an instance of the FCKEditor."> ! <!-- * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben --- 1,4 ---- <cfcomponent output="no" displayname="FCKEditor" hint="Create an instance of the FCKEditor."> ! <!--- * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben *************** *** 34,43 **** * limitation with the cfc invocation. * ! * Version: 2.0 Beta 1 * Modified: 2004-05-27 12:39:32 * * File Authors: * Hendrik Kramer (hk...@lw...) ! --> <cffunction name="create" --- 34,43 ---- * limitation with the cfc invocation. * ! * Version: 2.0 Beta 2 * Modified: 2004-05-27 12:39:32 * * File Authors: * Hendrik Kramer (hk...@lw...) ! ---> <cffunction name="create" Index: fckeditor.cfm =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/fckeditor.cfm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fckeditor.cfm 28 Oct 2004 20:17:39 -0000 1.1 --- fckeditor.cfm 30 Oct 2004 13:53:11 -0000 1.2 *************** *** 1,4 **** <cfsetting enablecfoutputonly="Yes"> ! <!-- * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben --- 1,4 ---- <cfsetting enablecfoutputonly="Yes"> ! <!--- * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben *************** *** 26,35 **** * > * ! * Version: 2.0 Beta 1 * Modified: 2004-05-27 12:24:11 * * File Authors: * Hendrik Kramer (hk...@lw...) ! --> <!--- :: * Attribute validation --- 26,35 ---- * > * ! * Version: 2.0 Beta 2 * Modified: 2004-05-27 12:24:11 * * File Authors: * Hendrik Kramer (hk...@lw...) ! ---> <!--- :: * Attribute validation Index: fckeditor.js =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/fckeditor.js,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fckeditor.js 28 Oct 2004 20:17:39 -0000 1.1 --- fckeditor.js 30 Oct 2004 13:53:11 -0000 1.2 *************** *** 16,20 **** * operations, use the specific integration system. * ! * Version: 2.0 Beta 1 * Modified: 2004-05-31 23:07:55 * --- 16,20 ---- * operations, use the specific integration system. * ! * Version: 2.0 Beta 2 * Modified: 2004-05-31 23:07:55 * |
From: Joe S. <joe...@us...> - 2004-10-30 13:53:53
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/_documentation/Using FCKeditor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6803/phpslash-dev/public_html/scripts/fckeditor/_documentation/Using FCKeditor Modified Files: Javascript.html Log Message: complete fckeditor addition |
From: Joe S. <joe...@us...> - 2004-10-30 13:53:53
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/_documentation In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6803/phpslash-dev/public_html/scripts/fckeditor/_documentation Modified Files: Performance.html fck_docs.css Log Message: complete fckeditor addition Index: Performance.html =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/_documentation/Performance.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Performance.html 28 Oct 2004 20:17:39 -0000 1.1 --- Performance.html 30 Oct 2004 13:53:11 -0000 1.2 *************** *** 9,13 **** * http://www.fckeditor.net/ * ! * Version: 2.0 Beta 1 * Modified: 2004-05-28 18:25:58 --> --- 9,13 ---- * http://www.fckeditor.net/ * ! * Version: 2.0 Beta 2 * Modified: 2004-05-28 18:25:58 --> Index: fck_docs.css =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/_documentation/fck_docs.css,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fck_docs.css 28 Oct 2004 20:17:39 -0000 1.1 --- fck_docs.css 30 Oct 2004 13:53:11 -0000 1.2 *************** *** 9,13 **** * http://www.fckeditor.net/ * ! * Version: 2.0 Beta 1 * Modified: 2004-05-28 18:27:57 */ --- 9,13 ---- * http://www.fckeditor.net/ * ! * Version: 2.0 Beta 2 * Modified: 2004-05-28 18:27:57 */ |
From: Joe S. <joe...@us...> - 2004-10-30 13:53:53
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/_documentation/Developers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6803/phpslash-dev/public_html/scripts/fckeditor/_documentation/Developers Modified Files: ServerSideIntegration.html Log Message: complete fckeditor addition Index: ServerSideIntegration.html =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/_documentation/Developers/ServerSideIntegration.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ServerSideIntegration.html 28 Oct 2004 20:17:40 -0000 1.1 --- ServerSideIntegration.html 30 Oct 2004 13:53:11 -0000 1.2 *************** *** 9,13 **** * http://www.fckeditor.net/ * ! * Version: 2.0 Beta 1 * Modified: 2004-05-31 22:33:20 --> --- 9,13 ---- * http://www.fckeditor.net/ * ! * Version: 2.0 Beta 2 * Modified: 2004-05-31 22:33:20 --> |
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/silver/toolbar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6803/phpslash-dev/public_html/scripts/fckeditor/editor/skins/silver/toolbar Added Files: button.about.gif button.bgcolor.gif button.bold.gif button.copy.gif button.cut.gif button.find.gif button.image.gif button.indent.gif button.inserthorizontalrule.gif button.insertorderedlist.gif button.insertunorderedlist.gif button.italic.gif button.justifycenter.gif button.justifyfull.gif button.justifyleft.gif button.justifyright.gif button.link.gif button.newpage.gif button.outdent.gif button.paste.gif button.pastetext.gif button.pasteword.gif button.preview.gif button.print.gif button.redo.gif button.removeformat.gif button.save.gif button.selectall.gif button.showdetails.gif button.showtableborders.gif button.smiley.gif button.source.gif button.specialchar.gif button.spellcheck.gif button.strikethrough.gif button.subscript.gif button.superscript.gif button.table.gif button.textcolor.gif button.underline.gif button.undo.gif button.unlink.gif button.unorderedlist.gif Log Message: complete fckeditor addition --- NEW FILE: button.about.gif --- GIF89a --- NEW FILE: button.bgcolor.gif --- GIF89a --- NEW FILE: button.bold.gif --- GIF89a --- NEW FILE: button.copy.gif --- GIF89a --- NEW FILE: button.cut.gif --- GIF89a --- NEW FILE: button.find.gif --- GIF89a --- NEW FILE: button.image.gif --- GIF89a --- NEW FILE: button.indent.gif --- GIF89a --- NEW FILE: button.inserthorizontalrule.gif --- GIF89a --- NEW FILE: button.insertorderedlist.gif --- GIF89a L²ÖìÒcyßX$rmjw a¿§§nHðÎ --- NEW FILE: button.insertunorderedlist.gif --- GIF89a à'ÜéQâÊZjhB¶ö? --- NEW FILE: button.italic.gif --- GIF89a ÇòL? --- NEW FILE: button.justifycenter.gif --- GIF89a --- NEW FILE: button.justifyfull.gif --- GIF89a --- NEW FILE: button.justifyleft.gif --- GIF89a --- NEW FILE: button.justifyright.gif --- GIF89a ìÇd --- NEW FILE: button.link.gif --- GIF89a vwgycorj g! --- NEW FILE: button.newpage.gif --- GIF89a --- NEW FILE: button.outdent.gif --- GIF89a --- NEW FILE: button.paste.gif --- GIF89a --- NEW FILE: button.pastetext.gif --- GIF89a --- NEW FILE: button.pasteword.gif --- GIF89a --- NEW FILE: button.preview.gif --- GIF89a ±l:çCqY:®åÉmÈ$²;:¦ÚJñ¨¨/æ\E/?Ô.gÁTÆÃg¤l» --- NEW FILE: button.print.gif --- GIF89a í#M«J-ü@`mØÀ¼/h"mÅà/@EZnÆ\²' !ÙeL.Ï --- NEW FILE: button.redo.gif --- GIF89a --- NEW FILE: button.removeformat.gif --- GIF89a --- NEW FILE: button.save.gif --- GIF89a --- NEW FILE: button.selectall.gif --- GIF89a --- NEW FILE: button.showdetails.gif --- GIF89a --- NEW FILE: button.showtableborders.gif --- GIF89a --- NEW FILE: button.smiley.gif --- GIF89a i2 ]NB L/_¡-¤9,§1°±²&! --- NEW FILE: button.source.gif --- GIF89a l@¼`Êg(/´Á ®y+¹áwÈÇXGh[êv('sø(X¯XleËíz¿Ü --- NEW FILE: button.specialchar.gif --- GIF89a --- NEW FILE: button.spellcheck.gif --- GIF89a c»ó - --- NEW FILE: button.strikethrough.gif --- GIF89a --- NEW FILE: button.subscript.gif --- GIF89a --- NEW FILE: button.superscript.gif --- GIF89a --- NEW FILE: button.table.gif --- GIF89a --- NEW FILE: button.textcolor.gif --- GIF89a --- NEW FILE: button.underline.gif --- GIF89a --- NEW FILE: button.undo.gif --- GIF89a --- NEW FILE: button.unlink.gif --- GIF89a ©E!¨BºLc< --- NEW FILE: button.unorderedlist.gif --- GIF89a à'ÜéQâÊZjhB¶ö? |
From: Joe S. <joe...@us...> - 2004-10-30 13:53:32
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/silver In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6803/phpslash-dev/public_html/scripts/fckeditor/editor/skins/silver Added Files: fck_contextmenu.css fck_dialog.css fck_editor.css Log Message: complete fckeditor addition --- NEW FILE: fck_contextmenu.css --- /* * 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: fck_contextmenu.css * Styles used by the context menu. * * Version: 2.0 Beta 2 * Modified: 2004-05-31 23:07:55 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) */ .CM_ContextMenu, .CM_ContextMenu * { font-size: 11px; font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif; } .CM_ContextMenu { border: 1px solid #8f8f73; padding: 2px; background-color: #f7f7f7; } .CM_Option, .CM_Over, .CM_Disabled { padding: 0px 3px; height: 18px; cursor: default; } .CM_Option, .CM_Over { cursor: hand; } .CM_Option .CM_Icon, .CM_Disabled .CM_Icon, .CM_Separator .CM_Icon { background-color: #dedede; } .CM_Option .CM_Icon IMG { filter: alpha(opacity=70); -moz-opacity: 0.70; } .CM_Disabled .CM_Icon IMG, .CM_Disabled .CM_Label { filter: gray() alpha(opacity=30); -moz-opacity: 0.30; } .CM_Option .CM_Label, .CM_Over .CM_Label { padding: 1px 10px 1px 3px; } .CM_Over { color: #fff; background-color: #8a857d; } .CM_Over .CM_Icon { background-color: #6c6761; } .CM_Separator TD { height: 3px; } .CM_Separator .CM_Label DIV { border-top: #b9b99d 1px solid; margin-left: 2px; margin-right: 3px; } --- NEW FILE: fck_dialog.css --- /* * 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: fck_dialog.css * Styles used by the dialog boxes. * * Version: 2.0 Beta 2 * Modified: 2004-05-31 23:07:55 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) */ body { margin: 0px; padding: 10px; background-color: #f7f7f7; } body, td, input, select, textarea { font-size: 11px; font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana; } .PopupBody { margin: 0px; padding: 0px; } .PopupTitle { padding-right: 10px; padding-left: 10px; font-weight: bold; font-size: 14pt; padding-bottom: 3px; color: #504845; padding-top: 3px; background-color: #dedede; } .PopupButtons { border-top: #cec6b5 1px solid; background-color: #DEDEDE; padding: 7px 10px 7px 10px; } .Button { border: #7a7261 1px solid; color: #504845; background-color: #cec6b5; } .DarkBackground { background-color: #d7d79f; } .LightBackground { background-color: #ffffbe; } .PopupTitleBorder { border-bottom: #cec6b5 1px solid; } .PopupTabArea { color: #504845; background-color: #DEDEDE; } .PopupTabEmptyArea { padding-left: 10px ; border-bottom: #cec6b5 1px solid; } .PopupTab, .PopupTabSelected { border-right: #cec6b5 1px solid; border-top: #cec6b5 1px solid; border-left: #cec6b5 1px solid; padding-right: 5px; padding-left: 5px; padding-bottom: 3px; padding-top: 3px; color: #504845; } .PopupTab { margin-top: 1px; border-bottom: #cec6b5 1px solid; cursor: pointer; cursor: hand; } .PopupTabSelected { font-weight:bold; cursor: default; padding-top: 4px; border-bottom: #f1f1e3 1px solid; background-color: #f7f7f7; } --- NEW FILE: fck_editor.css --- /* * 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: fck_editor.css * Styles used by the editor IFRAME and Toolbar. * * Version: 2.0 Beta 2 * Modified: 2004-05-31 23:07:55 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) * gazou[Fr] */ @import url( fck_contextmenu.css ) ; /* ### Basic Editor IFRAME Styles. */ body { padding: 1px 1px 1px 1px; margin: 0px 0px 0px 0px; } #eEditorArea, .Source { border: #696969 1px solid; } #eSourceField { border: none; padding: 5px; font-family: Monospace; } /* ### Toolbar Styles */ .TB_ToolbarSet, .TB_Expand, .TB_Collapse { background-color: #f7f7f7; } .TB_End { display: none; } .TB_ExpandImg { background-image: url(images/toolbar.expand.gif); background-repeat: no-repeat; } .TB_CollapseImg { background-image: url(images/toolbar.collapse.gif); background-repeat: no-repeat; } .TB_ToolbarSet { padding: 1px; border-top: #efefde 1px outset; border-bottom: #efefde 1px outset; } .TB_ToolbarSet, .TB_ToolbarSet * { font-size: 11px; cursor: default; font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif; } .TB_Expand, .TB_Collapse { padding: 2px 2px 2px 2px; border: #efefde 1px outset; } .TB_Collapse { border: #efefde 1px outset; width: 5px; } .TB_Button_On, .TB_Button_Off, .TB_Button_Disabled { padding: 1px ; margin: 1px ; height: 21px; } .TB_Combo_Off, .TB_Combo_Disabled { padding: 1px ; margin: 2px ; height: 21px; } .TB_Button_On, .TB_Button_Off, .TB_Button_Disabled { border: #cec6b5 1px solid; } .TB_Button_On { border-color: #316ac5; background-color: #c1d2ee; } .TB_Button_Off { background: #efefef url(images/toolbar.buttonbg.gif) repeat-x; } .TB_Button_Off, .TB_Combo_Off { filter: alpha(opacity=70); -moz-opacity: 0.70; } .TB_Button_Disabled, .TB_Combo_Disabled { filter: gray() alpha(opacity=30); -moz-opacity: 0.30; } .TB_Icon DIV { width: 21px; height: 21px; background-position: 50% 50%; background-repeat: no-repeat; } .TB_Text { height: 21px; padding-right: 5px; } .TB_ButtonType_Icon .TB_Text { display: none; } .TB_ButtonType_Text .TB_Icon { display: none; } .TB_ButtonType_Text .TB_Text { padding-left: 5px; } |
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/office2003/toolbar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6803/phpslash-dev/public_html/scripts/fckeditor/editor/skins/office2003/toolbar Added Files: button.about.gif button.anchor.gif button.bgcolor.gif button.bold.gif button.button.gif button.checkbox.gif button.copy.gif button.cut.gif button.find.gif button.flash.gif button.fontstyleadv.gif button.form.gif button.hidden.gif button.image.gif button.imagebutton.gif button.indent.gif button.input.gif button.inserthorizontalrule.gif button.insertorderedlist.gif button.insertunorderedlist.gif button.italic.gif button.justifycenter.gif button.justifyfull.gif button.justifyleft.gif button.justifyright.gif button.link.gif button.mail.gif button.new.gif button.newpage.gif button.open.gif button.outdent.gif button.paste.gif button.pastetext.gif button.pasteword.gif button.preview.gif button.print.gif button.radio.gif button.redo.gif button.removeformat.gif button.replace.gif button.save.gif button.select.gif button.selectall.gif button.showdetails.gif button.showtableborders.gif button.smiley.gif button.source.gif button.specialchar.gif button.spellcheck.gif button.strikethrough.gif button.subscript.gif button.superscript.gif button.table.gif button.textarea.gif button.textcolor.gif button.underline.gif button.undo.gif button.universalkey.gif button.unlink.gif Log Message: complete fckeditor addition --- NEW FILE: button.about.gif --- GIF89a ø! --- NEW FILE: button.anchor.gif --- GIF89a --- NEW FILE: button.bgcolor.gif --- GIF89a Q$Bê7¬Nâ Iåx MÃÑ9-_g5¤Ð0PE{m F-!%_)FS(GO", Q.¤"& --- NEW FILE: button.bold.gif --- GIF89a ÃòÒ$Òæâ[x¢,1°±rG@ò3¬c5:U-c àE.Ïèô) --- NEW FILE: button.button.gif --- GIF89a eQ'ÑDPR*à½ß%¼$0Ó)$ ι#¢Pd2Æ --- NEW FILE: button.checkbox.gif --- GIF89a Rih hÍf;ÎG¢ÍæÞhd (H l+"GH% #H --- NEW FILE: button.copy.gif --- GIF89a ¹¹Wª*#2T4³´/ÂK+.Î#/"T 5522" --- NEW FILE: button.cut.gif --- GIF89a Szè°ÍTXýtÇöwzðBñvó¨Tãä1â¿!û: .&)L17=+/L-85L-,3L ? --- NEW FILE: button.find.gif --- GIF89a --- NEW FILE: button.flash.gif --- GIF89a ¾ã®ªsá{ ¬ Ý©¯©Ò£uyó¾ å³zÇ¥ª ³õÂ-òÁ.øÆ1x È®a¸µ®§$ o:SI1 |fÓʳ}e|l zc |jƽªòðìa}m©stNÀº±ÅÁ» }]Nþº~D½¸µÿTÿSÿE $"ìããÑÍÍÿÿÿ!ù 8(éR&×/H@¡bÅ"Mø±d¬ý9QbN°©a"zôU§F®áñâÇ(Q¾¤b¶£9`¬0qñ")\ø<*Åu ;j6 "¥«ZìT2³*ÁYÀhåÁs *1[È\Ô +¿ÈÛ÷0?½ê&Ò8nZû7¡Þ:kÕ¶=`plСF(¡ÁäI©Yÿ{Ö, ðâÕRÈÕ$KèÒU¡pÎ eQÎ ÆéSÆ HoFá/ð --- NEW FILE: button.fontstyleadv.gif --- GIF89a --- NEW FILE: button.form.gif --- GIF89a ©xL.C --- NEW FILE: button.hidden.gif --- GIF89a :, --- NEW FILE: button.image.gif --- GIF89a --- NEW FILE: button.imagebutton.gif --- GIF89a --- NEW FILE: button.indent.gif --- GIF89a --- NEW FILE: button.input.gif --- GIF89a 8691 ½E+'0.+*'Ï+( ÜÞE*#227:;"ßD*.,<BÅJþlAC(PàÅK2jܨ1 --- NEW FILE: button.inserthorizontalrule.gif --- GIF89a --- NEW FILE: button.insertorderedlist.gif --- GIF89a --- NEW FILE: button.insertunorderedlist.gif --- GIF89a è¾° H,d¢ÂÚÀ A` --- NEW FILE: button.italic.gif --- GIF89a --- NEW FILE: button.justifycenter.gif --- GIF89a --- NEW FILE: button.justifyfull.gif --- GIF89a --- NEW FILE: button.justifyleft.gif --- GIF89a --- NEW FILE: button.justifyright.gif --- GIF89a --- NEW FILE: button.link.gif --- GIF89a --- NEW FILE: button.mail.gif --- GIF89a E³ ~(($ --- NEW FILE: button.new.gif --- GIF89a --- NEW FILE: button.newpage.gif --- GIF89a --- NEW FILE: button.open.gif --- GIF89a ¨XÐ --- NEW FILE: button.outdent.gif --- GIF89a --- NEW FILE: button.paste.gif --- GIF89a % C6R..WV8& F5.[*%>>R1.XTÎ$Ñ'?]GZ#H+4KÔ-#+Jé, O0')<JIIN0"=/Xæå@ãºY ô@ ¤ÐFT±Ð> H A Ñ¢-IP8 B --- NEW FILE: button.pastetext.gif --- GIF89a agQS81VZ'sB""W8<%.Zp/]]LmS T{7Z@}on&0Ak= {pÙÜNzF>P`Kç?Û/?((;;ÄTÁSÈÂn/ÐüH# UHØ(äáE>46¤ñ"0<Cl!ä wR`I³L10u!8(?Jê --- NEW FILE: button.pasteword.gif --- GIF89a ±¡ -ZÈÉñc --- NEW FILE: button.preview.gif --- GIF89a --- NEW FILE: button.print.gif --- GIF89a --- NEW FILE: button.radio.gif --- GIF89a !8U'ѪBD8,²Áèð f@RV$ Éb¥%J+\, ' J# J)L", #M$%¢O¿ÀÁÂGA --- NEW FILE: button.redo.gif --- GIF89a b¯Q¬Õ2!ò-D¬"HDÅ!u+C)1I5BI B --- NEW FILE: button.removeformat.gif --- GIF89a --- NEW FILE: button.replace.gif --- GIF89a --- NEW FILE: button.save.gif --- GIF89a - ?+</,Ù47GG(7%9!é$î ý =ìqÀq» --- NEW FILE: button.select.gif --- GIF89a --- NEW FILE: button.selectall.gif --- GIF89a --- NEW FILE: button.showdetails.gif --- GIF89a --- NEW FILE: button.showtableborders.gif --- GIF89a B`{} ¡+*¤f nO(¹ºEe~ª )fi$ %#g³¶Ù)ÝÞE# --- NEW FILE: button.smiley.gif --- GIF89a $f"N wo+: ÌJ --- NEW FILE: button.source.gif --- GIF89a l@¼`Êg(/´Á ®y+¹áwÈÇXGh[êv('sø(X¯XleËíz¿Ü --- NEW FILE: button.specialchar.gif --- GIF89a H&,!7BJ"#¸JE/0TP9M>G / I/ 1/N(R <'.LOC 5 --- NEW FILE: button.spellcheck.gif --- GIF89a !-*Ó D-ÒÙ2 Ø<M@,K0/$$H$ Ó5' %$,,#6|{ÒC#&@ . Z@@ÄA.jÜÈñI --- NEW FILE: button.strikethrough.gif --- GIF89a kDq B \µ¶·¸¹¶A --- NEW FILE: button.subscript.gif --- GIF89a --- NEW FILE: button.superscript.gif --- GIF89a --- NEW FILE: button.table.gif --- GIF89a --- NEW FILE: button.textarea.gif --- GIF89a 8$ --- NEW FILE: button.textcolor.gif --- GIF89a 4B 2X>BjS!8B!N3% --- NEW FILE: button.underline.gif --- GIF89a --- NEW FILE: button.undo.gif --- GIF89a --- NEW FILE: button.universalkey.gif --- GIF89a .I:1)/(¼.¿B11½Ê:ªÈ'Ô!Ò'Ô:Þ)ãåæ --- NEW FILE: button.unlink.gif --- GIF89a F) gF% r¢ !G!®ª_¶CP]_P-XUJ¼½g¿·ÅZA |
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/default/toolbar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6803/phpslash-dev/public_html/scripts/fckeditor/editor/skins/default/toolbar Added Files: button.about.gif button.bgcolor.gif button.bold.gif button.cell.gif button.copy.gif button.cut.gif button.find.gif button.image.gif button.indent.gif button.inserthorizontalrule.gif button.insertorderedlist.gif button.insertunorderedlist.gif button.italic.gif button.justifycenter.gif button.justifyfull.gif button.justifyleft.gif button.justifyright.gif button.link.gif button.newpage.gif button.outdent.gif button.paste.gif button.pastetext.gif button.pasteword.gif button.preview.gif button.print.gif button.redo.gif button.removeformat.gif button.save.gif button.selectall.gif button.showdetails.gif button.showtableborders.gif button.smiley.gif button.source.gif button.specialchar.gif button.spellcheck.gif button.strikethrough.gif button.subscript.gif button.superscript.gif button.table.gif button.tabledeletecells.gif button.tabledeletecolumns.gif button.tabledeleterows.gif button.tableinsertcell.gif button.tableinsertcolumn.gif button.tableinsertrow.gif button.tablemergecells.gif button.tablesplitcell.gif button.textcolor.gif button.underline.gif button.undo.gif button.unlink.gif button.unorderedlist.gif Log Message: complete fckeditor addition --- NEW FILE: button.about.gif --- GIF89a --- NEW FILE: button.bgcolor.gif --- GIF89a --- NEW FILE: button.bold.gif --- GIF89a --- NEW FILE: button.cell.gif --- GIF89a --- NEW FILE: button.copy.gif --- GIF89a --- NEW FILE: button.cut.gif --- GIF89a --- NEW FILE: button.find.gif --- GIF89a --- NEW FILE: button.image.gif --- GIF89a --- NEW FILE: button.indent.gif --- GIF89a --- NEW FILE: button.inserthorizontalrule.gif --- GIF89a --- NEW FILE: button.insertorderedlist.gif --- GIF89a L²ÖìÒcyßX$rmjw a¿§§nHðÎ --- NEW FILE: button.insertunorderedlist.gif --- GIF89a à'ÜéQâÊZjhB¶ö? --- NEW FILE: button.italic.gif --- GIF89a ÇòL? --- NEW FILE: button.justifycenter.gif --- GIF89a --- NEW FILE: button.justifyfull.gif --- GIF89a --- NEW FILE: button.justifyleft.gif --- GIF89a --- NEW FILE: button.justifyright.gif --- GIF89a ìÇd --- NEW FILE: button.link.gif --- GIF89a vwgycorj g! --- NEW FILE: button.newpage.gif --- GIF89a --- NEW FILE: button.outdent.gif --- GIF89a --- NEW FILE: button.paste.gif --- GIF89a --- NEW FILE: button.pastetext.gif --- GIF89a --- NEW FILE: button.pasteword.gif --- GIF89a --- NEW FILE: button.preview.gif --- GIF89a ±l:çCqY:®åÉmÈ$²;:¦ÚJñ¨¨/æ\E/?Ô.gÁTÆÃg¤l» --- NEW FILE: button.print.gif --- GIF89a í#M«J-ü@`mØÀ¼/h"mÅà/@EZnÆ\²' !ÙeL.Ï --- NEW FILE: button.redo.gif --- GIF89a --- NEW FILE: button.removeformat.gif --- GIF89a --- NEW FILE: button.save.gif --- GIF89a --- NEW FILE: button.selectall.gif --- GIF89a --- NEW FILE: button.showdetails.gif --- GIF89a --- NEW FILE: button.showtableborders.gif --- GIF89a --- NEW FILE: button.smiley.gif --- GIF89a i2 ]NB L/_¡-¤9,§1°±²&! --- NEW FILE: button.source.gif --- GIF89a l@¼`Êg(/´Á ®y+¹áwÈÇXGh[êv('sø(X¯XleËíz¿Ü --- NEW FILE: button.specialchar.gif --- GIF89a --- NEW FILE: button.spellcheck.gif --- GIF89a c»ó - --- NEW FILE: button.strikethrough.gif --- GIF89a --- NEW FILE: button.subscript.gif --- GIF89a --- NEW FILE: button.superscript.gif --- GIF89a --- NEW FILE: button.table.gif --- GIF89a --- NEW FILE: button.tabledeletecells.gif --- GIF89a --- NEW FILE: button.tabledeletecolumns.gif --- GIF89a --- NEW FILE: button.tabledeleterows.gif --- GIF89a Ð6³vßè9ëÆP¥jp¢$1MN1Z©Z¯Øk --- NEW FILE: button.tableinsertcell.gif --- GIF89a --- NEW FILE: button.tableinsertcolumn.gif --- GIF89a ôk ÃV±tì@FäsIØHPæõÆíf --- NEW FILE: button.tableinsertrow.gif --- GIF89a --- NEW FILE: button.tablemergecells.gif --- GIF89a /åJÉj·\H --- NEW FILE: button.tablesplitcell.gif --- GIF89a --- NEW FILE: button.textcolor.gif --- GIF89a --- NEW FILE: button.underline.gif --- GIF89a --- NEW FILE: button.undo.gif --- GIF89a --- NEW FILE: button.unlink.gif --- GIF89a ©E!¨BºLc< --- NEW FILE: button.unorderedlist.gif --- GIF89a à'ÜéQâÊZjhB¶ö? |
From: Joe S. <joe...@us...> - 2004-10-30 13:53:30
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/office2003 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6803/phpslash-dev/public_html/scripts/fckeditor/editor/skins/office2003 Added Files: fck_contextmenu.css fck_dialog.css fck_editor.css Log Message: complete fckeditor addition --- NEW FILE: fck_contextmenu.css --- /* * 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: fck_contextmenu.css * Styles used by the context menu. * * Version: 2.0 Beta 2 * Modified: 2004-05-31 23:07:54 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) */ .CM_ContextMenu, .CM_ContextMenu * { font-size: 11px; font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif; } .CM_ContextMenu { border: 1px solid #8f8f73; padding: 2px; background-color: #f7f8fd; } .CM_Option, .CM_Over, .CM_Disabled { padding: 0px 3px; height: 18px; cursor: default; } .CM_Option, .CM_Over { cursor: hand; } .CM_Option .CM_Icon, .CM_Disabled .CM_Icon, .CM_Separator .CM_Icon { background-color: #d6dff7; } .CM_Option .CM_Icon IMG { filter: alpha(opacity=70); -moz-opacity: 0.70; } .CM_Disabled .CM_Icon IMG, .CM_Disabled .CM_Label { filter: gray() alpha(opacity=30); -moz-opacity: 0.30; } .CM_Option .CM_Label, .CM_Over .CM_Label { padding: 1px 10px 1px 3px; } .CM_Over { color: #fff; background-color: #7096FA; } .CM_Over .CM_Icon { background-color: #466ca6; } .CM_Separator TD { height: 3px; } .CM_Separator .CM_Label DIV { border-top: #b9b99d 1px solid; margin-left: 2px; margin-right: 3px; } --- NEW FILE: fck_dialog.css --- /* * 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: fck_dialog.css * Styles used by the dialog boxes. * * Version: 2.0 Beta 2 * Modified: 2004-05-31 23:07:54 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) */ body { margin: 0px; padding: 10px; background-color: #f7f8fd; } body, td, input, select, textarea { font-size: 11px; font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana; } .PopupBody { margin: 0px; padding: 0px; } .PopupTitle { font-weight: bold; font-size: 14pt; color: #0e3460; background-color: #8cb2fd; padding: 3px 10px 3px 10px; } .PopupButtons { border-top: #466ca6 1px solid; background-color: #8cb2fd; padding: 7px 10px 7px 10px; } .Button { border: #1c3460 1px solid; color: #000a28; background-color: #7096d3; } .DarkBackground { background-color: #d7d79f; } .LightBackground { background-color: #ffffbe; } .PopupTitleBorder { border-bottom: #d5d59d 1px solid; } .PopupTabArea { color: #0e3460; background-color: #8cb2fd; } .PopupTabEmptyArea { padding-left: 10px ; border-bottom: #466ca6 1px solid; } .PopupTab, .PopupTabSelected { border-right: #466ca6 1px solid; border-top: #466ca6 1px solid; border-left: #466ca6 1px solid; padding-right: 5px; padding-left: 5px; padding-bottom: 3px; padding-top: 3px; color: #0e3460; } .PopupTab { margin-top: 1px; border-bottom: #466ca6 1px solid; cursor: pointer; cursor: hand; } .PopupTabSelected { font-weight:bold; cursor: default; padding-top: 4px; border-bottom: #f7f8fd 1px solid; background-color: #f7f8fd; } --- NEW FILE: fck_editor.css --- /* * 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: fck_editor.css * Styles used by the editor IFRAME and Toolbar. * * Version: 2.0 Beta 2 * Modified: 2004-05-31 23:07:54 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) * Aziz Oraij (az...@or...) */ @import url( fck_contextmenu.css ) ; /* ### Basic Editor IFRAME Styles. */ body { padding: 1px 1px 1px 1px; margin: 0px 0px 0px 0px; } #eEditorArea, .Source { border: #696969 1px solid; } #eSourceField { border: none; padding: 5px; font-family: Monospace; } /* ### Toolbar Styles */ .TB_ToolbarSet, .TB_Expand, .TB_Collapse { background-color: #f7f8fd; } .TB_Toolbar { background-color: #d6dff7; background-image: url(images/toolbar.bg.gif); background-repeat: repeat-x; } .TB_ExpandImg { background-image: url(images/toolbar.expand.gif); background-repeat: no-repeat; } .TB_CollapseImg { background-image: url(images/toolbar.collapse.gif); background-repeat: no-repeat; } .TB_ToolbarSet { border-top: #efefde 1px outset; border-bottom: #efefde 1px outset; } .TB_ToolbarSet, .TB_ToolbarSet * { font-size: 11px; cursor: default; font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif; } .TB_Expand, .TB_Collapse { padding: 2px 2px 2px 2px; border: #efefde 1px outset; } .TB_Collapse { border: #efefde 1px outset; width: 5px; } .TB_Button_On, .TB_Button_Off, .TB_Button_Disabled, .TB_Combo_Off, .TB_Combo_Disabled { border: #efefde 1px solid; height: 21px; } .TB_Button_On { border-color: #316ac5; background-color: #c1d2ee; } .TB_Button_Off, .TB_Combo_Off { filter: alpha(opacity=70); -moz-opacity: 0.70; } .TB_Button_Disabled, .TB_Combo_Disabled { filter: gray() alpha(opacity=30); -moz-opacity: 0.30; } .TB_Icon DIV { width: 21px; height: 21px; background-position: 50% 50%; background-repeat: no-repeat; } .TB_Text { height: 21px; padding-right: 5px; } .TB_ButtonType_Icon .TB_Text { display: none; } .TB_ButtonType_Text .TB_Icon { display: none; } .TB_ButtonType_Text .TB_Text { padding-left: 5px; } |
From: Joe S. <joe...@us...> - 2004-10-30 13:53:30
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/silver/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6803/phpslash-dev/public_html/scripts/fckeditor/editor/skins/silver/images Added Files: toolbar.buttonbg.gif toolbar.collapse.gif toolbar.end.gif toolbar.expand.gif toolbar.separator.gif toolbar.start.gif Log Message: complete fckeditor addition --- NEW FILE: toolbar.buttonbg.gif --- GIF89a --- NEW FILE: toolbar.collapse.gif --- GIF89a --- NEW FILE: toolbar.end.gif --- GIF89a --- NEW FILE: toolbar.expand.gif --- GIF89a --- NEW FILE: toolbar.separator.gif --- GIF89a --- NEW FILE: toolbar.start.gif --- GIF89a ÁÞ |
From: Joe S. <joe...@us...> - 2004-10-30 13:53:28
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6803/phpslash-dev/public_html/scripts/fckeditor/editor/skins/default Added Files: fck_contextmenu.css fck_dialog.css fck_editor.css Log Message: complete fckeditor addition --- NEW FILE: fck_contextmenu.css --- /* * 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: fck_contextmenu.css * Styles used by the context menu and panels. * * Version: 2.0 Beta 2 * Modified: 2004-08-20 16:19:52 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) */ .CM_ContextMenu, .CM_ContextMenu * { font-size: 11px; font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif; } .CM_ContextMenu { border: 1px solid #8f8f73; padding: 2px; background-color: #ffffff; } .CM_Option, .CM_Over, .CM_Disabled { padding: 0px 3px; height: 18px; cursor: default; } .CM_Option, .CM_Over { cursor: hand; } .CM_Option .CM_Icon, .CM_Disabled .CM_Icon, .CM_Separator .CM_Icon { background-color: #e3e3c7; } .CM_Option .CM_Icon IMG { filter: alpha(opacity=70); -moz-opacity: 0.70; } .CM_Disabled .CM_Icon IMG, .CM_Disabled .CM_Label { filter: gray() alpha(opacity=30); -moz-opacity: 0.30; } .CM_Option .CM_Label, .CM_Over .CM_Label { padding: 1px 10px 1px 3px; } .CM_Over { color: #fff; background-color: #8f8f73; } .CM_Over .CM_Icon { background-color: #737357; } .CM_Separator TD { height: 3px; } .CM_Separator .CM_Label DIV { border-top: #b9b99d 1px solid; margin-left: 2px; margin-right: 3px; } /* ### Panel Styles */ .FCK_Panel { border: #8f8f73 1px solid; float: left; padding: 2px; background-color: #ffffff; position: absolute ; } .FCK_Panel, .FCK_Panel TD { font-family: 'Microsoft Sans Serif', Tahoma, Arial, Verdana, Sans-Serif; font-size: 11px; } /* ### Color Selector Panel */ .ColorBoxBorder { border: #808080 1px solid; clear: none; position: static; } .ColorBox { clear: none; font-size: 1px; width: 10px; position: static; height: 10px; } .ColorDeselected, .ColorSelected { cursor: default; } .ColorDeselected { border: #ffffff 1px solid; padding: 2px; float: left; } .ColorSelected { border: #330066 1px solid; padding: 2px; float: left; background-color: #c4cdd6; } --- NEW FILE: fck_dialog.css --- /* * 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: fck_dialog.css * Styles used by the dialog boxes. * * Version: 2.0 Beta 2 * Modified: 2004-05-31 23:07:54 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) */ body { margin: 0px; padding: 10px; background-color: #f1f1e3; } body, td, input, select, textarea { font-size: 11px; font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana; } .PopupBody { margin: 0px; padding: 0px; } .PopupTitle { font-weight: bold; font-size: 14pt; color: #737357; background-color: #e3e3c7; padding: 3px 10px 3px 10px; } .PopupButtons { border-top: #d5d59d 1px solid; background-color: #e3e3c7; padding: 7px 10px 7px 10px; } .Button { border-right: #737357 1px solid; border-top: #737357 1px solid; border-left: #737357 1px solid; color: #3b3b1f; border-bottom: #737357 1px solid; background-color: #c7c78f; } .DarkBackground { background-color: #d7d79f; } .LightBackground { background-color: #ffffbe; } .PopupTitleBorder { border-bottom: #d5d59d 1px solid; } .PopupTabArea { color: #737357; background-color: #e3e3c7; } .PopupTabEmptyArea { padding-left: 10px ; border-bottom: #d5d59d 1px solid; } .PopupTab, .PopupTabSelected { border-right: #d5d59d 1px solid; border-top: #d5d59d 1px solid; border-left: #d5d59d 1px solid; padding-right: 5px; padding-left: 5px; padding-bottom: 3px; padding-top: 3px; color: #737357; } .PopupTab { margin-top: 1px; border-bottom: #d5d59d 1px solid; cursor: pointer; cursor: hand; } .PopupTabSelected { font-weight:bold; cursor: default; padding-top: 4px; border-bottom: #f1f1e3 1px solid; background-color: #f1f1e3; } --- NEW FILE: fck_editor.css --- /* * 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: fck_editor.css * Styles used by the editor IFRAME and Toolbar. * * Version: 2.0 Beta 2 * Modified: 2004-08-20 13:53:25 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) */ /*@import url( fck_contextmenu.css ) ;*/ /* ### Basic Editor IFRAME Styles. */ body { padding: 1px 1px 1px 1px; margin: 0px 0px 0px 0px; } #eEditorArea, .Source { border: #696969 1px solid; } #eSourceField { border: none; padding: 5px; font-family: Monospace; } /* ### Toolbar Styles */ .TB_ToolbarSet, .TB_Expand, .TB_Collapse { background-color: #efefde; } .TB_End { display: none; } .TB_ExpandImg { background-image: url(images/toolbar.expand.gif); background-repeat: no-repeat; } .TB_CollapseImg { background-image: url(images/toolbar.collapse.gif); background-repeat: no-repeat; } .TB_ToolbarSet { border-top: #efefde 1px outset; border-bottom: #efefde 1px outset; } .TB_ToolbarSet, .TB_ToolbarSet * { font-size: 11px; cursor: default; font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif; } .TB_Expand, .TB_Collapse { padding: 2px 2px 2px 2px; border: #efefde 1px outset; } .TB_Collapse { border: #efefde 1px outset; width: 5px; } .TB_Button_On, .TB_Button_Off, .TB_Button_Disabled, .TB_Combo_Off, .TB_Combo_Disabled { border: #efefde 1px solid; height: 21px; } .TB_Button_On { border-color: #316ac5; background-color: #c1d2ee; } .TB_Button_Off, .TB_Combo_Off { filter: alpha(opacity=70); -moz-opacity: 0.70; } .TB_Button_Disabled, .TB_Combo_Disabled { filter: gray() alpha(opacity=30); -moz-opacity: 0.30; } .TB_Icon DIV { width: 21px; height: 21px; background-position: 50% 50%; background-repeat: no-repeat; } .TB_Text { height: 21px; padding-right: 5px; } .TB_ButtonArrow { padding-right: 3px; } .TB_ButtonType_Icon .TB_Text { display: none; } .TB_ButtonType_Text .TB_Icon { display: none; } .TB_ButtonType_Text .TB_Text { padding-left: 5px; } |
From: Joe S. <joe...@us...> - 2004-10-30 13:53:28
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/default/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6803/phpslash-dev/public_html/scripts/fckeditor/editor/skins/default/images Added Files: toolbar.buttonarrow.gif toolbar.collapse.gif toolbar.end.gif toolbar.expand.gif toolbar.separator.gif toolbar.start.gif Log Message: complete fckeditor addition --- NEW FILE: toolbar.buttonarrow.gif --- GIF89a --- NEW FILE: toolbar.collapse.gif --- GIF89a --- NEW FILE: toolbar.end.gif --- GIF89a --- NEW FILE: toolbar.expand.gif --- GIF89a --- NEW FILE: toolbar.separator.gif --- GIF89a --- NEW FILE: toolbar.start.gif --- GIF89a ÁÞ |
From: Joe S. <joe...@us...> - 2004-10-30 13:53:28
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/office2003/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6803/phpslash-dev/public_html/scripts/fckeditor/editor/skins/office2003/images Added Files: toolbar.bg.gif toolbar.collapse.gif toolbar.end.gif toolbar.expand.gif toolbar.separator.gif toolbar.start.gif Log Message: complete fckeditor addition --- NEW FILE: toolbar.bg.gif --- GIF89a --- NEW FILE: toolbar.collapse.gif --- GIF89a --- NEW FILE: toolbar.end.gif --- GIF89a --- NEW FILE: toolbar.expand.gif --- GIF89a --- NEW FILE: toolbar.separator.gif --- GIF89a --- NEW FILE: toolbar.start.gif --- GIF89a |
From: Joe S. <joe...@us...> - 2004-10-30 13:49:59
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/default/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6100/images Log Message: Directory /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/default/images added to the repository |
From: Joe S. <joe...@us...> - 2004-10-30 13:49:59
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/default/toolbar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6100/toolbar Log Message: Directory /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/default/toolbar added to the repository |
From: Joe S. <joe...@us...> - 2004-10-30 13:47:06
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/office2003/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5660/images Log Message: Directory /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/office2003/images added to the repository |
From: Joe S. <joe...@us...> - 2004-10-30 13:47:05
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/office2003/toolbar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5660/toolbar Log Message: Directory /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/office2003/toolbar added to the repository |
From: Joe S. <joe...@us...> - 2004-10-30 13:42:31
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/silver/toolbar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4765/toolbar Log Message: Directory /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/silver/toolbar added to the repository |
From: Joe S. <joe...@us...> - 2004-10-30 13:42:31
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/silver/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4765/images Log Message: Directory /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/silver/images added to the repository |
From: Joe S. <joe...@us...> - 2004-10-30 13:42:03
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/office2003 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4665/office2003 Log Message: Directory /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/office2003 added to the repository |
From: Joe S. <joe...@us...> - 2004-10-30 13:41:49
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/silver In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4616/silver Log Message: Directory /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/silver added to the repository |
From: Joe S. <joe...@us...> - 2004-10-30 13:41:28
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4557/default Log Message: Directory /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/skins/default added to the repository |