Re: [Dynapi-Dev] DynAPI X: addEventListener

2001-03-23 Thread Michael Bürge
> Michael, (and others submitting patches) > > I don't know if you followed the discussions on how to submit bugs/patches a > while back? > Basically things like this should be submitted as a patch, so they don't get > lost, it saves you reposting stuff, and keeps comments on the patch in > sequ

Re: [Dynapi-Dev] DynAPI X: addEventListener

2001-03-23 Thread Richard Bennett
- Original Message - From: "Michael Bürge" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 23, 2001 12:43 AM Subject: [Dynapi-Dev] DynAPI X: addEventListener > there's a bug in the following method (in listeners.js): > > the corrected ver

Re: [Dynapi-Dev] DynAPI X: typo in removeEventListener

2001-03-22 Thread Robert Rainwater
It's been updated in CVS. Also, I added a 'dynapix' bug category to the bug list at sourceforge. You can now submit dynapix bugs and select the dynapix category so it will be easy to follow. -- Robert Rainwater On 3/22/2001, 4:58:41 PM EST, Michael wrote about "[Dynapi

[Dynapi-Dev] DynAPI X: addEventListener

2001-03-22 Thread Michael Bürge
there's a bug in the following method (in listeners.js): the corrected version is: DynObject.prototype.addEventListener=function(listener) { if(!this.eventListeners) { this.eventListeners = []; } // the following line has been moved // it was inside the if-statement t

[Dynapi-Dev] DynAPI X: typo in removeEventListener

2001-03-22 Thread Michael Bürge
there's a "this." missing in the following method (in listener.js) DynObject.prototype.removeEventListener=function(listener) { Methods.removeFromArray(this.eventListeners, listener, false); if (eventListeners.length==0) { // <= this line!! this.hasEventListeners=false; }

Re: [Dynapi-Dev] DynAPI X: event-bubbling

