From: Scott A. L. <sc...@sc...> - 2000-10-28 17:29:18
|
I think I've found a fix for the problem with children arrays being shared between widgets made with the widgetX model. The problem: Widget.prototype = new DynLayer() When this is done, the properties of the base DynLayer are *shared* with every Widget made with the constructor. Most of these shared properties are reassigned to unique ones when createElement is called on the Widget. However, the children array is not, and it gives the effect that all Widgets share the same children array. So I've posted a patch for DynLayer and DynDocument that assigns the this.children array only when you use addChild. DynLayer-based widgets won't have a children array until you add at least one child. I also made changes to removeChild, removeAllChildren, etc. that check for the existence of the child array before proceeding. This should ensure that the children array is a unique object for each widget, and not the common one in the Widget prototype. Then you can safely use WidgetX to simulate inheritance without the shared-properties problem. The only consideration is if you build a widget that manipulates the children array, you should test it it exists first (it's initially set to null until you use addChild). I've only tested it on a few IBS and GUI widgets, but it seems to work across the board. I've posted the patch for review. scottandrew ------ Scott Andrew LePera DHTML / Scripting / CGI and other neat stuff sc...@sc... http://www.scottandrew.com |
From: francesco A. <fa...@we...> - 2001-01-26 16:38:51
|
hi i have see two problems with netscape if the dragevents of a layer is enable the click and doubleclick events = of the layer do not responds with Netscape but responds with explorer Francesco |
From: àÒÉÊ óÉÌØ×ÅÓÔÒÏ× <yur...@ma...> - 2001-02-16 16:33:27
|
May be, will be useful to allow plugins starts before DynAPI.onLoad() procedure. E.g. I wrote a tooltip widget with one tooltip DynLayer for all tooltips. That's why I need to create this DynLayer after DynAPI and my ToolTip module are initialised, but before running user code. To do this, I offer add some code to DynAPI.js: for (var i=0;i<DynAPI.plugins.length; i++) { if (DynAPI.plugins[i].onBeforeLoad) DynAPI.plugins[i].onBeforeLoad(); } directly before DynAPI.onLoad() call Yurij Silvestrov |
From: Chris L. <Chr...@pl...> - 2001-02-19 12:16:04
|
Has any one got any good methods for displaying tooltips for layers which contain just a background image. At the moment the best way I can think of is on a mouseover event to place a transparent layer over the top of the image layer. I then set the HTML of this new layer to an <IMG> tag with the src being a transparent gif. I then use the alt attribute of the img tag to get a tooltip to display. The problem I'm having is when I also try to pisk up on the click event for the layer. IE picks up this mouse click event with no problems but Netscape seems to be slightly inconsistent. Every now and then the click event does not get called. I am unable to see under what conditions the click event is ignored. I have tried invoking the event from the tooltip layer but this doesn't seem to alter the behaviour in Netscape. Does anyone have any other ideas/methods for showing tooltips but retaining the event listening for the mouseup event in Netscape Thanks Chris |
From: Pascal B. <pa...@dy...> - 2001-02-19 13:10:36
|
please post these questions only to dynapi-help Pascal Bestebroer pa...@dy... http://www.dynamic-core.net > -----Oorspronkelijk bericht----- > Van: dyn...@li... > [mailto:dyn...@li...]Namens Chris Lemon > Verzonden: maandag 19 februari 2001 13:18 > Aan: 'dyn...@li...'; > 'Dyn...@li...' > Onderwerp: [Dynapi-Dev] (no subject) > > > Has any one got any good methods for displaying tooltips for layers which > contain just a background image. > > At the moment the best way I can think of is on a mouseover event > to place a > transparent layer over the top of the image layer. I then set the HTML of > this new layer to an <IMG> tag with the src being a transparent > gif. I then > use the alt attribute of the img tag to get a tooltip to display. > > The problem I'm having is when I also try to pisk up on the click > event for > the layer. IE picks up this mouse click event with no problems > but Netscape > seems to be slightly inconsistent. Every now and then the click > event does > not get called. I am unable to see under what conditions the > click event is > ignored. > > I have tried invoking the event from the tooltip layer but this > doesn't seem > to alter the behaviour in Netscape. > > Does anyone have any other ideas/methods for showing tooltips but > retaining > the event listening for the mouseup event in Netscape > > Thanks > > Chris > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > |
From: àÒÉÊ óÉÌØ×ÅÓÔÒÏ× <yur...@ma...> - 2001-02-26 16:04:54
|
This code works with snapshot from 22.02.2001 but not with snapshot from 25.02.2001. The problem is in fact, that DynLayers never assigns to DynDocument, and DynLayer.toString() gives wrong reference. <script language="Javascript" src="../src/dynapi.js"></script> <script language="Javascript"> DynAPI.setLibraryPath('../src/lib/'); DynAPI.include('dynapi.api.*'); </script> <script language="Javascript"> DynAPI.onLoad = function() { myLayer = new DynLayer(null,100,100,100,100,'#c0c0c0') DynAPI.document.addChild(myLayer) eval(myLayer+".moveTo(100,100)") } </script> Yura Silvestrov |
From: Robert R. <rra...@ya...> - 2001-02-26 16:58:37
|
I updated CVS with a fix. I forgot to add parent layers to the .doc. Only children were added. If you add to the first line of assignChildren: this.dyndoc.all[this.id]=3Dthis That should fix it. --=20 // Robert Rainwater --=20 DynAPI Homepage: http://dynapi.sourceforge.net/ DynAPI Snapshots: http://dynapi.sourceforge.net/snapshot/ On Monday, February 26, 2001 11:06:48 AM =E0=D2=C9=CA =F3=C9=CC=D8=D7=C5=D3= =D4=D2=CF=D7 wrote: > This code works with snapshot from 22.02.2001 but not with snapshot from = 25.02.2001. The problem is in fact, that DynLayers never assigns to DynDocu= ment, and DynLayer.toString() gives wrong reference. >=20 > <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"> >=20 > DynAPI.onLoad =3D function() { > myLayer =3D new DynLayer(null,100,100,100,100,'#c0c0c0') > DynAPI.document.addChild(myLayer) > eval(myLayer+".moveTo(100,100)") > } >=20 > </script> > Yura Silvestrov >=20 >=20 > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev |
From: Doug M. <do...@cr...> - 2001-02-26 20:51:26
|
does that mean I should NOT dl the latest code? is this fix in the cvs? ----- Original Message ----- From: "Robert Rainwater" <rra...@ya...> To: <dyn...@li...> Sent: Monday, February 26, 2001 8:59 AM Subject: Re: [Dynapi-Dev] (no subject) I updated CVS with a fix. I forgot to add parent layers to the .doc. Only children were added. If you add to the first line of assignChildren: this.dyndoc.all[this.id]=this That should fix it. -- // Robert Rainwater -- DynAPI Homepage: http://dynapi.sourceforge.net/ DynAPI Snapshots: http://dynapi.sourceforge.net/snapshot/ On Monday, February 26, 2001 11:06:48 AM àÒÉÊ óÉÌØ×ÅÓÔÒÏ× wrote: > This code works with snapshot from 22.02.2001 but not with snapshot from 25.02.2001. The problem is in fact, that DynLayers never assigns to DynDocument, and DynLayer.toString() gives wrong reference. > > <script language="Javascript" src="../src/dynapi.js"></script> > <script language="Javascript"> > DynAPI.setLibraryPath('../src/lib/'); > DynAPI.include('dynapi.api.*'); > </script> > <script language="Javascript"> > > DynAPI.onLoad = function() { > myLayer = new DynLayer(null,100,100,100,100,'#c0c0c0') > DynAPI.document.addChild(myLayer) > eval(myLayer+".moveTo(100,100)") > } > > </script> > Yura Silvestrov > > > _______________________________________________ > 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 --- Outgoing mail is certified Virus Free by AVG Free Edition Download at: http://www.grisoft.com/html/us_index.cfm Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.231 / Virus Database: 112 - Release Date: 2/12/01 |
From: Pascal B. <pa...@dy...> - 2001-02-26 21:06:00
|
K, Doug.. don't take this to hard (or personal) but if your using the DynAPI for real-life solutions and projects.. use the latest official release... NOT the CVS code, as things might work one day, and broken the next (hmm.. sounds familiar...oh, the faq :) There's been some heavy changes in the current CVS code that need testing.. if you'r up for it, please test it out, but this means: Yes you need to download the latest code. If you don't like being the test subject, use the official release (all bugs in that code have been tested, and are genuine bugs :) Pascal Bestebroer pa...@dy... http://www.dynamic-core.net > -----Oorspronkelijk bericht----- > Van: dyn...@li... > [mailto:dyn...@li...]Namens Doug Melvin > Verzonden: dinsdag 27 februari 2001 0:50 > Aan: dyn...@li... > Onderwerp: Re: [Dynapi-Dev] (no subject) > > > does that mean I should NOT dl the latest code? > is this fix in the cvs? > ----- Original Message ----- > From: "Robert Rainwater" <rra...@ya...> > To: <dyn...@li...> > Sent: Monday, February 26, 2001 8:59 AM > Subject: Re: [Dynapi-Dev] (no subject) > > > I updated CVS with a fix. I forgot to add parent layers to the .doc. > Only children were added. > > If you add to the first line of assignChildren: > this.dyndoc.all[this.id]=this > > That should fix it. > > -- > // Robert Rainwater > > -- > DynAPI Homepage: http://dynapi.sourceforge.net/ > DynAPI Snapshots: http://dynapi.sourceforge.net/snapshot/ > > > On Monday, February 26, 2001 11:06:48 AM àÒÉÊ óÉÌØ×ÅÓÔÒÏ× wrote: > > This code works with snapshot from 22.02.2001 but not with snapshot from > 25.02.2001. The problem is in fact, that DynLayers never assigns to > DynDocument, and DynLayer.toString() gives wrong reference. > > > > <script language="Javascript" src="../src/dynapi.js"></script> > > <script language="Javascript"> > > DynAPI.setLibraryPath('../src/lib/'); > > DynAPI.include('dynapi.api.*'); > > </script> > > <script language="Javascript"> > > > > DynAPI.onLoad = function() { > > myLayer = new DynLayer(null,100,100,100,100,'#c0c0c0') > > DynAPI.document.addChild(myLayer) > > eval(myLayer+".moveTo(100,100)") > > } > > > > </script> > > Yura Silvestrov > > > > > > _______________________________________________ > > 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 > > > --- > Outgoing mail is certified Virus Free by AVG Free Edition > Download at: http://www.grisoft.com/html/us_index.cfm > Checked by AVG anti-virus system (http://www.grisoft.com). > Version: 6.0.231 / Virus Database: 112 - Release Date: 2/12/01 > > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > |
From: Doug M. <do...@cr...> - 2001-02-26 21:12:11
|
woh guy.. I don't need to be lectured. sheesh.. :-) ANy real-world app use the official relese.. But I am working on future tech here (including widgetts) Which means I MUST have the LATEST code to ensure that when y'all funally release the next version, all of my tech doesn't suddenly get hit. y'know? ----- Original Message ----- From: "Pascal Bestebroer" <pa...@dy...> To: <dyn...@li...> Sent: Monday, February 26, 2001 1:06 PM Subject: RE: [Dynapi-Dev] (no subject) > K, Doug.. don't take this to hard (or personal) > > but if your using the DynAPI for real-life solutions and projects.. use the > latest official release... NOT the CVS code, as things might work one day, > and broken the next (hmm.. sounds familiar...oh, the faq :) > > There's been some heavy changes in the current CVS code that need testing.. > if you'r up for it, please test it out, but this means: Yes you need to > download the latest code. If you don't like being the test subject, use the > official release (all bugs in that code have been tested, and are genuine > bugs :) > > Pascal Bestebroer > pa...@dy... > http://www.dynamic-core.net > > > -----Oorspronkelijk bericht----- > > Van: dyn...@li... > > [mailto:dyn...@li...]Namens Doug Melvin > > Verzonden: dinsdag 27 februari 2001 0:50 > > Aan: dyn...@li... > > Onderwerp: Re: [Dynapi-Dev] (no subject) > > > > > > does that mean I should NOT dl the latest code? > > is this fix in the cvs? > > ----- Original Message ----- > > From: "Robert Rainwater" <rra...@ya...> > > To: <dyn...@li...> > > Sent: Monday, February 26, 2001 8:59 AM > > Subject: Re: [Dynapi-Dev] (no subject) > > > > > > I updated CVS with a fix. I forgot to add parent layers to the .doc. > > Only children were added. > > > > If you add to the first line of assignChildren: > > this.dyndoc.all[this.id]=this > > > > That should fix it. > > > > -- > > // Robert Rainwater > > > > -- > > DynAPI Homepage: http://dynapi.sourceforge.net/ > > DynAPI Snapshots: http://dynapi.sourceforge.net/snapshot/ > > > > > > On Monday, February 26, 2001 11:06:48 AM àÒÉÊ óÉÌØ×ÅÓÔÒÏ× wrote: > > > This code works with snapshot from 22.02.2001 but not with snapshot from > > 25.02.2001. The problem is in fact, that DynLayers never assigns to > > DynDocument, and DynLayer.toString() gives wrong reference. > > > > > > <script language="Javascript" src="../src/dynapi.js"></script> > > > <script language="Javascript"> > > > DynAPI.setLibraryPath('../src/lib/'); > > > DynAPI.include('dynapi.api.*'); > > > </script> > > > <script language="Javascript"> > > > > > > DynAPI.onLoad = function() { > > > myLayer = new DynLayer(null,100,100,100,100,'#c0c0c0') > > > DynAPI.document.addChild(myLayer) > > > eval(myLayer+".moveTo(100,100)") > > > } > > > > > > </script> > > > Yura Silvestrov > > > > > > > > > _______________________________________________ > > > 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 > > > > > > --- > > Outgoing mail is certified Virus Free by AVG Free Edition > > Download at: http://www.grisoft.com/html/us_index.cfm > > Checked by AVG anti-virus system (http://www.grisoft.com). > > Version: 6.0.231 / Virus Database: 112 - Release Date: 2/12/01 > > > > > > > > _______________________________________________ > > 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 > --- Outgoing mail is certified Virus Free by AVG Free Edition Download at: http://www.grisoft.com/html/us_index.cfm Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.231 / Virus Database: 112 - Release Date: 2/12/01 |
From: Pascal B. <pa...@dy...> - 2001-02-26 21:16:27
|
then just download it without asking, saves some volume on this mailing :-) Pascal Bestebroer pa...@dy... http://www.dynamic-core.net > -----Oorspronkelijk bericht----- > Van: dyn...@li... > [mailto:dyn...@li...]Namens Doug Melvin > Verzonden: dinsdag 27 februari 2001 1:11 > Aan: dyn...@li... > Onderwerp: Re: [Dynapi-Dev] (no subject) > > > woh guy.. > I don't need to be lectured. > sheesh.. > :-) > > ANy real-world app use the official relese.. > But I am working on future tech here (including widgetts) > Which means I MUST have the LATEST code to ensure that when y'all funally > release the next version, all of my tech doesn't suddenly get hit. > y'know? > ----- Original Message ----- > From: "Pascal Bestebroer" <pa...@dy...> > To: <dyn...@li...> > Sent: Monday, February 26, 2001 1:06 PM > Subject: RE: [Dynapi-Dev] (no subject) > > > > K, Doug.. don't take this to hard (or personal) > > > > but if your using the DynAPI for real-life solutions and projects.. use > the > > latest official release... NOT the CVS code, as things might > work one day, > > and broken the next (hmm.. sounds familiar...oh, the faq :) > > > > There's been some heavy changes in the current CVS code that need > testing.. > > if you'r up for it, please test it out, but this means: Yes you need to > > download the latest code. If you don't like being the test subject, use > the > > official release (all bugs in that code have been tested, and > are genuine > > bugs :) > > > > Pascal Bestebroer > > pa...@dy... > > http://www.dynamic-core.net > > > > > -----Oorspronkelijk bericht----- > > > Van: dyn...@li... > > > [mailto:dyn...@li...]Namens Doug Melvin > > > Verzonden: dinsdag 27 februari 2001 0:50 > > > Aan: dyn...@li... > > > Onderwerp: Re: [Dynapi-Dev] (no subject) > > > > > > > > > does that mean I should NOT dl the latest code? > > > is this fix in the cvs? > > > ----- Original Message ----- > > > From: "Robert Rainwater" <rra...@ya...> > > > To: <dyn...@li...> > > > Sent: Monday, February 26, 2001 8:59 AM > > > Subject: Re: [Dynapi-Dev] (no subject) > > > > > > > > > I updated CVS with a fix. I forgot to add parent layers to the .doc. > > > Only children were added. > > > > > > If you add to the first line of assignChildren: > > > this.dyndoc.all[this.id]=this > > > > > > That should fix it. > > > > > > -- > > > // Robert Rainwater > > > > > > -- > > > DynAPI Homepage: http://dynapi.sourceforge.net/ > > > DynAPI Snapshots: http://dynapi.sourceforge.net/snapshot/ > > > > > > > > > On Monday, February 26, 2001 11:06:48 AM àÒÉÊ óÉÌØ×ÅÓÔÒÏ× wrote: > > > > This code works with snapshot from 22.02.2001 but not with snapshot > from > > > 25.02.2001. The problem is in fact, that DynLayers never assigns to > > > DynDocument, and DynLayer.toString() gives wrong reference. > > > > > > > > <script language="Javascript" src="../src/dynapi.js"></script> > > > > <script language="Javascript"> > > > > DynAPI.setLibraryPath('../src/lib/'); > > > > DynAPI.include('dynapi.api.*'); > > > > </script> > > > > <script language="Javascript"> > > > > > > > > DynAPI.onLoad = function() { > > > > myLayer = new DynLayer(null,100,100,100,100,'#c0c0c0') > > > > DynAPI.document.addChild(myLayer) > > > > eval(myLayer+".moveTo(100,100)") > > > > } > > > > > > > > </script> > > > > Yura Silvestrov > > > > > > > > > > > > _______________________________________________ > > > > 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 > > > > > > > > > --- > > > Outgoing mail is certified Virus Free by AVG Free Edition > > > Download at: http://www.grisoft.com/html/us_index.cfm > > > Checked by AVG anti-virus system (http://www.grisoft.com). > > > Version: 6.0.231 / Virus Database: 112 - Release Date: 2/12/01 > > > > > > > > > > > > _______________________________________________ > > > 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 > > > > > --- > Outgoing mail is certified Virus Free by AVG Free Edition > Download at: http://www.grisoft.com/html/us_index.cfm > Checked by AVG anti-virus system (http://www.grisoft.com). > Version: 6.0.231 / Virus Database: 112 - Release Date: 2/12/01 > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > |
From: àÒÉÊ óÉÌØ×ÅÓÔÒÏ× <yur...@ma...> - 2001-02-27 16:33:35
|
function DynAPI.removeFromArray will be rewriten as listed below removeFromArray : function(array, index, id) { var which=(typeof(index)=="object")?index:array[index]; if (id) delete array[which.id]; else for (var i=0; i<array.length; i++) if (array[i] == which) { if (typeof(array)=="array") //added array.splice(i,1); else { //added for(var x=i; x<array.length-1; x++) array[x]=array[x+1]; //added array.length -= 1; //added } //added break; } return array; }, to remove the error in function DynLayer.prototype.removeEventListener. Yura Silvestrov |
From: Pascal B. <pa...@dy...> - 2001-02-27 17:57:05
|
and so it will be done.. (after testing it :-) Pascal Bestebroer pa...@dy... http://www.dynamic-core.net > -----Oorspronkelijk bericht----- > Van: dyn...@li... > [mailto:dyn...@li...]Namens Юрий Сильвестров > Verzonden: dinsdag 27 februari 2001 17:35 > Aan: dyn...@li... > Onderwerp: [Dynapi-Dev] (no subject) > > > function DynAPI.removeFromArray will be rewriten as listed below > > removeFromArray : function(array, index, id) { > var which=(typeof(index)=="object")?index:array[index]; > if (id) > delete array[which.id]; > else for (var i=0; i<array.length; i++) > if (array[i] == which) { > if (typeof(array)=="array") //added > array.splice(i,1); > else { //added > for(var x=i; x<array.length-1; x++) array[x]=array[x+1]; //added > array.length -= 1; //added > } //added > break; > } > return array; > }, > > to remove the error in function DynLayer.prototype.removeEventListener. > Yura Silvestrov > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > |
From: Yurij S. <yur...@ma...> - 2001-05-03 15:32:09
Attachments:
scroll.zip
|
I think this may be useful. This is scroll event for DynDocument, and it allows to create "relative" DynLayers. Yurij Silvestrov |
From: <ar...@ar...> - 2001-08-16 19:05:59
|
La dirección de correo a la que has escrito no existe o es incorrecta, por favor comprueba que la dirección es correcta, y si el problema persiste ponte en contacto con nosotros en el e-mail: ar...@ar... |
From: <ma...@ab...> - 2001-08-17 12:11:03
|
hi, to get rid of the context-menu poping up on mousedowns (scrollbar-buttons for example) when holding the mousebutton for a while i added if (is.ns4 && is.platform=="mac") return false; line last to DynMouseEvent.EventMethod() in event/mouse.js. it works, but after the fix, no links in layers will work in ns4, the link doesn't seem to "get" the click. so i made an ugly workaround, changed the line i added to if (is.ns4 && is.platform=="mac" && evt._noMacNsContextMenu) { evt._noMacNsContextMenu = false; return false; } and in the eventlistener for the layers i didn't want the context-menu: listener.onmousedown=function(e) { // bla bla bla e._noMacNsContextMenu = true; } now it works, but i think the solution is a bit to ugly, does anybody else know an other way to come around it? /martin |
From: <ar...@ar...> - 2001-08-17 19:05:26
|
La dirección de correo a la que ha escrito no existe o es incorrecta, por favor compruebe que la dirección es correcta, y si el problema persiste pongase en contacto con nosotros en el e-mail: ar...@ar... |
From: <ar...@ar...> - 2001-08-18 19:04:10
|
La dirección de correo a la que ha escrito no existe o es incorrecta, por favor compruebe que la dirección es correcta, y si el problema persiste pongase en contacto con nosotros en el e-mail: ar...@ar... |
From: <ar...@ar...> - 2001-09-28 19:07:31
|
La dirección de correo a la que ha escrito no existe o es incorrecta, por favor compruebe que la dirección es correcta, y si el problema persiste pongase en contacto con nosotros en el e-mail: ar...@ar... |
From: <ar...@ar...> - 2001-09-29 19:03:08
|
La dirección de correo a la que ha escrito no existe o es incorrecta, por favor compruebe que la dirección es correcta, y si el problema persiste pongase en contacto con nosotros en el e-mail: ar...@ar... |
From: <ar...@ar...> - 2001-09-30 19:02:50
|
La dirección de correo a la que ha escrito no existe o es incorrecta, por favor compruebe que la dirección es correcta, y si el problema persiste pongase en contacto con nosotros en el e-mail: ar...@ar... |
From: <ar...@ar...> - 2001-10-01 18:29:50
|
La dirección de correo a la que ha escrito no existe o es incorrecta, por favor compruebe que la dirección es correcta, y si el problema persiste pongase en contacto con nosotros en el e-mail: ar...@ar... |
From: <ar...@ar...> - 2001-10-01 19:29:11
|
La dirección de correo a la que ha escrito no existe o es incorrecta, por favor compruebe que la dirección es correcta, y si el problema persiste pongase en contacto con nosotros en el e-mail: ar...@ar... |
From: Pascal B. <pa...@dy...> - 2001-10-01 19:41:36
|
OEH! I know! try english! Pascal Bestebroer pa...@dy... http://www.dynamic-core.net > -----Oorspronkelijk bericht----- > Van: dyn...@li... > [mailto:dyn...@li...]Namens ar...@ar... > Verzonden: maandag 1 oktober 2001 21:29 > Aan: dyn...@li... > Onderwerp: [Dynapi-Dev] (no subject) > > > La dirección de correo a la que ha escrito no existe o es incorrecta, > por favor compruebe que la dirección es correcta, y si el > problema persiste > pongase en contacto con nosotros en el e-mail: ar...@ar... > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-dev |
From: Dougal C. <do...@gu...> - 2001-10-01 19:46:05
|
I don't speak Spanish, but best I can tell, this is a "this email address is invalid" message. Who here has authority to remove this address from the mailing list? On Mon, 1 Oct 2001, Pascal Bestebroer wrote: > OEH! I know! try english! > > Pascal Bestebroer > pa...@dy... > http://www.dynamic-core.net > > > -----Oorspronkelijk bericht----- > > Van: dyn...@li... > > [mailto:dyn...@li...]Namens arista@arista.e= s > > Verzonden: maandag 1 oktober 2001 21:29 > > Aan: dyn...@li... > > Onderwerp: [Dynapi-Dev] (no subject) > > > > > > La direcci=F3n de correo a la que ha escrito no existe o es incorrect= a, > > por favor compruebe que la direcci=F3n es correcta, y si el > > problema persiste > > pongase en contacto con nosotros en el e-mail: ar...@ar... > > > > > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > https://lists.sourceforge.net/lists/listinfo/dynapi-dev > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-dev > --=20 Ernest MacDougal Campbell III, MCP+I, MCSE <do...@gu...> http://dougal.gunters.org/ http://spam.gunters.org/ Lumber Cartel Unit #1654 (tinlc): http://come.to/the.lumber.cartel/ This message is guaranteed to be 100% eror frea! |