You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(34) |
Sep
(302) |
Oct
(13) |
Nov
(35) |
Dec
(15) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(56) |
Feb
(12) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/_testcases In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32492/thywidgets/external/fckeditor/_testcases Added Files: 001.html 002.html 003.html 004.html 005.html 006.html 007.html sampleposteddata.asp testcases.css Log Message: Synching... --- NEW FILE: 005.html --- <!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: 005.html * Test page. * * Version: 2.0 RC3 * Modified: 2005-03-02 12:04:53 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="testcases.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="../fckeditor.js"></script> </head> <body> <h1>FCKeditor - Test 005</h1> <P> <STRONG>Expected results</STRONG>: The editor content must be loaded and the submit button must post the editors html. No javascript errors should be thorwn (security errors).<BR> <STRONG>Configurations</STRONG>: BaseHref = http://www.fckeditor.net <BR> <STRONG>Steps to Reproduce</STRONG>: </P> <OL> <LI> Wait the editor to load. <LI> Create a table with border = 0 and an anchor. <LI>Create an image and points it to /images/Logos.gif <LI>Hit submit button and check the posted data.</LI></OL> <P> <hr> <P></P> <form action="sampleposteddata.asp" method="post" target="_blank"> <script type="text/javascript"> <!-- // Automatically calculates the editor base path based on the _samples directory. // This is usefull only for these samples. A real application should use something like this: // oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_testcases')) ; var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; oFCKeditor.BasePath = sBasePath ; oFCKeditor.Config['BaseHref'] = 'http://www.fckeditor.net' ; oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ; oFCKeditor.Create() ; //--> </script> <br> <input type="submit" value="Submit"> </form> </body> </html> --- NEW FILE: 007.html --- <!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: 007.html * Test Page. * * Version: 2.0 RC3 * Modified: 2005-02-23 23:27:23 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="testcases.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="../fckeditor.js"></script> </head> <body> <h1>FCKeditor - Test 007</h1> <P> <STRONG>Expected results</STRONG>: The editor content must be loaded and the submit button must post the editors html.<BR> <STRONG>Configurations</STRONG>: Default<BR> <STRONG>Steps to Reproduce</STRONG>: </P> <OL> <LI> Wait the editor to load. <LI> Enter some text. <LI> Hit submit button and check the posted data.</LI></OL> <P> <hr> <P></P> <form action="sampleposteddata.asp" method="post" target="_blank"> <script type="text/javascript"> <!-- // Automatically calculates the editor base path based on the _samples directory. // This is usefull only for these samples. A real application should use something like this: // oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_testcases')) ; var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; oFCKeditor.BasePath = sBasePath ; oFCKeditor.Value = '<div></div>' ; oFCKeditor.Create() ; //--> </script> <br> <input type="submit" value="Submit"> </form> </body> </html> --- NEW FILE: testcases.css --- /* * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: * http://www.opensource.org/licenses/lgpl-license.php * * For further information visit: * http://www.fckeditor.net/ * * File Name: testcases.css * Styles used in the samples pages. * * Version: 2.0 RC3 * Modified: 2004-05-31 23:07:47 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) */ body, td, input, select, textarea { font-size: 12px; font-family: Arial, Verdana, Sans-Serif; } h1 { font-weight: bold; font-size: 180%; margin-bottom: 10px; } form { margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px; } --- NEW FILE: 001.html --- <!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: 001.html * Test page. * * Version: 2.0 RC3 * Modified: 2005-02-23 23:24:17 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="testcases.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="../fckeditor.js"></script> </head> <body> <h1>FCKeditor - Test 001</h1> <P> <STRONG>Expected results</STRONG>: The editor content must be loaded and the submit button must post the editors html.<BR> <STRONG>Configurations</STRONG>: Default<BR> <STRONG>Steps to Reproduce</STRONG>: </P> <OL> <LI> Wait the editor to load.</LI> <LI> Hit submit button and check the posted data.</LI></OL> <P> <hr> </P> <form action="sampleposteddata.asp" method="post" target="_blank"> <script type="text/javascript"> <!-- // Automatically calculates the editor base path based on the _samples directory. // This is usefull only for these samples. A real application should use something like this: // oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_testcases')) ; var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; oFCKeditor.BasePath = sBasePath ; oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ; oFCKeditor.Create() ; //--> </script> <br> <input type="submit" value="Submit"> </form> </body> </html> --- NEW FILE: 004.html --- <!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: 004.html * Test page. * * Version: 2.0 RC3 * Modified: 2005-02-25 22:01:23 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="testcases.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="../fckeditor.js"></script> <script language="javascript"> function Show() { document.getElementById('eEditor').style.display = '' ; document.getElementById('eNoEditor').style.display = 'none' ; // This is a hack for Gecko... it stops editing when the editor is hidden. if ( !document.all ) { var oEditor = FCKeditorAPI.GetInstance( 'FCKeditor1' ) ; if ( oEditor.EditMode == FCK_EDITMODE_WYSIWYG ) { oEditor.SwitchEditMode() ; oEditor.SwitchEditMode() ; } } } function Hide() { document.getElementById('eEditor').style.display = 'none' ; document.getElementById('eNoEditor').style.display = '' ; } </script> </head> <body> <h1 id="Prova">FCKeditor - Test 004</h1> <P> <STRONG>Expected results</STRONG> : The editor must still work when hidding it programmatically (throw javascript).<BR> <STRONG>Configurations</STRONG>: Default<BR> <STRONG>Steps to Reproduce</STRONG>: </P> <OL> <LI> Wait the editor to load. <LI> Insert some text and format it. <LI> Hit the "Hide Editor" button. <LI> Hit the "Submit" and check the posted HTML. <LI> Close the "Submit" window. <LI> Hit the "Show Editor" button. <LI> Repeat steps 2 and 4.</LI></OL> <P> <hr> <P></P> <form action="sampleposteddata.asp" method="post" target="_blank"> <div id="eNoEditor" style="DISPLAY: none"> <input type="button" value="Show Editor" onclick="Show();"> </div> <div id="eEditor"> <input type="button" value="Hide Editor" onclick="Hide();"> <br><br> <script type="text/javascript"> <!-- // Automatically calculates the editor base path based on the _samples directory. // This is usefull only for these samples. A real application should use something like this: // oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_testcases')) ; var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; oFCKeditor.BasePath = sBasePath ; oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ; oFCKeditor.Create() ; //--> </script> </div> <br> <input type="submit" value="Submit"> </form> </body> </html> --- NEW FILE: 006.html --- <!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: 006.html * Test page. * * Version: 2.0 RC3 * Modified: 2005-03-02 12:05:34 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="testcases.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="../fckeditor.js"></script> </head> <body> <h1>FCKeditor - Test 006</h1> <P> <STRONG>Expected results</STRONG>: The editor content must be loaded and the submit button must post the editors html. No javascript errors should be thorwn (security errors).<BR> <STRONG>Configurations</STRONG>: BaseHref = http://www.fckeditor.net / FullPage = true <BR> <STRONG>Steps to Reproduce</STRONG>: </P> <OL> <LI> Wait the editor to load. <LI> Create a table with border = 0 and an anchor. <LI> Create an image and points it to /images/Logos.gif <LI> Hit submit button and check the posted data.</LI></OL> <P> <hr> <P></P> <form action="sampleposteddata.asp" method="post" target="_blank"> <script type="text/javascript"> <!-- // Automatically calculates the editor base path based on the _samples directory. // This is usefull only for these samples. A real application should use something like this: // oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_testcases')) ; var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; oFCKeditor.BasePath = sBasePath ; oFCKeditor.Config['FullPage'] = true ; oFCKeditor.Config['BaseHref'] = 'http://www.fckeditor.net' ; oFCKeditor.Value = '<html><head><title></title></head><body>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</body></html>' ; oFCKeditor.Create() ; //--> </script> <br> <input type="submit" value="Submit"> </form> </body> </html> --- NEW FILE: 002.html --- <!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: 002.html * Test page. * * Version: 2.0 RC3 * Modified: 2005-02-23 23:24:13 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="testcases.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="../fckeditor.js"></script> </head> <body> <h1>FCKeditor - Test 002</h1> <P><STRONG>Expected results</STRONG>: The editor must work correctly when not value has been set<BR> <STRONG>Configurations</STRONG>: Default<BR> <STRONG>Steps to Reproduce</STRONG>: </P> <OL> <LI> Wait the editor to load. <LI> Type some text and format it (use the "Bold" and "Style" commands). <LI> Check the toolbar buttons context sensitiveness. <LI> Switch to Source mode. <LI> Repeat steps 2, 3 and 4. <LI> Hit submit button and check the submitted data. </LI> </OL> <P> <hr> <P></P> <form action="sampleposteddata.asp" method="post" target="_blank"> <script type="text/javascript"> <!-- // Automatically calculates the editor base path based on the _samples directory. // This is usefull only for these samples. A real application should use something like this: // oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_testcases')) ; var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; oFCKeditor.BasePath = sBasePath ; oFCKeditor.Create() ; //--> </script> <br> <input type="submit" value="Submit"> </form> </body> </html> --- NEW FILE: 003.html --- <!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: 003.html * Test page. * * Version: 2.0 RC3 * Modified: 2005-03-02 11:59:25 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="testcases.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="../fckeditor.js"></script> </head> <body> <h1>FCKeditor - Test 003</h1> <P><STRONG>Expected results</STRONG>: The user must be able to edit the complete page html.<BR> <STRONG>Configurations</STRONG>: FullPage = true ;<BR> <STRONG>Steps to Reproduce</STRONG>: </P> <OL> <LI> Wait the editor to load. <LI> Type some text. <LI> Switch to Source mode. <LI> Switch back to WYSUWYG mode. <LI> Repeat steps 2, 3 and 4. <LI> Hit submit button and check the submitted data. </LI> </OL> <P> <hr> <P></P> <form action="sampleposteddata.asp" method="post" target="_blank"> <script type="text/javascript"> <!-- // Automatically calculates the editor base path based on the _samples directory. // This is usefull only for these samples. A real application should use something like this: // oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_testcases')) ; var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; oFCKeditor.BasePath = sBasePath ; oFCKeditor.Config["FullPage"] = true ; oFCKeditor.Value = '<html>\n\n<head><title></title></head><body>This is a Full Page editing Test:<br/>This is an image: <img src="' + sBasePath + 'editor/images/smiley/msn/lightbulb.gif" alt=""/></body></html>' ; oFCKeditor.Create() ; //--> </script> <br> <input type="submit" value="Submit"> </form> </body> </html> --- NEW FILE: sampleposteddata.asp --- (This appears to be a binary file; contents omitted.) |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:15:53
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_image In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32492/thywidgets/external/fckeditor/editor/dialog/fck_image Added Files: fck_image.js Log Message: Synching... --- NEW FILE: fck_image.js --- (This appears to be a binary file; contents omitted.) |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:15:53
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/_packager In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32492/thywidgets/external/fckeditor/_packager Added Files: readme.html Log Message: Synching... --- NEW FILE: readme.html --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title></title> <style type="text/css"> body { font-family: Arial, Verdana, Sans-Serif; } p { margin-left: 20px; } </style> </head> <body> <H1>FCKeditor.Packager</H1> <P>It is a program that compacts and optimizes the FCKeditor source files on fewer files.</P> <H3>Usage Instructions</H3> <P>Just copy FCKeditor.Packager.exe on the FCKeditor package root directory and run it.</P> <P><STRONG>ATTENTION:</STRONG> The original files on the [FCKeditor]/editor/js directory will be overwritten.</P> <H3>Requirements</H3> <P>It runs on Windows operating systems with .Net Framework 1.1 installed. Some users confirmed it runs over Linux using the Mono framework.</P> <H3>Copyright and Licensing</H3> <P> Copyright 2004-2005 by Frederico Caldeira Knabben. All rights reserved.<BR> <br> This software may be freely copied and redistributed without fee for non-commercial purposes provided that this copyright notice is preserved intact on all copies.<br> <BR> There is no warranty or other guarantee of fitness of this software. It is provided solely "as is". The author disclaims all responsibility and liability with respect to this software's usage or its effect upon hardware or computer systems. </P> </body> </html> |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:15:52
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/_docs/contents/002 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32492/thywidgets/external/fckeditor/_docs/contents/002 Added Files: FileBrowserConnector.gif Log Message: Synching... --- NEW FILE: FileBrowserConnector.gif --- (This appears to be a binary file; contents omitted.) |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:15:52
|
Update of /cvsroot/thyapi/thyapi/thythemes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32492/thythemes Added Files: theme_loader.php Log Message: Synching... --- NEW FILE: theme_loader.php --- <?php /***************************************************************************\ * ThyAPI - Thyamad Javascript API - CSS inclusion parser * * http://www.thyamad.com * * * * Copyright (C) 2005 - Raphael Derosso Pereira * * Based on DynAPI v3.0b1 * * ------------------------------------------------------------------------- * * This library is free software; you can redistribute it and/or modify it * * under the terms of the GNU Lesser General Public License as published * * by the Free Software Foundation; either version 2.1 of the License, * * or any later version. * * This library is distributed in the hope that it will be useful, but * * WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU Lesser General Public License for more details. * \***************************************************************************/ /* Topic: Theme Loader * * To use this loader, just define GLOBALS['thyapi']['theme'] in the form: * * array( 'name' => <theme_name>, 'custom' => <dir> ); * * <dir> can be a string or an array of strings * * Every css will be parsed and included on a single output, which will * be cached by browser. * * The suggestion is to create a PHP file, with the needed definitions * and include this file, placing a: * * <link href="<your_file>" type="text/css" /> * * In your output to the browser. */ class thyapi_theme { var $custom; function thyapi_theme() { if (!$GLOBALS['thyapi']['theme']) return; if (!is_array($GLOBALS['thyapi']['theme']['custom'])) { $this->custom = array( &$GLOBALS['thyapi']['theme']['custom'] ); } else { $this->custom =& $GLOBALS['thyapi']['theme']['custom']; } $css = ''; if ($GLOBALS['thyapi']['theme']['dir']) { $css = $this->parse_css($GLOBALS['thyapi']['theme']['dir']); } foreach ($this->custom as $custom) { $css .= $this->parse_css($custom); } $this->compress_css($css); // If using Apache compression AND HTTPS, do not compress this output! \\ if ($_SERVER['HTTPS'] == 'on') { apache_setenv('no-gzip', 1); } header('Expires: '.gmdate("D, d M Y H:i:s", time() + 86400).' GMT'); header('Cache-Control: max-age=86400, must-revalidate, public'); header('Pragma: '); header('Content-type: text/css'); header('Content-length: '.strlen($css)); echo $css; } function parse_css($dir='.') { $css = ''; $files = array(); if (is_dir($dir)) { $d = dir($dir); while (($file = $d->read()) !== false) { if (eregi('css$',$file)) { $files[$file] = file($dir . '/' . $file); } } } ksort($files); foreach ($files as $file) { $css .= str_replace('{css_dir}',$dir,@implode($file)); } return $css; } function compress_css(&$contents) { // Remove empty lines \\ $contents = preg_replace("/\n( |\t)*/",'',$contents); $contents = preg_replace("/\n(\s*)\n/",'',$contents); // Remove C-like comments \\ $contents = preg_replace('/\/\*(.(?!\*\/))*.\*\//s','',$contents); // Remove double spaces \\ $contents = preg_replace('/\s{2,}/',' ',$contents); } } $theme = new thyapi_theme(); |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:15:52
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/_docs/contents/002/FileBrowserConnectors/SampleResponses In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32492/thywidgets/external/fckeditor/_docs/contents/002/FileBrowserConnectors/SampleResponses Added Files: CreateFolder.xml FileUpload.html GetFolders.xml GetFoldersAndFiles.xml Log Message: Synching... --- NEW FILE: GetFoldersAndFiles.xml --- <?xml version="1.0" encoding="utf-8" ?> <Connector command="GetFolders" resourceType="File"> <CurrentFolder path="/SampleDir/Test/" url="/UserFiles/File/SampleDir/Test/" /> <Folders> <Folder name="Documents" /> <Folder name="Files" /> <Folder name="Other Files" /> <Folder name="Related" /> </Folders> <Files> <File name="XML Definition.doc" size="14" /> <File name="Samples.txt" size="5" /> <File name="Definition.txt" size="125" /> <File name="External Resources.drw" size="840" /> <File name="Todo.txt" size="2" /> </Files> </Connector> --- NEW FILE: FileUpload.html --- <script type="text/javascript"> window.parent.frames['frmUpload'].OnUploadCompleted(0) ; </script> <!-- These are the possible responses: window.parent.frames['frmUpload'].OnUploadCompleted(0) ; // No erros found. window.parent.frames['frmUpload'].OnUploadCompleted(201, 'FileName(1).ext') ; // When a file with the same name already exists. window.parent.frames['frmUpload'].OnUploadCompleted(202) ; // Invalid file. --> --- NEW FILE: GetFolders.xml --- <?xml version="1.0" encoding="utf-8" ?> <Connector command="GetFolders" resourceType="File"> <CurrentFolder path="/SampleDir/Test/" url="/UserFiles/File/SampleDir/Test/" /> <Folders> <Folder name="Documents" /> <Folder name="Files" /> <Folder name="Other Files" /> <Folder name="Related" /> </Folders> </Connector> --- NEW FILE: CreateFolder.xml --- <?xml version="1.0" encoding="utf-8" ?> <Connector command="GetFolders" resourceType="File"> <CurrentFolder path="/SampleDir/Test/" url="/UserFiles/File/SampleDir/Test/" /> <Error number="0" /> <!-- Errors Numbers: 0 : No errors found 101 : Folder already exists 102 : Invalid folder name 103 : You have no permissions to create the folder 110 : Unknown error creating folder --> </Connector> |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:15:52
|
Update of /cvsroot/thyapi/thyapi/thybase In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32492/thybase Added Files: logothyapi.png thybase.js thydragevent.js Log Message: Synching... --- NEW FILE: thybase.js --- /***************************************************************************\ * ThyAPI - Thyamad Javascript API - Base Element * * http://www.thyamad.com * * * * Copyright (C) 2005 - Raphael Derosso Pereira * * Based on DynAPI v3.0b1 * * ------------------------------------------------------------------------- * * This library is free software; you can redistribute it and/or modify it * * under the terms of the GNU Lesser General Public License as published * * by the Free Software Foundation; either version 2.1 of the License, * * or any later version. * * This library is distributed in the hope that it will be useful, but * * WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU Lesser General Public License for more details. * \***************************************************************************/ /** * Class: thyBase * * Base class for all other ThyAPI Components. It defines fundamental * functions that all thyAPI components must have. * */ function thyBase (name) { this.DynObject = DynObject; this.DynObject(); } /** * Method: dynapi.setPrototype * * Overloaded DynAPI method that permits multiple inheritance * * Parameters: * * sC - Derivate Class * sP - Base class (or an array of base classes) * */ dynapi.setPrototype = function(sC,sP) { if (typeof(sP) == 'object') { if ((sP.constructor+'')!=(Array+'')) return alert('Prototype Error'); } else { sP = [sP]; } var i; var c = this.frame[sC]; if (!c) return alert('Prototype Error. Unable to find '+sC); var p = this.frame[sP[0]]; if (!p) return alert('Prototype Error. Unable to find '+sP[0]); c.prototype = new p(); for (i=1; i<sP.length; i++) { p = this.frame[sP[i]]; if (!p) return alert('Prototype Error. Unable to find '+sP[i]); var j,prototype = new p(); for (j in prototype) { // Keep existing methods preceded with their // respective class name if (typeof(prototype[j]) == 'function') c.prototype['_'+sP[i]+j] = prototype[j]; c.prototype[j] = prototype[j]; } } c.prototype._className = sC; c.prototype._pClassName = sP; c.toString = function() {return '['+sC+']'}; return c.prototype; } /** * Method: DynObject.isClass * * Overloaded method that checks if a class is derivate from another class * * Parameters: * * cn - base class * n - derivate class * */ DynObject.isClass = function(cn,n) { if (cn == n) return true; else { var c = dynapi.frame[cn]; var p = c.prototype._pClassName; if (p) { if (typeof(p) != 'object') return DynObject.isClass(p,n); var i, result; for (i=0; i<p.length; p++) { if (DynObject.isClass(p[i],n)) return true; } return false; } else return false; } }; p = dynapi.setPrototype('thyBase', 'DynObject'); /** * Method: isFromClass * * Checks if the object is from the specified class type or from a class * derivate from that. * * Parameter: * * className - The name of the class to be checked * * Returns: * * Boolean * */ p.isFromClass = p.isClass; /** * Method: setName * * Changes the name of the widget * * Parameter: * * name - The new widget name * */ p.setName = function (name) { if (name == null || this.name == name) return; this.name = name; } /** * Method: clone * * Returns an exact copy of object (including children and DOM nodes) * * Parameter: * * name - The new name of the object * * FIXME: NOT DONE YET!!! */ p.clone = function (name) { var clone = eval('new '+this._className); var i; for (i in this) { switch (typeof(this[i])) { case 'object': // Do not clone special objects switch (i) { case 'parent': case 'elm': case 'children': clone[i] = null; } if (clone[i] == null) break; // Clone children if (typeof(this[i].clone) == 'function') { clone[i] = this[i].clone(); break; } default: // Do not clone functions and already cloned nodes if (clone[i] == this[i]) break; clone[i] = dynapi.functions.cloneObject(this[i]); } } if (name) { clone.setName(name); } else { clone.setName(clone.name); } if (!this._created) return; var cloneDOM = this.elm.cloneNode(true); var updateID = function (elm, children) { var k; for (k=0; k<children.length; k++) { elm.id = "DynObject"+DynObject._c++; } } } /** * Function: showMessage * * Shows the message * * FIXME: This MUST be implemented using a thyDialog */ function showMessage(message) { alert(message); } --- NEW FILE: logothyapi.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: thydragevent.js --- /***************************************************************************\ * ThyAPI - Thyamad Javascript API - DragEvent Element * * http://www.thyamad.com * * * * Copyright (C) 2005 - Raphael Derosso Pereira * * Based on DynAPI v3.0b1 * * ------------------------------------------------------------------------- * * This library is free software; you can redistribute it and/or modify it * * under the terms of the GNU Lesser General Public License as published * * by the Free Software Foundation; either version 2.1 of the License, * * or any later version. * * This library is distributed in the hope that it will be useful, but * * WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU Lesser General Public License for more details. * \***************************************************************************/ /** * Class: thyDragEvent * * This class is based on original DynAPI DragEvent Object, but optimized * for thyAPI functions * */ function thyDragEvent(type,src) { this.thyBase = thyBase; this.thyBase(); this.MouseEvent = MouseEvent; this.MouseEvent(); this.DynEvent(); this.isDragging = false; } var p = dynapi.setPrototype('thyDragEvent',['MouseEvent','thyBase']); p.getX = function() { return this.x; } p.getY = function() { return this.y; } p.getPageX = function() { return this.pageX; } p.getPageY = function() { return this.pageY; } p.cancelDrag = function() { this.isDragging=false; } thyDragEvent.dragevent = new thyDragEvent(); thyDragEvent.lyrListener = { onmousedown : function(e) { var icon,o = e.getSource(); icon = o; //setup drag icon if(o._useDragIcon && o._dragIcon) { icon=o._dragIcon; icon._dragOrg = o; icon.setX(o.getPageX()); icon.setY(o.getPageY()); icon.setWidth(o.getWidth()); icon.setHeight(o.getHeight()); } // Save original offset to keep mouse on its original position icon._dragOrigXOff = o.getX() - e.getPageX(); icon._dragOrigYOff = o.getY() - e.getPageY(); // Prevent Text Selection var orig = e.getOrigin(); orig._oldTextSelectable = orig._textSelectable; orig.setTextSelectable(false); thyDragEvent.dragevent.preStartDrag = true; thyDragEvent.dragevent.toDrag = icon; thyDragEvent.dragevent.event = e; thyDragEvent.dragevent.orig = orig; } } thyDragEvent.startDrag = function(e,dlyr) { var origdlyr = dlyr; if (!dlyr) dlyr = e.getSource(); if (dynapi.ua.dom) { dlyr.elm.ondragstart = function() { return false; }; dlyr.elm.onselectstart = function() { return false; }; if(dlyr._dragOrg) { dlyr._dragOrg.elm.ondragstart = function () {return false}; dlyr._dragOrg.elm.onselectstart = function() { return false; }; } } // Initialize dragEvent object var de=thyDragEvent.dragevent; de.src = dlyr; de.origin = (origdlyr)? e.origin : dlyr; //de.x = e.getPageX()-dlyr.getAbsoluteX(); //de.y = e.getPageY()-dlyr.getAbsoluteY(); de.x = e.getPageX(); de.y = e.getPageY(); de.pageX = e.getPageX(); de.pageY = e.getPageY(); if (dlyr.parent) { de.parentPageX = parseInt(dlyr.parent.getPageX()); de.parentPageY = parseInt(dlyr.parent.getPageY()); } de._mouseEvent = e._mouseEvent; de._browserEvent = e._browserEvent; // ns4 only de.isDragging = true; e.preventDefault(); //e.preventBubble(); dlyr.invokeEvent("dragstart",de); if(dlyr._dragOrg) { dlyr.setDisplay(true); dlyr._dragOrg.invokeEvent("dragstart",e); } } thyDragEvent.docListener = { onmousemove : function(e) { var de = thyDragEvent.dragevent; if (de && !de.isDragging && de.preStartDrag) { thyDragEvent.startDrag(de.event,de.toDrag); de.preStartDrag = false; } else if (de && de.isDragging) { var lyr = de.src; if (!lyr) return; // Properties de.type = "dragmove"; de.pageX = e.getPageX(); de.pageY = e.getPageY(); de._mouseEvent = e._mouseEvent; de._browserEvent = e._browserEvent; // ns4 only //var x=de.pageX-de.parentPageX-de.x; //var y=de.pageY-de.parentPageY-de.y; //var x = de.pageX - lyr.getWidth()/2; //var y = de.pageY - lyr.getHeight()/2; var x = de.pageX + lyr._dragOrigXOff; var y = de.pageY + lyr._dragOrigYOff; // Respect boundary, if any if (lyr._dragBoundary) { var dB = lyr._dragBoundary; var t = dB.top; var r = dB.right; var b = dB.bottom; var l = dB.left; // prevent choppy dragging if child is greater than parent var pw = (lyr.parent.w>lyr.w)? lyr.parent.w-lyr.w:lyr.x; var ph = (lyr.parent.h>lyr.h)? lyr.parent.h-lyr.h:lyr.y; if (x<l) x = l; else if (x>pw-r) x = pw-r; if (y<t) y = t; else if (y>ph-b) y = ph-b; } else if (lyr._dragBoundaryA) { var dB = lyr._dragBoundaryA; var b = dB[2]; var r = dB[1]; var l = dB[3]; var t = dB[0]; var w = lyr.w; var h = lyr.h; if (x<l) x = l; else if (x+w>r) x = r-w; if (y<t) y = t; else if (y+h>b) y = b-h; } // Stop at document edge if (x < 0) x = 0; if (y < 0) y = 0; // Move dragged layer lyr.setX(x); lyr.setY(y); lyr.invokeEvent("dragmove",de); // drag icon if(lyr._dragOrg) { lyr._dragOrg.invokeEvent("dragmove",e); } if (lyr._dragStealth==false && lyr.parent.DragOver) { lyr.parent.DragOver(lyr,e.getPageX(),e.getPageY()); } e.preventDefault(); e.preventBubble(); } }, onmouseup : function(e) { // Get, if any, the currently drag in process and the layer. If none, return var de=thyDragEvent.dragevent; if (!de) return; if (!de.isDragging) { de.type="dragend"; de.src=null; de.preStartDrag = false; if (de.orig) de.orig.setTextSelectable(de.orig._oldTextSelectable); //e.setBubble(true); return; } var lyr=de.src; if (!lyr) return; //if (dynapi.ua.ie) lyr.doc.body.onselectstart = null; // Avoid click for the dragged layer ( with MouseEvent addition ) if (dynapi.ua.def) dynapi.wasDragging=true; if (lyr.parent.DragDrop) lyr.parent.DragDrop(lyr,e.getPageX(),e.getPageY()); // Properties for the event de.type="dragend"; de.isDragging=false; lyr.invokeEvent("dragend",de); // drag icon if(lyr._dragOrg) { lyr.setDisplay(false); lyr._dragOrg.invokeEvent("dragend",de); } // Clean drag stuff de.src=null; e.preventDefault(); de.orig.setTextSelectable(de.orig._oldTextSelectable); //e.preventBubble(); } } thyDragEvent.stopAtDocumentEdge = true; thyDragEvent.setDragBoundary = function(lyr,t,r,b,l) { if (!lyr) {dynapi.debug.print("Error: no object passed to thyDragEvent.setDragBoundary()"); return;} var a=arguments; if (a.length==0) return; if (a.length==1) { lyr._dragBoundary = {left:0,right:0,top:0,bottom:0}; } if (a.length==2) { lyr._dragBoundary = arguments[1]; } else if (a.length==5) { lyr._dragBoundaryA = [t,r,b,l]; } } thyDragEvent.enableDragEvents=function() { for (var i=0;i<arguments.length;i++) { var lyr=arguments[i]; if (!lyr) {dynapi.debug.print("Error: no object passed to DragEvent.enableDragEvents()"); return;} if (lyr.isClass('DynLayer')) lyr.addEventListener(thyDragEvent.lyrListener); } dynapi.document.addEventListener(thyDragEvent.docListener); dynapi.document.captureMouseEvents(); } thyDragEvent.disableDragEvents=function() { for (var i=0;i<arguments.length;i++) { var lyr=arguments[i]; lyr.removeEventListener(thyDragEvent.lyrListener); } } // used mainly inside ondrop and ondragover thyBase.prototype.getDragSource = function() { return this._dragOrg||this; } thyBase.prototype.setDragEnabled = function(b,boundry,useIcon) { if (!self.thyDragEvent) { return false; } if (boundry) { thyDragEvent.setDragBoundary(this,boundry); } if (b) { thyDragEvent.enableDragEvents(this); } else { thyDragEvent.disableDragEvents(this); } this._useDragIcon = useIcon; return true; } thyBase.prototype.setDragIcon = function(icon) { if(!icon) return; this._dragIcon = icon; icon.setZIndex({topmost:true}); icon.setDisplay(false); dynapi.document.addChild(icon); } thyBase.prototype.setDragOverStealthMode = function(b) { this._dragStealth=(b)? true:false; } // Enable ondrop event thyBase.prototype.DragDrop=function(s,mX,mY) { if (!this.children.length) return false; var ch,chX,sX,sY; for (var i in this.children) { ch=this.children[i]; if(!ch._hasDragEvents) ch.DragDrop(s,mX,mY); else { chX=ch.getPageX(); chY=ch.getPageY(); //sX=s.getPageX(); //sY=s.getPageY(); //if (chX<sX && chX+ch.w>sX+s.w && chY<sY && chY+ch.h>sY+s.h) { if ((mX>=chX && mX<=chX+ch.w) && (mY>=chY && mY<=chY+ch.h)) { if (ch.DragDrop(s,mX,mY)) return true; ch.invokeEvent("drop",null,s); return true; } } } return false; }; // Enable ondragover event thyBase.prototype.DragOver=function(s,mX,mY) { if (!this.children.length) return false; var ch,chX,sX,sY; for (var i in this.children) { ch=this.children[i]; if (!ch._hasDragEvents) ch.DragOver(s,mX,mY); else { chX=ch.getPageX(); chY=ch.getPageY(); if ((mX>=chX && mX<=chX+ch.w) && (mY>=chY && mY<=chY+ch.h)) { if (ch.DragOver(s,mX,mY)) return true; ch._isDragOver=true; ch.invokeEvent("dragover",null,s); return true; } else if (ch._isDragOver) { ch._isDragOver=false; ch.invokeEvent("dragout",null,s); } } } return false; }; |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:15:52
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/_samples/asp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32492/thywidgets/external/fckeditor/_samples/asp Added Files: sample01.asp sample02.asp sample03.asp sample04.asp sampleposteddata.asp Log Message: Synching... --- NEW FILE: sample03.asp --- (This appears to be a binary file; contents omitted.) --- NEW FILE: sample04.asp --- (This appears to be a binary file; contents omitted.) --- NEW FILE: sampleposteddata.asp --- (This appears to be a binary file; contents omitted.) --- NEW FILE: sample02.asp --- (This appears to be a binary file; contents omitted.) --- NEW FILE: sample01.asp --- (This appears to be a binary file; contents omitted.) |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:15:51
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32492 Added Files: LICENSE dynapi.js version.xml Log Message: Synching... --- NEW FILE: version.xml --- <version> <major>3</major> <minor>0</minor> <revision>0</revision> </version> --- NEW FILE: LICENSE --- GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. [This is the first released version of the Lesser GPL. It also counts as the successor of the GNU Library Public License, version 2, hence the version number 2.1.] Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. GNU LESSER GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) "Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. 1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) The modified work must itself be a software library. b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. This option is useful when you wish to copy part of the code of the Library into a program that is not a library. 4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. 5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. 6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. 7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. 10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. 11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. 14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Libraries If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. <one line to give the library's name and a brief idea of what it does.> Copyright (C) <year> <name of author> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. <signature of Ty Coon>, 1 April 1990 Ty Coon, President of Vice That's all there is to it! --- NEW FILE: dynapi.js --- /* DynAPI Distribution DynObject, DynAPI Object, UserAgent, Library, Functions The DynAPI Distribution is distributed under the terms of the GNU LGPL license. */ function DynObject() { this.id = "DynObject"+DynObject._c++; DynObject.all[this.id] = this; }; var p = DynObject.prototype; p.getClassName = function() {return this._className}; p.getClass = function() {return dynapi.frame[this._className]}; p.isClass = function(n) {return DynObject.isClass(this._className,n)}; p.addMethod = function(n,fn) {this[n] = fn}; p.removeMethod = function(n) {this[n] = null}; p.setID = function(id,isInline,noImports) { if (this.id) delete DynObject.all[this.id]; this.id = id; this.isInline=isInline; this._noInlineValues=noImports; DynObject.all[this.id] = this; }; p.toString = function() {return "DynObject.all."+this.id}; DynObject.all = {}; DynObject._c = 0; DynObject.isClass = function(cn,n) { if (cn == n) return true; else { var c = dynapi.frame[cn]; var p = c.prototype._pClassName; if (p) return DynObject.isClass(p,n); else return false; } }; function _UserAgent() { var b = navigator.appName; var v = this.version = navigator.appVersion; var ua = navigator.userAgent.toLowerCase(); this.v = parseInt(v); this.safari = ua.indexOf("safari")>-1; // always check for safari & opera this.opera = ua.indexOf("opera")>-1; // before ns or ie this.ns = !this.opera && !this.safari && (b=="Netscape"); this.ie = !this.opera && (b=="Microsoft Internet Explorer"); this.gecko = ua.indexOf('gecko')>-1; // check for gecko engine if (this.ns) { this.ns4 = (this.v==4); this.ns6 = (this.v>=5); this.b = "Netscape"; }else if (this.ie) { this.ie4 = this.ie5 = this.ie55 = this.ie6 = false; if (v.indexOf('MSIE 4')>0) {this.ie4 = true; this.v = 4;} else if (v.indexOf('MSIE 5')>0) {this.ie5 = true; this.v = 5;} else if (v.indexOf('MSIE 5.5')>0) {this.ie55 = true; this.v = 5.5;} else if (v.indexOf('MSIE 6')>0) {this.ie6 = true; this.v = 6;} this.b = "MSIE"; }else if (this.opera) { this.v=parseInt(ua.substr(ua.indexOf("opera")+6,1)); // set opera version this.opera6=(this.v>=6); this.opera7=(this.v>=7); this.b = "Opera"; }else if (this.safari) { this.ns6 = (this.v>=5); // ns6 compatible correct? this.b = "Safari"; } this.dom = (document.createElement && document.appendChild && document.getElementsByTagName)? true : false; this.def = (this.ie||this.dom); this.win32 = ua.indexOf("win")>-1; this.mac = ua.indexOf("mac")>-1; this.other = (!this.win32 && !this.mac); this.supported = (this.def||this.ns4||this.ns6||this.opera)? true:false; this.broadband=false; this._bws=new Date; // bandwidth timer start // Extended by Raphael Derosso Pereira this.ua = this.safari ? 'safari' : this.opera ? 'opera' : this.ie ? 'ie' : this.gecko ? 'gecko' : this.ns ? 'ns' : 'unknown'; }; function DynAPIObject() { this.DynObject = DynObject; this.DynObject(); this.version = '3.0.0 Beta 1'; this.loaded = false; this.ua = new _UserAgent(); this._loadfn = []; this._unloadfn = []; var f = this.frame = window; var url = f.document.location.href; url = url.substring(0,url.lastIndexOf('/')+1); this.documentPath = url; var o = this; this.library = {}; this.library.setPath = function(p) {o.library.path = p}; f.onload = function() { o.loaded = true; if (!o.ua.supported) return alert('Unsupported Browser. Exiting.'); if (o.library._create) o.library._create(); // calls dynapi._onLoad() after loading necessary files else setTimeout(o+'._onLoad()',1); }; f.onunload = function() { for (var i=0;i<o._unloadfn.length;i++) o._unloadfn[i](); if (o.document) { o.document._destroy(); o.document = null; } }; }; p = DynAPIObject.prototype = new DynObject; p.onLoad = function(f) { if (typeof(f)=="function") { if (!this.loaded) this._loadfn[this._loadfn.length] = f; else f(); } }; p._onLoad = function(f) { for (var i=0;i<this._loadfn.length;i++) { try { this._loadfn[i](); } catch(e) { alert('Error while executing:\n'+this._loadfn[i]); alert(e); } } }; p.onUnload = function(f) { if (typeof(f)=="function") this._unloadfn[this._unloadfn.length] = f; }; p.setPrototype = function(sC,sP) { var c = this.frame[sC]; var p = this.frame[sP]; if ((!c || !p) && this.ua.ns4 && this.library && this.library.elm) { if (!c) c = this.library.elm[sC]; if (!p) p = this.library.elm[sP]; } if (!c || !p) return alert('Prototype Error'); c.prototype = new p(); c.prototype._className = sC; c.prototype._pClassName = sP; c.toString = function() {return '['+sC+']'}; return c.prototype; }; var dynapi = new DynAPIObject(); dynapi.ximages={'__xCnTer__':0}; // eXtensible Images p._imageGetHTML=function(){ t= '<img src="'+this.src+'"' +((this.width)? ' width="'+this.width+'"':'') +((this.height)? ' height="'+this.height+'"':'') +' border="0">'; return t; }; dynapi.functions = { removeFromArray : function(array, index, id) { // This seems to be wrong! // Commented out by Raphael Derosso Pereira //var which=(typeof(index)=="object")?index:array[index]; var which = index; if (id) delete array[which.id]; else for (var i=0; i<array.length; i++) { if (array[i]==which) { if(array.splice) array.splice(i,1); else { for(var x=i; x<array.length-1; x++) array[x]=array[x+1]; array.length -= 1; } break; } } return array; }, removeFromObject : function(object, id) { if(!dynapi.ua.opera) delete object[id]; else { var o={}; for (var i in object) if(id!=i) o[i]=object[i]; object=o; } return object; }, True : function() {return true}, False : function() {return false}, Null : function() {}, Zero : function() {return 0;}, Allow : function() { event.cancelBubble = true; return true; }, Deny : function() { event.cancelBubble = false; return false; }, getImage : function(src,w,h) { img=(w!=null&&h!=null)? new Image(w,h) : new Image(); img.src=src; img.getHTML=dynapi._imageGetHTML; return img; }, getURLArguments : function(o) { // pass a string or frame/layer object var url,l={}; if (typeof(o)=="string") url = o; else if (dynapi.ua.ns4 && o.src) url = o.src; else if (o.document) url = o.document.location.href; else return l; var s = url.substring(url.indexOf('?')+1); var a = s.split('&'); for (var i=0;i<a.length;i++) { var b = a[i].split('='); l[b[0]] = unescape(b[1]); } return l; }, getAnchorLocation : function(a,lyr){ var o,x=0,y=0; if(lyr && !lyr.doc) lyr=null; lyr=(lyr)? lyr:{doc:document,elm:document}; if(typeof(a)=='string') { if(lyr.doc.all) a=lyr.doc.all[a]; else if(lyr.doc.getElementById) a=lyr.doc.getElementById(a); else if(lyr.doc.layers) a=lyr.doc.anchors[a]; } if(a) o=a; else return; if(lyr.doc.layers) { y+=o.y; x+=o.x;} else if(lyr.doc.getElementById || lyr.doc.all){ while (o.offsetParent && lyr.elm!=o){ x+= o.offsetLeft;y+= o.offsetTop; o = o.offsetParent; } } return {x:x,y:y,anchor:a}; } }; dynapi.documentArgs = dynapi.functions.getURLArguments(dynapi.frame); dynapi.debug = {}; dynapi._debugBuffer = ''; dPrint=function(s){var d=dynapi.debug; d.print(s)}; dynapi.debug.print = function(s) { //@IF:DEBUG[ if(s==null) s=''; dynapi._debugBuffer += s + '\n'; //]:DEBUG }; // The DynAPI library system is optional, this can be removed if you want to include other scripts manually function DynAPILibrary() { this.DynObject = DynObject; this.DynObject(); // list of js files: this.scripts['../src/api/dynlayer_ie.js'] = {dep, objects, pkg, fn}; this.scripts = {}; // list of package names: this.packages['dynapi.api'] = dynapi.api = {_objects,_path} this.packages = {}; // list of object names: this.objects['DynLayer'] = this.scripts['../src/api/dynlayer_ie.js'] this.objects = {}; this._c = 0; this.loadList = []; this.loadIndex = -1; this.path = null; this.busy = true; }; p = dynapi.setPrototype('DynAPILibrary','DynObject'); // can return a path specific to a package, eg. dynapi.library.getPath('dynapi.api') returns '/src/dynapi/api/' p.getPath = function(pkg) { if (!pkg) pkg = 'dynapi'; if (this.packages[pkg]) return this.packages[pkg]._path; return null; }; // set dynapi path p.setPath = function(p,pkgFile) { this.path = p; // to-do: rearrange so add()'s can be done before setPath // full paths will then be determined when queued // need an extra argument on addPackage to specify whether the path is relative to this.path or not // OR: add functionality so that these package definitions can be loaded/included on the fly // load pkgFile or 'ext/packages.js' file var s='<script type="text/javascript" language="JavaScript" src="' +((pkgFile)? pkgFile:p+'ext/packages.js')+'"><\/script>'; document.write(s); }; // adds package(s) to the library p.addPackage = function(pkg, path) { var ps; if (pkg.indexOf('.')) ps = pkg.split('.'); else ps = [pkg]; var p = dynapi.frame; for (var i=0;i<ps.length;i++) { // returns the package object (eg. dynapi.api), or creates it if non-existant if (!p[ps[i]]) p[ps[i]] = {}; p = p[ps[i]]; } this.packages[pkg] = p; p._objects = []; p._path = path; return p; }; // add object(s) to the library p.add = function(name, src, dep, relSource) { var objects = typeof(name)=="string"? [name] : name; dep = (!dep)? [] : typeof(dep)=="string"? [dep] : dep; var s,p,pkg; if (objects[0].indexOf('.')) { pkg = objects[0].substring(0,objects[0].lastIndexOf('.')); if (pkg && this.packages[pkg]) { p = this.packages[pkg]; if (relSource!=false) src = p._path + src; } } if (!this.scripts[src]) s = this.scripts[src] = {}; else s = this.scripts[src]; s.objects = []; s.dep = dep; s.rdep = []; s.src = src; s.pkg = pkg; s.loaded = false; s.fn = null; var n; for (var i=0;i<objects.length;i++) { n = objects[i]; if (pkg) n = n.substring(n.lastIndexOf('.')+1); this.objects[n] = s; s.objects[s.objects.length] = n; if (p) p._objects[p._objects.length] = n; } return s; }; // adds a dependency, whenever object "n" is loaded it will load object "d" beforehand p.addBefore = function(n, d) { var s = this.objects[n]; if (s && this.objects[d]) s.dep[s.dep.length] = d; }; // adds a reverse dependency, whenever object "n" is loaded it will load object "r" afterword p.addAfter = function(n, r) { var s = this.objects[n]; if (s && this.objects[r]) s.rdep[s.rdep.length] = r; }; // returns a list of js source filenames to load p._queue = function(n, list, force) { var na=[], names=[],o; if (list==null) list = []; if (typeof(n)=="string") na = [n]; else na = n; for (var i=0;i<na.length;i++) { o = na[i]; if (typeof(o)=="string") { if (this.packages[o]) for (var j in this.packages[o]._objects) names[names.length] = this.packages[o]._objects[j]; else names[names.length] = o; } else if (typeof(o)=="object" && o.length) { list = this._queue(o, list, force); } } var s; for (var j=0;j<names.length;j++) { s = this._queueObject(names[j], force); if (s) { if (s.dep) for (var i=0;i<s.dep.length;i++) list = this._queue(s.dep[i], list, force); list[list.length] = s.src; // also include reverse deps if (s.rdep.length) list = this._queue(s.rdep, list, force); } } return list; }; // determines whether to queue the script this object is in p._queueObject = function(n, f) { if (n.indexOf('.')) { var pkg = n.substring(0,n.lastIndexOf('.')); if (this.packages[pkg]) n = n.substring(n.lastIndexOf('.')+1); } var s = this.objects[n]; if (s) { if (!s.queued) { if (f!=true && s.loaded) dynapi.debug.print('Library Warning: '+n+' is already loaded'); else { s.queued = true; s.loaded = false; return s; } } } else dynapi.debug.print('Library Error: no library map for '+n); return false; }; // writes the <script> tag for the object p.include = function() { var a = arguments; if (a[0]==true) a=a[1]; // arguments used ONLY by packages.js // buffer includes until packages(.js) are loaded if (!this._pakLoaded) { if(!this._buffer) this._buffer=[]; this._buffer[this._buffer.length]=a; return; } if (dynapi.loaded) this.load(a); else { var list = this._queue(a); var src; for (var i=0;i<list.length;i++) { src = list[i]; this.scripts[src].loaded = true; dynapi.frame.document.write('<script type="text/javascript" language="JavaScript" src="'+src+'"><\/script>'); } } }; p.load = p.reload = p.loadScript = p.reloadScript = function(n) { dynapi.debug.print('Warning: dynapi.library load extensions not included'); }; dynapi.library = new DynAPILibrary(); // deprecated var DynAPI = dynapi; |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:15:51
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/_samples In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32492/thywidgets/external/fckeditor/_samples Added Files: default.html sample.css sampleslist.html Log Message: Synching... --- NEW FILE: default.html --- <!-- * 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: default.html * Samples Frameset page. * * Version: 2.0 RC3 * Modified: 2004-05-31 23:07:46 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <html> <head> <title>FCKeditor - Samples</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> </head> <frameset rows="60,*"> <frame src="sampleslist.html" noresize scrolling="no"> <frame name="Sample" src="html/sample01.html" noresize> </frameset> </html> --- NEW FILE: sample.css --- /* * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: * http://www.opensource.org/licenses/lgpl-license.php * * For further information visit: * http://www.fckeditor.net/ * * File Name: sample.css * Styles used in the samples pages. * * Version: 2.0 RC3 * Modified: 2004-05-31 23:07:47 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) */ body, td, input, select, textarea { font-size: 12px; font-family: Arial, Verdana, Sans-Serif; } h1 { font-weight: bold; font-size: 180%; margin-bottom: 10px; } form { margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px; } --- NEW FILE: sampleslist.html --- <!-- * 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: sampleslist.html * Page used to select the sample to view. * * Version: 2.0 RC3 * Modified: 2005-03-02 10:19:36 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>FCKeditor - Sample Selection</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="sample.css" rel="stylesheet" type="text/css" /> <script language="javascript"> <!-- if ( window.top == window ) document.location = 'default.html' ; function OpenSample( sample ) { if ( sample.length > 0 ) window.open( sample, 'Sample' ) ; } //--> </script> </head> <body bottommargin="0" topmargin="0"> <table height="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td> Please select the sample you want to view: <br> <select onchange="OpenSample(this.value);"> <option value="html/sample01.html" selected>Javascript : Sample 01 : Editor with all features</option> <option value="html/sample02.html">Javascript : Sample 02 : Replacement of a TEXTAREA</option> <option value="html/sample03.html">Javascript : Sample 03 : Multi-language support</option> <option value="html/sample04.html">Javascript : Sample 04 : Toolbar selection</option> <option value="html/sample05.html">Javascript : Sample 05 : Skins support</option> <option value="html/sample06.html">Javascript : Sample 06 : Plugins support</option> <option value="html/sample07.html">Javascript : Sample 07 : Full Page editing</option> <option value="html/sample08.html">Javascript : Sample 08 : Editor API usage</option> <option value=""> </option> <option value="cfm/sample01.cfm">ColdFusion : Sample 01 : Editor with all features</option> <option value="cfm/sample02_mx.cfm">ColdFusion : Sample 02 : Advanced version for ColdFusion MX</option> <option value=""> </option> <option value="asp/sample01.asp">ASP : Sample 01 : Editor with all features</option> <option value="asp/sample02.asp">ASP : Sample 02 : Multi-language support</option> <option value="asp/sample03.asp">ASP : Sample 03 : Toolbar selection</option> <option value="asp/sample04.asp">ASP : Sample 04 : Skins support</option> <option value=""> </option> <option value="perl/sample01.php">Perl : Sample 01 : Editor with all features</option> <option value="perl/sample02.php">Perl : Sample 02 : Multi-language support</option> <option value="perl/sample03.php">Perl : Sample 03 : Toolbar selection</option> <option value="perl/sample04.php">Perl : Sample 04 : Skins support</option> <option value=""> </option> <option value="php/sample01.php">PHP : Sample 01 : Editor with all features</option> <option value="php/sample02.php">PHP : Sample 02 : Multi-language support</option> <option value="php/sample03.php">PHP : Sample 03 : Toolbar selection</option> <option value="php/sample04.php">PHP : Sample 04 : Skins support</option> </select> </td> </tr> </table> </body> </html> |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:15:51
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/_samples/perl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32492/thywidgets/external/fckeditor/_samples/perl Added Files: sample01.cgi sample02.cgi sample03.cgi sample04.cgi sampleposteddata.cgi Log Message: Synching... --- NEW FILE: sample03.cgi --- #!/usr/bin/env perl ##### # 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: sample03.cgi # Sample page. # # Version: 2.0 RC3 # Modified: 2005-02-28 17:00:59 # # File Authors: # Takashi Yamaguchi (ja...@om...) ##### require '../../fckeditor.pl'; if($ENV{'REQUEST_METHOD'} eq "POST") { read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'}); } else { $buffer = $ENV{'QUERY_STRING'}; } @pairs = split(/&/,$buffer); foreach $pair (@pairs) { ($name,$value) = split(/=/,$pair); $value =~ tr/+/ /; $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg; $value =~ s/\t//g; $value =~ s/\r\n/\n/g; $FORM{$name} .= "\0" if(defined($FORM{$name})); $FORM{$name} .= $value; } print "Content-type: text/html\n\n"; print <<"_HTML_TAG_"; <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="../sample.css" rel="stylesheet" type="text/css" /> <script type="text/javascript"> function FCKeditor_OnComplete( editorInstance ) { var oCombo = document.getElementById( 'cmbToolbars' ) ; oCombo.value = editorInstance.ToolbarSet.Name ; oCombo.style.visibility = '' ; } function ChangeToolbar( toolbarName ) { window.location.href = window.location.pathname + "?Toolbar=" + toolbarName ; } </script> </head> <body> <h1>FCKeditor - Perl - Sample 3</h1> This sample shows how to change the editor toolbar. <hr> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td> Select the toolbar to load: </td> <td> <select id="cmbToolbars" onchange="ChangeToolbar(this.value);" style="VISIBILITY: hidden"> <option value="Default" selected>Default</option> <option value="Basic">Basic</option> </select> </td> </tr> </table> <br> <form action="sampleposteddata.cgi" method="post" target="_blank"> _HTML_TAG_ #// Automatically calculates the editor base path based on the _samples directory. #// This is usefull only for these samples. A real application should use something like this: #// $oFCKeditor->BasePath = '/FCKeditor/' ; // '/FCKeditor/' is the default value. $sBasePath = $ENV{'PATH_INFO'}; $sBasePath = substr($sBasePath, 0, index( $sBasePath, "_samples" )); &FCKeditor('FCKeditor1') ; $BasePath = $sBasePath ; if($FORM{'Toolbar'} ne "") { $ToolbarSet = $FORM{'Toolbar'}; } $Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ; &Create(); print <<"_HTML_TAG_"; <br> <input type="submit" value="Submit"> </form> </body> </html> _HTML_TAG_ --- NEW FILE: sample01.cgi --- #!/usr/bin/env perl ##### # 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: sample01.cgi # Sample page. # # Version: 2.0 RC3 # Modified: 2005-02-28 17:01:44 # # File Authors: # Takashi Yamaguchi (ja...@om...) ##### require '../../fckeditor.pl'; print "Content-type: text/html\n\n"; print <<"_HTML_TAG_"; <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="../sample.css" rel="stylesheet" type="text/css" /> </head> <body> <h1>FCKeditor - Perl - Sample 1</h1> This sample displays a normal HTML form with an FCKeditor with full features enabled. <hr> <form action="sampleposteddata.cgi" method="post" target="_blank"> _HTML_TAG_ #// Automatically calculates the editor base path based on the _samples directory. #// This is usefull only for these samples. A real application should use something like this: #// $oFCKeditor->BasePath = '/FCKeditor/' ; // '/FCKeditor/' is the default value. $sBasePath = $ENV{'PATH_INFO'}; $sBasePath = substr($sBasePath,0,index($sBasePath,"_samples")); &FCKeditor('FCKeditor1'); $BasePath = $sBasePath; $Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.'; &Create(); print <<"_HTML_TAG_"; <br> <input type="submit" value="Submit"> </form> </body> </html> _HTML_TAG_ --- NEW FILE: sample02.cgi --- #!/usr/bin/env perl ##### # 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: sample02.cgi # Sample page. # # Version: 2.0 RC3 # Modified: 2005-02-28 17:01:14 # # File Authors: # Takashi Yamaguchi (ja...@om...) ##### require '../../fckeditor.pl'; if($ENV{'REQUEST_METHOD'} eq "POST") { read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'}); } else { $buffer = $ENV{'QUERY_STRING'}; } @pairs = split(/&/,$buffer); foreach $pair (@pairs) { ($name,$value) = split(/=/,$pair); $value =~ tr/+/ /; $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg; $value =~ s/\t//g; $value =~ s/\r\n/\n/g; $FORM{$name} .= "\0" if(defined($FORM{$name})); $FORM{$name} .= $value; } print "Content-type: text/html\n\n"; print <<"_HTML_TAG_"; <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="../sample.css" rel="stylesheet" type="text/css" /> <script type="text/javascript"> function FCKeditor_OnComplete( editorInstance ) { var oCombo = document.getElementById( 'cmbLanguages' ) ; for ( code in editorInstance.Language.AvailableLanguages ) { AddComboOption( oCombo, editorInstance.Language.AvailableLanguages[code] + ' (' + code + ')', code ) ; } oCombo.value = editorInstance.Language.ActiveLanguage.Code ; } function AddComboOption(combo, optionText, optionValue) { var oOption = document.createElement("OPTION") ; combo.options.add(oOption) ; oOption.innerHTML = optionText ; oOption.value = optionValue ; return oOption ; } function ChangeLanguage( languageCode ) { window.location.href = window.location.pathname + "?Lang=" + languageCode ; } </script> </head> <body> <h1>FCKeditor - Perl - Sample 2</h1> This sample shows the editor in all its available languages. <hr> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td> Select a language: </td> <td> <select id="cmbLanguages" onchange="ChangeLanguage(this.value);"> </select> </td> </tr> </table> <br> <form action="sampleposteddata.cgi" method="post" target="_blank"> _HTML_TAG_ #// Automatically calculates the editor base path based on the _samples directory. #// This is usefull only for these samples. A real application should use something like this: #// $oFCKeditor->BasePath = '/FCKeditor/' ; // '/FCKeditor/' is the default value. $sBasePath = $ENV{'PATH_INFO'}; $sBasePath = substr( $sBasePath, 0, index($sBasePath,"_samples")); &FCKeditor('FCKeditor1'); $BasePath = $sBasePath; if($FORM{'Lang'} ne "") { $Config{'AutoDetectLanguage'} = "false"; $Config{'DefaultLanguage'} = $FORM{'Lang'}; } else { $Config{'AutoDetectLanguage'} = "true"; $Config{'DefaultLanguage'} = 'en' ; } $Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ; &Create(); print <<"_HTML_TAG_"; <br> <input type="submit" value="Submit"> </form> </body> </html> _HTML_TAG_ --- NEW FILE: sampleposteddata.cgi --- #!/usr/bin/env perl ##### # FCKeditor - The text editor for internet # Copyright (C) 2003-2004 Frederico Caldeira Knabben # # Licensed under the terms of the GNU Lesser General Public License: # http://www.opensource.org/licenses/lgpl-license.php # # For further information visit: # http://www.fckeditor.net/ # # File Name: sampleposteddata.cgi # This page lists the data posted by a form. # # Version: 2.0 RC3 # Modified: 2005-02-28 17:01:31 # # File Authors: # Takashi Yamaguchi (ja...@om...) ##### require '../../fckeditor.pl'; if($ENV{'REQUEST_METHOD'} eq "POST") { read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'}); } else { $buffer = $ENV{'QUERY_STRING'}; } @pairs = split(/&/,$buffer); foreach $pair (@pairs) { ($name,$value) = split(/=/,$pair); $value =~ tr/+/ /; $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg; $value =~ s/\t//g; $value =~ s/\r\n/\n/g; $FORM{$name} .= "\0" if(defined($FORM{$name})); $FORM{$name} .= $value; } print "Content-type: text/html\n\n"; print <<"_HTML_TAG_"; <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>FCKeditor - Samples - Posted Data</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="../sample.css" rel="stylesheet" type="text/css" /> </head> <body> <h1>FCKeditor - Samples - Posted Data</h1> This page lists all data posted by the form. <hr> <table width="100%" border="1" cellspacing="0" bordercolor="#999999"> <tr style="FONT-WEIGHT: bold; COLOR: #dddddd; BACKGROUND-COLOR: #999999"> <td nowrap>Field Name </td> <td>Value</td> </tr> _HTML_TAG_ foreach $key (keys %FORM) { $postedValue = &specialchar_cnv($FORM{$key}); print <<"_HTML_TAG_"; <tr> <td valign="top" nowrap><b>$key</b></td> <td width="100%">$postedValue</td> </tr> _HTML_TAG_ } print <<"_HTML_TAG_"; </table> </body> </html> _HTML_TAG_ --- NEW FILE: sample04.cgi --- #!/usr/bin/env perl ##### # 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: sample04.cgi # Sample page. # # Version: 2.0 RC3 # Modified: 2005-02-28 17:01:08 # # File Authors: # Takashi Yamaguchi (ja...@om...) ##### require '../../fckeditor.pl'; if($ENV{'REQUEST_METHOD'} eq "POST") { read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'}); } else { $buffer = $ENV{'QUERY_STRING'}; } @pairs = split(/&/,$buffer); foreach $pair (@pairs) { ($name,$value) = split(/=/,$pair); $value =~ tr/+/ /; $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg; $value =~ s/\t//g; $value =~ s/\r\n/\n/g; $FORM{$name} .= "\0" if(defined($FORM{$name})); $FORM{$name} .= $value; } #!!Caution javascript \ Quart print "Content-type: text/html\n\n"; print <<"_HTML_TAG_"; <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="../sample.css" rel="stylesheet" type="text/css" /> <script type="text/javascript"> function FCKeditor_OnComplete( editorInstance ) { var oCombo = document.getElementById( 'cmbSkins' ) ; // Get the active skin. var sSkin = editorInstance.Config['SkinPath'] ; sSkin = sSkin.match(/[^\\/]+(?=\\/\$)/g) ; oCombo.value = sSkin ; oCombo.style.visibility = '' ; } function ChangeSkin( skinName ) { window.location.href = window.location.pathname + "?Skin=" + skinName ; } </script> </head> <body> <h1>FCKeditor - Perl - Sample 4</h1> This sample shows how to change the editor skin. <hr> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td> Select the skin to load: </td> <td> <select id="cmbSkins" onchange="ChangeSkin(this.value);" style="VISIBILITY: hidden"> <option value="default" selected>Default</option> <option value="office2003">Office 2003</option> <option value="silver">Silver</option> </select> </td> </tr> </table> <br> <form action="sampleposteddata.cgi" method="post" target="_blank"> _HTML_TAG_ #// Automatically calculates the editor base path based on the _samples directory. #// This is usefull only for these samples. A real application should use something like this: #// $oFCKeditor->BasePath = '/FCKeditor/' ; // '/FCKeditor/' is the default value. $sBasePath = $ENV{'PATH_INFO'}; $sBasePath = substr( $sBasePath, 0, index( $sBasePath, "_samples" ) ) ; &FCKeditor('FCKeditor1'); $BasePath = $sBasePath; if($FORM{'Skin'} ne "") { $Config{'SkinPath'} = $sBasePath . 'editor/skins/' . $FORM{'Skin'} . '/' ; } $Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ; &Create() ; print <<"_HTML_TAG_"; <br> <input type="submit" value="Submit"> </form> </body> </html> _HTML_TAG_ |
Update of /cvsroot/thyapi/thyapi/ext/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32492/ext/images Added Files: debug_icon.gif debug_imgclear.gif debug_imgclear_on.gif debug_imgeval.gif debug_imgeval_on.gif debug_imghelp.gif debug_imghelp_down.gif debug_imghelp_on.gif debug_imginspect.gif debug_imginspect_on.gif debug_imgnext.gif debug_imgnext_on.gif debug_imgnormal.gif debug_imgnormal_down.gif debug_imgnormal_on.gif debug_imgprev.gif debug_imgprev_on.gif debug_imgreload.gif debug_imgreload_on.gif debug_imgwatch.gif debug_imgwatch_down.gif debug_imgwatch_on.gif Log Message: Synching... --- NEW FILE: debug_imgwatch.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_imghelp.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_imgnext_on.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_imgprev_on.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_imgnormal.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_imgclear.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_imgwatch_on.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_imghelp_on.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_imgreload.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_imgprev.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_imgnext.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_imghelp_down.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_imginspect.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_imgclear_on.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_imginspect_on.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_imgeval_on.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_imgeval.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_imgreload_on.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_icon.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_imgnormal_down.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_imgwatch_down.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: debug_imgnormal_on.gif --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/thyapi/thyapi/thythemes/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32492/thythemes/thyapi Added Files: 00thypanel.css 05thytabsmanager.css 10thylabelpanel.css 110thyeditbox.css 111thytextedit.css 112thycheckbox.css 20thyborderpanel.css 30thyrichtextedit.css 40thybutton.css 411thypopupcalendar.css 41thywindow.css 42thydialogwindow.css 50thygridcell.css 55thygridrow.css 60thygrid.css 70thylistbox.css 80thydropdownbox.css 95thyabout.css calendar-idots.css Log Message: Synching... --- NEW FILE: 10thylabelpanel.css --- .thyLabelPanel { } .thyLabelPanel_label { position: relative; float: left; white-space: nowrap; } .thyLabelPanel_contents { position: relative; float: left; } .thyLabelPanel_disabled { background-color: #ebebeb ! important; } --- NEW FILE: 60thygrid.css --- .thyGrid { } .thyGrid_label { float: none; } .thyGrid_contents { float: none; width: 100%; background-color: #EEEEEE; overflow: auto; } .thyGrid_row { } .thyGrid_cell { } .thyGrid_cell_header { } .thyGrid_col-1_header { border-right-width: 1px; border-right-style: solid; border-right-color: black; } .thyGrid_col0 { } --- NEW FILE: 05thytabsmanager.css --- .thyTabsManager { position: absolute; } .thyTabsManager_contents { border: 1px solid black; padding-top: 8px; margin-top: 0px; text-align: left; background-color: #D3DCE3; overflow: auto; } .thyTabsManager_tabsPanel { } .thyTabsManager_tabsPanel_ie { } .thyTabsManager_control { position: relative; float: left; padding: 5px; border: 1px solid black; } .thyTabsManager_control_active { border-bottom: 1px solid #D3DCE3; background-color: #D3DCE3; } .thyTabsManager_control_inactive { border-bottom: 1px solid black; background-color: #c3cCd3;; } --- NEW FILE: 411thypopupcalendar.css --- .thyPopupCalendar { } .thyPopupCalendar_contents { } .thyPopupCalendar_button { position: absolute; top: -1px; right: -29px; height: 16px; min-width: 23px; width: 23px; background-image: url('{css_dir}/images/cal.png'); background-repeat: no-repeat; background-position: center; margin: 0px; padding: 0px; } --- NEW FILE: 50thygridcell.css --- .thyGridCell { background-color: #ffffff; } .thyGridCell_onmouseover { background-color: #eaeaea; } .thyGridCell_selected { background-color: #e0e0e0; } .thyGridCell_selected_onmouseover { background-color: #f5f5f5; } .thyGridCell_header { background-image: url('{css_dir}/images/tghoff.png'); } .thyGridCell_header_onmouseover { background-image: url('{css_dir}/images/tghon.png'); } .thyGridCell_header_selected { background-image: url('{css_dir}/images/tghon.png'); } .thyGridCell_header_selected_onmouseover { background-image: url('{css_dir}/images/tghoff.png'); } --- NEW FILE: 110thyeditbox.css --- .thyEditBox_label { } .thyEditBox_contents { text-align: left; background-color: white; text-align: right; border-width: 1px; border-style: solid; border-color: #999999; } .thyEditBox_input { /* padding-left: 5px; */ } --- NEW FILE: 70thylistbox.css --- .thyListBox { } .thyListBox_label { } .thyListBox_contents { border-width: 1px; border-style: solid; border-color: #999999; background-color: white; } .thyListBox_row { } .thyListBox_row-1 { display: none; } .thyListBox_row-1_ie { } .thyListBox_cell { border: 0px; } .thyListBox_col-1_header { display: none; } .thyListBox_col0 { display: none; } .thyListBox_col1 { width: 98%; } .thyListBox_cell_header { display: none; } .thyListBox_col_header { } .thyListBox_col { } --- NEW FILE: 112thycheckbox.css --- .thyCheckBox { } .thyCheckBox_label { float: none; position: absolute; left: 20px; top: 0px; } .thyCheckBox_contents { float: none; position: absolute; top: 0px; left: 0px; cursor: pointer; width: 14px; height: 14px; border-width: 1px; border-style: solid; border-color: #999999; background-image: url('{css_dir}/images/tcoff.png'); background-repeat: no-repeat; background-position: center; } .thyCheckBox_checked { } .thyCheckBox_contents_checked { background-image: url('{css_dir}/images/tcon.png'); border-color: #babde8; } --- NEW FILE: 00thypanel.css --- .thyPanel_disabled { background-color: #ebebeb ! important; } .thyPanel { font-family: sans-serif; font-size: 8pt; } --- NEW FILE: calendar-idots.css --- /* The main calendar widget. DIV containing a table. */ div.calendar { position: relative; } .calendar, .calendar table { border: 1px solid #556; font-size: 11px; color: #000; cursor: default; background: #e8f0f0; /*#D3DCE3;*/ font-family: tahoma,verdana,sans-serif; } /* Header part -- contains navigation buttons and day names. */ .calendar .button { /* "<<", "<", ">", ">>" buttons have this class */ text-align: center; /* They are the navigation buttons */ padding: 2px; /* Make the buttons seem like they're pressing */ } .calendar .nav { background: #778 url(menuarrow.gif) no-repeat 100% 100%; } .calendar thead .title { /* This holds the current "month, year" */ font-weight: bold; /* Pressing it will take you to the current date */ text-align: center; background: #fff; color: #000; padding: 2px; } .calendar thead .headrow { /* Row <TR> containing navigation buttons */ background: #778; /* background: #D3DCE3; */ color: #fff; } .calendar thead .daynames { /* Row <TR> containing the day names */ /*background: #bdf;*/ background: #afcce3; } .calendar thead .name { /* Cells <TD> containing the day names */ border-bottom: 1px solid #556; padding: 2px; text-align: center; color: #000; } .calendar thead .weekend { /* How a weekend day name shows in header */ color: #a66; } .calendar thead .hilite { /* How do the buttons in header appear when hover */ /* background-color: #aaf;*/ background-color: #D3DCE3; color: #000; border: 1px solid #04f; padding: 1px; } .calendar thead .active { /* Active (pressed) buttons in header */ background-color: #77c; padding: 2px 0px 0px 2px; } /* The body part -- contains all the days in month. */ .calendar tbody .day { /* Cells <TD> containing month days dates */ width: 2em; color: #456; text-align: right; padding: 2px 4px 2px 2px; } .calendar tbody .day.othermonth { font-size: 80%; color: #bbb; } .calendar tbody .day.othermonth.oweekend { color: #fbb; } .calendar table .wn { padding: 2px 3px 2px 2px; border-right: 1px solid #000; background: #afcce3; } .calendar tbody .rowhilite td { background: #EfFfFf; } .calendar tbody .rowhilite td.wn { background: #E8F0F0; } .calendar tbody td.hilite { /* Hovered cells <TD> */ background: #def; padding: 1px 3px 1px 1px; border: 1px solid #bbb; } .calendar tbody td.active { /* Active (pressed) cells <TD> */ background: #cde; padding: 2px 2px 0px 2px; } .calendar tbody td.selected { /* Cell showing today date */ font-weight: bold; border: 1px solid #000; padding: 1px 3px 1px 1px; background: #fff; color: #000; } .calendar tbody td.weekend { /* Cells showing weekend days */ color: #a66; } .calendar tbody td.today { /* Cell showing selected date */ font-weight: bold; color: #00f; } .calendar tbody .disabled { color: #999; } .calendar tbody .emptycell { /* Empty cells (the best is to hide them) */ visibility: hidden; } .calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */ display: none; } /* The footer part -- status bar and "Close" button */ .calendar tfoot .footrow { /* The <TR> in footer (only one right now) */ text-align: center; background: #556; color: #fff; } .calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */ background: #fff; color: #445; border-top: 1px solid #556; padding: 1px; } .calendar tfoot .hilite { /* Hover style for buttons in footer */ background: #aaf; border: 1px solid #04f; color: #000; padding: 1px; } .calendar tfoot .active { /* Active (pressed) style for buttons in footer */ background: #77c; padding: 2px 0px 0px 2px; } /* Combo boxes (menus that display months/years for direct selection) */ .calendar .combo { position: absolute; display: none; top: 0px; left: 0px; width: 4em; cursor: default; border: 1px solid #655; background: #def; color: #000; font-size: 90%; } .calendar .combo .label, .calendar .combo .label-IEfix { text-align: center; padding: 1px; } .calendar .combo .label-IEfix { width: 4em; } .calendar .combo .hilite { background: #acf; } .calendar .combo .active { border-top: 1px solid #46a; border-bottom: 1px solid #46a; background: #eef; font-weight: bold; } .calendar td.time { border-top: 1px solid #000; padding: 1px 0px; text-align: center; background-color: #f4f0e8; } .calendar td.time .hour, .calendar td.time .minute, .calendar td.time .ampm { padding: 0px 3px 0px 4px; border: 1px solid #889; font-weight: bold; background-color: #fff; } .calendar td.time .ampm { text-align: center; } .calendar td.time .colon { padding: 0px 2px 0px 3px; font-weight: bold; } .calendar td.time span.hilite { border-color: #000; background-color: #667; color: #fff; } .calendar td.time span.active { border-color: #f00; background-color: #000; color: #0f0; } --- NEW FILE: 41thywindow.css --- .thyWindow { position: absolute; } .thyWindow_window { } .thyWindow_contents { position: relative; top: 0px; left: 0px; overflow: auto; } .thyWindow_ondrag { position: absolute; text-align: left; font-style: italic; border: 1px solid black; background-color: #c0c0c0; -moz-opacity: 0.50; -khtml-opacity: 0.50; opacity: 0.50; filter:alpha(opacity=50); } .thyWindow_borders { /* Inherited from thyBorderPanel */ } .thyWindow_hBorders { /* Inherited from thyBorderPanel */ } .thyWindow_vBorders { /* Inherited from thyBorderPanel */ } .thyWindow_topBorder { /* Inherited from thyBorderPanel */ } .thyWindow_leftBorder { /* Inherited from thyBorderPanel */ } .thyWindow_rightBorder { /* Inherited from thyBorderPanel */ } .thyWindow_bottomBorder { /* Inherited from thyBorderPanel */ } .thyWindow_title { color: #555; font-style: none; font-weight: bold; font-size: 10pt; text-align: left; height: 18px; padding-left: 10px; /* border-color: #0000ff; border-style: solid; border-width: 1px;*/ background-image: url('{css_dir}/images/twt.png'); background-repeat: repeat-x; cursor: pointer; cursor: hand; } .thyWindow_btnClose { width: 16px; height: 16px; right: 5px; top: 1px; position: absolute; background-image: url('{css_dir}/images/xoff.png'); background-repeat: no-repeat; background-position: center; cursor: pointer; cursor: hand; } .thyWindow_btnClose_onmouseover { background-image: url('{css_dir}/images/xon.png'); } .thyWindow_btnStick { width: 16px; height: 16px; right: 21px; top: 1px; position: absolute; background-image: url('{css_dir}/images/soff.png'); background-repeat: no-repeat; background-position: center; cursor: pointer; cursor: hand; } .thyWindow_btnStick_sticked { background-image: url('{css_dir}/images/son.png'); } .thyWindow_btnStick_onmouseover { } --- NEW FILE: 30thyrichtextedit.css --- .thyRichTextEdit { } --- NEW FILE: 20thyborderpanel.css --- .thyBorderPanel { position: absolute; background-color: #fafafa; } .thyBorderPanel_contentsHolder { } .thyBorderPanel_contents { /* background-color: #eaeaea; */ } .thyBorderPanel_borders { background-color: #9392c1; } .thyBorderPanel_hBorders { height: 2px; } .thyBorderPanel_vBorders { width: 2px; } .thyBorderPanel_topBorder { } .thyBorderPanel_leftBorder { } .thyBorderPanel_rightBorder { } .thyBorderPanel_bottomBorder { } --- NEW FILE: 40thybutton.css --- .thyButton, .thyButton_onmouseover, .thyButton_pushed, .thyButton_pushed_onmouseover { min-width: 35px; min-height: 13px; padding-left: 7px; padding-right: 4px; padding-top: 2px; padding-bottom: 2px; text-align: center; margin-right: 8px; } .thyButton { /* color: #004e7d;*/ border: 1px outset #0000ff; background-image: url('{css_dir}/images/tboff.png'); } .thyButton_onmouseover { background-image: url('{css_dir}/images/tbon.png'); } .thyButton_pushed { border: 1px inset #dcdad5; } .thyButton_pushed_onmouseover { } --- NEW FILE: 80thydropdownbox.css --- .thyDropDownBox { overflow: visible; } .thyDropDownBox_label { } .thyDropDownBox_contents { width: auto; height: auto; } .thyDropDownBox_edit, .thyDropDownBox_edit_contents { width: 100%; /*overflow: visible;*/ } .thyDropDownBox_button { position: absolute; top: 1px; right: -21px; margin: 0px; min-width: 14px; width: 14px; height: 14px; padding: 0px; background-image: url('{css_dir}/images/tdb.png'); background-repeat: no-repeat; background-position: center; } .thyDropDownBox_listBox, .thyDropDownBox_listBox_onmouseover { position: absolute; padding: 0px 5px 0px 5px; background-color: #f0f0ff; border-style: outset; border-color: #999999; border-width: 2px; /* left: 0px;*/ max-height: 200px; /* min-width: 100%;*/ overflow: auto; } .thyDropDownBox_listBox_ie, .thyDropDownBox_listBox_contents_ie { max-width: 300px; width: 300px; } .thyDropDownBox_listBox_label { display: none; } .thyDropDownBox_listBox_contents { border: 0px; background-color: #f0f0ff; overflow: visible; } .thyDropDownBox_listBox_cell_selected { background-image: url('{css_dir}/images/tcon.png'); background-repeat: no-repeat; background-position: left; } .thyDropDownBox_listBox_cell, .thyDropDownBox_listBox_cell_selected_onmouseover { padding-left: 15px; width: 100%; cursor: pointer; cursor: hand; background-color: #f0f0ff; } .thyDropDownBox_listBox_cell_onmouseover, .thyDropDownBox_listBox_cell_selected { background-color: #96aaff; } --- NEW FILE: 95thyabout.css --- .thyAbout_contents { width: 400px; height: 205px; } .thyAbout_ondrag { width: 400px; height: 205px; } .thyAbout_aboutImage { position: absolute; left: 10px; top: 10px; width: 140px; height: 110px; } .thyAbout_aboutText { position: absolute; left: 160px; top: 10px; width: 210px; height: 185px; text-align: center; } --- NEW FILE: 111thytextedit.css --- .thyTextEdit_label { } .thyTextEdit_contents { background-color: white; text-align: right; border: 1px solid #999999; } --- NEW FILE: 42thydialogwindow.css --- .thyDialogWindow { position: absolute; } .thyDialogWindow_ie { width: auto; } .thyDialogWindow_window { } .thyDialogWindow_contents { } .thyDialogWindow_ondrag { /* Inherited from thyWindow */ } .thyDialogWindow_borders { /* Inherited from thyWindow */ } .thyDialogWindow_hBorders { /* Inherited from thyWindow */ } .thyDialogWindow_vBorders { /* Inherited from thyWindow */ } .thyDialogWindow_topBorder { /* Inherited from thyWindow */ } .thyDialogWindow_leftBorder { /* Inherited from thyWindow */ } .thyDialogWindow_rightBorder { /* Inherited from thyWindow */ } .thyDialogWindow_bottomBorder { /* Inherited from thyWindow */ } .thyDialogWindow_title { /* Inherited from thyWindow */ } .thyDialogWindow_btnClose { /* Inherited from thyWindow */ } .thyDialogWindow_button { margin-bottom: 5px; } .thyDialogWindow_buttons { margin-top: 3px; margin-right: 2px; margin-bottom: 10px; } --- NEW FILE: 55thygridrow.css --- |
Update of /cvsroot/thyapi/thyapi/thythemes/concisus In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32492/thythemes/concisus Added Files: 00thypanel.css 05thytabsmanager.css 10thylabelpanel.css 110thyeditbox.css 111thytextedit.css 112thycheckbox.css 20thyborderpanel.css 30thyrichtextedit.css 40thybutton.css 411thypopupcalendar.css 41thywindow.css 42thydialogwindow.css 50thygridcell.css 55thygridrow.css 60thygrid.css 70thylistbox.css 80thydropdownbox.css 95thyabout.css calendar-idots.css Log Message: Synching... --- NEW FILE: 10thylabelpanel.css --- .thyLabelPanel { } .thyLabelPanel_label { position: relative; float: left; white-space: nowrap; } .thyLabelPanel_contents { position: relative; float: left; } .thyLabelPanel_disabled { background-color: #ebebeb ! important; } --- NEW FILE: 60thygrid.css --- .thyGrid { } .thyGrid_label { float: none; } .thyGrid_contents { float: none; width: 100%; background-color: #EEEEEE; overflow: auto; } .thyGrid_row { } .thyGrid_cell { } .thyGrid_cell_header { } .thyGrid_col-1_header { border-right-width: 1px; border-right-style: solid; border-right-color: black; } .thyGrid_col0 { } --- NEW FILE: 05thytabsmanager.css --- .thyTabsManager { position: absolute; } .thyTabsManager_contents { border: 1px solid black; padding-top: 8px; margin-top: 0px; text-align: left; background-color: #D3DCE3; overflow: auto; } .thyTabsManager_tabsPanel { } .thyTabsManager_tabsPanel_ie { } .thyTabsManager_control { position: relative; float: left; padding: 5px; border: 1px solid black; } .thyTabsManager_control_active { border-bottom: 1px solid #D3DCE3; background-color: #D3DCE3; } .thyTabsManager_control_inactive { border-bottom: 1px solid black; background-color: #c3cCd3;; } --- NEW FILE: 411thypopupcalendar.css --- .thyPopupCalendar { } .thyPopupCalendar_contents { } .thyPopupCalendar_button { position: absolute; top: -1px; right: -29px; height: 16px; min-width: 23px; width: 23px; background-image: url('{css_dir}/images/calendar.png'); background-repeat: no-repeat; background-position: center; margin: 0px; padding: 0px; } --- NEW FILE: 50thygridcell.css --- .thyGridCell { background-color: #ffffff; } .thyGridCell_onmouseover { background-color: #eaeaea; } .thyGridCell_selected { background-color: #e0e0e0; } .thyGridCell_selected_onmouseover { background-color: #f5f5f5; } .thyGridCell_header { background-image: url('{css_dir}/images/thygrid-header-bg.png'); } .thyGridCell_header_onmouseover { background-image: url('{css_dir}/images/thygrid-header-over-bg.png'); } .thyGridCell_header_selected { background-image: url('{css_dir}/images/thygrid-header-over-bg.png'); } .thyGridCell_header_selected_onmouseover { background-image: url('{css_dir}/images/thygrid-header-bg.png'); } --- NEW FILE: 110thyeditbox.css --- .thyEditBox_label { } .thyEditBox_contents { text-align: left; background-color: white; text-align: right; border-width: 1px; border-style: solid; border-color: #999999; } .thyEditBox_input { /* padding-left: 5px; */ } --- NEW FILE: 70thylistbox.css --- .thyListBox { } .thyListBox_label { } .thyListBox_contents { border-width: 1px; border-style: solid; border-color: #999999; background-color: white; } .thyListBox_row { } .thyListBox_row-1 { display: none; } .thyListBox_row-1_ie { } .thyListBox_cell { border: 0px; } .thyListBox_col-1_header { display: none; } .thyListBox_col0 { display: none; } .thyListBox_col1 { width: 98%; } .thyListBox_cell_header { display: none; } .thyListBox_col_header { } .thyListBox_col { } --- NEW FILE: 112thycheckbox.css --- .thyCheckBox { } .thyCheckBox_label { float: none; position: absolute; left: 20px; top: 0px; } .thyCheckBox_contents { float: none; position: absolute; top: 0px; left: 0px; cursor: pointer; width: 14px; height: 14px; border-width: 1px; border-style: solid; border-color: #999999; background-image: url('{css_dir}/images/thycheckbox-unchecked.png'); background-repeat: no-repeat; background-position: center; } .thyCheckBox_checked { } .thyCheckBox_contents_checked { background-image: url('{css_dir}/images/thycheckbox-checked.png'); border-color: #00f; } --- NEW FILE: 00thypanel.css --- .thyPanel_disabled { background-color: #ebebeb ! important; } .thyPanel { font-family: sans-serif; font-size: 8pt; } --- NEW FILE: calendar-idots.css --- /* The main calendar widget. DIV containing a table. */ div.calendar { position: relative; } .calendar, .calendar table { border: 1px solid #556; font-size: 11px; color: #000; cursor: default; background: #e8f0f0; /*#D3DCE3;*/ font-family: tahoma,verdana,sans-serif; } /* Header part -- contains navigation buttons and day names. */ .calendar .button { /* "<<", "<", ">", ">>" buttons have this class */ text-align: center; /* They are the navigation buttons */ padding: 2px; /* Make the buttons seem like they're pressing */ } .calendar .nav { background: #778 url(menuarrow.gif) no-repeat 100% 100%; } .calendar thead .title { /* This holds the current "month, year" */ font-weight: bold; /* Pressing it will take you to the current date */ text-align: center; background: #fff; color: #000; padding: 2px; } .calendar thead .headrow { /* Row <TR> containing navigation buttons */ background: #778; /* background: #D3DCE3; */ color: #fff; } .calendar thead .daynames { /* Row <TR> containing the day names */ /*background: #bdf;*/ background: #afcce3; } .calendar thead .name { /* Cells <TD> containing the day names */ border-bottom: 1px solid #556; padding: 2px; text-align: center; color: #000; } .calendar thead .weekend { /* How a weekend day name shows in header */ color: #a66; } .calendar thead .hilite { /* How do the buttons in header appear when hover */ /* background-color: #aaf;*/ background-color: #D3DCE3; color: #000; border: 1px solid #04f; padding: 1px; } .calendar thead .active { /* Active (pressed) buttons in header */ background-color: #77c; padding: 2px 0px 0px 2px; } /* The body part -- contains all the days in month. */ .calendar tbody .day { /* Cells <TD> containing month days dates */ width: 2em; color: #456; text-align: right; padding: 2px 4px 2px 2px; } .calendar tbody .day.othermonth { font-size: 80%; color: #bbb; } .calendar tbody .day.othermonth.oweekend { color: #fbb; } .calendar table .wn { padding: 2px 3px 2px 2px; border-right: 1px solid #000; background: #afcce3; } .calendar tbody .rowhilite td { background: #EfFfFf; } .calendar tbody .rowhilite td.wn { background: #E8F0F0; } .calendar tbody td.hilite { /* Hovered cells <TD> */ background: #def; padding: 1px 3px 1px 1px; border: 1px solid #bbb; } .calendar tbody td.active { /* Active (pressed) cells <TD> */ background: #cde; padding: 2px 2px 0px 2px; } .calendar tbody td.selected { /* Cell showing today date */ font-weight: bold; border: 1px solid #000; padding: 1px 3px 1px 1px; background: #fff; color: #000; } .calendar tbody td.weekend { /* Cells showing weekend days */ color: #a66; } .calendar tbody td.today { /* Cell showing selected date */ font-weight: bold; color: #00f; } .calendar tbody .disabled { color: #999; } .calendar tbody .emptycell { /* Empty cells (the best is to hide them) */ visibility: hidden; } .calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */ display: none; } /* The footer part -- status bar and "Close" button */ .calendar tfoot .footrow { /* The <TR> in footer (only one right now) */ text-align: center; background: #556; color: #fff; } .calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */ background: #fff; color: #445; border-top: 1px solid #556; padding: 1px; } .calendar tfoot .hilite { /* Hover style for buttons in footer */ background: #aaf; border: 1px solid #04f; color: #000; padding: 1px; } .calendar tfoot .active { /* Active (pressed) style for buttons in footer */ background: #77c; padding: 2px 0px 0px 2px; } /* Combo boxes (menus that display months/years for direct selection) */ .calendar .combo { position: absolute; display: none; top: 0px; left: 0px; width: 4em; cursor: default; border: 1px solid #655; background: #def; color: #000; font-size: 90%; } .calendar .combo .label, .calendar .combo .label-IEfix { text-align: center; padding: 1px; } .calendar .combo .label-IEfix { width: 4em; } .calendar .combo .hilite { background: #acf; } .calendar .combo .active { border-top: 1px solid #46a; border-bottom: 1px solid #46a; background: #eef; font-weight: bold; } .calendar td.time { border-top: 1px solid #000; padding: 1px 0px; text-align: center; background-color: #f4f0e8; } .calendar td.time .hour, .calendar td.time .minute, .calendar td.time .ampm { padding: 0px 3px 0px 4px; border: 1px solid #889; font-weight: bold; background-color: #fff; } .calendar td.time .ampm { text-align: center; } .calendar td.time .colon { padding: 0px 2px 0px 3px; font-weight: bold; } .calendar td.time span.hilite { border-color: #000; background-color: #667; color: #fff; } .calendar td.time span.active { border-color: #f00; background-color: #000; color: #0f0; } --- NEW FILE: 41thywindow.css --- .thyWindow { position: absolute; } .thyWindow_window { } .thyWindow_contents { position: relative; top: 0px; left: 0px; overflow: auto; } .thyWindow_ondrag { position: absolute; text-align: left; font-style: italic; border: 1px solid black; background-color: #c0c0c0; -moz-opacity: 0.50; -khtml-opacity: 0.50; opacity: 0.50; filter:alpha(opacity=50); } .thyWindow_borders { /* Inherited from thyBorderPanel */ } .thyWindow_hBorders { /* Inherited from thyBorderPanel */ } .thyWindow_vBorders { /* Inherited from thyBorderPanel */ } .thyWindow_topBorder { /* Inherited from thyBorderPanel */ } .thyWindow_leftBorder { /* Inherited from thyBorderPanel */ } .thyWindow_rightBorder { /* Inherited from thyBorderPanel */ } .thyWindow_bottomBorder { /* Inherited from thyBorderPanel */ } .thyWindow_title { color: #ffffff; font-style: none; font-weight: bold; font-size: 10pt; text-align: left; height: 18px; padding-left: 10px; /* border-color: #0000ff; border-style: solid; border-width: 1px;*/ background-image: url('{css_dir}/images/thywindow-title-bg.png'); cursor: pointer; cursor: hand; } .thyWindow_btnClose { width: 16px; height: 16px; right: 5px; top: 1px; position: absolute; background-image: url('{css_dir}/images/x.png'); background-repeat: no-repeat; background-position: center; cursor: pointer; cursor: hand; } --- NEW FILE: 30thyrichtextedit.css --- .thyRichTextEdit { } --- NEW FILE: 20thyborderpanel.css --- .thyBorderPanel { position: absolute; background-color: #f0f0f0; } .thyBorderPanel_contentsHolder { } .thyBorderPanel_contents { /* background-color: #eaeaea; */ } .thyBorderPanel_borders { background-color: #0000ff; } .thyBorderPanel_hBorders { height: 1px; } .thyBorderPanel_vBorders { width: 1px; } .thyBorderPanel_topBorder { } .thyBorderPanel_leftBorder { } .thyBorderPanel_rightBorder { } .thyBorderPanel_bottomBorder { } --- NEW FILE: 40thybutton.css --- .thyButton, .thyButton_onmouseover, .thyButton_pushed, .thyButton_pushed_onmouseover { min-width: 35px; min-height: 13px; padding-left: 7px; padding-right: 4px; padding-top: 2px; padding-bottom: 2px; text-align: center; margin-right: 8px; } .thyButton { /* color: #004e7d;*/ border: 1px outset #0000ff; background-image: url('{css_dir}/images/thybutton-bg.png'); } .thyButton_onmouseover { background-image: url('{css_dir}/images/thybutton-over-bg.png'); } .thyButton_pushed { border: 1px inset #dcdad5; } .thyButton_pushed_onmouseover { } --- NEW FILE: 80thydropdownbox.css --- .thyDropDownBox { overflow: visible; } .thyDropDownBox_label { } .thyDropDownBox_contents { width: auto; height: auto; } .thyDropDownBox_edit, .thyDropDownBox_edit_contents { width: 100%; /*overflow: visible;*/ } .thyDropDownBox_button { position: absolute; top: 1px; right: -21px; margin: 0px; min-width: 14px; width: 14px; height: 14px; padding: 0px; background-image: url('{css_dir}/images/thydropdown-button.png'); background-repeat: no-repeat; background-position: center; } .thyDropDownBox_listBox, .thyDropDownBox_listBox_onmouseover { position: absolute; padding: 0px 5px 0px 5px; background-color: #f0f0ff; border-style: outset; border-color: #999999; border-width: 2px; /* left: 0px;*/ max-height: 200px; /* min-width: 100%;*/ overflow: auto; } .thyDropDownBox_listBox_ie, .thyDropDownBox_listBox_contents_ie { max-width: 300px; width: 300px; } .thyDropDownBox_listBox_label { display: none; } .thyDropDownBox_listBox_contents { border: 0px; background-color: #f0f0ff; overflow: visible; } .thyDropDownBox_listBox_cell_selected { background-image: url('{css_dir}/images/thycheckbox-checked.png'); background-repeat: no-repeat; background-position: left; } .thyDropDownBox_listBox_cell, .thyDropDownBox_listBox_cell_selected_onmouseover { padding-left: 15px; width: 100%; cursor: pointer; cursor: hand; background-color: #f0f0ff; } .thyDropDownBox_listBox_cell_onmouseover, .thyDropDownBox_listBox_cell_selected { background-color: #96aaff; } --- NEW FILE: 95thyabout.css --- .thyAbout_contents { width: 400px; height: 205px; } .thyAbout_ondrag { width: 400px; height: 205px; } .thyAbout_aboutImage { position: absolute; left: 10px; top: 10px; width: 140px; height: 110px; } .thyAbout_aboutText { position: absolute; left: 160px; top: 10px; width: 210px; height: 185px; text-align: center; } --- NEW FILE: 111thytextedit.css --- .thyTextEdit_label { } .thyTextEdit_contents { background-color: white; text-align: right; border: 1px solid #999999; } --- NEW FILE: 42thydialogwindow.css --- .thyDialogWindow { position: absolute; } .thyDialogWindow_ie { width: auto; } .thyDialogWindow_window { } .thyDialogWindow_contents { } .thyDialogWindow_ondrag { /* Inherited from thyWindow */ } .thyDialogWindow_borders { /* Inherited from thyWindow */ } .thyDialogWindow_hBorders { /* Inherited from thyWindow */ } .thyDialogWindow_vBorders { /* Inherited from thyWindow */ } .thyDialogWindow_topBorder { /* Inherited from thyWindow */ } .thyDialogWindow_leftBorder { /* Inherited from thyWindow */ } .thyDialogWindow_rightBorder { /* Inherited from thyWindow */ } .thyDialogWindow_bottomBorder { /* Inherited from thyWindow */ } .thyDialogWindow_title { /* Inherited from thyWindow */ } .thyDialogWindow_btnClose { /* Inherited from thyWindow */ } .thyDialogWindow_button { margin-bottom: 5px; } .thyDialogWindow_buttons { margin-top: 3px; margin-right: 2px; margin-bottom: 10px; } --- NEW FILE: 55thygridrow.css --- |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:15:50
|
Update of /cvsroot/thyapi/thyapi/thythemes/concisus/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32492/thythemes/concisus/images Added Files: cal.png thybutton-bg.png thybutton-over-bg.png thybutton.png thycheckbox-checked.png thycheckbox-unchecked.png thydropdown-button.png thygrid-header-bg.png thygrid-header-over-bg.png thywindow-title-bg.png x.png Log Message: Synching... --- NEW FILE: thybutton-over-bg.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: thycheckbox-unchecked.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: thygrid-header-bg.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: thybutton.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cal.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: thycheckbox-checked.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: thywindow-title-bg.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: x.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: thybutton-bg.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: thygrid-header-over-bg.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: thydropdown-button.png --- (This appears to be a binary file; contents omitted.) |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:15:50
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/_samples/_plugins/findreplace In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32492/thywidgets/external/fckeditor/_samples/_plugins/findreplace Added Files: fckplugin.js find.gif find.html replace.gif replace.html Log Message: Synching... --- NEW FILE: fckplugin.js --- (This appears to be a binary file; contents omitted.) --- NEW FILE: replace.html --- <!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: replace.html * This is the sample "Replace" plugin window. * * Version: 2.0 RC3 * Modified: 2004-11-30 10:27:04 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta content="noindex, nofollow" name="robots"> <script type="text/javascript"> var oEditor = window.parent.InnerDialogLoaded() ; function OnLoad() { // First of all, translate the dialog box texts oEditor.FCKLanguageManager.TranslatePage( document ) ; window.parent.SetAutoSize( true ) ; } function btnStat(frm) { document.getElementById('btnReplace').disabled = document.getElementById('btnReplaceAll').disabled = ( document.getElementById('txtFind').value.length == 0 ) ; } function ReplaceTextNodes( parentNode, regex, replaceValue, replaceAll, hasFound ) { for ( var i = 0 ; i < parentNode.childNodes.length ; i++ ) { var oNode = parentNode.childNodes[i] ; if ( oNode.nodeType == 3 ) { var sReplaced = oNode.nodeValue.replace( regex, replaceValue ) ; if ( oNode.nodeValue != sReplaced ) { oNode.nodeValue = sReplaced ; if ( ! replaceAll ) return true ; hasFound = true ; } } hasFound = ReplaceTextNodes( oNode, regex, replaceValue, replaceAll, hasFound ) ; if ( ! replaceAll && hasFound ) return true ; } return hasFound ; } function GetRegexExpr() { if ( document.getElementById('chkWord').checked ) var sExpr = '\\b' + document.getElementById('txtFind').value + '\\b' ; else var sExpr = document.getElementById('txtFind').value ; return sExpr ; } function GetCase() { return ( document.getElementById('chkCase').checked ? '' : 'i' ) ; } function Replace() { var oRegex = new RegExp( GetRegexExpr(), GetCase() ) ; ReplaceTextNodes( oEditor.FCK.EditorDocument.body, oRegex, document.getElementById('txtReplace').value, false ) ; } function ReplaceAll() { var oRegex = new RegExp( GetRegexExpr(), GetCase() + 'g' ) ; ReplaceTextNodes( oEditor.FCK.EditorDocument.body, oRegex, document.getElementById('txtReplace').value, true ) ; window.parent.Cancel() ; } </script> </head> <body onload="OnLoad()" scroll="no" style="OVERFLOW: hidden"> <div align="center"> This is my Plugin! </div> <table cellSpacing="3" cellPadding="2" width="100%" border="0"> <tr> <td noWrap><label for="txtFind" fckLang="DlgMyReplaceFindLbl">Find what:</label> </td> <td width="100%"><input id="txtFind" onkeyup="btnStat(this.form)" style="WIDTH: 100%" tabIndex="1" type="text"> </td> <td><input id="btnReplace" style="WIDTH: 100%" disabled onclick="Replace();" type="button" value="Replace" fckLang="DlgMyReplaceReplaceBtn"> </td> </tr> <tr> <td vAlign="top" nowrap><label for="txtReplace" fckLang="DlgMyReplaceReplaceLbl">Replace with:</label> </td> <td vAlign="top"><input id="txtReplace" style="WIDTH: 100%" tabIndex="2" type="text"> </td> <td><input id="btnReplaceAll" disabled onclick="ReplaceAll()" type="button" value="Replace All" fckLang="DlgMyReplaceReplAllBtn"> </td> </tr> <tr> <td vAlign="bottom" colSpan="3"> <input id="chkCase" tabIndex="3" type="checkbox"><label for="chkCase" fckLang="DlgMyReplaceCaseChk">Match case</label> <br> <input id="chkWord" tabIndex="4" type="checkbox"><label for="chkWord" fckLang="DlgMyReplaceWordChk">Match whole word</label> </td> </tr> </table> </body> </html> --- NEW FILE: find.html --- <!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: find.html * This is the sample "Find" plugin window. * * Version: 2.0 RC3 * Modified: 2004-11-30 10:27:04 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta content="noindex, nofollow" name="robots"> <script type="text/javascript"> var oEditor = window.parent.InnerDialogLoaded() ; function OnLoad() { // Whole word is available on IE only. if ( oEditor.FCKBrowserInfo.IsIE ) document.getElementById('divWord').style.display = '' ; // First of all, translate the dialog box texts. oEditor.FCKLanguageManager.TranslatePage( document ) ; window.parent.SetAutoSize( true ) ; } function btnStat(frm) { document.getElementById('btnFind').disabled = ( document.getElementById('txtFind').value.length == 0 ) ; } function ReplaceTextNodes( parentNode, regex, replaceValue, replaceAll ) { for ( var i = 0 ; i < parentNode.childNodes.length ; i++ ) { var oNode = parentNode.childNodes[i] ; if ( oNode.nodeType == 3 ) { var sReplaced = oNode.nodeValue.replace( regex, replaceValue ) ; if ( oNode.nodeValue != sReplaced ) { oNode.nodeValue = sReplaced ; if ( ! replaceAll ) return true ; } } else { if ( ReplaceTextNodes( oNode, regex, replaceValue ) ) return true ; } } return false ; } function GetRegexExpr() { if ( document.getElementById('chkWord').checked ) var sExpr = '\\b' + document.getElementById('txtFind').value + '\\b' ; else var sExpr = document.getElementById('txtFind').value ; return sExpr ; } function GetCase() { return ( document.getElementById('chkCase').checked ? '' : 'i' ) ; } function Ok() { if ( document.getElementById('txtFind').value.length == 0 ) return ; if ( oEditor.FCKBrowserInfo.IsIE ) FindIE() ; else FindGecko() ; } var oRange = null ; function FindIE() { if ( oRange == null ) oRange = oEditor.FCK.EditorDocument.body.createTextRange() ; var iFlags = 0 ; if ( chkCase.checked ) iFlags = iFlags | 4 ; if ( chkWord.checked ) iFlags = iFlags | 2 ; var bFound = oRange.findText( document.getElementById('txtFind').value, 1, iFlags ) ; if ( bFound ) { oRange.scrollIntoView() ; oRange.select() ; oRange.collapse(false) ; oLastRangeFound = oRange ; } else { oRange = null ; alert( oEditor.FCKLang.DlgFindNotFoundMsg ) ; } } function FindGecko() { var bCase = document.getElementById('chkCase').checked ; var bWord = document.getElementById('chkWord').checked ; // window.find( searchString, caseSensitive, backwards, wrapAround, wholeWord, searchInFrames, showDialog ) ; oEditor.FCK.EditorWindow.find( document.getElementById('txtFind').value, bCase, false, false, bWord, false, false ) ; } </script> </head> <body onload="OnLoad()" scroll="no" style="OVERFLOW: hidden"> <div align="center"> This is my Plugin! </div> <table cellSpacing="3" cellPadding="2" width="100%" border="0"> <tr> <td nowrap> <label for="txtFind" fckLang="DlgMyReplaceFindLbl">Find what:</label> </td> <td width="100%"> <input id="txtFind" onkeyup="btnStat(this.form)" style="WIDTH: 100%" tabIndex="1" type="text"> </td> <td> <input id="btnFind" style="WIDTH: 100%; PADDING-RIGHT: 5px; PADDING-LEFT: 5px" disabled onclick="Ok();" type="button" value="Find" fckLang="DlgMyFindFindBtn"> </td> </tr> <tr> <td valign="bottom" colSpan="3"> <input id="chkCase" tabIndex="3" type="checkbox"><label for="chkCase" fckLang="DlgMyReplaceCaseChk">Match case</label> <br> <div id="divWord" style="DISPLAY: none"> <input id="chkWord" tabIndex="4" type="checkbox"><label for="chkWord" fckLang="DlgMyReplaceWordChk">Match whole word</label> </div> </td> </tr> </table> </body> </html> --- NEW FILE: find.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: replace.gif --- (This appears to be a binary file; contents omitted.) |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:15:49
|
Update of /cvsroot/thyapi/thyapi/thythemes/thyapi/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32492/thythemes/thyapi/images Added Files: Moff.png Mon.png cal.png moff.png mon.png soff.png son.png tboff.png tbon.png tcoff.png tcon.png tdb.png tghoff.png tghon.png thybutton.png twt.png xoff.png xon.png Log Message: Synching... --- NEW FILE: tboff.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: soff.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Mon.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: son.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tdb.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tghon.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: thybutton.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xoff.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: moff.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cal.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tghoff.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mon.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tcon.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tcoff.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xon.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Moff.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tbon.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: twt.png --- (This appears to be a binary file; contents omitted.) |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:14:06
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/jscalendar/lang In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31775/thywidgets/external/jscalendar/lang Log Message: Directory /cvsroot/thyapi/thyapi/thywidgets/external/jscalendar/lang added to the repository |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:14:06
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/plugins/tablecommands In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31775/thywidgets/external/fckeditor/editor/plugins/tablecommands Log Message: Directory /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/plugins/tablecommands added to the repository |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:14:06
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/plugins/placeholder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31775/thywidgets/external/fckeditor/editor/plugins/placeholder Log Message: Directory /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/plugins/placeholder added to the repository |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:14:06
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_spellerpages/spellerpages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31775/thywidgets/external/fckeditor/editor/dialog/fck_spellerpages/spellerpages Log Message: Directory /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/fck_spellerpages/spellerpages added to the repository |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:14:06
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/jscalendar/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31775/thywidgets/external/jscalendar/doc Log Message: Directory /cvsroot/thyapi/thyapi/thywidgets/external/jscalendar/doc added to the repository |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:14:06
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/jscalendar/skins In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31775/thywidgets/external/jscalendar/skins Log Message: Directory /cvsroot/thyapi/thyapi/thywidgets/external/jscalendar/skins added to the repository |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:14:05
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/common/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31775/thywidgets/external/fckeditor/editor/dialog/common/images Log Message: Directory /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/dialog/common/images added to the repository |
From: Raphael D. P. <rap...@us...> - 2005-09-01 18:14:04
|
Update of /cvsroot/thyapi/thyapi/backends In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31775/backends Log Message: Directory /cvsroot/thyapi/thyapi/backends added to the repository |