You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(120) |
Jun
(74) |
Jul
(97) |
Aug
(35) |
Sep
(35) |
Oct
(34) |
Nov
|
Dec
(6) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(18) |
Feb
(8) |
Mar
(7) |
Apr
(23) |
May
(28) |
Jun
(31) |
Jul
(27) |
Aug
(34) |
Sep
(48) |
Oct
(511) |
Nov
(197) |
Dec
(333) |
2005 |
Jan
(212) |
Feb
(33) |
Mar
(94) |
Apr
(51) |
May
(16) |
Jun
|
Jul
(200) |
Aug
(43) |
Sep
(88) |
Oct
(60) |
Nov
(62) |
Dec
(41) |
2006 |
Jan
(94) |
Feb
(49) |
Mar
(54) |
Apr
|
May
(39) |
Jun
(39) |
Jul
(61) |
Aug
(36) |
Sep
(23) |
Oct
(76) |
Nov
(73) |
Dec
(32) |
2007 |
Jan
|
Feb
(87) |
Mar
|
Apr
(8) |
May
(36) |
Jun
(49) |
Jul
(54) |
Aug
(8) |
Sep
(50) |
Oct
(36) |
Nov
|
Dec
(3) |
2008 |
Jan
(133) |
Feb
(54) |
Mar
(39) |
Apr
(2) |
May
(6) |
Jun
(74) |
Jul
(97) |
Aug
(70) |
Sep
(12) |
Oct
(20) |
Nov
(64) |
Dec
(24) |
2009 |
Jan
(25) |
Feb
(49) |
Mar
(18) |
Apr
|
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
(10) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(7) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Chris R. <chr...@us...> - 2004-11-03 20:55:35
|
Update of /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6511/xwysiwyg/mod/xwysiwyg/class Modified Files: xwysiwyg.php Log Message: Added code to include theme stylesheet within editable textarea for full wysiwyg. function pickCSS() Index: xwysiwyg.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/class/xwysiwyg.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** xwysiwyg.php 2 Nov 2004 21:42:02 -0000 1.7 --- xwysiwyg.php 3 Nov 2004 20:54:47 -0000 1.8 *************** *** 13,16 **** --- 13,37 ---- class PHPWS_xwysiwyg { + + function pickCSS() { + $pick_css = $_SESSION['OBJ_layout']->theme_dir."browsers.txt"; + if (file_exists($pick_css)){ + $allBrowsers = file($pick_css); + foreach ($allBrowsers as $browser) { + $temp = explode("::", $browser); + if (preg_match("/".$temp[0]."/", $_SERVER["HTTP_USER_AGENT"]) && file_exists($_SESSION['OBJ_layout']->theme_dir.trim($temp[1]))) { + $css = "/".$_SESSION['OBJ_layout']->theme_address . trim($temp[1]); + $browser_css = 1; + break; + } + } + } + if (!isset($browser_css) && file_exists($_SESSION['OBJ_layout']->theme_dir."style.css")) + $css = "/".$_SESSION['OBJ_layout']->theme_address . "style.css"; + return $css; + } + + + function isBox($area){ $settings = PHPWS_xwysiwyg::readConfig(); *************** *** 44,55 **** $regplugs = ""; if($settings['editor']=="htmlarea") { ! if($settings['plug_table']) $regplugs .= " editor$index.registerPlugin(TableOperations);\n"; ! if($settings['plug_context']) $regplugs .= " editor$index.registerPlugin(ContextMenu);\n"; ! if($settings['plug_chara']) $regplugs .= " editor$index.registerPlugin(CharacterMap);\n"; ! if($settings['plug_para']) $regplugs .= " editor$index.registerPlugin(EnterParagraphs);\n"; ! if($settings['plug_list']) $regplugs .= " editor$index.registerPlugin(ListType);\n"; ! if($settings['plug_file']) $regplugs .= " editor$index.registerPlugin(InsertFile);\n"; ! if($settings['plug_image']) $regplugs .= " editor$index.registerPlugin(ImageManager);\n"; ! if($settings['plug_spell']) $regplugs .= " editor$index.registerPlugin(SpellChecker);\n"; } else if($settings['editor']=="fck") { // no plugins yet --- 65,76 ---- $regplugs = ""; if($settings['editor']=="htmlarea") { ! if($settings['plug_table']) $regplugs .= " editor$index.registerPlugin(\"TableOperations\");\n"; ! if($settings['plug_context']) $regplugs .= " editor$index.registerPlugin(\"ContextMenu\");\n"; ! if($settings['plug_chara']) $regplugs .= " editor$index.registerPlugin(\"CharacterMap\");\n"; ! if($settings['plug_para']) $regplugs .= " editor$index.registerPlugin(\"EnterParagraphs\");\n"; ! if($settings['plug_list']) $regplugs .= " editor$index.registerPlugin(\"ListType\");\n"; ! if($settings['plug_file']) $regplugs .= " editor$index.registerPlugin(\"InsertFile\");\n"; ! if($settings['plug_image']) $regplugs .= " editor$index.registerPlugin(\"ImageManager\");\n"; ! if($settings['plug_spell']) $regplugs .= " editor$index.registerPlugin(\"SpellChecker\");\n"; } else if($settings['editor']=="fck") { // no plugins yet *************** *** 64,67 **** --- 85,92 ---- } + + + + function makeEditors($settings,$index,$regplugs,$area,$lang) { // HtmlArea - Editor - Section if($settings['editor']=="htmlarea") { *************** *** 71,76 **** function initEditor$index() { var editor$index = new HTMLArea(\"$area\"); ! ".$regplugs." editor$index.config.height = \"300px\"; editor$index.generate(); return false; --- 96,102 ---- function initEditor$index() { var editor$index = new HTMLArea(\"$area\"); ! ".$regplugs." editor$index.config.height = \"300px\"; + editor$index.config.pageStyle = \"@import url('".PHPWS_xwysiwyg::pickCSS()."');\"; editor$index.generate(); return false; *************** *** 80,85 **** $editors .= " var editor$index = new HTMLArea(\"$area\"); ! ".$regplugs." editor$index.config.height = \"300px\"; editor$index.generate(); "; --- 106,112 ---- $editors .= " var editor$index = new HTMLArea(\"$area\"); ! ".$regplugs." editor$index.config.height = \"300px\"; + editor$index.config.pageStyle = \"@import url('".PHPWS_xwysiwyg::pickCSS()."');\"; editor$index.generate(); "; *************** *** 90,95 **** function initEditor$index() { var editor$index = new HTMLArea(\"$area\"); ! ".$regplugs." editor$index.config.height = \"300px\"; editor$index.generate(); return false; --- 117,123 ---- function initEditor$index() { var editor$index = new HTMLArea(\"$area\"); ! ".$regplugs." editor$index.config.height = \"300px\"; + editor$index.config.pageStyle = \"@import url('".PHPWS_xwysiwyg::pickCSS()."');\"; editor$index.generate(); return false; *************** *** 99,104 **** $editors .= " var editor$index = new HTMLArea(\"$area\"); ! ".$regplugs." editor$index.config.height = \"300px\"; setTimeout(function() { editor$index.generate(); --- 127,133 ---- $editors .= " var editor$index = new HTMLArea(\"$area\"); ! ".$regplugs." editor$index.config.height = \"300px\"; + editor$index.config.pageStyle = \"@import url('".PHPWS_xwysiwyg::pickCSS()."');\"; setTimeout(function() { editor$index.generate(); *************** *** 118,121 **** --- 147,151 ---- editor$index.CheckBrowser = false ; editor$index.Config[\"AutoDetectLanguage\"] = false ; + editor$index.Config[\"EditorAreaCSS\"] = \"".PHPWS_xwysiwyg::pickCSS()."\"; editor$index.Config[\"DefaultLanguage\"] = \"$lang\" ; editor$index.Config[\"SkinPath\"] = \"skins/$skin/\" ; *************** *** 172,176 **** "; } ! } else if($settings['editor']=="fck") { // FCK-Main for all Modes --- 202,206 ---- "; } ! } else if($settings['editor']=="fck") { // FCK-Main for all Modes *************** *** 193,197 **** "; } - } return $main; --- 223,226 ---- |
From: Andy F. <and...@us...> - 2004-11-03 19:59:12
|
Update of /cvsroot/phpwebsite-comm/modules/photobox/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26422/photobox/class Modified Files: Photobox.php Log Message: Updating photobox to version 0.2.3 to add option for newest photo display Index: Photobox.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/photobox/class/Photobox.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Photobox.php 7 Oct 2004 19:44:56 -0000 1.1.1.1 --- Photobox.php 3 Nov 2004 19:58:28 -0000 1.2 *************** *** 21,25 **** class PHPWS_photobox { ! // function to display random photo in user block function show_block() { --- 21,25 ---- class PHPWS_photobox { ! // function to display random photo - or newest photo - in user block function show_block() { *************** *** 41,44 **** --- 41,45 ---- $my_restrict = "0"; $my_wset = "0"; + $my_newfirst = "0"; // try to get current values from DB *************** *** 53,56 **** --- 54,58 ---- $my_descrip = $db_result[0]["show_descrip"]; $my_restrict = $db_result[0]["show_restrict"]; + $my_newfirst = $db_result[0]["show_newfirst"]; // albums field is a text field with comma delim'd album IDs *************** *** 65,68 **** --- 67,74 ---- $sql .= " AND album IN (" . $my_albums . ")"; } + + // order results with newest first + $sql .= " ORDER BY created DESC"; + $pa_result = $GLOBALS["core"]->query($sql, TRUE); if ($pa_result->numRows() > 0) { *************** *** 75,79 **** // set up photo per data from photo album DB $num_rows = count($result); ! $id = array_rand($result); $albumdir = $result[$id]["album"]; $thumbname = $result[$id]["tnname"]; --- 81,92 ---- // set up photo per data from photo album DB $num_rows = count($result); ! ! // random photo unless newfirst flag set ! if ($my_newfirst) { ! $id = 0; ! } else { ! $id = array_rand($result); ! } ! $albumdir = $result[$id]["album"]; $thumbname = $result[$id]["tnname"]; *************** *** 144,147 **** --- 157,161 ---- $my_descrip = $result[0]["show_descrip"]; $my_restrict = $result[0]["show_restrict"]; + $my_newfirst = $result[0]["show_newfirst"]; $my_albums = explode(",", $result[0]["albums"]); } *************** *** 186,189 **** --- 200,205 ---- $form->add("TN_ALINK", "checkbox"); $form->setMatch("TN_ALINK", $my_alink); + $form->add("TN_NEWEST", "checkbox"); + $form->setMatch("TN_NEWEST", $my_newfirst); $form->add("TN_ALIGN", "radio", array("left", "center", "right")); $form->setMatch("TN_ALIGN", $my_align); *************** *** 207,210 **** --- 223,227 ---- $tags["PALBUM_TXT"] = $_SESSION["translate"]->it("Display view photo album link"); $tags["PRESTRICT_TXT"] = $_SESSION["translate"]->it("Restrict to photos from Albums"); + $tags["PNEWEST_TXT"] = $_SESSION["translate"]->it("Display newest photo - not random photo"); //use admin.tpl template for form display *************** *** 266,270 **** $db_array["show_alink"] = "0"; } ! $result = $GLOBALS["core"]->sqlUpdate($db_array, "mod_photobox_conf", "id", "0"); --- 283,291 ---- $db_array["show_alink"] = "0"; } ! if (isset($_REQUEST["TN_NEWEST"])) { ! $db_array["show_newfirst"] = $_REQUEST["TN_NEWEST"]; ! } else { ! $db_array["show_newfirst"] = "0"; ! } $result = $GLOBALS["core"]->sqlUpdate($db_array, "mod_photobox_conf", "id", "0"); |
From: Andy F. <and...@us...> - 2004-11-03 19:59:10
|
Update of /cvsroot/phpwebsite-comm/modules/photobox/boost In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26422/photobox/boost Modified Files: install.sql Log Message: Updating photobox to version 0.2.3 to add option for newest photo display Index: install.sql =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/photobox/boost/install.sql,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** install.sql 7 Oct 2004 19:44:56 -0000 1.1.1.1 --- install.sql 3 Nov 2004 19:57:32 -0000 1.2 *************** *** 9,15 **** show_alink int(6) NOT NULL default '0', show_restrict int(6) NOT NULL default '0', ! albums text ); ! INSERT INTO mod_photobox_conf VALUES ('0', '150', 'center', 'Random Photo', '1', '0', '1', '1', '0', '99999'); \ No newline at end of file --- 9,16 ---- show_alink int(6) NOT NULL default '0', show_restrict int(6) NOT NULL default '0', ! albums text, ! show_newfirst int(6) NOT NULL default '0' ); ! INSERT INTO mod_photobox_conf VALUES ('0', '150', 'center', 'Random Photo', '1', '0', '1', '1', '0', '99999', '0'); \ No newline at end of file |
From: Andy F. <and...@us...> - 2004-11-03 19:58:50
|
Update of /cvsroot/phpwebsite-comm/modules/photobox/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26422/photobox/templates Removed Files: old_admin.tpl Log Message: Updating photobox to version 0.2.3 to add option for newest photo display --- old_admin.tpl DELETED --- |
From: Andy F. <and...@us...> - 2004-11-03 19:58:50
|
Update of /cvsroot/phpwebsite-comm/modules/photobox/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26422/photobox/docs Modified Files: README.txt Log Message: Updating photobox to version 0.2.3 to add option for newest photo display Index: README.txt =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/photobox/docs/README.txt,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** README.txt 7 Oct 2004 19:44:56 -0000 1.1.1.1 --- README.txt 3 Nov 2004 19:58:29 -0000 1.2 *************** *** 1,62 **** ! /* ! * Photo Box Block module for phpWebSite 0.9.3 ! * ! * @version $Id$ ! * ! * @author Andy Felong <andy AT redwoodhouse DOT com>$ ! * ! */ ! ! ! This is a simple module to display a random photo from a site's Photo ! Albums. This module is dependent on photoalbum. ! ! ! In this 0.2.2 implementation, I have added a control panel that allows ! you to change various settings including restricting photos to selected ! albums. This version is also internationalized and supports language ! files. These new features are the result of feedback from ! various folks. ! ! The module checks the existence of the photoalbum database. If it ! exists, a random thumbnail of a non-hidden photo is ! displayed in a block on the home page. The photo's short description is ! (optionally) displayed. Clicking on the photo or (optional) "View Photo" ! link will take you to the large photo image in the associated Photo ! Album. Clicking the (optional) "View Photo Album" link will take you to ! the parent Photo Album of the photo. ! ! A control panel is installed under the "Site Content" tab. It is ! accessible by users with admin privilege. It has options to ! display short description, "View Photo" link, "View Album" link and ! select albums. It also allows the admin to change the block title. ! ! Enjoy! ! ! Andy Felong ! ! Please provide feedback to <andy AT redwoodhouse DOT com>. Include the word, ! "photobox" in the subject. The latest version of photobox can be found ! at http://www.redwoodhouse.com Click on the "phpWebSite" menu. ! ! ======================================================================= ! ! INSTALLATION: If you have a previous version of photobox, use "Boost" ! to uninstall. Remove/delete the photobox directory in the mod directory, ! extract/unzip photobox-0.2.2.zip to your ./mod directory. You should end up ! with a ./mod/photobox directory. Use "Boost" to install... ! ! This version defaults to displaying a block on the home page and photobox ! control panel page. This allows for immediate feedback of selections. ! [default block location is right column - move if needed ] ! ! NOTE: If you should want it to show up on all pages, or wherever, you ! must do the following: Go into Control Panel => Developer => ! ModuleMaker, choose photobox and "Edit Module". If you are a developer, ! you can change the "allow_view" array in boost.php. ! ! ===================================================================== ! ! Things to do: ! ! Work with Galleries as well as Photo Album? --- 1,6 ---- ! /* * Photo Box Block module for phpWebSite 0.9.3 * * @version $Id$ * * @author Andy Felong <andy AT redwoodhouse DOT com>$ * */ This is a simple module to display a random photo from a site's Photo Albums. This module is dependent on photoalbum. PhotoBox 0.2.3 is the most recent version - released 1 November 2004. It ! adds the option to display the newest photo from selected photo albums, ! rather than a random photo. You could have a photo block titled, "Most ! Recent XXX". 'XXX" could be "Property", "Photo", "Baby Picture", etc. ! Another idea is to use this feature for a (pseudo) webcam or daily update ! - I.e. "Today's Conditions". In the 0.2.2 implementation, I added a control panel that allows you to change various settings including restricting photos to selected albums. This version is also internationalized and supports language files. These new features are the result of feedback from various folks. The module checks the existence of the photoalbum database. If it exists, a random thumbnail of a non-hidden photo is displayed in a block on the home page. The photo's short description is (optionally) displayed. Clicking on the photo or (optional) "View Photo" link will take you to the large photo image in the associated Photo Album. Clicking the (optional) "View Photo Album" link will take you to the parent Photo Album of the photo. A control panel is installed under the "Site Content" tab. It is accessible by users with admin privilege. It has options to display short description, "View Photo" link, "View Album" link and select albums. It also allows the admin to change the block title. Enjoy! Andy Felong Please provide feedback to <andy AT redwoodhouse DOT com>. Include the word, "photobox" in the subject. The latest version of photobox can be found at http://www.redwoodhouse.com Click on the "phpWebSite" menu. ======================================================================= INSTALLATION: If you have a previous version of photobox, use "Boost" to uninstall. Remove/delete the photobox directory in the mod directory, extract/unzip photobox-0.2.3.zip to your ./mod directory. You should end up with a ./mod/photobox-0.2.3 directory. Rename to "photobox" Use "Boost" to install... This version defaults to displaying a block on the home page and photobox control panel page. This allows for immediate feedback of selections. [default block location is right column - move if needed ] NOTE: If you should want it to show up on all pages, or wherever, you must do the following: Go into Control Panel => Developer => ModuleMaker, choose photobox and "Edit Module". If you are a developer, you can change the "allow_view" array in boost.php. ===================================================================== Things to do: Work with Galleries as well as Photo Album? \ No newline at end of file |
From: Andy F. <and...@us...> - 2004-11-03 19:58:50
|
Update of /cvsroot/phpwebsite-comm/modules/photobox/conf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26422/photobox/conf Modified Files: boost.php Log Message: Updating photobox to version 0.2.3 to add option for newest photo display Index: boost.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/photobox/conf/boost.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** boost.php 7 Oct 2004 19:44:56 -0000 1.1.1.1 --- boost.php 3 Nov 2004 19:58:28 -0000 1.2 *************** *** 27,31 **** $branch_allow = 1; ! $version = "0.2.2"; ?> \ No newline at end of file --- 27,31 ---- $branch_allow = 1; ! $version = "0.2.3"; ?> \ No newline at end of file |
From: Andy F. <and...@us...> - 2004-11-03 19:58:48
|
Update of /cvsroot/phpwebsite-comm/modules/photobox/lang In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26422/photobox/lang Modified Files: photobox.en.lng Log Message: Updating photobox to version 0.2.3 to add option for newest photo display Index: photobox.en.lng =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/photobox/lang/photobox.en.lng,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** photobox.en.lng 7 Oct 2004 19:44:56 -0000 1.1.1.1 --- photobox.en.lng 3 Nov 2004 19:58:29 -0000 1.2 *************** *** 17,20 **** --- 17,21 ---- a:|:Display view photo album link:|:Display view photo album link a:|:Restrict to photos from Albums:|:Restrict to photos from Albums + a:|:Display newest photo - not random photo:|:Display newest photo - not random photo a:|:Settings updated sucessfully:|:Settings updated sucessfully a:|:Save:|:Save |
From: Andy F. <and...@us...> - 2004-11-03 19:38:29
|
Update of /cvsroot/phpwebsite-comm/modules/photobox/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21268 Removed Files: .DS_Store Log Message: Remove Mac hidden files --- .DS_Store DELETED --- |
From: Mike N. <mh...@us...> - 2004-11-03 17:30:08
|
Update of /cvsroot/phpwebsite-comm/CVSROOT In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28079 Modified Files: avail Log Message: gave Chris Ryder write access to modules/xwysiwyg Index: avail =================================================================== RCS file: /cvsroot/phpwebsite-comm/CVSROOT/avail,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** avail 31 Oct 2004 00:39:58 -0000 1.38 --- avail 3 Nov 2004 17:29:43 -0000 1.39 *************** *** 21,25 **** avail|adarkling|modules/wiki avail|gbrackett|modules/uplink ! avail|ykuendig|modules/xwysiwyg avail|neoamphian|themes/blogged --- 21,25 ---- avail|adarkling|modules/wiki avail|gbrackett|modules/uplink ! avail|chrisryder, ykuendig|modules/xwysiwyg avail|neoamphian|themes/blogged |
From: Yves K. <yku...@us...> - 2004-11-02 22:44:10
|
Update of /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/dialog In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22532/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/dialog Modified Files: fck_about.html fck_colorselector.html fck_image.html fck_link.html fck_paste.html fck_smiley.html fck_specialchar.html fck_table.html fck_tablecell.html Log Message: unix saving Index: fck_colorselector.html =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/dialog/fck_colorselector.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fck_colorselector.html 25 Oct 2004 18:10:26 -0000 1.1.1.1 --- fck_colorselector.html 2 Nov 2004 22:44:00 -0000 1.2 *************** *** 1,171 **** <!-- ! * 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_colorselector.html ! * Color Selection dialog window. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-09-01 00:02:08 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <html> ! <head> ! <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> ! <meta name="robots" content="noindex, nofollow" /> ! <style TYPE="text/css"> ! #ColorTable { cursor: pointer ; cursor: hand ; } ! #hicolor { height: 74px ; width: 74px ; border-width: 1px ; border-style: solid ; } ! #hicolortext { width: 75px ; text-align: right ; margin-bottom: 7px ; } ! #selhicolor { height: 20px ; width: 74px ; border-width: 1px ; border-style: solid ; } ! #selcolor { width: 75px ; height: 20px ; margin-top: 0px ; margin-bottom: 7px ; } ! #btnClear { width: 75px ; height: 22px ; margin-bottom: 6px ; } ! .ColorCell { height: 15px ; width: 15px ; } ! </style> ! <script type="text/javascript"> ! ! var dialogArguments = window.parent.InnerDialogLoaded() ; ! ! // Sets the Skin CSS ! document.write( '<link href="' + dialogArguments.FCKConfig.SkinPath + 'fck_dialog.css" type="text/css" rel="stylesheet">' ) ; ! ! function OnLoad() ! { ! // First of all, translate the dialog box texts ! dialogArguments.FCKLanguageManager.TranslatePage(document) ; ! ! CreateColorTable() ; ! ! window.parent.SetOkButton( true ) ; ! window.parent.SetScrollBar( false ) ; ! } ! ! function CreateColorTable() ! { ! // Get the target table. ! var oTable = document.getElementById('ColorTable') ; ! ! // Create the base colors array. ! var aColors = ['00','33','66','99','cc','ff'] ; ! ! // This function combines two ranges of three values from the color array into a row. ! function AppendColorRow( rangeA, rangeB ) ! { ! for ( var i = rangeA ; i < rangeA + 3 ; i++ ) ! { ! var oRow = oTable.insertRow(-1) ; ! ! for ( var j = rangeB ; j < rangeB + 3 ; j++ ) ! { ! for ( var n = 0 ; n < 6 ; n++ ) ! { ! AppendColorCell( oRow, '#' + aColors[j] + aColors[n] + aColors[i] ) ; ! } ! } ! } ! } ! ! // This function create a single color cell in the color table. ! function AppendColorCell( targetRow, color ) ! { ! var oCell = targetRow.insertCell(-1) ; ! oCell.className = 'ColorCell' ; ! oCell.bgColor = color ; ! ! oCell.onmouseover = function() ! { ! document.getElementById('hicolor').style.backgroundColor = this.bgColor ; ! document.getElementById('hicolortext').innerHTML = this.bgColor ; ! } ! ! oCell.onclick = function() ! { ! document.getElementById('selhicolor').style.backgroundColor = this.bgColor ; ! document.getElementById('selcolor').value = this.bgColor ; ! } ! } ! ! AppendColorRow( 0, 0 ) ; ! AppendColorRow( 3, 0 ) ; ! AppendColorRow( 0, 3 ) ; ! AppendColorRow( 3, 3 ) ; ! ! // Create the last row. ! var oRow = oTable.insertRow(-1) ; ! ! // Create the gray scale colors cells. ! for ( var n = 0 ; n < 6 ; n++ ) ! { ! AppendColorCell( oRow, '#' + aColors[n] + aColors[n] + aColors[n] ) ; ! } ! ! // Fill the row with black cells. ! for ( var i = 0 ; i < 12 ; i++ ) ! { ! AppendColorCell( oRow, '#000000' ) ; ! } ! } ! ! function Clear() ! { ! document.getElementById('selhicolor').style.backgroundColor = '' ; ! document.getElementById('selcolor').value = '' ; ! } ! ! function ClearActual() ! { ! document.getElementById('hicolor').style.backgroundColor = '' ; ! document.getElementById('hicolortext').innerHTML = ' ' ; ! } ! ! function UpdateColor() ! { ! try { document.getElementById('selhicolor').style.backgroundColor = document.getElementById('selcolor').value ; } ! catch (e) { Clear() ; } ! } ! ! function Ok() ! { ! if ( typeof(window.parent.dialogArguments.CustomValue) == 'function' ) ! window.parent.dialogArguments.CustomValue( document.getElementById('selcolor').value ) ; ! ! return true ; ! } ! </script> ! </head> ! <body onload="OnLoad()" scroll="no"> ! <table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%"> ! <tr> ! <td align="center" valign="middle"> ! <table border="0" cellspacing="5" cellpadding="0" width="100%"> ! <tr> ! <td valign="top" align="center" nowrap width="100%"> ! <table id="ColorTable" border="0" cellspacing="0" cellpadding="0" width="270" onmouseout="ClearActual();"> ! </table> ! </td> ! <td valign="top" align="left" nowrap> ! <span fckLang="DlgColorHighlight">Highlight</span> ! <div id="hicolor"></div> ! <div id="hicolortext"> </div> ! <span fckLang="DlgColorSelected">Selected</span> ! <div id="selhicolor"></div> ! <input id="selcolor" type="text" maxlength="20" onchange="UpdateColor();"> ! <br> ! <input id="btnClear" type="button" fckLang="DlgColorBtnClear" value="Clear" onclick="Clear();" /> ! </td> ! </tr> ! </table> ! </td> ! </tr> ! </table> ! </body> ! </html> --- 1,171 ---- <!-- ! * 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_colorselector.html ! * Color Selection dialog window. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-09-01 00:02:08 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <html> ! <head> ! <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> ! <meta name="robots" content="noindex, nofollow" /> ! <style TYPE="text/css"> ! #ColorTable { cursor: pointer ; cursor: hand ; } ! #hicolor { height: 74px ; width: 74px ; border-width: 1px ; border-style: solid ; } ! #hicolortext { width: 75px ; text-align: right ; margin-bottom: 7px ; } ! #selhicolor { height: 20px ; width: 74px ; border-width: 1px ; border-style: solid ; } ! #selcolor { width: 75px ; height: 20px ; margin-top: 0px ; margin-bottom: 7px ; } ! #btnClear { width: 75px ; height: 22px ; margin-bottom: 6px ; } ! .ColorCell { height: 15px ; width: 15px ; } ! </style> ! <script type="text/javascript"> ! ! var dialogArguments = window.parent.InnerDialogLoaded() ; ! ! // Sets the Skin CSS ! document.write( '<link href="' + dialogArguments.FCKConfig.SkinPath + 'fck_dialog.css" type="text/css" rel="stylesheet">' ) ; ! ! function OnLoad() ! { ! // First of all, translate the dialog box texts ! dialogArguments.FCKLanguageManager.TranslatePage(document) ; ! ! CreateColorTable() ; ! ! window.parent.SetOkButton( true ) ; ! window.parent.SetScrollBar( false ) ; ! } ! ! function CreateColorTable() ! { ! // Get the target table. ! var oTable = document.getElementById('ColorTable') ; ! ! // Create the base colors array. ! var aColors = ['00','33','66','99','cc','ff'] ; ! ! // This function combines two ranges of three values from the color array into a row. ! function AppendColorRow( rangeA, rangeB ) ! { ! for ( var i = rangeA ; i < rangeA + 3 ; i++ ) ! { ! var oRow = oTable.insertRow(-1) ; ! ! for ( var j = rangeB ; j < rangeB + 3 ; j++ ) ! { ! for ( var n = 0 ; n < 6 ; n++ ) ! { ! AppendColorCell( oRow, '#' + aColors[j] + aColors[n] + aColors[i] ) ; ! } ! } ! } ! } ! ! // This function create a single color cell in the color table. ! function AppendColorCell( targetRow, color ) ! { ! var oCell = targetRow.insertCell(-1) ; ! oCell.className = 'ColorCell' ; ! oCell.bgColor = color ; ! ! oCell.onmouseover = function() ! { ! document.getElementById('hicolor').style.backgroundColor = this.bgColor ; ! document.getElementById('hicolortext').innerHTML = this.bgColor ; ! } ! ! oCell.onclick = function() ! { ! document.getElementById('selhicolor').style.backgroundColor = this.bgColor ; ! document.getElementById('selcolor').value = this.bgColor ; ! } ! } ! ! AppendColorRow( 0, 0 ) ; ! AppendColorRow( 3, 0 ) ; ! AppendColorRow( 0, 3 ) ; ! AppendColorRow( 3, 3 ) ; ! ! // Create the last row. ! var oRow = oTable.insertRow(-1) ; ! ! // Create the gray scale colors cells. ! for ( var n = 0 ; n < 6 ; n++ ) ! { ! AppendColorCell( oRow, '#' + aColors[n] + aColors[n] + aColors[n] ) ; ! } ! ! // Fill the row with black cells. ! for ( var i = 0 ; i < 12 ; i++ ) ! { ! AppendColorCell( oRow, '#000000' ) ; ! } ! } ! ! function Clear() ! { ! document.getElementById('selhicolor').style.backgroundColor = '' ; ! document.getElementById('selcolor').value = '' ; ! } ! ! function ClearActual() ! { ! document.getElementById('hicolor').style.backgroundColor = '' ; ! document.getElementById('hicolortext').innerHTML = ' ' ; ! } ! ! function UpdateColor() ! { ! try { document.getElementById('selhicolor').style.backgroundColor = document.getElementById('selcolor').value ; } ! catch (e) { Clear() ; } ! } ! ! function Ok() ! { ! if ( typeof(window.parent.dialogArguments.CustomValue) == 'function' ) ! window.parent.dialogArguments.CustomValue( document.getElementById('selcolor').value ) ; ! ! return true ; ! } ! </script> ! </head> ! <body onload="OnLoad()" scroll="no"> ! <table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%"> ! <tr> ! <td align="center" valign="middle"> ! <table border="0" cellspacing="5" cellpadding="0" width="100%"> ! <tr> ! <td valign="top" align="center" nowrap width="100%"> ! <table id="ColorTable" border="0" cellspacing="0" cellpadding="0" width="270" onmouseout="ClearActual();"> ! </table> ! </td> ! <td valign="top" align="left" nowrap> ! <span fckLang="DlgColorHighlight">Highlight</span> ! <div id="hicolor"></div> ! <div id="hicolortext"> </div> ! <span fckLang="DlgColorSelected">Selected</span> ! <div id="selhicolor"></div> ! <input id="selcolor" type="text" maxlength="20" onchange="UpdateColor();"> ! <br> ! <input id="btnClear" type="button" fckLang="DlgColorBtnClear" value="Clear" onclick="Clear();" /> ! </td> ! </tr> ! </table> ! </td> ! </tr> ! </table> ! </body> ! </html> \ No newline at end of file Index: fck_table.html =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/dialog/fck_table.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fck_table.html 25 Oct 2004 18:10:22 -0000 1.1.1.1 --- fck_table.html 2 Nov 2004 22:44:00 -0000 1.2 *************** *** 1,250 **** <!-- ! * 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_table.html ! * Table dialog window. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-09-03 09:52:12 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <html> ! <head> ! <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> ! <script type="text/javascript"> ! <!-- ! var dialogArguments = window.parent.InnerDialogLoaded() ; ! ! // Sets the Skin CSS ! document.write( '<link href="' + dialogArguments.FCKConfig.SkinPath + 'fck_dialog.css" type="text/css" rel="stylesheet">' ) ; ! ! // Gets the document DOM ! var oDOM = dialogArguments.FCK.EditorDocument ; ! ! // Gets the table if there is one selected. ! var table ; ! var e = dialogArguments.FCKSelection.GetSelectedElement() ; ! ! if ( ! e && document.location.search.substr(1) == 'Parent' ) ! e = dialogArguments.FCKSelection.MoveToAncestorNode( 'TABLE' ) ; ! ! if ( e && e.tagName == "TABLE" ) ! table = e ; ! ! // Fired when the window loading process is finished. It sets the fields with the ! // actual values if a table is selected in the editor. ! function OnLoad() ! { ! // First of all, translate the dialog box texts ! dialogArguments.FCKLanguageManager.TranslatePage(document) ; ! ! if (table) ! { ! document.getElementById('txtRows').value = table.rows.length ; ! document.getElementById('txtColumns').value = table.rows[0].cells.length ; ! ! // Gets the value from the Width or the Style attribute ! var iWidth = (table.style.width ? table.style.width : table.width ) ; ! var iHeight = (table.style.height ? table.style.height : table.height ) ; ! ! if (iWidth.indexOf('%') >= 0) // Percentual = % ! { ! iWidth = parseInt( iWidth.substr(0,iWidth.length - 1) ) ; ! document.getElementById('selWidthType').value = "percent" ; ! } ! else if (iWidth.indexOf('px') >= 0) // Style Pixel = px ! { // ! iWidth = iWidth.substr(0,iWidth.length - 2); ! document.getElementById('selWidthType').value = "pixels" ; ! } ! ! if (iHeight && iHeight.indexOf('px') >= 0) // Style Pixel = px ! iHeight = iHeight.substr(0,iHeight.length - 2); ! ! document.getElementById('txtWidth').value = iWidth ; ! document.getElementById('txtHeight').value = iHeight ; ! document.getElementById('txtBorder').value = table.border ; ! document.getElementById('selAlignment').value = table.align ; ! document.getElementById('txtCellPadding').value = table.cellPadding ; ! document.getElementById('txtCellSpacing').value = table.cellSpacing ; ! // document.getElementById('cmbFontStyle').value = table.className ; ! ! if (table.caption) document.getElementById('txtCaption').value = table.caption.innerText ; ! ! document.getElementById('txtRows').disabled = true ; ! document.getElementById('txtColumns').disabled = true ; ! } ! ! window.parent.SetOkButton( true ) ; ! } ! ! // Fired when the user press the OK button ! function Ok() ! { ! var bExists = ( table != null ) ; ! ! if ( ! bExists ) ! { ! table = document.createElement( "TABLE" ) ; ! } ! ! // Removes the Width and Height styles ! if ( bExists && table.style.width ) table.style.removeAttribute("width") ; ! if ( bExists && table.style.height ) table.style.removeAttribute("height") ; ! ! table.width = document.getElementById('txtWidth').value + ( document.getElementById('selWidthType').value == "percent" ? "%" : "") ; ! table.height = document.getElementById('txtHeight').value ; ! table.border = document.getElementById('txtBorder').value ; ! table.align = document.getElementById('selAlignment').value ; ! table.cellPadding = document.getElementById('txtCellPadding').value ; ! table.cellSpacing = document.getElementById('txtCellSpacing').value ; ! // table.className = cmbFontStyle.value ; ! ! if ( document.getElementById('txtCaption').value != '') ! { ! if (! table.caption) table.createCaption() ; ! table.caption.innerText = document.getElementById('txtCaption').value ; ! } ! // else if ( bExists && table.caption ) ! // table.deleteCaption() ; // TODO: It causes an IE internal error. ! ! if (! bExists) ! { ! var iRows = document.getElementById('txtRows').value ; ! var iCols = document.getElementById('txtColumns').value ; ! ! for ( var r = 0 ; r < iRows ; r++ ) ! { ! var oRow = table.insertRow(-1) ; ! for ( var c = 0 ; c < iCols ; c++ ) ! { ! var oCell = oRow.insertCell(-1) ; ! oCell.innerHTML = " " ; ! } ! } ! ! dialogArguments.FCK.InsertElement( table ) ; ! } ! ! return true ; ! } ! ! function IsDigit( e ) ! { ! e = e || event ; ! var iCode = ( e.keyCode || e.charCode ) ; ! return ! ( ! ( iCode >= 48 && iCode <= 57 ) // Numbers ! || (iCode >= 37 && iCode <= 40) // Arrows ! || iCode == 8 // Backspace ! || iCode == 46 // Delete ! ) ; ! } ! //--> ! </script> ! </head> ! <body bottommargin="5" leftmargin="5" topmargin="5" rightmargin="5" onload="OnLoad()"> ! <table id="otable" cellSpacing="0" cellPadding="0" width="100%" border="0" height="100%"> ! <tr> ! <td> ! <table cellSpacing="1" cellPadding="1" width="100%" border="0"> ! <tr> ! <td valign="top"> ! <table cellSpacing="0" cellPadding="0" border="0"> ! <tr> ! <td><span fckLang="DlgTableRows">Rows</span>:</td> ! <td> <input id="txtRows" type="text" maxLength="3" size="2" value="3" name="txtRows" onkeypress="return IsDigit(event);"></td> ! </tr> ! <tr> ! <td><span fckLang="DlgTableColumns">Columns</span>:</td> ! <td> <input id="txtColumns" type="text" maxLength="2" size="2" value="2" name="txtColumns" onkeypress="return IsDigit(event);"></td> ! </tr> ! <tr> ! <td> </td> ! <td> </td> ! </tr> ! <tr> ! <td><span fckLang="DlgTableBorder">Border size</span>:</td> ! <td> <INPUT id="txtBorder" type="text" maxLength="2" size="2" value="1" name="txtBorder" onkeypress="return IsDigit(event);"></td> ! </tr> ! <tr> ! <td><span fckLang="DlgTableAlign">Alignment</span>:</td> ! <td> <select id="selAlignment" name="selAlignment"> ! <option fckLang="DlgTableAlignNotSet" value="" selected><Not set></option> ! <option fckLang="DlgTableAlignLeft" value="left">Left</option> ! <option fckLang="DlgTableAlignCenter" value="center">Center</option> ! <option fckLang="DlgTableAlignRight" value="right">Right</option> ! </select></td> ! </tr> ! </table> ! </td> ! <td> </td> ! <td align="right" valign="top"> ! <table cellSpacing="0" cellPadding="0" border="0"> ! <tr> ! <td><span fckLang="DlgTableWidth">Width</span>:</td> ! <td> <input id="txtWidth" type="text" maxLength="4" size="3" value="200" name="txtWidth" onkeypress="return IsDigit(event);"></td> ! <td> <select id="selWidthType" name="selWidthType"> ! <option fckLang="DlgTableWidthPx" value="pixels" selected>pixels</option> ! <option fckLang="DlgTableWidthPc" value="percent">percent</option> ! </select></td> ! </tr> ! <tr> ! <td><span fckLang="DlgTableHeight">Height</span>:</td> ! <td> <INPUT id="txtHeight" type="text" maxLength="4" size="3" name="txtHeight" onkeypress="return IsDigit(event);"></td> ! <td> <span fckLang="DlgTableWidthPx">pixels</span></td> ! </tr> ! <tr> ! <td> </td> ! <td> </td> ! <td> </td> ! </tr> ! <tr> ! <td nowrap><span fckLang="DlgTableCellSpace">Cell spacing</span>:</td> ! <td> <input id="txtCellSpacing" type="text" maxLength="2" size="2" value="1" name="txtCellSpacing" ! onkeypress="return IsDigit(event);"></td> ! <td> </td> ! </tr> ! <tr> ! <td nowrap><span fckLang="DlgTableCellPad">Cell padding</span>:</td> ! <td> <input id="txtCellPadding" type="text" maxLength="2" size="2" value="1" name="txtCellPadding" ! onkeypress="return IsDigit(event);"></td> ! <td> </td> ! </tr> ! </table> ! </td> ! </tr> ! </table> ! <table cellSpacing="0" cellPadding="0" width="100%" border="0" ID="Table1"> ! <tr> ! <td nowrap><span fcklang="DlgClassName">Class Name</span>:</td> ! <td> </td> ! <td> ! <script type="text/javascript"> ! // var tbstyles = new TBCombo( "FontStyle" , "null" , "", dialogArguments.config.StyleNames, dialogArguments.config.StyleValues, 'CheckStyle("cmbFontStyle")'); ! // document.write(tbstyles.GetHTML()); ! </script></td> ! </tr> ! <tr> ! <td><span fckLang="DlgTableCaption">Caption</span>:</td> ! <td> </td> ! <td width="100%"> ! <input id="txtCaption" type="text" style="WIDTH: 100%"></td> ! </tr> ! </table> ! </td> ! </tr> ! </table> ! </body> ! </html> --- 1,250 ---- <!-- ! * 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_table.html ! * Table dialog window. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-09-03 09:52:12 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <html> ! <head> ! <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> ! <script type="text/javascript"> ! <!-- ! var dialogArguments = window.parent.InnerDialogLoaded() ; ! ! // Sets the Skin CSS ! document.write( '<link href="' + dialogArguments.FCKConfig.SkinPath + 'fck_dialog.css" type="text/css" rel="stylesheet">' ) ; ! ! // Gets the document DOM ! var oDOM = dialogArguments.FCK.EditorDocument ; ! ! // Gets the table if there is one selected. ! var table ; ! var e = dialogArguments.FCKSelection.GetSelectedElement() ; ! ! if ( ! e && document.location.search.substr(1) == 'Parent' ) ! e = dialogArguments.FCKSelection.MoveToAncestorNode( 'TABLE' ) ; ! ! if ( e && e.tagName == "TABLE" ) ! table = e ; ! ! // Fired when the window loading process is finished. It sets the fields with the ! // actual values if a table is selected in the editor. ! function OnLoad() ! { ! // First of all, translate the dialog box texts ! dialogArguments.FCKLanguageManager.TranslatePage(document) ; ! ! if (table) ! { ! document.getElementById('txtRows').value = table.rows.length ; ! document.getElementById('txtColumns').value = table.rows[0].cells.length ; ! ! // Gets the value from the Width or the Style attribute ! var iWidth = (table.style.width ? table.style.width : table.width ) ; ! var iHeight = (table.style.height ? table.style.height : table.height ) ; ! ! if (iWidth.indexOf('%') >= 0) // Percentual = % ! { ! iWidth = parseInt( iWidth.substr(0,iWidth.length - 1) ) ; ! document.getElementById('selWidthType').value = "percent" ; ! } ! else if (iWidth.indexOf('px') >= 0) // Style Pixel = px ! { // ! iWidth = iWidth.substr(0,iWidth.length - 2); ! document.getElementById('selWidthType').value = "pixels" ; ! } ! ! if (iHeight && iHeight.indexOf('px') >= 0) // Style Pixel = px ! iHeight = iHeight.substr(0,iHeight.length - 2); ! ! document.getElementById('txtWidth').value = iWidth ; ! document.getElementById('txtHeight').value = iHeight ; ! document.getElementById('txtBorder').value = table.border ; ! document.getElementById('selAlignment').value = table.align ; ! document.getElementById('txtCellPadding').value = table.cellPadding ; ! document.getElementById('txtCellSpacing').value = table.cellSpacing ; ! // document.getElementById('cmbFontStyle').value = table.className ; ! ! if (table.caption) document.getElementById('txtCaption').value = table.caption.innerText ; ! ! document.getElementById('txtRows').disabled = true ; ! document.getElementById('txtColumns').disabled = true ; ! } ! ! window.parent.SetOkButton( true ) ; ! } ! ! // Fired when the user press the OK button ! function Ok() ! { ! var bExists = ( table != null ) ; ! ! if ( ! bExists ) ! { ! table = document.createElement( "TABLE" ) ; ! } ! ! // Removes the Width and Height styles ! if ( bExists && table.style.width ) table.style.removeAttribute("width") ; ! if ( bExists && table.style.height ) table.style.removeAttribute("height") ; ! ! table.width = document.getElementById('txtWidth').value + ( document.getElementById('selWidthType').value == "percent" ? "%" : "") ; ! table.height = document.getElementById('txtHeight').value ; ! table.border = document.getElementById('txtBorder').value ; ! table.align = document.getElementById('selAlignment').value ; ! table.cellPadding = document.getElementById('txtCellPadding').value ; ! table.cellSpacing = document.getElementById('txtCellSpacing').value ; ! // table.className = cmbFontStyle.value ; ! ! if ( document.getElementById('txtCaption').value != '') ! { ! if (! table.caption) table.createCaption() ; ! table.caption.innerText = document.getElementById('txtCaption').value ; ! } ! // else if ( bExists && table.caption ) ! // table.deleteCaption() ; // TODO: It causes an IE internal error. ! ! if (! bExists) ! { ! var iRows = document.getElementById('txtRows').value ; ! var iCols = document.getElementById('txtColumns').value ; ! ! for ( var r = 0 ; r < iRows ; r++ ) ! { ! var oRow = table.insertRow(-1) ; ! for ( var c = 0 ; c < iCols ; c++ ) ! { ! var oCell = oRow.insertCell(-1) ; ! oCell.innerHTML = " " ; ! } ! } ! ! dialogArguments.FCK.InsertElement( table ) ; ! } ! ! return true ; ! } ! ! function IsDigit( e ) ! { ! e = e || event ; ! var iCode = ( e.keyCode || e.charCode ) ; ! return ! ( ! ( iCode >= 48 && iCode <= 57 ) // Numbers ! || (iCode >= 37 && iCode <= 40) // Arrows ! || iCode == 8 // Backspace ! || iCode == 46 // Delete ! ) ; ! } ! //--> ! </script> ! </head> ! <body bottommargin="5" leftmargin="5" topmargin="5" rightmargin="5" onload="OnLoad()"> ! <table id="otable" cellSpacing="0" cellPadding="0" width="100%" border="0" height="100%"> ! <tr> ! <td> ! <table cellSpacing="1" cellPadding="1" width="100%" border="0"> ! <tr> ! <td valign="top"> ! <table cellSpacing="0" cellPadding="0" border="0"> ! <tr> ! <td><span fckLang="DlgTableRows">Rows</span>:</td> ! <td> <input id="txtRows" type="text" maxLength="3" size="2" value="3" name="txtRows" onkeypress="return IsDigit(event);"></td> ! </tr> ! <tr> ! <td><span fckLang="DlgTableColumns">Columns</span>:</td> ! <td> <input id="txtColumns" type="text" maxLength="2" size="2" value="2" name="txtColumns" onkeypress="return IsDigit(event);"></td> ! </tr> ! <tr> ! <td> </td> ! <td> </td> ! </tr> ! <tr> ! <td><span fckLang="DlgTableBorder">Border size</span>:</td> ! <td> <INPUT id="txtBorder" type="text" maxLength="2" size="2" value="1" name="txtBorder" onkeypress="return IsDigit(event);"></td> ! </tr> ! <tr> ! <td><span fckLang="DlgTableAlign">Alignment</span>:</td> ! <td> <select id="selAlignment" name="selAlignment"> ! <option fckLang="DlgTableAlignNotSet" value="" selected><Not set></option> ! <option fckLang="DlgTableAlignLeft" value="left">Left</option> ! <option fckLang="DlgTableAlignCenter" value="center">Center</option> ! <option fckLang="DlgTableAlignRight" value="right">Right</option> ! </select></td> ! </tr> ! </table> ! </td> ! <td> </td> ! <td align="right" valign="top"> ! <table cellSpacing="0" cellPadding="0" border="0"> ! <tr> ! <td><span fckLang="DlgTableWidth">Width</span>:</td> ! <td> <input id="txtWidth" type="text" maxLength="4" size="3" value="200" name="txtWidth" onkeypress="return IsDigit(event);"></td> ! <td> <select id="selWidthType" name="selWidthType"> ! <option fckLang="DlgTableWidthPx" value="pixels" selected>pixels</option> ! <option fckLang="DlgTableWidthPc" value="percent">percent</option> ! </select></td> ! </tr> ! <tr> ! <td><span fckLang="DlgTableHeight">Height</span>:</td> ! <td> <INPUT id="txtHeight" type="text" maxLength="4" size="3" name="txtHeight" onkeypress="return IsDigit(event);"></td> ! <td> <span fckLang="DlgTableWidthPx">pixels</span></td> ! </tr> ! <tr> ! <td> </td> ! <td> </td> ! <td> </td> ! </tr> ! <tr> ! <td nowrap><span fckLang="DlgTableCellSpace">Cell spacing</span>:</td> ! <td> <input id="txtCellSpacing" type="text" maxLength="2" size="2" value="1" name="txtCellSpacing" ! onkeypress="return IsDigit(event);"></td> ! <td> </td> ! </tr> ! <tr> ! <td nowrap><span fckLang="DlgTableCellPad">Cell padding</span>:</td> ! <td> <input id="txtCellPadding" type="text" maxLength="2" size="2" value="1" name="txtCellPadding" ! onkeypress="return IsDigit(event);"></td> ! <td> </td> ! </tr> ! </table> ! </td> ! </tr> ! </table> ! <table cellSpacing="0" cellPadding="0" width="100%" border="0" ID="Table1"> ! <tr> ! <td nowrap><span fcklang="DlgClassName">Class Name</span>:</td> ! <td> </td> ! <td> ! <script type="text/javascript"> ! // var tbstyles = new TBCombo( "FontStyle" , "null" , "", dialogArguments.config.StyleNames, dialogArguments.config.StyleValues, 'CheckStyle("cmbFontStyle")'); ! // document.write(tbstyles.GetHTML()); ! </script></td> ! </tr> ! <tr> ! <td><span fckLang="DlgTableCaption">Caption</span>:</td> ! <td> </td> ! <td width="100%"> ! <input id="txtCaption" type="text" style="WIDTH: 100%"></td> ! </tr> ! </table> ! </td> ! </tr> ! </table> ! </body> ! </html> \ No newline at end of file Index: fck_about.html =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/dialog/fck_about.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fck_about.html 25 Oct 2004 18:10:23 -0000 1.1.1.1 --- fck_about.html 2 Nov 2004 22:44:00 -0000 1.2 *************** *** 1,94 **** <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!-- ! * FCKeditor - The text editor for internet ! * Copyright (C) 2003-2004 Frederico Caldeira Knabben ! * ! * Licensed under the terms of the GNU Lesser General Public License: ! * http://www.opensource.org/licenses/lgpl-license.php ! * ! * For further information visit: ! * http://www.fckeditor.net/ ! * ! * File Name: fck_about.html ! * About dialog window. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-31 23:07:51 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <html> ! <head> ! <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> ! <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> ! <meta name="robots" content="noindex, nofollow"> ! <script language="javascript"> ! <!-- ! var oEditor = window.parent.InnerDialogLoaded() ; ! ! // Set the language direction. ! window.document.dir = oEditor.FCKLang.Dir ; ! ! // Set the Skin CSS. ! document.write( '<link href="' + oEditor.FCKConfig.SkinPath + 'fck_dialog.css" type="text/css" rel="stylesheet">' ) ; ! ! function SendEMail() ! { ! var eMail = 'mailto:' ; ! eMail += 'fredck' ; ! eMail += '@' ; ! eMail += 'fckeditor' ; ! eMail += '.' ; ! eMail += 'net' ; ! ! window.location = eMail ; ! } ! ! window.onload = function() ! { ! // Translate the dialog box texts. ! oEditor.FCKLanguageManager.TranslatePage(document) ; ! } ! ! //--> ! </script> ! </head> ! <body scroll="no"> ! <table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%"> ! <tr> ! <td> ! <img alt="" src="images/logo_fckeditor.gif" width="236" height="41" align="left"> ! <table width="80" border="0" cellspacing="0" cellpadding="5" bgcolor="#ffffff" align="right"> ! <tr> ! <td align="center" style="BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid; BORDER-LEFT: #000000 1px solid; BORDER-BOTTOM: #000000 1px solid"> ! <span fckLang="DlgAboutVersion">version</span> ! <br> ! <b>2.0 Beta 2</b></td> ! </tr> ! </table> ! </td> ! </tr> ! <tr height="100%"> ! <td align="center"> ! Copyright (C) 2003-2004 <a href="#" onclick="SendEMail();">Frederico Caldeira ! Knabben</a> ! <br> ! <br> ! <span fckLang="DlgAboutLicense">Licensed under the terms of the GNU Lesser General ! Public License</span> ! <br> ! <a href="http://www.opensource.org/licenses/lgpl-license.php" target="_blank">http://www.opensource.org/licenses/lgpl-license.php</a> ! <br> ! <br> ! <span fckLang="DlgAboutInfo">For further information go to</span> <a href="http://www.fckeditor.net/" target="_blank"> ! http://www.fckeditor.net/</a>. ! </td> ! </tr> ! <tr> ! <td align="center"> ! <img alt="" src="images/logo_fredck.gif" width="87" height="36"> ! </td> ! </tr> ! </table> ! </body> ! </html> --- 1,94 ---- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!-- ! * FCKeditor - The text editor for internet ! * Copyright (C) 2003-2004 Frederico Caldeira Knabben ! * ! * Licensed under the terms of the GNU Lesser General Public License: ! * http://www.opensource.org/licenses/lgpl-license.php ! * ! * For further information visit: ! * http://www.fckeditor.net/ ! * ! * File Name: fck_about.html ! * About dialog window. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-31 23:07:51 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <html> ! <head> ! <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> ! <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> ! <meta name="robots" content="noindex, nofollow"> ! <script language="javascript"> ! <!-- ! var oEditor = window.parent.InnerDialogLoaded() ; ! ! // Set the language direction. ! window.document.dir = oEditor.FCKLang.Dir ; ! ! // Set the Skin CSS. ! document.write( '<link href="' + oEditor.FCKConfig.SkinPath + 'fck_dialog.css" type="text/css" rel="stylesheet">' ) ; ! ! function SendEMail() ! { ! var eMail = 'mailto:' ; ! eMail += 'fredck' ; ! eMail += '@' ; ! eMail += 'fckeditor' ; ! eMail += '.' ; ! eMail += 'net' ; ! ! window.location = eMail ; ! } ! ! window.onload = function() ! { ! // Translate the dialog box texts. ! oEditor.FCKLanguageManager.TranslatePage(document) ; ! } ! ! //--> ! </script> ! </head> ! <body scroll="no"> ! <table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%"> ! <tr> ! <td> ! <img alt="" src="images/logo_fckeditor.gif" width="236" height="41" align="left"> ! <table width="80" border="0" cellspacing="0" cellpadding="5" bgcolor="#ffffff" align="right"> ! <tr> ! <td align="center" style="BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid; BORDER-LEFT: #000000 1px solid; BORDER-BOTTOM: #000000 1px solid"> ! <span fckLang="DlgAboutVersion">version</span> ! <br> ! <b>2.0 Beta 2</b></td> ! </tr> ! </table> ! </td> ! </tr> ! <tr height="100%"> ! <td align="center"> ! Copyright (C) 2003-2004 <a href="#" onclick="SendEMail();">Frederico Caldeira ! Knabben</a> ! <br> ! <br> ! <span fckLang="DlgAboutLicense">Licensed under the terms of the GNU Lesser General ! Public License</span> ! <br> ! <a href="http://www.opensource.org/licenses/lgpl-license.php" target="_blank">http://www.opensource.org/licenses/lgpl-license.php</a> ! <br> ! <br> ! <span fckLang="DlgAboutInfo">For further information go to</span> <a href="http://www.fckeditor.net/" target="_blank"> ! http://www.fckeditor.net/</a>. ! </td> ! </tr> ! <tr> ! <td align="center"> ! <img alt="" src="images/logo_fredck.gif" width="87" height="36"> ! </td> ! </tr> ! </table> ! </body> ! </html> \ No newline at end of file Index: fck_image.html =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/dialog/fck_image.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fck_image.html 25 Oct 2004 18:10:39 -0000 1.1.1.1 --- fck_image.html 2 Nov 2004 22:44:00 -0000 1.2 *************** *** 1,204 **** <!-- ! * 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_image.html ! * Image Properties dialog window. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-06-19 00:24:56 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <html> ! <head> ! <title>Image Properties</title> ! <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> ! <meta name="robots" content="noindex, nofollow"> ! <script src="js/fck_dialog_common.js" type="text/javascript"></script> ! <script src="js/fck_image.js" type="text/javascript"></script> ! <link href="css/common.css" rel="stylesheet" type="text/css" /> ! </head> ! <body scroll="no"> ! <div id="divInfo"> ! <table cellspacing="1" cellpadding="1" border="0" width="100%" height="100%"> ! <tr> ! <td> ! <table cellspacing="0" cellpadding="0" width="100%" border="0"> ! <tr> ! <td valign="top" width="100%"> ! <span fckLang="DlgImgURL">URL</span><br> ! <input id="txtURL" style="WIDTH: 100%" type="text" onblur="UpdatePreview();"> ! </td> ! <td id="tdBrowse" style="DISPLAY: none" nowrap> ! ! <input id="btnBrowse" onclick="BrowseServer();" type="button" ! value="Browse Server" fckLang="DlgImgBtnBrowse"> ! </td> ! </tr> ! </table> ! </td> ! </tr> ! <tr> ! <td> ! <span fckLang="DlgImgAlt">Short Description</span><br> ! <input id="txtAlt" style="WIDTH: 100%" type="text"><br> ! </td> ! </tr> ! <tr height="100%"> ! <td valign="top"> ! <table cellspacing="0" cellpadding="0" width="100%" border="0" height="100%"> ! <tr> ! <td valign="top"> ! <br> ! <table cellspacing="0" cellpadding="0" border="0"> ! <tr> ! <td><span fckLang="DlgImgWidth">Width</span> </td> ! <td> ! <input type="text" size="3" id="txtWidth" onkeyup="OnSizeChanged('Width',this.value);"></td> ! <td rowspan="2"> ! <div class="BtnLocked" onmouseover="this.className = (bLockRatio ? 'BtnLocked' : 'BtnUnlocked' ) + ' BtnOver';" onmouseout="this.className = (bLockRatio ? 'BtnLocked' : 'BtnUnlocked' );" ! title="Lock Sizes" onclick="SwitchLock(this);"></div> ! <div class="BtnReset" onmouseover="this.className='BtnReset BtnOver';" onmouseout="this.className='BtnReset';" ! title="Reset Size" onclick="ResetSizes();"></div> ! </td> ! </tr> ! <tr> ! <td><span fckLang="DlgImgHeight">Height</span> </td> ! <td> ! <input type="text" size="3" id="txtHeight" onkeyup="OnSizeChanged('Height',this.value);"></td> ! </tr> ! </table> ! <br> ! <table cellspacing="0" cellpadding="0" border="0"> ! <tr> ! <td><span fckLang="DlgImgBorder">Border</span> </td> ! <td> ! <input type="text" size="2" value="" id="txtBorder" onkeyup="UpdatePreview();"></td> ! </tr> ! <tr> ! <td><span fckLang="DlgImgHSpace">HSpace</span> </td> ! <td> ! <input type="text" size="2" id="txtHSpace" onkeyup="UpdatePreview();"></td> ! </tr> ! <tr> ! <td><span fckLang="DlgImgVSpace">VSpace</span> </td> ! <td> ! <input type="text" size="2" id="txtVSpace" onkeyup="UpdatePreview();"></td> ! </tr> ! <tr> ! <td><span fckLang="DlgImgAlign">Align</span> </td> ! <td><select id="cmbAlign" onchange="UpdatePreview();"> ! <option value="" selected></option> ! <option fckLang="DlgImgAlignLeft" value="left">Left</option> ! <option fckLang="DlgImgAlignAbsBottom" value="absBottom">Abs Bottom</option> ! <option fckLang="DlgImgAlignAbsMiddle" value="absMiddle">Abs Middle</option> ! <option fckLang="DlgImgAlignBaseline" value="baseline">Baseline</option> ! <option fckLang="DlgImgAlignBottom" value="bottom">Bottom</option> ! <option fckLang="DlgImgAlignMiddle" value="middle">Middle</option> ! <option fckLang="DlgImgAlignRight" value="right">Right</option> ! <option fckLang="DlgImgAlignTextTop" value="textTop">Text Top</option> ! <option fckLang="DlgImgAlignTop" value="top">Top</option> ! </select> ! </td> ! </tr> ! </table> ! </td> ! <td> </td> ! <td width="100%" valign="top"> ! <table cellpadding="0" cellspacing="0"> ! <tr> ! <td><span fckLang="DlgImgPreview">Preview</span></td> ! </tr> ! <tr> ! <td valign="top"> ! <div class="ImagePreviewArea"> ! <img id="imgPreview" style="DISPLAY: none">Magnus es, domine, et laudabilis ! valde: magna virtus tua, et sapientiae tuae non est numerus. et laudare te vult ! homo, aliqua portio creaturae tuae, et homo circumferens mortalitem suam, ! circumferens testimonium peccati sui et testimonium, quia superbis resistis: et ! tamen laudare te vult homo, aliqua portio creaturae tuae.tu excitas, ut laudare ! te delectet, quia fecisti nos ad te et inquietum est cor nostrum, donec ! requiescat in te. da mihi, domine, scire et intellegere, utrum sit prius ! invocare te an laudare te, et scire te prius sit an invocare te. sed quis te ! invocat nesciens te? aliud enim pro alio potest invocare nesciens. an potius ! invocaris, ut sciaris? quomodo autem invocabunt, in quem non crediderunt? aut ! quomodo credent sine praedicante? et laudabunt dominum qui requirunt eum. ! quaerentes enim inveniunt eum et invenientes laudabunt eum. quaeram te, domine, ! invocans te, et invocem te credens in te: praedicatus enim es nobis. invocat ! te, domine, fides mea, quam dedisti mihi, quam inspirasti mihi per humanitatem ! filii tui, per ministerium praedicatoris tui. ! </div> ! </td> ! </tr> ! </table> ! </td> ! </tr> ! </table> ! </td> ! </tr> ! </table> ! </div> ! <div id="divAdvanced" style="DISPLAY: none"> ! <table cellspacing="0" cellpadding="0" width="100%" align="center" border="0"> ! <tr> ! <td valign="top" width="50%"> ! Id<br> ! <input id="txtAttId" style="WIDTH: 100%" type="text"> ! </td> ! <td width="1"> </td> ! <td valign="top"> ! <table cellspacing="0" cellpadding="0" width="100%" align="center" border="0"> ! <tr> ! <td width="60%"> ! Language Direction<br> ! <select id="cmbAttLangDir" style="WIDTH: 100%"> ! <option value="" selected><not set></option> ! <option value="ltr">Left to Right (LTR)</option> ! <option value="rtl">Right to Left (RTL)</option> ! </select> ! </td> ! <td width="1%"> </td> ! <td nowrap>Language Code<BR> ! <INPUT id="txtAttLangCode" style="WIDTH: 100%" type="text"> ! </td> ! </tr> ! </table> ! </td> ! </tr> ! <tr> ! <td colspan="3"> </td> ! </tr> ! <tr> ! <td colspan="3"> ! Long Description URL<br> ! <input id="txtLongDesc" style="WIDTH: 100%" type="text"> ! </td> ! </tr> ! <tr> ! <td colspan="3"> </td> ! </tr> ! <tr> ! <td valign="top"> ! Stylesheet Classes<br> ! <input id="txtAttClasses" style="WIDTH: 100%" type="text"> ! </td> ! <td></td> ! <td valign="top"> Advisory Title<BR> ! <INPUT id="txtAttTitle" style="WIDTH: 100%" type="text"> ! </td> ! </tr> ! </table> ! Style<br> ! <input id="txtAttStyle" style="WIDTH: 100%" type="text"> ! </div> ! </body> ! </html> --- 1,204 ---- <!-- ! * 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_image.html ! * Image Properties dialog window. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-06-19 00:24:56 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <html> ! <head> ! <title>Image Properties</title> ! <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> ! <meta name="robots" content="noindex, nofollow"> ! <script src="js/fck_dialog_common.js" type="text/javascript"></script> ! <script src="js/fck_image.js" type="text/javascript"></script> ! <link href="css/common.css" rel="stylesheet" type="text/css" /> ! </head> ! <body scroll="no"> ! <div id="divInfo"> ! <table cellspacing="1" cellpadding="1" border="0" width="100%" height="100%"> ! <tr> ! <td> ! <table cellspacing="0" cellpadding="0" width="100%" border="0"> ! <tr> ! <td valign="top" width="100%"> ! <span fckLang="DlgImgURL">URL</span><br> ! <input id="txtURL" style="WIDTH: 100%" type="text" onblur="UpdatePreview();"> ! </td> ! <td id="tdBrowse" style="DISPLAY: none" nowrap> ! ! <input id="btnBrowse" onclick="BrowseServer();" type="button" ! value="Browse Server" fckLang="DlgImgBtnBrowse"> ! </td> ! </tr> ! </table> ! </td> ! </tr> ! <tr> ! <td> ! <span fckLang="DlgImgAlt">Short Description</span><br> ! <input id="txtAlt" style="WIDTH: 100%" type="text"><br> ! </td> ! </tr> ! <tr height="100%"> ! <td valign="top"> ! <table cellspacing="0" cellpadding="0" width="100%" border="0" height="100%"> ! <tr> ! <td valign="top"> ! <br> ! <table cellspacing="0" cellpadding="0" border="0"> ! <tr> ! <td><span fckLang="DlgImgWidth">Width</span> </td> ! <td> ! <input type="text" size="3" id="txtWidth" onkeyup="OnSizeChanged('Width',this.value);"></td> ! <td rowspan="2"> ! <div class="BtnLocked" onmouseover="this.className = (bLockRatio ? 'BtnLocked' : 'BtnUnlocked' ) + ' BtnOver';" onmouseout="this.className = (bLockRatio ? 'BtnLocked' : 'BtnUnlocked' );" ! title="Lock Sizes" onclick="SwitchLock(this);"></div> ! <div class="BtnReset" onmouseover="this.className='BtnReset BtnOver';" onmouseout="this.className='BtnReset';" ! title="Reset Size" onclick="ResetSizes();"></div> ! </td> ! </tr> ! <tr> ! <td><span fckLang="DlgImgHeight">Height</span> </td> ! <td> ! <input type="text" size="3" id="txtHeight" onkeyup="OnSizeChanged('Height',this.value);"></td> ! </tr> ! </table> ! <br> ! <table cellspacing="0" cellpadding="0" border="0"> ! <tr> ! <td><span fckLang="DlgImgBorder">Border</span> </td> ! <td> ! <input type="text" size="2" value="" id="txtBorder" onkeyup="UpdatePreview();"></td> ! </tr> ! <tr> ! <td><span fckLang="DlgImgHSpace">HSpace</span> </td> ! <td> ! <input type="text" size="2" id="txtHSpace" onkeyup="UpdatePreview();"></td> ! </tr> ! <tr> ! <td><span fckLang="DlgImgVSpace">VSpace</span> </td> ! <td> ! <input type="text" size="2" id="txtVSpace" onkeyup="UpdatePreview();"></td> ! </tr> ! <tr> ! <td><span fckLang="DlgImgAlign">Align</span> </td> ! <td><select id="cmbAlign" onchange="UpdatePreview();"> ! <option value="" selected></option> ! <option fckLang="DlgImgAlignLeft" value="left">Left</option> ! <option fckLang="DlgImgAlignAbsBottom" value="absBottom">Abs Bottom</option> ! <option fckLang="DlgImgAlignAbsMiddle" value="absMiddle">Abs Middle</option> ! <option fckLang="DlgImgAlignBaseline" value="baseline">Baseline</option> ! <option fckLang="DlgImgAlignBottom" value="bottom">Bottom</option> ! <option fckLang="DlgImgAlignMiddle" value="middle">Middle</option> ! <option fckLang="DlgImgAlignRight" value="right">Right</option> ! <option fckLang="DlgImgAlignTextTop" value="textTop">Text Top</option> ! <option fckLang="DlgImgAlignTop" value="top">Top</option> ! </select> ! </td> ! </tr> ! </table> ! </td> ! <td> </td> ! <td width="100%" valign="top"> ! <table cellpadding="0" cellspacing="0"> ! <tr> ! <td><span fckLang="DlgImgPreview">Preview</span></td> ! </tr> ! <tr> ! <td valign="top"> ! <div class="ImagePreviewArea"> ! <img id="imgPreview" style="DISPLAY: none">Magnus es, domine, et laudabilis ! valde: magna virtus tua, et sapientiae tuae non est numerus. et laudare te vult ! homo, aliqua portio creaturae tuae, et homo circumferens mortalitem suam, ! circumferens testimonium peccati sui et testimonium, quia superbis resistis: et ! tamen laudare te vult homo, aliqua portio creaturae tuae.tu excitas, ut laudare ! te delectet, quia fecisti nos ad te et inquietum est cor nostrum, donec ! requiescat in te. da mihi, domine, scire et intellegere, utrum sit prius ! invocare te an laudare te, et scire te prius sit an invocare te. sed quis te ! invocat nesciens te? aliud enim pro alio potest invocare nesciens. an potius ! invocaris, ut sciaris? quomodo autem invocabunt, in quem non crediderunt? aut ! quomodo credent sine praedicante? et laudabunt dominum qui requirunt eum. ! quaerentes enim inveniunt eum et invenientes laudabunt eum. quaeram te, domine, ! invocans te, et invocem te credens in te: praedicatus enim es nobis. invocat ! te, domine, fides mea, quam dedisti mihi, quam inspirasti mihi per humanitatem ! filii tui, per ministerium praedicatoris tui. ! </div> ! </td> ! </tr> ! </table> ! </td> ! </tr> ! </table> ! </td> ! </tr> ! </table> ! </div> ! <div id="divAdvanced" style="DISPLAY: none"> ! <table cellspacing="0" cellpadding="0" width="100%" align="center" border="0"> ! <tr> ! <td valign="top" width="50%"> ! Id<br> ! <input id="txtAttId" style="WIDTH: 100%" type="text"> ! </td> ! <td width="1"> </td> ! <td valign="top"> ! <table cellspacing="0" cellpadding="0" width="100%" align="center" border="0"> ! <tr> ! <td width="60%"> ! Language Direction<br> ! <select id="cmbAttLangDir" style="WIDTH: 100%"> ! <option value="" selected><not set></option> ! <option value="ltr">Left to Right (LTR)</option> ! <option value="rtl">Right to Left (RTL)</option> ! </select> ! </td> ! <td width="1%"> </td> ! <td nowrap>Language Code<BR> ! <INPUT id="txtAttLangCode" style="WIDTH: 100%" type="text"> ! </td> ! </tr> ! </table> ! </td> ! </tr> ! <tr> ! <td colspan="3"> </td> ! </tr> ! <tr> ! <td colspan="3"> ! Long Description URL<br> ! <input id="txtLongDesc" style="WIDTH: 100%" type="text"> ! </td> ! </tr> ! <tr> ! <td colspan="3"> </td> ! </tr> ! <tr> ! <td valign="top"> ! Stylesheet Classes<br> ! <input id="txtAttClasses" style="WIDTH: 100%" type="text"> ! </td> ! <td></td> ! <td valign="top"> Advisory Title<BR> ! <INPUT id="txtAttTitle" style="WIDTH: 100%" type="text"> ! </td> ! </tr> ! </table> ! Style<br> ! <input id="txtAttStyle" style="WIDTH: 100%" type="text"> ! </div> ! </body> ! </html> \ No newline at end of file Index: fck_smiley.html =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/dialog/fck_smiley.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fck_smiley.html 25 Oct 2004 18:10:28 -0000 1.1.1.1 --- fck_smiley.html 2 Nov 2004 22:44:00 -0000 1.2 *************** *** 1,91 **** <!-- ! * 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_smiley.html ! * Smileys (emoticons) dialog window. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-08-20 01:19:47 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <html> ! <head> ! <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> ! <meta name="robots" content="noindex, nofollow" /> ! <style type="text/css"> ! .HandIE { cursor: hand ; } ! .HandMozilla { cursor: pointer ; } ! </style> ! <script type="text/javascript"> ! ! var dialogArguments = window.parent.InnerDialogLoaded() ; ! ! // Sets the Skin CSS ! document.write( '<link href="' + dialogArguments.FCKConfig.SkinPath + 'fck_dialog.css" type="text/css" rel="stylesheet">' ) ; ! ! function setDefaults() ! { ! // First of all, translate the dialog box texts ! dialogArguments.FCKLanguageManager.TranslatePage(document) ; ! } ! ! function insertChar(td) ! { ! dialogArguments.FCK.InsertHtml( td.innerHTML || "" ) ; ! window.parent.Cancel() ; ! } ! ! function over(td) ! { ! td.className = 'LightBackground HandIE HandMozilla' ; ! } ! ! function out(td) ! { ! td.className = 'DarkBackground HandIE HandMozilla' ; ! } ! </script> ! </head> ! <body onload="setDefaults()" scroll="no"> ! <table cellpadding="2" cellspacing="2" align="center" border="0" width="100%" height="100%"> ! <script type="text/javascript"> ! <!-- ! var FCKConfig = dialogArguments.FCKConfig ; ! ! var sBasePath = FCKConfig.SmileyPath ; ! var aImages = FCKConfig.SmileyImages ; ! var cols = FCKConfig.SmileyColumns ; ! ! var i = 0 ; ! while (i < aImages.length) ! { ! document.write("<TR>") ; ! for(var j = 0 ; j < cols ; j++) ! { ! if (aImages[i]) ! { ! document.write("<TD width='1%' align='center' class='DarkBackground HandIE HandMozilla' onclick='insertChar(this)' onmouseover='over(this)' onmouseout='out(this)'>") ; ! document.write("<img src='" + sBasePath + aImages[i] + "' border='0'>") ; ! } ! else ! document.write("<TD width='1%' class='DarkBackground'> ") ; ! document.write("</TD>") ; ! i++ ; ! } ! document.write("</TR>") ; ! } ! //--> ! </script> ! </table> ! </body> ! </html> --- 1,91 ---- <!-- ! * 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_smiley.html ! * Smileys (emoticons) dialog window. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-08-20 01:19:47 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <html> ! <head> ! <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> ! <meta name="robots" content="noindex, nofollow" /> ! <style type="text/css"> ! .HandIE { cursor: hand ; } ! .HandMozilla { cursor: pointer ; } ! </style> ! <script type="text/javascript"> ! ! var dialogArguments = window.parent.InnerDialogLoaded() ; ! ! // Sets the Skin CSS ! document.write( '<link href="' + dialogArguments.FCKConfig.SkinPath + 'fck_dialog.css" type="text/css" rel="stylesheet">' ) ; ! ! function setDefaults() ! { ! // First of all, translate the dialog box texts ! dialogArguments.FCKLanguageManager.TranslatePage(document) ; ! } ! ! function insertChar(td) ! { ! dialogArguments.FCK.InsertHtml( td.innerHTML || "" ) ; ! window.parent.Cancel() ; ! } ! ! function over(td) ! { ! td.className = 'LightBackground HandIE HandMozilla' ; ! } ! ! function out(td) ! { ! td.className = 'DarkBackground HandIE HandMozilla' ; ! } ! </script> ! </head> ! <body onload="setDefaults()" scroll="no"> ! <table cellpadding="2" cellspacing="2" align="center" border="0" width="100%" height="100%"> ! <script type="text/javascript"> ! <!-- ! var FCKConfig = dialogArguments.FCKConfig ; ! ! var sBasePath = FCKConfig.SmileyPath ; ! var aImages = FCKConfig.SmileyImages ; ! var cols = FCKConfig.SmileyColumns ; ! ! var i = 0 ; ! while (i < aImages.length) ! { ! document.write("<TR>") ; ! for(var j = 0 ; j < cols ; j++) ! { ! if (aImages[i]) ! { ! document.write("<TD width='1%' align... [truncated message content] |
From: Yves K. <yku...@us...> - 2004-11-02 22:44:09
|
Update of /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/css In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22532/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/css Modified Files: fck_editorarea.css Log Message: unix saving Index: fck_editorarea.css =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/css/fck_editorarea.css,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fck_editorarea.css 25 Oct 2004 18:09:18 -0000 1.1.1.1 --- fck_editorarea.css 2 Nov 2004 22:43:57 -0000 1.2 *************** *** 1,34 **** /* ! * 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_editorarea.css ! * This is the default CSS file used by the editor area. It defines the ! * initial font of the editor and background color. ! * ! * A user can configure the editor to use another CSS file. Just change ! * the value of the FCKConfig.EditorAreaCSS key in the configuration ! * file. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-31 23:07:51 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! */ ! ! body ! { ! font-family: Arial, Verdana, Sans-Serif; ! font-size: 12px; ! padding: 5px 5px 5px 5px; ! margin: 0px; ! border-style: none; ! background-color: #ffffff; ! } --- 1,34 ---- /* ! * 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_editorarea.css ! * This is the default CSS file used by the editor area. It defines the ! * initial font of the editor and background color. ! * ! * A user can configure the editor to use another CSS file. Just change ! * the value of the FCKConfig.EditorAreaCSS key in the configuration ! * file. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-31 23:07:51 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! */ ! ! body ! { ! font-family: Arial, Verdana, Sans-Serif; ! font-size: 12px; ! padding: 5px 5px 5px 5px; ! margin: 0px; ! border-style: none; ! background-color: #ffffff; ! } |
From: Yves K. <yku...@us...> - 2004-11-02 22:19:06
|
Update of /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/lang In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16034/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/lang Modified Files: ar.js de.js en.js it.js pt-br.js Log Message: unix saving Index: en.js =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/lang/en.js,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** en.js 25 Oct 2004 18:09:25 -0000 1.1.1.1 --- en.js 2 Nov 2004 22:18:51 -0000 1.2 *************** *** 1,22 **** /* ! * 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: en.js ! * English language file. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-31 23:07:54 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) */ - var FCKLang = { --- 1,21 ---- /* ! * 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: en.js ! * English language file. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-31 23:07:54 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) */ var FCKLang = { *************** *** 200,202 **** "DlgAboutInfo" : "For further information go to" } - --- 199,200 ---- Index: ar.js =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/lang/ar.js,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ar.js 25 Oct 2004 18:09:25 -0000 1.1.1.1 --- ar.js 2 Nov 2004 22:18:51 -0000 1.2 *************** *** 1,208 **** /* ! * 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: ar.js ! * Arabic language file. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-27 14:04:07 ! * ! * File Authors: * Aziz Oraij (az...@or...) ! */ ! ! var FCKLang = ! { ! // Language direction : "ltr" (left to right) or "rtl" (right to left). ! "Dir" : "rtl", ! ! // Toolbar Items and Context Menu ! "Cut" : "ÙØµ", ! "Copy" : "ÙØ³Ø®", ! "Paste" : "ÙØµÙ", ! "PasteText" : "ÙØµÙ ÙÙØµ Ø¨Ø³ÙØ·", ! "PasteWord" : "ÙØµÙ Ù Ù ÙÙØ±Ø¯", ! "Find" : "Ø¨ØØ«", ! "SelectAll" : "ØªØØ¯Ùد اÙÙÙ", ! "RemoveFormat" : "Ø¥Ø²Ø§ÙØ© Ø§ÙØªÙسÙÙØ§Øª", ! "InsertLink" : "إدراج/ØªØØ±Ùر رابط", ! "RemoveLink" : "Ø¥Ø²Ø§ÙØ© رابط", ! "InsertImage" : "إدراج/ØªØØ±Ùر ØµÙØ±Ø©", ! "InsertTable" : "إدراج/ØªØØ±Ùر جدÙÙ", ! "InsertLine" : "إدراج خط ÙØ§ØµÙ", ! "InsertSpecialChar" : "إدراج ر٠ز..Ù", ! "InsertSmiley" : "إدراج ابتسا٠ات", ! "About" : "ØÙÙ FCKeditor", ! ! "Bold" : "غا٠Ù", ! "Italic" : "٠ائÙ", ! "Underline" : "ØªØ³Ø·ÙØ±", ! "StrikeThrough" : "ÙØªÙسط٠خط", ! "Subscript" : "Ù ÙØ®Ùض", ! "Superscript" : "Ù Ø±ØªÙØ¹", ! "LeftJustify" : "Ù ØØ§Ø°Ø§Ø© Ø¥Ù٠اÙÙØ³Ø§Ø±", ! "CenterJustify" : "ØªÙØ³ÙØ·", ! "RightJustify" : "Ù ØØ§Ø°Ø§Ø© Ø¥Ù٠اÙÙÙ ÙÙ", ! "BlockJustify" : "ضبط", ! "DecreaseIndent" : "Ø¥ÙÙØ§Øµ اÙÙ Ø³Ø§ÙØ© Ø§ÙØ¨Ø§Ø¯Ø¦Ø©", ! "IncreaseIndent" : "Ø²ÙØ§Ø¯Ø© اÙÙ Ø³Ø§ÙØ© Ø§ÙØ¨Ø§Ø¯Ø¦Ø©", ! "Undo" : "تراجع", ! "Redo" : "إعادة", ! "NumberedList" : "تعداد رÙÙ Ù", ! "BulletedList" : "تعداد ÙÙØ·Ù", ! ! "ShowTableBorders" : "٠عاÙÙØ© ØØ¯Ùد Ø§ÙØ¬Ø¯Ø§ÙÙ", ! "ShowDetails" : "٠عاÙÙØ© Ø§ÙØªÙاصÙÙ", ! ! "FontStyle" : "ÙÙ Ø·", ! "FontFormat" : "ØªÙØ³ÙÙ", ! "Font" : "خط", ! "FontSize" : "ØØ¬Ù Ø§ÙØ®Ø·", ! "TextColor" : "ÙÙ٠اÙÙØµ", ! "BGColor" : "ÙÙÙ Ø§ÙØ®ÙÙÙØ©", ! "Source" : "Ø´ÙØ±Ø© اÙ٠صدر", ! ! // Context Menu ! ! "EditLink" : "ØªØØ±Ùر رابط", ! "InsertRow" : "إدراج صÙ", ! "DeleteRows" : "ØØ°Ù صÙÙÙ", ! "InsertColumn" : "إدراج Ø¹Ù ÙØ¯", ! "DeleteColumns" : "ØØ°Ù أع٠دة", ! "InsertCell" : "إدراج Ø®ÙÙØ©", ! "DeleteCells" : "ØØ°Ù Ø®ÙØ§Ùا", ! "MergeCells" : "د٠ج Ø®ÙØ§Ùا", ! "SplitCell" : "ØªÙØ³ÙÙ Ø®ÙÙØ©", ! "CellProperties" : "خصائص Ø§ÙØ®ÙÙØ©", ! "TableProperties" : "خصائص Ø§ÙØ¬Ø¯ÙÙ", ! "ImageProperties" : "خصائص Ø§ÙØµÙرة", ! ! // Alerts and Messages ! ! "ProcessingXHTML" : "ØªØªÙ Ø§ÙØ¢Ù Ù Ø¹Ø§ÙØ¬Ø© XHTML. Ø§ÙØªØ¸Ø± ÙÙÙÙØ§Ù...", ! "Done" : "ت٠", ! "PasteWordConfirm" : "ÙØ¨Ø¯Ù أ٠اÙÙØµ اÙ٠راد ÙØµÙÙ Ù ÙØ³ÙØ® Ù Ù Ø¨Ø±ÙØ§Ù ج ÙÙØ±Ø¯. ÙÙ ØªÙØ¯ ØªÙØ¸ÙÙÙ ÙØ¨Ù Ø§ÙØ´Ø±Ùع Ù٠ع٠ÙÙØ© اÙÙØµÙØ", ! "NotCompatiblePaste": "This command is available for Internet Explorer version 5.5 or more. Do you want to paste without cleaning?", ! ! // Dialogs ! "DlgBtnOK" : "Ù ÙØ§ÙÙ", ! "DlgBtnCancel" : "Ø¥ÙØºØ§Ø¡ Ø§ÙØ£Ù ر", ! "DlgBtnClose" : "Ø¥ØºÙØ§Ù", ! ! // Image Dialog ! "DlgImgTitleInsert" : "إدراج ØµÙØ±Ø©", ! "DlgImgTitleEdit" : "ØªØØ±Ùر ØµÙØ±Ø©", ! "DlgImgBtnUpload" : "أرسÙÙØ§ ÙÙØ®Ø§Ø¯Ù ", ! "DlgImgURL" : "URL", ! "DlgImgUpload" : "Ø±ÙØ¹", ! "DlgImgBtnBrowse" : "ØªØµÙØ ØµÙØ± اÙÙ ÙÙØ¹", ! "DlgImgAlt" : "اÙÙØµÙ", ! "DlgImgWidth" : "Ø§ÙØ¹Ø±Ø¶", ! "DlgImgHeight" : "Ø§ÙØ§Ø±ØªÙاع", ! "DlgImgLockRatio" : "اÙÙ ØØ§Ùظة عÙÙ ÙØ³Ø¨Ø© Ø§ÙØ¹Ø±Ø¶ ÙÙØ§Ø±ØªÙاع", ! "DlgBtnResetSize" : "استعادة Ø§ÙØØ¬Ù Ø§ÙØ£ØµÙÙ", ! "DlgImgBorder" : "Ø³Ù Ù Ø§ÙØØ¯ÙØ¯", ! "DlgImgHSpace" : "تباعد Ø£ÙÙÙ", ! "DlgImgVSpace" : "تباعد Ø¹Ù ÙØ¯Ù", ! "DlgImgAlign" : "Ù ØØ§Ø°Ø§Ø©", ! "DlgImgAlignLeft" : "ÙØ³Ø§Ø±", ! "DlgImgAlignAbsBottom" : "أسÙ٠اÙÙØµ", ! "DlgImgAlignAbsMiddle" : "ÙØ³Ø· Ø§ÙØ³Ø·Ø±", ! "DlgImgAlignBaseline" : "عÙÙ Ø§ÙØ³Ø·Ø±", ! "DlgImgAlignBottom" : "أسÙÙ", ! "DlgImgAlignMiddle" : "ÙØ³Ø·", ! "DlgImgAlignRight" : "ÙÙ ÙÙ", ! "DlgImgAlignTextTop": "أعÙ٠اÙÙØµ", ! "DlgImgAlignTop" : "أعÙÙ", ! "DlgImgPreview" : "٠عاÙÙØ©", ! "DlgImgMsgWrongExt" : "عÙÙØ§ÙØ ÙØ§ ÙØ³Ù Ø Ø¨Ø±ÙØ¹ اÙÙ ÙÙØ§Øª ØºÙØ± اÙÙ Ø·Ø§Ø¨ÙØ© ÙØ£ÙÙØ§Ø¹ اÙÙ ÙÙØ§Øª Ø§ÙØªØ§ÙÙØ©:\n\n" + FCKConfig.ImageUploadAllowedExtensions + "\n\nOperation canceled.", ! "DlgImgAlertSelect" : "ÙØ¶Ùا٠اختر ØµÙØ±Ø© ÙÙØªÙ Ø±ÙØ¹Ùا.", // NEW ! ! ! // Link Dialog ! "DlgLnkWindowTitle" : "ارتباط تشعبÙ", // NEW ! "DlgLnkURL" : "URL", ! "DlgLnkUpload" : "Ø±ÙØ¹", ! "DlgLnkTarget" : "اÙÙØ¯Ù", ! "DlgLnkTargetNotSet": "<Not set>", ! "DlgLnkTargetBlank" : "إطار Ø¬Ø¯ÙØ¯ (_blank)", ! "DlgLnkTargetParent": "Ø§ÙØ¥Ø·Ø§Ø± Ø§ÙØ£ØµÙ (_parent)", ! "DlgLnkTargetSelf" : "ÙÙØ³ Ø§ÙØ¥Ø·Ø§Ø± (_self)", ! "DlgLnkTargetTop" : "ØµÙØØ© ÙØ§Ù ÙØ© (_top)", ! "DlgLnkTitle" : "ÙØµÙ Ø§ÙØ±Ø§Ø¨Ø·", ! "DlgLnkBtnUpload" : "أرس٠ÙÙÙ ÙÙØ¹", ! "DlgLnkBtnBrowse" : "ØªØµÙØ اÙÙ ÙÙØ¹", ! "DlgLnkMsgWrongExtA": "عÙÙØ§ÙØ ÙØ§ ÙØ³Ù Ø Ø¨Ø±ÙØ¹ اÙÙ ÙÙØ§Øª ØºÙØ± اÙÙ Ø·Ø§Ø¨ÙØ© ÙØ£ÙÙØ§Ø¹ اÙÙ ÙÙØ§Øª Ø§ÙØªØ§ÙÙØ©:\n\n" + FCKConfig.LinkUploadAllowedExtensions + "\n\nOperation canceled.", ! "DlgLnkMsgWrongExtD": "عÙÙØ§ÙØ ÙØ§ ÙØ³Ù Ø Ø¨Ø±ÙØ¹ اÙÙ ÙÙØ§Øª ذات Ø£ÙÙØ§Ø¹ اÙÙ ÙÙØ§Øª Ø§ÙØªØ§ÙÙØ©:\n\n" + FCKConfig.LinkUploadDeniedExtensions + "\n\nOperation canceled.", ! ! // Color Dialog ! "DlgColorTitle" : "اختر ÙÙÙØ§Ù", ! "DlgColorBtnClear" : "٠سØ", ! "DlgColorHighlight" : "ØªØØ¯Ùد", ! "DlgColorSelected" : "Ø§Ø®ØªÙØ§Ø±", ! ! // Smiley Dialog ! "DlgSmileyTitle" : "إدراج ابتسا٠ات ", ! ! // Special Character Dialog ! "DlgSpecialCharTitle" : "إدراج ر٠ز", ! ! // Table Dialog ! "DlgTableTitleInsert" : "إدراج جدÙÙ", ! "DlgTableTitleEdit" : "ØªØØ±Ùر جدÙÙ", ! "DlgTableRows" : "صÙÙÙ", ! "DlgTableColumns" : "أع٠دة", ! "DlgTableBorder" : "Ø³Ù Ù Ø§ÙØØ¯ÙØ¯", ! "DlgTableAlign" : "اÙÙ ØØ§Ø°Ø§Ø©", ! "DlgTableAlignNotSet" : "<Not set>", ! "DlgTableAlignLeft" : "ÙØ³Ø§Ø±", ! "DlgTableAlignCenter" : "ÙØ³Ø·", ! "DlgTableAlignRight": "ÙÙ ÙÙ", ! "DlgTableWidth" : "Ø§ÙØ¹Ø±Ø¶", ! "DlgTableWidthPx" : "Ø¨ÙØ³Ù", ! "DlgTableWidthPc" : "باÙ٠ئة", ! "DlgTableHeight" : "Ø§ÙØ§Ø±ØªÙاع", ! "DlgTableCellSpace" : "تباعد Ø§ÙØ®ÙØ§ÙØ§", ! "DlgTableCellPad" : "اÙÙ Ø³Ø§ÙØ© Ø§ÙØ¨Ø§Ø¯Ø¦Ø©", ! "DlgTableCaption" : "اÙÙØµÙ", ! ! // Table Cell Dialog ! "DlgCellTitle" : "خصائص Ø§ÙØ®ÙÙØ©", ! "DlgCellWidth" : "Ø§ÙØ¹Ø±Ø¶", ! "DlgCellWidthPx" : "Ø¨ÙØ³Ù", ! "DlgCellWidthPc" : "باÙ٠ئة", ! "DlgCellHeight" : "Ø§ÙØ§Ø±ØªÙاع", ! "DlgCellWordWrap" : "Ø§ÙØªÙا٠اÙÙØµ", ! "DlgCellWordWrapNotSet" : "<Not set>", ! "DlgCellWordWrapYes": "ÙØ¹Ù ", ! "DlgCellWordWrapNo" : "ÙØ§", ! "DlgCellHorAlign" : "اÙÙ ØØ§Ø°Ø§Ø© Ø§ÙØ£ÙÙÙØ©", ! "DlgCellHorAlignNotSet" : "<Not set>", ! "DlgCellHorAlignLeft" : "ÙØ³Ø§Ø±", ! "DlgCellHorAlignCenter" : "ÙØ³Ø·", ! "DlgCellHorAlignRight" : "ÙÙ ÙÙ", ! "DlgCellVerAlign" : "اÙÙ ØØ§Ø°Ø§Ø© Ø§ÙØ¹Ù ÙØ¯ÙØ©", ! "DlgCellVerAlignNotSet" : "<Not set>", ! "DlgCellVerAlignTop" : "أعÙÙ", ! "DlgCellVerAlignMiddle" : "ÙØ³Ø·", ! "DlgCellVerAlignBottom" : "أسÙÙ", ! "DlgCellVerAlignBaseline" : "عÙÙ Ø§ÙØ³Ø·Ø±", ! "DlgCellRowSpan" : "ا٠تداد Ø§ÙØµÙÙÙ", ! "DlgCellCollSpan" : "ا٠تداد Ø§ÙØ£Ø¹Ù دة", ! "DlgCellBackColor" : "ÙÙÙ Ø§ÙØ®ÙÙÙØ©", ! "DlgCellBorderColor": "ÙÙÙ Ø§ÙØØ¯ÙØ¯", ! "DlgCellBtnSelect" : "ØØ¯Ùد...", ! ! // About Dialog ! "DlgAboutVersion" : "Ø§ÙØ¥ØµØ¯Ø§Ø±", ! "DlgAboutLicense" : "Ù Ø±Ø®ÙØµ Ø¨ØØ³Ø¨ ÙØ§ÙÙÙ GNU LGPL", ! "DlgAboutInfo" : "ÙÙ Ø²ÙØ¯ ٠٠اÙ٠عÙÙ٠ات ØªÙØ¶Ù Ø¨Ø²ÙØ§Ø±Ø©" ! } ! --- 1,204 ---- /* ! * 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: ar.js ! * Arabic language file. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-27 14:04:07 ! * ! * File Authors: * Aziz Oraij (az...@or...) ! */ ! ! var FCKLang = ! { ! // Language direction : "ltr" (left to right) or "rtl" (right to left). ! "Dir" : "rtl", ! ! // Toolbar Items and Context Menu ! "Cut" : "ÙØµ", ! "Copy" : "ÙØ³Ø®", ! "Paste" : "ÙØµÙ", ! "PasteText" : "ÙØµÙ ÙÙØµ Ø¨Ø³ÙØ·", ! "PasteWord" : "ÙØµÙ Ù Ù ÙÙØ±Ø¯", ! "Find" : "Ø¨ØØ«", ! "SelectAll" : "ØªØØ¯Ùد اÙÙÙ", ! "RemoveFormat" : "Ø¥Ø²Ø§ÙØ© Ø§ÙØªÙسÙÙØ§Øª", ! "InsertLink" : "إدراج/ØªØØ±Ùر رابط", ! "RemoveLink" : "Ø¥Ø²Ø§ÙØ© رابط", ! "InsertImage" : "إدراج/ØªØØ±Ùر ØµÙØ±Ø©", ! "InsertTable" : "إدراج/ØªØØ±Ùر جدÙÙ", ! "InsertLine" : "إدراج خط ÙØ§ØµÙ", ! "InsertSpecialChar" : "إدراج ر٠ز..Ù", ! "InsertSmiley" : "إدراج ابتسا٠ات", ! "About" : "ØÙÙ FCKeditor", ! ! "Bold" : "غا٠Ù", ! "Italic" : "٠ائÙ", ! "Underline" : "ØªØ³Ø·ÙØ±", ! "StrikeThrough" : "ÙØªÙسط٠خط", ! "Subscript" : "Ù ÙØ®Ùض", ! "Superscript" : "Ù Ø±ØªÙØ¹", ! "LeftJustify" : "Ù ØØ§Ø°Ø§Ø© Ø¥Ù٠اÙÙØ³Ø§Ø±", ! "CenterJustify" : "ØªÙØ³ÙØ·", ! "RightJustify" : "Ù ØØ§Ø°Ø§Ø© Ø¥Ù٠اÙÙÙ ÙÙ", ! "BlockJustify" : "ضبط", ! "DecreaseIndent" : "Ø¥ÙÙØ§Øµ اÙÙ Ø³Ø§ÙØ© Ø§ÙØ¨Ø§Ø¯Ø¦Ø©", ! "IncreaseIndent" : "Ø²ÙØ§Ø¯Ø© اÙÙ Ø³Ø§ÙØ© Ø§ÙØ¨Ø§Ø¯Ø¦Ø©", ! "Undo" : "تراجع", ! "Redo" : "إعادة", ! "NumberedList" : "تعداد رÙÙ Ù", ! "BulletedList" : "تعداد ÙÙØ·Ù", ! ! "ShowTableBorders" : "٠عاÙÙØ© ØØ¯Ùد Ø§ÙØ¬Ø¯Ø§ÙÙ", ! "ShowDetails" : "٠عاÙÙØ© Ø§ÙØªÙاصÙÙ", ! ! "FontStyle" : "ÙÙ Ø·", ! "FontFormat" : "ØªÙØ³ÙÙ", ! "Font" : "خط", ! "FontSize" : "ØØ¬Ù Ø§ÙØ®Ø·", ! "TextColor" : "ÙÙ٠اÙÙØµ", ! "BGColor" : "ÙÙÙ Ø§ÙØ®ÙÙÙØ©", ! "Source" : "Ø´ÙØ±Ø© اÙ٠صدر", ! ! // Context Menu ! "EditLink" : "ØªØØ±Ùر رابط", ! "InsertRow" : "إدراج صÙ", ! "DeleteRows" : "ØØ°Ù صÙÙÙ", ! "InsertColumn" : "إدراج Ø¹Ù ÙØ¯", ! "DeleteColumns" : "ØØ°Ù أع٠دة", ! "InsertCell" : "إدراج Ø®ÙÙØ©", ! "DeleteCells" : "ØØ°Ù Ø®ÙØ§Ùا", ! "MergeCells" : "د٠ج Ø®ÙØ§Ùا", ! "SplitCell" : "ØªÙØ³ÙÙ Ø®ÙÙØ©", ! "CellProperties" : "خصائص Ø§ÙØ®ÙÙØ©", ! "TableProperties" : "خصائص Ø§ÙØ¬Ø¯ÙÙ", ! "ImageProperties" : "خصائص Ø§ÙØµÙرة", ! ! // Alerts and Messages ! "ProcessingXHTML" : "ØªØªÙ Ø§ÙØ¢Ù Ù Ø¹Ø§ÙØ¬Ø© XHTML. Ø§ÙØªØ¸Ø± ÙÙÙÙØ§Ù...", ! "Done" : "ت٠", ! "PasteWordConfirm" : "ÙØ¨Ø¯Ù أ٠اÙÙØµ اÙ٠راد ÙØµÙÙ Ù ÙØ³ÙØ® Ù Ù Ø¨Ø±ÙØ§Ù ج ÙÙØ±Ø¯. ÙÙ ØªÙØ¯ ØªÙØ¸ÙÙÙ ÙØ¨Ù Ø§ÙØ´Ø±Ùع Ù٠ع٠ÙÙØ© اÙÙØµÙØ", ! "NotCompatiblePaste": "This command is available for Internet Explorer version 5.5 or more. Do you want to paste without cleaning?", ! ! // Dialogs ! "DlgBtnOK" : "Ù ÙØ§ÙÙ", ! "DlgBtnCancel" : "Ø¥ÙØºØ§Ø¡ Ø§ÙØ£Ù ر", ! "DlgBtnClose" : "Ø¥ØºÙØ§Ù", ! ! // Image Dialog ! "DlgImgTitleInsert" : "إدراج ØµÙØ±Ø©", ! "DlgImgTitleEdit" : "ØªØØ±Ùر ØµÙØ±Ø©", ! "DlgImgBtnUpload" : "أرسÙÙØ§ ÙÙØ®Ø§Ø¯Ù ", ! "DlgImgURL" : "URL", ! "DlgImgUpload" : "Ø±ÙØ¹", ! "DlgImgBtnBrowse" : "ØªØµÙØ ØµÙØ± اÙÙ ÙÙØ¹", ! "DlgImgAlt" : "اÙÙØµÙ", ! "DlgImgWidth" : "Ø§ÙØ¹Ø±Ø¶", ! "DlgImgHeight" : "Ø§ÙØ§Ø±ØªÙاع", ! "DlgImgLockRatio" : "اÙÙ ØØ§Ùظة عÙÙ ÙØ³Ø¨Ø© Ø§ÙØ¹Ø±Ø¶ ÙÙØ§Ø±ØªÙاع", ! "DlgBtnResetSize" : "استعادة Ø§ÙØØ¬Ù Ø§ÙØ£ØµÙÙ", ! "DlgImgBorder" : "Ø³Ù Ù Ø§ÙØØ¯ÙØ¯", ! "DlgImgHSpace" : "تباعد Ø£ÙÙÙ", ! "DlgImgVSpace" : "تباعد Ø¹Ù ÙØ¯Ù", ! "DlgImgAlign" : "Ù ØØ§Ø°Ø§Ø©", ! "DlgImgAlignLeft" : "ÙØ³Ø§Ø±", ! "DlgImgAlignAbsBottom" : "أسÙ٠اÙÙØµ", ! "DlgImgAlignAbsMiddle" : "ÙØ³Ø· Ø§ÙØ³Ø·Ø±", ! "DlgImgAlignBaseline" : "عÙÙ Ø§ÙØ³Ø·Ø±", ! "DlgImgAlignBottom" : "أسÙÙ", ! "DlgImgAlignMiddle" : "ÙØ³Ø·", ! "DlgImgAlignRight" : "ÙÙ ÙÙ", ! "DlgImgAlignTextTop": "أعÙ٠اÙÙØµ", ! "DlgImgAlignTop" : "أعÙÙ", ! "DlgImgPreview" : "٠عاÙÙØ©", ! "DlgImgMsgWrongExt" : "عÙÙØ§ÙØ ÙØ§ ÙØ³Ù Ø Ø¨Ø±ÙØ¹ اÙÙ ÙÙØ§Øª ØºÙØ± اÙÙ Ø·Ø§Ø¨ÙØ© ÙØ£ÙÙØ§Ø¹ اÙÙ ÙÙØ§Øª Ø§ÙØªØ§ÙÙØ©:\n\n" + FCKConfig.ImageUploadAllowedExtensions + "\n\nOperation canceled.", ! "DlgImgAlertSelect" : "ÙØ¶Ùا٠اختر ØµÙØ±Ø© ÙÙØªÙ Ø±ÙØ¹Ùا.", // NEW ! ! // Link Dialog ! "DlgLnkWindowTitle" : "ارتباط تشعبÙ", // NEW ! "DlgLnkURL" : "URL", ! "DlgLnkUpload" : "Ø±ÙØ¹", ! "DlgLnkTarget" : "اÙÙØ¯Ù", ! "DlgLnkTargetNotSet": "<Not set>", ! "DlgLnkTargetBlank" : "إطار Ø¬Ø¯ÙØ¯ (_blank)", ! "DlgLnkTargetParent": "Ø§ÙØ¥Ø·Ø§Ø± Ø§ÙØ£ØµÙ (_parent)", ! "DlgLnkTargetSelf" : "ÙÙØ³ Ø§ÙØ¥Ø·Ø§Ø± (_self)", ! "DlgLnkTargetTop" : "ØµÙØØ© ÙØ§Ù ÙØ© (_top)", ! "DlgLnkTitle" : "ÙØµÙ Ø§ÙØ±Ø§Ø¨Ø·", ! "DlgLnkBtnUpload" : "أرس٠ÙÙÙ ÙÙØ¹", ! "DlgLnkBtnBrowse" : "ØªØµÙØ اÙÙ ÙÙØ¹", ! "DlgLnkMsgWrongExtA": "عÙÙØ§ÙØ ÙØ§ ÙØ³Ù Ø Ø¨Ø±ÙØ¹ اÙÙ ÙÙØ§Øª ØºÙØ± اÙÙ Ø·Ø§Ø¨ÙØ© ÙØ£ÙÙØ§Ø¹ اÙÙ ÙÙØ§Øª Ø§ÙØªØ§ÙÙØ©:\n\n" + FCKConfig.LinkUploadAllowedExtensions + "\n\nOperation canceled.", ! "DlgLnkMsgWrongExtD": "عÙÙØ§ÙØ ÙØ§ ÙØ³Ù Ø Ø¨Ø±ÙØ¹ اÙÙ ÙÙØ§Øª ذات Ø£ÙÙØ§Ø¹ اÙÙ ÙÙØ§Øª Ø§ÙØªØ§ÙÙØ©:\n\n" + FCKConfig.LinkUploadDeniedExtensions + "\n\nOperation canceled.", ! ! // Color Dialog ! "DlgColorTitle" : "اختر ÙÙÙØ§Ù", ! "DlgColorBtnClear" : "٠سØ", ! "DlgColorHighlight" : "ØªØØ¯Ùد", ! "DlgColorSelected" : "Ø§Ø®ØªÙØ§Ø±", ! ! // Smiley Dialog ! "DlgSmileyTitle" : "إدراج ابتسا٠ات ", ! ! // Special Character Dialog ! "DlgSpecialCharTitle" : "إدراج ر٠ز", ! ! // Table Dialog ! "DlgTableTitleInsert" : "إدراج جدÙÙ", ! "DlgTableTitleEdit" : "ØªØØ±Ùر جدÙÙ", ! "DlgTableRows" : "صÙÙÙ", ! "DlgTableColumns" : "أع٠دة", ! "DlgTableBorder" : "Ø³Ù Ù Ø§ÙØØ¯ÙØ¯", ! "DlgTableAlign" : "اÙÙ ØØ§Ø°Ø§Ø©", ! "DlgTableAlignNotSet" : "<Not set>", ! "DlgTableAlignLeft" : "ÙØ³Ø§Ø±", ! "DlgTableAlignCenter" : "ÙØ³Ø·", ! "DlgTableAlignRight": "ÙÙ ÙÙ", ! "DlgTableWidth" : "Ø§ÙØ¹Ø±Ø¶", ! "DlgTableWidthPx" : "Ø¨ÙØ³Ù", ! "DlgTableWidthPc" : "باÙ٠ئة", ! "DlgTableHeight" : "Ø§ÙØ§Ø±ØªÙاع", ! "DlgTableCellSpace" : "تباعد Ø§ÙØ®ÙØ§ÙØ§", ! "DlgTableCellPad" : "اÙÙ Ø³Ø§ÙØ© Ø§ÙØ¨Ø§Ø¯Ø¦Ø©", ! "DlgTableCaption" : "اÙÙØµÙ", ! ! // Table Cell Dialog ! "DlgCellTitle" : "خصائص Ø§ÙØ®ÙÙØ©", ! "DlgCellWidth" : "Ø§ÙØ¹Ø±Ø¶", ! "DlgCellWidthPx" : "Ø¨ÙØ³Ù", ! "DlgCellWidthPc" : "باÙ٠ئة", ! "DlgCellHeight" : "Ø§ÙØ§Ø±ØªÙاع", ! "DlgCellWordWrap" : "Ø§ÙØªÙا٠اÙÙØµ", ! "DlgCellWordWrapNotSet" : "<Not set>", ! "DlgCellWordWrapYes": "ÙØ¹Ù ", ! "DlgCellWordWrapNo" : "ÙØ§", ! "DlgCellHorAlign" : "اÙÙ ØØ§Ø°Ø§Ø© Ø§ÙØ£ÙÙÙØ©", ! "DlgCellHorAlignNotSet" : "<Not set>", ! "DlgCellHorAlignLeft" : "ÙØ³Ø§Ø±", ! "DlgCellHorAlignCenter" : "ÙØ³Ø·", ! "DlgCellHorAlignRight" : "ÙÙ ÙÙ", ! "DlgCellVerAlign" : "اÙÙ ØØ§Ø°Ø§Ø© Ø§ÙØ¹Ù ÙØ¯ÙØ©", ! "DlgCellVerAlignNotSet" : "<Not set>", ! "DlgCellVerAlignTop" : "أعÙÙ", ! "DlgCellVerAlignMiddle" : "ÙØ³Ø·", ! "DlgCellVerAlignBottom" : "أسÙÙ", ! "DlgCellVerAlignBaseline" : "عÙÙ Ø§ÙØ³Ø·Ø±", ! "DlgCellRowSpan" : "ا٠تداد Ø§ÙØµÙÙÙ", ! "DlgCellCollSpan" : "ا٠تداد Ø§ÙØ£Ø¹Ù دة", ! "DlgCellBackColor" : "ÙÙÙ Ø§ÙØ®ÙÙÙØ©", ! "DlgCellBorderColor": "ÙÙÙ Ø§ÙØØ¯ÙØ¯", ! "DlgCellBtnSelect" : "ØØ¯Ùد...", ! ! // About Dialog ! "DlgAboutVersion" : "Ø§ÙØ¥ØµØ¯Ø§Ø±", ! "DlgAboutLicense" : "Ù Ø±Ø®ÙØµ Ø¨ØØ³Ø¨ ÙØ§ÙÙÙ GNU LGPL", ! "DlgAboutInfo" : "ÙÙ Ø²ÙØ¯ ٠٠اÙ٠عÙÙ٠ات ØªÙØ¶Ù Ø¨Ø²ÙØ§Ø±Ø©" ! } Index: pt-br.js =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/lang/pt-br.js,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** pt-br.js 25 Oct 2004 18:09:32 -0000 1.1.1.1 --- pt-br.js 2 Nov 2004 22:18:51 -0000 1.2 *************** *** 1,202 **** /* ! * 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: pt-br.js ! * Portuguese language file. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-06-04 09:28:44 ! * ! * File Authors: * Alexandre Mendonça Lima (am...@un...) ! */ ! ! var FCKLang = ! { ! // Language direction : "ltr" (left to right) or "rtl" (right to left). ! "Dir" : "ltr", ! ! // Toolbar Items and Context Menu ! "Cut" : "Recortar" , ! "Copy" : "Copiar" , ! "Paste" : "Colar" , ! "PasteText" : "Colar como Texto Puro" , ! "PasteWord" : "Colar do Microsoft Word" , ! "Find" : "Localizar" , ! "SelectAll" : "Selecionar Tudo" , ! "RemoveFormat" : "Remover Formatação" , ! "InsertLink" : "Inserir/Editar Link" , ! "RemoveLink" : "Remover Link" , ! "InsertImage" : "Inserir/Editar Imagem" , ! "InsertTable" : "Inserir/Editar Tabela" , ! "InsertLine" : "Inserir Linha Horizontal" , ! "InsertSpecialChar" : "Inserir Caracter Especial" , ! "InsertSmiley" : "Inserir Carinha" , ! "About" : "About FCKeditor" , ! "Bold" : "Negrito" , ! "Italic" : "Itálico" , ! "Underline" : "Sublinhado" , ! "StrikeThrough" : "Riscado" , ! "Subscript" : "Subscrito" , ! "Superscript" : "Superscrito" , ! "LeftJustify" : "Alinhamento à Esquerda" , ! "CenterJustify" : "Alinhamento ao Centro" , ! "RightJustify" : "Alinhamento à Direita" , ! "BlockJustify" : "Alinhamento Justificado" , ! "DecreaseIndent" : "Diminuir Identação" , ! "IncreaseIndent" : "Aumentar Identação" , ! "Undo" : "Desfazer" , ! "Redo" : "Refazer" , ! "NumberedList" : "Lista Numerada" , ! "BulletedList" : "Lista Marcada" , ! "ShowTableBorders" : "Exibir Bordas da Tabela" , ! "ShowDetails" : "Exibir Detalhes" , ! "FontStyle" : "Estilo da Fonte" , ! "FontFormat" : "Formatação da Fonte" , ! "Font" : "Fonte" , ! "FontSize" : "Tamanho da Fonte" , ! "TextColor" : "Cor do Texto" , ! "BGColor" : "Cor do Fundo do Texto" , ! "Source" : "Código-Fonte" , ! ! // Context Menu ! "EditLink" : "Editar Link" , ! "InsertRow" : "Inserir Linha" , ! "DeleteRows" : "Apagar Linhas" , ! "InsertColumn" : "Inserir Coluna" , ! "DeleteColumns" : "Apagar Colunas" , ! "InsertCell" : "Inserir células" , ! "DeleteCells" : "Apagar células" , ! "MergeCells" : "Mesclar células" , ! "SplitCell" : "Dividir célula" , ! "CellProperties" : "Propriedades da Célula" , ! "TableProperties" : "Propriedades da Tabela" , ! "ImageProperties" : "Propriedades da Imagem" , ! ! // Alerts and Messages ! "ProcessingXHTML" : "Processando XHTML. Por favor, aguarde..." , ! "Done" : "ConcluÃdo" , ! "PasteWordConfirm" : "O texto que você quer colar parece ser copiado do Microsoft Word. Deseja limpar formatação antes de colar?" , ! "NotCompatiblePaste": "Este comando está disponÃvel para Internet Explorer 5.5 ou superior. Deseja colar sem formatação?" , ! ! // Dialogs ! "DlgBtnOK" : "OK" , ! "DlgBtnCancel" : "Cancelar" , ! "DlgBtnClose" : "Fechar" , ! ! // Image Dialog ! "DlgImgTitleInsert" : "Inserir Imagem" , ! "DlgImgTitleEdit" : "Editar Imagem" , ! "DlgImgBtnUpload" : "Enviar para o servidor" , ! "DlgImgURL" : "URL" , ! "DlgImgUpload" : "Enviar" , ! "DlgImgBtnBrowse" : "Navegar no Servidor" , ! "DlgImgAlt" : "Texto Alternativo" , ! "DlgImgWidth" : "Largura" , ! "DlgImgHeight" : "Altura" , ! "DlgImgLockRatio" : "Travar Proporção" , ! "DlgBtnResetSize" : "Tamanho Padrão" , ! "DlgImgBorder" : "Borda" , ! "DlgImgHSpace" : "Espaçamento Horizontal" , ! "DlgImgVSpace" : "Espaçamento Vertical" , ! "DlgImgAlign" : "Alinhamento" , ! "DlgImgAlignLeft" : "Esquerda" , ! "DlgImgAlignAbsBottom" : "Abaixo Absoluto" , ! "DlgImgAlignAbsMiddle" : "Meio Absoluto" , ! "DlgImgAlignBaseline" : "Linha de Base" , ! "DlgImgAlignBottom" : "Abaixo" , ! "DlgImgAlignMiddle" : "Meio" , ! "DlgImgAlignRight" : "Direita" , ! "DlgImgAlignTextTop": "Topo do Texto" , ! "DlgImgAlignTop" : "Topo" , ! "DlgImgPreview" : "Prever Imagem" , ! "DlgImgMsgWrongExt" : "Infelizmente, somente o envio dos seguintes tipos de arquivos são permitidos:\n\n" + FCKConfig.ImageUploadAllowedExtensions + "\n\nOperação cancelada." , ! "DlgImgAlertSelect" : "Por favor, selecione uma imagem para enviar." , ! ! // Link Dialog ! "DlgLnkWindowTitle" : "Link" , ! "DlgLnkURL" : "URL" , ! "DlgLnkUpload" : "Enviar" , ! "DlgLnkTarget" : "Alvo" , ! "DlgLnkTargetNotSet": "<nenhum>" , ! "DlgLnkTargetBlank" : "Nova Janela (_blank)" , ! "DlgLnkTargetParent": "Janela Pai (_parent)" , ! "DlgLnkTargetSelf" : "Mesma Janela (_self)" , ! "DlgLnkTargetTop" : "Janela superiora (_top)" , ! "DlgLnkTitle" : "TÃtulo" , ! "DlgLnkBtnUpload" : "Enviar para o Servidor" , ! "DlgLnkBtnBrowse" : "Navegar no Servidor" , ! "DlgLnkMsgWrongExtA": "Infelizmente, somente o envio dos seguintes tipos de arquivos são permitidos:\n\n" + FCKConfig.LinkUploadAllowedExtensions + "\n\nOperação cancelada." , ! "DlgLnkMsgWrongExtD": "Infelizmente, somente o envio dos seguintes tipos de arquivos são permitidos:\n\n" + FCKConfig.LinkUploadDeniedExtensions + "\n\nOperação cancelada." , ! ! // Color Dialog ! "DlgColorTitle" : "Selecionar Cor" , ! "DlgColorBtnClear" : "Limpar" , ! "DlgColorHighlight" : "Destacar" , ! "DlgColorSelected" : "Selecionado" , ! ! // Smiley Dialog ! "DlgSmileyTitle" : "Inserir uma Carinha" , ! ! // Special Character Dialog ! "DlgSpecialCharTitle" : "Inserir Caracter Especial" , ! ! // Table Dialog ! "DlgTableTitleInsert" : "Inserir Tabela" , ! "DlgTableTitleEdit" : "Editar Tabela" , ! "DlgTableRows" : "Linhas" , ! "DlgTableColumns" : "Colunas" , ! "DlgTableBorder" : "Tamanho da Borda" , ! "DlgTableAlign" : "Alinhamento" , ! "DlgTableAlignNotSet" : "<nenhum>" , ! "DlgTableAlignLeft" : "Esquerda" , ! "DlgTableAlignCenter" : "Centro" , ! "DlgTableAlignRight" : "Direita" , ! "DlgTableWidth" : "Largura" , ! "DlgTableWidthPx" : "pixels" , ! "DlgTableWidthPc" : "porcentagem" , ! "DlgTableHeight" : "Altura" , ! "DlgTableCellSpace" : "Espaçamento da Célula" , ! "DlgTableCellPad" : "Padding da Célula" , ! "DlgTableCaption" : "Cabeçalho" , ! ! // Table Cell Dialog ! "DlgCellTitle" : "Propriedades da Célula" , ! "DlgCellWidth" : "Largura" , ! "DlgCellWidthPx" : "pixels" , ! "DlgCellWidthPc" : "porcentagem" , ! "DlgCellHeight" : "Altura" , ! "DlgCellWordWrap" : "Quebrar Texto" , ! "DlgCellWordWrapNotSet" : "<nenhum>" , ! "DlgCellWordWrapYes" : "Sim" , ! "DlgCellWordWrapNo" : "Não" , ! "DlgCellHorAlign" : "Alinhamento Horizontal" , ! "DlgCellHorAlignNotSet" : "<nenhum>" , ! "DlgCellHorAlignLeft" : "Esquerda" , ! "DlgCellHorAlignCenter" : "Centro" , ! "DlgCellHorAlignRight" : "Direita" , ! "DlgCellVerAlign" : "Alinhamento Vertical" , ! "DlgCellVerAlignNotSet" : "<nenhum>" , ! "DlgCellVerAlignTop" : "Topo" , ! "DlgCellVerAlignMiddle" : "Meio" , ! "DlgCellVerAlignBottom" : "Abaixo" , ! "DlgCellVerAlignBaseline" : "Linha de Base" , ! "DlgCellRowSpan" : "Rows Span" , ! "DlgCellCollSpan" : "Columns Span" , ! "DlgCellBackColor" : "Cor do Fundo da Célula" , ! "DlgCellBorderColor" : "Cor da Borda" , ! "DlgCellBtnSelect" : "Selecionar..." , ! ! // About Dialog ! "DlgAboutVersion" : "versão" , ! "DlgAboutLicense" : "Licenciado sob os termos da Licença Geral Pública GNU" , ! "DlgAboutInfo" : "Para maiores informações, vá para " ! } ! --- 1,201 ---- /* ! * 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: pt-br.js ! * Portuguese language file. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-06-04 09:28:44 ! * ! * File Authors: * Alexandre Mendonça Lima (am...@un...) ! */ ! ! var FCKLang = ! { ! // Language direction : "ltr" (left to right) or "rtl" (right to left). ! "Dir" : "ltr", ! ! // Toolbar Items and Context Menu ! "Cut" : "Recortar" , ! "Copy" : "Copiar" , ! "Paste" : "Colar" , ! "PasteText" : "Colar como Texto Puro" , ! "PasteWord" : "Colar do Microsoft Word" , ! "Find" : "Localizar" , ! "SelectAll" : "Selecionar Tudo" , ! "RemoveFormat" : "Remover Formatação" , ! "InsertLink" : "Inserir/Editar Link" , ! "RemoveLink" : "Remover Link" , ! "InsertImage" : "Inserir/Editar Imagem" , ! "InsertTable" : "Inserir/Editar Tabela" , ! "InsertLine" : "Inserir Linha Horizontal" , ! "InsertSpecialChar" : "Inserir Caracter Especial" , ! "InsertSmiley" : "Inserir Carinha" , ! "About" : "About FCKeditor" , ! "Bold" : "Negrito" , ! "Italic" : "Itálico" , ! "Underline" : "Sublinhado" , ! "StrikeThrough" : "Riscado" , ! "Subscript" : "Subscrito" , ! "Superscript" : "Superscrito" , ! "LeftJustify" : "Alinhamento à Esquerda" , ! "CenterJustify" : "Alinhamento ao Centro" , ! "RightJustify" : "Alinhamento à Direita" , ! "BlockJustify" : "Alinhamento Justificado" , ! "DecreaseIndent" : "Diminuir Identação" , ! "IncreaseIndent" : "Aumentar Identação" , ! "Undo" : "Desfazer" , ! "Redo" : "Refazer" , ! "NumberedList" : "Lista Numerada" , ! "BulletedList" : "Lista Marcada" , ! "ShowTableBorders" : "Exibir Bordas da Tabela" , ! "ShowDetails" : "Exibir Detalhes" , ! "FontStyle" : "Estilo da Fonte" , ! "FontFormat" : "Formatação da Fonte" , ! "Font" : "Fonte" , ! "FontSize" : "Tamanho da Fonte" , ! "TextColor" : "Cor do Texto" , ! "BGColor" : "Cor do Fundo do Texto" , ! "Source" : "Código-Fonte" , ! ! // Context Menu ! "EditLink" : "Editar Link" , ! "InsertRow" : "Inserir Linha" , ! "DeleteRows" : "Apagar Linhas" , ! "InsertColumn" : "Inserir Coluna" , ! "DeleteColumns" : "Apagar Colunas" , ! "InsertCell" : "Inserir células" , ! "DeleteCells" : "Apagar células" , ! "MergeCells" : "Mesclar células" , ! "SplitCell" : "Dividir célula" , ! "CellProperties" : "Propriedades da Célula" , ! "TableProperties" : "Propriedades da Tabela" , ! "ImageProperties" : "Propriedades da Imagem" , ! ! // Alerts and Messages ! "ProcessingXHTML" : "Processando XHTML. Por favor, aguarde..." , ! "Done" : "ConcluÃdo" , ! "PasteWordConfirm" : "O texto que você quer colar parece ser copiado do Microsoft Word. Deseja limpar formatação antes de colar?" , ! "NotCompatiblePaste": "Este comando está disponÃvel para Internet Explorer 5.5 ou superior. Deseja colar sem formatação?" , ! ! // Dialogs ! "DlgBtnOK" : "OK" , ! "DlgBtnCancel" : "Cancelar" , ! "DlgBtnClose" : "Fechar" , ! ! // Image Dialog ! "DlgImgTitleInsert" : "Inserir Imagem" , ! "DlgImgTitleEdit" : "Editar Imagem" , ! "DlgImgBtnUpload" : "Enviar para o servidor" , ! "DlgImgURL" : "URL" , ! "DlgImgUpload" : "Enviar" , ! "DlgImgBtnBrowse" : "Navegar no Servidor" , ! "DlgImgAlt" : "Texto Alternativo" , ! "DlgImgWidth" : "Largura" , ! "DlgImgHeight" : "Altura" , ! "DlgImgLockRatio" : "Travar Proporção" , ! "DlgBtnResetSize" : "Tamanho Padrão" , ! "DlgImgBorder" : "Borda" , ! "DlgImgHSpace" : "Espaçamento Horizontal" , ! "DlgImgVSpace" : "Espaçamento Vertical" , ! "DlgImgAlign" : "Alinhamento" , ! "DlgImgAlignLeft" : "Esquerda" , ! "DlgImgAlignAbsBottom" : "Abaixo Absoluto" , ! "DlgImgAlignAbsMiddle" : "Meio Absoluto" , ! "DlgImgAlignBaseline" : "Linha de Base" , ! "DlgImgAlignBottom" : "Abaixo" , ! "DlgImgAlignMiddle" : "Meio" , ! "DlgImgAlignRight" : "Direita" , ! "DlgImgAlignTextTop": "Topo do Texto" , ! "DlgImgAlignTop" : "Topo" , ! "DlgImgPreview" : "Prever Imagem" , ! "DlgImgMsgWrongExt" : "Infelizmente, somente o envio dos seguintes tipos de arquivos são permitidos:\n\n" + FCKConfig.ImageUploadAllowedExtensions + "\n\nOperação cancelada." , ! "DlgImgAlertSelect" : "Por favor, selecione uma imagem para enviar." , ! ! // Link Dialog ! "DlgLnkWindowTitle" : "Link" , ! "DlgLnkURL" : "URL" , ! "DlgLnkUpload" : "Enviar" , ! "DlgLnkTarget" : "Alvo" , ! "DlgLnkTargetNotSet": "<nenhum>" , ! "DlgLnkTargetBlank" : "Nova Janela (_blank)" , ! "DlgLnkTargetParent": "Janela Pai (_parent)" , ! "DlgLnkTargetSelf" : "Mesma Janela (_self)" , ! "DlgLnkTargetTop" : "Janela superiora (_top)" , ! "DlgLnkTitle" : "TÃtulo" , ! "DlgLnkBtnUpload" : "Enviar para o Servidor" , ! "DlgLnkBtnBrowse" : "Navegar no Servidor" , ! "DlgLnkMsgWrongExtA": "Infelizmente, somente o envio dos seguintes tipos de arquivos são permitidos:\n\n" + FCKConfig.LinkUploadAllowedExtensions + "\n\nOperação cancelada." , ! "DlgLnkMsgWrongExtD": "Infelizmente, somente o envio dos seguintes tipos de arquivos são permitidos:\n\n" + FCKConfig.LinkUploadDeniedExtensions + "\n\nOperação cancelada." , ! ! // Color Dialog ! "DlgColorTitle" : "Selecionar Cor" , ! "DlgColorBtnClear" : "Limpar" , ! "DlgColorHighlight" : "Destacar" , ! "DlgColorSelected" : "Selecionado" , ! ! // Smiley Dialog ! "DlgSmileyTitle" : "Inserir uma Carinha" , ! ! // Special Character Dialog ! "DlgSpecialCharTitle" : "Inserir Caracter Especial" , ! ! // Table Dialog ! "DlgTableTitleInsert" : "Inserir Tabela" , ! "DlgTableTitleEdit" : "Editar Tabela" , ! "DlgTableRows" : "Linhas" , ! "DlgTableColumns" : "Colunas" , ! "DlgTableBorder" : "Tamanho da Borda" , ! "DlgTableAlign" : "Alinhamento" , ! "DlgTableAlignNotSet" : "<nenhum>" , ! "DlgTableAlignLeft" : "Esquerda" , ! "DlgTableAlignCenter" : "Centro" , ! "DlgTableAlignRight" : "Direita" , ! "DlgTableWidth" : "Largura" , ! "DlgTableWidthPx" : "pixels" , ! "DlgTableWidthPc" : "porcentagem" , ! "DlgTableHeight" : "Altura" , ! "DlgTableCellSpace" : "Espaçamento da Célula" , ! "DlgTableCellPad" : "Padding da Célula" , ! "DlgTableCaption" : "Cabeçalho" , ! ! // Table Cell Dialog ! "DlgCellTitle" : "Propriedades da Célula" , ! "DlgCellWidth" : "Largura" , ! "DlgCellWidthPx" : "pixels" , ! "DlgCellWidthPc" : "porcentagem" , ! "DlgCellHeight" : "Altura" , ! "DlgCellWordWrap" : "Quebrar Texto" , ! "DlgCellWordWrapNotSet" : "<nenhum>" , ! "DlgCellWordWrapYes" : "Sim" , ! "DlgCellWordWrapNo" : "Não" , ! "DlgCellHorAlign" : "Alinhamento Horizontal" , ! "DlgCellHorAlignNotSet" : "<nenhum>" , ! "DlgCellHorAlignLeft" : "Esquerda" , ! "DlgCellHorAlignCenter" : "Centro" , ! "DlgCellHorAlignRight" : "Direita" , ! "DlgCellVerAlign" : "Alinhamento Vertical" , ! "DlgCellVerAlignNotSet" : "<nenhum>" , ! "DlgCellVerAlignTop" : "Topo" , ! "DlgCellVerAlignMiddle" : "Meio" , ! "DlgCellVerAlignBottom" : "Abaixo" , ! "DlgCellVerAlignBaseline" : "Linha de Base" , ! "DlgCellRowSpan" : "Rows Span" , ! "DlgCellCollSpan" : "Columns Span" , ! "DlgCellBackColor" : "Cor do Fundo da Célula" , ! "DlgCellBorderColor" : "Cor da Borda" , ! "DlgCellBtnSelect" : "Selecionar..." , ! ! // About Dialog ! "DlgAboutVersion" : "versão" , ! "DlgAboutLicense" : "Licenciado sob os termos da Licença Geral Pública GNU" , ! "DlgAboutInfo" : "Para maiores informações, vá para " ! } Index: de.js =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/lang/de.js,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** de.js 25 Oct 2004 18:09:25 -0000 1.1.1.1 --- de.js 2 Nov 2004 22:18:51 -0000 1.2 *************** *** 217,220 **** "DlgAboutInfo" : "Für weitere Informationen" - }//End FCKLang object \ No newline at end of file --- 217,219 ---- Index: it.js =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/lang/it.js,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** it.js 25 Oct 2004 18:09:29 -0000 1.1.1.1 --- it.js 2 Nov 2004 22:18:51 -0000 1.2 *************** *** 1,207 **** /* ! * 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: it.js ! * Italian language file. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-27 19:26:03 ! * ! * File Authors: * Simone Chiaretta ! */ ! ! var FCKLang = ! { ! // Language direction : "ltr" (left to right) or "rtl" (right to left). ! "Dir" : "ltr", ! ! // Toolbar Items and Context Menu ! "Cut" : "Taglia", ! "Copy" : "Copia", ! "Paste" : "Incolla", ! "PasteText" : "Incolla come testo semplice", ! "PasteWord" : "Incolla da Word", ! "Find" : "Cerca", ! "SelectAll" : "Seleziona tutto", ! "RemoveFormat" : "Rimuovi formattazione", ! "InsertLink" : "Inserisci/Modifica Link", ! "RemoveLink" : "Rimuovi Link", ! "InsertImage" : "Inserisci/Modifica immagine", ! "InsertTable" : "Inserisci/Modifica tabella", ! "InsertLine" : "Inserisci linea orizzontale", ! "InsertSpecialChar" : "Inserisci carattere speciale", ! "InsertSmiley" : "Inserisci emoticon", ! "About" : "Informazioni su FCKeditor", ! ! "Bold" : "Grassetto", ! "Italic" : "Corsivo", ! "Underline" : "Sottolinea", ! "StrikeThrough" : "Barrato", ! "Subscript" : "Pedice", ! "Superscript" : "Apice", ! "LeftJustify" : "Allinea a sinistra", ! "CenterJustify" : "Centra", ! "RightJustify" : "Allinea a destra", ! "BlockJustify" : "Giustifica", ! "DecreaseIndent" : "Aumenta rientro", ! "IncreaseIndent" : "Riduci rientro", ! "Undo" : "Annulla", ! "Redo" : "Ripeti", ! "NumberedList" : "Elenco numerato", ! "BulletedList" : "Elenco puntato", ! ! "ShowTableBorders" : "Mostra i bordi delle tabelle", ! "ShowDetails" : "Mostra dettagli", ! ! "FontStyle" : "Stile", ! "FontFormat" : "Formato", ! "Font" : "Font", ! "FontSize" : "Dimensione", ! "TextColor" : "Colore del testo", ! "BGColor" : "Colore dello sfondo", ! "Source" : "Sorgente", ! ! // Context Menu ! ! "EditLink" : "Modifica link", ! "InsertRow" : "Aggiungi righa", ! "DeleteRows" : "Elimina righa", ! "InsertColumn" : "Aggiungi colonna", ! "DeleteColumns" : "Elimina colonna", ! "InsertCell" : "Aggiungi cella", ! "DeleteCells" : "Elimina cella", ! "MergeCells" : "Unisci celle", ! "SplitCell" : "Dividi cella", ! "CellProperties" : "Proprietà della cella", ! "TableProperties" : "Proprietà della tabella", ! "ImageProperties" : "Proprietà dell'immagine", ! ! // Alerts and Messages ! ! "ProcessingXHTML" : "Elaborazione del XHTML. Attendere prego...", ! "Done" : "Completata", ! "PasteWordConfirm" : "Il testo da incollare sembra provenire da Word. Desidera pulirlo prima di incollare?", ! "NotCompatiblePaste": "Questa funzione è disponibile soltanto sui browser Internet Explorer versione 5.5 in poi. Desidera incollare il testo senza pulirlo?", ! ! // Dialogs ! "DlgBtnOK" : "OK", ! "DlgBtnCancel" : "Annulla", ! "DlgBtnClose" : "Chiudi", ! ! // Image Dialog ! "DlgImgTitleInsert" : "Inserisci immagine", ! "DlgImgTitleEdit" : "Modifica immagine", ! "DlgImgBtnUpload" : "Invia al server", ! "DlgImgURL" : "Indirizzo (URL)", ! "DlgImgUpload" : "Upload", ! "DlgImgBtnBrowse" : "Cerca sul server", ! "DlgImgAlt" : "Testo alternativo", ! "DlgImgWidth" : "Larghezza", ! "DlgImgHeight" : "Altezza", ! "DlgImgLockRatio" : "Blocca proporzioni", ! "DlgBtnResetSize" : "Reimposta dimensioni", ! "DlgImgBorder" : "Bordo", ! "DlgImgHSpace" : "HSpace", ! "DlgImgVSpace" : "VSpace", ! "DlgImgAlign" : "Allineamento", ! "DlgImgAlignLeft" : "Sinistra", ! "DlgImgAlignAbsBottom" : "Abs in basso", ! "DlgImgAlignAbsMiddle" : "Abs in mezzo", ! "DlgImgAlignBaseline" : "Linea base", ! "DlgImgAlignBottom" : "In basso", ! "DlgImgAlignMiddle" : "In mezzo", ! "DlgImgAlignRight" : "Destra", ! "DlgImgAlignTextTop": "Top testo", ! "DlgImgAlignTop" : "In alto", ! "DlgImgPreview" : "Anteprima", ! "DlgImgMsgWrongExt" : "Sono consentiti soltanto i seguenti tipi di file:\n\n" + FCKConfig.ImageUploadAllowedExtensions + "\n\nOperazione annullata.", ! "DlgImgAlertSelect" : "Selezionare il file da fare upload.", ! ! // Link Dialog ! "DlgLnkWindowTitle" : "Link", ! "DlgLnkURL" : "Indirizzo (URL)", ! "DlgLnkUpload" : "Upload", ! "DlgLnkTarget" : "Destinazione", ! "DlgLnkTargetNotSet": "<Non impostata>", ! "DlgLnkTargetBlank" : "Nuova finestra (_blank)", ! "DlgLnkTargetParent": "Finestra padre (_parent)", ! "DlgLnkTargetSelf" : "Stessa finestra (_self)", ! "DlgLnkTargetTop" : "Finestra superiore (_top)", ! "DlgLnkTitle" : "Titolo", ! "DlgLnkBtnUpload" : "Invia al server", ! "DlgLnkBtnBrowse" : "Cerca sul server", ! "DlgLnkMsgWrongExtA": "Sono consentiti soltanto i seguenti tipi di file:\n\n" + FCKConfig.ImageUploadAllowedExtensions + "\n\nOperazione annullata.", ! "DlgLnkMsgWrongExtD": "Non sono consentiti i seguenti tipi di file:\n\n" + FCKConfig.ImageUploadAllowedExtensions + "\n\nOperazione annullata.", ! ! // Color Dialog ! "DlgColorTitle" : "Seleziona il colore", ! "DlgColorBtnClear" : "Pulisci", ! "DlgColorHighlight" : "Attivo", ! "DlgColorSelected" : "Selezionato", ! ! // Smiley Dialog ! "DlgSmileyTitle" : "Inserisci emoticon", ! ! // Special Character Dialog ! "DlgSpecialCharTitle" : "Inserisci carattere speciale", ! ! // Table Dialog ! "DlgTableTitleInsert" : "Inserisci tabella", ! "DlgTableTitleEdit" : "Modifica tabella", ! "DlgTableRows" : "Righe", ! "DlgTableColumns" : "Colonne", ! "DlgTableBorder" : "Bordo", ! "DlgTableAlign" : "Allineamento", ! "DlgTableAlignNotSet" : "<Non impostato>", ! "DlgTableAlignLeft" : "Sinistra", ! "DlgTableAlignCenter" : "Centrato", ! "DlgTableAlignRight": "Destra", ! "DlgTableWidth" : "Larghezza", ! "DlgTableHeight" : "Altezza", ! "DlgTableCellSpace" : "Spazio celle", ! "DlgTableCellPad" : "Margini celle", ! "DlgTableCaption" : "Etichetta", ! "DlgTableWidthPx" : "pixels", ! "DlgTableWidthPc" : "percento", ! ! // Table Cell Dialog ! "DlgCellTitle" : "Proprietà della cella", ! "DlgCellWidth" : "Larghezza", ! "DlgCellWidthPx" : "pixels", ! "DlgCellWidthPc" : "percento", ! "DlgCellHeight" : "Altezza", ! "DlgCellWordWrap" : "Vai a capo", ! "DlgCellWordWrapNotSet" : "<Default>", ! "DlgCellWordWrapYes": "Sì", ! "DlgCellWordWrapNo" : "No", ! "DlgCellHorAlign" : "Allineamento orizzontale", ! "DlgCellHorAlignNotSet" : "<Non impostato>", ! "DlgCellHorAlignLeft" : "Sinistra", ! "DlgCellHorAlignCenter" : "Centrato", ! "DlgCellHorAlignRight" : "Destra", ! "DlgCellVerAlign" : "Allineamento verticale", ! "DlgCellVerAlignNotSet" : "<Non impostato>", ! "DlgCellVerAlignTop" : "Sopra", ! "DlgCellVerAlignMiddle" : "In mezzo", ! "DlgCellVerAlignBottom" : "Sotto", ! "DlgCellVerAlignBaseline" : "Linea base", ! "DlgCellRowSpan" : "Row span", ! "DlgCellCollSpan" : "Coll span", ! "DlgCellBackColor" : "Colore di sfondo", ! "DlgCellBorderColor": "Colore del bordo", ! "DlgCellBtnSelect" : "Seleziona...", ! ! // About Dialog ! "DlgAboutVersion" : "versione", ! "DlgAboutLicense" : "Rilasciato sotto la licensa GNU Lesser General Public License", ! "DlgAboutInfo" : "Per maggiori informazioni visitare" ! } ! --- 1,206 ---- /* ! * 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: it.js ! * Italian language file. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-27 19:26:03 ! * ! * File Authors: * Simone Chiaretta ! */ ! ! var FCKLang = ! { ! // Language direction : "ltr" (left to right) or "rtl" (right to left). ! "Dir" : "ltr", ! ! // Toolbar Items and Context Menu ! "Cut" : "Taglia", ! "Copy" : "Copia", ! "Paste" : "Incolla", ! "PasteText" : "Incolla come testo semplice", ! "PasteWord" : "Incolla da Word", ! "Find" : "Cerca", ! "SelectAll" : "Seleziona tutto", ! "RemoveFormat" : "Rimuovi formattazione", ! "InsertLink" : "Inserisci/Modifica Link", ! "RemoveLink" : "Rimuovi Link", ! "InsertImage" : "Inserisci/Modifica immagine", ! "InsertTable" : "Inserisci/Modifica tabella", ! "InsertLine" : "Inserisci linea orizzontale", ! "InsertSpecialChar" : "Inserisci carattere speciale", ! "InsertSmiley" : "Inserisci emoticon", ! "About" : "Informazioni su FCKeditor", ! ! "Bold" : "Grassetto", ! "Italic" : "Corsivo", ! "Underline" : "Sottolinea", ! "StrikeThrough" : "Barrato", ! "Subscript" : "Pedice", ! "Superscript" : "Apice", ! "LeftJustify" : "Allinea a sinistra", ! "CenterJustify" : "Centra", ! "RightJustify" : "Allinea a destra", ! "BlockJustify" : "Giustifica", ! "DecreaseIndent" : "Aumenta rientro", ! "IncreaseIndent" : "Riduci rientro", ! "Undo" : "Annulla", ! "Redo" : "Ripeti", ! "NumberedList" : "Elenco numerato", ! "BulletedList" : "Elenco puntato", ! ! "ShowTableBorders" : "Mostra i bordi delle tabelle", ! "ShowDetails" : "Mostra dettagli", ! ! "FontStyle" : "Stile", ! "FontFormat" : "Formato", ! "Font" : "Font", ! "FontSize" : "Dimensione", ! "TextColor" : "Colore del testo", ! "BGColor" : "Colore dello sfondo", ! "Source" : "Sorgente", ! ! // Context Menu ! ! "EditLink" : "Modifica link", ! "InsertRow" : "Aggiungi righa", ! "DeleteRows" : "Elimina righa", ! "InsertColumn" : "Aggiungi colonna", ! "DeleteColumns" : "Elimina colonna", ! "InsertCell" : "Aggiungi cella", ! "DeleteCells" : "Elimina cella", ! "MergeCells" : "Unisci celle", ! "SplitCell" : "Dividi cella", ! "CellProperties" : "Proprietà della cella", ! "TableProperties" : "Proprietà della tabella", ! "ImageProperties" : "Proprietà dell'immagine", ! ! // Alerts and Messages ! ! "ProcessingXHTML" : "Elaborazione del XHTML. Attendere prego...", ! "Done" : "Completata", ! "PasteWordConfirm" : "Il testo da incollare sembra provenire da Word. Desidera pulirlo prima di incollare?", ! "NotCompatiblePaste": "Questa funzione è disponibile soltanto sui browser Internet Explorer versione 5.5 in poi. Desidera incollare il testo senza pulirlo?", ! ! // Dialogs ! "DlgBtnOK" : "OK", ! "DlgBtnCancel" : "Annulla", ! "DlgBtnClose" : "Chiudi", ! ! // Image Dialog ! "DlgImgTitleInsert" : "Inserisci immagine", ! "DlgImgTitleEdit" : "Modifica immagine", ! "DlgImgBtnUpload" : "Invia al server", ! "DlgImgURL" : "Indirizzo (URL)", ! "DlgImgUpload" : "Upload", ! "DlgImgBtnBrowse" : "Cerca sul server", ! "DlgImgAlt" : "Testo alternativo", ! "DlgImgWidth" : "Larghezza", ! "DlgImgHeight" : "Altezza", ! "DlgImgLockRatio" : "Blocca proporzioni", ! "DlgBtnResetSize" : "Reimposta dimensioni", ! "DlgImgBorder" : "Bordo", ! "DlgImgHSpace" : "HSpace", ! "DlgImgVSpace" : "VSpace", ! "DlgImgAlign" : "Allineamento", ! "DlgImgAlignLeft" : "Sinistra", ! "DlgImgAlignAbsBottom" : "Abs in basso", ! "DlgImgAlignAbsMiddle" : "Abs in mezzo", ! "DlgImgAlignBaseline" : "Linea base", ! "DlgImgAlignBottom" : "In basso", ! "DlgImgAlignMiddle" : "In mezzo", ! "DlgImgAlignRight" : "Destra", ! "DlgImgAlignTextTop": "Top testo", ! "DlgImgAlignTop" : "In alto", ! "DlgImgPreview" : "Anteprima", ! "DlgImgMsgWrongExt" : "Sono consentiti soltanto i seguenti tipi di file:\n\n" + FCKConfig.ImageUploadAllowedExtensions + "\n\nOperazione annullata.", ! "DlgImgAlertSelect" : "Selezionare il file da fare upload.", ! ! // Link Dialog ! "DlgLnkWindowTitle" : "Link", ! "DlgLnkURL" : "Indirizzo (URL)", ! "DlgLnkUpload" : "Upload", ! "DlgLnkTarget" : "Destinazione", ! "DlgLnkTargetNotSet": "<Non impostata>", ! "DlgLnkTargetBlank" : "Nuova finestra (_blank)", ! "DlgLnkTargetParent": "Finestra padre (_parent)", ! "DlgLnkTargetSelf" : "Stessa finestra (_self)", ! "DlgLnkTargetTop" : "Finestra superiore (_top)", ! "DlgLnkTitle" : "Titolo", ! "DlgLnkBtnUpload" : "Invia al server", ! "DlgLnkBtnBrowse" : "Cerca sul server", ! "DlgLnkMsgWrongExtA": "Sono consentiti soltanto i seguenti tipi di file:\n\n" + FCKConfig.ImageUploadAllowedExtensions + "\n\nOperazione annullata.", ! "DlgLnkMsgWrongExtD": "Non sono consentiti i seguenti tipi di file:\n\n" + FCKConfig.ImageUploadAllowedExtensions + "\n\nOperazione annullata.", ! ! // Color Dialog ! "DlgColorTitle" : "Seleziona il colore", ! "DlgColorBtnClear" : "Pulisci", ! "DlgColorHighlight" : "Attivo", ! "DlgColorSelected" : "Selezionato", ! ! // Smiley Dialog ! "DlgSmileyTitle" : "Inserisci emoticon", ! ! // Special Character Dialog ! "DlgSpecialCharTitle" : "Inserisci carattere speciale", ! ! // Table Dialog ! "DlgTableTitleInsert" : "Inserisci tabella", ! "DlgTableTitleEdit" : "Modifica tabella", ! "DlgTableRows" : "Righe", ! "DlgTableColumns" : "Colonne", ! "DlgTableBorder" : "Bordo", ! "DlgTableAlign" : "Allineamento", ! "DlgTableAlignNotSet" : "<Non impostato>", ! "DlgTableAlignLeft" : "Sinistra", ! "DlgTableAlignCenter" : "Centrato", ! "DlgTableAlignRight": "Destra", ! "DlgTableWidth" : "Larghezza", ! "DlgTableHeight" : "Altezza", ! "DlgTableCellSpace" : "Spazio celle", ! "DlgTableCellPad" : "Margini celle", ! "DlgTableCaption" : "Etichetta", ! "DlgTableWidthPx" : "pixels", ! "DlgTableWidthPc" : "percento", ! ! // Table Cell Dialog ! "DlgCellTitle" : "Proprietà della cella", ! "DlgCellWidth" : "Larghezza", ! "DlgCellWidthPx" : "pixels", ! "DlgCellWidthPc" : "percento", ! "DlgCellHeight" : "Altezza", ! "DlgCellWordWrap" : "Vai a capo", ! "DlgCellWordWrapNotSet" : "<Default>", ! "DlgCellWordWrapYes": "Sì", ! "DlgCellWordWrapNo" : "No", ! "DlgCellHorAlign" : "Allineamento orizzontale", ! "DlgCellHorAlignNotSet" : "<Non impostato>", ! "DlgCellHorAlignLeft" : "Sinistra", ! "DlgCellHorAlignCenter" : "Centrato", ! "DlgCellHorAlignRight" : "Destra", ! "DlgCellVerAlign" : "Allineamento verticale", ! "DlgCellVerAlignNotSet" : "<Non impostato>", ! "DlgCellVerAlignTop" : "Sopra", ! "DlgCellVerAlignMiddle" : "In mezzo", ! "DlgCellVerAlignBottom" : "Sotto", ! "DlgCellVerAlignBaseline" : "Linea base", ! "DlgCellRowSpan" : "Row span", ! "DlgCellCollSpan" : "Coll span", ! "DlgCellBackColor" : "Colore di sfondo", ! "DlgCellBorderColor": "Colore del bordo", ! "DlgCellBtnSelect" : "Seleziona...", ! ! // About Dialog ! "DlgAboutVersion" : "versione", ! "DlgAboutLicense" : "Rilasciato sotto la licensa GNU Lesser General Public License", ! "DlgAboutInfo" : "Per maggiori informazioni visitare" ! } |
Update of /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/js In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16034/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/js Modified Files: fck_startup.js fckeditorcode_gecko_1.js fckeditorcode_gecko_2.js fckeditorcode_ie_1.js fckeditorcode_ie_2.js Log Message: unix saving Index: fckeditorcode_gecko_2.js =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/js/fckeditorcode_gecko_2.js,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fckeditorcode_gecko_2.js 25 Oct 2004 18:09:18 -0000 1.1.1.1 --- fckeditorcode_gecko_2.js 2 Nov 2004 22:18:51 -0000 1.2 *************** *** 1,45 **** /* ! * 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/ ! * ! * This file has been compacted for best loading performance. ! * ! * Version: 2.0 Beta 2 * Created: 2004-09-10 02:40:08 ! */ ! FCK.ExecuteNamedCommand=function(commandName, commandParameter){FCK.Focus();FCK.EditorDocument.execCommand(commandName, false, commandParameter);FCK.Events.FireEvent('OnSelectionChange');};FCK.GetNamedCommandState=function(commandName){try{if (!FCK.EditorDocument.queryCommandEnabled( commandName )) return FCK_TRISTATE_DISABLED;else return FCK.EditorDocument.queryCommandState(commandName) ? FCK_TRISTATE_ON : FCK_TRISTATE_OFF;}catch (e){return FCK_TRISTATE_OFF;};};FCK.GetNamedCommandValue=function(commandName){var sValue='';var eState=FCK.GetNamedCommandState(commandName);if (eState==FCK_TRISTATE_DISABLED) return null;try{sValue=this.EditorDocument.queryCommandValue(commandName);}catch(e) {};return sValue ? sValue : '';};FCK.CreateLink=function(url){if (url.length==0) FCK.ExecuteNamedCommand('Unlink');else{FCK.ExecuteNamedCommand('CreateLink', "javascript:void(0);/*fckeditortemplink*/");var oLinks=this.EditorDocument.links;for (i=0 ; i < oLinks.length ; i++){if (oLinks[i].href=="javascript:void(0);/*fckeditortemplink*/"){oLinks[i].href=url;return oLinks[i];};};};};FCK.CleanAndPaste=function(html){html=html.replace(/<\/?SPAN[^>]*>/gi, "");html=html.replace(/<(\w[^>]*) class=([^ |>]*)([^>]*)/gi, "<$1$3");html=html.replace(/<(\w[^>]*) style="([^"]*)"([^>]*)/gi, "<$1$3");html=html.replace(/<(\w[^>]*) lang=([^ |>]*)([^>]*)/gi, "<$1$3");html=html.replace(/<\\?\?xml[^>]*>/gi, "");html=html.replace(/<\/?\w+:[^>]*>/gi, "");html=html.replace(/ /, " ");var re=new RegExp("(<P)([^>]*>.*?)(<\/P>)","gi");html=html.replace(re, "<div$2</div>");FCK.InsertHtml(html);};FCK.Preview=function(){var oWindow=window.open('', null, 'toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes');oWindow.document.write(FCK.GetHTML());oWindow.document.close();};FCK.SwitchEditMode=function(){var bWYSIWYG=(FCK.EditMode==FCK_EDITMODE_WYSIWYG);document.getElementById('eWysiwyg').style.display = bWYSIWYG ? "none" : "";document.getElementById('eSource').style.display = bWYSIWYG ? "" : "none";if (bWYSIWYG) document.getElementById('eSourceField').value = ( FCKConfig.EnableXHTML && FCKConfig.EnableSourceXHTML ? FCK.GetXHTML() : FCK.GetHTML());else FCK.SetHTML(FCK.GetHTML(), true);FCK.EditMode=bWYSIWYG ? FCK_EDITMODE_SOURCE : FCK_EDITMODE_WYSIWYG;FCK.Focus();FCKToolbarSet.RefreshItemsState();}; ! FCK._BaseGetNamedCommandState=FCK.GetNamedCommandState;FCK.GetNamedCommandState=function(commandName){switch (commandName){case 'Unlink' : return FCKSelection.HasAncestorNode('A') ? FCK_TRISTATE_OFF : FCK_TRISTATE_DISABLED;default : return FCK._BaseGetNamedCommandState(commandName);};};FCK._BaseExecuteNamedCommand=FCK.ExecuteNamedCommand;FCK.ExecuteNamedCommand=function(commandName, commandParameter){switch (commandName){case 'Print' : FCK.EditorWindow.print();break;case 'Paste' : try { if (FCK.Paste() ) FCK._BaseExecuteNamedCommand( 'Paste') ; }catch (e) { alert( "Your browser security settings don't permit the editor to automaticaly execute pasting operations. Please use the keyboard for that (Ctrl+V).") ;};break;case 'Cut' : try { FCK._BaseExecuteNamedCommand('Cut') ; }catch (e) { alert( "Your browser security settings don't permit the editor to automaticaly execute cutting operations. Please use the keyboard for that (Ctrl+X).") ;};break;case 'Copy' : try { FCK._BaseExecuteNamedCommand('Copy') ; }catch (e) { alert( "Your browser security settings don't permit the editor to automaticaly execute copying operations. Please use the keyboard for that (Ctrl+C).") ;};break;default : FCK._BaseExecuteNamedCommand(commandName, commandParameter);};};FCK.AttachToOnSelectionChange=function(functionPointer){this.Events.AttachEvent('OnSelectionChange', functionPointer);};FCK.Paste=function(){if (FCKConfig.ForcePasteAsPlainText){FCK.PasteAsPlainText();return false;}else if (FCKConfig.AutoDetectPasteFromWord && FCKBrowserInfo.IsIE55OrMore){var sHTML=FCK.GetClipboardHTML();var re=/<\w[^>]* class="?MsoNormal"?/gi;if (re.test( sHTML )){if (confirm( FCKLang["PasteWordConfirm"] )){FCK.CleanAndPaste(sHTML);return false;};};}else return true;};FCK.InsertHtml=function(html){var oSel=FCKSelection.Delete();var oRange=oSel.getRangeAt(0);var oFragment=oRange.createContextualFragment(html);var oLastNode=oFragment.lastChild;oRange.insertNode(oFragment);oRange.setEndAfter(oLastNode);oRange.setStartAfter(oLastNode);oSel.removeAllRanges();oSel=FCK.EditorWindow.getSelection();oSel.addRange(oRange);this.Focus();};FCK.InsertElement=function(element){var oSel=FCKSelection.Delete();var oRange=oSel.getRangeAt(0);oRange.insertNode(element);oRange.setEndAfter(element);oRange.setStartAfter(element);this.Focus();};FCK.PasteAsPlainText=function(){FCKDialog.OpenDialog('FCKDialog_Paste', 'Paste as Plain Text', 'dialog/fck_paste.html', 400, 330, 'PlainText');};FCK.PasteFromWord=function(){FCKDialog.OpenDialog('FCKDialog_Paste', 'Paste from Word', 'dialog/fck_paste.html', 400, 330, 'Word');};FCK.GetClipboardHTML=function(){return '';}; ! var FCKSelection=new Object();FCK.Selection=FCKSelection; ! FCKSelection.GetSelectedElement=function(){var oSel=FCK.EditorWindow.getSelection();if (oSel.rangeCount==1){var oRange=oSel.getRangeAt(0);if (oRange.startContainer==oRange.endContainer && (oRange.endOffset - oRange.startOffset)==1) return oSel.anchorNode.childNodes[ oSel.anchorOffset ];};};FCKSelection.MoveToNode=function(node){var oSel=FCK.EditorWindow.getSelection();for (i=oSel.rangeCount - 1 ; i >=0 ; i--){if (i==0) oSel.getRangeAt(i).selectNodeContents( node);else oSel.removeRange(oSel.getRangeAt(i));};};FCKSelection.HasAncestorNode=function(nodeTagName){var oContainer=this.GetSelectedElement();if (! oContainer && FCK.EditorWindow){try { oContainer=FCK.EditorWindow.getSelection().getRangeAt(0).startContainer ; }catch(e){};};while (oContainer){if (oContainer.tagName==nodeTagName) return true;oContainer=oContainer.parentNode;};return false;};FCKSelection.MoveToAncestorNode=function(nodeTagName){var oNode;var oContainer=this.GetSelectedElement();if (! oContainer) oContainer=FCK.EditorWindow.getSelection().getRangeAt(0).startContainer;while (oContainer){if (oContainer.tagName==nodeTagName) return oContainer;oContainer=oContainer.parentNode;};};FCKSelection.Delete=function(){var oSel=FCK.EditorWindow.getSelection();for (var i=0 ; i < oSel.rangeCount ; i++){oSel.getRangeAt(i).deleteContents();};return oSel;} ! var FCKPanel=function(){};FCKPanel.prototype.Create=function(){this.PanelDiv=window.parent.document.createElement('DIV');this.PanelDiv.style.visibility='hidden';this.PanelDiv.className='FCK_Panel';this.PanelDiv.style.zIndex=10000;this.PanelDiv.oncontextmenu=function() { return false ;};window.parent.document.body.appendChild(this.PanelDiv);if (this.CreatePanelBody) this.CreatePanelBody(window.parent.document, this.PanelDiv);this.Created=true;};FCKPanel.prototype.Show=function(panelX, panelY){if (! this.Created) this.Create();this.PanelDiv.style.left=panelX + 'px';this.PanelDiv.style.top=panelY + 'px';var oActualWindow=FCK.EditorWindow;while (oActualWindow){oActualWindow.document.addEventListener('click', this._OnDocumentClick, false);if (oActualWindow !=oActualWindow.parent) oActualWindow=oActualWindow.parent;else if (oActualWindow.opener==null) oActualWindow=oActualWindow.opener;else break;};this.PanelDiv.style.visibility='';FCK.ActivePanel=this;};FCKPanel.prototype._OnDocumentClick=function(event){if (! FCK.ActivePanel) return;var e=event.target;while (e){if (e==FCK.ActivePanel.PanelDiv) return;e=e.parentNode;};FCK.ActivePanel.Hide();};FCKPanel.prototype.Hide=function(){this.PanelDiv.style.visibility='hidden';this.PanelDiv.style.left=this.PanelDiv.style.top='1px';delete FCK.ActivePanel;} ! var FCKColorPanel=function(setColorFunction){this.SetColorFunction=setColorFunction;};FCKColorPanel.prototype=new FCKPanel;FCKColorPanel.prototype.CreatePanelBody=function(targetDocument, targetDiv){function CreateSelectionDiv(){var oDiv=targetDocument.createElement("DIV");oDiv.className='ColorDeselected';oDiv.onmouseover=function() { this.className='ColorSelected' ; };oDiv.onmouseout=function() { this.className='ColorDeselected' ; };return oDiv;};var oTable=targetDocument.createElement("TABLE");oTable.cellPadding=0;oTable.cellSpacing=0;oTable.border=0;var oDiv=CreateSelectionDiv();oDiv.innerHTML='<table cellspacing="0" cellpadding="0" width="100%" border="0">\ <tr>\ <td><div class="ColorBoxBorder"><div class="ColorBox" style="background-color: #000000"></div></div></td>\ <td nowrap width="100%" align="center" unselectable="on">Automatic</td>\ </tr>\ </table>';oDiv.Panel=this;oDiv.onclick=function(){this.className='ColorDeselected';this.Panel.SetColorFunction('');this.Panel.Hide();};var oCell=oTable.insertRow(-1).insertCell(-1);oCell.colSpan=8;oCell.appendChild(oDiv);var aColors=FCKConfig.FontColors.split(',');var iCounter=0;while (iCounter < aColors.length){var oRow=oTable.insertRow(-1);for (var i=0 ; i < 8 && iCounter < aColors.length ; i++, iCounter++){var oDiv=CreateSelectionDiv();oDiv.Color=aColors[iCounter];oDiv.innerHTML='<div class="ColorBoxBorder"><div class="ColorBox" style="background-color: #' + aColors[iCounter] + '"></div></div>';oDiv.Panel=this;oDiv.onclick=function(){this.className='ColorDeselected';this.Panel.SetColorFunction('#' + this.Color);this.Panel.Hide();};oCell=oRow.insertCell(-1);oCell.appendChild(oDiv);};};var oDiv=CreateSelectionDiv();oDiv.innerHTML='<table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td nowrap align="center">More Colors...</td></tr></table>';oDiv.Panel=this;oDiv.onclick=function(){this.className='ColorDeselected';this.Panel.Hide();FCKDialog.OpenDialog('FCKDialog_Color', 'Select a Color', 'dialog/fck_colorselector.html', 400, 330, this.Panel.SetColorFunction);};var oCell=oTable.insertRow(-1).insertCell(-1);oCell.colSpan=8;oCell.appendChild(oDiv);targetDiv.appendChild(oTable);} ! var FCKTableHandler=new Object();FCKTableHandler.InsertRow=function(){var oRow=FCKSelection.MoveToAncestorNode("TR");if (!oRow) return;var oNewRow=oRow.cloneNode(true);oRow.parentNode.insertBefore(oNewRow, oRow);FCKTableHandler.ClearRow(oRow);};FCKTableHandler.DeleteRows=function(row){if (!row) row=FCKSelection.MoveToAncestorNode("TR");if (!row) return;var oTable=FCKTools.GetElementAscensor(row, 'TABLE');if (oTable.rows.length==1){FCKTableHandler.DeleteTable(oTable);return;};row.parentNode.removeChild(row);};FCKTableHandler.DeleteTable=function(table){if (!table) table=FCKSelection.MoveToAncestorNode("TABLE");if (!table) return;table.parentNode.removeChild(table);};FCKTableHandler.InsertColumn=function(){var oCell=FCKSelection.MoveToAncestorNode("TD");if (!oCell) return;var oTable=FCKTools.GetElementAscensor(oCell, 'TABLE');var iIndex=oCell.cellIndex + 1;for (var i=0 ; i < oTable.rows.length ; i++){var oRow=oTable.rows[i];if (oRow.cells.length < iIndex) continue;oCell=FCK.EditorDocument.createElement('TD');oCell.innerHTML=' ';var oBaseCell=oRow.cells[iIndex];if (oBaseCell){oRow.insertBefore(oCell, oBaseCell);}else{oRow.appendChild(oCell);};};};FCKTableHandler.DeleteColumns=function(){var oCell=FCKSelection.MoveToAncestorNode("TD");if (!oCell) return;var oTable=FCKTools.GetElementAscensor(oCell, 'TABLE');var iIndex=oCell.cellIndex;for (var i=oTable.rows.length - 1 ; i >=0 ; i--){var oRow=oTable.rows[i];if (iIndex==0 && oRow.cells.length==1){FCKTableHandler.DeleteRows(oRow);continue;};if (oRow.cells[iIndex]) oRow.removeChild(oRow.cells[iIndex]);};};FCKTableHandler.InsertCell=function(){var oCell=FCKSelection.MoveToAncestorNode("TD");if (!oCell) return;var oNewCell=FCK.EditorDocument.createElement("TD");oNewCell.innerHTML=" ";if (oCell.cellIndex==oCell.parentNode.cells.lenght - 1){oCell.parentNode.appendChild(oNewCell);}else{oCell.parentNode.insertBefore(oNewCell, oCell.nextSibling);};};FCKTableHandler.DeleteCell=function(cell){if (cell.parentNode.cells.length==1){FCKTableHandler.DeleteRows(FCKTools.GetElementAscensor( cell, 'TR' ));return;};cell.parentNode.removeChild(cell);};FCKTableHandler.DeleteCells=function(){var aCells=FCKTableHandler.GetSelectedCells();for (var i=aCells.length - 1 ; i >=0 ; i--){FCKTableHandler.DeleteCell(aCells[i]);};};FCKTableHandler.MergeCells=function(){alert('Command not implemented.');};FCKTableHandler.SplitCell=function(){alert('Command not implemented.');};FCKTableHandler.ClearRow=function(tr){var aCells=tr.cells;for (var i=0 ; i < aCells.length ; i++){aCells[i].innerHTML=' ';};} ! FCKTableHandler.GetSelectedCells=function(){var aCells=new Array();var oSelection=FCK.EditorWindow.getSelection();if (oSelection.rangeCount==1 && oSelection.anchorNode.nodeType==3){var oParent=FCKTools.GetElementAscensor(oSelection.anchorNode, 'TD');if (oParent){aCells[0]=oParent;return aCells;};};for (var i=0 ; i < oSelection.rangeCount ; i++){var oRange=oSelection.getRangeAt(i);var oCell=oRange.startContainer.childNodes[ oRange.startOffset ];if (oCell.tagName=='TD') aCells[aCells.length]=oCell;};return aCells;}; ! var FCKNamedCommand=function(commandName){this.Name=commandName;};FCKNamedCommand.prototype.Execute=function(){FCK.ExecuteNamedCommand(this.Name);};FCKNamedCommand.prototype.GetState=function(){return FCK.GetNamedCommandState(this.Name);}; ! var FCKDialogCommand=function(name, title, url, width, height, getStateFunction, getStateParam){this.Name=name;this.Title=title;this.Url=url;this.Width=width;this.Height=height;this.GetStateFunction=getStateFunction;this.GetStateParam=getStateParam;};FCKDialogCommand.prototype.Execute=function(){FCKDialog.OpenDialog('FCKDialog_' + this.Name , this.Title, this.Url, this.Width, this.Height);};FCKDialogCommand.prototype.GetState=function(){if (this.GetStateFunction){return this.GetStateFunction(this.GetStateParam);}else{return FCK_TRISTATE_OFF;};};var FCKUndefinedCommand=function(){this.Name='Undefined';};FCKUndefinedCommand.prototype.Execute=function(){alert('Command not implemented.');};FCKUndefinedCommand.prototype.GetState=function(){return FCK_TRISTATE_OFF;};var FCKFontNameCommand=function(){this.Name='FontName';};FCKFontNameCommand.prototype.Execute=function(fontName){if (fontName==null || fontName==""){}else{FCK.ExecuteNamedCommand('FontName', fontName);};};FCKFontNameCommand.prototype.GetState=function(){return FCK.GetNamedCommandValue('FontName');};var FCKFontSizeCommand=function(){this.Name='FontSize';};FCKFontSizeCommand.prototype.Execute=function(fontSize){if (typeof( fontSize )=='string' ) fontSize = parseInt(fontSize);if (fontSize==null || fontSize==''){FCK.ExecuteNamedCommand('FontSize', 3);}else{FCK.ExecuteNamedCommand('FontSize', fontSize);};};FCKFontSizeCommand.prototype.GetState=function(){return FCK.GetNamedCommandValue('FontSize');};var FCKFormatBlockCommand=function(){this.Name='FormatBlock';};FCKFormatBlockCommand.prototype.Execute=function(formatName){if (formatName==null || formatName==''){FCK.ExecuteNamedCommand('FormatBlock', '<P>');}else{FCK.ExecuteNamedCommand('FormatBlock', formatName);};};FCKFormatBlockCommand.prototype.GetState=function(){return FCK.GetNamedCommandValue('FormatBlock');};var FCKPreviewCommand=function(){this.Name='Preview';};FCKPreviewCommand.prototype.Execute=function(){FCK.Preview();};FCKPreviewCommand.prototype.GetState=function(){return FCK_TRISTATE_OFF;};var FCKSaveCommand=function(){this.Name='Save';};FCKSaveCommand.prototype.Execute=function(){var oForm=FCK.LinkedField.form;oForm.submit();};FCKSaveCommand.prototype.GetState=function(){return FCK_TRISTATE_OFF;};var FCKNewPageCommand=function(){this.Name='NewPage';};FCKNewPageCommand.prototype.Execute=function(){FCK.SetHTML('');};FCKNewPageCommand.prototype.GetState=function(){return FCK_TRISTATE_OFF;};var FCKSourceCommand=function(){this.Name="Source";};FCKSourceCommand.prototype.Execute=function(){FCK.SwitchEditMode();};FCKSourceCommand.prototype.GetState=function(){return (FCK.EditMode==FCK_EDITMODE_WYSIWYG ? FCK_TRISTATE_OFF : FCK_TRISTATE_ON);} ! var FCKTextColorCommand=function(type){this.Name=type=='ForeColor' ? 'TextColor' : 'BGColor';this.Type=type;this._Panel=new FCKColorPanel(this.SetColor);this._Panel.Create();};FCKTextColorCommand.prototype.Execute=function(panelX, panelY){FCK._ActiveColorPanelType=this.Type;this._Panel.Show(panelX, panelY);};FCKTextColorCommand.prototype.SetColor=function(color){if (FCK._ActiveColorPanelType=='ForeColor') FCK.ExecuteNamedCommand('ForeColor', color);else if (FCKBrowserInfo.IsGecko) FCK.ExecuteNamedCommand('hilitecolor', color);else FCK.ExecuteNamedCommand('BackColor', color);delete FCK._ActiveColorPanelType;};FCKTextColorCommand.prototype.GetState=function(){return FCK_TRISTATE_OFF;} ! var FCKPastePlainTextCommand=function(){this.Name='PasteText';};FCKPastePlainTextCommand.prototype.Execute=function(){FCK.PasteAsPlainText();};FCKPastePlainTextCommand.prototype.GetState=function(){return FCK.GetNamedCommandState('Paste');}; ! var FCKPasteWordCommand=function(){this.Name='PasteWord';};FCKPasteWordCommand.prototype.Execute=function(){FCK.PasteFromWord();};FCKPasteWordCommand.prototype.GetState=function(){return FCK.GetNamedCommandState('Paste');}; ! var FCKTableCommand=function(command){this.Name=command;};FCKTableCommand.prototype.Execute=function(){switch (this.Name){case 'TableInsertRow' : FCKTableHandler.InsertRow();break;case 'TableDeleteRows' : FCKTableHandler.DeleteRows();break;case 'TableInsertColumn' : FCKTableHandler.InsertColumn();break;case 'TableDeleteColumns' : FCKTableHandler.DeleteColumns();break;case 'TableInsertCell' : FCKTableHandler.InsertCell();break;case 'TableDeleteCells' : FCKTableHandler.DeleteCells();break;case 'TableMergeCells' : FCKTableHandler.MergeCells();break;case 'TableSplitCell' : FCKTableHandler.SplitCell();break;default : alert('Unknown command "' + this.Name + '".');};};FCKTableCommand.prototype.GetState=function(){return FCK_TRISTATE_OFF;} ! var FCKCommands=new Object();var sNamedCommands=[ 'Cut','Copy','Paste','Print','Find','SelectAll','RemoveFormat','Unlink','Undo','Redo', 'Bold','Italic','Underline','StrikeThrough','Subscript','Superscript', 'JustifyLeft','JustifyCenter','JustifyRight','JustifyFull','Outdent','Indent', 'InsertOrderedList','InsertUnorderedList','InsertHorizontalRule'];for (i=0 ; i < sNamedCommands.length ; i++){FCKCommands[ sNamedCommands[i] ]=new FCKNamedCommand(sNamedCommands[i]);};FCKCommands['Link'] = new FCKDialogCommand( 'Link' , FCKLang.DlgLnkWindowTitle, 'dialog/fck_link.html' , 400, 330, FCK.GetNamedCommandState, 'CreateLink' );FCKCommands['About'] = new FCKDialogCommand( 'About' , FCKLang.About, 'dialog/fck_about.html' , 400, 330 );FCKCommands['Image'] = new FCKDialogCommand( 'Image' , 'Image Properties', 'dialog/fck_image.html' , 450, 400, FCK.GetNamedCommandState, 'InsertImage' );FCKCommands['Table'] = new FCKDialogCommand( 'Table' , 'Table Properties', 'dialog/fck_table.html' , 400, 250 );FCKCommands['TableProp'] = new FCKDialogCommand( 'Table' , 'Table Properties', 'dialog/fck_table.html?Parent', 400, 250 );FCKCommands['SpecialChar'] = new FCKDialogCommand( 'SpecialChar' , 'Select Character', 'dialog/fck_specialchar.html' , 400, 300, FCK.GetNamedCommandState, 'InsertImage' );FCKCommands['Smiley'] = new FCKDialogCommand( 'Smiley' , FCKLang.DlgSmileyTitle, 'dialog/fck_smiley.html' , FCKConfig.SmileyWindowWidth, FCKConfig.SmileyWindowHeight, FCK.GetNamedCommandState, 'InsertImage' );FCKCommands['FontName'] = new FCKFontNameCommand();FCKCommands['FontSize'] = new FCKFontSizeCommand();FCKCommands['FontFormat'] = new FCKFormatBlockCommand();FCKCommands['Source'] = new FCKSourceCommand();FCKCommands['Preview'] = new FCKPreviewCommand();FCKCommands['Save'] = new FCKSaveCommand();FCKCommands['NewPage'] = new FCKNewPageCommand();FCKCommands['TextColor'] = new FCKTextColorCommand('ForeColor');FCKCommands['BGColor'] = new FCKTextColorCommand('BackColor');FCKCommands['PasteText'] = new FCKPastePlainTextCommand();FCKCommands['PasteWord'] = new FCKPasteWordCommand();FCKCommands['TableInsertRow'] = new FCKTableCommand('TableInsertRow');FCKCommands['TableDeleteRows'] = new FCKTableCommand('TableDeleteRows');FCKCommands['TableInsertColumn'] = new FCKTableCommand('TableInsertColumn');FCKCommands['TableDeleteColumns'] = new FCKTableCommand('TableDeleteColumns');FCKCommands['TableInsertCell'] = new FCKTableCommand('TableInsertCell');FCKCommands['TableDeleteCells'] = new FCKTableCommand('TableDeleteCells');FCKCommands['TableMergeCells'] = new FCKTableCommand('TableMergeCells');FCKCommands['TableSplitCell'] = new FCKTableCommand('TableSplitCell');FCKCommands['Undefined'] = new FCKUndefinedCommand(); ! var FCKToolbarButton=function(commandName, label, tooltip, style, sourceView){this.Command=FCKCommands[ commandName ];this.Label=label ? label : commandName;this.Tooltip=tooltip ? tooltip : (label ? label : commandName);this.Style=style ? style : FCK_TOOLBARITEM_ONLYICON;this.SourceView=sourceView ? true : false;this.State=FCK_UNKNOWN;};FCKToolbarButton.prototype.CreateInstance=function(parentToolbar){this.DOMDiv=document.createElement('div');this.DOMDiv.className='TB_Button_Off';this.DOMDiv.FCKToolbarButton=this;this.DOMDiv.onmouseover=function(){if (this.FCKToolbarButton.State !=FCK_TRISTATE_DISABLED){this.className='TB_Button_On';};};this.DOMDiv.onmouseout=function(){if (this.FCKToolbarButton.State !=FCK_TRISTATE_DISABLED && this.FCKToolbarButton.State !=FCK_TRISTATE_ON){this.className='TB_Button_Off';};};this.DOMDiv.onclick=function(){if (this.FCKToolbarButton.State !=FCK_TRISTATE_DISABLED) this.FCKToolbarButton.Command.Execute();return false;};var sClass;switch (this.Style){case FCK_TOOLBARITEM_ONLYICON : sClass='TB_ButtonType_Icon';break;case FCK_TOOLBARITEM_ONLYTEXT : sClass='TB_ButtonType_Text';break;case FCK_TOOLBARITEM_ICONTEXT : sClass='';break;};this.DOMDiv.innerHTML='<table title="' + this.Tooltip + '" class="' + sClass + '" cellspacing="0" cellpadding="0" border="0" unselectable="on">' + '<tr>' + '<td class="TB_Icon" unselectable="on"><img src="' + FCKConfig.SkinPath + 'toolbar/button.' + this.Command.Name.toLowerCase() + '.gif" width="21" height="21" style="VISIBILITY: hidden" onload="this.style.visibility = \'\';" unselectable="on"></td>' + '<td class="TB_Text" unselectable="on">' + this.Label + '</td>' + '</tr>' + '</table>';var oCell=parentToolbar.DOMRow.insertCell(-1);oCell.appendChild(this.DOMDiv);this.RefreshState();};FCKToolbarButton.prototype.RefreshState=function(){var eState;if (FCK.EditMode==FCK_EDITMODE_SOURCE && ! this.SourceView) eState=FCK_TRISTATE_DISABLED;else eState=this.Command.GetState();if (eState==this.State) return;this.State=eState;switch (this.State){case FCK_TRISTATE_ON : this.DOMDiv.className='TB_Button_On';break;case FCK_TRISTATE_OFF : this.DOMDiv.className='TB_Button_Off';break;default : this.DOMDiv.className='TB_Button_Disabled';break;};} ! var FCKToolbarCombo=function(commandName, label, itemsValues, itemsNames, tooltip, style, firstIsBlank, itemsSeparator, sourceView){this.Command=FCKCommands[ commandName ];this.Label=label ? label : commandName;this.Tooltip=tooltip ? tooltip : (label ? label : commandName);this.Style=style ? style : FCK_TOOLBARITEM_ICONTEXT;this.SourceView=sourceView ? true : false;this.State=FCK_UNKNOWN;this.ItemsValues=itemsValues;this.ItemsNames=itemsNames ? itemsNames : itemsValues;this.ItemsSeparator=itemsSeparator ? itemsSeparator : ';';this.FirstIsBlank=firstIsBlank !=null ? firstIsBlank : true;};FCKToolbarCombo.prototype.CreateInstance=function(parentToolbar){this.DOMDiv=document.createElement('div');this.DOMDiv.className='TB_Combo_Off';var sClass;switch (this.Style){case FCK_TOOLBARITEM_ONLYICON : sClass='TB_ButtonType_Icon';break;case FCK_TOOLBARITEM_ONLYTEXT : sClass='TB_ButtonType_Text';break;case FCK_TOOLBARITEM_ICONTEXT : sClass='';break;};this.DOMDiv.innerHTML='<table class="' + sClass + '" cellspacing="0" cellpadding="0" border="0" unselectable="on">' + '<tr>' + '<td class="TB_Text" unselectable="on" nowrap>' + this.Label + '</td>' + '<td unselectable="on"><select title="' + this.Tooltip + '"></select></td>' + '</tr>' + '</table>';this.SelectElement=this.DOMDiv.firstChild.firstChild.firstChild.childNodes.item(1).firstChild;this.SelectElement.FCKToolbarCombo=this;this.SelectElement.onchange=function(){this.FCKToolbarCombo.Command.Execute(this.value);return false;};var oCell=parentToolbar.DOMRow.insertCell(-1);oCell.appendChild(this.DOMDiv);this.RefreshItems();this.RefreshState();};FCKToolbarCombo.prototype.RefreshItems=function(){var aNames=FCKTools.GetResultingArray(this.ItemsNames, this.ItemsSeparator);var aValues=FCKTools.GetResultingArray(this.ItemsValues, this.ItemsSeparator);FCKTools.RemoveAllSelectOptions(this.SelectElement);if (this.FirstIsBlank) FCKTools.AddSelectOption(document, this.SelectElement, '', '');for (var i=0 ; i < aValues.length ; i++){FCKTools.AddSelectOption(document, this.SelectElement, aNames[i], aValues[i]);};};FCKToolbarCombo.prototype.RefreshState=function(){var eState;if (FCK.EditMode==FCK_EDITMODE_SOURCE && ! this.SourceView){eState=FCK_TRISTATE_DISABLED;this.SelectElement.value='';}else{var sValue=this.Command.GetState();FCKTools.SelectNoCase(this.SelectElement, sValue ? sValue : '', '');eState=sValue==null ? FCK_TRISTATE_DISABLED : FCK_TRISTATE_ON;};if (eState==this.State) return;this.State=eState;this.DOMDiv.className=(eState==FCK_TRISTATE_ON ? 'TB_Combo_Off' : 'TB_Combo_Disabled');this.SelectElement.disabled=(eState==FCK_TRISTATE_DISABLED);}; ! var FCKToolbarPanelButton=function(commandName, label, tooltip, style){this.Command=FCKCommands[ commandName ];this.Label=label ? label : commandName;this.Tooltip=tooltip ? tooltip : (label ? label : commandName);this.Style=style ? style : FCK_TOOLBARITEM_ONLYICON;this.State=FCK_UNKNOWN;if (this.Command==null) alert('Unknown command name "' + commandName + '"');};FCKToolbarPanelButton.prototype.CreateInstance=function(parentToolbar){this.DOMDiv=document.createElement('div');this.DOMDiv.className='TB_Button_Off';this.DOMDiv.FCKToolbarButton=this;this.DOMDiv.onmouseover=function(){if (this.FCKToolbarButton.State !=FCK_TRISTATE_DISABLED){this.className='TB_Button_On';};};this.DOMDiv.onmouseout=function(){if (this.FCKToolbarButton.State !=FCK_TRISTATE_DISABLED && this.FCKToolbarButton.State !=FCK_TRISTATE_ON){this.className='TB_Button_Off';};};this.DOMDiv.onclick=function(ev){if (this.FCKToolbarButton.State !=FCK_TRISTATE_DISABLED) this.FCKToolbarButton.HandleOnClick(this.FCKToolbarButton, ev);if (ev) ev.stopPropagation();return false;};var sClass;switch (this.Style){case FCK_TOOLBARITEM_ONLYICON : sClass='TB_ButtonType_Icon';break;case FCK_TOOLBARITEM_ONLYTEXT : sClass='TB_ButtonType_Text';break;case FCK_TOOLBARITEM_ICONTEXT : sClass='';break;};this.DOMDiv.innerHTML='<table title="' + this.Tooltip + '" class="' + sClass + '" cellspacing="0" cellpadding="0" border="0" unselectable="on">' + '<tr>' + '<td class="TB_Icon" unselectable="on"><img src="' + FCKConfig.SkinPath + 'toolbar/button.' + this.Command.Name.toLowerCase() + '.gif" width="21" height="21" style="VISIBILITY: hidden" onload="this.style.visibility = \'\';" unselectable="on"></td>' + '<td class="TB_Text" unselectable="on">' + this.Label + '</td>' + '<td class="TB_ButtonArrow" unselectable="on"><img src="' + FCKConfig.SkinPath + 'images/toolbar.buttonarrow.gif" width="5" height="3"></td>' + '</tr>' + '</table>';var oCell=parentToolbar.DOMRow.insertCell(-1);oCell.appendChild(this.DOMDiv);this.RefreshState();};FCKToolbarPanelButton.prototype.RefreshState=FCKToolbarButton.prototype.RefreshState; ! FCKToolbarPanelButton.prototype.HandleOnClick=function(panelButton, ev){var e=panelButton.DOMDiv;var oDivCoords=FCKTools.GetElementPosition(e);var oFrmCoords=FCKTools.GetElementPosition(window.frameElement);var iPanelX=oDivCoords.X + oFrmCoords.X;var iPanelY=oDivCoords.Y + oFrmCoords.Y + e.offsetHeight;panelButton.Command.Execute(iPanelX,iPanelY);} ! var FCKToolbarItems = new Object() ;FCKToolbarItems['Source'] = new FCKToolbarButton( 'Source', FCKLang.Source, null, FCK_TOOLBARITEM_ICONTEXT, true ) ;FCKToolbarItems['Save'] = new FCKToolbarButton( 'Save', FCKLang.Save, null, null, true ) ;FCKToolbarItems['NewPage'] = new FCKToolbarButton( 'NewPage', FCKLang.NewPage, null, null, true ) ;FCKToolbarItems['Preview'] = new FCKToolbarButton( 'Preview', FCKLang.Preview, null, null, true ) ;FCKToolbarItems['About'] = new FCKToolbarButton( 'About', FCKLang.About ) ;FCKToolbarItems['Cut'] = new FCKToolbarButton( 'Cut', FCKLang.Cut, null, null, true ) ;FCKToolbarItems['Copy'] = new FCKToolbarButton( 'Copy', FCKLang.Copy, null, null, true ) ;FCKToolbarItems['Paste'] = new FCKToolbarButton( 'Paste', FCKLang.Paste, null, null, true ) ;FCKToolbarItems['PasteText'] = new FCKToolbarButton( 'PasteText', FCKLang.PasteText ) ;FCKToolbarItems['PasteWord'] = new FCKToolbarButton( 'PasteWord', FCKLang.PasteWord ) ;FCKToolbarItems['Print'] = new FCKToolbarButton( 'Print', FCKLang.Print, null, null, true ) ;FCKToolbarItems['Undo'] = new FCKToolbarButton( 'Undo', FCKLang.Undo, null, null, true ) ;FCKToolbarItems['Redo'] = new FCKToolbarButton( 'Redo', FCKLang.Redo, null, null, true ) ;FCKToolbarItems['Find'] = new FCKToolbarButton( 'Find', FCKLang.Find, null, null, true ) ;FCKToolbarItems['SelectAll'] = new FCKToolbarButton( 'SelectAll', FCKLang.SelectAll, null, null, true ) ;FCKToolbarItems['RemoveFormat'] = new FCKToolbarButton( 'RemoveFormat', FCKLang.RemoveFormat ) ;FCKToolbarItems['Unlink'] = new FCKToolbarButton( 'Unlink', FCKLang.RemoveLink ) ;FCKToolbarItems['Bold'] = new FCKToolbarButton( 'Bold', FCKLang.Bold ) ;FCKToolbarItems['Italic'] = new FCKToolbarButton( 'Italic', FCKLang.Italic ) ;FCKToolbarItems['Underline'] = new FCKToolbarButton( 'Underline', FCKLang.Underline ) ;FCKToolbarItems['StrikeThrough']= new FCKToolbarButton( 'StrikeThrough', FCKLang.StrikeThrough ) ;FCKToolbarItems['Subscript'] = new FCKToolbarButton( 'Subscript', FCKLang.Subscript ) ;FCKToolbarItems['Superscript'] = new FCKToolbarButton( 'Superscript', FCKLang.Superscript ) ;FCKToolbarItems['OrderedList'] = new FCKToolbarButton( 'InsertOrderedList', FCKLang.NumberedList ) ;FCKToolbarItems['UnorderedList']= new FCKToolbarButton( 'InsertUnorderedList', FCKLang.BulletedList ) ;FCKToolbarItems['Outdent'] = new FCKToolbarButton( 'Outdent', FCKLang.DecreaseIndent ) ;FCKToolbarItems['Indent'] = new FCKToolbarButton( 'Indent', FCKLang.IncreaseIndent ) ;FCKToolbarItems['Link'] = new FCKToolbarButton( 'Link', FCKLang.InsertLink) ;FCKToolbarItems['Unlink'] = new FCKToolbarButton( 'Unlink', FCKLang.RemoveLink ) ;FCKToolbarItems['Image'] = new FCKToolbarButton( 'Image', FCKLang.InsertImage ) ;FCKToolbarItems['Table'] = new FCKToolbarButton( 'Table', FCKLang.InsertTable ) ;FCKToolbarItems['SpecialChar'] = new FCKToolbarButton( 'SpecialChar', FCKLang.InsertSpecialChar ) ;FCKToolbarItems['Smiley'] = new FCKToolbarButton( 'Smiley', FCKLang.InsertSmiley ) ;FCKToolbarItems['Rule'] = new FCKToolbarButton( 'InsertHorizontalRule', FCKLang.InsertLine ) ;FCKToolbarItems['JustifyLeft'] = new FCKToolbarButton( 'JustifyLeft', FCKLang.LeftJustify ) ;FCKToolbarItems['JustifyCenter']= new FCKToolbarButton( 'JustifyCenter', FCKLang.CenterJustify ) ;FCKToolbarItems['JustifyRight'] = new FCKToolbarButton( 'JustifyRight', FCKLang.RightJustify ) ;FCKToolbarItems['JustifyFull'] = new FCKToolbarButton( 'JustifyFull', FCKLang.BlockJustify) ;FCKToolbarItems['FontName'] = new FCKToolbarCombo( 'FontName', FCKLang.Font, FCKConfig.FontNames, FCKConfig.FontNames ) ;FCKToolbarItems['FontSize'] = new FCKToolbarCombo( 'FontSize', FCKLang.FontSize, '1;2;3;4;5;6;7', 'xx-small;x-small;small;medium;large;x-large;xx-large' ) ;FCKToolbarItems['FontFormat'] = new FCKToolbarCombo( 'FontFormat', FCKLang.FontFormat, '<P>;<DIV>;<H1>;<H2>;<H3>;<H4>', 'Normal (P);Normal (DIV);Heading 1;Heading 2;Heading 3;Heading 4' ) ;FCKToolbarItems['TextColor'] = new FCKToolbarPanelButton( 'TextColor', FCKLang.TextColor ) ;FCKToolbarItems['BGColor'] = new FCKToolbarPanelButton( 'BGColor', FCKLang.BGColor ) ; ! var FCKToolbar=function(){this.Items=new Array();this.DOMTable=document.createElement('table');this.DOMTable.className='TB_Toolbar';with (this.DOMTable){style.styleFloat=style.cssFloat=FCKLang.Dir=='rtl' ? 'right' : 'left';cellPadding=0;cellSpacing=0;border=0;};this.DOMRow=this.DOMTable.insertRow(-1);var oCell=this.DOMRow.insertCell(-1);oCell.className='TB_Start';oCell.innerHTML='<img src="' + FCKConfig.SkinPath + 'images/toolbar.start.gif" width="7" height="21" style="VISIBILITY: hidden" onload="this.style.visibility = \'\';" unselectable="on">';FCKToolbarSet.DOMElement.appendChild(this.DOMTable);};FCKToolbar.prototype.AddItem=function(toolbarItem){this.Items[ this.Items.length ]=toolbarItem;toolbarItem.CreateInstance(this);};FCKToolbar.prototype.AddSeparator=function(){var oCell=this.DOMRow.insertCell(-1);oCell.unselectable='on';oCell.innerHTML='<img src="' + FCKConfig.SkinPath + 'images/toolbar.separator.gif" width="5" height="21" style="VISIBILITY: hidden" onload="this.style.visibility = \'\';" unselectable="on">';};FCKToolbar.prototype.AddTerminator=function(){var oCell=this.DOMRow.insertCell(-1);oCell.className='TB_End';oCell.innerHTML='<img src="' + FCKConfig.SkinPath + 'images/toolbar.end.gif" width="12" height="21" style="VISIBILITY: hidden" onload="this.style.visibility = \'\';" unselectable="on">';}; ! var FCKToolbarSet=new Object();FCKToolbarSet.Toolbars=new Array();FCKToolbarSet.Expand=function(){document.getElementById('Collapsed').style.display = 'none';document.getElementById('Expanded').style.display = '';if (! FCKBrowserInfo.IsIE){window.setTimeout("window.onresize()", 1);};};FCKToolbarSet.Collapse=function(){document.getElementById('Collapsed').style.display = '';document.getElementById('Expanded').style.display = 'none';if (! FCKBrowserInfo.IsIE){window.setTimeout("window.onresize()", 1);};};FCKToolbarSet.Restart=function(){if (!FCKConfig.ToolbarCanCollapse || FCKConfig.ToolbarStartExpanded) this.Expand();else this.Collapse();document.getElementById('CollapseHandle').style.display = FCKConfig.ToolbarCanCollapse ? '' : 'none';};FCKToolbarSet.Load=function(toolbarSetName){this.DOMElement=document.getElementById('eToolbar');var ToolbarSet=FCKConfig.ToolbarSets[toolbarSetName];if (! ToolbarSet){alert('Toolbar set "' + toolbarSetName + '" doesn\'t exist.');return;};this.Toolbars=new Array();for (var x=0 ; x < ToolbarSet.length ; x++){var oToolbar=new FCKToolbar();for (var j=0 ; j < ToolbarSet[x].length ; j++){var sItem=ToolbarSet[x][j];if (sItem=='-') oToolbar.AddSeparator();else{var oItem=FCKToolbarItems[sItem];if (oItem) oToolbar.AddItem(oItem);else alert('Unknown toolbar item name "' + sItem + "'");};};oToolbar.AddTerminator();this.Toolbars[ this.Toolbars.length ]=oToolbar;};this.Redraw();};FCKToolbarSet.Redraw=function(){};FCKToolbarSet.RefreshItemsState=function(){for (var i=0 ; i < FCKToolbarSet.Toolbars.length ; i++){var oToolbar=FCKToolbarSet.Toolbars[i];for (var j=0 ; j < oToolbar.Items.length ; j++){oToolbar.Items[j].RefreshState();};};}; ! var FCKDialog=new Object();FCKDialog.OpenDialog=function(dialogName, dialogTitle, dialogPage, width, height, customValue){var oDialogInfo=new Object();oDialogInfo.Title=dialogTitle;oDialogInfo.Page=dialogPage;oDialogInfo.Editor=window;oDialogInfo.CustomValue=customValue;var sUrl=FCKConfig.BasePath + 'fckdialog.html';this.Show(oDialogInfo, dialogName, sUrl, width, height);}; ! FCKDialog.Show=function(dialogInfo, dialogName, pageUrl, dialogWidth, dialogHeight){var iTop=(screen.height - dialogHeight) / 2;var iLeft=(screen.width - dialogWidth) / 2;var sOption="location=no,menubar=no,resizable=no,toolbar=no,dependent=yes" + ",width=" + dialogWidth + ",height=" + dialogHeight + ",top=" + iTop + ",left=" + iLeft;var oWindow=window.open('', 'FCKEditorDialog', sOption, true);oWindow.moveTo(iLeft, iTop);oWindow.resizeTo(dialogWidth, dialogHeight);oWindow.focus();oWindow.location.href=pageUrl;oWindow.dialogArguments=dialogInfo;this.Window=oWindow;window.top.captureEvents(Event.CLICK | Event.MOUSEDOWN | Event.MOUSEUP | Event.FOCUS);window.top.parent.addEventListener('mousedown', this.CheckFocus, true);window.top.parent.addEventListener('mouseup', this.CheckFocus, true);window.top.parent.addEventListener('click', this.CheckFocus, true);window.top.parent.addEventListener('focus', this.CheckFocus, true);};FCKDialog.CheckFocus=function(){if (FCKDialog.Window && !FCKDialog.Window.closed){FCKDialog.Window.focus();return false;}else{window.top.releaseEvents(Event.CLICK | Event.MOUSEDOWN | Event.MOUSEUP | Event.FOCUS);window.top.parent.removeEventListener('onmousedown', FCKDialog.CheckFocus, true);window.top.parent.removeEventListener('mouseup', FCKDialog.CheckFocus, true);window.top.parent.removeEventListener('click', FCKDialog.CheckFocus, true);window.top.parent.removeEventListener('onfocus', FCKDialog.CheckFocus, true);};}; ! var FCKContextMenuItem=function(contextMenu, commandName, label, hasIcon){this.ContextMenu=contextMenu;this.Command=FCKCommands[ commandName ];this.Label=label ? label : commandName;this.HasIcon=hasIcon ? true : false;};FCKContextMenuItem.prototype.CreateTableRow=function(targetTable){this._Row=targetTable.insertRow(-1);this._Row.className='CM_Disabled';this._Row.FCKContextMenuItem=this;this._Row.onmouseover=function(){if (this.className !='CM_Disabled') this.className='CM_Over';};this._Row.onmouseout=function(){if (this.className !='CM_Disabled') this.className='CM_Option';};this._Row.onclick=function(){this.FCKContextMenuItem.ContextMenu.Hide();this.FCKContextMenuItem.Command.Execute();return false;};var oCell=this._Row.insertCell(-1);oCell.className='CM_Icon';if (this.HasIcon ) oCell.innerHTML='<img alt="" src="' + FCKConfig.SkinPath + 'toolbar/button.' + this.Command.Name.toLowerCase() + '.gif" width="21" height="20" unselectable="on">';oCell=this._Row.insertCell(-1);oCell.className='CM_Label';oCell.unselectable='on';oCell.noWrap=true;oCell.innerHTML=this.Label;};FCKContextMenuItem.prototype.SetVisible=function(isVisible){this._Row.style.display=isVisible ? '' : 'none';};FCKContextMenuItem.prototype.RefreshState=function(){switch (this.Command.GetState()){case FCK_TRISTATE_ON : case FCK_TRISTATE_OFF : this._Row.className='CM_Option';break;default : this._Row.className='CM_Disabled';break;};}; ! var FCKContextMenuSeparator=function(){};FCKContextMenuSeparator.prototype.CreateTableRow=function(targetTable){this._Row=targetTable.insertRow(-1);this._Row.className='CM_Separator';var oCell=this._Row.insertCell(-1);oCell.className='CM_Icon';oCell=this._Row.insertCell(-1);oCell.className='CM_Label';oCell.innerHTML='<div></div>';};FCKContextMenuSeparator.prototype.SetVisible=function(isVisible){this._Row.style.display=isVisible ? '' : 'none';};FCKContextMenuSeparator.prototype.RefreshState=function(){}; ! var FCKContextMenuGroup=function(){this.IsVisible=true;this.Items=new Array();this.ValidationFunction=null;};FCKContextMenuGroup.prototype.Add=function(contextMenuItem){this.Items[ this.Items.length ]=contextMenuItem;};FCKContextMenuGroup.prototype.CreateTableRows=function(table){for (var i=0 ; i < this.Items.length ; i++){this.Items[i].CreateTableRow(table);};};FCKContextMenuGroup.prototype.SetVisible=function(isVisible){for (var i=0 ; i < this.Items.length ; i++){this.Items[i].SetVisible(isVisible);};this.IsVisible=isVisible;};FCKContextMenuGroup.prototype.RefreshState=function(){if (! this.IsVisible) return;for (var i=0 ; i < this.Items.length ; i++){this.Items[i].RefreshState();};} ! var FCKContextMenu=new Object();FCKContextMenu._IsLoaded=false;FCKContextMenu.Reload=function(){this._Div=this._Document.createElement('DIV');this._Div.className='CM_ContextMenu';this._Div.style.position='absolute';this._Div.style.visibility='hidden';this._Document.body.appendChild(this._Div);var oTable=this._Document.createElement('TABLE');oTable.cellSpacing=0;oTable.cellPadding=0;oTable.border=0;this._Div.appendChild(oTable);this.Groups=new Object();this.Groups['Generic'] = new FCKContextMenuGroup();with (this.Groups['Generic']){Add(new FCKContextMenuItem( this, 'Cut' , FCKLang['Cut'] , true ));Add(new FCKContextMenuItem( this, 'Copy' , FCKLang['Copy'] , true ));Add(new FCKContextMenuItem( this, 'Paste' , FCKLang['Paste'] , true ));};this.Groups['Link'] = new FCKContextMenuGroup();with (this.Groups['Link']){Add(new FCKContextMenuSeparator());Add(new FCKContextMenuItem( this, 'Link' , FCKLang['EditLink'] , true ));Add(new FCKContextMenuItem( this, 'Unlink' , FCKLang['RemoveLink'] , true ));};this.Groups['TableCell'] = new FCKContextMenuGroup();with (this.Groups['TableCell']){Add(new FCKContextMenuSeparator());Add(new FCKContextMenuItem( this, 'TableInsertRow', FCKLang["InsertRow"], true ));Add(new FCKContextMenuItem( this, 'TableDeleteRows', FCKLang["DeleteRows"], true ));Add(new FCKContextMenuSeparator());Add(new FCKContextMenuItem( this, 'TableInsertColumn', FCKLang["InsertColumn"], true ));Add(new FCKContextMenuItem( this, 'TableDeleteColumns', FCKLang["DeleteColumns"], true ));Add(new FCKContextMenuSeparator());Add(new FCKContextMenuItem( this, 'TableInsertCell', FCKLang["InsertCell"], true ));Add(new FCKContextMenuItem( this, 'TableDeleteCells', FCKLang["DeleteCells"], true ));Add(new FCKContextMenuSeparator());Add(new FCKContextMenuItem( this, 'TableProp', FCKLang["TableProperties"], true ));};this.Groups['Table'] = new FCKContextMenuGroup();with (this.Groups['Table']){Add(new FCKContextMenuSeparator());Add(new FCKContextMenuItem( this, 'Table', FCKLang["TableProperties"], true ));};this.Groups['Image'] = new FCKContextMenuGroup();with (this.Groups['Image']){Add(new FCKContextMenuSeparator());Add(new FCKContextMenuItem( this, 'Image', FCKLang["ImageProperties"], true ));};this.Groups['Select'] = new FCKContextMenuGroup();with (this.Groups['Select']){Add(new FCKContextMenuSeparator());Add(new FCKContextMenuItem( this, 'Undefined', "Selection Field Properties" ));};this.Groups['Textarea'] = new FCKContextMenuGroup();with (this.Groups['Textarea']){Add(new FCKContextMenuSeparator());Add(new FCKContextMenuItem( this, 'Undefined', "Textarea Properties" ));};for (var o in this.Groups){this.Groups[o].CreateTableRows(oTable);};this._IsLoaded=true;};FCKContextMenu.RefreshState=function(){var oTag=FCKSelection.GetSelectedElement();var sTagName;if (oTag){sTagName=oTag.tagName;};this.Groups['Link'].SetVisible( FCK.GetNamedCommandState( 'Unlink' ) != FCK_TRISTATE_DISABLED );this.Groups['TableCell'].SetVisible( sTagName != 'TABLE' && FCKSelection.HasAncestorNode('TABLE') );this.Groups['Table'].SetVisible( sTagName == 'TABLE' );this.Groups['Image'].SetVisible( sTagName == 'IMG' );this.Groups['Select'].SetVisible( sTagName == 'SELECT' );this.Groups['Textarea'].SetVisible( sTagName == 'TEXTAREA' );for (var o in this.Groups){this.Groups[o].RefreshState();};}; ! FCKTools.AppendStyleSheet(window.parent.document, FCKConfig.SkinPath + 'fck_contextmenu.css');FCKContextMenu.Show=function(x, y){if (! this._Document){this._Document=window.parent.document;};if (!this._IsLoaded){this.Reload();this._Div.style.zIndex=10000;this._Div.oncontextmenu=function() { return false ;};};this.RefreshState();var oCoordsA=FCKTools.GetElementPosition(FCK.EditorWindow.frameElement);var oCoordsB=FCKTools.GetElementPosition(window.frameElement);x +=oCoordsA.X + oCoordsB.X;y +=oCoordsA.Y + oCoordsB.Y;var iXSpace=x + this._Div.offsetWidth - this._Div.ownerDocument.defaultView.innerWidth;var iYSpace=y + this._Div.offsetHeight - this._Div.ownerDocument.defaultView.innerHeight;if (iXSpace > 0) x -=this._Div.offsetWidth;if (iYSpace > 0) y -=this._Div.offsetHeight;this._Div.style.left=x + 'px';this._Div.style.top=y + 'px';var oActualWindow=FCK.EditorWindow;while (oActualWindow){oActualWindow.document.addEventListener('click', FCKContextMenu._OnDocumentClick, false);if (oActualWindow !=oActualWindow.parent) oActualWindow=oActualWindow.parent;else if (oActualWindow.opener==null) oActualWindow=oActualWindow.opener;else break;};this._Div.style.visibility='';};FCKContextMenu._OnDocumentClick=function(event){var e=event.target;while (e){if (e==FCKContextMenu._Div) return;e=e.parentNode;};FCKContextMenu.Hide();};FCKContextMenu.Hide=function(){this._Div.style.visibility='hidden';this._Div.style.left=this._Div.style.top='1px';} ! if (FCKConfig.ForcePasteAsPlainText) FCK.Events.AttachEvent("OnPaste", FCK.Paste);FCKToolbarSet.Name=FCKURLParams['Toolbar'] || 'Default';FCKToolbarSet.Load(FCKToolbarSet.Name);FCKToolbarSet.Restart();FCK.AttachToOnSelectionChange(FCKToolbarSet.RefreshItemsState);FCK.Config=FCKConfig;FCK.ToolbarSet=FCKToolbarSet;FCK.SetStatus(FCK_STATUS_COMPLETE);if (typeof( window.parent.FCKeditor_OnComplete )=='function') window.parent.FCKeditor_OnComplete(FCK); --- 1,45 ---- /* ! * 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/ ! * ! * This file has been compacted for best loading performance. ! * ! * Version: 2.0 Beta 2 * Created: 2004-09-10 02:40:08 ! */ ! FCK.ExecuteNamedCommand=function(commandName, commandParameter){FCK.Focus();FCK.EditorDocument.execCommand(commandName, false, commandParameter);FCK.Events.FireEvent('OnSelectionChange');};FCK.GetNamedCommandState=function(commandName){try{if (!FCK.EditorDocument.queryCommandEnabled( commandName )) return FCK_TRISTATE_DISABLED;else return FCK.EditorDocument.queryCommandState(commandName) ? FCK_TRISTATE_ON : FCK_TRISTATE_OFF;}catch (e){return FCK_TRISTATE_OFF;};};FCK.GetNamedCommandValue=function(commandName){var sValue='';var eState=FCK.GetNamedCommandState(commandName);if (eState==FCK_TRISTATE_DISABLED) return null;try{sValue=this.EditorDocument.queryCommandValue(commandName);}catch(e) {};return sValue ? sValue : '';};FCK.CreateLink=function(url){if (url.length==0) FCK.ExecuteNamedCommand('Unlink');else{FCK.ExecuteNamedCommand('CreateLink', "javascript:void(0);/*fckeditortemplink*/");var oLinks=this.EditorDocument.links;for (i=0 ; i < oLinks.length ; i++){if (oLinks[i].href=="javascript:void(0);/*fckeditortemplink*/"){oLinks[i].href=url;return oLinks[i];};};};};FCK.CleanAndPaste=function(html){html=html.replace(/<\/?SPAN[^>]*>/gi, "");html=html.replace(/<(\w[^>]*) class=([^ |>]*)([^>]*)/gi, "<$1$3");html=html.replace(/<(\w[^>]*) style="([^"]*)"([^>]*)/gi, "<$1$3");html=html.replace(/<(\w[^>]*) lang=([^ |>]*)([^>]*)/gi, "<$1$3");html=html.replace(/<\\?\?xml[^>]*>/gi, "");html=html.replace(/<\/?\w+:[^>]*>/gi, "");html=html.replace(/ /, " ");var re=new RegExp("(<P)([^>]*>.*?)(<\/P>)","gi");html=html.replace(re, "<div$2</div>");FCK.InsertHtml(html);};FCK.Preview=function(){var oWindow=window.open('', null, 'toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes');oWindow.document.write(FCK.GetHTML());oWindow.document.close();};FCK.SwitchEditMode=function(){var bWYSIWYG=(FCK.EditMode==FCK_EDITMODE_WYSIWYG);document.getElementById('eWysiwyg').style.display = bWYSIWYG ? "none" : "";document.getElementById('eSource').style.display = bWYSIWYG ? "" : "none";if (bWYSIWYG) document.getElementById('eSourceField').value = ( FCKConfig.EnableXHTML && FCKConfig.EnableSourceXHTML ? FCK.GetXHTML() : FCK.GetHTML());else FCK.SetHTML(FCK.GetHTML(), true);FCK.EditMode=bWYSIWYG ? FCK_EDITMODE_SOURCE : FCK_EDITMODE_WYSIWYG;FCK.Focus();FCKToolbarSet.RefreshItemsState();}; ! FCK._BaseGetNamedCommandState=FCK.GetNamedCommandState;FCK.GetNamedCommandState=function(commandName){switch (commandName){case 'Unlink' : return FCKSelection.HasAncestorNode('A') ? FCK_TRISTATE_OFF : FCK_TRISTATE_DISABLED;default : return FCK._BaseGetNamedCommandState(commandName);};};FCK._BaseExecuteNamedCommand=FCK.ExecuteNamedCommand;FCK.ExecuteNamedCommand=function(commandName, commandParameter){switch (commandName){case 'Print' : FCK.EditorWindow.print();break;case 'Paste' : try { if (FCK.Paste() ) FCK._BaseExecuteNamedCommand( 'Paste') ; }catch (e) { alert( "Your browser security settings don't permit the editor to automaticaly execute pasting operations. Please use the keyboard for that (Ctrl+V).") ;};break;case 'Cut' : try { FCK._BaseExecuteNamedCommand('Cut') ; }catch (e) { alert( "Your browser security settings don't permit the editor to automaticaly execute cutting operations. Please use the keyboard for that (Ctrl+X).") ;};break;case 'Copy' : try { FCK._BaseExecuteNamedCommand('Copy') ; }catch (e) { alert( "Your browser security settings don't permit the editor to automaticaly execute copying operations. Please use the keyboard for that (Ctrl+C).") ;};break;default : FCK._BaseExecuteNamedCommand(commandName, commandParameter);};};FCK.AttachToOnSelectionChange=function(functionPointer){this.Events.AttachEvent('OnSelectionChange', functionPointer);};FCK.Paste=function(){if (FCKConfig.ForcePasteAsPlainText){FCK.PasteAsPlainText();return false;}else if (FCKConfig.AutoDetectPasteFromWord && FCKBrowserInfo.IsIE55OrMore){var sHTML=FCK.GetClipboardHTML();var re=/<\w[^>]* class="?MsoNormal"?/gi;if (re.test( sHTML )){if (confirm( FCKLang["PasteWordConfirm"] )){FCK.CleanAndPaste(sHTML);return false;};};}else return true;};FCK.InsertHtml=function(html){var oSel=FCKSelection.Delete();var oRange=oSel.getRangeAt(0);var oFragment=oRange.createContextualFragment(html);var oLastNode=oFragment.lastChild;oRange.insertNode(oFragment);oRange.setEndAfter(oLastNode);oRange.setStartAfter(oLastNode);oSel.removeAllRanges();oSel=FCK.EditorWindow.getSelection();oSel.addRange(oRange);this.Focus();};FCK.InsertElement=function(element){var oSel=FCKSelection.Delete();var oRange=oSel.getRangeAt(0);oRange.insertNode(element);oRange.setEndAfter(element);oRange.setStartAfter(element);this.Focus();};FCK.PasteAsPlainText=function(){FCKDialog.OpenDialog('FCKDialog_Paste', 'Paste as Plain Text', 'dialog/fck_paste.html', 400, 330, 'PlainText');};FCK.PasteFromWord=function(){FCKDialog.OpenDialog('FCKDialog_Paste', 'Paste from Word', 'dialog/fck_paste.html', 400, 330, 'Word');};FCK.GetClipboardHTML=function(){return '';}; ! var FCKSelection=new Object();FCK.Selection=FCKSelection; ! FCKSelection.GetSelectedElement=function(){var oSel=FCK.EditorWindow.getSelection();if (oSel.rangeCount==1){var oRange=oSel.getRangeAt(0);if (oRange.startContainer==oRange.endContainer && (oRange.endOffset - oRange.startOffset)==1) return oSel.anchorNode.childNodes[ oSel.anchorOffset ];};};FCKSelection.MoveToNode=function(node){var oSel=FCK.EditorWindow.getSelection();for (i=oSel.rangeCount - 1 ; i >=0 ; i--){if (i==0) oSel.getRangeAt(i).selectNodeContents( node);else oSel.removeRange(oSel.getRangeAt(i));};};FCKSelection.HasAncestorNode=function(nodeTagName){var oContainer=this.GetSelectedElement();if (! oContainer && FCK.EditorWindow){try { oContainer=FCK.EditorWindow.getSelection().getRangeAt(0).startContainer ; }catch(e){};};while (oContainer){if (oContainer.tagName==nodeTagName) return true;oContainer=oContainer.parentNode;};return false;};FCKSelection.MoveToAncestorNode=function(nodeTagName){var oNode;var oContainer=this.GetSelectedElement();if (! oContainer) oContainer=FCK.EditorWindow.getSelection().getRangeAt(0).startContainer;while (oContainer){if (oContainer.tagName==nodeTagName) return oContainer;oContainer=oContainer.parentNode;};};FCKSelection.Delete=function(){var oSel=FCK.EditorWindow.getSelection();for (var i=0 ; i < oSel.rangeCount ; i++){oSel.getRangeAt(i).deleteContents();};return oSel;} ! var FCKPanel=function(){};FCKPanel.prototype.Create=function(){this.PanelDiv=window.parent.document.createElement('DIV');this.PanelDiv.style.visibility='hidden';this.PanelDiv.className='FCK_Panel';this.PanelDiv.style.zIndex=10000;this.PanelDiv.oncontextmenu=function() { return false ;};window.parent.document.body.appendChild(this.PanelDiv);if (this.CreatePanelBody) this.CreatePanelBody(window.parent.document, this.PanelDiv);this.Created=true;};FCKPanel.prototype.Show=function(panelX, panelY){if (! this.Created) this.Create();this.PanelDiv.style.left=panelX + 'px';this.PanelDiv.style.top=panelY + 'px';var oActualWindow=FCK.EditorWindow;while (oActualWindow){oActualWindow.document.addEventListener('click', this._OnDocumentClick, false);if (oActualWindow !=oActualWindow.parent) oActualWindow=oActualWindow.parent;else if (oActualWindow.opener==null) oActualWindow=oActualWindow.opener;else break;};this.PanelDiv.style.visibility='';FCK.ActivePanel=this;};FCKPanel.prototype._OnDocumentClick=function(event){if (! FCK.ActivePanel) return;var e=event.target;while (e){if (e==FCK.ActivePanel.PanelDiv) return;e=e.parentNode;};FCK.ActivePanel.Hide();};FCKPanel.prototype.Hide=function(){this.PanelDiv.style.visibility='hidden';this.PanelDiv.style.left=this.PanelDiv.style.top='1px';delete FCK.ActivePanel;} ! var FCKColorPanel=function(setColorFunction){this.SetColorFunction=setColorFunction;};FCKColorPanel.prototype=new FCKPanel;FCKColorPanel.prototype.CreatePanelBody=function(targetDocument, targetDiv){function CreateSelectionDiv(){var oDiv=targetDocument.createElement("DIV");oDiv.className='ColorDeselected';oDiv.onmouseover=function() { this.className='ColorSelected' ; };oDiv.onmouseout=function() { this.className='ColorDeselected' ; };return oDiv;};var oTable=targetDocument.createElement("TABLE");oTable.cellPadding=0;oTable.cellSpacing=0;oTable.border=0;var oDiv=CreateSelectionDiv();oDiv.innerHTML='<table cellspacing="0" cellpadding="0" width="100%" border="0">\ <tr>\ <td><div class="ColorBoxBorder"><div class="ColorBox" style="background-color: #000000"></div></div></td>\ <td nowrap width="100%" align="center" unselectable="on">Automatic</td>\ </tr>\ </table>';oDiv.Panel=this;oDiv.onclick=function(){this.className='ColorDeselected';this.Panel.SetColorFunction('');this.Panel.Hide();};var oCell=oTable.insertRow(-1).insertCell(-1);oCell.colSpan=8;oCell.appendChild(oDiv);var aColors=FCKConfig.FontColors.split(',');var iCounter=0;while (iCounter < aColors.length){var oRow=oTable.insertRow(-1);for (var i=0 ; i < 8 && iCounter < aColors.length ; i++, iCounter++){var oDiv=CreateSelectionDiv();oDiv.Color=aColors[iCounter];oDiv.innerHTML='<div class="ColorBoxBorder"><div class="ColorBox" style="background-color: #' + aColors[iCounter] + '"></div></div>';oDiv.Panel=this;oDiv.onclick=function(){this.className='ColorDeselected';this.Panel.SetColorFunction('#' + this.Color);this.Panel.Hide();};oCell=oRow.insertCell(-1);oCell.appendChild(oDiv);};};var oDiv=CreateSelectionDiv();oDiv.innerHTML='<table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td nowrap align="center">More Colors...</td></tr></table>';oDiv.Panel=this;oDiv.onclick=function(){this.className='ColorDeselected';this.Panel.Hide();FCKDialog.OpenDialog('FCKDialog_Color', 'Select a Color', 'dialog/fck_colorselector.html', 400, 330, this.Panel.SetColorFunction);};var oCell=oTable.insertRow(-1).insertCell(-1);oCell.colSpan=8;oCell.appendChild(oDiv);targetDiv.appendChild(oTable);} ! var FCKTableHandler=new Object();FCKTableHandler.InsertRow=function(){var oRow=FCKSelection.MoveToAncestorNode("TR");if (!oRow) return;var oNewRow=oRow.cloneNode(true);oRow.parentNode.insertBefore(oNewRow, oRow);FCKTableHandler.ClearRow(oRow);};FCKTableHandler.DeleteRows=function(row){if (!row) row=FCKSelection.MoveToAncestorNode("TR");if (!row) return;var oTable=FCKTools.GetElementAscensor(row, 'TABLE');if (oTable.rows.length==1){FCKTableHandler.DeleteTable(oTable);return;};row.parentNode.removeChild(row);};FCKTableHandler.DeleteTable=function(table){if (!table) table=FCKSelection.MoveToAncestorNode("TABLE");if (!table) return;table.parentNode.removeChild(table);};FCKTableHandler.InsertColumn=function(){var oCell=FCKSelection.MoveToAncestorNode("TD");if (!oCell) return;var oTable=FCKTools.GetElementAscensor(oCell, 'TABLE');var iIndex=oCell.cellIndex + 1;for (var i=0 ; i < oTable.rows.length ; i++){var oRow=oTable.rows[i];if (oRow.cells.length < iIndex) continue;oCell=FCK.EditorDocument.createElement('TD');oCell.innerHTML=' ';var oBaseCell=oRow.cells[iIndex];if (oBaseCell){oRow.insertBefore(oCell, oBaseCell);}else{oRow.appendChild(oCell);};};};FCKTableHandler.DeleteColumns=function(){var oCell=FCKSelection.MoveToAncestorNode("TD");if (!oCell) return;var oTable=FCKTools.GetElementAscensor(oCell, 'TABLE');var iIndex=oCell.cellIndex;for (var i=oTable.rows.length - 1 ; i >=0 ; i--){var oRow=oTable.rows[i];if (iIndex==0 && oRow.cells.length==1){FCKTableHandler.DeleteRows(oRow);continue;};if (oRow.cells[iIndex]) oRow.removeChild(oRow.cells[iIndex]);};};FCKTableHandler.InsertCell=function(){var oCell=FCKSelection.MoveToAncestorNode("TD");if (!oCell) return;var oNewCell=FCK.EditorDocument.createElement("TD");oNewCell.innerHTML=" ";if (oCell.cellIndex==oCell.parentNode.cells.lenght - 1){oCell.parentNode.appendChild(oNewCell);}else{oCell.parentNode.insertBefore(oNewCell, oCell.nextSibling);};};FCKTableHandler.DeleteCell=function(cell){if (cell.parentNode.cells.length==1){FCKTableHandler.DeleteRows(FCKTools.GetElementAscensor( cell, 'TR' ));return;};cell.parentNode.removeChild(cell);};FCKTableHandler.DeleteCells=function(){var aCells=FCKTableHandler.GetSelectedCells();for (var i=aCells.length - 1 ; i >=0 ; i--){FCKTableHandler.DeleteCell(aCells[i]);};};FCKTableHandler.MergeCells=function(){alert('Command not implemented.');};FCKTableHandler.SplitCell=function(){alert('Command not implemented.');};FCKTableHandler.ClearRow=function(tr){var aCells=tr.cells;for (var i=0 ; i < aCells.length ; i++){aCells[i].innerHTML=' ';};} ! FCKTableHandler.GetSelectedCells=function(){var aCells=new Array();var oSelection=FCK.EditorWindow.getSelection();if (oSelection.rangeCount==1 && oSelection.anchorNode.nodeType==3){var oParent=FCKTools.GetElementAscensor(oSelection.anchorNode, 'TD');if (oParent){aCells[0]=oParent;return aCells;};};for (var i=0 ; i < oSelection.rangeCount ; i++){var oRange=oSelection.getRangeAt(i);var oCell=oRange.startContainer.childNodes[ oRange.startOffset ];if (oCell.tagName=='TD') aCells[aCells.length]=oCell;};return aCells;}; ! var FCKNamedCommand=function(commandName){this.Name=commandName;};FCKNamedCommand.prototype.Execute=function(){FCK.ExecuteNamedCommand(this.Name);};FCKNamedCommand.prototype.GetState=function(){return FCK.GetNamedCommandState(this.Name);}; ! var FCKDialogCommand=function(name, title, url, width, height, getStateFunction, getStateParam){this.Name=name;this.Title=title;this.Url=url;this.Width=width;this.Height=height;this.GetStateFunction=getStateFunction;this.GetStateParam=getStateParam;};FCKDialogCommand.prototype.Execute=function(){FCKDialog.OpenDialog('FCKDialog_' + this.Name , this.Title, this.Url, this.Width, this.Height);};FCKDialogCommand.prototype.GetState=function(){if (this.GetStateFunction){return this.GetStateFunction(this.GetStateParam);}else{return FCK_TRISTATE_OFF;};};var FCKUndefinedCommand=function(){this.Name='Undefined';};FCKUndefinedCommand.prototype.Execute=function(){alert('Command not implemented.');};FCKUndefinedCommand.prototype.GetState=function(){return FCK_TRISTATE_OFF;};var FCKFontNameCommand=function(){this.Name='FontName';};FCKFontNameCommand.prototype.Execute=function(fontName){if (fontName==null || fontName==""){}else{FCK.ExecuteNamedCommand('FontName', fontName);};};FCKFontNameCommand.prototype.GetState=function(){return FCK.GetNamedCommandValue('FontName');};var FCKFontSizeCommand=function(){this.N... [truncated message content] |
From: Yves K. <yku...@us...> - 2004-11-02 22:19:00
|
Update of /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/filemanager/browser/default/js In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16034/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/filemanager/browser/default/js Modified Files: common.js fckxml.js Log Message: unix saving Index: common.js =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/filemanager/browser/default/js/common.js,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** common.js 25 Oct 2004 18:09:40 -0000 1.1.1.1 --- common.js 2 Nov 2004 22:18:50 -0000 1.2 *************** *** 1,85 **** /* ! * 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: common.js ! * Common objects and functions shared by all pages that compose the ! * File Browser dialog window. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-06-19 00:51:22 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! */ ! ! function AddSelectOption( selectElement, optionText, optionValue ) ! { ! var oOption = document.createElement("OPTION") ; ! ! oOption.text = optionText ; ! oOption.value = optionValue ; ! ! selectElement.options.add(oOption) ; ! ! return oOption ; ! } ! ! function GetUrlParam( paramName ) ! { ! var oRegex = new RegExp( '[\?&]' + paramName + '=([^&]+)', 'i' ) ; ! var oMatch = oRegex.exec( window.top.location.search ) ; ! ! if ( oMatch && oMatch.length > 1 ) ! return oMatch[1] ; ! else ! return '' ; ! } ! ! var oConnector = new Object() ; ! oConnector.CurrentFolder = '/' ; ! oConnector.ConnectorUrl = GetUrlParam( 'Connector' ) ; ! oConnector.ResourceType = GetUrlParam( 'Type' ) ; ! ! oConnector.SendCommand = function( command, params, callBackFunction ) ! { ! var sUrl = this.ConnectorUrl + '?Command=' + command ; ! sUrl += '&Type=' + this.ResourceType ; ! sUrl += '&CurrentFolder=' + escape( this.CurrentFolder ) ; ! ! if ( params ) sUrl += '&' + params ; ! ! var oXML = new FCKXml() ; ! ! if ( callBackFunction ) ! oXML.LoadUrl( sUrl, callBackFunction ) ; // Asynchronous load. ! else ! return oXML.LoadUrl( sUrl ) ; ! } ! ! var oIcons = new Object() ; ! ! oIcons.AvailableIconsArray = [ ! 'ai','avi','bmp','cs','dll','doc','exe','fla','gif','htm','html','jpg','js', ! 'mdb','mp3','pdf','ppt','rdp','swf','swt','txt','vsd','xls','xml','zip' ] ; ! ! oIcons.AvailableIcons = new Object() ; ! ! for ( var i = 0 ; i < oIcons.AvailableIconsArray.length ; i++ ) ! oIcons.AvailableIcons[ oIcons.AvailableIconsArray[i] ] = true ; ! ! oIcons.GetIcon = function( fileName ) ! { ! var sExtension = fileName.substr( fileName.lastIndexOf('.') + 1 ).toLowerCase() ; ! ! if ( this.AvailableIcons[ sExtension ] == true ) ! return sExtension ; ! else ! return 'default.icon' ; ! } \ No newline at end of file --- 1,84 ---- /* ! * 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: common.js ! * Common objects and functions shared by all pages that compose the ! * File Browser dialog window. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-06-19 00:51:22 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! */ ! ! function AddSelectOption( selectElement, optionText, optionValue ) ! { ! var oOption = document.createElement("OPTION") ; ! ! oOption.text = optionText ; ! oOption.value = optionValue ; ! ! selectElement.options.add(oOption) ; ! ! return oOption ; ! } ! ! function GetUrlParam( paramName ) ! { ! var oRegex = new RegExp( '[\?&]' + paramName + '=([^&]+)', 'i' ) ; ! var oMatch = oRegex.exec( window.top.location.search ) ; ! ! if ( oMatch && oMatch.length > 1 ) ! return oMatch[1] ; ! else ! return '' ; ! } ! ! var oConnector = new Object() ; ! oConnector.CurrentFolder = '/' ; ! oConnector.ConnectorUrl = GetUrlParam( 'Connector' ) ; ! oConnector.ResourceType = GetUrlParam( 'Type' ) ; ! ! oConnector.SendCommand = function( command, params, callBackFunction ) ! { ! var sUrl = this.ConnectorUrl + '?Command=' + command ; ! sUrl += '&Type=' + this.ResourceType ; ! sUrl += '&CurrentFolder=' + escape( this.CurrentFolder ) ; ! ! if ( params ) sUrl += '&' + params ; ! ! var oXML = new FCKXml() ; ! ! if ( callBackFunction ) ! oXML.LoadUrl( sUrl, callBackFunction ) ; // Asynchronous load. ! else ! return oXML.LoadUrl( sUrl ) ; ! } ! ! var oIcons = new Object() ; ! ! oIcons.AvailableIconsArray = [ ! 'ai','avi','bmp','cs','dll','doc','exe','fla','gif','htm','html','jpg','js', ! 'mdb','mp3','pdf','ppt','rdp','swf','swt','txt','vsd','xls','xml','zip' ] ; ! ! oIcons.AvailableIcons = new Object() ; ! ! for ( var i = 0 ; i < oIcons.AvailableIconsArray.length ; i++ ) ! oIcons.AvailableIcons[ oIcons.AvailableIconsArray[i] ] = true ; ! ! oIcons.GetIcon = function( fileName ) ! { ! var sExtension = fileName.substr( fileName.lastIndexOf('.') + 1 ).toLowerCase() ; ! ! if ( this.AvailableIcons[ sExtension ] == true ) ! return sExtension ; ! else ! return 'default.icon' ; Index: fckxml.js =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/filemanager/browser/default/js/fckxml.js,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fckxml.js 25 Oct 2004 18:09:42 -0000 1.1.1.1 --- fckxml.js 2 Nov 2004 22:18:50 -0000 1.2 *************** *** 1,100 **** /* ! * 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: fckxml.js ! * Defines the FCKXml object that is used for XML data calls ! * and XML processing. ! * This script is shared by almost all pages that compose the ! * File Browser frameset. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-31 23:07:53 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! */ ! ! var FCKXml = function() ! {} ! ! FCKXml.prototype.GetHttpRequest = function() ! { ! if ( window.XMLHttpRequest ) // Gecko ! return new XMLHttpRequest() ; ! else if ( window.ActiveXObject ) // IE ! return new ActiveXObject("MsXml2.XmlHttp") ; ! } ! ! FCKXml.prototype.LoadUrl = function( urlToCall, asyncFunctionPointer ) ! { ! var oFCKXml = this ; ! ! var bAsync = ( typeof(asyncFunctionPointer) == 'function' ) ; ! ! var oXmlHttp = this.GetHttpRequest() ; ! ! oXmlHttp.open( "GET", urlToCall, bAsync ) ; ! ! if ( bAsync ) ! { ! oXmlHttp.onreadystatechange = function() ! { ! if ( oXmlHttp.readyState == 4 ) ! { ! oFCKXml.DOMDocument = oXmlHttp.responseXML ; ! asyncFunctionPointer( oFCKXml ) ; ! } ! } ! } ! ! oXmlHttp.send( null ) ; ! ! if ( ! bAsync ) ! this.DOMDocument = oXmlHttp.responseXML ; ! } ! ! FCKXml.prototype.SelectNodes = function( xpath ) ! { ! if ( document.all ) // IE ! return this.DOMDocument.selectNodes( xpath ) ; ! else // Gecko ! { ! var aNodeArray = new Array(); ! ! var xPathResult = this.DOMDocument.evaluate( xpath, this.DOMDocument, ! this.DOMDocument.createNSResolver(this.DOMDocument.documentElement), XPathResult.ORDERED_NODE_ITERATOR_TYPE, null) ; ! if ( xPathResult ) ! { ! var oNode = xPathResult.iterateNext() ; ! while( oNode ) ! { ! aNodeArray[aNodeArray.length] = oNode ; ! oNode = xPathResult.iterateNext(); ! } ! } ! return aNodeArray ; ! } ! } ! ! FCKXml.prototype.SelectSingleNode = function( xpath ) ! { ! if ( document.all ) // IE ! return this.DOMDocument.selectSingleNode( xpath ) ; ! else // Gecko ! { ! var xPathResult = this.DOMDocument.evaluate( xpath, this.DOMDocument, ! this.DOMDocument.createNSResolver(this.DOMDocument.documentElement), 9, null); ! ! if ( xPathResult && xPathResult.singleNodeValue ) ! return xPathResult.singleNodeValue ; ! else ! return null ; ! } ! } --- 1,96 ---- /* ! * 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: fckxml.js ! * Defines the FCKXml object that is used for XML data calls ! * and XML processing. ! * This script is shared by almost all pages that compose the ! * File Browser frameset. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-31 23:07:53 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! */ ! ! var FCKXml = function() ! {} ! ! FCKXml.prototype.GetHttpRequest = function() ! { ! if ( window.XMLHttpRequest ) // Gecko ! return new XMLHttpRequest() ; ! else if ( window.ActiveXObject ) // IE ! return new ActiveXObject("MsXml2.XmlHttp") ; ! } ! ! FCKXml.prototype.LoadUrl = function( urlToCall, asyncFunctionPointer ) ! { ! var oFCKXml = this ; ! var bAsync = ( typeof(asyncFunctionPointer) == 'function' ) ; ! var oXmlHttp = this.GetHttpRequest() ; ! oXmlHttp.open( "GET", urlToCall, bAsync ) ; ! if ( bAsync ) ! { ! oXmlHttp.onreadystatechange = function() ! { ! if ( oXmlHttp.readyState == 4 ) ! { ! oFCKXml.DOMDocument = oXmlHttp.responseXML ; ! asyncFunctionPointer( oFCKXml ) ; ! } ! } ! } ! ! oXmlHttp.send( null ) ; ! ! if ( ! bAsync ) ! this.DOMDocument = oXmlHttp.responseXML ; ! } ! ! FCKXml.prototype.SelectNodes = function( xpath ) ! { ! if ( document.all ) // IE ! return this.DOMDocument.selectNodes( xpath ) ; ! else // Gecko ! { ! var aNodeArray = new Array(); ! ! var xPathResult = this.DOMDocument.evaluate( xpath, this.DOMDocument, ! this.DOMDocument.createNSResolver(this.DOMDocument.documentElement), XPathResult.ORDERED_NODE_ITERATOR_TYPE, null) ; ! if ( xPathResult ) ! { ! var oNode = xPathResult.iterateNext() ; ! while( oNode ) ! { ! aNodeArray[aNodeArray.length] = oNode ; ! oNode = xPathResult.iterateNext(); ! } ! } ! return aNodeArray ; ! } ! } ! ! FCKXml.prototype.SelectSingleNode = function( xpath ) ! { ! if ( document.all ) // IE ! return this.DOMDocument.selectSingleNode( xpath ) ; ! else // Gecko ! { ! var xPathResult = this.DOMDocument.evaluate( xpath, this.DOMDocument, ! this.DOMDocument.createNSResolver(this.DOMDocument.documentElement), 9, null); ! ! if ( xPathResult && xPathResult.singleNodeValue ) ! return xPathResult.singleNodeValue ; ! else ! return null ; ! } ! } |
From: Yves K. <yku...@us...> - 2004-11-02 22:18:59
|
Update of /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/filemanager/browser/default/connectors/aspx In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16034/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/filemanager/browser/default/connectors/aspx Modified Files: connector.aspx Log Message: unix saving Index: connector.aspx =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/filemanager/browser/default/connectors/aspx/connector.aspx,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** connector.aspx 25 Oct 2004 18:09:42 -0000 1.1.1.1 --- connector.aspx 2 Nov 2004 22:17:54 -0000 1.2 *************** *** 1,23 **** ! <%@ Page language="c#" Inherits="FredCK.FCKeditorV2.FileBrowserConnector" AutoEventWireup="false" %> <!-- ! * 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: connector.aspx ! * This is the File Browser Connector for ASP.NET. ! * ! * The code of this page if included in the FredCK.FCKeditorV2.dll file. So to ! * use it you must include the DLL in your "bin" directory. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-31 23:07:52 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> \ No newline at end of file --- 1,23 ---- ! <%@ Page language="c#" Inherits="FredCK.FCKeditorV2.FileBrowserConnector" AutoEventWireup="false" %> <!-- ! * 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: connector.aspx ! * This is the File Browser Connector for ASP.NET. ! * ! * The code of this page if included in the FredCK.FCKeditorV2.dll file. So to ! * use it you must include the DLL in your "bin" directory. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-31 23:07:52 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> \ No newline at end of file |
From: Yves K. <yku...@us...> - 2004-11-02 21:56:05
|
Update of /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/filemanager/browser/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11288/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/filemanager/browser/default Modified Files: Browser.css browser.html frmactualfolder.html frmcreatefolder.html frmfolders.html frmresourceslist.html frmresourcetype.html frmupload.html Log Message: unix saving Index: frmresourceslist.html =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/filemanager/browser/default/frmresourceslist.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** frmresourceslist.html 25 Oct 2004 18:09:36 -0000 1.1.1.1 --- frmresourceslist.html 2 Nov 2004 21:55:50 -0000 1.2 *************** *** 1,152 **** <!-- ! * 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: frmresourceslist.html ! * This page shows all resources available in a folder in the File Browser. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-06-19 01:01:50 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <html> ! <head> ! <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> ! <link href="Browser.css" type="text/css" rel="stylesheet"> ! <script type="text/javascript" src="js/fckxml.js"></script> ! <script type="text/javascript" src="js/common.js"></script> ! <script language="javascript"> ! ! var oListManager = new Object() ; ! ! oListManager.Init = function() ! { ! this.Table = document.getElementById('tableFiles') ; ! } ! ! oListManager.Clear = function() ! { ! // Remove all other rows available. ! while ( this.Table.rows.length > 0 ) ! this.Table.deleteRow(0) ; ! } ! ! oListManager.AddFolder = function( folderName, folderPath ) ! { ! // Create the new row. ! var oRow = this.Table.insertRow(-1) ; ! ! // Build the link to view the folder. ! var sLink = '<a href="#" onclick="OpenFolder(\'' + folderPath + '\');return false;">' ; ! ! // Add the folder icon cell. ! var oCell = oRow.insertCell(-1) ; ! oCell.width = 16 ; ! oCell.innerHTML = sLink + '<img alt="" src="images/Folder.gif" width="16" height="16" border="0"></a>' ; ! ! // Add the folder name cell. ! oCell = oRow.insertCell(-1) ; ! oCell.noWrap = true ; ! oCell.colSpan = 2 ; ! oCell.innerHTML = ' ' + sLink + folderName + '</a>' ; ! } ! ! oListManager.AddFile = function( fileName, fileUrl, fileSize ) ! { ! // Create the new row. ! var oRow = this.Table.insertRow(-1) ; ! ! // Build the link to view the folder. ! var sLink = '<a href="#" onclick="OpenFile(\'' + fileUrl + '\');return false;">' ; ! ! // Get the file icon. ! var sIcon = oIcons.GetIcon( fileName ) ; ! ! // Add the file icon cell. ! var oCell = oRow.insertCell(-1) ; ! oCell.width = 16 ; ! oCell.innerHTML = sLink + '<img alt="" src="images/icons/' + sIcon + '.gif" width="16" height="16" border="0"></a>' ; ! ! // Add the file name cell. ! oCell = oRow.insertCell(-1) ; ! oCell.innerHTML = ' ' + sLink + fileName + '</a>' ; ! ! // Add the file size cell. ! oCell = oRow.insertCell(-1) ; ! oCell.noWrap = true ; ! oCell.align = 'right' ; ! oCell.innerHTML = ' ' + fileSize + ' KB' ; ! } ! ! function OpenFolder( folderPath ) ! { ! // Load the resources list for this folder. ! window.parent.frames['frmFolders'].LoadFolders( folderPath ) ; ! } ! ! function OpenFile( fileUrl ) ! { ! window.top.opener.SetUrl( fileUrl ) ; ! window.top.close() ; ! window.top.opener.focus() ; ! } ! ! function LoadResources( resourceType, folderPath ) ! { ! oListManager.Clear() ; ! oConnector.ResourceType = resourceType ; ! oConnector.CurrentFolder = folderPath ! oConnector.SendCommand( 'GetFoldersAndFiles', null, GetFoldersAndFilesCallBack ) ; ! } ! ! function Refresh() ! { ! LoadResources( oConnector.ResourceType, oConnector.CurrentFolder ) ; ! } ! ! function GetFoldersAndFilesCallBack( fckXml ) ! { ! // Get the current folder path. ! var oNode = fckXml.SelectSingleNode( 'Connector/CurrentFolder' ) ; ! var sCurrentFolderPath = oNode.attributes.getNamedItem('path').value ; ! var sCurrentFolderUrl = oNode.attributes.getNamedItem('url').value ; ! ! // Add the Folders. ! var oNodes = fckXml.SelectNodes( 'Connector/Folders/Folder' ) ; ! for ( var i = 0 ; i < oNodes.length ; i++ ) ! { ! var sFolderName = oNodes[i].attributes.getNamedItem('name').value ; ! oListManager.AddFolder( sFolderName, sCurrentFolderPath + sFolderName + "/" ) ; ! } ! ! // Add the Files. ! var oNodes = fckXml.SelectNodes( 'Connector/Files/File' ) ; ! for ( var i = 0 ; i < oNodes.length ; i++ ) ! { ! var sFileName = oNodes[i].attributes.getNamedItem('name').value ; ! var sFileSize = oNodes[i].attributes.getNamedItem('size').value ; ! oListManager.AddFile( sFileName, sCurrentFolderUrl + sFileName, sFileSize ) ; ! } ! } ! ! window.onload = function() ! { ! oListManager.Init() ; ! window.top.IsLoadedResourcesList = true ; ! } ! </script> ! </head> ! <body class="FileArea" bottomMargin="10" leftMargin="10" topMargin="10" rightMargin="10"> ! <table id="tableFiles" cellSpacing="1" cellPadding="0" width="100%" border="0"> ! </table> ! </body> ! </html> --- 1,152 ---- <!-- ! * 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: frmresourceslist.html ! * This page shows all resources available in a folder in the File Browser. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-06-19 01:01:50 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <html> ! <head> ! <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> ! <link href="Browser.css" type="text/css" rel="stylesheet"> ! <script type="text/javascript" src="js/fckxml.js"></script> ! <script type="text/javascript" src="js/common.js"></script> ! <script language="javascript"> ! ! var oListManager = new Object() ; ! ! oListManager.Init = function() ! { ! this.Table = document.getElementById('tableFiles') ; ! } ! ! oListManager.Clear = function() ! { ! // Remove all other rows available. ! while ( this.Table.rows.length > 0 ) ! this.Table.deleteRow(0) ; ! } ! ! oListManager.AddFolder = function( folderName, folderPath ) ! { ! // Create the new row. ! var oRow = this.Table.insertRow(-1) ; ! ! // Build the link to view the folder. ! var sLink = '<a href="#" onclick="OpenFolder(\'' + folderPath + '\');return false;">' ; ! ! // Add the folder icon cell. ! var oCell = oRow.insertCell(-1) ; ! oCell.width = 16 ; ! oCell.innerHTML = sLink + '<img alt="" src="images/Folder.gif" width="16" height="16" border="0"></a>' ; ! ! // Add the folder name cell. ! oCell = oRow.insertCell(-1) ; ! oCell.noWrap = true ; ! oCell.colSpan = 2 ; ! oCell.innerHTML = ' ' + sLink + folderName + '</a>' ; ! } ! ! oListManager.AddFile = function( fileName, fileUrl, fileSize ) ! { ! // Create the new row. ! var oRow = this.Table.insertRow(-1) ; ! ! // Build the link to view the folder. ! var sLink = '<a href="#" onclick="OpenFile(\'' + fileUrl + '\');return false;">' ; ! ! // Get the file icon. ! var sIcon = oIcons.GetIcon( fileName ) ; ! ! // Add the file icon cell. ! var oCell = oRow.insertCell(-1) ; ! oCell.width = 16 ; ! oCell.innerHTML = sLink + '<img alt="" src="images/icons/' + sIcon + '.gif" width="16" height="16" border="0"></a>' ; ! ! // Add the file name cell. ! oCell = oRow.insertCell(-1) ; ! oCell.innerHTML = ' ' + sLink + fileName + '</a>' ; ! ! // Add the file size cell. ! oCell = oRow.insertCell(-1) ; ! oCell.noWrap = true ; ! oCell.align = 'right' ; ! oCell.innerHTML = ' ' + fileSize + ' KB' ; ! } ! ! function OpenFolder( folderPath ) ! { ! // Load the resources list for this folder. ! window.parent.frames['frmFolders'].LoadFolders( folderPath ) ; ! } ! ! function OpenFile( fileUrl ) ! { ! window.top.opener.SetUrl( fileUrl ) ; ! window.top.close() ; ! window.top.opener.focus() ; ! } ! ! function LoadResources( resourceType, folderPath ) ! { ! oListManager.Clear() ; ! oConnector.ResourceType = resourceType ; ! oConnector.CurrentFolder = folderPath ! oConnector.SendCommand( 'GetFoldersAndFiles', null, GetFoldersAndFilesCallBack ) ; ! } ! ! function Refresh() ! { ! LoadResources( oConnector.ResourceType, oConnector.CurrentFolder ) ; ! } ! ! function GetFoldersAndFilesCallBack( fckXml ) ! { ! // Get the current folder path. ! var oNode = fckXml.SelectSingleNode( 'Connector/CurrentFolder' ) ; ! var sCurrentFolderPath = oNode.attributes.getNamedItem('path').value ; ! var sCurrentFolderUrl = oNode.attributes.getNamedItem('url').value ; ! ! // Add the Folders. ! var oNodes = fckXml.SelectNodes( 'Connector/Folders/Folder' ) ; ! for ( var i = 0 ; i < oNodes.length ; i++ ) ! { ! var sFolderName = oNodes[i].attributes.getNamedItem('name').value ; ! oListManager.AddFolder( sFolderName, sCurrentFolderPath + sFolderName + "/" ) ; ! } ! ! // Add the Files. ! var oNodes = fckXml.SelectNodes( 'Connector/Files/File' ) ; ! for ( var i = 0 ; i < oNodes.length ; i++ ) ! { ! var sFileName = oNodes[i].attributes.getNamedItem('name').value ; ! var sFileSize = oNodes[i].attributes.getNamedItem('size').value ; ! oListManager.AddFile( sFileName, sCurrentFolderUrl + sFileName, sFileSize ) ; ! } ! } ! ! window.onload = function() ! { ! oListManager.Init() ; ! window.top.IsLoadedResourcesList = true ; ! } ! </script> ! </head> ! <body class="FileArea" bottomMargin="10" leftMargin="10" topMargin="10" rightMargin="10"> ! <table id="tableFiles" cellSpacing="1" cellPadding="0" width="100%" border="0"> ! </table> ! </body> ! </html> \ No newline at end of file Index: Browser.css =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/filemanager/browser/default/Browser.css,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Browser.css 25 Oct 2004 18:09:39 -0000 1.1.1.1 --- Browser.css 2 Nov 2004 21:55:50 -0000 1.2 *************** *** 1,85 **** /* ! * 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: Browser.css ! * CSS styles used by all pages that compose the File Browser. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-31 23:07:52 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! */ ! ! body ! { ! background-color: #f1f1e3; ! } ! ! form ! { ! margin: 0px 0px 0px 0px ; ! padding: 0px 0px 0px 0px ; ! } ! ! .Frame ! { ! background-color: #f1f1e3; ! border-color: #f1f1e3; ! border-right: thin inset; ! border-top: thin inset; ! border-left: thin inset; ! border-bottom: thin inset; ! } ! ! body.FileArea ! { ! ! background-color: #ffffff; ! } ! ! body, td, input, select ! { ! font-size: 11px; ! font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana; ! } ! ! .ActualFolder ! { ! font-weight: bold; ! font-size: 14px; ! } ! ! .PopupButtons ! { ! border-top: #d5d59d 1px solid; ! background-color: #e3e3c7; ! padding: 7px 10px 7px 10px; ! } ! ! .Button, 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; ! } ! ! .FolderListCurrentFolder img ! { ! background-image: url(images/FolderOpened.gif); ! } ! ! .FolderListFolder img ! { ! background-image: url(images/Folder.gif); } \ No newline at end of file --- 1,85 ---- /* ! * 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: Browser.css ! * CSS styles used by all pages that compose the File Browser. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-31 23:07:52 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! */ ! ! body ! { ! background-color: #f1f1e3; ! } ! ! form ! { ! margin: 0px 0px 0px 0px ; ! padding: 0px 0px 0px 0px ; ! } ! ! .Frame ! { ! background-color: #f1f1e3; ! border-color: #f1f1e3; ! border-right: thin inset; ! border-top: thin inset; ! border-left: thin inset; ! border-bottom: thin inset; ! } ! ! body.FileArea ! { ! ! background-color: #ffffff; ! } ! ! body, td, input, select ! { ! font-size: 11px; ! font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana; ! } ! ! .ActualFolder ! { ! font-weight: bold; ! font-size: 14px; ! } ! ! .PopupButtons ! { ! border-top: #d5d59d 1px solid; ! background-color: #e3e3c7; ! padding: 7px 10px 7px 10px; ! } ! ! .Button, 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; ! } ! ! .FolderListCurrentFolder img ! { ! background-image: url(images/FolderOpened.gif); ! } ! ! .FolderListFolder img ! { ! background-image: url(images/Folder.gif); } \ No newline at end of file Index: frmfolders.html =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/filemanager/browser/default/frmfolders.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** frmfolders.html 25 Oct 2004 18:09:39 -0000 1.1.1.1 --- frmfolders.html 2 Nov 2004 21:55:50 -0000 1.2 *************** *** 1,196 **** <!-- ! * 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: frmfolders.html ! * This page shows the list of folders available in the parent folder ! * of the current folder. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-06-19 01:03:21 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <html> ! <head> ! <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> ! <link href="Browser.css" type="text/css" rel="stylesheet"> ! <script type="text/javascript" src="js/fckxml.js"></script> ! <script type="text/javascript" src="js/common.js"></script> ! <script language="javascript"> ! ! var sActiveFolder ; ! ! var bIsLoaded = false ; ! var iIntervalId ; ! ! var oListManager = new Object() ; ! ! oListManager.Init = function() ! { ! this.Table = document.getElementById('tableFiles') ; ! this.UpRow = document.getElementById('trUp') ; ! ! this.TableRows = new Object() ; ! } ! ! oListManager.Clear = function() ! { ! // Remove all other rows available. ! while ( this.Table.rows.length > 1 ) ! this.Table.deleteRow(1) ; ! ! // Reset the TableRows collection. ! this.TableRows = new Object() ; ! } ! ! oListManager.AddItem = function( folderName, folderPath ) ! { ! // Create the new row. ! var oRow = this.Table.insertRow(-1) ; ! oRow.className = 'FolderListFolder' ; ! ! // Build the link to view the folder. ! var sLink = '<a href="#" onclick="OpenFolder(\'' + folderPath + '\');return false;">' ; ! ! // Add the folder icon cell. ! var oCell = oRow.insertCell(-1) ; ! oCell.width = 16 ; ! oCell.innerHTML = sLink + '<img alt="" src="images/spacer.gif" width="16" height="16" border="0"></a>' ; ! ! // Add the folder name cell. ! oCell = oRow.insertCell(-1) ; ! oCell.noWrap = true ; ! oCell.innerHTML = ' ' + sLink + folderName + '</a>' ; ! ! this.TableRows[ folderPath ] = oRow ; ! } ! ! oListManager.ShowUpFolder = function( upFolderPath ) ! { ! this.UpRow.style.display = ( upFolderPath != null ? '' : 'none' ) ; ! ! if ( upFolderPath != null ) ! { ! document.getElementById('linkUpIcon').onclick = document.getElementById('linkUp').onclick = function() ! { ! LoadFolders( upFolderPath ) ; ! return false ; ! } ! } ! } ! ! function CheckLoaded() ! { ! if ( window.top.IsLoadedActualFolder ! && window.top.IsLoadedCreateFolder ! && window.top.IsLoadedUpload ! && window.top.IsLoadedResourcesList ) ! { ! window.clearInterval( iIntervalId ) ; ! bIsLoaded = true ; ! OpenFolder( sActiveFolder ) ; ! } ! } ! ! function OpenFolder( folderPath ) ! { ! sActiveFolder = folderPath ; ! ! if ( ! bIsLoaded ) ! { ! if ( ! iIntervalId ) ! iIntervalId = window.setInterval( CheckLoaded, 100 ) ; ! return ; ! } ! ! // Change the style for the select row (to show the opened folder). ! for ( var sFolderPath in oListManager.TableRows ) ! { ! oListManager.TableRows[ sFolderPath ].className = ! ( sFolderPath == folderPath ? 'FolderListCurrentFolder' : 'FolderListFolder' ) ; ! } ! ! // Set the current folder in all frames. ! window.parent.frames['frmActualFolder'].SetCurrentFolder( oConnector.ResourceType, folderPath ) ; ! window.parent.frames['frmCreateFolder'].SetCurrentFolder( oConnector.ResourceType, folderPath ) ; ! window.parent.frames['frmUpload'].SetCurrentFolder( oConnector.ResourceType, folderPath ) ; ! ! // Load the resources list for this folder. ! window.parent.frames['frmResourcesList'].LoadResources( oConnector.ResourceType, folderPath ) ; ! } ! ! function LoadFolders( folderPath ) ! { ! // Clear the folders list. ! oListManager.Clear() ; ! ! // Get the parent folder path. ! var sParentFolderPath ; ! if ( folderPath != '/' ) ! sParentFolderPath = folderPath.substring( 0, folderPath.lastIndexOf( '/', folderPath.length - 2 ) + 1 ) ; ! ! // Show/Hide the Up Folder. ! oListManager.ShowUpFolder( sParentFolderPath ) ; ! ! if ( folderPath != '/' ) ! { ! sActiveFolder = folderPath ; ! oConnector.CurrentFolder = sParentFolderPath ! oConnector.SendCommand( 'GetFolders', null, GetFoldersCallBack ) ; ! } ! else ! OpenFolder( '/' ) ; ! } ! ! function GetFoldersCallBack( fckXml ) ! { ! // Get the current folder path. ! var oNode = fckXml.SelectSingleNode( 'Connector/CurrentFolder' ) ; ! var sCurrentFolderPath = oNode.attributes.getNamedItem('path').value ; ! ! var oNodes = fckXml.SelectNodes( 'Connector/Folders/Folder' ) ; ! ! for ( var i = 0 ; i < oNodes.length ; i++ ) ! { ! var sFolderName = oNodes[i].attributes.getNamedItem('name').value ; ! oListManager.AddItem( sFolderName, sCurrentFolderPath + sFolderName + "/" ) ; ! } ! ! OpenFolder( sActiveFolder ) ; ! } ! ! function SetResourceType( type ) ! { ! oConnector.ResourceType = type ; ! LoadFolders( '/' ) ; ! } ! ! window.onload = function() ! { ! oListManager.Init() ; ! ! if ( oConnector.ResourceType.length = 0 ) ! SetResourceType( 'File' ) ; ! else ! LoadFolders( '/' ) ; ! } ! </script> ! </head> ! <body class="FileArea" bottomMargin="10" leftMargin="10" topMargin="10" rightMargin="10"> ! <table id="tableFiles" cellSpacing="0" cellPadding="0" width="100%" border="0"> ! <tr id="trUp" style="DISPLAY: none"> ! <td width="16"><a id="linkUpIcon" href="#"><img alt="" src="images/FolderUp.gif" width="16" height="16" border="0"></a></td> ! <td nowrap width="100%"> <a id="linkUp" href="#">..</a></td> ! </tr> ! </table> ! </body> ! </html> --- 1,196 ---- <!-- ! * 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: frmfolders.html ! * This page shows the list of folders available in the parent folder ! * of the current folder. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-06-19 01:03:21 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <html> ! <head> ! <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> ! <link href="Browser.css" type="text/css" rel="stylesheet"> ! <script type="text/javascript" src="js/fckxml.js"></script> ! <script type="text/javascript" src="js/common.js"></script> ! <script language="javascript"> ! ! var sActiveFolder ; ! ! var bIsLoaded = false ; ! var iIntervalId ; ! ! var oListManager = new Object() ; ! ! oListManager.Init = function() ! { ! this.Table = document.getElementById('tableFiles') ; ! this.UpRow = document.getElementById('trUp') ; ! ! this.TableRows = new Object() ; ! } ! ! oListManager.Clear = function() ! { ! // Remove all other rows available. ! while ( this.Table.rows.length > 1 ) ! this.Table.deleteRow(1) ; ! ! // Reset the TableRows collection. ! this.TableRows = new Object() ; ! } ! ! oListManager.AddItem = function( folderName, folderPath ) ! { ! // Create the new row. ! var oRow = this.Table.insertRow(-1) ; ! oRow.className = 'FolderListFolder' ; ! ! // Build the link to view the folder. ! var sLink = '<a href="#" onclick="OpenFolder(\'' + folderPath + '\');return false;">' ; ! ! // Add the folder icon cell. ! var oCell = oRow.insertCell(-1) ; ! oCell.width = 16 ; ! oCell.innerHTML = sLink + '<img alt="" src="images/spacer.gif" width="16" height="16" border="0"></a>' ; ! ! // Add the folder name cell. ! oCell = oRow.insertCell(-1) ; ! oCell.noWrap = true ; ! oCell.innerHTML = ' ' + sLink + folderName + '</a>' ; ! ! this.TableRows[ folderPath ] = oRow ; ! } ! ! oListManager.ShowUpFolder = function( upFolderPath ) ! { ! this.UpRow.style.display = ( upFolderPath != null ? '' : 'none' ) ; ! ! if ( upFolderPath != null ) ! { ! document.getElementById('linkUpIcon').onclick = document.getElementById('linkUp').onclick = function() ! { ! LoadFolders( upFolderPath ) ; ! return false ; ! } ! } ! } ! ! function CheckLoaded() ! { ! if ( window.top.IsLoadedActualFolder ! && window.top.IsLoadedCreateFolder ! && window.top.IsLoadedUpload ! && window.top.IsLoadedResourcesList ) ! { ! window.clearInterval( iIntervalId ) ; ! bIsLoaded = true ; ! OpenFolder( sActiveFolder ) ; ! } ! } ! ! function OpenFolder( folderPath ) ! { ! sActiveFolder = folderPath ; ! ! if ( ! bIsLoaded ) ! { ! if ( ! iIntervalId ) ! iIntervalId = window.setInterval( CheckLoaded, 100 ) ; ! return ; ! } ! ! // Change the style for the select row (to show the opened folder). ! for ( var sFolderPath in oListManager.TableRows ) ! { ! oListManager.TableRows[ sFolderPath ].className = ! ( sFolderPath == folderPath ? 'FolderListCurrentFolder' : 'FolderListFolder' ) ; ! } ! ! // Set the current folder in all frames. ! window.parent.frames['frmActualFolder'].SetCurrentFolder( oConnector.ResourceType, folderPath ) ; ! window.parent.frames['frmCreateFolder'].SetCurrentFolder( oConnector.ResourceType, folderPath ) ; ! window.parent.frames['frmUpload'].SetCurrentFolder( oConnector.ResourceType, folderPath ) ; ! ! // Load the resources list for this folder. ! window.parent.frames['frmResourcesList'].LoadResources( oConnector.ResourceType, folderPath ) ; ! } ! ! function LoadFolders( folderPath ) ! { ! // Clear the folders list. ! oListManager.Clear() ; ! ! // Get the parent folder path. ! var sParentFolderPath ; ! if ( folderPath != '/' ) ! sParentFolderPath = folderPath.substring( 0, folderPath.lastIndexOf( '/', folderPath.length - 2 ) + 1 ) ; ! ! // Show/Hide the Up Folder. ! oListManager.ShowUpFolder( sParentFolderPath ) ; ! ! if ( folderPath != '/' ) ! { ! sActiveFolder = folderPath ; ! oConnector.CurrentFolder = sParentFolderPath ! oConnector.SendCommand( 'GetFolders', null, GetFoldersCallBack ) ; ! } ! else ! OpenFolder( '/' ) ; ! } ! ! function GetFoldersCallBack( fckXml ) ! { ! // Get the current folder path. ! var oNode = fckXml.SelectSingleNode( 'Connector/CurrentFolder' ) ; ! var sCurrentFolderPath = oNode.attributes.getNamedItem('path').value ; ! ! var oNodes = fckXml.SelectNodes( 'Connector/Folders/Folder' ) ; ! ! for ( var i = 0 ; i < oNodes.length ; i++ ) ! { ! var sFolderName = oNodes[i].attributes.getNamedItem('name').value ; ! oListManager.AddItem( sFolderName, sCurrentFolderPath + sFolderName + "/" ) ; ! } ! ! OpenFolder( sActiveFolder ) ; ! } ! ! function SetResourceType( type ) ! { ! oConnector.ResourceType = type ; ! LoadFolders( '/' ) ; ! } ! ! window.onload = function() ! { ! oListManager.Init() ; ! ! if ( oConnector.ResourceType.length = 0 ) ! SetResourceType( 'File' ) ; ! else ! LoadFolders( '/' ) ; ! } ! </script> ! </head> ! <body class="FileArea" bottomMargin="10" leftMargin="10" topMargin="10" rightMargin="10"> ! <table id="tableFiles" cellSpacing="0" cellPadding="0" width="100%" border="0"> ! <tr id="trUp" style="DISPLAY: none"> ! <td width="16"><a id="linkUpIcon" href="#"><img alt="" src="images/FolderUp.gif" width="16" height="16" border="0"></a></td> ! <td nowrap width="100%"> <a id="linkUp" href="#">..</a></td> ! </tr> ! </table> ! </body> ! </html> \ No newline at end of file Index: frmactualfolder.html =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/filemanager/browser/default/frmactualfolder.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** frmactualfolder.html 25 Oct 2004 18:09:39 -0000 1.1.1.1 --- frmactualfolder.html 2 Nov 2004 21:55:50 -0000 1.2 *************** *** 1,65 **** <!-- ! * 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: frmactualfolder.html ! * This page shows the actual folder path. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-31 23:07:52 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <html> ! <head> ! <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> ! <link href="Browser.css" type="text/css" rel="stylesheet"> ! <script type="text/javascript"> ! ! function OnResize() ! { ! divName.style.width = "1px" ; ! divName.style.width = tdName.offsetWidth + "px" ; ! } ! ! function SetCurrentFolder( resourceType, folderPath ) ! { ! document.getElementById('tdName').innerHTML = folderPath ; ! } ! ! window.onload = function() ! { ! window.top.IsLoadedActualFolder = true ; ! } ! ! </script> ! </head> ! <body bottomMargin="0" topMargin="0"> ! <table height="100%" cellSpacing="0" cellPadding="0" width="100%" border="0"> ! <tr> ! <td> ! <button style="WIDTH: 100%" type="button"> ! <table cellSpacing="0" cellPadding="0" width="100%" border="0"> ! <tr> ! <td><img height="32" alt="" src="images/FolderOpened32.gif" width="32"></td> ! <td> </td> ! <td id="tdName" width="100%" nowrap class="ActualFolder">/</td> ! <td> </td> ! <td><img height="8" src="images/ButtonArrow.gif" width="12"></td> ! <td> </td> ! </tr> ! </table> ! </button> ! </td> ! </tr> ! </table> ! </body> ! </html> --- 1,65 ---- <!-- ! * 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: frmactualfolder.html ! * This page shows the actual folder path. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-31 23:07:52 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <html> ! <head> ! <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> ! <link href="Browser.css" type="text/css" rel="stylesheet"> ! <script type="text/javascript"> ! ! function OnResize() ! { ! divName.style.width = "1px" ; ! divName.style.width = tdName.offsetWidth + "px" ; ! } ! ! function SetCurrentFolder( resourceType, folderPath ) ! { ! document.getElementById('tdName').innerHTML = folderPath ; ! } ! ! window.onload = function() ! { ! window.top.IsLoadedActualFolder = true ; ! } ! ! </script> ! </head> ! <body bottomMargin="0" topMargin="0"> ! <table height="100%" cellSpacing="0" cellPadding="0" width="100%" border="0"> ! <tr> ! <td> ! <button style="WIDTH: 100%" type="button"> ! <table cellSpacing="0" cellPadding="0" width="100%" border="0"> ! <tr> ! <td><img height="32" alt="" src="images/FolderOpened32.gif" width="32"></td> ! <td> </td> ! <td id="tdName" width="100%" nowrap class="ActualFolder">/</td> ! <td> </td> ! <td><img height="8" src="images/ButtonArrow.gif" width="12"></td> ! <td> </td> ! </tr> ! </table> ! </button> ! </td> ! </tr> ! </table> ! </body> ! </html> \ No newline at end of file Index: browser.html =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/filemanager/browser/default/browser.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** browser.html 25 Oct 2004 18:09:40 -0000 1.1.1.1 --- browser.html 2 Nov 2004 21:55:50 -0000 1.2 *************** *** 1,42 **** <!-- ! * 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: browser.html ! * This page compose the File Browser dialog frameset. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-31 23:07:52 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <html> ! <head> ! <title>FCKeditor - Resources Browser</title> ! <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> ! <link href="Browser.css" type="text/css" rel="stylesheet"> ! </head> ! <frameset cols="150,*" class="Frame" framespacing="3" bordercolor="#f1f1e3" frameborder="yes"> ! <frameset rows="50,*" framespacing="0"> ! <frame src="frmresourcetype.html" scrolling="no" frameborder="no"> ! <frame name="frmFolders" src="frmfolders.html" scrolling="auto" frameborder="yes"> ! </frameset> ! <frameset rows="50,*,50" framespacing="0"> ! <frame name="frmActualFolder" src="frmactualfolder.html" scrolling="no" frameborder="no"> ! <frame name="frmResourcesList" src="frmresourceslist.html" scrolling="auto" frameborder="yes"> ! <frameset cols="150,*,0" framespacing="0" frameborder="no"> ! <frame name="frmCreateFolder" src="frmcreatefolder.html" scrolling="no" frameborder="no"> ! <frame name="frmUpload" src="frmupload.html" scrolling="no" frameborder="no"> ! <frame name="frmUploadWorker" src="" scrolling="no" frameborder="no"> ! </frameset> ! </frameset> ! </frameset> ! </html> --- 1,42 ---- <!-- ! * 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: browser.html ! * This page compose the File Browser dialog frameset. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-31 23:07:52 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <html> ! <head> ! <title>FCKeditor - Resources Browser</title> ! <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> ! <link href="Browser.css" type="text/css" rel="stylesheet"> ! </head> ! <frameset cols="150,*" class="Frame" framespacing="3" bordercolor="#f1f1e3" frameborder="yes"> ! <frameset rows="50,*" framespacing="0"> ! <frame src="frmresourcetype.html" scrolling="no" frameborder="no"> ! <frame name="frmFolders" src="frmfolders.html" scrolling="auto" frameborder="yes"> ! </frameset> ! <frameset rows="50,*,50" framespacing="0"> ! <frame name="frmActualFolder" src="frmactualfolder.html" scrolling="no" frameborder="no"> ! <frame name="frmResourcesList" src="frmresourceslist.html" scrolling="auto" frameborder="yes"> ! <frameset cols="150,*,0" framespacing="0" frameborder="no"> ! <frame name="frmCreateFolder" src="frmcreatefolder.html" scrolling="no" frameborder="no"> ! <frame name="frmUpload" src="frmupload.html" scrolling="no" frameborder="no"> ! <frame name="frmUploadWorker" src="" scrolling="no" frameborder="no"> ! </frameset> ! </frameset> ! </frameset> ! </html> \ No newline at end of file Index: frmcreatefolder.html =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/filemanager/browser/default/frmcreatefolder.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** frmcreatefolder.html 25 Oct 2004 18:09:33 -0000 1.1.1.1 --- frmcreatefolder.html 2 Nov 2004 21:55:50 -0000 1.2 *************** *** 1,107 **** <!-- ! * 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: frmcreatefolder.html ! * Page used to create new folders in the current folder. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-31 23:07:52 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <html> ! <head> ! <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> ! <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> ! <link href="Browser.css" type="text/css" rel="stylesheet"> ! <script type="text/javascript" src="js/fckxml.js"></script> ! <script type="text/javascript" src="js/common.js"></script> ! <script language="javascript"> ! ! function SetCurrentFolder( resourceType, folderPath ) ! { ! oConnector.ResourceType = resourceType ; ! oConnector.CurrentFolder = folderPath ! } ! ! function CreateFolder() ! { ! var sFolderName ; ! ! while ( true ) ! { ! sFolderName = prompt( 'Type the name of the new folder:', '' ) ; ! ! if ( sFolderName == null ) ! return ; ! else if ( sFolderName.length == 0 ) ! alert( 'Please type the folder name' ) ; ! else ! break ; ! } ! ! oConnector.SendCommand( 'CreateFolder', 'NewFolderName=' + escape( sFolderName) , CreateFolderCallBack ) ; ! } ! ! function CreateFolderCallBack( fckXml ) ! { ! // Get the current folder path. ! var oNode = fckXml.SelectSingleNode( 'Connector/Error' ) ; ! var iErrorNumber = parseInt( oNode.attributes.getNamedItem('number').value ) ; ! ! switch ( iErrorNumber ) ! { ! case 0 : ! window.parent.frames['frmResourcesList'].Refresh() ; ! break ; ! case 101 : ! alert( 'Folder already exists' ) ; ! break ; ! case 102 : ! alert( 'Invalid folder name' ) ; ! break ; ! case 103 : ! alert( 'You have no permissions to create the folder' ) ; ! break ; ! case 110 : ! alert( 'Unknown error creating folder' ) ; ! break ; ! default : ! alert( 'Error creating folder. Error number: ' + iErrorNumber ) ; ! break ; ! } ! } ! ! window.onload = function() ! { ! window.top.IsLoadedCreateFolder = true ; ! } ! </script> ! </head> ! <body bottomMargin="0" topMargin="0"> ! <table height="100%" cellSpacing="0" cellPadding="0" width="100%" border="0"> ! <tr> ! <td> ! <button type="button" style="WIDTH: 100%" onclick="CreateFolder();"> ! <table cellSpacing="0" cellPadding="0" border="0"> ! <tr> ! <td><img height="16" alt="" src="images/Folder.gif" width="16"></td> ! <td> </td> ! <td nowrap>Create New Folder</td> ! </tr> ! </table> ! </button> ! </td> ! </tr> ! </table> ! </body> ! </html> --- 1,107 ---- <!-- ! * 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: frmcreatefolder.html ! * Page used to create new folders in the current folder. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-31 23:07:52 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <html> ! <head> ! <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> ! <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> ! <link href="Browser.css" type="text/css" rel="stylesheet"> ! <script type="text/javascript" src="js/fckxml.js"></script> ! <script type="text/javascript" src="js/common.js"></script> ! <script language="javascript"> ! ! function SetCurrentFolder( resourceType, folderPath ) ! { ! oConnector.ResourceType = resourceType ; ! oConnector.CurrentFolder = folderPath ! } ! ! function CreateFolder() ! { ! var sFolderName ; ! ! while ( true ) ! { ! sFolderName = prompt( 'Type the name of the new folder:', '' ) ; ! ! if ( sFolderName == null ) ! return ; ! else if ( sFolderName.length == 0 ) ! alert( 'Please type the folder name' ) ; ! else ! break ; ! } ! ! oConnector.SendCommand( 'CreateFolder', 'NewFolderName=' + escape( sFolderName) , CreateFolderCallBack ) ; ! } ! ! function CreateFolderCallBack( fckXml ) ! { ! // Get the current folder path. ! var oNode = fckXml.SelectSingleNode( 'Connector/Error' ) ; ! var iErrorNumber = parseInt( oNode.attributes.getNamedItem('number').value ) ; ! ! switch ( iErrorNumber ) ! { ! case 0 : ! window.parent.frames['frmResourcesList'].Refresh() ; ! break ; ! case 101 : ! alert( 'Folder already exists' ) ; ! break ; ! case 102 : ! alert( 'Invalid folder name' ) ; ! break ; ! case 103 : ! alert( 'You have no permissions to create the folder' ) ; ! break ; ! case 110 : ! alert( 'Unknown error creating folder' ) ; ! break ; ! default : ! alert( 'Error creating folder. Error number: ' + iErrorNumber ) ; ! break ; ! } ! } ! ! window.onload = function() ! { ! window.top.IsLoadedCreateFolder = true ; ! } ! </script> ! </head> ! <body bottomMargin="0" topMargin="0"> ! <table height="100%" cellSpacing="0" cellPadding="0" width="100%" border="0"> ! <tr> ! <td> ! <button type="button" style="WIDTH: 100%" onclick="CreateFolder();"> ! <table cellSpacing="0" cellPadding="0" border="0"> ! <tr> ! <td><img height="16" alt="" src="images/Folder.gif" width="16"></td> ! <td> </td> ! <td nowrap>Create New Folder</td> ! </tr> ! </table> ! </button> ! </td> ! </tr> ! </table> ! </body> ! </html> \ No newline at end of file Index: frmresourcetype.html =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/filemanager/browser/default/frmresourcetype.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** frmresourcetype.html 25 Oct 2004 18:09:32 -0000 1.1.1.1 --- frmresourcetype.html 2 Nov 2004 21:55:50 -0000 1.2 *************** *** 1,65 **** <!-- ! * 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: frmresourcetype.html ! * This page shows the list of available resource types. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-06-19 00:57:24 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <html> ! <head> ! <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> ! <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> ! <link href="Browser.css" type="text/css" rel="stylesheet"> ! <script type="text/javascript" src="js/common.js"></script> ! <script language="javascript"> ! ! function SetResourceType( type ) ! { ! window.parent.frames["frmFolders"].SetResourceType( type ) ; ! } ! ! var aTypes = [ ! ['File','File'], ! ['Image','Image'], ! ['Flash','Flash'], ! ['Media','Media'] ! ] ; ! ! window.onload = function() ! { ! var bHasType = ( oConnector.ResourceType.length > 0 ) ; ! ! for ( var i = 0 ; i < aTypes.length ; i++ ) ! { ! if ( !bHasType || aTypes[i][0] == oConnector.ResourceType ) ! AddSelectOption( cmbType, aTypes[i][1], aTypes[i][0] ) ; ! } ! } ! ! </script> ! </head> ! <body bottomMargin="0" topMargin="0"> ! <table height="100%" cellSpacing="0" cellPadding="0" width="100%" border="0"> ! <tr> ! <td nowrap> ! Resource Type<BR> ! <select id="cmbType" style="WIDTH: 100%" onchange="SetResourceType(this.value);"> ! </select> ! </td> ! </tr> ! </table> ! </body> ! </html> --- 1,65 ---- <!-- ! * 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: frmresourcetype.html ! * This page shows the list of available resource types. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-06-19 00:57:24 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <html> ! <head> ! <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> ! <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> ! <link href="Browser.css" type="text/css" rel="stylesheet"> ! <script type="text/javascript" src="js/common.js"></script> ! <script language="javascript"> ! ! function SetResourceType( type ) ! { ! window.parent.frames["frmFolders"].SetResourceType( type ) ; ! } ! ! var aTypes = [ ! ['File','File'], ! ['Image','Image'], ! ['Flash','Flash'], ! ['Media','Media'] ! ] ; ! ! window.onload = function() ! { ! var bHasType = ( oConnector.ResourceType.length > 0 ) ; ! ! for ( var i = 0 ; i < aTypes.length ; i++ ) ! { ! if ( !bHasType || aTypes[i][0] == oConnector.ResourceType ) ! AddSelectOption( cmbType, aTypes[i][1], aTypes[i][0] ) ; ! } ! } ! ! </script> ! </head> ! <body bottomMargin="0" topMargin="0"> ! <table height="100%" cellSpacing="0" cellPadding="0" width="100%" border="0"> ! <tr> ! <td nowrap> ! Resource Type<BR> ! <select id="cmbType" style="WIDTH: 100%" onchange="SetResourceType(this.value);"> ! </select> ! </td> ! </tr> ! </table> ! </body> ! </html> \ No newline at end of file Index: frmupload.html =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/_fck/editor/filemanager/browser/default/frmupload.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** frmupload.html 25 Oct 2004 18:09:34 -0000 1.1.1.1 --- frmupload.html 2 Nov 2004 21:55:50 -0000 1.2 *************** *** 1,104 **** <!-- ! * 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: frmupload.html ! * Page used to upload new files in the current folder. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-31 23:07:53 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <html> ! <head> ! <link href="Browser.css" type="text/css" rel="stylesheet" /> ! <script type="text/javascript" src="js/common.js"></script> ! <script language="javascript"> ! ! function SetCurrentFolder( resourceType, folderPath ) ! { ! var sUrl = oConnector.ConnectorUrl +'?Command=FileUpload' ; ! sUrl += '&Type=' + resourceType ; ! sUrl += '&CurrentFolder=' + folderPath ; ! ! document.getElementById('frmUpload').action = sUrl ; ! } ! ! function OnSubmit() ! { ! if ( document.getElementById('NewFile').value.length == 0 ) ! { ! alert( 'Please select a file from your computer' ) ; ! return false ; ! } ! ! // Set the interface elements. ! document.getElementById('eUploadMessage').innerHTML = 'Upload a new file in this folder (Upload in progress, please wait...)' ; ! document.getElementById('btnUpload').disabled = true ; ! ! return true ; ! } ! ! function OnUploadCompleted( errorNumber, fileName ) ! { ! // Reset the Upload Worker Frame. ! window.parent.frames['frmUploadWorker'].location = '' ; ! ! // Reset the upload form. ! document.getElementById('frmUpload').reset() ; ! ! // Reset the interface elements. ! document.getElementById('eUploadMessage').innerHTML = 'Upload a new file in this folder' ; ! document.getElementById('btnUpload').disabled = false ; ! ! switch ( errorNumber ) ! { ! case 0 : ! window.parent.frames['frmResourcesList'].Refresh() ; ! break ; ! case 201 : ! window.parent.frames['frmResourcesList'].Refresh() ; ! 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 ; ! default : ! alert( 'Error on file upload. Error number: ' + errorNumber ) ; ! break ; ! } ! } ! ! window.onload = function() ! { ! window.top.IsLoadedUpload = true ; ! } ! </script> ! </head> ! <body bottomMargin="0" topMargin="0"> ! <form id="frmUpload" action="" target="frmUploadWorker" method="post" enctype="multipart/form-data" onsubmit="return OnSubmit();"> ! <table height="100%" cellSpacing="0" cellPadding="0" width="100%" border="0"> ! <tr> ! <td nowrap> ! <span id="eUploadMessage">Upload a new file in this folder</span><br> ! <table cellSpacing="0" cellPadding="0" width="100%" border="0"> ! <tr> ! <td width="100%"><input id="NewFile" name="NewFile" style="WIDTH: 100%" type="file"></td> ! <td nowrap> <input id="btnUpload" type="submit" value="Upload"></td> ! </tr> ! </table> ! </td> ! </tr> ! </table> ! </form> ! </body> ! </html> --- 1,104 ---- <!-- ! * 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: frmupload.html ! * Page used to upload new files in the current folder. ! * ! * Version: 2.0 Beta 2 ! * Modified: 2004-05-31 23:07:53 ! * ! * File Authors: * Frederico Caldeira Knabben (fr...@fc...) ! --> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ! <html> ! <head> ! <link href="Browser.css" type="text/css" rel="stylesheet" /> ! <script type="text/javascript" src="js/common.js"></script> ! <script language="javascript"> ! ! function SetCurrentFolder( resourceType, folderPath ) ! { ! var sUrl = oConnector.ConnectorUrl +'?Command=FileUpload' ; ! sUrl += '&Type=' + resourceType ; ! sUrl += '&CurrentFolder=' + folderPath ; ! ! document.getElementById('frmUpload').action = sUrl ; ! } ! ! function OnSubmit() ! { ! if ( document.getElementById('NewFile').value.length == 0 ) ! { ! alert( 'Please select a file from your computer' ) ; ! return false ; ! } ! ! // Set the interface elements. ! document.getElementById('eUploadMessage').innerHTML = 'Upload a new file in this folder (Upload in progress, please wait...)' ; ! document.getElementById('btnUpload').disabled = true ; ! ! return true ; ! } ! ! function OnUploadCompleted( errorNumber, fileName ) ! { ! // Reset the Upload Worker Frame. ! window.parent.frames['frmUploadWorker'].location = '' ; ! ! // Reset the upload form. ! document.getElementById('frmUpload').reset() ; ! ! // Reset the interface elements. ! document.getElementById('eUploadMessage').innerHTML = 'Upload a new file in this folder' ; ! document.getElementById('btnUpload').disabled = false ; ! ! switch ( errorNumber ) ! { ! case 0 : ! window.parent.frames['frmResourcesList'].Refresh() ; ! break ; ! case 201 : ! window.parent.frames['frmResourcesList'].Refresh() ; ! 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 ; ! default : ! alert( 'Error on file upload. Error number: ' + errorNumber ) ; ! break ; ! } ! } ! ! window.onload = function() ! { ! window.top.IsLoadedUpload = true ; ! } ! </script> ! </head> ! <body bottomMargin="0" topMargin="0"> ! <form id="frmUpload" action="" target="frmUploadWorker" method="post" enctype="multipart/form-data" onsubmit="return OnSubmit();"> ! <table height="100%" cellSpacing="0" cellPadding="0" width="100%" border="0"> ! <tr> ! <td nowrap> ! <span id="eUploadMessage">Upload a new file in this folder</span><br> ! <table cellSpacing="0" cellPadding="0" width="100%" border="0"> ! <tr> ! <td width="100%"><input id="NewFile" name="NewFile" style="WIDTH: 100%" type="file"></td> ! <td nowrap> <input id="btnUpload" type="submit" value="Upload"></td> ! </tr> ! </table> ! </td> ! </tr> ! </table> ! </form> ! </body> ! </html> \ No newline at end of file |
From: Yves K. <yku...@us...> - 2004-11-02 21:42:48
|
Update of /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8552/modules/xwysiwyg/mod/xwysiwyg/class Modified Files: xwysiwyg.php Log Message: path and CDATA bugfix Index: xwysiwyg.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/class/xwysiwyg.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** xwysiwyg.php 31 Oct 2004 19:52:05 -0000 1.6 --- xwysiwyg.php 2 Nov 2004 21:42:02 -0000 1.7 *************** *** 151,155 **** // HtmlArea-Main for all Modes $main = " ! <script type=\"text/javascript\">\n//<[[CDATA _editor_lang = \"".$lang."\"; _editor_url = \"http://".PHPWS_SOURCE_HTTP."mod/xwysiwyg/_htmlarea/\"; --- 151,155 ---- // HtmlArea-Main for all Modes $main = " ! <script type=\"text/javascript\">\n//<![CDATA[ _editor_lang = \"".$lang."\"; _editor_url = \"http://".PHPWS_SOURCE_HTTP."mod/xwysiwyg/_htmlarea/\"; *************** *** 157,161 **** <!-- load the main HTMLArea files --> <script type=\"text/javascript\" src=\"http://".PHPWS_SOURCE_HTTP."mod/xwysiwyg/_htmlarea/htmlarea.js\"></script> ! <script type=\"text/javascript\">\n//<[[CDATA ".$loadplugs; --- 157,161 ---- <!-- load the main HTMLArea files --> <script type=\"text/javascript\" src=\"http://".PHPWS_SOURCE_HTTP."mod/xwysiwyg/_htmlarea/htmlarea.js\"></script> ! <script type=\"text/javascript\">\n//<![CDATA[ ".$loadplugs; *************** *** 177,182 **** $main = " <!-- load the main FCKeditor files --> ! <script type=\"text/javascript\" src=\"http://".PHPWS_SOURCE_HTTP."mod/fckeditor/fck/fckeditor.js\"></script> ! <script type=\"text/javascript\">\n//<[[CDATA ".$loadplugs; --- 177,182 ---- $main = " <!-- load the main FCKeditor files --> ! <script type=\"text/javascript\" src=\"http://".PHPWS_SOURCE_HTTP."mod/xwysiwyg/_fck/fckeditor.js\"></script> ! <script type=\"text/javascript\">\n//<![CDATA[ ".$loadplugs; *************** *** 216,220 **** $main = PHPWS_xwysiwyg::makeMain($settings,$editors,$loadplugs,$lang); } ! $main = "//]]>\n</script>".$main."<script type=\"text/javascript\">\n//<[[CDATA"; //ugly hack to work with $GLOBALS['core']->js_func[] return $main; } --- 216,220 ---- $main = PHPWS_xwysiwyg::makeMain($settings,$editors,$loadplugs,$lang); } ! $main = "//]]>\n</script>".$main."<script type=\"text/javascript\">\n//<![CDATA["; //ugly hack to work with $GLOBALS['core']->js_func[] return $main; } |
From: Michael H. R. <tec...@us...> - 2004-11-01 21:08:26
|
Update of /cvsroot/phpwebsite-comm/l10n/da/mod/phpwsbb/lang In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22212/mod/phpwsbb/lang Modified Files: phpwsbb.da.lng Log Message: Updated lng files for phpWebSite 0.9.3-4 Index: phpwsbb.da.lng =================================================================== RCS file: /cvsroot/phpwebsite-comm/l10n/da/mod/phpwsbb/lang/phpwsbb.da.lng,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** phpwsbb.da.lng 31 Oct 2004 09:46:12 -0000 1.3 --- phpwsbb.da.lng 1 Nov 2004 21:07:19 -0000 1.4 *************** *** 1,28 **** da:|:phpwsbb ! a:|:Access to ban IP addresses was denied due to lack of proper permissions.:|:Access to ban IP addresses was denied due to lack of proper permissions. ! a:|:Access to ban usernames was denied due to lack of proper permissions.:|:Access to ban usernames was denied due to lack of proper permissions. ! a:|:Access to delete this forum was denied due to lack of proper permissions.:|:Access to delete this forum was denied due to lack of proper permissions. a:|:Access to delete this message was denied due to lack of proper permissions.:|:Adgang til at slette denne besked er afvist på grund af manglende autorisation. a:|:Access to delete this topic was denied due to lack of proper permissions.:|:Adgang til at slette dette emne er afvist på grund af manglende autorisation. ! a:|:Access to edit settings was denied.:|:Access to edit settings was denied. a:|:Access to lock this topic was denied due to lack of proper permissions.:|:Adgang til at låse dette emne er afvist på grund af manglende autorisation. ! a:|:Access to stick this topic was denied due to lack of proper permissions.:|:Access to stick this topic was denied due to lack of proper permissions. ! a:|:Access to update topics was denied due to lack of proper permissions.:|:Access to update topics was denied due to lack of proper permissions. ! a:|:Access was denied due to lack of proper permissions.:|:Adgang afslået på grund af manglende autorisation. a:|:Add Forum:|:Tilføj forum ! a:|:Add/Edit Forum:|:Add/Edit Forum a:|:Allow Anonymous Posts:|:Tillad anonyme opslag a:|:Allow Anonymous Viewing of Posts:|:Tillad anonyme visninger af opslag ! a:|:Allow User Monitors:|:Allow User Monitors ! a:|:Anchor (href) tags are not allowed in the message subject.:|:Anchor (href) tags are not allowed in the message subject. ! a:|:Anonymous Posting Denied:|:Anonymous Posting Denied ! a:|:Anonymous Viewing Denied:|:Anonymous Viewing Denied ! a:|:Anonymous posting to this bulletin board has been disabled. You must log-in to post to this bulletin board.:|:Anonymous posting to this bulletin board has been disabled. You must log-in to post to this bulletin board. ! a:|:Anonymous viewing of this bulletin board has been disabled. You must log-in to view this bulletin board.:|:Anonymous viewing of this bulletin board has been disabled. You must log-in to view this bulletin board. ! a:|:Are you sure you want to clear ALL of your monitors?:|:Are you sure you want to clear ALL of your monitors? a:|:Are you sure you want to delete this forum and all its threads and messages?:|:Er du sikker på, at du vil slette dette forum og alle relaterede tråde og beskeder? a:|:Are you sure you want to delete this message?:|:Er du sikker på, at du vil fjerne denne besked? a:|:Are you sure you want to delete this topic?:|:Er du sikker på, at du vil fjerne dette emne? ! a:|:Automatically monitor threads you post to?:|:Automatically monitor threads you post to? a:|:Back to Forums:|:Tilbage til forums a:|:Back to the topic.:|:Tilbage til emnet. --- 1,28 ---- da:|:phpwsbb ! a:|:Access to ban IP addresses was denied due to lack of proper permissions.:|:Adgang til at bandlyse IP adresser er afvist på grund af manglende autorisation. ! a:|:Access to ban usernames was denied due to lack of proper permissions.:|:Adgang til at bandlyse brugernavne er afvist på grund af manglende autorisation. ! a:|:Access to delete this forum was denied due to lack of proper permissions.:|:Adgang til at slette dette forum er afvist på grund af manglende autorisation. a:|:Access to delete this message was denied due to lack of proper permissions.:|:Adgang til at slette denne besked er afvist på grund af manglende autorisation. a:|:Access to delete this topic was denied due to lack of proper permissions.:|:Adgang til at slette dette emne er afvist på grund af manglende autorisation. ! a:|:Access to edit settings was denied.:|:Adgang til at ændre indstillinger er afvist. a:|:Access to lock this topic was denied due to lack of proper permissions.:|:Adgang til at låse dette emne er afvist på grund af manglende autorisation. ! a:|:Access to stick this topic was denied due to lack of proper permissions.:|:Adgang til at vedhæfte dette emne er afvist på grund af manglende autorisation. ! a:|:Access to update topics was denied due to lack of proper permissions.:|:Adgang til at opdatere emner er afvist på grund af manglende autorisation. ! a:|:Access was denied due to lack of proper permissions.:|:Adgang afvist på grund af manglende autorisation. a:|:Add Forum:|:Tilføj forum ! a:|:Add/Edit Forum:|:Tilføj/Ret forum a:|:Allow Anonymous Posts:|:Tillad anonyme opslag a:|:Allow Anonymous Viewing of Posts:|:Tillad anonyme visninger af opslag ! a:|:Allow User Monitors:|:Tillad overvågning ! a:|:Anchor (href) tags are not allowed in the message subject.:|:Link (href) tags er ikke tilladt i beskedens emnefelt. ! a:|:Anonymous Posting Denied:|:Anonyme opslag afvist ! a:|:Anonymous Viewing Denied:|:Anonym visning afvist ! a:|:Anonymous posting to this bulletin board has been disabled. You must log-in to post to this bulletin board.:|:Anonyme opslag til denne opslagstavle er slået fra. Du skal logge på for at kunne lave opslag til denne opslagstavle. ! a:|:Anonymous viewing of this bulletin board has been disabled. You must log-in to view this bulletin board.:|:Anonyme visninger i denne opslagstavle er slået fra. Du skal logge på for at kunne lave visninger i denne opslagstavle. ! a:|:Are you sure you want to clear ALL of your monitors?:|:Er du sikker på, at du vil rydde ALLE dine overvågninger? a:|:Are you sure you want to delete this forum and all its threads and messages?:|:Er du sikker på, at du vil slette dette forum og alle relaterede tråde og beskeder? a:|:Are you sure you want to delete this message?:|:Er du sikker på, at du vil fjerne denne besked? a:|:Are you sure you want to delete this topic?:|:Er du sikker på, at du vil fjerne dette emne? ! a:|:Automatically monitor threads you post to?:|:Overvåg automatisk den tråd du sender til? a:|:Back to Forums:|:Tilbage til forums a:|:Back to the topic.:|:Tilbage til emnet. *************** *** 32,39 **** a:|:Bulletin Board Admin Email:|:Opslagstavle admin e-mail a:|:Bulletin Board Forums:|:Opslagstavle forums ! a:|:Bulletin Board Offline:|:Bulletin Board Offline ! a:|:Category:|:Category ! a:|:Clear Monitor Confirmation:|:Clear Monitor Confirmation ! a:|:Complete!:|:Complete! a:|:Delete:|:Slet a:|:Delete Forum:|:Slet forum --- 32,39 ---- a:|:Bulletin Board Admin Email:|:Opslagstavle admin e-mail a:|:Bulletin Board Forums:|:Opslagstavle forums ! a:|:Bulletin Board Offline:|:Opslagstavle offline ! a:|:Category:|:Kategori ! a:|:Clear Monitor Confirmation:|:Ryd overvågnings bekræftelse ! a:|:Complete!:|:Færdig! a:|:Delete:|:Slet a:|:Delete Forum:|:Slet forum *************** *** 42,58 **** a:|:Delete Topic:|:Slet emne a:|:Delete Topic Confirmation:|:Slet emne bekræftelse ! a:|:Description:|:Description a:|:Edit:|:Ret a:|:Edit Forum:|:Ret forum a:|:Edit Message:|:Ret besked a:|:Email Notification Text:|:E-mail påmindelsestekst ! a:|:Error Saving Settings:|:Error Saving Settings a:|:Fork:|:Gren a:|:Forum:|:Forum ! a:|:Forum Topics:|:Forum Topics a:|:Forums:|:Forums ! a:|:Forums Block Title:|:Forums Block Title a:|:GUEST:|:GÆST ! a:|:Guest:|:Guest a:|:Guest Email:|:Gæst e-mail a:|:Guest Name:|:Gæst navn --- 42,58 ---- a:|:Delete Topic:|:Slet emne a:|:Delete Topic Confirmation:|:Slet emne bekræftelse ! a:|:Description:|:Beskrivelse a:|:Edit:|:Ret a:|:Edit Forum:|:Ret forum a:|:Edit Message:|:Ret besked a:|:Email Notification Text:|:E-mail påmindelsestekst ! a:|:Error Saving Settings:|:Fejl ved gem indstillinger a:|:Fork:|:Gren a:|:Forum:|:Forum ! a:|:Forum Topics:|:Forum emner a:|:Forums:|:Forums ! a:|:Forums Block Title:|:Forum blok titel a:|:GUEST:|:GÆST ! a:|:Guest:|:Gæst a:|:Guest Email:|:Gæst e-mail a:|:Guest Name:|:Gæst navn *************** *** 63,77 **** a:|:IP Address:|:IP adresse a:|:LOCKED:|:LÅST ! a:|:Last Post:|:Sidste svar ! a:|:Latest Threads Block Title:|:Latest Threads Block Title a:|:Lock Topic:|:Lås emne ! a:|:Maximum Number of Threads to Show in Latest Threads Block:|:Maximum Number of Threads to Show in Latest Threads Block ! a:|:Message:|:Message a:|:Monitor:|:Overvåg a:|:Monitor Posts:|:Overvåg opslag a:|:Monitor successfully removed.:|:Overvågning stoppet. ! a:|:Monitoring has been disabled by the administrator.:|:Monitoring has been disabled by the administrator. ! a:|:Move to Forum:|:Move to Forum ! a:|:Name:|:Name a:|:New Message:|:Ny besked a:|:New Topic:|:Nyt emne --- 63,77 ---- a:|:IP Address:|:IP adresse a:|:LOCKED:|:LÅST ! a:|:Last Post:|:Sidste opslag ! a:|:Latest Threads Block Title:|:Seneste tråd blok titel a:|:Lock Topic:|:Lås emne ! a:|:Maximum Number of Threads to Show in Latest Threads Block:|:Maksimum antal tråde vist i den seneste tråd blok ! a:|:Message:|:Besked a:|:Monitor:|:Overvåg a:|:Monitor Posts:|:Overvåg opslag a:|:Monitor successfully removed.:|:Overvågning stoppet. ! a:|:Monitoring has been disabled by the administrator.:|:Overvågning er blevet slået fra af administratoren. ! a:|:Move to Forum:|:Flyt til forum ! a:|:Name:|:Navn a:|:New Message:|:Ny besked a:|:New Topic:|:Nyt emne *************** *** 79,123 **** a:|:No forum was deleted from the database.:|:Ingen forums slettet fra databasen. a:|:No message was deleted from the database.:|:Ingen beskeder slettet fra databasen. ! a:|:No monitors were cleared.:|:No monitors were cleared. a:|:No topic was deleted from the database.:|:Ingen emner slettet fra databasen. a:|:Post Reply:|:Registrer svar a:|:Poster:|:Opslag ! a:|:Reason:|:Reason ! a:|:Remove all monitors:|:Remove all monitors a:|:Replies:|:Svar a:|:Reply to Message:|:Svar på besked a:|:Report:|:Report ! a:|:Report Message:|:Report Message ! a:|:STICKY:|:HÆNGENDE a:|:Save:|:Gem ! a:|:Settings:|:Settings a:|:Settings Saved:|:Indstillinger gemt a:|:Show Forum:|:Vis forum ! a:|:Show Forums Block:|:Show Forums Block ! a:|:Show Latest Threads Block:|:Show Latest Threads Block a:|:Show Message:|:Vis besked a:|:Show Topic:|:Vis emne ! a:|:Sorry, the bulletin board is currently down for maintenance.:|:Sorry, the bulletin board is currently down for maintenance. a:|:Sort Order:|:Sorteringsrækkefølge a:|:Stick Topic:|:Vedhæft emne a:|:Stop Monitor:|:Stop overvågning a:|:Subject:|:Emne ! a:|:Suspend monitors:|:Indstil overvågningen ! a:|:Take Bulletin Board Offline:|:Take Bulletin Board Offline a:|:The forum [var1] was successfully deleted from the database.:|:Forumet [var1] er slettet fra databasen. ! a:|:The forum could not be saved to the database.:|:The forum could not be saved to the database. a:|:The message could not be saved to the database.:|:Beskeden kunne ikke gemmes i databasen. a:|:The topic [var1] was successfully deleted from the database.:|:Emnet [var1] er slettet fra databasen. a:|:The topic could not be saved to the database.:|:Emnet kunne ikke gemmes i databasen a:|:The topic was successfully saved.:|:Emnet er gemt. ! a:|:There is nothing here to see.:|:There is nothing here to see. ! a:|:There was a problem adding the monitor entry. Please try again or contact the system administrator.:|:There was a problem adding the monitor entry. Please try again or contact the system administrator. ! a:|:There was a problem removing the monitor entry. Please try again or contact the system administrator.:|:There was a problem removing the monitor entry. Please try again or contact the system administrator. ! a:|:There was an error saving the settings.:|:There was an error saving the settings. ! a:|:This thread has been locked.:|:This thread has been locked. a:|:This topic has no messages.:|:Dette emne har ingen beskeder. a:|:This topic is already locked.:|:Dette emne er allerede låst. ! a:|:This topic is already not sticky.:|:Dette emne er allerede ikke-hængende. ! a:|:This topic is already sticky.:|:Dette emne er allerede hængende. a:|:This topic is already unlocked.:|:Dette emne er allerede låst op. a:|:Topic:|:Emne --- 79,123 ---- a:|:No forum was deleted from the database.:|:Ingen forums slettet fra databasen. a:|:No message was deleted from the database.:|:Ingen beskeder slettet fra databasen. ! a:|:No monitors were cleared.:|:Ingen overvågninger blev ryddet. a:|:No topic was deleted from the database.:|:Ingen emner slettet fra databasen. a:|:Post Reply:|:Registrer svar a:|:Poster:|:Opslag ! a:|:Reason:|:Årsag ! a:|:Remove all monitors:|:Fjern alle overvågninger a:|:Replies:|:Svar a:|:Reply to Message:|:Svar på besked a:|:Report:|:Report ! a:|:Report Message:|:Report besked ! a:|:STICKY:|:VEDHÆFTET a:|:Save:|:Gem ! a:|:Settings:|:Indstillinger a:|:Settings Saved:|:Indstillinger gemt a:|:Show Forum:|:Vis forum ! a:|:Show Forums Block:|:Vis forums blok ! a:|:Show Latest Threads Block:|:Vis seneste tråd blok a:|:Show Message:|:Vis besked a:|:Show Topic:|:Vis emne ! a:|:Sorry, the bulletin board is currently down for maintenance.:|:Beklager, opslagstavlen er midlertidigt nede pga. vedligeholdelse. a:|:Sort Order:|:Sorteringsrækkefølge a:|:Stick Topic:|:Vedhæft emne a:|:Stop Monitor:|:Stop overvågning a:|:Subject:|:Emne ! a:|:Suspend monitors:|:Indstil overvågninger ! a:|:Take Bulletin Board Offline:|:Skift opslagstavlen til offline a:|:The forum [var1] was successfully deleted from the database.:|:Forumet [var1] er slettet fra databasen. ! a:|:The forum could not be saved to the database.:|:Forumet kunne ikke gemmes i databasen. a:|:The message could not be saved to the database.:|:Beskeden kunne ikke gemmes i databasen. a:|:The topic [var1] was successfully deleted from the database.:|:Emnet [var1] er slettet fra databasen. a:|:The topic could not be saved to the database.:|:Emnet kunne ikke gemmes i databasen a:|:The topic was successfully saved.:|:Emnet er gemt. ! a:|:There is nothing here to see.:|:Her er ingenting at se. ! a:|:There was a problem adding the monitor entry. Please try again or contact the system administrator.:|:Der var et problem med at tilføle en overvågning. Prøv venligst igen eller kontakt systemadministratoren. ! a:|:There was a problem removing the monitor entry. Please try again or contact the system administrator.:|:Der var et problem med at slette en overvågning. Prøv venligst igen eller kontakt systemadministratoren. ! a:|:There was an error saving the settings.:|:Der opstod en fejl under lagring af indstillingerne. ! a:|:This thread has been locked.:|:Denne tråd er blevet låst. a:|:This topic has no messages.:|:Dette emne har ingen beskeder. a:|:This topic is already locked.:|:Dette emne er allerede låst. ! a:|:This topic is already not sticky.:|:Dette emne er allerede ikke vedhæftet. ! a:|:This topic is already sticky.:|:Dette emne er allerede vedhæftet. a:|:This topic is already unlocked.:|:Dette emne er allerede låst op. a:|:Topic:|:Emne *************** *** 125,138 **** a:|:Unlock Topic:|:Fjern lås fra emne a:|:Unstick Topic:|:Fjern vedhæftet emne ! a:|:Updating All Topics:|:Updating All Topics a:|:View Topic:|:Vis emne a:|:Yes:|:Ja ! a:|:You must be a registered user and logged in to monitor topics.:|:You must be a registered user and logged in to monitor topics. ! a:|:You must have a name for your forum.:|:You must have a name for your forum. a:|:You must have a subject for your message.:|:Du skal angive et emne for denne besked. ! a:|:You tried to move it to current forum.:|:You tried to move it to current forum. a:|:Your forum was successfully saved.:|:Dit forum er gemt. a:|:Your message was successfully saved.:|:Din besked er gemt. ! a:|:Your monitors have been cleared.:|:Your monitors have been cleared. a:|:Your settings have been successfully saved.:|:Dine indstillinger er gemt. a:|:phpwsBB Settings:|:phpwsBB indstillinger --- 125,138 ---- a:|:Unlock Topic:|:Fjern lås fra emne a:|:Unstick Topic:|:Fjern vedhæftet emne ! a:|:Updating All Topics:|:Opdaterer alle emner a:|:View Topic:|:Vis emne a:|:Yes:|:Ja ! a:|:You must be a registered user and logged in to monitor topics.:|:Du skal være registreret bruger og logget ind, for at overvåge emner. ! a:|:You must have a name for your forum.:|:Du skal navngive dit forum. a:|:You must have a subject for your message.:|:Du skal angive et emne for denne besked. ! a:|:You tried to move it to current forum.:|:Du forsøgte at flytte det til nuværende forum. a:|:Your forum was successfully saved.:|:Dit forum er gemt. a:|:Your message was successfully saved.:|:Din besked er gemt. ! a:|:Your monitors have been cleared.:|:Dine overvågninger er ryddet. a:|:Your settings have been successfully saved.:|:Dine indstillinger er gemt. a:|:phpwsBB Settings:|:phpwsBB indstillinger |
From: Michael H. R. <tec...@us...> - 2004-11-01 18:51:28
|
Update of /cvsroot/phpwebsite-comm/l10n/da/mod/help/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25881/mod/help/templates Modified Files: default.tpl Log Message: changed 'center' to 'div align="center"' Index: default.tpl =================================================================== RCS file: /cvsroot/phpwebsite-comm/l10n/da/mod/help/templates/default.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** default.tpl 3 Jul 2004 15:24:40 -0000 1.1.1.1 --- default.tpl 1 Nov 2004 18:49:38 -0000 1.2 *************** *** 1,21 **** ! <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> ! <head> ! <title>Hjælpe system</title> ! <meta name="keywords" content="phpwebsite help" /> ! <meta name="generator" value="phpWebSite 0.9.x " /> ! <link rel="stylesheet" href="{STYLESHEET}" type="text/css" /> ! <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" /> ! </head> ! <body onBlur="setTimeout('self.focus()',100)"> ! <br /> ! <center> ! <table border="0" width="90%" cellpadding="2" cellspacing="3" bgcolor="FFFFFF"> ! <tr> ! <td align="center" class="bg_medium">{LABEL}</td> ! </tr><tr> ! <td class="bg_light">{CONTENT}</td> ! </tr> ! </table> ! </center> ! </body> ! </html> --- 1,21 ---- ! <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> ! <head> ! <title>Hjælpe system</title> ! <meta name="keywords" content="phpwebsite help" /> ! <meta name="generator" value="phpWebSite 0.9.x " /> ! <link rel="stylesheet" href="{STYLESHEET}" type="text/css" /> ! <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" /> ! </head> ! <body onBlur="setTimeout('self.focus()',100)"> ! <br /> ! <div align="center"> ! <table border="0" width="90%" cellpadding="2" cellspacing="3" bgcolor="FFFFFF"> ! <tr> ! <td align="center" class="bg_medium">{LABEL}</td> ! </tr><tr> ! <td class="bg_light">{CONTENT}</td> ! </tr> ! </table> ! </div> ! </body> ! </html> |
From: Yves K. <yku...@us...> - 2004-10-31 20:57:28
|
Update of /cvsroot/phpwebsite-comm/modules/xwysiwyg/themes/Default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20040/modules/xwysiwyg/themes/Default Removed Files: theme.php theme.tpl Log Message: removed --- theme.tpl DELETED --- --- theme.php DELETED --- |
From: Yves K. <yku...@us...> - 2004-10-31 19:52:45
|
Update of /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3992/modules/xwysiwyg/mod/xwysiwyg/class Modified Files: xwysiwyg.php Log Message: bugfix for php notice: undefined variables Index: xwysiwyg.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/class/xwysiwyg.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** xwysiwyg.php 26 Oct 2004 21:09:22 -0000 1.5 --- xwysiwyg.php 31 Oct 2004 19:52:05 -0000 1.6 *************** *** 201,205 **** function makeJS() { ! if ($GLOBALS['xwysiwyg'] >= 1) { $areas = $GLOBALS['xwysiwyg_areas']; $settings = PHPWS_xwysiwyg::readConfig(); --- 201,206 ---- function makeJS() { ! $main = ""; ! if (isset($GLOBALS['xwysiwyg'])AND($GLOBALS['xwysiwyg'] >= 1)) { $areas = $GLOBALS['xwysiwyg_areas']; $settings = PHPWS_xwysiwyg::readConfig(); *************** *** 232,236 **** function showHAoptions($settings) { if ($_SESSION["OBJ_user"]->allow_access("xwysiwyg", "settings")) { ! if($_REQUEST['func'] == "update") { if(isset($_REQUEST['lang_activ'])) { $settings['lang_activ'] = 1; } else { $settings['lang_activ'] = 0; } --- 233,237 ---- function showHAoptions($settings) { if ($_SESSION["OBJ_user"]->allow_access("xwysiwyg", "settings")) { ! if (isset($_REQUEST['func'])AND($_REQUEST['func'] == "update")) { if(isset($_REQUEST['lang_activ'])) { $settings['lang_activ'] = 1; } else { $settings['lang_activ'] = 0; } *************** *** 304,308 **** $formTags['PLUG_IMAGE_TEXT'] = $_SESSION['translate']->it("Enable ImageManager-Plugin"); // $formTags['PLUG_SPELL_TEXT'] = "n.a. yet ".$_SESSION['translate']->it("Enable SpellChecker-Plugin"); ! if($_REQUEST['func'] == "update") { if($GLOBALS['core']->sqlUpdate($settings, "mod_xwysiwyg_conf")) { $formTags['MESSAGE'] = "<span style=\"color:green;font-weight:bold\">".$_SESSION['translate']->it("Settings saved successfully")."</span><br />"; } --- 305,309 ---- $formTags['PLUG_IMAGE_TEXT'] = $_SESSION['translate']->it("Enable ImageManager-Plugin"); // $formTags['PLUG_SPELL_TEXT'] = "n.a. yet ".$_SESSION['translate']->it("Enable SpellChecker-Plugin"); ! if(isset($_REQUEST['func'])AND($_REQUEST['func'] == "update")) { if($GLOBALS['core']->sqlUpdate($settings, "mod_xwysiwyg_conf")) { $formTags['MESSAGE'] = "<span style=\"color:green;font-weight:bold\">".$_SESSION['translate']->it("Settings saved successfully")."</span><br />"; } *************** *** 386,390 **** } } ! $content .= "<hr /><div style=\"float:right\"> <form action=\"index.php\" method=\"post\" TITLE=\"new\"> <input type=\"Hidden\" name=\"module\" value=\"xwysiwyg\"> --- 387,391 ---- } } ! $content = "<hr /><div style=\"float:right\"> <form action=\"index.php\" method=\"post\" TITLE=\"new\"> <input type=\"Hidden\" name=\"module\" value=\"xwysiwyg\"> *************** *** 398,402 **** function toggleButton($editor) { ! $content .= "<form action=\"index.php\" method=\"POST\" title=\"toggle\"> <input type=\"Hidden\" name=\"module\" value=\"xwysiwyg\"> <input type=\"Hidden\" name=\"action\" value=\"toggle\">"; --- 399,403 ---- function toggleButton($editor) { ! $content = "<form action=\"index.php\" method=\"POST\" title=\"toggle\"> <input type=\"Hidden\" name=\"module\" value=\"xwysiwyg\"> <input type=\"Hidden\" name=\"action\" value=\"toggle\">"; |
From: Yves K. <yku...@us...> - 2004-10-31 19:52:44
|
Update of /cvsroot/phpwebsite-comm/modules/xwysiwyg/js In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3992/modules/xwysiwyg/js Modified Files: wysiwyg.php Log Message: bugfix for php notice: undefined variables Index: wysiwyg.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/js/wysiwyg.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** wysiwyg.php 26 Oct 2004 18:57:58 -0000 1.4 --- wysiwyg.php 31 Oct 2004 19:51:03 -0000 1.5 *************** *** 30,34 **** if ($xwysiwyg) { $GLOBALS['xwysiwyg_areas'][] = $section_name; //write an array for the theme.php - //$js = ""; $GLOBALS['xwysiwyg']++; } --- 30,33 ---- |
From: Yves K. <yku...@us...> - 2004-10-31 19:52:24
|
Update of /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3992/modules/xwysiwyg/mod/xwysiwyg Modified Files: index.php Log Message: bugfix for php notice: undefined variables Index: index.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/xwysiwyg/mod/xwysiwyg/index.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** index.php 25 Oct 2004 18:08:04 -0000 1.1.1.1 --- index.php 31 Oct 2004 19:52:05 -0000 1.2 *************** *** 1,26 **** ! <?php ! ! /** ! * Main switch for the xwysiwyg-module, all operations ! * pass though this switch. ! * ! * @version $Id$ ! */ ! ! if (!isset($GLOBALS['core'])){ ! header("location:../../"); ! exit(); ! } ! ! /* Check to see if xwysiwyg sessions is set and set it if it's not. */ ! if(!isset($_SESSION["PHPWS_xwysiwyg"])) { ! $_SESSION["PHPWS_xwysiwyg"] = new PHPWS_xwysiwyg; ! } ! ! $GLOBALS["CNT_xwysiwyg"] = array("title"=>NULL,"content"=>NULL); ! ! if(isset($_REQUEST['action']) && isset($_SESSION['PHPWS_xwysiwyg'])) { ! $_SESSION['PHPWS_xwysiwyg']->action(); ! } ! ?> \ No newline at end of file --- 1,26 ---- ! <?php ! ! /** ! * Main switch for the xwysiwyg-module, all operations ! * pass though this switch. ! * ! * @version $Id$ ! */ ! ! if (!isset($GLOBALS['core'])){ ! header("location:../../"); ! exit(); ! } ! ! /* Check to see if xwysiwyg sessions is set and set it if it's not. */ ! if(!isset($_SESSION["PHPWS_xwysiwyg"])) { ! $_SESSION["PHPWS_xwysiwyg"] = new PHPWS_xwysiwyg; ! } ! ! $GLOBALS["CNT_xwysiwyg"] = array("title"=>NULL,"content"=>NULL); ! ! if(isset($_REQUEST['action']) && isset($_SESSION['PHPWS_xwysiwyg'])) { ! $_SESSION['PHPWS_xwysiwyg']->action(); ! } ! ?> \ No newline at end of file |
From: Yves K. <yku...@us...> - 2004-10-31 15:05:00
|
Update of /cvsroot/phpwebsite-comm/l10n/it/mod/notes/lang In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7063/l10n/it/mod/notes/lang Added Files: notes.it.lng Log Message: initial revision --- NEW FILE: notes.it.lng --- it:|:notes a:|:Are you sure you wish to delete this note from:|:Sicuro di eliminare la nota da a:|:Date Sent:|:Dati inviati a:|:Delete Note from:|:Elimina nota da a:|:Delete?:|:Eliminare? a:|:Go here to send notes to other users on this site.:|:Vai qui per inviare note ad altri utenti del sito a:|:Message:|:Messaggio a:|:My Notes:|:Mie note a:|:NEW:|:NUOVA a:|:New Note:|:Nuova nota a:|:No messages found!:|:Nessun messaggio trovato! a:|:Note Deleted Successfully:|:Nota eliminata a:|:Note Saved:|:Nota salvata a:|:Note Sent:|:Nota inviata a:|:Note from:|:Nota di a:|:Notes:|:Note a:|:READ:|:LEGGI a:|:Send Note:|:Invia nota a:|:Sent Notes:|:Note inviate a:|:Sent:|:Inviate a:|:Status:|:Status a:|:Your note was <b>not</b> deleted.:|:Nota <strong>NON</strong> cancellata a:|:Your note was successfully deleted.:|:Nota eliminata a:|:Your note was successfully sent!:|:Nota inviata! |
From: Yves K. <yku...@us...> - 2004-10-31 15:04:59
|
Update of /cvsroot/phpwebsite-comm/l10n/it/mod/faq/lang In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7063/l10n/it/mod/faq/lang Added Files: faq.it.lng Log Message: initial revision --- NEW FILE: faq.it.lng --- it:|:faq a:|: and dynamic sorting.:|: e odinamento dinamico a:|: months.:|: Mesi a:|: questions per page.:|: domande per pagina a:|:, user comments,:|:, commenti utenti a:|:<b>Administrative Options</b>:|:<strong>Opzioni amministrative</strong> a:|:A:|:un a:|:Action Canceled:|:Azione cancettala a:|:All FAQs Query:|:Tutte le query sulle FAQs a:|:All FAQs:|:Tutte le FAQs a:|:Allow users to post comments.:|:Permetti agli utenti di inviare commenti a:|:Allow users to rate FAQs.:|:Permetti agli utenti di votare le FAQ a:|:Allow users to suggest FAQs.:|:Permetti agli utenti di suggerire FAQ a:|:Answer One:|:Risposta uno a:|:Answer Two:|:Risposta due a:|:Answer: :|:Risposta: a:|:Are you sure you want to delete the following FAQs:|:Sicuro di eliminare le seguenti FAQ a:|:Are you sure you want to delete this FAQ.:|:Sicuro di eliminare questa FAQ a:|:Average Score:|:Media a:|:Average of Scores: :|:Media voti a:|:Basic Question and Answer View:|:Vista base Domanda e Risposta a:|:Category View:|:Vista categorie a:|:Category: :|:Categorie: a:|:Change FAQ Settings:|:Cambia impostazione FAQ a:|:Change Score Rating for this FAQ:|:Cambia punteggio per questa FAQ a:|:Composite Score: :|:Punteggio composito: a:|:Composite Score:|:Punteggio composito a:|:Confirm Deletion:|:Conferma eliminazione a:|:Confirm:|:Conferma a:|:Current FAQs:|:FAQ correnti a:|:Example::|:Esempio: a:|:FAQ (Frequently Asked Questions):|:FAQ (Frequently Asked Questions) a:|:FAQ Queries:|:FAQ query a:|:FAQ Removed:|:FAQ rimossa a:|:FAQ Submited:|:FAQ inviata a:|:FAQ has successfully been added to the database.:|:FAQ aggiunta a:|:FAQs can be viewed by clicking on the questions.:|:Le FAQ si vedono selezionando la domanda a:|:FAQs that have not been active in over :|:FAQ non attive per a:|:FAQs with a high number of hits and low score rating.:|:Le FAQ con molte hit e basso punteggio a:|:FAQs with a low number of hits and high score rating.:|:Le FAQ con molte hit e alto punteggio a:|:FAQs with no activity in last:|:Le FAQ senza attivit` negli ultimi a:|:Feedback:|:Feedback a:|:General Category:|:Categoria generale a:|:General Question One:|:Domanda generica uno a:|:General Question Three:|:Domanda generica tre a:|:General Question Two:|:Domanda generica due a:|:Go here to post files and documents that your site visitors might be interested in.:|:Vai qui per inviare documenti e files a cui i tuoi utenti potrebbero essere interessati a:|:Hidden: :|:Nascoste: a:|:High Hits / Low Rating:|:Molte hit / Basso punteggio a:|:Hits: :|:Hit: a:|:How helpful was this FAQ?:|:Quanto ti è stata utile questa FAQ? a:|:Layout View:|:Layout Vista a:|:Legend for Rating FAQs:|:Legenda per votare le FAQ a:|:Limit results by showing :|:Limita i risultati mostrando a:|:Limited rating, user comments, and dynamic sorting.:|:Limita risultati, commenti e ordinamento a:|:Limited rating:|:Limita voti a:|:Low Hits / High Rating:|:Poche hit / Alto punteggio a:|:New FAQ:|:FAQ nuove a:|:New:|:Nuova a:|:No Categories - Clickable Listing:|:Nessuna categoria - elenco cliccabile a:|:No Categories Available:|:Nessuna categoria disponibile a:|:No FAQs to display:|:Nessuna FAQ da mostrare a:|:Option 1:|:Opzione 1 a:|:Option 2:|:Opzione 2 a:|:Options:|:Optzioni a:|:Please only score this FAQ once.:|:Vota una sola volta perfavore a:|:Q:|:D a:|:Question Four:|:Domanda quattro a:|:Question One:|:Domanda uno a:|:Question Three:|:Domanda tre a:|:Question Two:|:Domanda due a:|:Question: :|:Domanda: a:|:Question:|:Domanda a:|:Quick FAQ Statistics:|:Statistiche veloci a:|:Rating:|:Punteggio a:|:Recalculate:|:Ricalcola a:|:Reset:|:azzera a:|:Score FAQ:|:Punteggio FAQ a:|:Scoring Information Updated:|:Informazioni sul punteggio aggiornate a:|:See docs on how to customize ordering.:|:Leggi la documentazione per personalizzare l'ordinamento a:|:Show FAQs according to categories specified in the fatcat module.:|:Mostra le FAQ secondo le impostazioni del modulo categorie (fatcat) a:|:Show Results:|:Mostra risultati a:|:Show all FAQs in database.:|:Mostra tutte le FAQ a:|:Special Queries:|:Query speciali a:|:Special Query:|:Quesry speciale a:|:Specific Category:|:Categoria specifica a:|:Specific Question One:|:Domanda specifica uno a:|:Specific Question Three:|:Domanda specifica tre a:|:Specific Question Two:|:Domanda specifica due a:|:Stats:|:Statistiche a:|:Submit FAQ:|:Invia FAQ a:|:Submit New FAQ:|:Invia nuova FAQ a:|:Submit Suggested FAQ:|:Invia suggerimento FAQ a:|:Suggest a FAQ:|:Suggerisci FAQ a:|:Thank you for scoring this FAQ.:|:Grazie per aver votato questa FAQ a:|:The FAQ has not been removed.:|:La FAQ non è stata rimossa a:|:The FAQ has successfully been deleted.:|:FAQ rimossa a:|:The paging limit must be a number and greater than zero.:|:Il limite deve essere superiore a zero a:|:This option is recommend if you have a small number of FAQs.:|:Questa opzione serve per chi ha poche FAQ a:|:Time Query:|:Query tempo a:|:Unapprove:|:Rifiuta a:|:Unapproved / Hidden FAQs:|:FAQ Rifiutate / Nascoste a:|:Unapproved / Hidden:|:Rifiutate / Nascoste a:|:Unapproved: :|:Rifiutate: a:|:Update FAQ:|:Aggiorna FAQ a:|:Users Rated:|:Votata dagli utenti a:|:View FAQs:|:Mostra FAQ a:|:Viewable: :|:Visibile: a:|:You did not enter a question.:|:Non hai fatto la domanda a:|:You did not enter an answer to your question.:|:Non hai dato risposta a:|:Your Email: :|:La tua Email: a:|:Your FAQ has successfully been added to the database.:|:FAQ aggiunta a:|:Your Name: :|:Il tuo nome: a:|:months.:|:Mese |