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 S. <dst...@or...> - 2001-01-20 00:49:06
|
To all, Understanding, the need for people like Robert Rainwater to stay focused and not have inappropriate e-mails waste his brain-calories triggering a 'delete'. Yet... Allow people like Jorgi, myself and more recently Doug to "whistle while they work with words... so to speak". I recommend that we add the following channel to the CVS e-mail system. [Dynapi-MindlessBanter] It clearly doesn't belong in DEV or HELP (unless you consider it to embrace SELF-HELP). But it really humbles me to think I have wasted someones time discussing the general physics of "underwater rock throwing" with Pascal. I understand the need for Jordi to enter a bazarre world of "globally shared, yet independantly generated thought" while he is knee deep in debugging code. You should too. By creating this recommended channel for 'mindless bantering' we will allow both worlds to live in harmony. Cheers, Ray |
From: <no...@so...> - 2001-01-20 00:46:23
|
Bug #129033, was updated on 2001-Jan-16 10:40 Here is a current snapshot of the bug. Project: DynAPI 2 Category: API Extentions Status: Closed Resolution: Fixed Bug Group: None Priority: 5 Submitted by: camhart Assigned to : nobody Summary: new DynImage('src') does not always find src in loadimages Details: When you create a new DynImage from a path, it checks the loadimages array for an image with the that path that exists already. i've been creating dynimages by passing an absolute path to the image without the host part. because the browser adds the host to src in the image object, when i create a new dynimage from the same path my image is not found in loadimages array. here's an example: myImage1 = new DynImage('/images/button.gif'); Now DynImage.loadimages has one image in it. myImage2 = new DynImage('/images/button.gif'); DynImage.loadimages now has 2 images in it, because when it was looking for '/images/button.gif' it only found 'http://hostname/images/button.gif' I modifed DynImage.getImage to fix the problem. It seems to work, here's my new function: DynImage.getImage=function(src,w,h) { for (var i=0;i<DynImage.loadimages.length;i++) { if (DynImage.loadimages[i].img.src_orig==src) { return DynImage.loadimages[i].img; } } DynImage.loadimages[i] = {}; if (w&&h) DynImage.loadimages[i].img = new Image(w,h); else DynImage.loadimages[i].img = new Image(); DynImage.loadimages[i].complete = false; DynImage.loadimages[i].img.src=DynImage.loadimages[i].img.src_orig=src; return DynImage.loadimages[i].img; }; For detailed info, follow this link: http://sourceforge.net/bugs/?func=detailbug&bug_id=129033&group_id=5757 |
From: <no...@so...> - 2001-01-20 00:40:47
|
Patch #103112 has been updated. Project: dynapi Category: DynAPI-Event Status: Open Submitted by: nicolajazz Assigned to : nobody Summary: events.js Follow-Ups: Date: 2001-Jan-19 16:40 By: rainwater Comment: Has anyone tested this patch on the latest events file? ------------------------------------------------------- ------------------------------------------------------- For more info, visit: http://sourceforge.net/patch/?func=detailpatch&patch_id=103112&group_id=5757 |
From: <no...@so...> - 2001-01-20 00:39:30
|
Patch #103110 has been updated. Project: dynapi Category: DynAPI-Ext Status: Postponed Submitted by: marstr Assigned to : nobody Summary: sinewave-object Follow-Ups: Date: 2001-Jan-19 16:39 By: rainwater Comment: Could be added to the DynAPI if anyone wants. Also, there is a utility extension to the DynAPI that has sin functions in it already. I forget the name of the file right of hand. ------------------------------------------------------- ------------------------------------------------------- For more info, visit: http://sourceforge.net/patch/?func=detailpatch&patch_id=103110&group_id=5757 |
From: <no...@so...> - 2001-01-20 00:36:54
|
Bug #129040, was updated on 2001-Jan-16 11:08 Here is a current snapshot of the bug. Project: DynAPI 2 Category: Core API Status: Closed Resolution: None Bug Group: None Priority: 5 Submitted by: camhart Assigned to : nobody Summary: DynImage default image size incorrect in IE5.5 Details: When creating a DynImage without setting a size, IE5.5 always defaults to the same (incorrect) size. I'm not sure where IE5.5 is getting this size from. This bug may apply to IE5 also. Follow-Ups: Date: 2001-Jan-19 16:36 By: rainwater Comment: I've tried a million images with DynImage in IE 5.5 and NS 4 and the correct size is always returned. ------------------------------------------------------- Date: 2001-Jan-19 08:40 By: rainwater Comment: I believe that this must be a issue with the widgets you are using and not the dynimage itself. From all tests, the dynimage is returning the correct width and height of images in IE. Unless you have an example where it doesn't work, I think we should probaly close the bug. ------------------------------------------------------- Date: 2001-Jan-17 03:23 By: nobody Comment: It appears that the incorrect height and width is being returned by getContentHeight and getContentWidth in dynlayer.js. It to be returning a default of w=28 and h=30. ------------------------------------------------------- For detailed info, follow this link: http://sourceforge.net/bugs/?func=detailbug&bug_id=129040&group_id=5757 |
From: Robert R. <rra...@ya...> - 2001-01-19 22:24:11
|
I also forgot to mention that a the build now includes a tar version with the zip version for those unix users. -- // Robert Rainwater On 1/19/2001, 4:26:19 PM EST, Robert wrote about "[Dynapi-Dev] Updated Nightly Build System": > I updated the nightly build system, so that it is possible to download > previous snapshots. If you go to > http://dynapi.sourceforge.net/snapshot/, you will see a dynamically > generated page that shows all of the snapshots. > Also, the previous link to download the snapshot > (http://dynapi.sourceforge.net/snapshot/dynapi.zip) will always > redirect you to the latest snapshot. |
From: Robert R. <rra...@ya...> - 2001-01-19 21:26:41
|
I updated the nightly build system, so that it is possible to download previous snapshots. If you go to http://dynapi.sourceforge.net/snapshot/, you will see a dynamically generated page that shows all of the snapshots. Also, the previous link to download the snapshot (http://dynapi.sourceforge.net/snapshot/dynapi.zip) will always redirect you to the latest snapshot. -- // Robert Rainwater |
From: Doug M. <do...@cr...> - 2001-01-19 20:18:38
|
update I put the DynAPI.onLoad() into DynAPI.resizehandler. resizeHandler : function() { var doc =3D this.dyndoc; var w =3D doc.getWidth(); var h =3D doc.getHeight(); doc.findDimensions(); if (is.ns4 && (w!=3Ddoc.getWidth() || h!=3Ddoc.getHeight())) = DynAPI.onLoad(); //if (is.ns4 && (w!=3Ddoc.getWidth() || h!=3Ddoc.getHeight())) = doc.recreateAll(); if (DynAPI.onResize) DynAPI.onResize(); for (var i=3D0;i<DynAPI.plugins.length; i++) { if (DynAPI.plugins[i].onResize) DynAPI.plugins[i].onResize(); } }, |
From: Doug M. <do...@cr...> - 2001-01-19 20:14:50
|
Instead of trying to destry each object then reload each object I just = call DynAPI.onLoad() Works like a charm. Don't know what it will do for memory usage tho. DynDocument.prototype.recreateAll =3D function() { if (is.ns4) DynAPI.onLoad(); }; |
From: <no...@so...> - 2001-01-19 16:45:19
|
Bug #128316, was updated on 2001-Jan-10 11:02 Here is a current snapshot of the bug. Project: DynAPI 2 Category: Core - Widgets Status: Closed Resolution: None Bug Group: None Priority: 5 Submitted by: nobody Assigned to : nobody Summary: Changing the image on a Button does not work Details: I found that dynamically changing the image associated with a Button (dynapi.gui.button.js) after the button has been created does not work. I think the problem is in Button.prototype.setImage. The last line is else this.imglyr.doc.images[0].src - this.img.src; I think this should be changed to else this.imglyr.setImage(this.img); That is, pass the job of changing the image on to the DynImage object. Follow-Ups: Date: 2001-Jan-19 08:45 By: rainwater Comment: setImage requires that you pass an image object, and not a string pointing to the image. If you an image object, then the image will be changed. However, if needed, we can check for a string and call this.imglyr.setImageSrc() if that is really needed (even though it would be slower). ------------------------------------------------------- For detailed info, follow this link: http://sourceforge.net/bugs/?func=detailbug&bug_id=128316&group_id=5757 |
From: <no...@so...> - 2001-01-19 16:40:48
|
Bug #129040, was updated on 2001-Jan-16 11:08 Here is a current snapshot of the bug. Project: DynAPI 2 Category: Core API Status: Open Resolution: None Bug Group: None Priority: 5 Submitted by: camhart Assigned to : nobody Summary: DynImage default image size incorrect in IE5.5 Details: When creating a DynImage without setting a size, IE5.5 always defaults to the same (incorrect) size. I'm not sure where IE5.5 is getting this size from. This bug may apply to IE5 also. Follow-Ups: Date: 2001-Jan-19 08:40 By: rainwater Comment: I believe that this must be a issue with the widgets you are using and not the dynimage itself. From all tests, the dynimage is returning the correct width and height of images in IE. Unless you have an example where it doesn't work, I think we should probaly close the bug. ------------------------------------------------------- Date: 2001-Jan-17 03:23 By: nobody Comment: It appears that the incorrect height and width is being returned by getContentHeight and getContentWidth in dynlayer.js. It to be returning a default of w=28 and h=30. ------------------------------------------------------- For detailed info, follow this link: http://sourceforge.net/bugs/?func=detailbug&bug_id=129040&group_id=5757 |
From: <no...@so...> - 2001-01-19 16:38:39
|
Bug #129377, was updated on 2001-Jan-19 06:01 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: DynDocument returned incorrect browser width&height under NS Details: Functions dyndocument.getHeight()and dyndocument.getWidth() returns incorrect values for Netscape. I examed problem and found that in function DynDocument.findDimensions() IE and NS differences not takes into account. Follow-Ups: Date: 2001-Jan-19 08:38 By: rainwater Comment: How are the values of the height and width wrong in NS? From what I can see, they do return the correct values. getDimensions does take into account the differences between IE and NS. We have been using this for a long time and has always worked. Unless it doesn't work on NS6 I don't see the problem. ------------------------------------------------------- For detailed info, follow this link: http://sourceforge.net/bugs/?func=detailbug&bug_id=129377&group_id=5757 |
From: <no...@so...> - 2001-01-19 14:01:46
|
Bug #129377, was updated on 2001-Jan-19 06:01 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: DynDocument returned incorrect browser width&height under NS Details: Functions dyndocument.getHeight()and dyndocument.getWidth() returns incorrect values for Netscape. I examed problem and found that in function DynDocument.findDimensions() IE and NS differences not takes into account. For detailed info, follow this link: http://sourceforge.net/bugs/?func=detailbug&bug_id=129377&group_id=5757 |
From: Pascal <pb...@oi...> - 2001-01-19 13:23:07
|
have you tried the idea I posted a few days ago (I seem to recall you also posted this on the help list.. I think I answered it there) using an onblur event (or onunload) on the framed pages, to call a de-initialise function to physically remove the layers from the parent Pascal Bestebroer (pb...@oi...) Software ontwikkelaar Oberon Informatiesystemen b.v. http://www.oibv.com > -----Oorspronkelijk bericht----- > Van: dyn...@li... > [mailto:dyn...@li...]Namens Patricia Fesser > Verzonden: vrijdag 19 januari 2001 13:13 > Aan: dyn...@li... > Onderwerp: RE: [Dynapi-Dev] RV: corePopUp & Frames (forgot > the attach in > previous mail) > > > this doesn't really solve my problem, but anyway it was a nice > query...unable to find the answer... > > -----Mensaje original----- > De: dyn...@li... > [mailto:dyn...@li...]En nombre de Raymond > Smith > Enviado el: viernes 19 de enero de 2001 12:01 > Para: dyn...@li... > Asunto: Re: [Dynapi-Dev] RV: corePopUp & Frames (forgot the attach in > previous mail) > > > QUERY: If I picked up a medium sized stone and threw it. > Then, walked to > where it landed picked it up and threw it again. Being in > California, how > many throws would be required to hit Pascal with it? > > ----- Original Message ----- > From: "Pascal" <pb...@oi...> > To: <dyn...@li...> > Sent: Friday, January 19, 2001 2:50 AM > Subject: RE: [Dynapi-Dev] RV: corePopUp & Frames (forgot the attach in > previous mail) > > > > not to be anoying (again) but seeing as this is a very > public mailing list > > it would be more polite to atleast include an english > answer as well so > that > > anyone -not spanish- with the same problem would also "get" > the solution. > > > > I think that we could get some great conversations if > everyone on this > list > > would mail in their own language :-) > > > > iets wat ik dus nooit doe > > > > cya, > > > > Pascal Bestebroer (pb...@oi...) > > Software ontwikkelaar > > Oberon Informatiesystemen b.v. > > http://www.oibv.com > > > > > -----Oorspronkelijk bericht----- > > > Van: dyn...@li... > > > [mailto:dyn...@li...]Namens Raides J. > > > Verzonden: vrijdag 19 januari 2001 10:22 > > > Aan: dyn...@li... > > > Onderwerp: Re: [Dynapi-Dev] RV: corePopUp & Frames (forgot > > > the attach in > > > previous mail) > > > > > > > > > Esto es sólo una pequeña indicación sobre "estilo"... > > > > > > En "margenJS.htm", línea 34, en lugar de > > > --> > > > debe decir: > > > //--> > > > > > > para evitar un error en Netscape 4.x que puede hacer que el > > > código no se ejecute > > > correctamente. > > > > > > Sobre el otro problema, no tengo tiempo para estudiarlo ... :( > > > > > > Raides J. > > > > > > _______________________________________________ > > > 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 > > > > > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > |
From: Patricia F. <tec...@ca...> - 2001-01-19 13:15:31
|
this doesn't really solve my problem, but anyway it was a nice query...unable to find the answer... -----Mensaje original----- De: dyn...@li... [mailto:dyn...@li...]En nombre de Raymond Smith Enviado el: viernes 19 de enero de 2001 12:01 Para: dyn...@li... Asunto: Re: [Dynapi-Dev] RV: corePopUp & Frames (forgot the attach in previous mail) QUERY: If I picked up a medium sized stone and threw it. Then, walked to where it landed picked it up and threw it again. Being in California, how many throws would be required to hit Pascal with it? ----- Original Message ----- From: "Pascal" <pb...@oi...> To: <dyn...@li...> Sent: Friday, January 19, 2001 2:50 AM Subject: RE: [Dynapi-Dev] RV: corePopUp & Frames (forgot the attach in previous mail) > not to be anoying (again) but seeing as this is a very public mailing list > it would be more polite to atleast include an english answer as well so that > anyone -not spanish- with the same problem would also "get" the solution. > > I think that we could get some great conversations if everyone on this list > would mail in their own language :-) > > iets wat ik dus nooit doe > > cya, > > Pascal Bestebroer (pb...@oi...) > Software ontwikkelaar > Oberon Informatiesystemen b.v. > http://www.oibv.com > > > -----Oorspronkelijk bericht----- > > Van: dyn...@li... > > [mailto:dyn...@li...]Namens Raides J. > > Verzonden: vrijdag 19 januari 2001 10:22 > > Aan: dyn...@li... > > Onderwerp: Re: [Dynapi-Dev] RV: corePopUp & Frames (forgot > > the attach in > > previous mail) > > > > > > Esto es sólo una pequeña indicación sobre "estilo"... > > > > En "margenJS.htm", línea 34, en lugar de > > --> > > debe decir: > > //--> > > > > para evitar un error en Netscape 4.x que puede hacer que el > > código no se ejecute > > correctamente. > > > > Sobre el otro problema, no tengo tiempo para estudiarlo ... :( > > > > Raides J. > > > > _______________________________________________ > > 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: Patricia F. <tec...@ca...> - 2001-01-19 12:10:56
|
it was just a minor correction, about the big problem he said, he had no time to study it, but anyway, your message is right. -----Mensaje original----- De: dyn...@li... [mailto:dyn...@li...]En nombre de Pascal Enviado el: viernes 19 de enero de 2001 11:51 Para: dyn...@li... Asunto: RE: [Dynapi-Dev] RV: corePopUp & Frames (forgot the attach in previous mail) not to be anoying (again) but seeing as this is a very public mailing list it would be more polite to atleast include an english answer as well so that anyone -not spanish- with the same problem would also "get" the solution. I think that we could get some great conversations if everyone on this list would mail in their own language :-) iets wat ik dus nooit doe cya, Pascal Bestebroer (pb...@oi...) Software ontwikkelaar Oberon Informatiesystemen b.v. http://www.oibv.com > -----Oorspronkelijk bericht----- > Van: dyn...@li... > [mailto:dyn...@li...]Namens Raides J. > Verzonden: vrijdag 19 januari 2001 10:22 > Aan: dyn...@li... > Onderwerp: Re: [Dynapi-Dev] RV: corePopUp & Frames (forgot > the attach in > previous mail) > > > Esto es sólo una pequeña indicación sobre "estilo"... > > En "margenJS.htm", línea 34, en lugar de > --> > debe decir: > //--> > > para evitar un error en Netscape 4.x que puede hacer que el > código no se ejecute > correctamente. > > Sobre el otro problema, no tengo tiempo para estudiarlo ... :( > > Raides J. > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > |
From: Patricia F. <tec...@ca...> - 2001-01-19 12:08:45
|
muchas gracias por mirarlo y responder. Esque empiezo con todo esto y mi cabeza ha cuadriplucado su tamaño...todavía errores tontos de esos. eso, que gracias.pat -----Mensaje original----- De: dyn...@li... [mailto:dyn...@li...]En nombre de Raides J. Enviado el: viernes 19 de enero de 2001 10:22 Para: dyn...@li... Asunto: Re: [Dynapi-Dev] RV: corePopUp & Frames (forgot the attach in previous mail) Esto es sólo una pequeña indicación sobre "estilo"... En "margenJS.htm", línea 34, en lugar de --> debe decir: //--> para evitar un error en Netscape 4.x que puede hacer que el código no se ejecute correctamente. Sobre el otro problema, no tengo tiempo para estudiarlo ... :( Raides J. |
From: Raymond S. <dst...@or...> - 2001-01-19 11:50:03
|
I guess thats why your a software engineer and I am a dreamer. ----- Original Message ----- From: "Pascal" <pb...@oi...> To: <dyn...@li...> Sent: Friday, January 19, 2001 3:24 AM Subject: RE: [Dynapi-Dev] RV: corePopUp & Frames (forgot the attach in previous mail) > depends on how far you throw ofcourse, also how would you cross the oce= an > with this "technique"? > Using a plain? boat? ifso.. when you are in a plain, 2 throws would be > enough to cross that whole ocean > > Ofcourse you could get some scuba gear, and play fair.. throw the stone > while walking across the surface of the ocean..which mean you might nee= d a > few years to hit me and by that time I might have moved somewhere else, > meaning you would have to change course and start all over again. > > basically, I don't recommend it :-) > > > 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: vrijdag 19 januari 2001 12:01 > > Aan: dyn...@li... > > Onderwerp: Re: [Dynapi-Dev] RV: corePopUp & Frames (forgot > > the attach in > > previous mail) > > > > > > QUERY: If I picked up a medium sized stone and threw it. > > Then, walked to > > where it landed picked it up and threw it again. Being in > > California, how > > many throws would be required to hit Pascal with it? > > > > ----- Original Message ----- > > From: "Pascal" <pb...@oi...> > > To: <dyn...@li...> > > Sent: Friday, January 19, 2001 2:50 AM > > Subject: RE: [Dynapi-Dev] RV: corePopUp & Frames (forgot the attach i= n > > previous mail) > > > > > > > not to be anoying (again) but seeing as this is a very > > public mailing list > > > it would be more polite to atleast include an english > > answer as well so > > that > > > anyone -not spanish- with the same problem would also "get" > > the solution. > > > > > > I think that we could get some great conversations if > > everyone on this > > list > > > would mail in their own language :-) > > > > > > iets wat ik dus nooit doe > > > > > > cya, > > > > > > Pascal Bestebroer (pb...@oi...) > > > Software ontwikkelaar > > > Oberon Informatiesystemen b.v. > > > http://www.oibv.com > > > > > > > -----Oorspronkelijk bericht----- > > > > Van: dyn...@li... > > > > [mailto:dyn...@li...]Namens Raides J. > > > > Verzonden: vrijdag 19 januari 2001 10:22 > > > > Aan: dyn...@li... > > > > Onderwerp: Re: [Dynapi-Dev] RV: corePopUp & Frames (forgot > > > > the attach in > > > > previous mail) > > > > > > > > > > > > Esto es s=F3lo una peque=F1a indicaci=F3n sobre "estilo"... > > > > > > > > En "margenJS.htm", l=EDnea 34, en lugar de > > > > --> > > > > debe decir: > > > > //--> > > > > > > > > para evitar un error en Netscape 4.x que puede hacer que el > > > > c=F3digo no se ejecute > > > > correctamente. > > > > > > > > Sobre el otro problema, no tengo tiempo para estudiarlo ... :( > > > > > > > > Raides J. > > > > > > > > _______________________________________________ > > > > 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 > > > > > > > > > _______________________________________________ > > 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: Raides J. <ra...@te...> - 2001-01-19 11:27:05
|
Pascal wrote: > > not to be anoying (again) but seeing as this is a very public mailing list > it would be more polite to atleast include an english answer as well so that > anyone -not spanish- with the same problem would also "get" the solution. > > I think that we could get some great conversations if everyone on this list > would mail in their own language :-) > > iets wat ik dus nooit doe > > cya, Sorry ... I would have answered her directly in spanish! ... It was my fault for being so fast in sending an answer before thinking where to send it! ... Now, keep this list for what's intended for, i.e. development of DynAPI (a though job, btw)! Ah! I have a Netscape PDF file with a very good explantion on JavaScript 1.3 events on it, in case it can help anyone fix event handlers, I will send it on demand (it's not currently available in Netscape's site, because it's a bit outdated by now ... I also have the full DOM2 Event model also in PDF and other interesting docs. Raides J. |
From: Pascal <pb...@oi...> - 2001-01-19 11:24:59
|
depends on how far you throw ofcourse, also how would you cross the ocean with this "technique"? Using a plain? boat? ifso.. when you are in a plain, 2 throws would be enough to cross that whole ocean Ofcourse you could get some scuba gear, and play fair.. throw the stone while walking across the surface of the ocean..which mean you might need a few years to hit me and by that time I might have moved somewhere else, meaning you would have to change course and start all over again. basically, I don't recommend it :-) 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: vrijdag 19 januari 2001 12:01 > Aan: dyn...@li... > Onderwerp: Re: [Dynapi-Dev] RV: corePopUp & Frames (forgot > the attach in > previous mail) > > > QUERY: If I picked up a medium sized stone and threw it. > Then, walked to > where it landed picked it up and threw it again. Being in > California, how > many throws would be required to hit Pascal with it? > > ----- Original Message ----- > From: "Pascal" <pb...@oi...> > To: <dyn...@li...> > Sent: Friday, January 19, 2001 2:50 AM > Subject: RE: [Dynapi-Dev] RV: corePopUp & Frames (forgot the attach in > previous mail) > > > > not to be anoying (again) but seeing as this is a very > public mailing list > > it would be more polite to atleast include an english > answer as well so > that > > anyone -not spanish- with the same problem would also "get" > the solution. > > > > I think that we could get some great conversations if > everyone on this > list > > would mail in their own language :-) > > > > iets wat ik dus nooit doe > > > > cya, > > > > Pascal Bestebroer (pb...@oi...) > > Software ontwikkelaar > > Oberon Informatiesystemen b.v. > > http://www.oibv.com > > > > > -----Oorspronkelijk bericht----- > > > Van: dyn...@li... > > > [mailto:dyn...@li...]Namens Raides J. > > > Verzonden: vrijdag 19 januari 2001 10:22 > > > Aan: dyn...@li... > > > Onderwerp: Re: [Dynapi-Dev] RV: corePopUp & Frames (forgot > > > the attach in > > > previous mail) > > > > > > > > > Esto es sólo una pequeña indicación sobre "estilo"... > > > > > > En "margenJS.htm", línea 34, en lugar de > > > --> > > > debe decir: > > > //--> > > > > > > para evitar un error en Netscape 4.x que puede hacer que el > > > código no se ejecute > > > correctamente. > > > > > > Sobre el otro problema, no tengo tiempo para estudiarlo ... :( > > > > > > Raides J. > > > > > > _______________________________________________ > > > 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 > > > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > |
From: <os...@wh...> - 2001-01-19 11:14:58
|
I translate this. (more o less) XD ----- Original Message ----- From: "Raides J." <ra...@te...> To: <dyn...@li...> Sent: Friday, January 19, 2001 10:22 AM Subject: Re: [Dynapi-Dev] RV: corePopUp & Frames (forgot the attach in previous mail) > Esto es sólo una pequeña indicación sobre "estilo"... This is only a little tip about "style"... > En "margenJS.htm", línea 34, en lugar de in "margenJS.htm",line 34, instead of > --> --> > debe decir: it has to say: > //--> //--> > para evitar un error en Netscape 4.x que puede hacer que el código no se ejecute to avoid an error in NS 4.x. that can stop the code process > correctamente. > > Sobre el otro problema, no tengo tiempo para estudiarlo ... :( About the other problem, I have no time to study it.... :( > > Raides J. > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > > |
From: Raymond S. <dst...@or...> - 2001-01-19 11:02:44
|
QUERY: If I picked up a medium sized stone and threw it. Then, walked t= o where it landed picked it up and threw it again. Being in California, ho= w many throws would be required to hit Pascal with it? ----- Original Message ----- From: "Pascal" <pb...@oi...> To: <dyn...@li...> Sent: Friday, January 19, 2001 2:50 AM Subject: RE: [Dynapi-Dev] RV: corePopUp & Frames (forgot the attach in previous mail) > not to be anoying (again) but seeing as this is a very public mailing l= ist > it would be more polite to atleast include an english answer as well so that > anyone -not spanish- with the same problem would also "get" the solutio= n. > > I think that we could get some great conversations if everyone on this list > would mail in their own language :-) > > iets wat ik dus nooit doe > > cya, > > Pascal Bestebroer (pb...@oi...) > Software ontwikkelaar > Oberon Informatiesystemen b.v. > http://www.oibv.com > > > -----Oorspronkelijk bericht----- > > Van: dyn...@li... > > [mailto:dyn...@li...]Namens Raides J. > > Verzonden: vrijdag 19 januari 2001 10:22 > > Aan: dyn...@li... > > Onderwerp: Re: [Dynapi-Dev] RV: corePopUp & Frames (forgot > > the attach in > > previous mail) > > > > > > Esto es s=F3lo una peque=F1a indicaci=F3n sobre "estilo"... > > > > En "margenJS.htm", l=EDnea 34, en lugar de > > --> > > debe decir: > > //--> > > > > para evitar un error en Netscape 4.x que puede hacer que el > > c=F3digo no se ejecute > > correctamente. > > > > Sobre el otro problema, no tengo tiempo para estudiarlo ... :( > > > > Raides J. > > > > _______________________________________________ > > 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-01-19 10:51:44
|
not to be anoying (again) but seeing as this is a very public mailing list it would be more polite to atleast include an english answer as well so that anyone -not spanish- with the same problem would also "get" the solution. I think that we could get some great conversations if everyone on this list would mail in their own language :-) iets wat ik dus nooit doe cya, Pascal Bestebroer (pb...@oi...) Software ontwikkelaar Oberon Informatiesystemen b.v. http://www.oibv.com > -----Oorspronkelijk bericht----- > Van: dyn...@li... > [mailto:dyn...@li...]Namens Raides J. > Verzonden: vrijdag 19 januari 2001 10:22 > Aan: dyn...@li... > Onderwerp: Re: [Dynapi-Dev] RV: corePopUp & Frames (forgot > the attach in > previous mail) > > > Esto es sólo una pequeña indicación sobre "estilo"... > > En "margenJS.htm", línea 34, en lugar de > --> > debe decir: > //--> > > para evitar un error en Netscape 4.x que puede hacer que el > código no se ejecute > correctamente. > > Sobre el otro problema, no tengo tiempo para estudiarlo ... :( > > Raides J. > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > |
From: Raides J. <ra...@te...> - 2001-01-19 09:22:31
|
Esto es sólo una pequeña indicación sobre "estilo"... En "margenJS.htm", línea 34, en lugar de --> debe decir: //--> para evitar un error en Netscape 4.x que puede hacer que el código no se ejecute correctamente. Sobre el otro problema, no tengo tiempo para estudiarlo ... :( Raides J. |
From: <hv...@ya...> - 2001-01-19 09:08:23
|
Have you checked out those by the following sites: www.dynamic-core.net (Pascal's examples and the official FAQ) www.richardinfo.com (Richard's collections of examples and additional = widgetsets) www.cantir.com/dynapi (Illmaestro's turturials and examples) there's several examples there - at least one should suit your = purpose... Henrik V=E5glin [ hv...@ya... ] And post help request on the dynapi-help list instead and you won't get = any nagging comments... :) ----- Original Message -----=20 From: "francesco AGATI" <fa...@we...> To: <dyn...@li...> Sent: Friday, January 19, 2001 9:36 AM Subject: [Dynapi-Dev] Hep: example load panel > Hi, >=20 > please i need of an example for see how to use the loadpanel >=20 > thanks >=20 > Francesco >=20 >=20 > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev >=20 _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com |