Changeset 1084
- Timestamp:
- 10/12/08 17:42:42 (5 years ago)
- Location:
- trunk
- Files:
-
- 22 modified
-
XinhaCore.js (modified) (3 diffs)
-
contrib/compress.php (modified) (1 diff)
-
examples/ExtendedDemo.html (modified) (1 diff)
-
examples/files/ext_example-body.html (modified) (1 diff)
-
examples/files/ext_example-menu.php (modified) (1 diff)
-
examples/testbed.html (modified) (1 diff)
-
modules/ColorPicker/ColorPicker.js (modified) (1 diff)
-
modules/CreateLink/link.js (modified) (1 diff)
-
modules/Dialogs/XinhaDialog.js (modified) (1 diff)
-
modules/Dialogs/dialog.js (modified) (1 diff)
-
modules/Gecko/Gecko.js (modified) (2 diffs)
-
modules/GetHtml/DOMwalk.js (modified) (2 diffs)
-
modules/InsertTable/insert_table.js (modified) (1 diff)
-
modules/InternetExplorer/InternetExplorer.js (modified) (2 diffs)
-
modules/Opera/Opera.js (modified) (2 diffs)
-
modules/WebKit/WebKit.js (modified) (2 diffs)
-
plugins/CSS/CSS.js (modified) (1 diff)
-
plugins/ContextMenu/ContextMenu.js (modified) (1 diff)
-
plugins/ExtendedFileManager/Classes/ExtendedFileManager.php (modified) (1 diff)
-
plugins/ExtendedFileManager/assets/dialog.js (modified) (1 diff)
-
plugins/ExtendedFileManager/assets/popup.js (modified) (1 diff)
-
plugins/FormOperations/FormOperations.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/XinhaCore.js
r1083 r1084 28 28 -- 29 29 -- $HeadURL$ 30 -- $LastChangedDate :2008-05-01 14:33:36 +0200 (Do, 01 Mai 2008)$31 -- $LastChangedRevision :999$32 -- $LastChangedBy :ray$30 -- $LastChangedDate$ 31 -- $LastChangedRevision$ 32 -- $LastChangedBy$ 33 33 --------------------------------------------------------------------------*/ 34 34 … … 209 209 210 210 /** Creates a new Xinha object 211 * @version $Rev :998M $ $LastChangedDate:2008-05-01 14:33:36 +0200 (Do, 01 Mai 2008)$211 * @version $Rev$ $LastChangedDate$ 212 212 * @constructor 213 213 * @param {String|DomNode} textarea the textarea to replace; can be either only the id or the DOM object as returned by document.getElementById() … … 471 471 * This class creates an object that can be passed to the Xinha constructor as a parameter. 472 472 * Set the object's properties as you need to configure the editor (toolbar etc.) 473 * @version $Rev :998M $ $LastChangedDate:2008-05-01 14:33:36 +0200 (Do, 01 Mai 2008)$473 * @version $Rev$ $LastChangedDate$ 474 474 * @constructor 475 475 */ -
trunk/contrib/compress.php
r951 r1084 1 1 <? 2 2 die("Run this script to batch-compress the current Xinha snapshot. To run the script, open the file and comment out the die() command"); 3 $repository_url = 'http://svn.xinha. webfactional.com/trunk';3 $repository_url = 'http://svn.xinha.org/trunk'; 4 4 $version =''; 5 5 $date = date('r'); -
trunk/examples/ExtendedDemo.html
r999 r1084 4 4 -- Xinha example frameset. 5 5 -- 6 -- $HeadURL :http://svn.xinha.webfactional.com/trunk/examples/ExtendedDemo.html$7 -- $LastChangedDate :2008-02-04 01:43:21 +0100 (Mo, 04 Feb 2008)$8 -- $LastChangedRevision :962$9 -- $LastChangedBy :ray$6 -- $HeadURL$ 7 -- $LastChangedDate$ 8 -- $LastChangedRevision$ 9 -- $LastChangedBy$ 10 10 ---------------------------------------------------------------------------> 11 11 -
trunk/examples/files/ext_example-body.html
r1050 r1084 4 4 5 5 <!-- --------------------------------------------------------------------- 6 -- $HeadURL :http://svn.xinha.webfactional.com/trunk/examples/files/ext_example-body.html$7 -- $LastChangedDate :2008-02-04 01:43:21 +0100 (Mo, 04 Feb 2008)$8 -- $LastChangedRevision :962$9 -- $LastChangedBy :ray$6 -- $HeadURL$ 7 -- $LastChangedDate$ 8 -- $LastChangedRevision$ 9 -- $LastChangedBy$ 10 10 ------------------------------------------------------------------------ --> 11 11 -
trunk/examples/files/ext_example-menu.php
r999 r1084 11 11 -- full_example-body.html, and full_example.js. 12 12 -- 13 -- $HeadURL :http://svn.xinha.webfactional.com/trunk/examples/files/ext_example-menu.php$14 -- $LastChangedDate :2008-04-12 23:23:17 +0200 (Sa, 12 Apr 2008)$15 -- $LastChangedRevision :993$16 -- $LastChangedBy :ray$13 -- $HeadURL$ 14 -- $LastChangedDate$ 15 -- $LastChangedRevision$ 16 -- $LastChangedBy$ 17 17 ---------------------------------------------------------------------------> 18 18 -
trunk/examples/testbed.html
r1050 r1084 14 14 -- use of the file as a boilerplate. 15 15 -- 16 -- $HeadURL :http://svn.xinha.webfactional.com/trunk/examples/testbed.html$17 -- $LastChangedDate :2008-04-12 14:39:04 +0200 (Sa, 12 Apr 2008)$18 -- $LastChangedRevision :987$19 -- $LastChangedBy :ray$16 -- $HeadURL$ 17 -- $LastChangedDate$ 18 -- $LastChangedRevision$ 19 -- $LastChangedBy$ 20 20 ---------------------------------------------------------------------------> 21 21 -
trunk/modules/ColorPicker/ColorPicker.js
r1044 r1084 80 80 { 81 81 name : "colorPicker", 82 version : "$LastChangedRevision :998$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'),82 version : "$LastChangedRevision$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'), 83 83 developer: "James Sleeman", 84 84 developer_url: "http://www.gogo.co.nz/", -
trunk/modules/CreateLink/link.js
r1044 r1084 18 18 -- 19 19 -- 20 -- $HeadURL :http://svn.xinha.webfactional.com/trunk/modules/CreateLink/link.js$21 -- $LastChangedDate :2008-04-12 19:10:04 +0200 (Sa, 12 Apr 2008)$22 -- $LastChangedRevision :990$23 -- $LastChangedBy :ray$20 -- $HeadURL$ 21 -- $LastChangedDate$ 22 -- $LastChangedRevision$ 23 -- $LastChangedBy$ 24 24 --------------------------------------------------------------------------*/ 25 25 -
trunk/modules/Dialogs/XinhaDialog.js
r1080 r1084 15 15 -- 16 16 -- 17 -- $HeadURL :http://svn.xinha.webfactional.com/trunk/modules/Dialogs/inline-dialog.js$18 -- $LastChangedDate :2008-04-12 19:10:04 +0200 (Sa, 12 Apr 2008)$19 -- $LastChangedRevision :990$20 -- $LastChangedBy :ray$17 -- $HeadURL$ 18 -- $LastChangedDate$ 19 -- $LastChangedRevision$ 20 -- $LastChangedBy$ 21 21 --------------------------------------------------------------------------*/ 22 22 -
trunk/modules/Dialogs/dialog.js
r999 r1084 17 17 -- 18 18 -- 19 -- $HeadURL :http://svn.xinha.webfactional.com/trunk/modules/Dialogs/dialog.js$20 -- $LastChangedDate :2008-03-20 13:09:09 +0100 (Do, 20 Mrz 2008)$21 -- $LastChangedRevision :978$22 -- $LastChangedBy :ray$19 -- $HeadURL$ 20 -- $LastChangedDate$ 21 -- $LastChangedRevision$ 22 -- $LastChangedBy$ 23 23 --------------------------------------------------------------------------*/ 24 24 -
trunk/modules/Gecko/Gecko.js
r1060 r1084 26 26 -- that way. 27 27 -- 28 -- $HeadURL :http://svn.xinha.webfactional.com/trunk/modules/Gecko/Gecko.js$29 -- $LastChangedDate :2008-05-01 14:33:36 +0200 (Do, 01 Mai 2008)$30 -- $LastChangedRevision :998$31 -- $LastChangedBy :ray$28 -- $HeadURL$ 29 -- $LastChangedDate$ 30 -- $LastChangedRevision$ 31 -- $LastChangedBy$ 32 32 --------------------------------------------------------------------------*/ 33 33 … … 35 35 name : "Gecko", 36 36 origin : "Xinha Core", 37 version : "$LastChangedRevision :998$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'),37 version : "$LastChangedRevision$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'), 38 38 developer : "The Xinha Core Developer Team", 39 developer_url : "$HeadURL :http://svn.xinha.webfactional.com/trunk/modules/Gecko/Gecko.js$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'),39 developer_url : "$HeadURL$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'), 40 40 sponsor : "", 41 41 sponsor_url : "", -
trunk/modules/GetHtml/DOMwalk.js
r1001 r1084 16 16 -- 17 17 -- 18 -- $HeadURL :http://svn.xinha.webfactional.com/trunk/modules/GetHtml/DOMwalk.js$19 -- $LastChangedDate :2008-02-02 19:30:42 +0100 (Sa, 02 Feb 2008)$20 -- $LastChangedRevision :961$21 -- $LastChangedBy :ray$18 -- $HeadURL$ 19 -- $LastChangedDate$ 20 -- $LastChangedRevision$ 21 -- $LastChangedBy$ 22 22 --------------------------------------------------------------------------*/ 23 23 function GetHtmlImplementation(editor) { … … 28 28 name : "GetHtmlImplementation DOMwalk", 29 29 origin : "Xinha Core", 30 version : "$LastChangedRevision :961$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'),30 version : "$LastChangedRevision$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'), 31 31 developer : "The Xinha Core Developer Team", 32 developer_url : "$HeadURL :http://svn.xinha.webfactional.com/trunk/modules/GetHtml/DOMwalk.js$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'),32 developer_url : "$HeadURL$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'), 33 33 sponsor : "", 34 34 sponsor_url : "", -
trunk/modules/InsertTable/insert_table.js
r1044 r1084 18 18 -- 19 19 -- 20 -- $HeadURL : http://svn.xinha.python-hosting.com/trunk/modules/InsertTable/insert_table.js$21 -- $LastChangedDate : 2007-01-23 09:22:22 +1300 (Tue, 23 Jan 2007)$22 -- $LastChangedRevision : 688$23 -- $LastChangedBy : ray$20 -- $HeadURL$ 21 -- $LastChangedDate$ 22 -- $LastChangedRevision$ 23 -- $LastChangedBy$ 24 24 --------------------------------------------------------------------------*/ 25 25 InsertTable._pluginInfo = { 26 26 name : "InsertTable", 27 27 origin : "Xinha Core", 28 version : "$LastChangedRevision : 688$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'),28 version : "$LastChangedRevision$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'), 29 29 developer : "The Xinha Core Developer Team", 30 developer_url : "$HeadURL : http://svn.xinha.python-hosting.com/trunk/modules/InsertTable/insert_table.js$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'),30 developer_url : "$HeadURL$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'), 31 31 sponsor : "", 32 32 sponsor_url : "", -
trunk/modules/InternetExplorer/InternetExplorer.js
r1074 r1084 26 26 -- namespace that way. 27 27 -- 28 -- $HeadURL :http://svn.xinha.webfactional.com/trunk/modules/InternetExplorer/InternetExplorer.js$29 -- $LastChangedDate :2008-03-21 18:16:28 +0100 (Fr, 21 Mrz 2008)$30 -- $LastChangedRevision :980$31 -- $LastChangedBy :ray$28 -- $HeadURL$ 29 -- $LastChangedDate$ 30 -- $LastChangedRevision$ 31 -- $LastChangedBy$ 32 32 --------------------------------------------------------------------------*/ 33 33 … … 35 35 name : "Internet Explorer", 36 36 origin : "Xinha Core", 37 version : "$LastChangedRevision :980$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'),37 version : "$LastChangedRevision$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'), 38 38 developer : "The Xinha Core Developer Team", 39 developer_url : "$HeadURL :http://svn.xinha.webfactional.com/trunk/modules/InternetExplorer/InternetExplorer.js$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'),39 developer_url : "$HeadURL$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'), 40 40 sponsor : "", 41 41 sponsor_url : "", -
trunk/modules/Opera/Opera.js
r1051 r1084 26 26 -- that way. 27 27 -- 28 -- $HeadURL :http://svn.xinha.webfactional.com/trunk/modules/Opera/Opera.js$29 -- $LastChangedDate :2008-02-07 14:11:35 +0100 (Do, 07 Feb 2008)$30 -- $LastChangedRevision :970$31 -- $LastChangedBy :gogo$28 -- $HeadURL$ 29 -- $LastChangedDate$ 30 -- $LastChangedRevision$ 31 -- $LastChangedBy$ 32 32 --------------------------------------------------------------------------*/ 33 33 … … 35 35 name : "Opera", 36 36 origin : "Xinha Core", 37 version : "$LastChangedRevision :970$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'),37 version : "$LastChangedRevision$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'), 38 38 developer : "The Xinha Core Developer Team", 39 developer_url : "$HeadURL :http://svn.xinha.webfactional.com/trunk/modules/Opera/Opera.js$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'),39 developer_url : "$HeadURL$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'), 40 40 sponsor : "Gogo Internet Services Limited", 41 41 sponsor_url : "http://www.gogo.co.nz/", -
trunk/modules/WebKit/WebKit.js
r1051 r1084 25 25 -- that way. 26 26 -- 27 -- $HeadURL :http://svn.xinha.webfactional.com/trunk/modules/WebKit/WebKit.js$28 -- $LastChangedDate :2008-05-01 14:33:36 +0200 (Do, 01 Mai 2008)$29 -- $LastChangedRevision :998$30 -- $LastChangedBy :ray$27 -- $HeadURL$ 28 -- $LastChangedDate$ 29 -- $LastChangedRevision$ 30 -- $LastChangedBy$ 31 31 --------------------------------------------------------------------------*/ 32 32 … … 34 34 name : "WebKit", 35 35 origin : "Xinha Core", 36 version : "$LastChangedRevision :998$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'),36 version : "$LastChangedRevision$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'), 37 37 developer : "The Xinha Core Developer Team", 38 developer_url : "$HeadURL :http://svn.xinha.webfactional.com/trunk/modules/WebKit/WebKit.js$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'),38 developer_url : "$HeadURL$".replace(/^[^:]*:\s*(.*)\s*\$$/, '$1'), 39 39 sponsor : "", 40 40 sponsor_url : "", -
trunk/plugins/CSS/CSS.js
r1067 r1084 7 7 // This notice MUST stay intact for use (see license.txt). 8 8 // 9 // $Id :css.js 856 2007-06-13 18:34:34Z wymsy$9 // $Id$ 10 10 // @TODO This is the default and won't be very useful to others. 11 11 // We should make this better. -
trunk/plugins/ContextMenu/ContextMenu.js
r1067 r1084 7 7 // This notice MUST stay intact for use (see license.txt). 8 8 // 9 // $Id :context-menu.js 988M 2008-04-12 13:46:09Z (local)$9 // $Id$ 10 10 11 11 Xinha.loadStyle("menu.css", "ContextMenu"); -
trunk/plugins/ExtendedFileManager/Classes/ExtendedFileManager.php
r999 r1084 17 17 /** 18 18 * ExtendedFileManager Class. 19 * @author $Author:ray $ 20 * @author $Author:ray $ 21 * @version $Id:ExtendedFileManager.php 957 2008-02-01 22:44:49Z ray $ 19 * @author Wei Zhuo, Afru, Krzysztof Kotowicz, Raimund Meyer 20 * @version $Id$ 22 21 */ 23 22 class ExtendedFileManager -
trunk/plugins/ExtendedFileManager/assets/dialog.js
r999 r1084 10 10 // http://dynarch.com/mishoo 11 11 // 12 // $Id :dialog.js 929 2008-01-09 21:10:59Z ray$12 // $Id$ 13 13 14 14 // Though "Dialog" looks like an object, it isn't really an object. Instead -
trunk/plugins/ExtendedFileManager/assets/popup.js
r999 r1084 10 10 // http://dynarch.com/mishoo 11 11 // 12 // $Id :popup.js 939 2008-01-22 21:11:43Z ray$12 // $Id$ 13 13 14 14 function __dlg_onclose() { -
trunk/plugins/FormOperations/FormOperations.js
r1067 r1084 3 3 -- FormOperations Plugin 4 4 -- 5 -- $HeadURL :http://svn.xinha.webfactional.com/trunk/plugins/FormOperations/form-operations.js$6 -- $LastChangedDate :2007-02-07 20:12:42 +0100 (Mi, 07 Feb 2007)$7 -- $LastChangedRevision :715M$8 -- $LastChangedBy :(local)$5 -- $HeadURL$ 6 -- $LastChangedDate$ 7 -- $LastChangedRevision$ 8 -- $LastChangedBy$ 9 9 --------------------------------------------------------------------------*/ 10 10
