You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(34) |
Sep
(302) |
Oct
(13) |
Nov
(35) |
Dec
(15) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
(56) |
Feb
(12) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Thyamad c. <th...@us...> - 2005-12-22 03:39:46
|
Update of /cvsroot/thyapi/thyapi/thywidgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31440/thywidgets Modified Files: thylistbox.js Log Message: Commiting file additions and modification from SVN revision 2486 to 2487... Changes made by vinicius on 2005-12-22 05:32:24 +0100 (Thu, 22 Dec 2005) corresponding to SVN revision 2487 with message: function added in listbox Index: thylistbox.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/thylistbox.js,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** thylistbox.js 8 Sep 2005 14:59:41 -0000 1.6 --- thylistbox.js 22 Dec 2005 03:39:38 -0000 1.7 *************** *** 163,166 **** --- 163,186 ---- /** + * Method: getSelectedValues + * + * Returns an array with the names (captions) of the selected rows + * + */ + p.getSelectedNames = function() + { + var selRows = this.getSelectedRows(); + var i,nRows = selRows.length(); + var selectedNames = []; + + for (i=0; i<nRows; i++) + { + selectedNames[i] = selRows.i(i).i(1); + } + + return selectedNames; + } + + /** * Method: getSelectedIndexes * |
|
From: Thyamad c. <th...@us...> - 2005-12-21 18:12:56
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26763 Modified Files: .sync_svn2cvs Log Message: Commiting file additions and modification from SVN revision 2482 to 2483... Changes made by vinicius on 2005-12-21 20:05:14 +0100 (Wed, 21 Dec 2005) corresponding to SVN revision 2483 with message: JScalendar changes to include time Index: .sync_svn2cvs =================================================================== RCS file: /cvsroot/thyapi/thyapi/.sync_svn2cvs,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** .sync_svn2cvs 4 Dec 2005 19:52:16 -0000 1.39 --- .sync_svn2cvs 21 Dec 2005 18:12:40 -0000 1.40 *************** *** 1 **** ! 2395 \ No newline at end of file --- 1 ---- ! 2483 \ No newline at end of file |
|
From: Thyamad c. <th...@us...> - 2005-12-21 18:12:51
|
Update of /cvsroot/thyapi/thyapi/thywidgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26763/thywidgets Modified Files: thypopupcalendar.js Log Message: Commiting file additions and modification from SVN revision 2482 to 2483... Changes made by vinicius on 2005-12-21 20:05:14 +0100 (Wed, 21 Dec 2005) corresponding to SVN revision 2483 with message: JScalendar changes to include time Index: thypopupcalendar.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/thypopupcalendar.js,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** thypopupcalendar.js 1 Sep 2005 18:15:38 -0000 1.1 --- thypopupcalendar.js 21 Dec 2005 18:12:42 -0000 1.2 *************** *** 61,64 **** --- 61,68 ---- this.readOnly = true; + + this.showsTime = false; + this.timeFormat = '24'; + this.timeDisplayFormat = ''; this.onCreate(this.initThyPopupCalendar); *************** *** 77,84 **** Calendar.setup({ inputField: this.name+'_input', ! ifFormat: this.format, button: this.calBtn, onSelect: this._calendarOnSelect(), ! thyAPIObj: this }); --- 81,90 ---- Calendar.setup({ inputField: this.name+'_input', ! ifFormat: this.format + this.timeDisplayFormat, button: this.calBtn, onSelect: this._calendarOnSelect(), ! thyAPIObj: this, ! showsTime: this.showsTime, ! timeFormat: this.timeFormat }); *************** *** 97,101 **** * Method: setFormat * ! * Sets the default format for displaying * * Parameters: --- 103,107 ---- * Method: setFormat * ! * Sets the default Date format for displaying * * Parameters: *************** *** 118,121 **** --- 124,168 ---- /** + * Method: setTime + * + * Sets the time visualization properties + * + * This must be called before calendar creation + * + * Parameters: + * + * shows - Boolean, true let the time dialog be shown + * format - The format, can be '12' or '24' + */ + p.setTime = function(shows,format) + { + if (format == null) + { + format = '24'; + } + + if (shows) + { + if (parseInt(format) == 12) + { + this.timeDisplayFormat = ' %I:%M %p' + } + else if (parseInt(format) == 24) + { + this.timeDisplayFormat = ' %H:%M' + } + } + else + { + this.timeDisplayFormat = ''; + } + + this.showsTime = shows; + this.timeFormat = format; + + if (this.timestamp != null) this.populate(this.getTimestamp()); + } + + /** * Method: getFormatted * *************** *** 128,132 **** var date = new Date(); date.setTime(this.timestamp); ! return date.print(this.format); } --- 175,179 ---- var date = new Date(); date.setTime(this.timestamp); ! return date.print(this.format + this.timeDisplayFormat); } |
|
From: Thyamad c. <th...@us...> - 2005-12-04 19:52:29
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30981 Modified Files: .sync_svn2cvs Log Message: Commiting file additions and modification from SVN revision 2394 to 2395... Changes made by vinicius on 2005-12-04 21:38:26 +0100 (Sun, 04 Dec 2005) corresponding to SVN revision 2395 with message: Index: .sync_svn2cvs =================================================================== RCS file: /cvsroot/thyapi/thyapi/.sync_svn2cvs,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** .sync_svn2cvs 3 Dec 2005 19:13:36 -0000 1.38 --- .sync_svn2cvs 4 Dec 2005 19:52:16 -0000 1.39 *************** *** 1 **** ! 2389 \ No newline at end of file --- 1 ---- ! 2395 \ No newline at end of file |
|
From: Thyamad c. <th...@us...> - 2005-12-04 19:52:29
|
Update of /cvsroot/thyapi/thyapi/thyfunctions In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30981/thyfunctions Modified Files: thyajaxcontent.js Log Message: Commiting file additions and modification from SVN revision 2394 to 2395... Changes made by vinicius on 2005-12-04 21:38:26 +0100 (Sun, 04 Dec 2005) corresponding to SVN revision 2395 with message: Index: thyajaxcontent.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thyfunctions/thyajaxcontent.js,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** thyajaxcontent.js 12 Sep 2005 18:43:04 -0000 1.1 --- thyajaxcontent.js 4 Dec 2005 19:52:16 -0000 1.2 *************** *** 40,43 **** --- 40,48 ---- }; + if (params == null) + { + params = { }; + } + //fill with default values for(var i in defaultParams) |
|
From: Thyamad c. <th...@us...> - 2005-12-04 19:52:28
|
Update of /cvsroot/thyapi/thyapi/thyutils In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30981/thyutils Modified Files: thyjsonprotocol.js Log Message: Commiting file additions and modification from SVN revision 2394 to 2395... Changes made by vinicius on 2005-12-04 21:38:26 +0100 (Sun, 04 Dec 2005) corresponding to SVN revision 2395 with message: Index: thyjsonprotocol.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thyutils/thyjsonprotocol.js,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** thyjsonprotocol.js 3 Dec 2005 19:13:36 -0000 1.3 --- thyjsonprotocol.js 4 Dec 2005 19:52:16 -0000 1.4 *************** *** 188,191 **** --- 188,192 ---- } + //viniciuscb: as in the writing of this there was not found a pattern for //date definition, the return will be an unix timestamp |
|
From: Thyamad c. <th...@us...> - 2005-12-03 19:13:53
|
Update of /cvsroot/thyapi/thyapi/thyutils In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9807/thyutils Modified Files: thyjsonprotocol.js Log Message: Commiting file additions and modification from SVN revision 2388 to 2389... Changes made by vinicius on 2005-12-03 20:59:32 +0100 (Sat, 03 Dec 2005) corresponding to SVN revision 2389 with message: Changes in ThyJSONProtocol to work in Internet Explorer Index: thyjsonprotocol.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thyutils/thyjsonprotocol.js,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** thyjsonprotocol.js 27 Oct 2005 02:36:09 -0000 1.2 --- thyjsonprotocol.js 3 Dec 2005 19:13:36 -0000 1.3 *************** *** 19,23 **** * Class: thyJSONProtocol * ! * This class implements the JSON specific methods. * */ --- 19,25 ---- * Class: thyJSONProtocol * ! * This class implements the JSON-RPC specific methods. ! * ! * See http://json-rpc.org/specs.xhtml * */ *************** *** 41,54 **** * * method - The name of the method to be called ! * params - The params to be passed to this method * */ p.encode = function (method, params) { ! params = params || {}; ! params['run'] = method; ! return params.toSource(); } /** * Method: decode --- 43,63 ---- * * method - The name of the method to be called ! * params - The params to be passed to this method. Always a javascript object * */ p.encode = function (method, params) { ! var call_array = {}; ! ! call_array['method'] = method; ! call_array['params'] = params; ! //id is not needed in ThyAPI, because one xmlhttprequest object is ! //created for each call to the server. So, the method that will receive ! //the response is the only method associated with the ! ! return this._encodeValue(call_array); } + /** * Method: decode *************** *** 66,70 **** try {*/ ! var ret = eval(response.text); /* } catch(err) --- 75,79 ---- try {*/ ! var ret = eval('('+response.text+')'); /* } catch(err) *************** *** 72,76 **** throw({result: 'Invalid JSON data', location: 'thyJSONProtocol.decode'}); }*/ ! return ret; } --- 81,100 ---- throw({result: 'Invalid JSON data', location: 'thyJSONProtocol.decode'}); }*/ ! ! //error ! if (typeof(ret) != 'object') ! { ! throw({result: 'Invalid JSON data', location: 'thyJSONProtocol.decode'}); ! return null; ! } ! ! if (ret['error']) ! { ! throw({result: ret['error'], location: 'thyJSONProtocol.decode'}); ! return null; ! } ! ! ! return ret['result']; } *************** *** 84,87 **** --- 108,112 ---- { //http://www.aminus.org/blogs/index.php/fumanchu/2005/05/18/content_type_text_json + //http://groups.yahoo.com/group/json-rpc/message/125 return 'text/x-json'; } *************** *** 98,99 **** --- 123,196 ---- } + + /** + * Method: _encodeValue + * + * Encodes a javascript element into a json string + */ + p._encodeValue = function(element) + { + var typeof_element = typeof(element); + + if (element == null) + { + return 'null'; + } + + switch (typeof_element) + { + case 'object': + return this._encodeObject(element); + case 'array': + return this._encodeArray(element); + case 'boolean': + return element.toString(); + case 'number': + return element.toString(); + case 'string': + return this._encodeString(element); + case 'date': + return this._encodeDate(element); + case 'function': + // FIXME: Is this necessary? + return '""'; + } + } + + p._encodeObject = function(element) + { + var v=[]; + for(attr in element) + { + if(typeof (element[attr]) != "function") + { + v.push('"' + attr + '": ' + this._encodeValue(element[attr])); + } + } + return "{" + v.join(", ") + "}"; + } + + p._encodeArray = function(element) + { + var v = []; + for(var i=0;i<element.length;i++) + { + v.push(this._encodeValue(element[i])) ; + } + return "[" + v.join(", ") + "]"; + } + + p._encodeString = function(element) + { + var s = '"' + element.replace(/(["\\])/g, '\\$1') + '"'; + s = s.replace(/(\n)/g,"\\n"); + return s; + } + + //viniciuscb: as in the writing of this there was not found a pattern for + //date definition, the return will be an unix timestamp + p._encodeDate = function(element) + { + return Date.UTC(element.getFullYear(),element.getMonth(),element.getDay(),element.getHours(),element.getMinutes(),element.getSeconds())/1000; + } + |
|
From: Thyamad c. <th...@us...> - 2005-12-03 19:13:47
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9807 Modified Files: .sync_svn2cvs Log Message: Commiting file additions and modification from SVN revision 2388 to 2389... Changes made by vinicius on 2005-12-03 20:59:32 +0100 (Sat, 03 Dec 2005) corresponding to SVN revision 2389 with message: Changes in ThyJSONProtocol to work in Internet Explorer Index: .sync_svn2cvs =================================================================== RCS file: /cvsroot/thyapi/thyapi/.sync_svn2cvs,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** .sync_svn2cvs 25 Nov 2005 01:55:08 -0000 1.37 --- .sync_svn2cvs 3 Dec 2005 19:13:36 -0000 1.38 *************** *** 1 **** ! 2336 \ No newline at end of file --- 1 ---- ! 2389 \ No newline at end of file |
|
From: Thyamad c. <th...@us...> - 2005-11-25 01:55:16
|
Update of /cvsroot/thyapi/thyapi/thyutils In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18601/thyutils Modified Files: thyprotocol.js thyxmlrpcprotocol.js Log Message: Commiting file additions and modification from SVN revision 2335 to 2336... Changes made by rpereira on 2005-11-25 03:37:59 +0100 (Fri, 25 Nov 2005) corresponding to SVN revision 2336 with message: - Added important dynapi.onClassLoad function - Correct bugs Index: thyprotocol.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thyutils/thyprotocol.js,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** thyprotocol.js 26 Oct 2005 18:37:26 -0000 1.6 --- thyprotocol.js 25 Nov 2005 01:55:09 -0000 1.7 *************** *** 70,73 **** --- 70,98 ---- } + /** + * Method: getServerURL + * + * Returns the server URL + * + */ + p.getServerURL = function() + { + return this.serverURL; + } + + /** + * Method: setServerURL + * + * Sets the server URL + * + * Parameter: + * + * url - The server URL + * + */ + p.setServerURL = function (url) + { + this.serverURL = url; + } /*************************************************************************\ * Private Methods * Index: thyxmlrpcprotocol.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thyutils/thyxmlrpcprotocol.js,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** thyxmlrpcprotocol.js 27 Oct 2005 02:36:09 -0000 1.7 --- thyxmlrpcprotocol.js 25 Nov 2005 01:55:09 -0000 1.8 *************** *** 126,140 **** } - /** - * Method: getServerURL - * - * Returns the server URL - * - */ - p.getServerURL = function() - { - return this.serverURL; - } - /*************************************************************************\ * Group: Private Methods * --- 126,129 ---- |
|
From: Thyamad c. <th...@us...> - 2005-11-25 01:55:16
|
Update of /cvsroot/thyapi/thyapi/thywidgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18601/thywidgets Modified Files: thyformpanel.js Log Message: Commiting file additions and modification from SVN revision 2335 to 2336... Changes made by rpereira on 2005-11-25 03:37:59 +0100 (Fri, 25 Nov 2005) corresponding to SVN revision 2336 with message: - Added important dynapi.onClassLoad function - Correct bugs Index: thyformpanel.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/thyformpanel.js,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** thyformpanel.js 21 Nov 2005 13:54:09 -0000 1.1 --- thyformpanel.js 25 Nov 2005 01:55:09 -0000 1.2 *************** *** 46,51 **** function thyFormPanel(name, startup) { ! this.thyDialogWindow = thyDialogWindow; ! this.thyDialogWindow(name); // Attributes \\ --- 46,51 ---- function thyFormPanel(name, startup) { ! this.thyPanel = thyPanel; ! this.thyPanel(name); // Attributes \\ |
|
From: Thyamad c. <th...@us...> - 2005-11-25 01:55:16
|
Update of /cvsroot/thyapi/thyapi/thybase In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18601/thybase Modified Files: thybase.js Log Message: Commiting file additions and modification from SVN revision 2335 to 2336... Changes made by rpereira on 2005-11-25 03:37:59 +0100 (Fri, 25 Nov 2005) corresponding to SVN revision 2336 with message: - Added important dynapi.onClassLoad function - Correct bugs Index: thybase.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thybase/thybase.js,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** thybase.js 1 Sep 2005 18:15:37 -0000 1.1 --- thybase.js 25 Nov 2005 01:55:08 -0000 1.2 *************** *** 231,232 **** --- 231,286 ---- } + /** + * Function: dynapi.onClassLoad + * + * Runs script upon class load + * + * Parameters: + * + * className - The class name + * func - The function to be run + * + */ + dynapi.onClassLoad = function (className, func) + { + if (window[className]) + { + func(); + return; + } + + if (!dynapi.waitingLoad) dynapi.waitingLoad = {}; + + if (!dynapi.waitingLoad[className]) dynapi.waitingLoad[className] = [func]; + else dynapi.waitingLoad[className].push(func); + + if (!dynapi.waitingLoadInt) + dynapi.waitingLoadInt = setInterval(dynapi.waitingLoadFunc, 100); + } + + dynapi.waitingLoadFunc = function() + { + var i,j; + + for (i in dynapi.waitingLoad) + { + var funcs = dynapi.waitingLoad[i]; + if (window[i]) + { + for (j=0; j<funcs.length; j++) + funcs[j](); + + funcs = null; + dynapi.waitingLoad[i] = null; + delete dynapi.waitingLoad[i]; + } + } + + var c = 0; + for (i in dynapi.waitingLoad) + { + c++; + } + + if (!c) clearInterval(dynapi.waitingLoadInt); + } |
|
From: Thyamad c. <th...@us...> - 2005-11-25 01:55:16
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18601 Modified Files: .sync_svn2cvs Log Message: Commiting file additions and modification from SVN revision 2335 to 2336... Changes made by rpereira on 2005-11-25 03:37:59 +0100 (Fri, 25 Nov 2005) corresponding to SVN revision 2336 with message: - Added important dynapi.onClassLoad function - Correct bugs Index: .sync_svn2cvs =================================================================== RCS file: /cvsroot/thyapi/thyapi/.sync_svn2cvs,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** .sync_svn2cvs 25 Nov 2005 00:22:57 -0000 1.36 --- .sync_svn2cvs 25 Nov 2005 01:55:08 -0000 1.37 *************** *** 1 **** ! 2334 \ No newline at end of file --- 1 ---- ! 2336 \ No newline at end of file |
|
From: Thyamad c. <th...@us...> - 2005-11-25 00:23:12
|
Update of /cvsroot/thyapi/thyapi/thythemes/concisus In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3068/thythemes/concisus Modified Files: 00thypanel.css 05thytabsmanager.css 10thylabelpanel.css 110thyeditbox.css 111thytextedit.css 112thycheckbox.css 40thybutton.css 411thypopupcalendar.css 41thywindow.css 42thydialogwindow.css 50thygridcell.css 60thygrid.css 80thydropdownbox.css Log Message: Commiting file additions and modification from SVN revision 2333 to 2334... Changes made by rpereira on 2005-11-25 02:05:38 +0100 (Fri, 25 Nov 2005) corresponding to SVN revision 2334 with message: - Concisus theme updated to current Concisus release Index: 10thylabelpanel.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thythemes/concisus/10thylabelpanel.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** 10thylabelpanel.css 1 Sep 2005 18:15:38 -0000 1.3 --- 10thylabelpanel.css 25 Nov 2005 00:22:57 -0000 1.4 *************** *** 19,21 **** --- 19,22 ---- { background-color: #ebebeb ! important; + color: #555 ! important; } Index: 60thygrid.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thythemes/concisus/60thygrid.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** 60thygrid.css 1 Sep 2005 18:15:38 -0000 1.3 --- 60thygrid.css 25 Nov 2005 00:22:57 -0000 1.4 *************** *** 12,16 **** float: none; width: 100%; - background-color: #EEEEEE; overflow: auto; } --- 12,15 ---- *************** *** 30,36 **** .thyGrid_col-1_header { ! border-right-width: 1px; border-right-style: solid; ! border-right-color: black; } --- 29,35 ---- .thyGrid_col-1_header { ! /*border-right-width: 1px; border-right-style: solid; ! border-right-color: black;*/ } Index: 05thytabsmanager.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thythemes/concisus/05thytabsmanager.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** 05thytabsmanager.css 1 Sep 2005 18:15:38 -0000 1.3 --- 05thytabsmanager.css 25 Nov 2005 00:22:57 -0000 1.4 *************** *** 1,14 **** .thyTabsManager { - position: absolute; } .thyTabsManager_contents { ! border: 1px solid black; padding-top: 8px; margin-top: 0px; text-align: left; - background-color: #D3DCE3; overflow: auto; } --- 1,12 ---- .thyTabsManager { } .thyTabsManager_contents { ! border-top: 1px solid #999; padding-top: 8px; margin-top: 0px; text-align: left; overflow: auto; } *************** *** 20,23 **** --- 18,22 ---- .thyTabsManager_tabsPanel_ie { + height: 30px; } *************** *** 26,42 **** 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;; } --- 25,45 ---- position: relative; float: left; ! border: 1px solid #999; } .thyTabsManager_control_active { ! bottom: 0px; ! padding: 5px; ! border-bottom: 1px solid #d8e7f1; ! background-color: #d8e7f1; ! font-weight: bold; } .thyTabsManager_control_inactive { ! bottom: -5px; ! padding: 3px; ! border-bottom: 1px solid #999; ! background-color: #c5d2db; } Index: 411thypopupcalendar.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thythemes/concisus/411thypopupcalendar.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** 411thypopupcalendar.css 1 Sep 2005 18:15:38 -0000 1.3 --- 411thypopupcalendar.css 25 Nov 2005 00:22:57 -0000 1.4 *************** *** 15,19 **** min-width: 23px; width: 23px; ! background-image: url('{css_dir}/images/calendar.png'); background-repeat: no-repeat; background-position: center; --- 15,19 ---- min-width: 23px; width: 23px; ! background-image: url({css_dir}/../images/calendar.png); background-repeat: no-repeat; background-position: center; Index: 50thygridcell.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thythemes/concisus/50thygridcell.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** 50thygridcell.css 1 Sep 2005 18:15:38 -0000 1.3 --- 50thygridcell.css 25 Nov 2005 00:22:57 -0000 1.4 *************** *** 1,5 **** .thyGridCell { ! background-color: #ffffff; } --- 1,5 ---- .thyGridCell { ! background-color: #FFF; } *************** *** 21,40 **** .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'); } --- 21,40 ---- .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'); } Index: 110thyeditbox.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thythemes/concisus/110thyeditbox.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** 110thyeditbox.css 1 Sep 2005 18:15:38 -0000 1.3 --- 110thyeditbox.css 25 Nov 2005 00:22:57 -0000 1.4 *************** *** 8,12 **** text-align: left; background-color: white; - text-align: right; border-width: 1px; border-style: solid; --- 8,11 ---- Index: 112thycheckbox.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thythemes/concisus/112thycheckbox.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** 112thycheckbox.css 1 Sep 2005 18:15:38 -0000 1.3 --- 112thycheckbox.css 25 Nov 2005 00:22:57 -0000 1.4 *************** *** 27,31 **** border-color: #999999; ! background-image: url('{css_dir}/images/thycheckbox-unchecked.png'); background-repeat: no-repeat; background-position: center; --- 27,31 ---- border-color: #999999; ! background-image: url('{css_dir}/../images/thycheckbox-unchecked.png'); background-repeat: no-repeat; background-position: center; *************** *** 38,42 **** .thyCheckBox_contents_checked { ! background-image: url('{css_dir}/images/thycheckbox-checked.png'); border-color: #00f; } --- 38,42 ---- .thyCheckBox_contents_checked { ! background-image: url('{css_dir}/../images/thycheckbox-checked.png'); border-color: #00f; } Index: 00thypanel.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thythemes/concisus/00thypanel.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** 00thypanel.css 1 Sep 2005 18:15:38 -0000 1.3 --- 00thypanel.css 25 Nov 2005 00:22:57 -0000 1.4 *************** *** 2,5 **** --- 2,6 ---- { background-color: #ebebeb ! important; + color: #555 ! important; } Index: 41thywindow.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thythemes/concisus/41thywindow.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** 41thywindow.css 1 Sep 2005 18:15:38 -0000 1.3 --- 41thywindow.css 25 Nov 2005 00:22:57 -0000 1.4 *************** *** 4,9 **** } ! .thyWindow_window { } --- 4,17 ---- } ! .thyWindow_ie ! { ! width: 0px; ! height: 0px; ! } ! ! .thyWindow_window_ie { + width: 0px; + height: 0px; } *************** *** 66,70 **** .thyWindow_title { ! color: #ffffff; font-style: none; font-weight: bold; --- 74,78 ---- .thyWindow_title { ! color: #FFF; font-style: none; font-weight: bold; *************** *** 79,83 **** border-width: 1px;*/ ! background-image: url('{css_dir}/images/thywindow-title-bg.png'); cursor: pointer; --- 87,91 ---- border-width: 1px;*/ ! background-image: url('{css_dir}/../images/thywindow-title-bg.png'); cursor: pointer; *************** *** 92,96 **** top: 1px; position: absolute; ! background-image: url('{css_dir}/images/x.png'); background-repeat: no-repeat; background-position: center; --- 100,104 ---- top: 1px; position: absolute; ! background-image: url('{css_dir}/../images/winclose-concisus.png'); background-repeat: no-repeat; background-position: center; Index: 40thybutton.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thythemes/concisus/40thybutton.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** 40thybutton.css 1 Sep 2005 18:15:38 -0000 1.3 --- 40thybutton.css 25 Nov 2005 00:22:57 -0000 1.4 *************** *** 15,24 **** /* 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'); } --- 15,24 ---- /* 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'); } Index: 80thydropdownbox.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thythemes/concisus/80thydropdownbox.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** 80thydropdownbox.css 1 Sep 2005 18:15:38 -0000 1.3 --- 80thydropdownbox.css 25 Nov 2005 00:22:57 -0000 1.4 *************** *** 10,22 **** .thyDropDownBox_contents { ! width: auto; ! height: auto; } ! .thyDropDownBox_edit, ! .thyDropDownBox_edit_contents { width: 100%; ! /*overflow: visible;*/ } --- 10,35 ---- .thyDropDownBox_contents { ! border-width: 1px; ! border-style: solid; ! border-color: #999999; ! height: 18px; } ! .thyDropDownBox_edit { width: 100%; ! } ! ! .thyDropDownBox_edit_contents ! { ! position: absolute; ! left: 0px; ! right: 17px; ! border: none; ! } ! ! .thyDropDownBox_edit_label ! { ! display: none; } *************** *** 25,29 **** position: absolute; top: 1px; ! right: -21px; margin: 0px; min-width: 14px; --- 38,42 ---- position: absolute; top: 1px; ! right: 1px; margin: 0px; min-width: 14px; *************** *** 31,41 **** 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; --- 44,53 ---- height: 14px; padding: 0px; ! background-image: url('{css_dir}/../images/thydropdown-button.png'); background-repeat: no-repeat; background-position: center; } ! .thyDropDownBox_listBox { position: absolute; *************** *** 61,64 **** --- 73,77 ---- .thyDropDownBox_listBox_label { + position: static; display: none; } *************** *** 66,69 **** --- 79,83 ---- .thyDropDownBox_listBox_contents { + position: static; border: 0px; background-color: #f0f0ff; *************** *** 73,77 **** .thyDropDownBox_listBox_cell_selected { ! background-image: url('{css_dir}/images/thycheckbox-checked.png'); background-repeat: no-repeat; background-position: left; --- 87,91 ---- .thyDropDownBox_listBox_cell_selected { ! background-image: url('{css_dir}/../images/thycheckbox-checked.png'); background-repeat: no-repeat; background-position: left; Index: 111thytextedit.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thythemes/concisus/111thytextedit.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** 111thytextedit.css 1 Sep 2005 18:15:38 -0000 1.3 --- 111thytextedit.css 25 Nov 2005 00:22:57 -0000 1.4 *************** *** 1,11 **** .thyTextEdit_label { ! } .thyTextEdit_contents { background-color: white; text-align: right; border: 1px solid #999999; } --- 1,13 ---- .thyTextEdit_label { ! float:none; } .thyTextEdit_contents { + float: none; background-color: white; text-align: right; border: 1px solid #999999; + width: 100%; } Index: 42thydialogwindow.css =================================================================== RCS file: /cvsroot/thyapi/thyapi/thythemes/concisus/42thydialogwindow.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** 42thydialogwindow.css 1 Sep 2005 18:15:38 -0000 1.3 --- 42thydialogwindow.css 25 Nov 2005 00:22:57 -0000 1.4 *************** *** 6,10 **** .thyDialogWindow_ie { - width: auto; } --- 6,9 ---- *************** *** 69,72 **** --- 68,73 ---- .thyDialogWindow_button { + position: relative; + float: right; margin-bottom: 5px; } |
|
From: Thyamad c. <th...@us...> - 2005-11-25 00:23:10
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3068 Modified Files: .sync_svn2cvs Log Message: Commiting file additions and modification from SVN revision 2333 to 2334... Changes made by rpereira on 2005-11-25 02:05:38 +0100 (Fri, 25 Nov 2005) corresponding to SVN revision 2334 with message: - Concisus theme updated to current Concisus release Index: .sync_svn2cvs =================================================================== RCS file: /cvsroot/thyapi/thyapi/.sync_svn2cvs,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** .sync_svn2cvs 22 Nov 2005 20:53:26 -0000 1.35 --- .sync_svn2cvs 25 Nov 2005 00:22:57 -0000 1.36 *************** *** 1 **** ! 2318 \ No newline at end of file --- 1 ---- ! 2334 \ No newline at end of file |
|
From: Thyamad c. <th...@us...> - 2005-11-22 20:53:34
|
Update of /cvsroot/thyapi/thyapi/thythemes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30010/thythemes Modified Files: theme_loader.php Log Message: Commiting file additions and modification from SVN revision 2317 to 2318... Changes made by rpereira on 2005-11-22 22:35:12 +0100 (Tue, 22 Nov 2005) corresponding to SVN revision 2318 with message: - Theme loader class changed to _thyapi_theme Index: theme_loader.php =================================================================== RCS file: /cvsroot/thyapi/thyapi/thythemes/theme_loader.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** theme_loader.php 1 Sep 2005 18:15:38 -0000 1.3 --- theme_loader.php 22 Nov 2005 20:53:26 -0000 1.4 *************** *** 36,44 **** */ ! class thyapi_theme { var $custom; ! function thyapi_theme() { if (!$GLOBALS['thyapi']['theme']) return; --- 36,44 ---- */ ! class _thyapi_theme { var $custom; ! function _thyapi_theme() { if (!$GLOBALS['thyapi']['theme']) return; *************** *** 121,124 **** } ! $theme = new thyapi_theme(); --- 121,124 ---- } ! $theme = new _thyapi_theme(); |
|
From: Thyamad c. <th...@us...> - 2005-11-22 20:53:34
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30010 Modified Files: .sync_svn2cvs Log Message: Commiting file additions and modification from SVN revision 2317 to 2318... Changes made by rpereira on 2005-11-22 22:35:12 +0100 (Tue, 22 Nov 2005) corresponding to SVN revision 2318 with message: - Theme loader class changed to _thyapi_theme Index: .sync_svn2cvs =================================================================== RCS file: /cvsroot/thyapi/thyapi/.sync_svn2cvs,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** .sync_svn2cvs 22 Nov 2005 00:59:42 -0000 1.34 --- .sync_svn2cvs 22 Nov 2005 20:53:26 -0000 1.35 *************** *** 1 **** ! 2298 \ No newline at end of file --- 1 ---- ! 2318 \ No newline at end of file |
|
From: Thyamad c. <th...@us...> - 2005-11-22 00:59:50
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10908 Modified Files: .sync_svn2cvs Log Message: Commiting file additions and modification from SVN revision 2297 to 2298... Changes made by rpereira on 2005-11-22 02:40:28 +0100 (Tue, 22 Nov 2005) corresponding to SVN revision 2298 with message: - Removing FCK editor source and documentation. If user needs them, get them from FCK site. This will turn thyAPI into a smaller package Index: .sync_svn2cvs =================================================================== RCS file: /cvsroot/thyapi/thyapi/.sync_svn2cvs,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** .sync_svn2cvs 22 Nov 2005 00:59:18 -0000 1.33 --- .sync_svn2cvs 22 Nov 2005 00:59:42 -0000 1.34 *************** *** 1,7 **** ! 2298 ! a:2:{s:5:"added";a:0:{}s:8:"messages";s:262:"Changes made by rpereira on 2005-11-22 02:40:28 +0100 (Tue, 22 Nov 2005) corresponding to SVN revision 2298 with message: ! ! - Removing FCK editor source and documentation. If user needs them, get them from FCK site. This will turn thyAPI into a smaller package ! ! ! ";} \ No newline at end of file --- 1 ---- ! 2298 \ No newline at end of file |
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/_source/internals In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10707/thywidgets/external/fckeditor/editor/_source/internals Removed Files: fck.js fck_1.js fck_1_gecko.js fck_1_ie.js fck_2.js fck_2_gecko.js fck_2_ie.js fck_last.js fck_onload.js fckbrowserinfo.js fckcodeformatter.js fckcommands.js fckconfig.js fckcontextmenu.js fckcontextmenu_gecko.js fckcontextmenu_ie.js fckcoreextensions.js fckdebug.js fckdialog.js fckdialog_gecko.js fckdialog_ie.js fcklanguagemanager.js fcknamespace.js fckplugins.js fckregexlib.js fckscriptloader.js fckselection.js fckselection_gecko.js fckselection_ie.js fcktablehandler.js fcktablehandler_gecko.js fcktablehandler_ie.js fcktoolbaritems.js fcktoolbarset.js fcktools.js fcktools_gecko.js fcktools_ie.js fckundo_gecko.js fckundo_ie.js fckurlparams.js fckxhtml.js fckxhtml_gecko.js fckxhtml_ie.js fckxhtmlentities.js Log Message: Commiting file removals... --- fcktoolbarset.js DELETED --- --- fckcontextmenu_gecko.js DELETED --- --- fcktools_gecko.js DELETED --- --- fckcoreextensions.js DELETED --- --- fcktools_ie.js DELETED --- --- fckundo_gecko.js DELETED --- --- fck_2_gecko.js DELETED --- --- fckbrowserinfo.js DELETED --- --- fckdialog.js DELETED --- --- fck_2.js DELETED --- --- fcklanguagemanager.js DELETED --- --- fckcontextmenu.js DELETED --- --- fckscriptloader.js DELETED --- --- fckcommands.js DELETED --- --- fcktools.js DELETED --- --- fck_2_ie.js DELETED --- --- fck_1.js DELETED --- --- fckregexlib.js DELETED --- --- fckurlparams.js DELETED --- --- fckcodeformatter.js DELETED --- --- fckselection.js DELETED --- --- fck.js DELETED --- --- fcktoolbaritems.js DELETED --- --- fcktablehandler.js DELETED --- --- fckundo_ie.js DELETED --- --- fckplugins.js DELETED --- --- fcktablehandler_ie.js DELETED --- --- fckselection_ie.js DELETED --- --- fcknamespace.js DELETED --- --- fckxhtmlentities.js DELETED --- --- fcktablehandler_gecko.js DELETED --- --- fckxhtml_gecko.js DELETED --- --- fckxhtml_ie.js DELETED --- --- fck_last.js DELETED --- --- fck_1_gecko.js DELETED --- --- fckselection_gecko.js DELETED --- --- fckdialog_gecko.js DELETED --- --- fckxhtml.js DELETED --- --- fck_onload.js DELETED --- --- fckcontextmenu_ie.js DELETED --- --- fck_1_ie.js DELETED --- --- fckconfig.js DELETED --- --- fckdebug.js DELETED --- --- fckdialog_ie.js DELETED --- |
|
From: Thyamad c. <th...@us...> - 2005-11-22 00:59:30
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/_samples/cfm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10707/thywidgets/external/fckeditor/_samples/cfm Removed Files: sample01.cfm sample02_mx.cfm Log Message: Commiting file removals... --- sample02_mx.cfm DELETED --- --- sample01.cfm DELETED --- |
|
From: Thyamad c. <th...@us...> - 2005-11-22 00:59:30
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/_source/commandclasses In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10707/thywidgets/external/fckeditor/editor/_source/commandclasses Removed Files: fck_othercommands.js fcknamedcommand.js fckpasteplaintextcommand.js fckpastewordcommand.js fckspellcheckcommand_gecko.js fckspellcheckcommand_ie.js fckstylecommand.js fcktablecommand.js fcktextcolorcommand.js Log Message: Commiting file removals... --- fcktablecommand.js DELETED --- --- fckpastewordcommand.js DELETED --- --- fckspellcheckcommand_ie.js DELETED --- --- fcknamedcommand.js DELETED --- --- fckstylecommand.js DELETED --- --- fckspellcheckcommand_gecko.js DELETED --- --- fckpasteplaintextcommand.js DELETED --- --- fck_othercommands.js DELETED --- --- fcktextcolorcommand.js DELETED --- |
|
From: Thyamad c. <th...@us...> - 2005-11-22 00:59:29
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/_samples/asp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10707/thywidgets/external/fckeditor/_samples/asp Removed Files: sample01.asp sample02.asp sample03.asp sample04.asp sampleposteddata.asp Log Message: Commiting file removals... --- sample03.asp DELETED --- --- sample04.asp DELETED --- --- sampleposteddata.asp DELETED --- --- sample02.asp DELETED --- --- sample01.asp DELETED --- |
|
From: Thyamad c. <th...@us...> - 2005-11-22 00:59:29
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/_testcases In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10707/thywidgets/external/fckeditor/_testcases Removed Files: 001.html 002.html 003.html 004.html 005.html 006.html 007.html 008.html sampleposteddata.asp testcases.css Log Message: Commiting file removals... --- 005.html DELETED --- --- 007.html DELETED --- --- testcases.css DELETED --- --- 001.html DELETED --- --- 008.html DELETED --- --- 004.html DELETED --- --- 006.html DELETED --- --- 002.html DELETED --- --- 003.html DELETED --- --- sampleposteddata.asp DELETED --- |
|
From: Thyamad c. <th...@us...> - 2005-11-22 00:59:29
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/_source/globals In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10707/thywidgets/external/fckeditor/editor/_source/globals Removed Files: fck_constants.js fckeditorapi.js Log Message: Commiting file removals... --- fck_constants.js DELETED --- --- fckeditorapi.js DELETED --- |
|
From: Thyamad c. <th...@us...> - 2005-11-22 00:59:29
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/_samples/php In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10707/thywidgets/external/fckeditor/_samples/php Removed Files: sample01.php sample02.php sample03.php sample04.php sampleposteddata.php Log Message: Commiting file removals... --- sample01.php DELETED --- --- sample02.php DELETED --- --- sample04.php DELETED --- --- sampleposteddata.php DELETED --- --- sample03.php DELETED --- |
|
From: Thyamad c. <th...@us...> - 2005-11-22 00:59:29
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/_samples/perl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10707/thywidgets/external/fckeditor/_samples/perl Removed Files: sample01.cgi sample02.cgi sample03.cgi sample04.cgi sampleposteddata.cgi Log Message: Commiting file removals... --- sample03.cgi DELETED --- --- sample01.cgi DELETED --- --- sample02.cgi DELETED --- --- sampleposteddata.cgi DELETED --- --- sample04.cgi DELETED --- |