You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(75) |
Nov
(252) |
Dec
(418) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(659) |
Feb
(1039) |
Mar
(870) |
Apr
(235) |
May
(329) |
Jun
(251) |
Jul
(123) |
Aug
(119) |
Sep
(67) |
Oct
(194) |
Nov
(535) |
Dec
(133) |
2002 |
Jan
(122) |
Feb
(24) |
Mar
(29) |
Apr
(28) |
May
(16) |
Jun
(20) |
Jul
(11) |
Aug
(12) |
Sep
(13) |
Oct
(14) |
Nov
(23) |
Dec
(19) |
2003 |
Jan
(28) |
Feb
(170) |
Mar
(288) |
Apr
(211) |
May
(126) |
Jun
(166) |
Jul
(131) |
Aug
(102) |
Sep
(211) |
Oct
(301) |
Nov
(22) |
Dec
(6) |
2004 |
Jan
(14) |
Feb
(16) |
Mar
(7) |
Apr
|
May
(8) |
Jun
(25) |
Jul
(21) |
Aug
(2) |
Sep
(7) |
Oct
|
Nov
(2) |
Dec
(1) |
2005 |
Jan
(4) |
Feb
(2) |
Mar
(14) |
Apr
(24) |
May
(3) |
Jun
(7) |
Jul
(30) |
Aug
(5) |
Sep
(1) |
Oct
(3) |
Nov
|
Dec
(1) |
2006 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
|
Nov
|
Dec
|
From: Leif W <war...@us...> - 2003-07-16 21:35:25
|
I'm still at work on PHP and Perl versions. Trying to get the examples converted as well. Having a problem with the upload example. Curious to know if anyone has gotten the ASP version to work. I don't have an ASP capable environment so I can't test any ASP code to copy the functionality. By looking at the code it seems everything in the PHP version should work, assuming the ASP version (and underlying DynAPI javascript) works. Anyone have any suggestion how to get some hooks into the ioelmsrv.asp and ioelement.js files so I can check the scripts progress to help debug the problem? I'm getting no error messages in the browser or in the web server logs, but the upload fails anyways. Doing my best to look up ASP (JScript and VBScript) coding examples on the net, as I couldn't find any simple, comprehensive language reference (like the PHP language reference manual) on the MSDN site. Found some text books but they didn't quite have a the information I was looking for. Fixed some broken code in the new ioelmsrv.php. Everything seems correct but as I said, I don't know if any functionality got lost in the translation from ASP to PHP. For example, things are generally much simpler looking in PHP, so many lines of ASP code seem superfluous and can be removed, while other lines of ASP can be condensed into a single statement in PHP. Also working on both a functional (.pl) and object oriented (.pm) Perl version of ioelmsrv.asp. Hopefully I'll soom be finished with these libs and examples and will release them all at once. Leif |
From: Daniel T. <de...@ti...> - 2003-07-15 23:27:17
|
Hi! Yepp, thats a error aswell, cause the second window uses setClass. Should look like this in dynlayer_base.js: p._cssClass = ''; p.setClass = function(c,noInlineStyle){ this._className=c; if(this.elm) this.elm.className=c; else { this._cssClass=(c)? 'class="'+c+'"':''; this._noStyle=noInlineStyle; } }; Its in the newest CVS/nightly build, so if you dl that one it should be fine. Thanks for the response. Regards Daniel Tiru > Very nice! > > The first window works fine but the second causes an error every time I > click while dragging so it keeps following the mouse forever. Seems like the > error is caused inside of dynlayer_base.js > Maybe you miss an argument somewhere in your code? > > Anyway, it's line 157 in dynlayer_base.js > The code is something like that: > > p._cssClass = ''; > p.setClass = function(c,noInlineStyle){ > this._className=c; > ERROR if(this.css) this.css.className=cn; (cn is undefined) > else { > this._cssClass=(c)? 'class="'+c+'"':''; > this._noStyle=noInlineStyle; > } > }; > > -----Ursprüngliche Nachricht----- > Von: dyn...@li... > [mailto:dyn...@li...]Im Auftrag von Daniel > Tiru > Gesendet: Dienstag, 15. Juli 2003 20:51 > An: dynapi-dev > Betreff: [Dynapi-Dev] Window widget > > > Hi folks > > I have made a window widget thats pretty ready for the cvs but i thought > that i should run it trough the dev-list first. > > Its pretty straight forward but alot of arguments that need to be set if you > want it to look nice. I have attached the window.js file and that one should > be included in the packages, it is a dynlayer aswell. Aswell you will find > some images and the example page. > > Tell me if i have made something wrong or what you all would like to see in > the widget thats not there. > > One bug is that i get a error in the example file at line 152, but i have no > clue where that as cause the example file is not that long, its just 137 > lines so i need some help there if anyone have some time over. It is when i > close one window and then toutch the other one. > > Best Regards > Daniel Tiru > > > > ------------------------------------------------------- > This SF.net email is sponsored by: VM Ware > With VMware you can run multiple operating systems on a single machine. > WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the > same time. Free trial click here: http://www.vmware.com/wl/offer/345/0 > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ |
From: Tobias J. <tob...@we...> - 2003-07-15 22:49:56
|
Very nice! The first window works fine but the second causes an error every time I click while dragging so it keeps following the mouse forever. Seems like the error is caused inside of dynlayer_base.js Maybe you miss an argument somewhere in your code? Anyway, it's line 157 in dynlayer_base.js The code is something like that: p._cssClass = ''; p.setClass = function(c,noInlineStyle){ this._className=c; ERROR if(this.css) this.css.className=cn; (cn is undefined) else { this._cssClass=(c)? 'class="'+c+'"':''; this._noStyle=noInlineStyle; } }; -----Ursprüngliche Nachricht----- Von: dyn...@li... [mailto:dyn...@li...]Im Auftrag von Daniel Tiru Gesendet: Dienstag, 15. Juli 2003 20:51 An: dynapi-dev Betreff: [Dynapi-Dev] Window widget Hi folks I have made a window widget thats pretty ready for the cvs but i thought that i should run it trough the dev-list first. Its pretty straight forward but alot of arguments that need to be set if you want it to look nice. I have attached the window.js file and that one should be included in the packages, it is a dynlayer aswell. Aswell you will find some images and the example page. Tell me if i have made something wrong or what you all would like to see in the widget thats not there. One bug is that i get a error in the example file at line 152, but i have no clue where that as cause the example file is not that long, its just 137 lines so i need some help there if anyone have some time over. It is when i close one window and then toutch the other one. Best Regards Daniel Tiru |
From: Daniel T. <de...@ti...> - 2003-07-15 18:42:27
|
Hi folks I have made a window widget thats pretty ready for the cvs but i thought that i should run it trough the dev-list first. Its pretty straight forward but alot of arguments that need to be set if you want it to look nice. I have attached the window.js file and that one should be included in the packages, it is a dynlayer aswell. Aswell you will find some images and the example page. Tell me if i have made something wrong or what you all would like to see in the widget thats not there. One bug is that i get a error in the example file at line 152, but i have no clue where that as cause the example file is not that long, its just 137 lines so i need some help there if anyone have some time over. It is when i close one window and then toutch the other one. Best Regards Daniel Tiru |
From: SourceForge.net <no...@so...> - 2003-07-13 12:43:17
|
Patches item #770510, was opened at 2003-07-13 12:43 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=305757&aid=770510&group_id=5757 Category: DynAPI 3 GUI Group: None Status: Open Resolution: None Priority: 5 Submitted By: Raymond Irving (xwisdom) Assigned to: Nobody/Anonymous (nobody) Summary: TemplateManager & HTMLComponent fixes Initial Comment: [*] Updated quickrefs (See docs/docs/quickref.html) [-] Fix HC problem in Opera - use [^\[] instead of [^]] inside template manager [+] Add a name field to HC form elements inside the constructor. Also add a setElementName() field [-] Fix HTMLMenu problem with submenus by adding subMnuOffset to createMenuBar() Changes are inside CVS or you can download the nightly snapshots here: http://dynapi.sourceforge.net/snapshot/?N=D ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=305757&aid=770510&group_id=5757 |
From: Raymond I. <xw...@ya...> - 2003-07-11 15:37:46
|
Hi All, The problem was that opera was ease-dropping on ns4 code :) I fixed a problem with the regex stuff so it should work fine now. See the attached file for the fix. -- Raymond Irving --- Raymond Irving <xw...@ya...> wrote: > > What! That's very stange. Will have a look at this > later. > > Many thanks. > > -- > Raymond Irving > > --- Daniel Tiru <de...@ti...> wrote: > > Hi! > > > > After some update ago (can it been the one > tonight?) > > all the html components except htmlrollover stoped > > to work. Can it have something to do with the > > template manager? > > > > Regards > > Daniel > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: Parasoft > > Error proof Web apps, automate testing & more. > > Download & eval WebKing and get a free book. > > www.parasoft.com/bulletproofapps1 > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > > http://www.mail-archive.com/dyn...@li.../ > > > __________________________________ > Do you Yahoo!? > SBC Yahoo! DSL - Now only $29.95 per month! > http://sbc.yahoo.com > > > ------------------------------------------------------- > This SF.Net email sponsored by: Parasoft > Error proof Web apps, automate testing & more. > Download & eval WebKing and get a free book. > www.parasoft.com/bulletproofapps1 > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-07-11 14:30:10
|
What! That's very stange. Will have a look at this later. Many thanks. -- Raymond Irving --- Daniel Tiru <de...@ti...> wrote: > Hi! > > After some update ago (can it been the one tonight?) > all the html components except htmlrollover stoped > to work. Can it have something to do with the > template manager? > > Regards > Daniel > > > ------------------------------------------------------- > This SF.Net email sponsored by: Parasoft > Error proof Web apps, automate testing & more. > Download & eval WebKing and get a free book. > www.parasoft.com/bulletproofapps1 > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
From: SourceForge.net <no...@so...> - 2003-07-11 14:28:56
|
Bugs item #769283, was opened at 2003-07-10 19:46 Message generated for change (Comment added) made by xwisdom You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105757&aid=769283&group_id=5757 Category: DynAPI 3 API Group: None Status: Open Resolution: None Priority: 5 Submitted By: Daniel Tiru (tiru) Assigned to: Nobody/Anonymous (nobody) Summary: Event error Initial Comment: Hi! I have a HTML button and a onclick event assigned to that one. parent.hb = new parent.HTMLButton ('submit','Login','Login'); parent.hb.addEventListener({ onclick:function(e){ var o=e.getSource(); parent.PostData ('frmLogin','response.asp'); } }); When i click on the button one time, it works fine, however when i click another time, it returns: Error: Can't execute code from a freed script Line: 77 in event.js The line in event js looks like this: if (this._listeners[i]["on"+type]) this._listeners[i] ["on"+type](e,args); And my debugger marks this part: this._listeners[i]["on"+type](e,args) The script it calls works fine, i have tried it several times without a HTMLButton, with just an ordinary button. Hope this info helps out in solving this. Regards Daniel ---------------------------------------------------------------------- >Comment By: Raymond Irving (xwisdom) Date: 2003-07-11 14:28 Message: Logged In: YES user_id=696242 This has to do with your code: onclick:function(e){ var o=e.getSource(); parent.PostData ('frmLogin','response.asp'); This section of the code was created inside the ioelement's Iframe object. Whenever you send another post it will clear the content of the IFrame thus giving the error. The downloaded js code was not created within the scope of the main document but within the scope of the iframe object I've seen it before and I'm thinking of a way to resolve it. -- Raymond Irving ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105757&aid=769283&group_id=5757 |
From: Daniel T. <de...@ti...> - 2003-07-10 19:56:27
|
Hi! After some update ago (can it been the one tonight?) all the html components except htmlrollover stoped to work. Can it have something to do with the template manager? Regards Daniel |
From: SourceForge.net <no...@so...> - 2003-07-10 19:47:09
|
Bugs item #769283, was opened at 2003-07-10 21:46 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105757&aid=769283&group_id=5757 Category: DynAPI 3 API Group: None Status: Open Resolution: None Priority: 5 Submitted By: Daniel Tiru (tiru) Assigned to: Nobody/Anonymous (nobody) Summary: Event error Initial Comment: Hi! I have a HTML button and a onclick event assigned to that one. parent.hb = new parent.HTMLButton ('submit','Login','Login'); parent.hb.addEventListener({ onclick:function(e){ var o=e.getSource(); parent.PostData ('frmLogin','response.asp'); } }); When i click on the button one time, it works fine, however when i click another time, it returns: Error: Can't execute code from a freed script Line: 77 in event.js The line in event js looks like this: if (this._listeners[i]["on"+type]) this._listeners[i] ["on"+type](e,args); And my debugger marks this part: this._listeners[i]["on"+type](e,args) The script it calls works fine, i have tried it several times without a HTMLButton, with just an ordinary button. Hope this info helps out in solving this. Regards Daniel ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105757&aid=769283&group_id=5757 |
From: Jesse V. <je...@6t...> - 2003-07-10 14:09:21
|
Raymond, Yeah, I would love to try to come up with a reliable way to add the semi-colons in. I'm sure I missed some in the DynAPI code. I made a bunch of changes, but I'm sure I didn't catch them all. I'll update the revisions.html file with my changes, and I'll also add to the tipstricks.html. I should get a chance to do that today. Jesse Raymond Irving wrote: >Really nice! Now we can use compressed DynAPI code. >Thanks a lot Jesse. > >You can docoument you changes inside the >docs/docs/revisions.html file > >I think we should also work together on a function >that will add missing semi-colons to the compressed >files. From time to time we might miss out on a >sem-colon or two. > >One other thing. It would be nice it you could >document ways of generating browser specific >compressed files. Such documentation can be added to >the docs/docs/tipstricks.html > > >Best regards, > >-- >Raymond Irving > > >--- Jesse Vitrone <je...@6t...> wrote: > > >>Finally! I finally got some free time and CVS >>cooperated with me, and I >>got to check in the java.compressor stuff in bin. I >>also checked in the >>added semi-colon changes I made. >> >>This is my first time checking stuff in, so please >>let me know if I >>screwed things up. >> >>Besides the java.compressor code in bin that I >>added, these are the >>changes that I made: >> >>added semi-colons: >>src/api/dynlayer_base.js >>src/api/ext/dragevent.js >>src/api/etc/dynlayer.inline.js >>src/ext/functions.date.js >>src/ext/functions.image.js >>src/ext/functions.math.js >>src/ext/functions.numeric.js >>src/ext/functions.system.js >>src/fx/fsound.js >>src/fx/imganim.js >>src/fx/motionx.js >>src/fx/snapx.js >>src/fx/textanim.js >>src/fx/timerx.js >>src/gui/graphics.js >>src/gui/groupmanager.js >>src/gui/highlighter.js >>src/gui/htmlcalendar.js >>src/gui/imageclip.js >>src/gui/templmngr.js >>src/util/datasource.js >>src/util/ioelement.js >>src/util/ioelement.soda.js >> >> >>change name of main method & added semi-colons: >>src/api/mouse_dom.js >>src/api/mouse_ie.js >> >>Is there somewhere that I should document these >>changes? Someone said >>the changelog HTML, but that only seems to have >>major changes in it, not >>minor stuff like the semi-colons. >> >>Thanks, >> Jesse >> >> >> >> >> >> >------------------------------------------------------- > > >>This SF.Net email sponsored by: Parasoft >>Error proof Web apps, automate testing & more. >>Download & eval WebKing and get a free book. >>www.parasoft.com/bulletproofapps >>_______________________________________________ >>Dynapi-Dev mailing list >>Dyn...@li... >> >> >> >http://www.mail-archive.com/dyn...@li.../ > > >__________________________________ >Do you Yahoo!? >SBC Yahoo! DSL - Now only $29.95 per month! >http://sbc.yahoo.com > > >------------------------------------------------------- >This SF.Net email sponsored by: Parasoft >Error proof Web apps, automate testing & more. >Download & eval WebKing and get a free book. >www.parasoft.com/bulletproofapps >_______________________________________________ >Dynapi-Dev mailing list >Dyn...@li... >http://www.mail-archive.com/dyn...@li.../ > > |
From: SourceForge.net <no...@so...> - 2003-07-10 14:05:40
|
Patches item #769140, was opened at 2003-07-10 14:05 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=305757&aid=769140&group_id=5757 Category: DynAPI 3 API Group: None Status: Open Resolution: None Priority: 5 Submitted By: Raymond Irving (xwisdom) Assigned to: Nobody/Anonymous (nobody) Summary: Bug fixes for API and GUI modules Initial Comment: [-] Fix setClass() Bug in IE [-] Fix Loadpanel Bug with pages containing JS in NS7 Also removed flashsound from htmlmenu example ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=305757&aid=769140&group_id=5757 |
From: Raymond I. <xw...@ya...> - 2003-07-10 14:03:19
|
Really nice! Now we can use compressed DynAPI code. Thanks a lot Jesse. You can docoument you changes inside the docs/docs/revisions.html file I think we should also work together on a function that will add missing semi-colons to the compressed files. From time to time we might miss out on a sem-colon or two. One other thing. It would be nice it you could document ways of generating browser specific compressed files. Such documentation can be added to the docs/docs/tipstricks.html Best regards, -- Raymond Irving --- Jesse Vitrone <je...@6t...> wrote: > Finally! I finally got some free time and CVS > cooperated with me, and I > got to check in the java.compressor stuff in bin. I > also checked in the > added semi-colon changes I made. > > This is my first time checking stuff in, so please > let me know if I > screwed things up. > > Besides the java.compressor code in bin that I > added, these are the > changes that I made: > > added semi-colons: > src/api/dynlayer_base.js > src/api/ext/dragevent.js > src/api/etc/dynlayer.inline.js > src/ext/functions.date.js > src/ext/functions.image.js > src/ext/functions.math.js > src/ext/functions.numeric.js > src/ext/functions.system.js > src/fx/fsound.js > src/fx/imganim.js > src/fx/motionx.js > src/fx/snapx.js > src/fx/textanim.js > src/fx/timerx.js > src/gui/graphics.js > src/gui/groupmanager.js > src/gui/highlighter.js > src/gui/htmlcalendar.js > src/gui/imageclip.js > src/gui/templmngr.js > src/util/datasource.js > src/util/ioelement.js > src/util/ioelement.soda.js > > > change name of main method & added semi-colons: > src/api/mouse_dom.js > src/api/mouse_ie.js > > Is there somewhere that I should document these > changes? Someone said > the changelog HTML, but that only seems to have > major changes in it, not > minor stuff like the semi-colons. > > Thanks, > Jesse > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Parasoft > Error proof Web apps, automate testing & more. > Download & eval WebKing and get a free book. > www.parasoft.com/bulletproofapps > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-07-10 13:41:51
|
The setclass()function now works. It was a bug inside the function. Note: When I tried the example with following style I noticed that the background-color was not set. This might be a bug with IE. .test { background-color:blue; border: 2px solid black; } Updates are inside cvs PS. I don't think you need to include the "." in the style name. setClass("test") should work just fine. -- Raymond Irving --- Daniel Tiru <de...@ti...> wrote: > Hi Folks! > > Tried to use setClass('test') on a Template. > > The code i generated in a ioelement page: > > parent.tpLogin = new parent.Template('hej',0,0,0,0); > parent.tpLogin.setAnchor({left:0,top:0,bottom:0,right:0}); > parent.tpLogin.setDefaultFieldValue(' '); > parent.tpLogin.generate(); > dynapi.document.addChild(parent.tpLogin); > parent.tpLogin.setClass('.test'); > > When i do this, i get a error in the dynlayerbase on > line 157: > if(this.css) this.css.className=cn; > > Then i looked up "cn" witch i cant find really in > the code. So i changed that to > if(this.css) this.css.className=c; //c seams > declared in the file > > After this is done i get no error but aswell the > style dont seams to be set. > I tried this code aswell: > tp = new Template('',0,0,0,0); > tp.setAnchor({left:0,top:0,bottom:0,right:0}); > tp.setDefaultFieldValue(' '); > tp.generate(); > dynapi.document.addChild(tp); > tp.setClass('.test'); > > And this works, but if i try from the ioelement > page: > parent.tp.setClass('.test'); > Nothing happend. > > I aswell tried to move the call to the function > getting the ioelement page: > <body> > <script> > dynapi.document.insertAllChildren(); > loadAction('CheckLogin'); > </script> > </body> > > Ohh well.. i thought it could be something in the > templatemanager but i tried this aswell in the > ioelement page: > parent.test=parent.dynapi.document.addChild(new > parent.DynLayer('Hej',50,50,50,50,'000000')); > parent.test.setClass('.test'); > > This didnt work either, so my hope is that someone > could have a look at this... If you dont want to set > up a ioelement you could probably use a popup. > Or am i doing something really wrong? > Regards > Daniel > > > ------------------------------------------------------- > This SF.Net email sponsored by: Parasoft > Error proof Web apps, automate testing & more. > Download & eval WebKing and get a free book. > www.parasoft.com/bulletproofapps > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
From: Jesse V. <je...@6t...> - 2003-07-10 13:15:18
|
Finally! I finally got some free time and CVS cooperated with me, and I got to check in the java.compressor stuff in bin. I also checked in the added semi-colon changes I made. This is my first time checking stuff in, so please let me know if I screwed things up. Besides the java.compressor code in bin that I added, these are the changes that I made: added semi-colons: src/api/dynlayer_base.js src/api/ext/dragevent.js src/api/etc/dynlayer.inline.js src/ext/functions.date.js src/ext/functions.image.js src/ext/functions.math.js src/ext/functions.numeric.js src/ext/functions.system.js src/fx/fsound.js src/fx/imganim.js src/fx/motionx.js src/fx/snapx.js src/fx/textanim.js src/fx/timerx.js src/gui/graphics.js src/gui/groupmanager.js src/gui/highlighter.js src/gui/htmlcalendar.js src/gui/imageclip.js src/gui/templmngr.js src/util/datasource.js src/util/ioelement.js src/util/ioelement.soda.js change name of main method & added semi-colons: src/api/mouse_dom.js src/api/mouse_ie.js Is there somewhere that I should document these changes? Someone said the changelog HTML, but that only seems to have major changes in it, not minor stuff like the semi-colons. Thanks, Jesse |
From: Daniel T. <de...@ti...> - 2003-07-10 08:17:43
|
Hi Folks! Tried to use setClass('test') on a Template. The code i generated in a ioelement page: parent.tpLogin = new parent.Template('hej',0,0,0,0); parent.tpLogin.setAnchor({left:0,top:0,bottom:0,right:0}); parent.tpLogin.setDefaultFieldValue(' '); parent.tpLogin.generate(); dynapi.document.addChild(parent.tpLogin); parent.tpLogin.setClass('.test'); When i do this, i get a error in the dynlayerbase on line 157: if(this.css) this.css.className=cn; Then i looked up "cn" witch i cant find really in the code. So i changed that to if(this.css) this.css.className=c; //c seams declared in the file After this is done i get no error but aswell the style dont seams to be set. I tried this code aswell: tp = new Template('',0,0,0,0); tp.setAnchor({left:0,top:0,bottom:0,right:0}); tp.setDefaultFieldValue(' '); tp.generate(); dynapi.document.addChild(tp); tp.setClass('.test'); And this works, but if i try from the ioelement page: parent.tp.setClass('.test'); Nothing happend. I aswell tried to move the call to the function getting the ioelement page: <body> <script> dynapi.document.insertAllChildren(); loadAction('CheckLogin'); </script> </body> Ohh well.. i thought it could be something in the templatemanager but i tried this aswell in the ioelement page: parent.test=parent.dynapi.document.addChild(new parent.DynLayer('Hej',50,50,50,50,'000000')); parent.test.setClass('.test'); This didnt work either, so my hope is that someone could have a look at this... If you dont want to set up a ioelement you could probably use a popup. Or am i doing something really wrong? Regards Daniel |
From: Raymond I. <xw...@ya...> - 2003-07-10 06:49:10
|
Hello Everyone, Thanks to Robert we can now download nightly builds of the DynAPI3 cvs project in a complete zip package. You can download nightly builds here: http://dynapi.sourceforge.net/snapshot/ Enjoy! No more cvs downloads for those who can't bother to set it up. -- Raymond Irving __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
From: SourceForge.net <no...@so...> - 2003-07-09 15:08:04
|
Patches item #768528, was opened at 2003-07-09 17:08 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=305757&aid=768528&group_id=5757 Category: DynAPI 3 FX Group: None Status: Open Resolution: None Priority: 5 Submitted By: Daniel Tiru (tiru) Assigned to: Nobody/Anonymous (nobody) Summary: Swiper update Initial Comment: Fixed ,blinking and dec/inc-up in the swiper fx. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=305757&aid=768528&group_id=5757 |
From: Daniel T. <de...@ti...> - 2003-07-07 12:19:45
|
Hi Raymond! I like this syntax best: <htc:@fieldname:DynLayer() Events:{} /> <htc:@lyr1:DynLayer(null,10,10,10,10,'blue') Events:{ onclick:function(e){ // some code here } } /> Really hard to deside but i think this one is the simplest. Regards Daniel > Hi, > > What do you think about the following <htc: /> formats > for the TemplateManager? > > <htc:@fieldname:DynLayer() Events:{} /> > <htc:@lyr1:DynLayer(null,10,10,10,10,'blue') > Events:{ > onclick:function(e){ > // some code here > } > } > /> > > or > > <htc:DynLayer() ID:fieldname Events:{} /> > <htc:DynLayer(null,10,10,10,10,'blue') > ID:lyr1 > Events:{ > onclick:function(e){ > // some code here > } > } > /> > > or > > <htc:DynLayer() @fieldname Events:{} /> > <htc:DynLayer(null,10,10,10,10,'blue') > @lyr1 > Events:{ > onclick:function(e){ > // some code here > } > } > /> > > NOTE: HTCs can be written in single-line or multi-line > format > > Any other suggestions? > Do you find the HTC fields of any value to the DynAPI? > > > -- > Raymond Irving > > > > __________________________________ > Do you Yahoo!? > SBC Yahoo! DSL - Now only $29.95 per month! > http://sbc.yahoo.com > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01 > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ |
From: Raymond I. <xw...@ya...> - 2003-07-06 17:07:34
|
Hi, What do you think about the following <htc: /> formats for the TemplateManager? <htc:@fieldname:DynLayer() Events:{} /> <htc:@lyr1:DynLayer(null,10,10,10,10,'blue') Events:{ onclick:function(e){ // some code here } } /> or <htc:DynLayer() ID:fieldname Events:{} /> <htc:DynLayer(null,10,10,10,10,'blue') ID:lyr1 Events:{ onclick:function(e){ // some code here } } /> or <htc:DynLayer() @fieldname Events:{} /> <htc:DynLayer(null,10,10,10,10,'blue') @lyr1 Events:{ onclick:function(e){ // some code here } } /> NOTE: HTCs can be written in single-line or multi-line format Any other suggestions? Do you find the HTC fields of any value to the DynAPI? -- Raymond Irving __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
From: SourceForge.net <no...@so...> - 2003-07-06 15:57:38
|
Bugs item #763285, was opened at 2003-06-30 14:59 Message generated for change (Comment added) made by xwisdom You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105757&aid=763285&group_id=5757 Category: DynAPI 3 API Group: None Status: Open >Resolution: Fixed Priority: 5 Submitted By: Daniel Tiru (tiru) Assigned to: Nobody/Anonymous (nobody) Summary: HC List Initial Comment: Hi! When using sort on the listboxes in opera it down work. In the melon example all items in the list get changed to beeing melons. Regards Daniel ---------------------------------------------------------------------- Comment By: Raymond Irving (xwisdom) Date: 2003-07-06 15:57 Message: Logged In: YES user_id=696242 The bug has been verified and a fix for the bug has been implemented. The fix should be available in CVS as well as the next official release of the DynAPI. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105757&aid=763285&group_id=5757 |
From: SourceForge.net <no...@so...> - 2003-07-06 15:57:38
|
Bugs item #763279, was opened at 2003-06-30 14:42 Message generated for change (Comment added) made by xwisdom You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105757&aid=763279&group_id=5757 Category: DynAPI 3 API Group: None Status: Open >Resolution: Fixed Priority: 5 Submitted By: Daniel Tiru (tiru) Assigned to: Nobody/Anonymous (nobody) Summary: Opera set/get Clip Initial Comment: The getClip in opera dont work wery well. and aswell the setClip dont work. You can check the swiper example to see what i mean. I am using opera build 2887 (7.11). The return values of getClip() is (123,NaN,NaN,NaN) So the first one works if i am correct. 123 is just a dummy number but i hope you get my point. Regards Daniel Tiru ---------------------------------------------------------------------- Comment By: Raymond Irving (xwisdom) Date: 2003-07-06 15:57 Message: Logged In: YES user_id=696242 The bug has been verified and a fix for the bug has been implemented. The fix should be available in CVS as well as the next official release of the DynAPI. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105757&aid=763279&group_id=5757 |
From: SourceForge.net <no...@so...> - 2003-07-06 15:53:39
|
Patches item #766738, was opened at 2003-07-06 15:53 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=305757&aid=766738&group_id=5757 Category: DynAPI 3 API Group: None Status: Open Resolution: None Priority: 5 Submitted By: Raymond Irving (xwisdom) Assigned to: Nobody/Anonymous (nobody) Summary: CORE API, Fx & GUI Bug Fixes Initial Comment: [*] Updated Documentation & Examples [*] Update Turorials (See docs/docs/tipstricks.html) [+] Add HyperText Component fields (<htc:Object() @field /> to TM [-] Fix _destroy() bug with page reload (See bug#763790) [-] Fix getClip bug in Opera (bug#763279) [-] Fix HTMLListbox bug in Opera (bug#763285) [+] Add new increment-decrement swipes to Swiper class [-] Fix TM bug - was not allowing fields to be changed [-] Fix mouse x,y bug found in mouse_events (See bug #762495) Updates are insides cvs ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=305757&aid=766738&group_id=5757 |
From: Raymond I. <xw...@ya...> - 2003-07-04 02:19:24
|
Hello Everyone, The TM just keeps on getting better... I think! Another new feature of the TM is to allow developers to create DynAPI Widgets/Components inside the templates with only a few lines of code. This is made possible through the use a special set of fields (or tags) called HyperText Component HTC) fields. HTC Field Syntax: <htc:Object() @fieldname /> Example: var t= 'This is a DynLayer <htc:DynLayer("HTC",0,0,30,20,"Yellow") @lyr1 /> ' +'This is a Button <htc:HTMLButton(null,"Button") @btn2 /> '; var tp = new Template(t,100,100,100,100,'#EEEEEE'); tp.lyr1.setHTML('Cool!'); // ^ note the DynLayer object is created automatically See the attached file for an update. Any comments, suggestions, ideas, etc? -- Raymond Irving __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
From: SourceForge.net <no...@so...> - 2003-07-04 01:16:04
|
Bugs item #763598, was opened at 2003-06-30 19:50 Message generated for change (Settings changed) made by ecammit You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105757&aid=763598&group_id=5757 Category: DynAPI 3 API Group: None Status: Open Resolution: None >Priority: 7 Submitted By: Timothy Ace (ecammit) Assigned to: Nobody/Anonymous (nobody) Summary: DynAPI3 - IE Mac 5.2 Crashes when Refresh is clicked Initial Comment: This can be seen most prevailently in: dynapi3x/tshoot/drag_forms.html The page loads fine, but it crashes the whole browser when you press the 'Refresh' Button. ---------------------------------------------------------------------- Comment By: Timothy Ace (ecammit) Date: 2003-07-03 20:13 Message: Logged In: YES user_id=608186 I managed to track the error to the line: <code>this.children[this.children.length] = c;</code> In p.addChild in file /src/api/event.js line 140. This only crashes when there are radio buttons (without the name attribute) and anchor tags in the html of the layer. There may be more elements that cause the crash, but I have not yet found them. I am at a total loss as to how to fix this, as I believe it is a browser bug, and Microsoft has vowed to stop supporting IE for the mac. Any suggestions would be helpful. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105757&aid=763598&group_id=5757 |