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: Jordi - I. - M. <jmi...@or...> - 2001-02-13 14:59:52
|
Escape it write(" This is \" quoted \" string ") Generally this applies to any delimiter character you need to write as part of the delimited content, and works in most programming languages. Let's see if Richard beats me to this one. :) Eytan Heidingsfeld wrote: > How do I use a qoute (") inside a string that is started and ended by > qoutes(")8an |
From: Richard B. <ma...@ri...> - 2001-02-13 14:58:50
|
var string=3D"he said to me \"Hi I'm ok\"" ----- Original Message -----=20 From: Eytan Heidingsfeld=20 To: dyn...@li...=20 Sent: Tuesday, February 13, 2001 3:48 PM Subject: [Dynapi-Dev] How to write quotes How do I use a qoute (") inside a string that is started and ended by = qoutes(") 8an |
From: GORTSILAS A. <ag...@si...> - 2001-02-13 14:58:19
|
Try \" -----Original Message----- From: Eytan Heidingsfeld [mailto:ey...@tr...] Sent: Tuesday, February 13, 2001 4:48 PM To: dyn...@li... Subject: [Dynapi-Dev] How to write quotes How do I use a qoute (") inside a string that is started and ended by qoutes(") 8an |
From: GORTSILAS A. <ag...@si...> - 2001-02-13 14:58:19
|
Try \'=20 =A0 Andreas Gortsilas=A0 =A0 =A0-----Original Message----- From: Eytan Heidingsfeld [mailto:ey...@tr...] Sent: Tuesday, February 13, 2001 4:48 PM To: dyn...@li... Subject: [Dynapi-Dev] How to write quotes How do I use a qoute (") inside a string that is started and ended by qoutes(") 8an |
From: Eytan H. <ey...@tr...> - 2001-02-13 14:48:29
|
How do I use a qoute (") inside a string that is started and ended by = qoutes(") 8an |
From: Pascal <pb...@oi...> - 2001-02-13 13:00:50
|
hmm.. yes, you might want to flag something to not get it in a loop or remove the evenlistener in the first onslideend() event. still not sure if that was what was requested though :) Pascal Bestebroer (pb...@oi...) Software ontwikkelaar Oberon Informatiesystemen b.v. http://www.oibv.com > -----Oorspronkelijk bericht----- > Van: dyn...@li... > [mailto:dyn...@li...]Namens Michael > Pemberton > Verzonden: dinsdag 13 februari 2001 13:48 > Aan: dyn...@li... > CC: dyn...@li... > Onderwerp: [Dynapi-Dev] Re: [Dynapi-Help] Sequence (slide questions) > > > won't the slide event trigger an end event when it reaches > 0,0? if so, would it then be > stuck in a loop. > > if this is the case, is there any way of extending the slide > / movement animations to tell > them to not trigger events? > > the playanimation line in the slide event look like this: > > this.pathanim.playAnimation(PathAnimation.line(this.x,this.y, > x,y, inc)); > > how does this correspond with the following? > PathAnimation.prototype.playAnimation = function (noevt) { > > should the slide method have a noevt variable added to it > that it then passed to the > playanimation method? > > Pascal wrote: > > > try this and see if that's what you want: > > > > var seqSlide = function (){ > > gpanelListener=new EventListener() > > gpanelListener.onslideend=function(e) { > > > pImg.setImageSrc('../src/lib/dynapi/images/common/'+imgArray[numImg]); > > gPanel.slideTo(0,0); > > } > > gPanel.addEventListener(gpanelListener) > > gPanel.slideTo(sizX*(-1),0); > > } > > > > not sure if the image also invokes an event, so it might > overlap slightly > > with the next slideto.. > > > > but this is what I understand from your question :-) > > > > Pascal Bestebroer (pb...@oi...) > > Software ontwikkelaar > > Oberon Informatiesystemen b.v. > > http://www.oibv.com > > > > > -----Oorspronkelijk bericht----- > > > Van: dyn...@li... > > > [mailto:dyn...@li...]Namens > Maltese Girón, > > > Carlos > > > Verzonden: dinsdag 13 februari 2001 10:04 > > > Aan: 'dyn...@li...' > > > Onderwerp: [Dynapi-Help] Sequence > > > > > > > > > I have : > > > var seqSlide = function (){ > > > gPanel.slideTo(sizX*(-1),0); > > > > > > > pImg.setImageSrc('../src/lib/dynapi/images/common/'+imgArray[numImg]); > > > gPanel.slideTo(0,0); > > > } > > > How can I do to execute the sentences in a sequential mode. > > > > > > thanks > > > > > > _______________________________________________ > > > Dynapi-Help mailing list > > > Dyn...@li... > > > http://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > http://lists.sourceforge.net/lists/listinfo/dynapi-help > > -- > Michael Pemberton > mp...@ph... > ICQ: 12107010 > > > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > |
From: Michael P. <mp...@ph...> - 2001-02-13 12:50:57
|
won't the slide event trigger an end event when it reaches 0,0? if so, would it then be stuck in a loop. if this is the case, is there any way of extending the slide / movement animations to tell them to not trigger events? the playanimation line in the slide event look like this: this.pathanim.playAnimation(PathAnimation.line(this.x,this.y, x,y, inc)); how does this correspond with the following? PathAnimation.prototype.playAnimation = function (noevt) { should the slide method have a noevt variable added to it that it then passed to the playanimation method? Pascal wrote: > try this and see if that's what you want: > > var seqSlide = function (){ > gpanelListener=new EventListener() > gpanelListener.onslideend=function(e) { > pImg.setImageSrc('../src/lib/dynapi/images/common/'+imgArray[numImg]); > gPanel.slideTo(0,0); > } > gPanel.addEventListener(gpanelListener) > gPanel.slideTo(sizX*(-1),0); > } > > not sure if the image also invokes an event, so it might overlap slightly > with the next slideto.. > > but this is what I understand from your question :-) > > Pascal Bestebroer (pb...@oi...) > Software ontwikkelaar > Oberon Informatiesystemen b.v. > http://www.oibv.com > > > -----Oorspronkelijk bericht----- > > Van: dyn...@li... > > [mailto:dyn...@li...]Namens Maltese Girón, > > Carlos > > Verzonden: dinsdag 13 februari 2001 10:04 > > Aan: 'dyn...@li...' > > Onderwerp: [Dynapi-Help] Sequence > > > > > > I have : > > var seqSlide = function (){ > > gPanel.slideTo(sizX*(-1),0); > > > > pImg.setImageSrc('../src/lib/dynapi/images/common/'+imgArray[numImg]); > > gPanel.slideTo(0,0); > > } > > How can I do to execute the sentences in a sequential mode. > > > > thanks > > > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > http://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-help -- Michael Pemberton mp...@ph... ICQ: 12107010 |
From: Pascal <pb...@oi...> - 2001-02-13 07:55:12
|
yeah, yeah, sorry for replying to this thread.. it should have been on the rock thread. Pascal Bestebroer (pb...@oi...) Software ontwikkelaar Oberon Informatiesystemen b.v. http://www.oibv.com > -----Oorspronkelijk bericht----- > Van: dyn...@li... > [mailto:dyn...@li...]Namens Pascal > Verzonden: dinsdag 13 februari 2001 8:40 > Aan: dyn...@li... > Onderwerp: RE: [Dynapi-Dev] All this "Konqueror" discussion... > > > maybe we should then set up a voting system for rocks? > > All who are rock fans (and have come out of the closet for > it) raise your > hands! > > I'm starting to get very interested in this "crew" your > talking about.. > strange thing > is that I asked to define the crew (inlight of the rules in > rock-throwing) > yet you > seem not to be able to describe it.. this smells like an > illegal move into > rock-throwing! > > > > Pascal Bestebroer (pb...@oi...) > Software ontwikkelaar > Oberon Informatiesystemen b.v. > http://www.oibv.com > > > -----Oorspronkelijk bericht----- > > Van: dyn...@li... > > [mailto:dyn...@li...]Namens Raymond Smith > > Verzonden: maandag 12 februari 2001 21:32 > > Aan: dyn...@li... > > Onderwerp: Re: [Dynapi-Dev] All this "Konqueror" discussion... > > > > > > Well, I am concerned "a tad". Because there are "rock fans", > > always has > > been since the very first rock. > > > > Deep inside I know Richard is a rock fan, he just can't admit > > it to himself > > yet. It's tough. Being a programmer requires a certain, ... > > well "external > > persona" and the "rock-thread" threatens this. > > > > This was one of the fundamental issues I had to deal with > > when creating a > > "crew", as you will see today. How to find rock fans that > > could look like > > "programmers" and blend seamlessly into a rather tough remote > > environment. > > > > This proved to be quite the challenge, but as you will see > > the solution was > > ingenius. > > > > Laters > > > > > > _______________________________________________ > > 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: Pascal <pb...@oi...> - 2001-02-13 07:53:24
|
> According to > http://sites.netscape.net/ekrockhome/standards.html , there > are certain guidelines to follow in order to be W3C compliant. Looking > through the code of dynlayer.js, for example, 'document.all' > and 'document.layers[]' > will not be recognized by NS6 and future browsers endorsing > the open standards. > i think it is essential to build DynaAPI 2 on the solid > foundation of W3C DOM > in order to be future proof. Don't have the DynAPI2 code here, but can't see (in other code) where document.all or document.layers is used. Again, we could make DynAPI2 W3C Dom compliant, but making sure NS6 works is more important. I know, NS6 is DOM compliant.. if it's fully DOM compliant, other dom browsers will also work with the same tricks and updating will be easy, but I'd rather make sure NS6 is supported then making sure a written standard is supported (but browsers can still cause problems) > Yes, NS6 is the culprit here. But I would need my code to work on all > versions of the browser. Use other code then, your code doesn't seem to be working on NS6, so either your code is wrong or NS6 seems to have a bug and you have to work around it. Again, it's not a DynAPI bug :) cya! Pascal Bestebroer (pb...@oi...) Software ontwikkelaar Oberon Informatiesystemen b.v. http://www.oibv.com |
From: Pascal <pb...@oi...> - 2001-02-13 07:40:22
|
maybe we should then set up a voting system for rocks? All who are rock fans (and have come out of the closet for it) raise your hands! I'm starting to get very interested in this "crew" your talking about.. strange thing is that I asked to define the crew (inlight of the rules in rock-throwing) yet you seem not to be able to describe it.. this smells like an illegal move into rock-throwing! Pascal Bestebroer (pb...@oi...) Software ontwikkelaar Oberon Informatiesystemen b.v. http://www.oibv.com > -----Oorspronkelijk bericht----- > Van: dyn...@li... > [mailto:dyn...@li...]Namens Raymond Smith > Verzonden: maandag 12 februari 2001 21:32 > Aan: dyn...@li... > Onderwerp: Re: [Dynapi-Dev] All this "Konqueror" discussion... > > > Well, I am concerned "a tad". Because there are "rock fans", > always has > been since the very first rock. > > Deep inside I know Richard is a rock fan, he just can't admit > it to himself > yet. It's tough. Being a programmer requires a certain, ... > well "external > persona" and the "rock-thread" threatens this. > > This was one of the fundamental issues I had to deal with > when creating a > "crew", as you will see today. How to find rock fans that > could look like > "programmers" and blend seamlessly into a rather tough remote > environment. > > This proved to be quite the challenge, but as you will see > the solution was > ingenius. > > Laters > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > |
From: Michael P. <mp...@ph...> - 2001-02-13 04:02:19
|
I've attached a version of the events code that has been split into smaller sections. Now it is possible to use the vents code for precreation etc. without needing to also include mouse events. It requires that you modify your library include section to point to the new locations. lib / api / events.js / events / mouse.js / events / key.js / events / drag.js I've haven't downloaded a snapshot recently so I' not sure if the events methods are as recent as they may need to be. It works with a version of the api that I downloaded on 9/2/2001 -- Michael Pemberton mp...@ph... ICQ: 12107010 |
From: <je...@si...> - 2001-02-13 02:32:42
|
Hi Pascal, Thanks for your advice. > Subject: RE: [Dynapi-Dev] IS DynAPI II compliant with W3C DOM? > Date: Mon, 12 Feb 2001 14:10:08 +0100 > From: "Pascal" <pb...@oi...> > Reply-To: dyn...@li... > To: <dyn...@li...> > > first, you mean document.elementName gives an error, or > DynAPI.document.elementName gives an error? > anyway, the document is still the browser's document object, so if it gives > an error it's NS6 doing the problems. Yes, NS6 is the culprit here. But I would need my code to work on all versions of the browser. > A lot of NS6 support has been added recently, and you can feel free to > comment on what works/doesn't work in this version. According to http://sites.netscape.net/ekrockhome/standards.html , there are certain guidelines to follow in order to be W3C compliant. Looking through the code of dynlayer.js, for example, 'document.all' and 'document.layers[]' will not be recognized by NS6 and future browsers endorsing the open standards. i think it is essential to build DynaAPI 2 on the solid foundation of W3C DOM in order to be future proof. -- Regards, Jerry |
From: Robert R. <rra...@ya...> - 2001-02-13 01:37:22
|
Its been updated in CVS. I'm sure more errors as well. Also, I we need to add the other packages to the documentation. If you get the config files from cvs you can see how easy it is to document. -- // Robert Rainwater On 2/12/2001, 8:42:10 PM EST, robelix wrote about "[Dynapi-Dev] documentation bug": > Hi! > in docs/api/class_DynLayer.html it says: > int DynLayer::getClip ( ) > Reurns a array of length 4 containing the clip values > [right,left,top,bottom]. > the right order is : [top,right,bottom,left] > Roland > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev ---------------------- DynAPI Snapshots: http://dynapi.sourceforge.net/snapshot/ DynAPI Homepage: http://dynapi.sourceforge.net/ |
From: <ro...@gm...> - 2001-02-13 00:39:59
|
Hi! in docs/api/class_DynLayer.html it says: int DynLayer::getClip ( )=20 Reurns a array of length 4 containing the clip values=20 [right,left,top,bottom].=20 the right order is : [top,right,bottom,left] Roland |
From: Raymond S. <dst...@or...> - 2001-02-12 23:00:01
|
Series - 2 (reference attached top-secret photofile) |
From: Bart B. <ba...@ho...> - 2001-02-12 22:33:16
|
So how would you implement this.... would you do a scripted "fake" resize onunload? Have you tested if this memory "bug" is generic... i.e. does it apply to = other pages also, not only DynAPI ones? -----Ursprungligt meddelande----- Fr=E5n: Michael Ellis <Mic...@il...> Till: 'dyn...@li...' = <dyn...@li...> Datum: den 12 februari 2001 21:48 =C4mne: RE: [Dynapi-Dev] Freeing Memory in IE >I can confirm this behavior on IE 4.x and NN 4.x. We also noted where = the IE >leak was about 1 - 2Meg, the NN leak was only 20 - 40K. Our application = has >2 nested layers containing a scrollpane, containing tables. We tried >deleting, removing, and setting various objects/elements =3D null but = nothing >would get the memory to budge. When we dropped the number of layers = down to >even one, the same behavior occured. This leak is a major problem for = us at >this time, any help would be greatly appreciated. > >Mike Ellis > >-----Original Message----- >From: Eytan Heidingsfeld [mailto:ey...@tr...] >Sent: Monday, February 12, 2001 09:44 >To: Dynapi-Dev >Subject: [Dynapi-Dev] Freeing Memory in IE > > >I have recently found very interesting behavior in IE 5. I used = proprietary >code so I don't know about IE4 and NN4 but I will check soon. I used = code to >create many DynLayers (520) inside another dynlayer(myLayer). Then I = called >document.body.removeChild(myLayer) the memory didn't budge. Then I = minimized >and maximized the browser. Walla! from 13MB to 1MB. (This with the Loop = to >nullify the DynLayers for they are still there taking up memory). >Here is the code to test: > >=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ><html> ><head> ><title>DynAPI Distribution: Destroy</title> ><script language=3D"Javascript" src=3D"../src/dynapi.js"></script> ><script language=3D"Javascript"> >DynAPI.setLibraryPath('../src/lib/'); >DynAPI.include('dynapi.api.*'); ></script> ><script language=3D"Javascript"> >var mLayer; >var a =3D []; >function dowork(){ >for(var i=3D0;i<101;i++){ >a[i] =3D null; >} >document.body.removeChild(mLayer.elm); > >} >DynAPI.onLoad =3D function() { > mLayer =3D new DynLayer(); > mLayer.setHTML("testing memory free in IE"); > DynAPI.document.addChild(mLayer); > window.status =3D "ready for action"; >for(var i=3D0;i<521;i++){ >a[i] =3D new DynLayer(); >mLayer.addChild(a[i]); >} >} > ></script> ></head> > ><body bgcolor=3D"#ffffff"> ><a href=3Djavascript:dowork()>Start The Test</a> ></body> ></html> >=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > > >_______________________________________________ >Dynapi-Dev mailing list >Dyn...@li... >http://lists.sourceforge.net/lists/listinfo/dynapi-dev > |
From: Michael E. <Mic...@il...> - 2001-02-12 20:48:20
|
I can confirm this behavior on IE 4.x and NN 4.x. We also noted where the IE leak was about 1 - 2Meg, the NN leak was only 20 - 40K. Our application has 2 nested layers containing a scrollpane, containing tables. We tried deleting, removing, and setting various objects/elements = null but nothing would get the memory to budge. When we dropped the number of layers down to even one, the same behavior occured. This leak is a major problem for us at this time, any help would be greatly appreciated. Mike Ellis -----Original Message----- From: Eytan Heidingsfeld [mailto:ey...@tr...] Sent: Monday, February 12, 2001 09:44 To: Dynapi-Dev Subject: [Dynapi-Dev] Freeing Memory in IE I have recently found very interesting behavior in IE 5. I used proprietary code so I don't know about IE4 and NN4 but I will check soon. I used code to create many DynLayers (520) inside another dynlayer(myLayer). Then I called document.body.removeChild(myLayer) the memory didn't budge. Then I minimized and maximized the browser. Walla! from 13MB to 1MB. (This with the Loop to nullify the DynLayers for they are still there taking up memory). Here is the code to test: ==================================== <html> <head> <title>DynAPI Distribution: Destroy</title> <script language="Javascript" src="../src/dynapi.js"></script> <script language="Javascript"> DynAPI.setLibraryPath('../src/lib/'); DynAPI.include('dynapi.api.*'); </script> <script language="Javascript"> var mLayer; var a = []; function dowork(){ for(var i=0;i<101;i++){ a[i] = null; } document.body.removeChild(mLayer.elm); } DynAPI.onLoad = function() { mLayer = new DynLayer(); mLayer.setHTML("testing memory free in IE"); DynAPI.document.addChild(mLayer); window.status = "ready for action"; for(var i=0;i<521;i++){ a[i] = new DynLayer(); mLayer.addChild(a[i]); } } </script> </head> <body bgcolor="#ffffff"> <a href=javascript:dowork()>Start The Test</a> </body> </html> ====================================== |
From: Raymond S. <dst...@or...> - 2001-02-12 20:35:30
|
Well, I am concerned "a tad". Because there are "rock fans", always has been since the very first rock. Deep inside I know Richard is a rock fan, he just can't admit it to himself yet. It's tough. Being a programmer requires a certain, ... well "external persona" and the "rock-thread" threatens this. This was one of the fundamental issues I had to deal with when creating a "crew", as you will see today. How to find rock fans that could look like "programmers" and blend seamlessly into a rather tough remote environment. This proved to be quite the challenge, but as you will see the solution was ingenius. Laters |
From: Eytan H. <ey...@tr...> - 2001-02-12 20:07:46
|
Now managed to change style. The how I'm doing isn't based on the API. Using a mixture of IE4 code (writing out the actual div tag) and NN4 using write. 8an |
From: Eytan H. <ey...@tr...> - 2001-02-12 20:03:57
|
Spoke to early. Worked a bit(created element) couldn't change anything (although Opera claim they can) and JS engine seems frozen, 8an |
From: Matthew A. S. <ms...@sh...> - 2001-02-12 20:00:41
|
Could you share the "how-to" part? In my tests with Opera5 I could not even see that the API was being executed. M. -----Original Message----- From: Eytan Heidingsfeld [mailto:ey...@tr...] Sent: Monday, February 12, 2001 11:55 AM To: Dynapi-Dev Subject: [Dynapi-Dev] Creating Elements in Opera5 I've managed to create a layer and write to it. My only problem is with changing style properties. 8an _______________________________________________ Dynapi-Dev mailing list Dyn...@li... http://lists.sourceforge.net/lists/listinfo/dynapi-dev |
From: Eytan H. <ey...@tr...> - 2001-02-12 19:54:36
|
I've managed to create a layer and write to it. My only problem is with changing style properties. 8an |
From: Doug M. <do...@cr...> - 2001-02-12 19:48:49
|
I will most certainly have to look into this. ----- Original Message ----- From: "Eytan Heidingsfeld" <ey...@tr...> To: "Dynapi-Dev" <dyn...@li...> Sent: Monday, February 12, 2001 8:43 AM Subject: [Dynapi-Dev] Freeing Memory in IE > I have recently found very interesting behavior in IE 5. I used proprietary > code so I don't know about IE4 and NN4 but I will check soon. I used code to > create many DynLayers (520) inside another dynlayer(myLayer). Then I called > document.body.removeChild(myLayer) the memory didn't budge. Then I minimized > and maximized the browser. Walla! from 13MB to 1MB. (This with the Loop to > nullify the DynLayers for they are still there taking up memory). > Here is the code to test: > > ==================================== > <html> > <head> > <title>DynAPI Distribution: Destroy</title> > <script language="Javascript" src="../src/dynapi.js"></script> > <script language="Javascript"> > DynAPI.setLibraryPath('../src/lib/'); > DynAPI.include('dynapi.api.*'); > </script> > <script language="Javascript"> > var mLayer; > var a = []; > function dowork(){ > for(var i=0;i<101;i++){ > a[i] = null; > } > document.body.removeChild(mLayer.elm); > > } > DynAPI.onLoad = function() { > mLayer = new DynLayer(); > mLayer.setHTML("testing memory free in IE"); > DynAPI.document.addChild(mLayer); > window.status = "ready for action"; > for(var i=0;i<521;i++){ > a[i] = new DynLayer(); > mLayer.addChild(a[i]); > } > } > > </script> > </head> > > <body bgcolor="#ffffff"> > <a href=javascript:dowork()>Start The Test</a> > </body> > </html> > ====================================== > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev --- 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: Doug M. <do...@cr...> - 2001-02-12 19:45:48
|
uh guy? You created a thousand layers. I don't know about calling that a bug, or browser abuse. Doug ----- Original Message ----- From: "Eytan Heidingsfeld" <ey...@tr...> To: "Dynapi-Dev" <dyn...@li...> Sent: Monday, February 12, 2001 6:48 AM Subject: [Dynapi-Dev] Stability > Pascal, you keep complaining that my stability problems are to hard to > recreate. Try IE5 with a page that has this code > > DynAPI.onload = function(){ > var mLayer; > var a=[]; > mLayer = new DynLayer(); > DynAPI.document.addChild(mLayer); > > > for(var i=0;i>1001;i++); > a[i] = new DynLayer(); > > mLayer.addChild(a[i]); > } > Browser freezes and dies. > This on PIII 667 256 RAM > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev --- 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: Doug M. <do...@cr...> - 2001-02-12 19:40:41
|
uh guy? You created a thousand layers. I don't know about calling that a bug, or browser abuse. Doug ----- Original Message ----- From: "Eytan Heidingsfeld" <ey...@tr...> To: "Dynapi-Dev" <dyn...@li...> Sent: Monday, February 12, 2001 6:48 AM Subject: [Dynapi-Dev] Stability > Pascal, you keep complaining that my stability problems are to hard to > recreate. Try IE5 with a page that has this code > > DynAPI.onload = function(){ > var mLayer; > var a=[]; > mLayer = new DynLayer(); > DynAPI.document.addChild(mLayer); > > > for(var i=0;i>1001;i++); > a[i] = new DynLayer(); > > mLayer.addChild(a[i]); > } > Browser freezes and dies. > This on PIII 667 256 RAM > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev --- 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 |