[Dynapi-Dev] DynAPI 2.5 or greater broken?

2001-10-29 Thread Matt Fair
Hello, I have been frustrated with getting the newest dynapi integrated with the newest dynapi since 2.5 came out. I have an online editor programmed with dynapi. When I switch through the versions of dynapi, everything act totally differently between each version. DynAPI 2.5 or greater see

[Dynapi-Dev] is DynAPI.browser being used anywhere?

2001-10-29 Thread Richard Bennett
Hi, I was wondering if we actually use DynAPI.browser at all? currently it is being initialized in browser.js, like this: is = DynAPI.browser = new Browser(); this means the browser.js file will cause errors when loaded outside a DynAPI context, or before the other Dynapi files are loaded. If w

Re: [Dynapi-Dev] is DynAPI.browser being used anywhere?

2001-10-29 Thread Michael Bürge
why not do it like the following: is = new Browser(); if (typeof DynAPI == 'object') DynAPI.browser = is; this will work in all situations Michael ps: sorry richard for getting this twice. i just did a reply without looking at the address. wasn't this supposed to be fixed? > From: "Richard Be

Re: [Dynapi-Dev] is DynAPI.browser being used anywhere?

2001-10-29 Thread Doug Melvin
Even that should be unnessesary, as the API uses is.whatever and never uses DynAPI.browser - Original Message - From: "Michael Bürge" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, October 29, 2001 7:16 AM Subject: Re: [Dynapi-Dev] is DynAPI.browser being used anywhere? > why

[Dynapi-Dev] devlopers

2001-10-29 Thread Matt Fair
Are there still openings of developing on DynAPI? I would like to put my skills to use to getting some of the bugs down. I have been working with DynAPI for about a year now, so I feel pretty comfortable with it and how it works. What do I have to do? Matt __

[Dynapi-Dev] Re: [Dynapi-Help] DynAPI 2.5 or greater broken?

2001-10-29 Thread Doug Melvin
2.5 is a complete re-write from 2.4 So it is possible that there are _some_ incompatabiliteis. I have not found there to be that many issues tho. - Original Message - From: "Matt Fair" <[EMAIL PROTECTED]> To: "dynapi-dev" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, October 29,

Re: [Dynapi-Dev] devlopers

2001-10-29 Thread Jordi Ministral
We're always open to new developers. If you want to contribute create a Sourceforge account and I'll add you to the developer list. If you don't know about CVS and sourceforge, please read the FAQs at dynapi.sourceforge.net/doccenter Matt Fair wrote: > Are there still openings of developing o

[Dynapi-Dev] Aaarg !!!

2001-10-29 Thread Jordi Ministral
I'm trying to create a release but I can't get the files to appear in the Sourceforge release system. Be patient, I'm getting used to this administration stuff ___ Dynapi-Dev mailing list [EMAIL PROTECTED] http://www.mail-archive.com/dynapi-dev@lists

[Dynapi-Dev] 2.55a release

2001-10-29 Thread Jordi Ministral
Ok here we go. DynAPI 2.55a is released. Notice the 'a'. It means that since this is my firt time, I'm afraid of it being broken. Regards, I'll try to update the website now ___ Dynapi-Dev mailing list [EMAIL PROTECTED] http://www.mail-archive.com/d

[Dynapi-Dev] Re: [Dynapi-Help] DynAPI 2.5 or greater broken?

2001-10-29 Thread Richard Bennett
These versions are not 100% plug'n'play, when changing to the newest version, all dynapi files using events have to include these separately, like this: DynAPI.include('dynapi.api.*'); DynAPI.include('dynapi.event.*'); and if you have any home-made widgets using this.id="foo" you should delete th

[Dynapi-Dev] Re: is DynAPI.browser being used anywhere?

2001-10-29 Thread hjm
I would fully support the proposed change to: is = new Browser(); As there are many instances that I would like to use Borwser.js outside of DynAPI. At present I use a modified version of the file with the line changed to the proposed solution. Dr. Harley Mackenzie HARD software + 61 3 5267 2

Re: [Dynapi-Dev] Re: is DynAPI.browser being used anywhere?

2001-10-29 Thread Richard Bennett
Yeah, it's done - but it just missed the v2.55a release, so you'll have to hand-edit once more :o) - Original Message - From: "hjm" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 30, 2001 1:54 AM Subject: [Dynapi-Dev] Re: is DynAPI.browser being used anywhere? > I wo