2001-03-22 Thread Michael Bürge
right, it works better than before (you didn't let me in with the mac), but it still crashes ie5 (when it tries to load an external document) ..i like it anyway. > So far I have not encoutered any of the issues in Win platforms. If you check > www.bbdo-u.com, I just updated it to DynAPI X and it

Re: [Dynapi-Dev] DynAPI X: event-bubbling

2001-03-22 Thread Jordi - IlMaestro - Ministral
So far I have not encoutered any of the issues in Win platforms. If you check www.bbdo-u.com, I just updated it to DynAPI X and it works perfect ( Win ) and better than before ( Mac ) Michael Bürge wrote: > no problem. > if the src gets updated, the x and y should also be (as in the old version

Re: [Dynapi-Dev] DynAPI X: event-bubbling

2001-03-22 Thread Michael Bürge
no problem. if the src gets updated, the x and y should also be (as in the old version). but they don't seem to return the correct values anyway (at least not always) at the moment i'm trying to adopt some of my stuff to dynapi x, but i'm running into troubles everywhere. is there already an reso

Re: [Dynapi-Dev] DynAPI X: event-bubbling

2001-03-22 Thread Jordi - IlMaestro - Ministral
Then it was me misunderstanding what Source meant. Honest I had never used that property. Again my fault. You're right. Michael Bürge wrote: > ? > in an eventlistener e.getSource() till now always returned me a reference to > the dynlayer the listener is attached to. > > this is the bubbleEv

Re: [Dynapi-Dev] DynAPI X: event-bubbling

2001-03-22 Thread Michael Bürge
? in an eventlistener e.getSource() till now always returned me a reference to the dynlayer the listener is attached to. this is the bubbleEvent-Method of the old api and the src property gets updated: MouseEvent.prototype.bubbleEvent=function() { if (!this.bubble || this.src.getClass()=

Re: [Dynapi-Dev] DynAPI X: event-bubbling

2001-03-22 Thread Jordi - IlMaestro - Ministral
The source property points to the layer where the event started. It doesn't have to changed but in a few cases of mouseover in IE, which are already being corrected in prebubbleCode() ___ Dynapi-Dev mailing list [EMAIL PROTECTED] http://lists.sourcefor

[Dynapi-Dev] DynAPI X: event-bubbling

2001-03-22 Thread Michael Bürge
there's one thing missing in the invokeEvent-method: the src-property doesn't get updated when the event bubbles up. DynObject.prototype.invokeEvent=function(type,e) { if (!e) e=new DynEvent(type,this); if (this.hasEventListeners) for(var i=0;ihttp://lists.sourceforge.net/lists/listinfo/

Re: [Dynapi-Dev] DynAPI X : higherListener and dragEvent

2001-03-22 Thread Jordi - IlMaestro - Ministral
I did add the higherListener I've already realised it is useless, and annoying. Just remove it. I already have in my local version, just haven't had the time to update CVS. Michael Bürge wrote: > fact is: dragEvent doesn't work corectly with dynapi x when a layer is > enabled for dragging befo

[Dynapi-Dev] DynAPI X : higherListener and dragEvent

2001-03-22 Thread Michael Bürge
fact is: dragEvent doesn't work corectly with dynapi x when a layer is enabled for dragging before it has been created (which happens all the time in widgets) i studied the code and dicovered that this is due to the higherListener property not beeing set correctly, so that the mouseup/mousemove-e

Re: [Dynapi-Dev] DynAPI X [addCodeToMethod]

2001-03-16 Thread Robert Rainwater
- From: "Doug Melvin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 16, 2001 4:37 PM Subject: Re: [Dynapi-Dev] DynAPI X [addCodeToMethod] > that's a very good idea, but it still leaves us open to 'appending' > conflicting code >

Re: [Dynapi-Dev] DynAPI X [addCodeToMethod]

2001-03-16 Thread Doug Melvin
that's a very good idea, but it still leaves us open to 'appending' conflicting code - Original Message - From: "Robert Rainwater" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 15, 2001 6:43 PM Subject: Re: [Dynapi-Dev] DynAPI

Re: [Dynapi-Dev] DynAPI X

2001-03-15 Thread JonathanErinDale
THANK YOU JORDI

Re: [Dynapi-Dev] DynAPI X [addCodeToMethod]

2001-03-15 Thread Robert Rainwater
estro - Ministral" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 13, 2001 6:53 PM Subject: Re: [Dynapi-Dev] DynAPI X [addCodeToMethod] > Ok. > > Instead of going into a programming techniques discussion I'll look at this from > another point of v

Re: [Dynapi-Dev] DynAPI X

2001-03-15 Thread Jordi - IlMaestro - Ministral
if that doesn't work, maybe it's hidden from anonymous users? > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED]]On Behalf Of > > Jack_Speranza > > Sent: 13 March 2001 17:06 > > To: '[EMAIL PROTECTED]&#x

Re: [Dynapi-Dev] DynAPI X

2001-03-14 Thread Richard Bennett
AIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 14, 2001 11:45 PM Subject: Re: [Dynapi-Dev] DynAPI X > - Original Message - > From: "Richard Bennett" <[EMAIL PROTECTED]> > > <<< That looks good. > A few minor things: >>&

Re: [Dynapi-Dev] DynAPI X

2001-03-14 Thread Henrik Våglin
- Original Message - From: "Richard Bennett" <[EMAIL PROTECTED]> <<< That looks good. A few minor things: >>> OK :) <<< * This sentence: [...] Might read easier like this: >>> changed it as per your suggestion <<< * Most links open a new window except the compatibility matrix link.

Re: [Dynapi-Dev] DynAPI X

2001-03-14 Thread Richard Bennett
them.   Nice job! Richard   - Original Message - From: "Henrik Våglin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 14, 2001 2:19 PM Subject: RE: [Dynapi-Dev] DynAPI X > I've published a submission guidelines at our website> now.

RE: [Dynapi-Dev] DynAPI X

2001-03-14 Thread Pascal
in > Verzonden: woensdag 14 maart 2001 18:37 > Aan: [EMAIL PROTECTED] > Onderwerp: Re: [Dynapi-Dev] DynAPI X > > > When will it be 'ready' for DL? > I would like to look it over.. > - Original Message - > From: "Pascal" <[EMAIL PROTECTED]>

Re: [Dynapi-Dev] DynAPI X

2001-03-14 Thread Doug Melvin
When will it be 'ready' for DL? I would like to look it over.. - Original Message - From: "Pascal" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 14, 2001 2:59 AM Subject: RE: [Dynapi-Dev] DynAPI X > On another subject, before peo

RE: [Dynapi-Dev] DynAPI X

2001-03-14 Thread Henrik Våglin
I've published a submission guidelines at our website now. Go check it out and please let know if you think it is sufficient enough. http://dynapi.sourceforge.net/dynapi/content.php?menu=14&page_id=13 All comments are welcome :) Henrik Våglin [ [EMAIL PROTECTED] ]

RE: [Dynapi-Dev] DynAPI X

2001-03-14 Thread Pascal
On another subject, before people start turning bezerk.. DynAPI X is not a new distribution or new code.. once things are done it simply replaces the current release and CVS code. (atleast that's what I thought we're wroking towards) so don't be afraid you have to choose between DynAPI2 or DynAPI

Re: [Dynapi-Dev] DynAPI X

2001-03-14 Thread Daniel Aborg
I would have wanted it to be more like "hooking". Hooking usually means that there's an interface for what you can hook and what the hooked objects can do etc, as well as the encapsulation borders of the hooked object and the hook object being retained. Having given it some extra thought, putting

RE: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Michael Pemberton
I've noticed that you have split the events code. If you are having problems, see the attached code. It is what I've been using for the last few weeks and seems to work perfectly. All events are now split and the core events code is still part of the api (onprecreate / oncreate etc still works

Re: [Dynapi-Dev] DynAPI X [addCodeToMethod]

2001-03-13 Thread Jordi - IlMaestro - Ministral
decission. > > erik arvidsson > http://webfx.nu > > - Original Message - > From: "Jordi - IlMaestro - Ministral" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, March 13, 2001 8:09 AM > Subject: Re: [Dynapi-Dev] DynAPI X >

[Dynapi-Dev] DynAPI X [addCodeToMethod]

2001-03-13 Thread Erik Arvidsson
this is enough for you to rethink your decission. erik arvidsson http://webfx.nu - Original Message - From: "Jordi - IlMaestro - Ministral" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 13, 2001 8:09 AM Subject: Re: [Dynapi-Dev] DynAPI X > Well ye

Re: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Cameron Hart
Pascal Bestebroer wrote: > not sure if this started about the same thing, but I introduced an > is.def property before. This was because alot of code is used in > NS6 AND IE5 .. using an is.def property for those if loops, > would give minor speed increases to those loops for the def

RE: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Eytan Heidingsfeld
Two things: a. Could someone help me set up CVS again I can't get it to work and have a username pwd. b. About this problem of setting up hooks I think we shuold add a way of saying FINAL that means no one can hook (some kind of flag). 8an ___ Dynapi-

RE: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Pascal Bestebroer
ascal Bestebroer [EMAIL PROTECTED] http://www.dynamic-core.net > -Oorspronkelijk bericht- > Van: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]Namens Cameron Hart > Verzonden: dinsdag 13 maart 2001 19:17 > Aan: [EMAIL PROTECTED] > Onderwerp: RE: [Dynapi-Dev] DynAPI X > >

RE: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Cameron Hart
> Cameron Hart wrote: > > > > > maybe we should hard code into the is.dom property to not > include IE5/4 > > > windows (I think IE5 windows passes the test, but it's not > DOM compliant) > > > > No, it fails. Well my version does anyway. Anyone got IE5.5? > IE5 Mac passes. > > Just tested i

RE: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Cameron Hart
> >so unfortunately I can't test my theory ;-) > I did test it and the problem is that ie 5 mac supports stuff > like createElement but it still buggy when you go many level > deep or when you start adding html to layers there are a lot of > timing issue with ie 5 mac > I would live ie 5 mac cod

Re: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Thomas Hering
Cameron Hart wrote: > > > maybe we should hard code into the is.dom property to not include IE5/4 > > windows (I think IE5 windows passes the test, but it's not DOM compliant) > > No, it fails. Well my version does anyway. Anyone got IE5.5? IE5 Mac passes. Just tested it, IE5.5 passed the test

RE: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Jack_Speranza
To: [EMAIL PROTECTED] Subject: Re: [Dynapi-Dev] DynAPI X you can also browse to here: http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/?cvsroot=dynapi and save the files you need manually. Can we expect snapshots of DynAPI3 ? (err sorry Pascal, DynAPI X) Richard - Original Message - From

Re: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Richard Bennett
> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 13, 2001 6:05 PM Subject: FW: [Dynapi-Dev] DynAPI X > OK, I've prepared myself for trying to get my mind around this... but I > can't even make it past trying to get into the CVS repository (should I be > on the lookout for fallin

RE: [Dynapi-Dev] DynAPI X

2001-03-13 Thread nicola
>I believe the test should be written in such a way >that if a browser >supports enough of the DOM, it should use the DOM code > rather than it's own proprietry way of doing things. >It is possible that if we have >a DOM branch >for a lot of the core API, things like Mac IE should >use the DOM

RE: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Cameron Hart
mailto:[EMAIL PROTECTED]]On Behalf Of > Jack_Speranza > Sent: 13 March 2001 17:06 > To: '[EMAIL PROTECTED]' > Subject: FW: [Dynapi-Dev] DynAPI X > > > OK, I've prepared myself for trying to get my mind around this... but I > can't even make it past

FW: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Jack_Speranza
t: [Dynapi-Dev] DynAPI X ( Takes deep breath, puts helmet on, tells mom he loves her in case he doesn't make it back ) < . < . -- Where to find: available through CVS as module 'dynapix' Ok, there you go. Shall the battle begin. ( takes deep breath, loo

RE: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Cameron Hart
n b.v. > http://www.oibv.com > > > -Oorspronkelijk bericht- > > Van: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED]]Namens Cameron Hart > > Verzonden: dinsdag 13 maart 2001 15:32 > > Aan: [EMAIL PROTECTED] > > Onderwerp: RE: [Dynapi-Dev] DynAPI X

RE: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Pascal
beron Informatiesystemen b.v. http://www.oibv.com > -Oorspronkelijk bericht- > Van: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]Namens Cameron Hart > Verzonden: dinsdag 13 maart 2001 15:32 > Aan: [EMAIL PROTECTED] > Onderwerp: RE: [Dynapi-Dev] DynAPI X > > > I was just looking

RE: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Cameron Hart
I was just looking at the mouseevent code, and I've got a suggestion. Instead is going (is.def&&!is.ie), why don't you say is.ns6 OR create a new is.dom2 test or is.dom2e (e for events). I'm think NS6 is probably the only browser that does DOM2 events at the moment anyway, but providing a dom2e te

RE: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Cameron Hart
> I agree that this is a desirable feature. What you did seems not all > that different from Lisp's advice, so you should be pleased. The fact > that it still raises hackles should suggest that there is still a better > way to do it while maintaining the desired optionality and separation of >

Re: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Daniel LaLiberte
(I'm a lurker, hoping to have more time to participate.) Jordi - IlMaestro - Ministral writes: > Well yes if any of my computer engineering teachers could see that > code, they'd throw me through the window. If I had come up with a > better idea, then I would have chosen that one. The fact her

RE: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Pascal
> Having given this a few minutes of thought, this is something which > scares me. Having the possibility of your function being > modified by any > other package or extension is a horrible thought, because it means you > have no way of telling in what ways your function might change > dynamically

Re: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Jordi - IlMaestro - Ministral
Well yes if any of my computer engineering teachers could see that code, they'd throw me through the window. If I had come up with a better idea, then I would have chosen that one. The fact here was that we needed to add functionalities to certain pieces of code depending on what was loaded. Howev

Re: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Daniel Aborg
Jordi - IlMaestro - Ministral wrote: > Fift: i have included a generic method that allows to add lines of code to > already defined methods. So if you look at dynlayer.js and you can't see any > eventcapturing code, don't be puzzled. If you open mouse.js ( where the > mouseevents are now ) you wil

RE: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Eytan Heidingsfeld
I resent that. And no need to tracroute just look in the email headers. 8an ___ Dynapi-Dev mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/dynapi-dev

Re: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Jordi - IlMaestro - Ministral
Actually the think I would like the most is seeing people fighting with the memory leak. That is seeing what does the methods.destroy do, where does it fail, how many ram is it capable to free and so. I'm still dealing with events ( those mouseover, mouseouts are going to kill me ) and other brow

Re: [Dynapi-Dev] DynAPI X

2001-03-13 Thread Daniel Aborg
Great! Excellent! I like it! Is there any way I can help? Cheers, Daniel Jordi - IlMaestro - Ministral wrote: > For the last days/weeks we've been undergoing a very heavy rewrite of the API. > Since it was not a matter of lines but a very big rewriting, we decided to keep > it quiet and paral

Re: [Dynapi-Dev] DynAPI X

2001-03-12 Thread Dann
Hey, Traceroute these guys, and you'll end up in some forgotten strange asylum for the mentally deranged... except 8tan, of course, he's just a puppy living with his parents :))) Hehe, Dann begin:vcard n:Martens;Danny tel;cell:+32(0)478.544.003 tel;fax:+32(0)2.706.52.01 x-mozilla-html:FALSE

Re: [Dynapi-Dev] DynAPI X

2001-03-12 Thread Raymond Smith
: <[EMAIL PROTECTED]> Sent: Monday, March 12, 2001 11:50 AM Subject: [Dynapi-Dev] DynAPI X > ( Takes deep breath, puts helmet on, tells mom he loves her in case he doesn't > make it back ) > > Seeing that this list has lately been a very boring and quiet lake of peaceful >

Re: [Dynapi-Dev] DynAPI X

2001-03-12 Thread Doug Melvin
> jobs and real lives. Or is that your secret... none of you have real jobs > or real > lives, do you) Of course we do!! (hey guys, I think we've been found out!!) --- Outgoing mail is certified Virus Free by AVG Free Edition Download at: http://www.grisoft.com/html/us_index.cfm Checked

RE: [Dynapi-Dev] DynAPI X

2001-03-12 Thread Jack_Speranza
is stuff on top of having real jobs and real lives. Or is that your secret... none of you have real jobs or real lives, do you) -Original Message- From: Jordi - IlMaestro - Ministral [mailto:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001 2:50 PM To: [EMAIL PROTECTED] Subject: [Dynap

[Dynapi-Dev] DynAPI X

2001-03-12 Thread Jordi - IlMaestro - Ministral
( Takes deep breath, puts helmet on, tells mom he loves her in case he doesn't make it back ) Seeing that this list has lately been a very boring and quiet lake of peaceful coding, allow me to throw a new disturbance focus. For the last days/weeks we've been undergoing a very heavy rewrite of th