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...> - 2006-01-17 22:35:17
|
Update of /cvsroot/thyapi/thyapi/api In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25977/api Modified Files: event.js Log Message: Commiting file additions and modification from SVN revision 2646 to 2647... Changes made by vinicius on 2006-01-18 00:37:38 +0100 (Wed, 18 Jan 2006) corresponding to SVN revision 2647 with message: disabled all css for thygrid Index: event.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/api/event.js,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** event.js 1 Sep 2005 19:05:03 -0000 1.1 --- event.js 17 Jan 2006 22:35:06 -0000 1.2 *************** *** 155,159 **** var ch =this.children; var aSz = this._aSz; ! this._aSz = false; // prevent children from adjusting parent's size when removed while(ch.length) { c=ch[0]; --- 155,159 ---- var ch =this.children; var aSz = this._aSz; ! this._aSz = false; // prevent children from adjusting parents size when removed while(ch.length) { c=ch[0]; |
From: Thyamad c. <th...@us...> - 2006-01-17 22:35:17
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25977 Modified Files: .sync_svn2cvs dynapi.js Log Message: Commiting file additions and modification from SVN revision 2646 to 2647... Changes made by vinicius on 2006-01-18 00:37:38 +0100 (Wed, 18 Jan 2006) corresponding to SVN revision 2647 with message: disabled all css for thygrid Index: .sync_svn2cvs =================================================================== RCS file: /cvsroot/thyapi/thyapi/.sync_svn2cvs,v retrieving revision 1.52 retrieving revision 1.53 diff -C2 -d -r1.52 -r1.53 *** .sync_svn2cvs 16 Jan 2006 03:36:39 -0000 1.52 --- .sync_svn2cvs 17 Jan 2006 22:35:06 -0000 1.53 *************** *** 1 **** ! 2636 \ No newline at end of file --- 1 ---- ! 2647 \ No newline at end of file Index: dynapi.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/dynapi.js,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** dynapi.js 20 Sep 2005 05:31:13 -0000 1.6 --- dynapi.js 17 Jan 2006 22:35:06 -0000 1.7 *************** *** 460,461 **** --- 460,524 ---- // deprecated var DynAPI = dynapi; + + var dyntracing = {}; + + function startTracing() { } + + function endTracing() { } + + function showTracing() { } + + /* + function startTracing(objname,funcname) + { + if (!dyntracing[objname]) + { + dyntracing[objname] = {}; + } + + if (!dyntracing[objname][funcname]) + { + dyntracing[objname][funcname] = { }; + } + var s = (new Date()).valueOf(); + dyntracing[objname][funcname].s = s; //start + } + + function endTracing(objname,funcname) + { + var e = (new Date()).valueOf(); + + if (!dyntracing[objname] || !dyntracing[objname][funcname] || !dyntracing[objname][funcname].s) + { + return; + } + + if (!dyntracing[objname][funcname].tt) + { + dyntracing[objname][funcname].tt = 0; //total time + dyntracing[objname][funcname].c = 0; //count + } + + dyntracing[objname][funcname].tt += (e - dyntracing[objname][funcname].s); + dyntracing[objname][funcname].c += 1; + dyntracing[objname][funcname].s = 0; + } + + function showTracing() + { + var i,j, out; + out = ''; + for (i in dyntracing) + { + out += "---------\n"; + out += "object: " + i + "\n"; + for (j in dyntracing[i]) + { + out += " f: " + j + "\n"; + out += " time: " + dyntracing[i][j].tt + " , count: " + dyntracing[i][j].c + " ratio: " + (dyntracing[i][j].tt/dyntracing[i][j].c) + "\n"; + } + } + return out; + } + */ + |
From: Thyamad c. <th...@us...> - 2006-01-16 03:36:47
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14567 Modified Files: .sync_svn2cvs Log Message: Commiting file additions and modification from SVN revision 2635 to 2636... Changes made by vinicius on 2006-01-16 05:39:15 +0100 (Mon, 16 Jan 2006) corresponding to SVN revision 2636 with message: window now cannot go out of the screen Index: .sync_svn2cvs =================================================================== RCS file: /cvsroot/thyapi/thyapi/.sync_svn2cvs,v retrieving revision 1.51 retrieving revision 1.52 diff -C2 -d -r1.51 -r1.52 *** .sync_svn2cvs 16 Jan 2006 03:31:18 -0000 1.51 --- .sync_svn2cvs 16 Jan 2006 03:36:39 -0000 1.52 *************** *** 1 **** ! 2635 \ No newline at end of file --- 1 ---- ! 2636 \ No newline at end of file |
From: Thyamad c. <th...@us...> - 2006-01-16 03:36:47
|
Update of /cvsroot/thyapi/thyapi/thywidgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14567/thywidgets Modified Files: thywindow.js Log Message: Commiting file additions and modification from SVN revision 2635 to 2636... Changes made by vinicius on 2006-01-16 05:39:15 +0100 (Mon, 16 Jan 2006) corresponding to SVN revision 2636 with message: window now cannot go out of the screen Index: thywindow.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/thywindow.js,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** thywindow.js 16 Jan 2006 03:31:19 -0000 1.7 --- thywindow.js 16 Jan 2006 03:36:40 -0000 1.8 *************** *** 200,220 **** { var pos = thyWindow._getWindowPosition(self); ! if (pos.x < 0) ! { ! self.setX(0); ! } ! else ! { ! self.setX(pos.x); ! } ! ! if (pos.y < 0) ! { ! self.setY(0); ! } ! else ! { ! self.setY(pos.y); ! } }; --- 200,205 ---- { var pos = thyWindow._getWindowPosition(self); ! self.setX(pos.x); ! self.setY(pos.y); }; *************** *** 336,340 **** '<tr><td id="'+this.name+'_l'+'" class="'+this.getCSSClasses('left')+'"></td>', '<td id="'+this.name+'_contentHolder" class="'+this.getCSSClasses('window')+'">', ! // style="position: relative">'+this._thyBorderPanelGetInnerHTML(), '<div style="position: relative; width: 100%; height: 100%">'+this._thyPanelGetInnerHTML()+'</div>', '</td>', --- 321,325 ---- '<tr><td id="'+this.name+'_l'+'" class="'+this.getCSSClasses('left')+'"></td>', '<td id="'+this.name+'_contentHolder" class="'+this.getCSSClasses('window')+'">', ! /* style="position: relative">'+this._thyBorderPanelGetInnerHTML(), */ '<div style="position: relative; width: 100%; height: 100%">'+this._thyPanelGetInnerHTML()+'</div>', '</td>', *************** *** 452,455 **** --- 437,443 ---- positions_y[thyWin.name][y] = y; + if (x<0) x=0; + if (y<0) y=0; + return {x:x,y:y}; } *************** *** 549,554 **** { this.winDragBorder.setDisplay(true); ! this.setX(this.winDragBorder.getAbsoluteX()); ! this.setY(this.winDragBorder.getAbsoluteY()); this.winDragBorder.setDisplay(false); this.setDisplay(true); --- 537,544 ---- { this.winDragBorder.setDisplay(true); ! var absx = this.winDragBorder.getAbsoluteX(); ! var absy = this.winDragBorder.getAbsoluteY(); ! this.setX((absx<0)?0:absx); ! this.setY((absy<0)?0:absy); this.winDragBorder.setDisplay(false); this.setDisplay(true); |
From: Thyamad c. <th...@us...> - 2006-01-16 03:31:27
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13693 Modified Files: .sync_svn2cvs Log Message: Commiting file additions and modification from SVN revision 2634 to 2635... Changes made by vinicius on 2006-01-16 05:33:22 +0100 (Mon, 16 Jan 2006) corresponding to SVN revision 2635 with message: dont allow window to initialize outside parent window Index: .sync_svn2cvs =================================================================== RCS file: /cvsroot/thyapi/thyapi/.sync_svn2cvs,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -d -r1.50 -r1.51 *** .sync_svn2cvs 15 Jan 2006 21:54:22 -0000 1.50 --- .sync_svn2cvs 16 Jan 2006 03:31:18 -0000 1.51 *************** *** 1 **** ! 2628 \ No newline at end of file --- 1 ---- ! 2635 \ No newline at end of file |
From: Thyamad c. <th...@us...> - 2006-01-16 03:31:27
|
Update of /cvsroot/thyapi/thyapi/thywidgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13693/thywidgets Modified Files: thywindow.js Log Message: Commiting file additions and modification from SVN revision 2634 to 2635... Changes made by vinicius on 2006-01-16 05:33:22 +0100 (Mon, 16 Jan 2006) corresponding to SVN revision 2635 with message: dont allow window to initialize outside parent window Index: thywindow.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/thywindow.js,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** thywindow.js 1 Sep 2005 18:15:38 -0000 1.6 --- thywindow.js 16 Jan 2006 03:31:19 -0000 1.7 *************** *** 200,205 **** { var pos = thyWindow._getWindowPosition(self); ! self.setX(pos.x); ! self.setY(pos.y); }; --- 200,220 ---- { var pos = thyWindow._getWindowPosition(self); ! if (pos.x < 0) ! { ! self.setX(0); ! } ! else ! { ! self.setX(pos.x); ! } ! ! if (pos.y < 0) ! { ! self.setY(0); ! } ! else ! { ! self.setY(pos.y); ! } }; |
From: Thyamad c. <th...@us...> - 2006-01-15 21:54:30
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32368 Modified Files: .sync_svn2cvs Log Message: Commiting file additions and modification from SVN revision 2627 to 2628... Changes made by vinicius on 2006-01-15 23:56:24 +0100 (Sun, 15 Jan 2006) corresponding to SVN revision 2628 with message: change to allow execution of js function prior thyajaxcontent puts an content Index: .sync_svn2cvs =================================================================== RCS file: /cvsroot/thyapi/thyapi/.sync_svn2cvs,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** .sync_svn2cvs 12 Jan 2006 14:59:21 -0000 1.49 --- .sync_svn2cvs 15 Jan 2006 21:54:22 -0000 1.50 *************** *** 1 **** ! 2594 \ No newline at end of file --- 1 ---- ! 2628 \ No newline at end of file |
From: Thyamad c. <th...@us...> - 2006-01-15 21:54:30
|
Update of /cvsroot/thyapi/thyapi/thyfunctions In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32368/thyfunctions Modified Files: thyajaxcontent.js Log Message: Commiting file additions and modification from SVN revision 2627 to 2628... Changes made by vinicius on 2006-01-15 23:56:24 +0100 (Sun, 15 Jan 2006) corresponding to SVN revision 2628 with message: change to allow execution of js function prior thyajaxcontent puts an content Index: thyajaxcontent.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thyfunctions/thyajaxcontent.js,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** thyajaxcontent.js 4 Dec 2005 19:52:16 -0000 1.2 --- thyajaxcontent.js 15 Jan 2006 21:54:22 -0000 1.3 *************** *** 78,90 **** { var data = self.protocol.decode(response); ! ! if (self.append) { ! self.DOMElement.innerHTML += data; } else { ! self.DOMElement.innerHTML = data; } if (self.CSSClass) --- 78,108 ---- { var data = self.protocol.decode(response); ! ! if (data.status == 'ok') { ! if (data.beforeload) ! { ! eval(data.beforeload); ! } ! ! if (self.append) ! { ! self.DOMElement.innerHTML += data.data; ! } ! else ! { ! self.DOMElement.innerHTML = data.data; ! } ! ! if (data.afterload) ! { ! eval(data.afterload); ! } } else { ! alert ('thyAjaxContent: error with received ajax data. '+data.msg); } + if (self.CSSClass) |
From: Thyamad c. <th...@us...> - 2006-01-12 14:59:28
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28991 Modified Files: .sync_svn2cvs Log Message: Commiting file additions and modification from SVN revision 2593 to 2594... Changes made by vinicius on 2006-01-12 17:00:19 +0100 (Thu, 12 Jan 2006) corresponding to SVN revision 2594 with message: Checkbox can now be readonly Index: .sync_svn2cvs =================================================================== RCS file: /cvsroot/thyapi/thyapi/.sync_svn2cvs,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** .sync_svn2cvs 10 Jan 2006 19:07:06 -0000 1.48 --- .sync_svn2cvs 12 Jan 2006 14:59:21 -0000 1.49 *************** *** 1 **** ! 2572 \ No newline at end of file --- 1 ---- ! 2594 \ No newline at end of file |
From: Thyamad c. <th...@us...> - 2006-01-12 14:59:28
|
Update of /cvsroot/thyapi/thyapi/thywidgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28991/thywidgets Modified Files: thycheckbox.js Log Message: Commiting file additions and modification from SVN revision 2593 to 2594... Changes made by vinicius on 2006-01-12 17:00:19 +0100 (Thu, 12 Jan 2006) corresponding to SVN revision 2594 with message: Checkbox can now be readonly Index: thycheckbox.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/thycheckbox.js,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** thycheckbox.js 2 Sep 2005 03:46:20 -0000 1.3 --- thycheckbox.js 12 Jan 2006 14:59:21 -0000 1.4 *************** *** 56,60 **** this.contents.setRelativeness(false); ! //** Events **\\ this.addEventListener({onclick: this._eventOnClick()}); --- 56,60 ---- this.contents.setRelativeness(false); ! //** Events **\\ this.addEventListener({onclick: this._eventOnClick()}); *************** *** 196,200 **** return function (e) { ! self.switchCheckedState(); } } --- 196,203 ---- return function (e) { ! if (!self.readOnly) ! { ! self.switchCheckedState(); ! } } } |
From: Thyamad c. <th...@us...> - 2006-01-10 19:07:14
|
Update of /cvsroot/thyapi/thyapi/thywidgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv869/thywidgets Modified Files: thyeditbox.js Log Message: Commiting file additions and modification from SVN revision 2571 to 2572... Changes made by vinicius on 2006-01-10 21:07:34 +0100 (Tue, 10 Jan 2006) corresponding to SVN revision 2572 with message: Edit Box Index: thyeditbox.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/thyeditbox.js,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** thyeditbox.js 24 Dec 2005 02:41:36 -0000 1.6 --- thyeditbox.js 10 Jan 2006 19:07:06 -0000 1.7 *************** *** 207,210 **** --- 207,225 ---- } + /** + * Method: setValue + * + * Sets the value property of the element + * + * Parameter: + * + * value - any string or to-stringalizable content + */ + p.setValue = function(value) + { + this._populateContents(value); + } + + /*************************************************************************\ * Private Methods * |
From: Thyamad c. <th...@us...> - 2006-01-10 19:07:14
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv869 Modified Files: .sync_svn2cvs Log Message: Commiting file additions and modification from SVN revision 2571 to 2572... Changes made by vinicius on 2006-01-10 21:07:34 +0100 (Tue, 10 Jan 2006) corresponding to SVN revision 2572 with message: Edit Box Index: .sync_svn2cvs =================================================================== RCS file: /cvsroot/thyapi/thyapi/.sync_svn2cvs,v retrieving revision 1.47 retrieving revision 1.48 diff -C2 -d -r1.47 -r1.48 *** .sync_svn2cvs 10 Jan 2006 15:14:52 -0000 1.47 --- .sync_svn2cvs 10 Jan 2006 19:07:06 -0000 1.48 *************** *** 1 **** ! 2569 \ No newline at end of file --- 1 ---- ! 2572 \ No newline at end of file |
From: Thyamad c. <th...@us...> - 2006-01-10 15:15:01
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32414 Modified Files: .sync_svn2cvs Log Message: Commiting file additions and modification from SVN revision 2568 to 2569... Changes made by vinicius on 2006-01-10 17:15:10 +0100 (Tue, 10 Jan 2006) corresponding to SVN revision 2569 with message: Popup calendar commit Index: .sync_svn2cvs =================================================================== RCS file: /cvsroot/thyapi/thyapi/.sync_svn2cvs,v retrieving revision 1.46 retrieving revision 1.47 diff -C2 -d -r1.46 -r1.47 *** .sync_svn2cvs 7 Jan 2006 19:03:07 -0000 1.46 --- .sync_svn2cvs 10 Jan 2006 15:14:52 -0000 1.47 *************** *** 1 **** ! 2560 \ No newline at end of file --- 1 ---- ! 2569 \ No newline at end of file |
From: Thyamad c. <th...@us...> - 2006-01-10 15:15:01
|
Update of /cvsroot/thyapi/thyapi/thywidgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32414/thywidgets Modified Files: thypopupcalendar.js Log Message: Commiting file additions and modification from SVN revision 2568 to 2569... Changes made by vinicius on 2006-01-10 17:15:10 +0100 (Tue, 10 Jan 2006) corresponding to SVN revision 2569 with message: Popup calendar commit Index: thypopupcalendar.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/thypopupcalendar.js,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** thypopupcalendar.js 29 Dec 2005 18:57:51 -0000 1.3 --- thypopupcalendar.js 10 Jan 2006 15:14:53 -0000 1.4 *************** *** 194,197 **** --- 194,212 ---- } + /** + * Method: setTimestamp + * + * Sets the timestamp of this field + * + * Parameter: + * + * timestamp - time in timestamp format, in seconds + * + */ + p.setTimestamp = function(data) + { + this._populateContents(data); + } + /*************************************************************************\ * Group: Private Methods * |
From: Thyamad c. <th...@us...> - 2006-01-07 19:03:17
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28844 Modified Files: .sync_svn2cvs Log Message: Commiting file additions and modification from SVN revision 2559 to 2560... Changes made by frank on 2006-01-07 21:02:06 +0100 (Sat, 07 Jan 2006) corresponding to SVN revision 2560 with message: fixing dynapi windows debugger Index: .sync_svn2cvs =================================================================== RCS file: /cvsroot/thyapi/thyapi/.sync_svn2cvs,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -d -r1.45 -r1.46 *** .sync_svn2cvs 4 Jan 2006 16:38:50 -0000 1.45 --- .sync_svn2cvs 7 Jan 2006 19:03:07 -0000 1.46 *************** *** 1 **** ! 2547 \ No newline at end of file --- 1 ---- ! 2560 \ No newline at end of file |
From: Thyamad c. <th...@us...> - 2006-01-07 19:03:17
|
Update of /cvsroot/thyapi/thyapi/ext In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28844/ext Modified Files: debug.html Log Message: Commiting file additions and modification from SVN revision 2559 to 2560... Changes made by frank on 2006-01-07 21:02:06 +0100 (Sat, 07 Jan 2006) corresponding to SVN revision 2560 with message: fixing dynapi windows debugger Index: debug.html =================================================================== RCS file: /cvsroot/thyapi/thyapi/ext/debug.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** debug.html 1 Sep 2005 18:15:37 -0000 1.6 --- debug.html 7 Jan 2006 19:03:07 -0000 1.7 *************** *** 51,55 **** if(dynapi && dynapi.debug) { if(!dynapi.debug.win) dynapi.debug.win=win; ! var url = dynapi.documentPath+dynapi.library.path+'ext/'; var f=dynapi.functions; imgwatch=f.getImage(url+'images/debug_imgwatch.gif',25,22,{alias:"DebugIMGWatch",name:"DebugIMGWatch",downsrc:url+"images/debug_imgwatch_down.gif",oversrc:url+"images/debug_imgwatch_on.gif",onclick:"dynapi.functions.False(dynapi.debug.switchMode('watch'))",tooltip:"Show Watch Mode"}).getHTML(); --- 51,55 ---- if(dynapi && dynapi.debug) { if(!dynapi.debug.win) dynapi.debug.win=win; ! var url = dynapi.library.path+'ext/'; var f=dynapi.functions; imgwatch=f.getImage(url+'images/debug_imgwatch.gif',25,22,{alias:"DebugIMGWatch",name:"DebugIMGWatch",downsrc:url+"images/debug_imgwatch_down.gif",oversrc:url+"images/debug_imgwatch_on.gif",onclick:"dynapi.functions.False(dynapi.debug.switchMode('watch'))",tooltip:"Show Watch Mode"}).getHTML(); |
From: Thyamad c. <th...@us...> - 2006-01-04 16:39:02
|
Update of /cvsroot/thyapi/thyapi/ext In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21685/ext Modified Files: debug.js Log Message: Commiting file additions and modification from SVN revision 2546 to 2547... Changes made by frank on 2006-01-04 18:36:55 +0100 (Wed, 04 Jan 2006) corresponding to SVN revision 2547 with message: changing the size of debug window and adding resizeble option to it Index: debug.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/ext/debug.js,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** debug.js 12 Nov 2005 19:06:27 -0000 1.6 --- debug.js 4 Jan 2006 16:38:50 -0000 1.7 *************** *** 52,56 **** if(this.win.evalIndex<0) this.win.evalIndex=0; t=this.win.evalHistory[this.win.evalIndex]; ! if(t)f.eval.value=t; } }; --- 52,56 ---- if(this.win.evalIndex<0) this.win.evalIndex=0; t=this.win.evalHistory[this.win.evalIndex]; ! if(t)f.eval.value=t; } }; *************** *** 86,97 **** //var url = dynapi.documentPath+p+'ext/debug.html#'; var url = p+'ext/debug.html#'; ! var w = (dynapi.ua.def||dynapi.ua.dom)? 350:355 //dynapi.ua.mac? (dynapi.ua.ie?330:300) : 350; ! var h = (dynapi.ua.def||dynapi.ua.dom)? 432:485 //dynapi.ua.mac? (dynapi.ua.ie?405:365) : (dynapi.ua.def||dynapi.ua.dom)? 420:476; ! this.win = window.open(url,'debugwin','width='+w+',height='+h+',scrollbars=no,status=no,toolbar=no'); //,resizable=no this.win.opener=window; this.win.evalHistory=[]; this.win.evalIndex=0; this.print(); ! /* dynapi.frame.onerror = function(msg, url, lno) { dynapi.debug.error(msg, url, lno); }; --- 86,97 ---- //var url = dynapi.documentPath+p+'ext/debug.html#'; var url = p+'ext/debug.html#'; ! var w = (dynapi.ua.def||dynapi.ua.dom)? 650:655 //dynapi.ua.mac? (dynapi.ua.ie?330:300) : 350; ! var h = (dynapi.ua.def||dynapi.ua.dom)? 732:785 //dynapi.ua.mac? (dynapi.ua.ie?405:365) : (dynapi.ua.def||dynapi.ua.dom)? 420:476; ! this.win = window.open(url,'debugwin','width='+w+',height='+h+',scrollbars=no,status=no,toolbar=no,resizable=yes'); //,resizable=no this.win.opener=window; this.win.evalHistory=[]; this.win.evalIndex=0; this.print(); ! /* dynapi.frame.onerror = function(msg, url, lno) { dynapi.debug.error(msg, url, lno); }; *************** *** 116,120 **** // reloads selected javascripts, packages or html pages p.reload=function(t){ ! if (!this.isLoaded) return; t=t+''; if(t.substr(0,3).toLowerCase()=='go:') { --- 116,120 ---- // reloads selected javascripts, packages or html pages p.reload=function(t){ ! if (!this.isLoaded) return; t=t+''; if(t.substr(0,3).toLowerCase()=='go:') { *************** *** 137,141 **** }; p.reset=function(section){ ! if (!this.isLoaded) return; this._oldWatchSrc=''; if(!section) { --- 137,141 ---- }; p.reset=function(section){ ! if (!this.isLoaded) return; this._oldWatchSrc=''; if(!section) { *************** *** 158,163 **** // Set Mode p.switchMode=function(m){ ! if (!this.isLoaded) return; ! if(m=='watch'||(this._mode=='normal' && m!='normal')) { this._normalModeData = this.win.document.getElementById('print').innerHTML; this._mode='watch'; --- 158,163 ---- // Set Mode p.switchMode=function(m){ ! if (!this.isLoaded) return; ! if(m=='watch'||(this._mode=='normal' && m!='normal')) { this._normalModeData = this.win.document.getElementById('print').innerHTML; this._mode='watch'; *************** *** 165,169 **** }else if(m=='normal'||(this._mode=='watch' && m!='watch')){ this.win.document.getElementById('print').innerHTML=(this._normalModeData)?this._normalModeData:''; ! this._mode='normal'; this._disableWatch(); } --- 165,169 ---- }else if(m=='normal'||(this._mode=='watch' && m!='watch')){ this.win.document.getElementById('print').innerHTML=(this._normalModeData)?this._normalModeData:''; ! this._mode='normal'; this._disableWatch(); } |
From: Thyamad c. <th...@us...> - 2006-01-04 16:39:02
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21685 Modified Files: .sync_svn2cvs Log Message: Commiting file additions and modification from SVN revision 2546 to 2547... Changes made by frank on 2006-01-04 18:36:55 +0100 (Wed, 04 Jan 2006) corresponding to SVN revision 2547 with message: changing the size of debug window and adding resizeble option to it Index: .sync_svn2cvs =================================================================== RCS file: /cvsroot/thyapi/thyapi/.sync_svn2cvs,v retrieving revision 1.44 retrieving revision 1.45 diff -C2 -d -r1.44 -r1.45 *** .sync_svn2cvs 29 Dec 2005 18:57:51 -0000 1.44 --- .sync_svn2cvs 4 Jan 2006 16:38:50 -0000 1.45 *************** *** 1 **** ! 2530 \ No newline at end of file --- 1 ---- ! 2547 \ No newline at end of file |
From: Thyamad c. <th...@us...> - 2005-12-29 18:58:05
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5610 Modified Files: .sync_svn2cvs Log Message: Commiting file additions and modification from SVN revision 2529 to 2530... Changes made by frank on 2005-12-29 20:53:39 +0100 (Thu, 29 Dec 2005) corresponding to SVN revision 2530 with message: Index: .sync_svn2cvs =================================================================== RCS file: /cvsroot/thyapi/thyapi/.sync_svn2cvs,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** .sync_svn2cvs 24 Dec 2005 02:41:36 -0000 1.43 --- .sync_svn2cvs 29 Dec 2005 18:57:51 -0000 1.44 *************** *** 1 **** ! 2515 \ No newline at end of file --- 1 ---- ! 2530 \ No newline at end of file |
From: Thyamad c. <th...@us...> - 2005-12-29 18:58:03
|
Update of /cvsroot/thyapi/thyapi/thywidgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5610/thywidgets Modified Files: thypopupcalendar.js Log Message: Commiting file additions and modification from SVN revision 2529 to 2530... Changes made by frank on 2005-12-29 20:53:39 +0100 (Thu, 29 Dec 2005) corresponding to SVN revision 2530 with message: Index: thypopupcalendar.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/thypopupcalendar.js,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** thypopupcalendar.js 21 Dec 2005 18:12:42 -0000 1.2 --- thypopupcalendar.js 29 Dec 2005 18:57:51 -0000 1.3 *************** *** 24,28 **** * * This is the PopupCalendar class. It is wrapper to use JS Calendar. ! * * Thanks for Mihai Bazon <mih...@ya...> for the great work! * For original JS Calendar, access <http://dynarch.com/mishoo/> --- 24,28 ---- * * This is the PopupCalendar class. It is wrapper to use JS Calendar. ! * * Thanks for Mihai Bazon <mih...@ya...> for the great work! * For original JS Calendar, access <http://dynarch.com/mishoo/> *************** *** 57,61 **** this.calBtn.addCSSClass('thyPopupCalendar_button'); ! this.addChild(this.calBtn); --- 57,61 ---- this.calBtn.addCSSClass('thyPopupCalendar_button'); ! this.addChild(this.calBtn); *************** *** 65,69 **** this.timeFormat = '24'; this.timeDisplayFormat = ''; ! this.onCreate(this.initThyPopupCalendar); } --- 65,69 ---- this.timeFormat = '24'; this.timeDisplayFormat = ''; ! this.onCreate(this.initThyPopupCalendar); } *************** *** 88,92 **** timeFormat: this.timeFormat }); ! var self = this; this.calBtn.addEventListener({onclick: function() --- 88,92 ---- timeFormat: this.timeFormat }); ! var self = this; this.calBtn.addEventListener({onclick: function() *************** *** 210,214 **** // using the popup calendar } ! p._thyEditBox_populateContents = p._populateContents; /** --- 210,214 ---- // using the popup calendar } ! p._thyEditBox_populateContents = p._populateContents; /** *************** *** 228,232 **** return; } ! this.timestamp = data*1000; this._thyEditBox_populateContents(this.getFormatted()); --- 228,232 ---- return; } ! this.timestamp = data*1000; this._thyEditBox_populateContents(this.getFormatted()); *************** *** 243,247 **** return this.getTimestamp(); } ! /** * Method: _calendarOnSelect --- 243,247 ---- return this.getTimestamp(); } ! /** * Method: _calendarOnSelect *************** *** 261,265 **** var update = (cal.dateClicked || p.electric); ! if (update && p.inputField) { p.inputField.value = cal.date.print(p.ifFormat); --- 261,265 ---- var update = (cal.dateClicked || p.electric); ! if (update && p.inputField) { p.inputField.value = cal.date.print(p.ifFormat); |
From: Thyamad c. <th...@us...> - 2005-12-24 02:41:44
|
Update of /cvsroot/thyapi/thyapi/thywidgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4597/thywidgets Modified Files: thyeditbox.js Log Message: Commiting file additions and modification from SVN revision 2514 to 2515... Changes made by vinicius on 2005-12-24 04:35:16 +0100 (Sat, 24 Dec 2005) corresponding to SVN revision 2515 with message: Maxlength property included in thyEditBox Index: thyeditbox.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/thyeditbox.js,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** thyeditbox.js 1 Sep 2005 18:15:38 -0000 1.5 --- thyeditbox.js 24 Dec 2005 02:41:36 -0000 1.6 *************** *** 75,80 **** p.initThyEditBox = function() { - var self = this; - this.contents.elm.childNodes[0]._dynobj = this; } --- 75,78 ---- *************** *** 104,107 **** --- 102,106 ---- (this.readOnly ? 'readonly ': '')+ (this.disabled ? 'disabled ': '')+ + (this.maxLength ? 'maxlength="'+this.maxLength+'" ' : '')+ 'value="'+this._value+'" />' ); *************** *** 189,192 **** --- 188,210 ---- } + /** + * Method: setMaxLength + * + * Sets the maxlength property of the element + * + * Parameter: + * + * length - integer or false/null + */ + p.setMaxLength = function(length) + { + this.maxLength = length; + + if (this._created) + { + this.contents.elm.childNodes[0].maxLength = length; + } + } + /*************************************************************************\ * Private Methods * |
From: Thyamad c. <th...@us...> - 2005-12-24 02:41:44
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4597 Modified Files: .sync_svn2cvs Log Message: Commiting file additions and modification from SVN revision 2514 to 2515... Changes made by vinicius on 2005-12-24 04:35:16 +0100 (Sat, 24 Dec 2005) corresponding to SVN revision 2515 with message: Maxlength property included in thyEditBox Index: .sync_svn2cvs =================================================================== RCS file: /cvsroot/thyapi/thyapi/.sync_svn2cvs,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** .sync_svn2cvs 23 Dec 2005 13:38:14 -0000 1.42 --- .sync_svn2cvs 24 Dec 2005 02:41:36 -0000 1.43 *************** *** 1 **** ! 2506 \ No newline at end of file --- 1 ---- ! 2515 \ No newline at end of file |
From: Thyamad c. <th...@us...> - 2005-12-23 13:38:46
|
Update of /cvsroot/thyapi/thyapi/thywidgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6532/thywidgets Modified Files: thygrid.js Log Message: Commiting file additions and modification from SVN revision 2505 to 2506... Changes made by vinicius on 2005-12-23 15:31:39 +0100 (Fri, 23 Dec 2005) corresponding to SVN revision 2506 with message: ThyGrid commit Index: thygrid.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/thygrid.js,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** thygrid.js 8 Sep 2005 14:59:41 -0000 1.5 --- thygrid.js 23 Dec 2005 13:38:15 -0000 1.6 *************** *** 988,992 **** { var i,nRows = this.getRowsCount(); ! data = {rows: {}, selectedRows: {}}; for (i=0; i<nRows; i++) --- 988,992 ---- { var i,nRows = this.getRowsCount(); ! data = {rows: [ ], selectedRows: {}}; for (i=0; i<nRows; i++) |
From: Thyamad c. <th...@us...> - 2005-12-23 13:38:46
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6532 Modified Files: .sync_svn2cvs Log Message: Commiting file additions and modification from SVN revision 2505 to 2506... Changes made by vinicius on 2005-12-23 15:31:39 +0100 (Fri, 23 Dec 2005) corresponding to SVN revision 2506 with message: ThyGrid commit Index: .sync_svn2cvs =================================================================== RCS file: /cvsroot/thyapi/thyapi/.sync_svn2cvs,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** .sync_svn2cvs 22 Dec 2005 03:39:37 -0000 1.41 --- .sync_svn2cvs 23 Dec 2005 13:38:14 -0000 1.42 *************** *** 1 **** ! 2487 \ No newline at end of file --- 1 ---- ! 2506 \ No newline at end of file |
From: Thyamad c. <th...@us...> - 2005-12-22 03:39:46
|
Update of /cvsroot/thyapi/thyapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31440 Modified Files: .sync_svn2cvs 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: .sync_svn2cvs =================================================================== RCS file: /cvsroot/thyapi/thyapi/.sync_svn2cvs,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** .sync_svn2cvs 21 Dec 2005 18:12:40 -0000 1.40 --- .sync_svn2cvs 22 Dec 2005 03:39:37 -0000 1.41 *************** *** 1 **** ! 2483 \ No newline at end of file --- 1 ---- ! 2487 \ No newline at end of file |