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: Darin K. <dka...@ef...> - 2001-02-11 04:22:55
|
Does oversight have an actual executable, or is it all browser based? If it's browser based, are the window titles constant? If so, I could write a small tray-icon app in Delphi that could hide selected windows based on their captions. No big deal really, I would just need a list of the window captions in their exact case. -----Original Message----- From: Bill Lovett To: dyn...@li... Sent: 2/10/01 7:44 PM Subject: RE: [Dynapi-Dev] Oversight (was: a couple of tools) Instead of managing windows by shading them, what do you think about putting a "remote control" in the main window of whatever you're debugging? I added the following crude functions listed below to oversight.js, then called addPageController() right after calling Oversight.run(). The result is a DynLayer that easily lets you bring a specific window (or all three) into focus. If pursued further, this approach could lead to a best-of-both-worlds between Oversight and DynAPI.Diagnose: some stuff happening in external windows, some stuff happening inside the main one. On a related note, does anyone know of a way to filter out Oversight's windows from the Windows task switcher? That would be a handy trick, saving many unnecessary alt-tabs. -bill addPageController : function() { OversightController= new DynLayer() OversightController.setSize(100,100) OversightController.moveTo(DynAPI.document.w-OversightController.w,0) OversightController.setBgColor('#cc99ff') DynAPI.document.addChild(OversightController) OversightController.setHTML( '<a href="#" onClick="Oversight.idewin.focus()">Show IDE</a><br>' + '<a href="#" onClick="Oversight.Oversightwin.focus()">Show Console</a><br>' + '<a href="#" onClick="Oversight.watcher.focus()">Show Watcher</a><br>' + '<a href="#" onClick="Oversight.arrange()">Arrange All</a>' ) }, arrange : function() { Oversight.idewin.moveTo(0,0); Oversight.idewin.focus() Oversight.Oversightwin.moveTo(262,0);Oversight.Oversightwin.focus() Oversight.watcher.moveTo(0,screen.availHeight-230);Oversight.watcher.foc us() }, -----Original Message----- From: dyn...@li... [mailto:dyn...@li...]On Behalf Of Pascal Bestebroer Sent: Saturday, February 10, 2001 1:19 PM To: dyn...@li... Subject: RE: [Dynapi-Dev] Oversight (was: a couple of tools) Already struggling with it.. Although not all windows need to be open at all times, you only have to open the debugger when you need it. I was trying to work out some way to shade windows (min. size is 100x100) but can't get it to work correctly yet, and not sure if it works under IE4. I'm now trying to make the windows as easy-placed and small as possible.. but there will be some window moving when your working, for people familiar with Borland development envrionments it won't be such a big thing (there are always some windows floating around as well) but I think for people used to DreamWeaver this will be not so familiar, and might look a bit difficult at first) Today I got the property editor working (simple, with bugs.. but it works :-) So I'm pretty sure I can release something this weekend (nothing really useable for projects or anything, but I'm hoping for feed back on it) _______________________________________________ Dynapi-Dev mailing list Dyn...@li... http://lists.sourceforge.net/lists/listinfo/dynapi-dev |
From: Bill L. <wil...@ve...> - 2001-02-11 03:45:20
|
Instead of managing windows by shading them, what do you think about putting a "remote control" in the main window of whatever you're debugging? I added the following crude functions listed below to oversight.js, then called addPageController() right after calling Oversight.run(). The result is a DynLayer that easily lets you bring a specific window (or all three) into focus. If pursued further, this approach could lead to a best-of-both-worlds between Oversight and DynAPI.Diagnose: some stuff happening in external windows, some stuff happening inside the main one. On a related note, does anyone know of a way to filter out Oversight's windows from the Windows task switcher? That would be a handy trick, saving many unnecessary alt-tabs. -bill addPageController : function() { OversightController= new DynLayer() OversightController.setSize(100,100) OversightController.moveTo(DynAPI.document.w-OversightController.w,0) OversightController.setBgColor('#cc99ff') DynAPI.document.addChild(OversightController) OversightController.setHTML( '<a href="#" onClick="Oversight.idewin.focus()">Show IDE</a><br>' + '<a href="#" onClick="Oversight.Oversightwin.focus()">Show Console</a><br>' + '<a href="#" onClick="Oversight.watcher.focus()">Show Watcher</a><br>' + '<a href="#" onClick="Oversight.arrange()">Arrange All</a>' ) }, arrange : function() { Oversight.idewin.moveTo(0,0); Oversight.idewin.focus() Oversight.Oversightwin.moveTo(262,0);Oversight.Oversightwin.focus() Oversight.watcher.moveTo(0,screen.availHeight-230);Oversight.watcher.focus() }, -----Original Message----- From: dyn...@li... [mailto:dyn...@li...]On Behalf Of Pascal Bestebroer Sent: Saturday, February 10, 2001 1:19 PM To: dyn...@li... Subject: RE: [Dynapi-Dev] Oversight (was: a couple of tools) Already struggling with it.. Although not all windows need to be open at all times, you only have to open the debugger when you need it. I was trying to work out some way to shade windows (min. size is 100x100) but can't get it to work correctly yet, and not sure if it works under IE4. I'm now trying to make the windows as easy-placed and small as possible.. but there will be some window moving when your working, for people familiar with Borland development envrionments it won't be such a big thing (there are always some windows floating around as well) but I think for people used to DreamWeaver this will be not so familiar, and might look a bit difficult at first) Today I got the property editor working (simple, with bugs.. but it works :-) So I'm pretty sure I can release something this weekend (nothing really useable for projects or anything, but I'm hoping for feed back on it) |
From: <no...@so...> - 2001-02-10 21:59:51
|
Bug #131862, was updated on 2001-Feb-10 13:13 Here is a current snapshot of the bug. Project: DynAPI 2 Category: Browser-Specific Issue Status: Closed Resolution: Fixed Bug Group: None Priority: 5 Submitted by: nobody Assigned to : nobody Summary: setHTML on Mac Details: As commented by several on the list, > there's a bug on mac IE5 which causes the > layer to move when content is written to it. > (using .innerHTML which the ie-part of setHTML() > uses to write content to DynLayers) > > the fix is pretty easy, just include a linebreak, \n > at the end of the setHTML() > martin ström So, the \n could be included in the setHTML() function, either for all platforms, or for Mac only Richard Bennett Follow-Ups: Date: 2001-Feb-10 14:00 By: dcpascal Comment: Already fixed it :) read the post, and fixed it adding a /n incase of platform=='mac' ------------------------------------------------------- For detailed info, follow this link: http://sourceforge.net/bugs/?func=detailbug&bug_id=131862&group_id=5757 |
From: Raymond S. <dst...@or...> - 2001-02-10 21:48:11
|
Mr. Pascal, sir... Much time has been spent, pondering... the "rock"! Transglobal warfare within the bounds and guidelines of the "Primitive Arms Law" required a great deal of thought on my part. 1) It needed to be powerful, small rocks suck compared to boulders. 2) It needed to emulate the "throw of a rock". This all began with rock throws to begin with. 3) Stealth in transit was critical. Something that wouldn't raise alarms traveling through European streets and byways. 4) Construction was limited to slightly processed natural resources, think lumber and of course "rocks". 5) Amphibious capabilities became important later on to allow me to maintain "stealth and illusion" to the point of final attack. 6) Finally the "crew", who to partner with in this attack that would allow me to best "blend" into the likely and probable surrounds where Mr. Pascal,.. sir works. The best way to roll this strategy out is as follows... First I will present the "primary weapon" in full "stealth mode" (reference attached photo). Then over the next few days I will show Mr. Pascal how this wonderous device "unwraps" itself in stages as it crosses water onto land. The select "crew" that was assembled to help in this grand endeavor... Then sheads its "modern day trojan horse" disquise as it nears the final target... :O) Introducing... The U.S.S ROCK!! |
From: <no...@so...> - 2001-02-10 21:12:39
|
Bug #131862, was updated on 2001-Feb-10 13:13 Here is a current snapshot of the bug. Project: DynAPI 2 Category: Browser-Specific Issue Status: Open Resolution: None Bug Group: None Priority: 5 Submitted by: nobody Assigned to : nobody Summary: setHTML on Mac Details: As commented by several on the list, > there's a bug on mac IE5 which causes the > layer to move when content is written to it. > (using .innerHTML which the ie-part of setHTML() > uses to write content to DynLayers) > > the fix is pretty easy, just include a linebreak, \n > at the end of the setHTML() > martin ström So, the \n could be included in the setHTML() function, either for all platforms, or for Mac only Richard Bennett For detailed info, follow this link: http://sourceforge.net/bugs/?func=detailbug&bug_id=131862&group_id=5757 |
From: Pascal B. <pa...@dy...> - 2001-02-10 20:43:24
|
Just included this workaround into setHTML let me know if this fixes everything for Mac. ps. don't get used to these fast fixes.. just had some time left :) Pascal Bestebroer pa...@dy... http://www.dynamic-core.net > -----Oorspronkelijk bericht----- > Van: dyn...@li... > [mailto:dyn...@li...]Namens Matthew A. Shirey > Verzonden: zaterdag 10 februari 2001 20:21 > Aan: dyn...@li... > Onderwerp: RE: [Dynapi-Dev] IE 5.0 Mac: setHTML with tables not working > > > I commented on this a while back... I think it should be put in, but > only on a platform check. No sense including something that's not > needed on the other platforms. But to play both sides of the fence you > all may want to make it consistant for all of the platforms... Just my > little input. > > -- Matthew > > -----Original Message----- > From: Richard Bennett [mailto:ma...@ri...] > Sent: Saturday, February 10, 2001 11:26 AM > To: dyn...@li... > Subject: Re: [Dynapi-Dev] IE 5.0 Mac: setHTML with tables not working > > > > Yeah, someone told me to to end Mac setHTML stuff with a newline > Has this been cross-browser tested? (wait, let me check the Matrix, > argh, no > mention) > If it causes no harm, we could add the /n in the SetHTML() function, or > with > a platform check - another Mac bug solved. > > Cheers, > Richard Bennett > > ma...@ri... > www.richardinfo.com > (Everything running on, and ported to the 19/12/2000 snapshot of > DynAPI2) > > ----- Original Message ----- > From: "Matthew A. Shirey" <ms...@sh...> > To: <dyn...@li...> > Sent: Saturday, February 10, 2001 8:08 PM > Subject: RE: [Dynapi-Dev] IE 5.0 Mac: setHTML with tables not working > > > > Yeah, someone told me to to end Mac setHTML stuff with a newline. > Heh, > > it actually works for me, try it. Try your setHTML line as such: > > > > layer.setHTML('<table border=0 cellpadding=4 > > cellspacing=2><tr><td>text</td><td>more text</td></tr></table>\n') > > > > -- Matthew > > > > -----Original Message----- > > From: Monica Keefe [mailto:mo...@ko...] > > Sent: Saturday, February 10, 2001 10:42 AM > > To: 'dyn...@li...' > > Subject: [Dynapi-Dev] IE 5.0 Mac: setHTML with tables not working > > > > > > Hi all, > > > > I'm working on a hierarchical menu project that has to work in: > > > > Windows: > > N4.x and up > > IE 4.x and up > > > > Mac: > > NS 4.75 > > IE 5.0 > > > > So far I'm only having one platform problem :-) > > > > I create a DynLayer and in the oncreate method, I use setHTML. This > > works > > fine until I try to add a table, like this: > > > > layer.setHTML('<table border=0 cellpadding=4 > > cellspacing=2><tr><td>text</td><td>more text</td></tr></table>') > > > > It works fine with other HTML, including <a href> tags and some other > > <font> > > tags, but won't work with the table tags. Doesn't cause problems in > any > > other browser that I've tried. > > > > Has anyone else experienced this? > > > > Thanks, > > Monica > > > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > > > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > > ____________________________________________________________ > > Get your free domain name and domain-based e-mail from > > Namezero.com. New! Namezero Plus domains now available. > > Find out more at: http://www.namezero.com > > > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > |
From: Robert R. <rra...@ya...> - 2001-02-10 20:15:15
|
Yeah, I can add the example to cvs. I noticed this a while back - in IE 5, you have to hit reload for the buttonimage to show up the first time. I'll add that to the sourceforge bugs. -- // Robert Rainwater On 2/9/2001, 4:43:24 PM EST, Raymond wrote about "[Dynapi-Dev] Pay attention Robert, Pascal, Admins....": > Gentlemen, > Attached is an Buttonimage HTML file and 2 images that should be included in the 1) Examples and 2) Images/Common files. It appears to be the only included widget without a working example and the > only included widget that still has global event bugs. Just might be a coorelation. > Raymond ---------------------- DynAPI Snapshots: http://dynapi.sourceforge.net/snapshot/ DynAPI Homepage: http://dynapi.sourceforge.net/ |
From: Matthew A. S. <ms...@sh...> - 2001-02-10 19:29:16
|
I commented on this a while back... I think it should be put in, but only on a platform check. No sense including something that's not needed on the other platforms. But to play both sides of the fence you all may want to make it consistant for all of the platforms... Just my little input. -- Matthew -----Original Message----- From: Richard Bennett [mailto:ma...@ri...] Sent: Saturday, February 10, 2001 11:26 AM To: dyn...@li... Subject: Re: [Dynapi-Dev] IE 5.0 Mac: setHTML with tables not working > Yeah, someone told me to to end Mac setHTML stuff with a newline Has this been cross-browser tested? (wait, let me check the Matrix, argh, no mention) If it causes no harm, we could add the /n in the SetHTML() function, or with a platform check - another Mac bug solved. Cheers, Richard Bennett ma...@ri... www.richardinfo.com (Everything running on, and ported to the 19/12/2000 snapshot of DynAPI2) ----- Original Message ----- From: "Matthew A. Shirey" <ms...@sh...> To: <dyn...@li...> Sent: Saturday, February 10, 2001 8:08 PM Subject: RE: [Dynapi-Dev] IE 5.0 Mac: setHTML with tables not working > Yeah, someone told me to to end Mac setHTML stuff with a newline. Heh, > it actually works for me, try it. Try your setHTML line as such: > > layer.setHTML('<table border=3D0 cellpadding=3D4 > cellspacing=3D2><tr><td>text</td><td>more text</td></tr></table>\n') > > -- Matthew > > -----Original Message----- > From: Monica Keefe [mailto:mo...@ko...] > Sent: Saturday, February 10, 2001 10:42 AM > To: 'dyn...@li...' > Subject: [Dynapi-Dev] IE 5.0 Mac: setHTML with tables not working > > > Hi all, > > I'm working on a hierarchical menu project that has to work in: > > Windows: > N4.x and up > IE 4.x and up > > Mac: > NS 4.75 > IE 5.0 > > So far I'm only having one platform problem :-) > > I create a DynLayer and in the oncreate method, I use setHTML. This > works > fine until I try to add a table, like this: > > layer.setHTML('<table border=3D0 cellpadding=3D4 > cellspacing=3D2><tr><td>text</td><td>more text</td></tr></table>') > > It works fine with other HTML, including <a href> tags and some other > <font> > tags, but won't work with the table tags. Doesn't cause problems in any > other browser that I've tried. > > Has anyone else experienced this? > > Thanks, > Monica > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > ____________________________________________________________ > Get your free domain name and domain-based e-mail from > Namezero.com. New! Namezero Plus domains now available. > Find out more at: http://www.namezero.com > _______________________________________________ Dynapi-Dev mailing list Dyn...@li... http://lists.sourceforge.net/lists/listinfo/dynapi-dev |
From: Richard B. <ma...@ri...> - 2001-02-10 19:25:10
|
> Yeah, someone told me to to end Mac setHTML stuff with a newline Has this been cross-browser tested? (wait, let me check the Matrix, argh, no mention) If it causes no harm, we could add the /n in the SetHTML() function, or with a platform check - another Mac bug solved. Cheers, Richard Bennett ma...@ri... www.richardinfo.com (Everything running on, and ported to the 19/12/2000 snapshot of DynAPI2) ----- Original Message ----- From: "Matthew A. Shirey" <ms...@sh...> To: <dyn...@li...> Sent: Saturday, February 10, 2001 8:08 PM Subject: RE: [Dynapi-Dev] IE 5.0 Mac: setHTML with tables not working > Yeah, someone told me to to end Mac setHTML stuff with a newline. Heh, > it actually works for me, try it. Try your setHTML line as such: > > layer.setHTML('<table border=0 cellpadding=4 > cellspacing=2><tr><td>text</td><td>more text</td></tr></table>\n') > > -- Matthew > > -----Original Message----- > From: Monica Keefe [mailto:mo...@ko...] > Sent: Saturday, February 10, 2001 10:42 AM > To: 'dyn...@li...' > Subject: [Dynapi-Dev] IE 5.0 Mac: setHTML with tables not working > > > Hi all, > > I'm working on a hierarchical menu project that has to work in: > > Windows: > N4.x and up > IE 4.x and up > > Mac: > NS 4.75 > IE 5.0 > > So far I'm only having one platform problem :-) > > I create a DynLayer and in the oncreate method, I use setHTML. This > works > fine until I try to add a table, like this: > > layer.setHTML('<table border=0 cellpadding=4 > cellspacing=2><tr><td>text</td><td>more text</td></tr></table>') > > It works fine with other HTML, including <a href> tags and some other > <font> > tags, but won't work with the table tags. Doesn't cause problems in any > other browser that I've tried. > > Has anyone else experienced this? > > Thanks, > Monica > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > ____________________________________________________________ > Get your free domain name and domain-based e-mail from > Namezero.com. New! Namezero Plus domains now available. > Find out more at: http://www.namezero.com > |
From: Matthew A. S. <ms...@sh...> - 2001-02-10 19:17:03
|
Yeah, someone told me to to end Mac setHTML stuff with a newline. Heh, it actually works for me, try it. Try your setHTML line as such: layer.setHTML('<table border=3D0 cellpadding=3D4 cellspacing=3D2><tr><td>text</td><td>more text</td></tr></table>\n') -- Matthew -----Original Message----- From: Monica Keefe [mailto:mo...@ko...] Sent: Saturday, February 10, 2001 10:42 AM To: 'dyn...@li...' Subject: [Dynapi-Dev] IE 5.0 Mac: setHTML with tables not working Hi all, I'm working on a hierarchical menu project that has to work in: Windows: N4.x and up IE 4.x and up Mac: NS 4.75 IE 5.0 So far I'm only having one platform problem :-) I create a DynLayer and in the oncreate method, I use setHTML. This works fine until I try to add a table, like this: layer.setHTML('<table border=3D0 cellpadding=3D4 cellspacing=3D2><tr><td>text</td><td>more text</td></tr></table>') It works fine with other HTML, including <a href> tags and some other <font> tags, but won't work with the table tags. Doesn't cause problems in any other browser that I've tried. Has anyone else experienced this? Thanks, Monica _______________________________________________ Dynapi-Dev mailing list Dyn...@li... http://lists.sourceforge.net/lists/listinfo/dynapi-dev |
From: Bill L. <wil...@ve...> - 2001-02-10 19:06:34
|
The amazing martin str=F6m posted a solution to this problem last month o= n the help list. Check it out: > there's a bug on mac IE5 which causes the > layer to move when content is written to it. > (using .innerHTML which the ie-part of setHTML() > uses to write content to DynLayers) > > the fix is pretty easy, just include a linebreak, \n > at the end of the setHTML() call: > > .setHTML('<table><tr><td>jadsfhajshfkjlasdhf</td></tr></table>\n'); -bill |
From: Monica K. <mo...@ko...> - 2001-02-10 18:43:48
|
Hi all, I'm working on a hierarchical menu project that has to work in: Windows: N4.x and up IE 4.x and up Mac: NS 4.75 IE 5.0 So far I'm only having one platform problem :-) I create a DynLayer and in the oncreate method, I use setHTML. This works fine until I try to add a table, like this: layer.setHTML('<table border=0 cellpadding=4 cellspacing=2><tr><td>text</td><td>more text</td></tr></table>') It works fine with other HTML, including <a href> tags and some other <font> tags, but won't work with the table tags. Doesn't cause problems in any other browser that I've tried. Has anyone else experienced this? Thanks, Monica |
From: Pascal B. <pa...@dy...> - 2001-02-10 18:19:11
|
Already struggling with it.. Although not all windows need to be open at all times, you only have to open the debugger when you need it. I was trying to work out some way to shade windows (min. size is 100x100) but can't get it to work correctly yet, and not sure if it works under IE4. I'm now trying to make the windows as easy-placed and small as possible.. but there will be some window moving when your working, for people familiar with Borland development envrionments it won't be such a big thing (there are always some windows floating around as well) but I think for people used to DreamWeaver this will be not so familiar, and might look a bit difficult at first) Today I got the property editor working (simple, with bugs.. but it works :-) So I'm pretty sure I can release something this weekend (nothing really useable for projects or anything, but I'm hoping for feed back on it) Pascal Bestebroer pa...@dy... http://www.dynamic-core.net -----Oorspronkelijk bericht----- Van: dyn...@li... [mailto:dyn...@li...]Namens Richard Bennett Verzonden: zaterdag 10 februari 2001 19:12 Aan: dyn...@li... Onderwerp: Re: [Dynapi-Dev] Oversight (was: a couple of tools) Hi, One thing I was pondering while checking the screenshot, is that you seem to have a large screen, so all windows have space, but please check what happens at 1024 or 800, it clogs the display, maybe you can implement show/hide, or shrink unused windows or something. Maybe it would be even nicer to add a "tile" function, which resizes all windows to fill the screen. Cheers, Richard Bennett ma...@ri... www.richardinfo.com (Everything running on, and ported to the 19/12/2000 snapshot of DynAPI2) ----- Original Message ----- From: Pascal Bestebroer To: dyn...@li... Sent: Saturday, February 10, 2001 10:43 AM Subject: RE: [Dynapi-Dev] a couple of tools hmm, I can think of one :) I'm currently working on Oversight, which will be a debugger and editor in one.. you can still download an early debugger version from my site : http://www.dynamic-core.net/ I will hopefully be able to upload the latest code this weekend.. (the editor part, and an updates debugger) Pascal Bestebroer pa...@dy... http://www.dynamic-core.net -----Oorspronkelijk bericht----- Van: dyn...@li... [mailto:dyn...@li...]Namens Monica Keefe Verzonden: zaterdag 10 februari 2001 2:11 Aan: 'dyn...@li...' Onderwerp: RE: [Dynapi-Dev] a couple of tools Does anyone know of any debugging tools to use on the mac? Anything other than alert boxes would be very helpful :-) Thanks! -----Original Message----- From: Doug Melvin [mailto:do...@cr...] Sent: Friday, February 09, 2001 2:21 PM To: dyn...@li... Subject: [Dynapi-Dev] a couple of tools I have found the following tools to be indeispensible when working with (and debuggin) DynAPI (WIN32 - sorry) 1) FreeMemPro http://www.downloads.3bsoftware.com/Downloads/freemem/freemem.html This is a ram 'defragmenter' for Window 32.. the way it works is it allocates as much ram from windows as it can, which forces windows to swap unused data from physical ram to swap space. Then it releases this ram using proper memory management resulting in more free ram. It will keep doing this until it gets as close to the specified amount of free ram as it can. On my Win98 system which has 128 megs of ram, I ask it to free up 128 ,egs and it gives me 80 to 100 megs free ram.. Which is damned handy when one has been re-loading the same DynAPI app over and over again.. It's not a cure for memory leaks but it make development much easier, and reduces crashes/reboots. 2) Taskinfo http://www.iarsn.com/download.html This program is for Window 9X and closly resembles the Task manager in Windows 2000, with a little extra functionality. You can find out how much ram and CPU time each process is using, what files the process has open and much more. In fact it was because of my constant observation of running processes that I discovered last week that I had caught a trojan.. :-) " what in the hell is this Wininit.exe?!? and hey! I've never seen DNETC.exe before.. " Just a couple of tools to hopefully make your life easier.. Later Doug --- Outgoing mail is certified Virus Free by AVG Free Edition http://www.grisoft.com/html/us_index.cfm Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.230 / Virus Database: 111 - Release Date: 1/25/01 |
From: Richard B. <ma...@ri...> - 2001-02-10 18:11:42
|
Hi, One thing I was pondering while checking the screenshot, is that you = seem to have a large screen, so all windows have space, but please check = what happens at 1024 or 800, it clogs the display, maybe you can = implement show/hide, or shrink unused windows or something.=20 Maybe it would be even nicer to add a "tile" function, which resizes all = windows to fill the screen. Cheers, Richard Bennett ma...@ri... www.richardinfo.com (Everything running on, and ported to the 19/12/2000 snapshot of = DynAPI2) ----- Original Message -----=20 From: Pascal Bestebroer=20 To: dyn...@li...=20 Sent: Saturday, February 10, 2001 10:43 AM Subject: RE: [Dynapi-Dev] a couple of tools hmm, I can think of one :) I'm currently working on Oversight, which will be a debugger and = editor in one.. you can still download an early debugger version from my site : http://www.dynamic-core.net/ =20 I will hopefully be able to upload the latest code this weekend.. (the = editor part, and an updates debugger) Pascal Bestebroer pa...@dy... http://www.dynamic-core.net=20 -----Oorspronkelijk bericht----- Van: dyn...@li... = [mailto:dyn...@li...]Namens Monica Keefe Verzonden: zaterdag 10 februari 2001 2:11 Aan: 'dyn...@li...' Onderwerp: RE: [Dynapi-Dev] a couple of tools Does anyone know of any debugging tools to use on the mac?=20 Anything other than alert boxes would be very helpful :-) Thanks! -----Original Message----- From: Doug Melvin [mailto:do...@cr...] Sent: Friday, February 09, 2001 2:21 PM To: dyn...@li... Subject: [Dynapi-Dev] a couple of tools I have found the following tools to be indeispensible when working = with (and debuggin) DynAPI (WIN32 - sorry) 1) FreeMemPro = http://www.downloads.3bsoftware.com/Downloads/freemem/freemem.html This is a ram 'defragmenter' for Window 32.. the way it works = is it allocates as much ram from windows as it can, which forces windows = to swap unused data from physical ram to swap space. Then it releases this ram using proper memory management resulting = in more free ram. It will keep doing this until it gets as close to the specified = amount of free ram as it can. On my Win98 system which has 128 megs of ram, I ask it to free up = 128 ,egs and it gives me 80 to 100 megs free ram.. Which is damned handy when one has been = re-loading the same DynAPI app over and over again..=20 It's not a cure for memory leaks but it make development much = easier, and reduces crashes/reboots. 2) Taskinfo http://www.iarsn.com/download.html This program is for Window 9X and closly resembles the Task = manager in Windows 2000, with a little extra functionality. You can find out how much ram and CPU time each process is using, = what files the process has open and much more. In fact it was because of my constant observation of running = processes that I discovered last week that I had caught a trojan.. :-) " what in the hell is this Wininit.exe?!? and hey! I've never seen = DNETC.exe before.. " Just a couple of tools to hopefully make your life easier.. Later Doug --- Outgoing mail is certified Virus Free by AVG Free Edition http://www.grisoft.com/html/us_index.cfm Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.230 / Virus Database: 111 - Release Date: 1/25/01 |
From: Darin K. <dka...@ef...> - 2001-02-10 17:59:43
|
Windows users might find my resource monitor useful. It's a small little window that sits in the corner of your screen displaying the current system load and memory usage in realtime. It has an audible alert when you are near locking up. It also includes a screen.magnifier which is helpful when building widgets and aligning edges to pixel accuracy. There is also a color matcher. When engaged, move your mouse over the screen. The app will display the hex and RGB values of whatever your cursor is over. You can find it on my site at http://www.nebiru.com <http://www.nebiru.com> click on downloads. best of all, it's free! :) -----Original Message----- From: Pascal Bestebroer [mailto:pa...@dy...] Sent: Saturday, February 10, 2001 1:44 AM To: dyn...@li... Subject: RE: [Dynapi-Dev] a couple of tools hmm, I can think of one :) I'm currently working on Oversight, which will be a debugger and editor in one.. you can still download an early debugger version from my site : http://www.dynamic-core.net/ <http://www.dynamic-core.net/> I will hopefully be able to upload the latest code this weekend.. (the editor part, and an updates debugger) Pascal Bestebroer pa...@dy... http://www.dynamic-core.net <http://www.dynamic-core.net/> -----Oorspronkelijk bericht----- Van: dyn...@li... [mailto:dyn...@li...]Namens Monica Keefe Verzonden: zaterdag 10 februari 2001 2:11 Aan: 'dyn...@li...' Onderwerp: RE: [Dynapi-Dev] a couple of tools Does anyone know of any debugging tools to use on the mac? Anything other than alert boxes would be very helpful :-) Thanks! -----Original Message----- From: Doug Melvin [mailto:do...@cr...] Sent: Friday, February 09, 2001 2:21 PM To: dyn...@li... Subject: [Dynapi-Dev] a couple of tools I have found the following tools to be indeispensible when working with (and debuggin) DynAPI (WIN32 - sorry) 1) FreeMemPro http://www.downloads.3bsoftware.com/Downloads/freemem/freemem.html <http://www.downloads.3bsoftware.com/Downloads/freemem/freemem.html> This is a ram 'defragmenter' for Window 32.. the way it works is it allocates as much ram from windows as it can, which forces windows to swap unused data from physical ram to swap space. Then it releases this ram using proper memory management resulting in more free ram. It will keep doing this until it gets as close to the specified amount of free ram as it can. On my Win98 system which has 128 megs of ram, I ask it to free up 128 ,egs and it gives me 80 to 100 megs free ram.. Which is damned handy when one has been re-loading the same DynAPI app over and over again.. It's not a cure for memory leaks but it make development much easier, and reduces crashes/reboots. 2) Taskinfo http://www.iarsn.com/download.html <http://www.iarsn.com/download.html> This program is for Window 9X and closly resembles the Task manager in Windows 2000, with a little extra functionality. You can find out how much ram and CPU time each process is using, what files the process has open and much more. In fact it was because of my constant observation of running processes that I discovered last week that I had caught a trojan.. :-) " what in the hell is this Wininit.exe?!? and hey! I've never seen DNETC.exe before.. " Just a couple of tools to hopefully make your life easier.. Later Doug --- Outgoing mail is certified Virus Free by AVG Free Edition http://www.grisoft.com/html/us_index.cfm <http://www.grisoft.com/html/us_index.cfm> Checked by AVG anti-virus system ( http://www.grisoft.com <http://www.grisoft.com> ). Version: 6.0.230 / Virus Database: 111 - Release Date: 1/25/01 |
From: Pascal B. <pa...@dy...> - 2001-02-10 09:43:40
|
hmm, I can think of one :) I'm currently working on Oversight, which will be a debugger and editor in one.. you can still download an early debugger version from my site : http://www.dynamic-core.net/ I will hopefully be able to upload the latest code this weekend.. (the editor part, and an updates debugger) Pascal Bestebroer pa...@dy... http://www.dynamic-core.net -----Oorspronkelijk bericht----- Van: dyn...@li... [mailto:dyn...@li...]Namens Monica Keefe Verzonden: zaterdag 10 februari 2001 2:11 Aan: 'dyn...@li...' Onderwerp: RE: [Dynapi-Dev] a couple of tools Does anyone know of any debugging tools to use on the mac? Anything other than alert boxes would be very helpful :-) Thanks! -----Original Message----- From: Doug Melvin [mailto:do...@cr...] Sent: Friday, February 09, 2001 2:21 PM To: dyn...@li... Subject: [Dynapi-Dev] a couple of tools I have found the following tools to be indeispensible when working with (and debuggin) DynAPI (WIN32 - sorry) 1) FreeMemPro http://www.downloads.3bsoftware.com/Downloads/freemem/freemem.html This is a ram 'defragmenter' for Window 32.. the way it works is it allocates as much ram from windows as it can, which forces windows to swap unused data from physical ram to swap space. Then it releases this ram using proper memory management resulting in more free ram. It will keep doing this until it gets as close to the specified amount of free ram as it can. On my Win98 system which has 128 megs of ram, I ask it to free up 128 ,egs and it gives me 80 to 100 megs free ram.. Which is damned handy when one has been re-loading the same DynAPI app over and over again.. It's not a cure for memory leaks but it make development much easier, and reduces crashes/reboots. 2) Taskinfo http://www.iarsn.com/download.html This program is for Window 9X and closly resembles the Task manager in Windows 2000, with a little extra functionality. You can find out how much ram and CPU time each process is using, what files the process has open and much more. In fact it was because of my constant observation of running processes that I discovered last week that I had caught a trojan.. :-) " what in the hell is this Wininit.exe?!? and hey! I've never seen DNETC.exe before.. " Just a couple of tools to hopefully make your life easier.. Later Doug --- Outgoing mail is certified Virus Free by AVG Free Edition http://www.grisoft.com/html/us_index.cfm Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.230 / Virus Database: 111 - Release Date: 1/25/01 |
From: <no...@so...> - 2001-02-10 06:52:22
|
Bug #130684, was updated on 2001-Jan-31 23:07 Here is a current snapshot of the bug. Project: DynAPI 2 Category: API Extentions Status: Closed Resolution: None Bug Group: None Priority: 5 Submitted by: robelix Assigned to : nobody Summary: weird PathAnimation.line bug Details: I wanted to move a layer aournd a square: function joinarrays( arr1, arr2) { var len = arr1.length; for (var i = 0; i <= arr2.length; i++) { arr1[i+len] = arr2[i]; } return arr1; } DynAPI.onLoad = function() { block = new DynLayer(); block.setSize(80,80); block.moveTo(0,0); block.setBgColor("red"); path = new PathAnimation(block); var line = PathAnimation.line(0,0, 100,0, 10); line = joinarrays(line, PathAnimation.line(100,0, 100,100, 10)); line = joinarrays(line, PathAnimation.line(100,100, 0,100, 10)); line = joinarrays(line, PathAnimation.line(0, 100, 0,0, 10)); path.addAnimation( line ); path.sleep(50); path.setLoops(0,true); DynAPI.document.addChild(block); path.playAnimation(0); } but it did crazy things - the third line was moving somewhere else I found out that I get the square when I switch x and y in the third call of Pathanimation.line - very weird (tried it only wiht Linux Netscape 4.75 so far) Follow-Ups: Date: 2001-Feb-01 03:33 By: robelix Comment: sorry folks! PathAnimation.line is OK - it was my own bug: must be for (var i = 0; i < arr2.length; i++) in my joinarrays-function (I still wonder that this didn't cause problems with the first call, but anyway I've got it) ------------------------------------------------------- For detailed info, follow this link: http://sourceforge.net/bugs/?func=detailbug&bug_id=130684&group_id=5757 |
From: <no...@so...> - 2001-02-10 06:51:51
|
Bug #129602, was updated on 2001-Jan-21 12:26 Here is a current snapshot of the bug. Project: DynAPI 2 Category: Core API Status: Closed Resolution: Works For Me Bug Group: None Priority: 5 Submitted by: eytanh Assigned to : nobody Summary: Dynlayers methods dont effect elements Details: Now I have decided to call it a bug. I have my table widget in it I create cells. All the cells are fine, there properties are set to the right ones but the actual elements aren't. I have checked this by using breakpoints with InterDev. If anyone wants the code email me. Follow-Ups: Date: 2001-Jan-25 17:38 By: rainwater Comment: Not sure this is a bug with the DynAPI. Please be a bit more specific. ------------------------------------------------------- For detailed info, follow this link: http://sourceforge.net/bugs/?func=detailbug&bug_id=129602&group_id=5757 |
From: <no...@so...> - 2001-02-10 06:50:53
|
Patch #103520 has been updated. Project: dynapi Category: DynAPI-Widget Status: Accepted Submitted by: rainwater Assigned to : nobody Summary: List.js setSelected Patch Follow-Ups: Date: 2001-Feb-09 22:51 By: rainwater Comment: Patch implemented in CVS. ------------------------------------------------------- ------------------------------------------------------- For more info, visit: http://sourceforge.net/patch/?func=detailpatch&patch_id=103520&group_id=5757 |
From: Raymond S. <dst...@or...> - 2001-02-10 02:09:17
|
Still event issues with NS4+, probably the images. ----- Original Message -----=20 From: Raymond Smith=20 To: dyn...@li...=20 Sent: Friday, February 09, 2001 1:43 PM Subject: [Dynapi-Dev] Pay attention Robert, Pascal, Admins.... Gentlemen, Attached is an Buttonimage HTML file and 2 images that should be = included in the 1) Examples and 2) Images/Common files. It appears to = be the only included widget without a working example and the only = included widget that still has global event bugs. Just might be a = coorelation. Raymond =20 |
From: Monica K. <mo...@ko...> - 2001-02-10 01:12:08
|
Does anyone know of any debugging tools to use on the mac? Anything other than alert boxes would be very helpful :-) Thanks! -----Original Message----- From: Doug Melvin [mailto:do...@cr...] Sent: Friday, February 09, 2001 2:21 PM To: dyn...@li... Subject: [Dynapi-Dev] a couple of tools I have found the following tools to be indeispensible when working with (and debuggin) DynAPI (WIN32 - sorry) 1) FreeMemPro http://www.downloads.3bsoftware.com/Downloads/freemem/freemem.html <http://www.downloads.3bsoftware.com/Downloads/freemem/freemem.html> This is a ram 'defragmenter' for Window 32.. the way it works is it allocates as much ram from windows as it can, which forces windows to swap unused data from physical ram to swap space. Then it releases this ram using proper memory management resulting in more free ram. It will keep doing this until it gets as close to the specified amount of free ram as it can. On my Win98 system which has 128 megs of ram, I ask it to free up 128 ,egs and it gives me 80 to 100 megs free ram.. Which is damned handy when one has been re-loading the same DynAPI app over and over again.. It's not a cure for memory leaks but it make development much easier, and reduces crashes/reboots. 2) Taskinfo http://www.iarsn.com/download.html <http://www.iarsn.com/download.html> This program is for Window 9X and closly resembles the Task manager in Windows 2000, with a little extra functionality. You can find out how much ram and CPU time each process is using, what files the process has open and much more. In fact it was because of my constant observation of running processes that I discovered last week that I had caught a trojan.. :-) " what in the hell is this Wininit.exe?!? and hey! I've never seen DNETC.exe before.. " Just a couple of tools to hopefully make your life easier.. Later Doug --- Outgoing mail is certified Virus Free by AVG Free Edition http://www.grisoft.com/html/us_index.cfm <http://www.grisoft.com/html/us_index.cfm> Checked by AVG anti-virus system ( http://www.grisoft.com <http://www.grisoft.com> ). Version: 6.0.230 / Virus Database: 111 - Release Date: 1/25/01 |
From: Raymond S. <dst...@or...> - 2001-02-09 22:30:56
|
Addendum, This js file works fine now. You might want to update the CVS to not = show the events bug anymore. Sorry for not prechecking the file in = advance. Still be nice to add those files to the CVS I spent 3 days on = those button graphics. Cheers, Ray ----- Original Message -----=20 From: Raymond Smith=20 To: dyn...@li...=20 Sent: Friday, February 09, 2001 1:43 PM Subject: [Dynapi-Dev] Pay attention Robert, Pascal, Admins.... Gentlemen, Attached is an Buttonimage HTML file and 2 images that should be = included in the 1) Examples and 2) Images/Common files. It appears to = be the only included widget without a working example and the only = included widget that still has global event bugs. Just might be a = coorelation. Raymond =20 |
From: Doug M. <do...@cr...> - 2001-02-09 19:22:36
|
I have found the following tools to be indeispensible when working with = (and debuggin) DynAPI (WIN32 - sorry) 1) FreeMemPro = http://www.downloads.3bsoftware.com/Downloads/freemem/freemem.html This is a ram 'defragmenter' for Window 32.. the way it works is it = allocates as much ram from windows as it can, which forces windows to = swap unused data from physical ram to swap space. Then it releases this ram using proper memory management resulting in = more free ram. It will keep doing this until it gets as close to the specified amount = of free ram as it can. On my Win98 system which has 128 megs of ram, I ask it to free up 128 = ,egs and it gives me 80 to 100 megs free ram.. Which is damned handy when one has been = re-loading the same DynAPI app over and over again..=20 It's not a cure for memory leaks but it make development much easier, = and reduces crashes/reboots. 2) Taskinfo http://www.iarsn.com/download.html This program is for Window 9X and closly resembles the Task manager = in Windows 2000, with a little extra functionality. You can find out how much ram and CPU time each process is using, what = files the process has open and much more. In fact it was because of my constant observation of running processes = that I discovered last week that I had caught a trojan.. :-) " what in the hell is this Wininit.exe?!? and hey! I've never seen = DNETC.exe before.. " Just a couple of tools to hopefully make your life easier.. Later Doug --- Outgoing mail is certified Virus Free by AVG Free Edition http://www.grisoft.com/html/us_index.cfm Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.230 / Virus Database: 111 - Release Date: 1/25/01 |
From: Richard E. <emb...@co...> - 2001-02-09 15:47:28
|
What is the relationship between dynapi components and the ECMAScript Components Specification components? Richard Emberson |
From: <no...@so...> - 2001-02-09 15:44:08
|
Bug #131620, was updated on 2001-Feb-08 15:12 Here is a current snapshot of the bug. Project: DynAPI 2 Category: None Status: Closed Resolution: Later Bug Group: Feature Request Priority: 5 Submitted by: largesnike Assigned to : nobody Summary: Where's the documentation? Details: Tried to follow standard links to documentation, but these are broken. Only saw a bit of the documentation in CVS. Follow-Ups: Date: 2001-Feb-09 07:43 By: dcpascal Comment: Docs page on sourceforge contains the tutorials. There is no more real documentation yet. coming eventually, but with not many people working this project, it's hard to get documentation also.. it will be eventaully done (hopefully) but as a feature-request it's not needed (we are aware of the request :) ------------------------------------------------------- For detailed info, follow this link: http://sourceforge.net/bugs/?func=detailbug&bug_id=131620&group_id=5757 |