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: Raymond I. <xw...@ya...> - 2003-10-29 14:16:12
|
Yes SODA has the same problem. Normally when I'm writing dynamic apps I prevent the users from using the browsers back button. IMO it's not good to have the back button active when you're doing dynamic stuff. -- Raymond Irving --- Jacob Levy <jy...@mo...> wrote: > I'm trying to learn how to write a SODA server side > for Tcl, and in the > process got JSRS up and running > (http://www.ashleyit.com/rs/jsrs/test.htm) > with tclhttpd as a smaller milestone. You can see my > meager effort here: > http://mod3.net:8888/jsrs22/test.htm > > I noticed that even though I use location.replace() > (where possible) it > still fills my browser history, the back button gets > a very long history > very quickly.. :) I noticed this on IE6 and NN7 on > WinXP, others saw > similar behavior with browsers on MacOSX and Linux. > > Question: does the dynapi SODA have this problem, > and if not, how did you > avoid it? > > Other than that, I'm happy to report that I am > making slow progress > creating a Tcl equivalent of the server side for > SODA, using the PHP code > as a template. > > --JYL > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: The SF.net > Donation Program. > Do you like what SourceForge.net is doing for the > Open > Source Community? Make a contribution, and help us > add new > features and functionality. Click here: > http://sourceforge.net/donate/ > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? Exclusive Video Premiere - Britney Spears http://launch.yahoo.com/promos/britneyspears/ |
From: Peter R. <ant...@gm...> - 2003-10-28 12:41:47
|
... sorry for the repost - my mua always insists to send with my default emailadress as sender ... :( Hi Daniel and all, here's a fixed version of the panelbar.js and the updated example. You'll find the following changes in there: - Added proper prototype-command: var p = dynapi.setPrototype('PanelBar','DynLayer'); - Removed csscontent and cssmenu from constructor - Moved most of the init-code to the PreCreate-event. That way there is no problem with subclassing anymore. - Added the possibility to construct a PanelBar with pure HTML instead of layers, i.e. var pb = new PanelBar ('My Menu', 'My Content',...) creates a proper PanelBar. You can still construct the PanelBar with layers of course! - Added getContentLayer and getMenuLayer I discussed the whole panelbar-stuff with Daniel yesterday. We decided to build a window-widget with the following functionality: - Menubar, Content, Status-Bar (optional) - Dragable - Minimize, Maximize, Resize, Close with each action firing an event (especially close might be important ;) - Based on ViewPane or something similar (scrolling mechanism) - When using multiple windows add a proper focus handling A widget of that kind I need anyway for my current project so I think it is best to develop it as a basic and reusable widget for the dynapi. And Daniel already comited to help or better start writing that thing ;) Has anyone already done such thing (a window-widget)? Any other suggestions, comments etc. are welcome, of course! Regards, Peter ..: If wanted I can send diffs of course... Daniel Tiru wrote: > Hi Peter, I am the one to blame :) > > Have had very little time right now, but I will try to fix the panel > bar, would also be great to see what you have done with it. > > Regards > Daniel Tiru > > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...] On Behalf Of Peter > Romianowski > Sent: den 27 oktober 2003 15:41 > To: dyn...@li... > Subject: Re: [Dynapi-Dev] Problems in inheritence (General and PanelBar) > > > Hi, > > >>Instead of var p = PanelBar.prototype = new DynLayer >>it should be var p = dynapi.setPrototype('PanelBar','DynLayer'); > > > Ahhh, that makes everything clear! Works now. Will this be changed in > the CVS too? > > This does not solve the problem I have with the constructor. I saw a > discussion about the PanelBar before where someone suggested to move > stuff out of the constructor. Will there be any fix to the PanelBar > regarding this "issue" (not able to subclass it)? > > Keep up the good work, > > Peter > > > >>-- >>Raymond Irving >> >>--- Peter Romianowski <ant...@gm...> wrote: >> >> >>>Hi, >>> >>>I have two problems here. First I cannot subclass >>>PanelBar until I >>>comment out some stuff in the constructor like that: >>> >>>function >>> >> >>PanelBar(lyrmnu,lyrcnt,mnuheight,x,y,w,h,mnucss,cntcss,minimized) >> >> >>>{ >>> >>> this.DynLayer = DynLayer; >>> this.DynLayer(null,x,y,w,h,null); >>> >>> if (lyrmnu) { >>> this.x = x; >>> ... >>> >>> >> >>this.menu.setHTML(this._mnuhtml.replace('{@min}',this._mnuhtmlmax)); >> >> >>> } >>> >>> this.onPreCreate(PanelBar.PreCreateEvent); >>> this.onCreate(PanelBar.CreateEvent); >>>} >>>} >>> >>>Is there any common pattern how to avoid problems >>>with subclassing? Or >>>am I doing something totally stupid in trying to >>>subclass PanelBar? >>> >>>The next problem is that I can't enable the >>>dragevents on my subclass of >>>PanelBar until I change dragevent.js line 225 >>>(enableDragEvents): >>> >>>if(lyr.isClass('DynLayer')) >>>lyr.addEventListener(DragEvent.lyrListener); >>> >>>to >>> >>>lyr.addEventListener(DragEvent.lyrListener); >>> >>>That is bruteforce, I know ;) I just tried to figure >>>out where the >>>problem is. And I found that >>>myPanelBarSubclass.isClass('DynLayer') >>>yields false which I consider as wrong - it is a >>>DynLayer since it is a >>>subclass of PanelBar which is a subclass of >>>DynLayer! The quickest fix I >>>can imagine is to rewrite the isClass-method to tell >>>whether any >>>superclass matches the argument. I don't know if >>>this breaks something, >>>so I didn't try that yet. >>> >>>If I am trying to do something totally wrong then >>>please tell me! >>>Otherwise I will gladly help "fixing" the issues. >>> >>>Regards, >>>Peter >>> >>>default disclaimer: DynAPI rules! ;) >>> >>> >>> >>> >> >>------------------------------------------------------- >> >> >>>This SF.net email is sponsored by: The SF.net >>>Donation Program. >>>Do you like what SourceForge.net is doing for the >>>Open >>>Source Community? Make a contribution, and help us >>>add new >>>features and functionality. Click here: http://sourceforge.net/donate/ >>>_______________________________________________ >>>Dynapi-Dev mailing list >>>Dyn...@li... >>> >> >>http://www.mail-archive.com/dyn...@li.../ >> >> >>__________________________________ >>Do you Yahoo!? >>Exclusive Video Premiere - Britney Spears >>http://launch.yahoo.com/promos/britneyspears/ >> >> >>------------------------------------------------------- >>This SF.net email is sponsored by: The SF.net Donation Program. Do you > > >>like what SourceForge.net is doing for the Open Source Community? >>Make a contribution, and help us add new features and functionality. >>Click here: http://sourceforge.net/donate/ >>_______________________________________________ >>Dynapi-Dev mailing list >>Dyn...@li... >>http://www.mail-archive.com/dyn...@li.../ >> >> > > |
From: Leif W <war...@us...> - 2003-10-27 23:36:18
|
Looking through some old emails, saw this. Sounds like an interesting idea (bring some XML support to older browsers through the API, and provide a uniform interface across browsers). Wonder why noone replied. :-) Can you elaborate on a scenario or example where this would be used to handle things? I'm not too familiar with XML and how it could be applied here. Leif ----- Original Message ----- From: "Raymond Irving" <xw...@ya...> To: <dyn...@li...> Sent: Tuesday, September 16, 2003 10:32 AM Subject: [Dynapi-Dev] XML Class in DynAPI? > Hi, > > How about adding an XML class to the DynAPI library > that allows us to use xml documents in > ns4+,ie4+,moz,opera7+,etc? > > example: > > var xml = new XMLDoc(); > var fl = new FileReader(function(){ > var str = fl.read('customers.xml'); > xml.loadXML(str); > var node = xml.selectNode('/tag1/tag/a/b/c'); > if(node) alert(node.getText()); > }); > > -- > Raymond Irving > > __________________________________ > Do you Yahoo!? > Yahoo! SiteBuilder - Free, easy-to-use web site design software > http://sitebuilder.yahoo.com > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > |
From: Leif W <war...@us...> - 2003-10-27 21:59:08
|
Motivation. To switch to quality mail servers, like sendmail, qmail, or exim. :-) Also, noticed Lookout Express sometimes prepends a message with a random length snippet of what was in my clipboard. (!) The cable company's mail server at charter.net (Communigate pro) is sluggish at times, randomly drops messages silently, delivers hours or days later (on rare occasions). It's motivation enough for me to decide to violate their user agreement for the Nth degree by setting up yet another piece of server software, my own mail server running exim. :-) It's on the TODO list now. Leif P.S. TODO list (no particular order): 1) Encode some WAV files to MP3 of new CDs I just received. 2) Miscellaneous turtle aquarium errands and fiddlings 3) Install and configure cygwin environment 4) Compile Mozilla Firebird from source, with DOM Inspector support 5) Finish working on a Mozilla Firebird Skin (need DOM Inspector) 6) Finish IOElement SODA PHP 7) Setup exim 8) Wash that sink full of dirty dishes. :-) 9) Clean space on hard drives ----- Original Message ----- From: "Doug Melvin" <do...@cr...> To: <dyn...@li...> Sent: Monday, October 27, 2003 11:44 AM Subject: Re: [Dynapi-Dev] Mail problem... > speaking of mail problems.. > > Frag. > anyways, the text was: > > May admins around the world (hundreds to thousands) are racing to > upgrade and reconfigure their email servers (outgoing) to combat spam and > email worms. > > Of course, this will lead to many miss-configurations and some bad Software > choices > (who the hell uses exchange when they can avoid it!?!?) > > In my case, the outgoing relay server is refusing to send some of my > messages (error 550 not allowed to send to that address) > > Also I have seen some of my messages "stutter" or show up multiple times in > a persons inbox.. (or this list) > > Add to that the Outlook Express 6 is sending some of my emails > sans-content.. > > I am having a hell of a great time.. you guys? > :-) > > Never mind that the average download speed on any connection in Ottawa has > dropped of the last month or so.. > > God-damned morons who have nothing better to do than write evil > software that damages the one thing that likely brings their pathetic lives > joy : the Internet > ----- Original Message ----- > From: "Doug Melvin" <do...@cr...> > To: <dyn...@li...> > Sent: Monday, October 27, 2003 11:04 AM > Subject: Re: [Dynapi-Dev] Mail problem... > > > > > > > > > > --- > > Outgoing mail is certified Virus Free. > > Checked by AVG anti-virus system (http://www.grisoft.com). > > Version: 6.0.530 / Virus Database: 325 - Release Date: 10/22/03 > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: The SF.net Donation Program. > > Do you like what SourceForge.net is doing for the Open > > Source Community? Make a contribution, and help us add new > > features and functionality. Click here: http://sourceforge.net/donate/ > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > http://www.mail-archive.com/dyn...@li.../ > > > > > --- > Outgoing mail is certified Virus Free. > Checked by AVG anti-virus system (http://www.grisoft.com). > Version: 6.0.530 / Virus Database: 325 - Release Date: 10/22/03 > > > > ------------------------------------------------------- > This SF.net email is sponsored by: The SF.net Donation Program. > Do you like what SourceForge.net is doing for the Open > Source Community? Make a contribution, and help us add new > features and functionality. Click here: http://sourceforge.net/donate/ > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > |
From: Doug M. <do...@cr...> - 2003-10-27 20:15:01
|
speaking of mail problems.. Frag. anyways, the text was: May admins around the world (hundreds to thousands) are racing to upgrade and reconfigure their email servers (outgoing) to combat spam and email worms. Of course, this will lead to many miss-configurations and some bad Software choices (who the hell uses exchange when they can avoid it!?!?) In my case, the outgoing relay server is refusing to send some of my messages (error 550 not allowed to send to that address) Also I have seen some of my messages "stutter" or show up multiple times in a persons inbox.. (or this list) Add to that the Outlook Express 6 is sending some of my emails sans-content.. I am having a hell of a great time.. you guys? :-) Never mind that the average download speed on any connection in Ottawa has dropped of the last month or so.. God-damned morons who have nothing better to do than write evil software that damages the one thing that likely brings their pathetic lives joy : the Internet ----- Original Message ----- From: "Doug Melvin" <do...@cr...> To: <dyn...@li...> Sent: Monday, October 27, 2003 11:04 AM Subject: Re: [Dynapi-Dev] Mail problem... > > > > --- > Outgoing mail is certified Virus Free. > Checked by AVG anti-virus system (http://www.grisoft.com). > Version: 6.0.530 / Virus Database: 325 - Release Date: 10/22/03 > > > ------------------------------------------------------- > This SF.net email is sponsored by: The SF.net Donation Program. > Do you like what SourceForge.net is doing for the Open > Source Community? Make a contribution, and help us add new > features and functionality. Click here: http://sourceforge.net/donate/ > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.530 / Virus Database: 325 - Release Date: 10/22/03 |
From: Peter R. <ant...@gm...> - 2003-10-27 19:43:53
|
Hi Daniel, > Hi Peter, I am the one to blame :) to blame for these cool tiny widget ;) Whould it be acceptable if I rewrite the PanelBar a bit so that it follows the dynapi-class-paradigm and is "subclassable" (does this word really exist? ;) ? > Have had very little time right now, but I will try to fix the panel > bar, would also be great to see what you have done with it. I am writing something like a windowmanager (for mdi-environments). I hope I can write it "abstract" enough so I can share it - the current development is highly directed towards our current (special) needs though. Regards, Peter > Regards > Daniel Tiru > > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...] On Behalf Of Peter > Romianowski > Sent: den 27 oktober 2003 15:41 > To: dyn...@li... > Subject: Re: [Dynapi-Dev] Problems in inheritence (General and PanelBar) > > > Hi, > > >>Instead of var p = PanelBar.prototype = new DynLayer >>it should be var p = dynapi.setPrototype('PanelBar','DynLayer'); > > > Ahhh, that makes everything clear! Works now. Will this be changed in > the CVS too? > > This does not solve the problem I have with the constructor. I saw a > discussion about the PanelBar before where someone suggested to move > stuff out of the constructor. Will there be any fix to the PanelBar > regarding this "issue" (not able to subclass it)? > > Keep up the good work, > > Peter > > > >>-- >>Raymond Irving >> >>--- Peter Romianowski <ant...@gm...> wrote: >> >> >>>Hi, >>> >>>I have two problems here. First I cannot subclass >>>PanelBar until I >>>comment out some stuff in the constructor like that: >>> >>>function >>> >> >>PanelBar(lyrmnu,lyrcnt,mnuheight,x,y,w,h,mnucss,cntcss,minimized) >> >> >>>{ >>> >>> this.DynLayer = DynLayer; >>> this.DynLayer(null,x,y,w,h,null); >>> >>> if (lyrmnu) { >>> this.x = x; >>> ... >>> >>> >> >>this.menu.setHTML(this._mnuhtml.replace('{@min}',this._mnuhtmlmax)); >> >> >>> } >>> >>> this.onPreCreate(PanelBar.PreCreateEvent); >>> this.onCreate(PanelBar.CreateEvent); >>>} >>>} >>> >>>Is there any common pattern how to avoid problems >>>with subclassing? Or >>>am I doing something totally stupid in trying to >>>subclass PanelBar? >>> >>>The next problem is that I can't enable the >>>dragevents on my subclass of >>>PanelBar until I change dragevent.js line 225 >>>(enableDragEvents): >>> >>>if(lyr.isClass('DynLayer')) >>>lyr.addEventListener(DragEvent.lyrListener); >>> >>>to >>> >>>lyr.addEventListener(DragEvent.lyrListener); >>> >>>That is bruteforce, I know ;) I just tried to figure >>>out where the >>>problem is. And I found that >>>myPanelBarSubclass.isClass('DynLayer') >>>yields false which I consider as wrong - it is a >>>DynLayer since it is a >>>subclass of PanelBar which is a subclass of >>>DynLayer! The quickest fix I >>>can imagine is to rewrite the isClass-method to tell >>>whether any >>>superclass matches the argument. I don't know if >>>this breaks something, >>>so I didn't try that yet. >>> >>>If I am trying to do something totally wrong then >>>please tell me! >>>Otherwise I will gladly help "fixing" the issues. >>> >>>Regards, >>>Peter >>> >>>default disclaimer: DynAPI rules! ;) >>> >>> >>> >>> >> >>------------------------------------------------------- >> >> >>>This SF.net email is sponsored by: The SF.net >>>Donation Program. >>>Do you like what SourceForge.net is doing for the >>>Open >>>Source Community? Make a contribution, and help us >>>add new >>>features and functionality. Click here: http://sourceforge.net/donate/ >>>_______________________________________________ >>>Dynapi-Dev mailing list >>>Dyn...@li... >>> >> >>http://www.mail-archive.com/dyn...@li.../ >> >> >>__________________________________ >>Do you Yahoo!? >>Exclusive Video Premiere - Britney Spears >>http://launch.yahoo.com/promos/britneyspears/ >> >> >>------------------------------------------------------- >>This SF.net email is sponsored by: The SF.net Donation Program. Do you > > >>like what SourceForge.net is doing for the Open Source Community? >>Make a contribution, and help us add new features and functionality. >>Click here: http://sourceforge.net/donate/ >>_______________________________________________ >>Dynapi-Dev mailing list >>Dyn...@li... >>http://www.mail-archive.com/dyn...@li.../ >> >> > > |
From: Daniel T. <de...@ti...> - 2003-10-27 19:15:32
|
Hi Peter, I am the one to blame :) Have had very little time right now, but I will try to fix the panel bar, would also be great to see what you have done with it. Regards Daniel Tiru -----Original Message----- From: dyn...@li... [mailto:dyn...@li...] On Behalf Of Peter Romianowski Sent: den 27 oktober 2003 15:41 To: dyn...@li... Subject: Re: [Dynapi-Dev] Problems in inheritence (General and PanelBar) Hi, > Instead of var p =3D PanelBar.prototype =3D new DynLayer > it should be var p =3D dynapi.setPrototype('PanelBar','DynLayer'); Ahhh, that makes everything clear! Works now. Will this be changed in the CVS too? This does not solve the problem I have with the constructor. I saw a discussion about the PanelBar before where someone suggested to move stuff out of the constructor. Will there be any fix to the PanelBar regarding this "issue" (not able to subclass it)? Keep up the good work, Peter > -- > Raymond Irving >=20 > --- Peter Romianowski <ant...@gm...> wrote: >=20 >>Hi, >> >>I have two problems here. First I cannot subclass >>PanelBar until I >>comment out some stuff in the constructor like that: >> >>function >> >=20 > PanelBar(lyrmnu,lyrcnt,mnuheight,x,y,w,h,mnucss,cntcss,minimized) >=20 >>{ >> >> this.DynLayer =3D DynLayer; >> this.DynLayer(null,x,y,w,h,null); >> >> if (lyrmnu) {=09 >> this.x =3D x; >> ... >> =20 >> >=20 > this.menu.setHTML(this._mnuhtml.replace('{@min}',this._mnuhtmlmax)); >=20 >> } >> =09 >> this.onPreCreate(PanelBar.PreCreateEvent); >> this.onCreate(PanelBar.CreateEvent); >>} >>} >> >>Is there any common pattern how to avoid problems >>with subclassing? Or >>am I doing something totally stupid in trying to >>subclass PanelBar? >> >>The next problem is that I can't enable the >>dragevents on my subclass of >>PanelBar until I change dragevent.js line 225 >>(enableDragEvents): >> >>if(lyr.isClass('DynLayer'))=20 >>lyr.addEventListener(DragEvent.lyrListener); >> >>to >> >>lyr.addEventListener(DragEvent.lyrListener); >> >>That is bruteforce, I know ;) I just tried to figure >>out where the >>problem is. And I found that >>myPanelBarSubclass.isClass('DynLayer')=20 >>yields false which I consider as wrong - it is a >>DynLayer since it is a=20 >>subclass of PanelBar which is a subclass of >>DynLayer! The quickest fix I=20 >>can imagine is to rewrite the isClass-method to tell >>whether any=20 >>superclass matches the argument. I don't know if >>this breaks something,=20 >>so I didn't try that yet. >> >>If I am trying to do something totally wrong then >>please tell me! >>Otherwise I will gladly help "fixing" the issues. >> >>Regards, >>Peter >> >>default disclaimer: DynAPI rules! ;) >> >> >> >> >=20 > ------------------------------------------------------- >=20 >>This SF.net email is sponsored by: The SF.net >>Donation Program. >>Do you like what SourceForge.net is doing for the >>Open >>Source Community? Make a contribution, and help us >>add new >>features and functionality. Click here: http://sourceforge.net/donate/ >>_______________________________________________ >>Dynapi-Dev mailing list >>Dyn...@li... >> >=20 > http://www.mail-archive.com/dyn...@li.../ >=20 >=20 > __________________________________ > Do you Yahoo!? > Exclusive Video Premiere - Britney Spears=20 > http://launch.yahoo.com/promos/britneyspears/ >=20 >=20 > ------------------------------------------------------- > This SF.net email is sponsored by: The SF.net Donation Program. Do you > like what SourceForge.net is doing for the Open Source Community? =20 > Make a contribution, and help us add new features and functionality.=20 > Click here: http://sourceforge.net/donate/=20 > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li...=20 > http://www.mail-archive.com/dyn...@li.../ >=20 >=20 --=20 Peter Romianowski coreg Brunnenstra=DFe 153 10115 Berlin Telefon: 030 / 41 72 42 31 Fax: 030 / 41 72 42 39 Email: mailto:rom...@co... Website: http://www.coreg.de ------------------------------------------------------- This SF.net email is sponsored by: The SF.net Donation Program. Do you like what SourceForge.net is doing for the Open Source Community? Make a contribution, and help us add new features and functionality. Click here: http://sourceforge.net/donate/ _______________________________________________ Dynapi-Dev mailing list Dyn...@li... http://www.mail-archive.com/dyn...@li.../ |
From: Jacob L. <jy...@mo...> - 2003-10-27 18:21:03
|
I'm trying to learn how to write a SODA server side for Tcl, and in the process got JSRS up and running (http://www.ashleyit.com/rs/jsrs/test.htm) with tclhttpd as a smaller milestone. You can see my meager effort here: http://mod3.net:8888/jsrs22/test.htm I noticed that even though I use location.replace() (where possible) it still fills my browser history, the back button gets a very long history very quickly.. :) I noticed this on IE6 and NN7 on WinXP, others saw similar behavior with browsers on MacOSX and Linux. Question: does the dynapi SODA have this problem, and if not, how did you avoid it? Other than that, I'm happy to report that I am making slow progress creating a Tcl equivalent of the server side for SODA, using the PHP code as a template. --JYL |
From: Doug M. <do...@cr...> - 2003-10-27 16:09:39
|
--- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.530 / Virus Database: 325 - Release Date: 10/22/03 |
From: Raymond I. <xw...@ya...> - 2003-10-27 15:17:05
|
Hi Everyone, Just want you to know that the Widgets are coming along very nicely and I should have them ready within a few weeks :) They're much faster now thanks to css borders and the border manager, etc. -- Raymond Irving __________________________________ Do you Yahoo!? Exclusive Video Premiere - Britney Spears http://launch.yahoo.com/promos/britneyspears/ |
From: Peter R. <pet...@co...> - 2003-10-27 14:44:41
|
Hi, > Instead of var p = PanelBar.prototype = new DynLayer > it should be var p = > dynapi.setPrototype('PanelBar','DynLayer'); Ahhh, that makes everything clear! Works now. Will this be changed in the CVS too? This does not solve the problem I have with the constructor. I saw a discussion about the PanelBar before where someone suggested to move stuff out of the constructor. Will there be any fix to the PanelBar regarding this "issue" (not able to subclass it)? Keep up the good work, Peter > -- > Raymond Irving > > --- Peter Romianowski <ant...@gm...> wrote: > >>Hi, >> >>I have two problems here. First I cannot subclass >>PanelBar until I >>comment out some stuff in the constructor like that: >> >>function >> > > PanelBar(lyrmnu,lyrcnt,mnuheight,x,y,w,h,mnucss,cntcss,minimized) > >>{ >> >> this.DynLayer = DynLayer; >> this.DynLayer(null,x,y,w,h,null); >> >> if (lyrmnu) { >> this.x = x; >> ... >> >> > > this.menu.setHTML(this._mnuhtml.replace('{@min}',this._mnuhtmlmax)); > >> } >> >> this.onPreCreate(PanelBar.PreCreateEvent); >> this.onCreate(PanelBar.CreateEvent); >>} >>} >> >>Is there any common pattern how to avoid problems >>with subclassing? Or >>am I doing something totally stupid in trying to >>subclass PanelBar? >> >>The next problem is that I can't enable the >>dragevents on my subclass of >>PanelBar until I change dragevent.js line 225 >>(enableDragEvents): >> >>if(lyr.isClass('DynLayer')) >>lyr.addEventListener(DragEvent.lyrListener); >> >>to >> >>lyr.addEventListener(DragEvent.lyrListener); >> >>That is bruteforce, I know ;) I just tried to figure >>out where the >>problem is. And I found that >>myPanelBarSubclass.isClass('DynLayer') >>yields false which I consider as wrong - it is a >>DynLayer since it is a >>subclass of PanelBar which is a subclass of >>DynLayer! The quickest fix I >>can imagine is to rewrite the isClass-method to tell >>whether any >>superclass matches the argument. I don't know if >>this breaks something, >>so I didn't try that yet. >> >>If I am trying to do something totally wrong then >>please tell me! >>Otherwise I will gladly help "fixing" the issues. >> >>Regards, >>Peter >> >>default disclaimer: DynAPI rules! ;) >> >> >> >> > > ------------------------------------------------------- > >>This SF.net email is sponsored by: The SF.net >>Donation Program. >>Do you like what SourceForge.net is doing for the >>Open >>Source Community? Make a contribution, and help us >>add new >>features and functionality. Click here: >>http://sourceforge.net/donate/ >>_______________________________________________ >>Dynapi-Dev mailing list >>Dyn...@li... >> > > http://www.mail-archive.com/dyn...@li.../ > > > __________________________________ > Do you Yahoo!? > Exclusive Video Premiere - Britney Spears > http://launch.yahoo.com/promos/britneyspears/ > > > ------------------------------------------------------- > This SF.net email is sponsored by: The SF.net Donation Program. > Do you like what SourceForge.net is doing for the Open > Source Community? Make a contribution, and help us add new > features and functionality. Click here: http://sourceforge.net/donate/ > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > -- Peter Romianowski coreg Brunnenstraße 153 10115 Berlin Telefon: 030 / 41 72 42 31 Fax: 030 / 41 72 42 39 Email: mailto:rom...@co... Website: http://www.coreg.de |
From: Raymond I. <xw...@ya...> - 2003-10-27 13:37:37
|
The problem PanelBar and isClass() is due to fact that the prototype was not created using dynapi.setPrototype() Instead of var p = PanelBar.prototype = new DynLayer it should be var p = dynapi.setPrototype('PanelBar','DynLayer'); -- Raymond Irving --- Peter Romianowski <ant...@gm...> wrote: > Hi, > > I have two problems here. First I cannot subclass > PanelBar until I > comment out some stuff in the constructor like that: > > function > PanelBar(lyrmnu,lyrcnt,mnuheight,x,y,w,h,mnucss,cntcss,minimized) > { > > this.DynLayer = DynLayer; > this.DynLayer(null,x,y,w,h,null); > > if (lyrmnu) { > this.x = x; > ... > > this.menu.setHTML(this._mnuhtml.replace('{@min}',this._mnuhtmlmax)); > } > > this.onPreCreate(PanelBar.PreCreateEvent); > this.onCreate(PanelBar.CreateEvent); > } > } > > Is there any common pattern how to avoid problems > with subclassing? Or > am I doing something totally stupid in trying to > subclass PanelBar? > > The next problem is that I can't enable the > dragevents on my subclass of > PanelBar until I change dragevent.js line 225 > (enableDragEvents): > > if(lyr.isClass('DynLayer')) > lyr.addEventListener(DragEvent.lyrListener); > > to > > lyr.addEventListener(DragEvent.lyrListener); > > That is bruteforce, I know ;) I just tried to figure > out where the > problem is. And I found that > myPanelBarSubclass.isClass('DynLayer') > yields false which I consider as wrong - it is a > DynLayer since it is a > subclass of PanelBar which is a subclass of > DynLayer! The quickest fix I > can imagine is to rewrite the isClass-method to tell > whether any > superclass matches the argument. I don't know if > this breaks something, > so I didn't try that yet. > > If I am trying to do something totally wrong then > please tell me! > Otherwise I will gladly help "fixing" the issues. > > Regards, > Peter > > default disclaimer: DynAPI rules! ;) > > > > ------------------------------------------------------- > This SF.net email is sponsored by: The SF.net > Donation Program. > Do you like what SourceForge.net is doing for the > Open > Source Community? Make a contribution, and help us > add new > features and functionality. Click here: > http://sourceforge.net/donate/ > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? Exclusive Video Premiere - Britney Spears http://launch.yahoo.com/promos/britneyspears/ |
From: Leif W <war...@us...> - 2003-10-27 05:17:45
|
Think this sounds like a good idea. As a milestone marker, we could keep a percentage of documentation completed on the main page. Could have some color code, red - no docs, yellow, partially documented, green, fully documented. Could have something like a treview of the API, showing each node in the color based on it's children. You look at the top node (it's yellow most of the time), so you know something somewhere needs to be documented. Expanding the node, you see one (or more) nodes in green and yellow or red states. Expanding a yellow node, you find a list of items all green except one item is yellow, so you finish documenting that and make it green, then its parent becomes green, and you have done some work. :-) Leif ----- Original Message ----- From: "Daniel Tiru" <de...@ti...> To: <dyn...@li...> Sent: Friday, October 24, 2003 8:48 AM Subject: [Dynapi-Dev] Object / Widget documentation > Hi! > > I was thinking of a way to keep the widget and object documentation up > to date better, that is that I could set up a database and make a > webadmin to that so we could update the docs smoothly and have a better > overview of what objects/widgets that needs to be documented, and what > is missing and so on. > > Then for release we just make html of all the info stored in the db and > add it to cvs. What do you all think of this? > > What type of data we need (fill in on this) > Object Name or Widget Name > Constructor with comments > Properties with comments > Functions with comments > Private/public Methods with comments > Examples > > We could also make a comment to each file so we all know what that file > does. > > What do you think? > > Regards > Daniel > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: The SF.net Donation Program. > Do you like what SourceForge.net is doing for the Open > Source Community? Make a contribution, and help us add new > features and functionality. Click here: http://sourceforge.net/donate/ > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > |
From: Peter R. <ant...@gm...> - 2003-10-26 20:18:08
|
Hi, I have two problems here. First I cannot subclass PanelBar until I comment out some stuff in the constructor like that: function PanelBar(lyrmnu,lyrcnt,mnuheight,x,y,w,h,mnucss,cntcss,minimized) { this.DynLayer = DynLayer; this.DynLayer(null,x,y,w,h,null); if (lyrmnu) { this.x = x; ... this.menu.setHTML(this._mnuhtml.replace('{@min}',this._mnuhtmlmax)); } this.onPreCreate(PanelBar.PreCreateEvent); this.onCreate(PanelBar.CreateEvent); } } Is there any common pattern how to avoid problems with subclassing? Or am I doing something totally stupid in trying to subclass PanelBar? The next problem is that I can't enable the dragevents on my subclass of PanelBar until I change dragevent.js line 225 (enableDragEvents): if(lyr.isClass('DynLayer')) lyr.addEventListener(DragEvent.lyrListener); to lyr.addEventListener(DragEvent.lyrListener); That is bruteforce, I know ;) I just tried to figure out where the problem is. And I found that myPanelBarSubclass.isClass('DynLayer') yields false which I consider as wrong - it is a DynLayer since it is a subclass of PanelBar which is a subclass of DynLayer! The quickest fix I can imagine is to rewrite the isClass-method to tell whether any superclass matches the argument. I don't know if this breaks something, so I didn't try that yet. If I am trying to do something totally wrong then please tell me! Otherwise I will gladly help "fixing" the issues. Regards, Peter default disclaimer: DynAPI rules! ;) |
From: Raymond I. <xw...@ya...> - 2003-10-26 15:57:21
|
I think the problem is with your mail server or mail client. -- Raymond Irving --- Daniel Tiru <de...@ti...> wrote: > Really strange... Is there some logging on this > stuff? So we could see > what is wrong? > > /Daniel > > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...] On > Behalf Of Leif W > Sent: den 26 oktober 2003 00:38 > To: dyn...@li... > Subject: Re: [Dynapi-Dev] Mail problem... > > > Yeah I got a few too. About 6 for the anchor and > the other a few also. > > Leif > > ----- Original Message ----- > From: "Daniel Tiru" <de...@ti...> > To: <dyn...@li...> > Sent: Saturday, October 25, 2003 6:30 PM > Subject: [Dynapi-Dev] Mail problem... > > > > I got my anchor mail six times, and there seams to > be more comming in > > that i have written, and thats from yesterday... > Do you also get my > > mails several times? > > > > /Daniel > > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: The SF.net > Donation Program. Do you > > > like what SourceForge.net is doing for the Open > Source Community? > > Make a contribution, and help us add new features > and functionality. > > Click here: http://sourceforge.net/donate/ > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > > http://www.mail-archive.com/dyn...@li.../ > > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: The SF.net > Donation Program. Do you > like what SourceForge.net is doing for the Open > Source Community? Make > a contribution, and help us add new features and > functionality. Click > here: http://sourceforge.net/donate/ > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: The SF.net > Donation Program. > Do you like what SourceForge.net is doing for the > Open > Source Community? Make a contribution, and help us > add new > features and functionality. Click here: > http://sourceforge.net/donate/ > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? Exclusive Video Premiere - Britney Spears http://launch.yahoo.com/promos/britneyspears/ |
From: Raymond I. <xw...@ya...> - 2003-10-26 15:56:29
|
Be careful with window.onresize! I think dynapi used this event for window resizing functions. It's best to use the onresize event listener on dynapi.document inside of using window.onresize -- Raymond Irving --- Michael Bystrom <mi...@mi...> wrote: > > Yep anchor will do it, but this is how I do it. > Layer with regards to document size. > > middle = dynapi.document.addChild( new > DynLayer("",0,0,500,500) ) > > resizeLayer = function () { > var w = dynapi.document.getWidth()/2 - > middle.getWidth()/2 > var h = dynapi.document.getHeight()/2 - > middle.getHeight()/2 > middle.setLocation(w,h) > } > > window.onresize = function () { resizeLayer() } > > Cheers > Michael > > > Note: > If you have not done it you have to remove the if > statement in getWith() and > height inside the dyndocument.js otherwise dynapi > does not get the new > document size. > > p.getWidth = function() { > //if (!this.w) > this.findDimensions(); > return this.w; > }; > p.getHeight = function() { > //if (!this.h) > this.findDimensions(); > return this.h; > }; > > > > > > > > Den 03-10-25 08.29, skrev "C Kissinger" > <cki...@ne...>: > > > I know I've seen > mydynlayer.setAnchor({centerH:left,centerV:top}) > used > > somewhere. > > I'm not exactly sure yet how to use anchors, but I > hope this helps. > > > > Christopher Kissinger > > Web Development Consultant > > > > > >>>> -----Original Message----- > >>>> From: dyn...@li... > >>>> > [mailto:dyn...@li...] On > Behalf > >>>> Of Daniel Tiru > >>>> Sent: Friday, October 24, 2003 7:37 PM > >>>> To: dyn...@li... > >>>> Subject: [Dynapi-Dev] Anchor > >>>> > >>>> > >>>> Hi! > >>>> > >>>> If i have a layer that i need to positioned in > the middle and it is > >>>> 500,500 in size how do i do this? If the > window is bigger > >>>> the layer will > >>>> still be in the middle and so on... I am > stuck.. > >>>> > >>>> Regards > >>>> Daniel > > > > ------------------------------------------------------- > This SF.net email is sponsored by: The SF.net > Donation Program. > Do you like what SourceForge.net is doing for the > Open > Source Community? Make a contribution, and help us > add new > features and functionality. Click here: > http://sourceforge.net/donate/ > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? Exclusive Video Premiere - Britney Spears http://launch.yahoo.com/promos/britneyspears/ |
From: Raymond I. <xw...@ya...> - 2003-10-26 15:37:57
|
How about using special extensions to represent the file types? Visual DynAPI Project: *.vdp (or .vdf, .vde, etc) Visual DynAPI Widget: *.vdw (or .vdd, .vdh, .vdc, etc) The .vdw could be used to store the widget's properties, functions, etc. I guess wou could use SODA to easily create such a file, agree? IMO it's very easy and very expandable: widgetInfo ={ name:'Widget Name', version: '1.0.0', description:'Widget\'s Description', libraryname:'dynapi.gui.MyWidget', functions: { myname1:['arguments','description'], myname2:['arguments','description'] }, properties: { myproperty1:'description', myproperty2:'description', }, events:{ myevent1:['arugments','description'], } } This js object can then be converted into a SODA format and then saved into a .vdw file. The vde can then be used to read the .vdw files to get information about the widget. The vde might have to include something like a widgets.js file and widgets/ folder which stores the names of the .vdw files widgets/mywidget.vdw widgets/widgets.js inside widgets.js we could have the following: vde.RegisterWidget('MyWidget','mywidget.vdw'); vde.RegisterWidget('MyWidget2','mywidget2.vdw'); The vde could then have a section that list all registered widgets. From this list the user can then select the widgets that that would like to appear inside the vde's toolbox (or widget) box. It's at this point that the .vdw files are loaded and the information stored inside the vde. With this method the vde could list any number of available widgets but only the ones used inside the toolbox are loaded. The toolbox could be placed at the left-hand side of the vde to display the selected widgets. The user could then click on the widget and then click and drag an area inside the document to create the widget. At this point the widget is created and the cover layer is then added to it to prevent events from been triggered -- Raymond Irving --- Doug Melvin <do...@cr...> wrote: > Possible a seperate "descripter" file. > These would mean not loading the function outside of > the VDE.. > > Like: DynTree.js and DynTree.Descriptor.js > and put the descriptors in a seperate folder for > managability. > > ----- Original Message ----- > From: "Daniel Tiru" <de...@ti...> > To: <dyn...@li...> > Sent: Friday, October 24, 2003 6:19 AM > Subject: RE: [Dynapi-Dev] VDE-0.1rc3 release > > > > Hi again! > > > > What i was thinking about is that we maybee make a > separate "function" > > for each widget that is implemented to the VDE > returning the things > > needed in a nice format. > > > > Like > > getWidgetInfo(mywidget) { > > // returns two arrays or something with all the > arguments > > // needed for the constructor and one with the > methods for the > > // widget. Maybee even some general info on what > the widget is? > > } > > > > Is this possible to do and how to do it, i dont > know the answer but > > myabee this solution can be a quite quick one? > > > > I agree with the adding of this project to the > cvs. > > > > Regards > > Daniel > > > > -----Original Message----- > > From: dyn...@li... > > [mailto:dyn...@li...] On > Behalf Of Raymond > > Irving > > Sent: den 23 oktober 2003 22:12 > > To: dyn...@li... > > Subject: Re: [Dynapi-Dev] VDE-0.1rc3 release > > > > > > > > See below: > > > > --- Michael Bystrom <mi...@mi...> > > wrote: > > > > > > I also wrote a VDE wrapper that lets you import > the > > > saved vde xml file > > > directly into the dynapi, and it will recreate > the > > > project for you. > > > > Not sure how this works but will look into it. > > > > > I also gave Spock a little face lift so that it > > > doesn't feel left out. > > > > Ok, but now I can hardly see the button outlines. > > > > > If anybody got Ideas for the add event or add > widget > > > please let me know. > > > > Add widget should be the last thing that we do. > It's > > very complex and will require us to design a some > kind > > of header file as Daniel had suggested. > > > > I think add events to widgets should be much > easier to > > do. Here how I think it can be done: > > > > 1) Double click on a layer to open up a code > window. > > This window will contain a drop down menu of the > > various events. > > > > 2) The user then selects the event and then enter > som > > code in a text box below the drop down menu and > then > > click ok. This should then save the text into some > > events collection object. > > > > > And please help debug on windows > > > > Will do. > > > > Have you ever tried creating a very large project > with > > the vde? You should try it and then try saving and > > loading the project to how it performs performs. > > > > SODA takes a longer time to convert a js object > into > > string and back than it would a js array. Where > > possible it's best to use arrays. For the > DataSource > > class I had to use to following format inorder to > get > > better performance when working with lots of data. > > > > record={ > > dataRowIndex:0, > > dataRowCount:4, > > fieldnames:['id','fname'], > > fieldvalues:[ > > [1,'mary'], > > [1,'jane'], > > [1,'john'], > > [1,'paul'], > > ] > > } > > > > > > -- > > Raymond Irving > > > > > http://www.michaelbystrom.com/download.php > > > (at the bottom of the page VDE-0.1rc3) > > > > > > Michael > > > > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.net email is sponsored by: The SF.net > > > Donation Program. > > > Do you like what SourceForge.net is doing for > the > > > Open > > > Source Community? Make a contribution, and help > us > > > add new > > > features and functionality. Click here: > http://sourceforge.net/donate/ > > > _______________________________________________ > > > Dynapi-Dev mailing list > > > Dyn...@li... > > > > > > http://www.mail-archive.com/dyn...@li.../ > > > > > > __________________________________ > > Do you Yahoo!? > > The New Yahoo! Shopping - with improved product > search > > http://shopping.yahoo.com > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: The SF.net > Donation Program. Do you > > like what SourceForge.net is doing for the Open > Source Community? Make > > a contribution, and help us add new features and > functionality. Click > > here: http://sourceforge.net/donate/ > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > > http://www.mail-archive.com/dyn...@li.../ > > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: The SF.net > Donation Program. > > Do you like what SourceForge.net is doing for the > Open > > Source Community? Make a contribution, and help > us add new > > features and functionality. Click here: > http://sourceforge.net/donate/ > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > > http://www.mail-archive.com/dyn...@li.../ > === message truncated === __________________________________ Do you Yahoo!? Exclusive Video Premiere - Britney Spears http://launch.yahoo.com/promos/britneyspears/ |
From: Kevin <ke...@ke...> - 2003-10-26 15:35:44
|
Yes the list is getting repeats - so will all subscribers. - Kevin ----- Original Message ----- From: "Daniel Tiru" <de...@ti...> To: <dyn...@li...> Sent: Saturday, October 25, 2003 10:30 PM Subject: [Dynapi-Dev] Mail problem... > I got my anchor mail six times, and there seams to be more comming in > that i have written, and thats from yesterday... Do you also get my > mails several times? > > /Daniel > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: The SF.net Donation Program. > Do you like what SourceForge.net is doing for the Open > Source Community? Make a contribution, and help us add new > features and functionality. Click here: http://sourceforge.net/donate/ > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ |
From: Raymond I. <xw...@ya...> - 2003-10-26 15:10:13
|
--- Michael Bystrom <mi...@mi...> wrote: > .... > When a widget is called it should be created in the > grid and it should be > treated as one object. Just like flash. I don¹t > think this is a big problem. > But the widgets maybe have to be more VDE type > specific. And I think that > both events and widgets should not be "live" until > you would preview the > project. > > > What do you all think? That's true. Widgets should not be active untill it's previewed. I think we can simple convert any wiget into an object by adding a cover layer to the widget inside the vde: var cover = new DynLayer(null,0,0,0,0) cover.setAnchor({top:0,right:0,bottom:0,left:0}); cover.addEventListener({ // here we add mouse events that prevents // events from reaching the widget onclick : functione(e){ e.preventBubble(); }, onmouseover : functione(e){ e.preventBubble(); }, onmouseout : functione(e){ e.preventBubble(); } // add other mouseevents, etc }) // add cover to widget widget.addChild(cover); Using this method widgets will now act as objects within the vde. -- Raymond Irving > It's gonna be fun :) > > > Regards > > Daniel > > > > ------------------------------------------------------- > This SF.net email is sponsored by: The SF.net > Donation Program. > Do you like what SourceForge.net is doing for the > Open > Source Community? Make a contribution, and help us > add new > features and functionality. Click here: > http://sourceforge.net/donate/ > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? Exclusive Video Premiere - Britney Spears http://launch.yahoo.com/promos/britneyspears/ |
From: Raymond I. <xw...@ya...> - 2003-10-26 14:54:48
|
I think once you click on the layer inside the vde it should remain in select/edit mode so the use can know which layer is currently selected. Clicking and holding for 400ms does the same think but it just take a longer time :) In most ide (or visual ide) once you click on the object it remains selected so you can know which object is selected. -- Raymond Irving --- Daniel Tiru <de...@ti...> wrote: > Hej Michael! > > What would be really good in the vde is: > When dragged a layer, and the layer is still active, > the boxes should > not be removed. > If dragging a box on a layer, the layer could be > resized. > > I could not rename a layer yesterday when i tried, > is there some > "special" way to do that or is that feature not > implemented? > > Just some small idees. > > Regards > Daniel > > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...] On > Behalf Of Michael > Bystrom > Sent: den 23 oktober 2003 14:28 > To: dyn...@li... > Subject: [Dynapi-Dev] VDE-0.1rc3 release > > > VDE-0.1rc3 > > All functions are now working (I hope). :) > > Only one little thing with the way that image path > is saved, have to > think on this over a beer. > > I also wrote a VDE wrapper that lets you import the > saved vde xml file > directly into the dynapi, and it will recreate the > project for you. > > Check the folder "import" > > I also gave Spock a little face lift so that it > doesn't feel left out. > > If anybody got Ideas for the add event or add widget > please let me know. > > And please help debug on windows > > http://www.michaelbystrom.com/download.php > (at the bottom of the page VDE-0.1rc3) > > Michael > > > > ------------------------------------------------------- > This SF.net email is sponsored by: The SF.net > Donation Program. Do you > like what SourceForge.net is doing for the Open > Source Community? Make > a contribution, and help us add new features and > functionality. Click > here: http://sourceforge.net/donate/ > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: The SF.net > Donation Program. > Do you like what SourceForge.net is doing for the > Open > Source Community? Make a contribution, and help us > add new > features and functionality. Click here: > http://sourceforge.net/donate/ > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? Exclusive Video Premiere - Britney Spears http://launch.yahoo.com/promos/britneyspears/ |
From: Daniel T. <de...@ti...> - 2003-10-25 22:53:00
|
Really strange... Is there some logging on this stuff? So we could see what is wrong? /Daniel -----Original Message----- From: dyn...@li... [mailto:dyn...@li...] On Behalf Of Leif W Sent: den 26 oktober 2003 00:38 To: dyn...@li... Subject: Re: [Dynapi-Dev] Mail problem... Yeah I got a few too. About 6 for the anchor and the other a few also. Leif ----- Original Message ----- From: "Daniel Tiru" <de...@ti...> To: <dyn...@li...> Sent: Saturday, October 25, 2003 6:30 PM Subject: [Dynapi-Dev] Mail problem... > I got my anchor mail six times, and there seams to be more comming in > that i have written, and thats from yesterday... Do you also get my > mails several times? > > /Daniel > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: The SF.net Donation Program. Do you > like what SourceForge.net is doing for the Open Source Community? > Make a contribution, and help us add new features and functionality. > Click here: http://sourceforge.net/donate/ > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > ------------------------------------------------------- This SF.net email is sponsored by: The SF.net Donation Program. Do you like what SourceForge.net is doing for the Open Source Community? Make a contribution, and help us add new features and functionality. Click here: http://sourceforge.net/donate/ _______________________________________________ Dynapi-Dev mailing list Dyn...@li... http://www.mail-archive.com/dyn...@li.../ |
From: Leif W <war...@us...> - 2003-10-25 22:45:41
|
Yeah I got a few too. About 6 for the anchor and the other a few also. Leif ----- Original Message ----- From: "Daniel Tiru" <de...@ti...> To: <dyn...@li...> Sent: Saturday, October 25, 2003 6:30 PM Subject: [Dynapi-Dev] Mail problem... > I got my anchor mail six times, and there seams to be more comming in > that i have written, and thats from yesterday... Do you also get my > mails several times? > > /Daniel > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: The SF.net Donation Program. > Do you like what SourceForge.net is doing for the Open > Source Community? Make a contribution, and help us add new > features and functionality. Click here: http://sourceforge.net/donate/ > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > |
From: Daniel T. <de...@ti...> - 2003-10-25 22:33:11
|
I got my anchor mail six times, and there seams to be more comming in that i have written, and thats from yesterday... Do you also get my mails several times? /Daniel |
From: Daniel T. <de...@ti...> - 2003-10-25 19:05:42
|
Hi! I was thinking of a way to keep the widget and object documentation up to date better, that is that I could set up a database and make a webadmin to that so we could update the docs smoothly and have a better overview of what objects/widgets that needs to be documented, and what is missing and so on. Then for release we just make html of all the info stored in the db and add it to cvs. What do you all think of this? What type of data we need (fill in on this) Object Name or Widget Name Constructor with comments Properties with comments Functions with comments Private/public Methods with comments Examples We could also make a comment to each file so we all know what that file does. What do you think? Regards Daniel |
From: Michael B. <mi...@mi...> - 2003-10-25 17:45:27
|
See below: Den 03-10-23 14.38, skrev "Raymond Irving" <xw...@ya...>: > > Hi Michael, > > Please submit a news item about the VDE on the dynapi > website as well: > > http://dynapi.sourceforge.net/dynapi/submit.php?menu=21 Shure I will. > I think it's now time I create that vde folder in the > dynapi CVS on sourceforge, everyone agree? Ok sounds fine. Does anybody know of a good mac 0S9 CVS app ? > PS. I will be joinin the development of the VDE as > soon as I get a few things out of the way. I think it > would be cool if we could get the vde to work with a > unmodified version of the dynapi. That means that > anyone could download dynapi3 and vde and then update > the version of dynapi that vde uses. But thats just an > idea and is not very important at this point. I have not made any major changes to the dynapi, there are some minor changes that I think should be there. I will list all my changes later. > One other thing I've noticed is that when in edit mode > and I try to select a layer B other than the one being > edited, layer B shifts to the position of the layer > that's selected (or edited). Yes that has been fixed will be in rc4 > Keep up the good work. > > > Best regard, > > -- > Raymond Irving |