Bugs item #410877, was updated on 2001-03-23 09:49
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=105757&aid=410877&group_id=5757
Category: DynAPIX (Depreciated)
Group: None
Status: Open
Priority: 5
Submitted By: Jordan Pickup (jpickup)
Assigned to: Nobody/Anonymou
Bugs item #410877, was updated on 2001-03-23 09:49
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=105757&aid=410877&group_id=5757
Category: DynAPIX (Depreciated)
Group: None
Status: Open
Priority: 5
Submitted By: Jordan Pickup (jpickup)
Assigned to: Nobody/Anonymou
Bugs item #412396, was updated on 2001-03-29 22:09
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=105757&aid=412396&group_id=5757
Category: API
Group: None
>Status: Closed
Priority: 5
Submitted By: Xuefer (xuefer)
Assigned to: Nobody/Anonymous (nobody)
Summary: stu
You should really have a separate fully commented dynapi source so that you
actually KNOW what all the small quirks do. It would be quite simple to
maintain the commented source, strip it and upload the stripped uncommented
one aswell. That way bughunting should become easier without making all th
I believe it fixes a bug with events? in IE 5.5. Since you are one of
a few who have access to ssl, you may want to try something like:
javascript:void()
--
Robert Rainwater
On 3/29/2001, 9:55:56 PM EST, Roy wrote about "[Dynapi-Dev] SSL error for IE 5.5":
> Found this line in the DynLayer.
You need to beg an admin for access :)
Actually, I was in a giving mood, and already added you. You should
have CVS access soon (whenever sourceforge runs its daily updates).
--
Robert Rainwater
Doug Melvin wrote on Thu, 29 Mar 2001 12:07:31 -0800:
> Now how do I get write acces to the CVS?!
Doesn't load anything in IE6 Win2k...
- Original Message -
From: "Nicola Marzolla" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, March 29, 2001 9:24 AM
Subject: Re: [Dynapi-Widgetdev] Buffer widget for loadpanel
>
>
> win 2000 ie 5.5 nothing happen :(
>
>
> From: David Cus
Bugs item #412396, was updated on 2001-03-29 22:09
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=105757&aid=412396&group_id=5757
Category: API
Group: None
Status: Open
Priority: 5
Submitted By: Xuefer (xuefer)
Assigned to: Nobody/Anonymous (nobody)
Summary: stupid
Bugs item #412396, was updated on 2001-03-29 22:09
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=105757&aid=412396&group_id=5757
Category: API
Group: None
Status: Open
Priority: 5
Submitted By: Xuefer (xuefer)
Assigned to: Nobody/Anonymous (nobody)
Summary: stupid
So you did. I didn't get that far in my email. My apologies.
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of Michael
> Pemberton
> Sent: Friday, March 30, 2001 12:11 AM
> To: [EMAIL PROTECTED]
> Subject: Re: [Dynapi-Dev] Re: structure change ideas
did you see the code that I sent a few hours ago. it has all of these
methods.
Andrew Freeman wrote:
> Doug wrote:
>
> > String.prototype.trim() < -- I've been wanting this one for a
> > while.. myself
>
> I would suggest that if you are going to create a generic extensions
> package that you a
Doug wrote:
> String.prototype.trim() < -- I've been wanting this one for a
> while.. myself
I would suggest that if you are going to create a generic extensions
package that you also add:
String.prototype.rtrim()
String.prototype.ltrim()
___
Dynap
Found this line in the DynLayer.js
else if (is.ie55 && dlyr.bgImage==null && dlyr.html==null)
dlyr.setBgImage('javascript:null');
This causes IE5.5 to slip out of SSL because no one owns the domain for
javascript:null
IE5.5 warns you that you have both secure and insecure items on the page.
I r
I've been reading the posts regarding the structure change and intead of
replying as part of that, I'll just post this ans hope that no one
flames / stones me.
I've created the attached code as part of some cod ehtta was needed for
some of my widgets. I think that we should at least create a sec
Great to see you contributing to the DynAPI!
Bugfixes and additions are only actually added to the code by a few people,
and the chance they will see your post here is slim, best to read the
submission guide here:
http://dynapi.sourceforge.net/dynapi/content.php?menu=14&page_id=13
And then submit
- Original Message -
From: "Pascal Bestebroer" <[EMAIL PROTECTED]> wrote:
>You will
> have less changes to do then when trying to keep up with the daily
> snapshots.
>
Acording to those who responded to the previous poll at the DynAPI website ( 115
resonses - see results at
http://
Alrighty then, since I can't help very much with bug hunting,
How about I put this fourth year algorithms book to good use and start on
some
JSext stuff..
So we need (want):
array.splice();
isArray(a); <-- is there not a typeOf() in JS? If not, would typeOf () be
acceptable?
Array.prototype.to
"Seeing that nobody is capable or willing
to do it, let's not suddenly make this a big thing. "
I don't believe this is the case, Peop[le would just prefer to write code
than documentation.
We have to hound our coders here the bloody-well docuemtn their code -as
they write it-
This is the only w
>
> Maybe functions like removeFromArray and splice can be attached to the
> Array prototype, then it would really js extensions. Also we could have
Agreed.
> something like registerFile, that is called at the top of every dynapi
file is
> included. Then requireFile(), can be used to make sure
I'm not push flash at all, but your did say "Name me "one" serious site that
uses FLASH for it's interface and content delivery system"
So here's two :
http://www.elegance-models.com/
http://www.madisonmodels.com/main.html
- Original Message -
From: "Raymond Smith" <[EMAIL PROTECTED]>
To
With the talk of declaring private variables and all that
OOP jazz, some of you might be interested with the fact
that I've finally released my SuperClass...
It has extensive class-based OO support, including
information hiding, compiler-time error checking, type
checking, proper class inher
for NS 6 just rewrite line
DynImage.loadimages[i].img.width=(DynImage.loadimages[i].img.height=null);
as
if (is.ie) DynImage.loadimages[i].img.width=(DynImage.loadimages[i].img.height=null);
Yurij Silvestrov
This patches some undesirable aspects:
1. IE stores image dimensions and images in different places. That's why JS obtain
invalid dimension values - patched.
2. Images doesn`t resize when DynImage with autoResize=false resizes - patched.
3. DynImage() throws error (this.img.dynimages is not an ob
Bugs item #223612, was updated on 2000-11-27 10:14
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=105757&aid=223612&group_id=5757
Category: None
Group: None
Status: Open
Priority: 5
Submitted By: Joshua Hancik (jhancik)
Assigned to: Nobody/Anonymous (nobody)
Summar
if you want to put it that way, please do.. but every discussion keeps
running into completely other discussions. It's just that I am the one
complaining about it .. again.
But please keep on playing in this room.. meanwhile I'll do the coding and
won't mention any thoughts and ideas on this mai
I see...
Pappa Pascal, Sir comes into the room and were all supposed to drop our
"rocks" or go play in another room. And people wonder where this came from.
I totally regret the fact of mentioning my own flash-war plans. People are
jumping to much on this subject of me going to war with flash. I've never
mentioned turning the dynapi way into the flash way of webdesign.. So let me
just clarify it here then:
The problem with any product is that it onl
Alright, you use Flash, point taken.
> I use FLASH all the time. The only reason I responded strongly was due to
> Scott's heavy handed attack against DHTML in favor of FLASH. Where I come
I don't think he was saying use Flash instead of DHTML, he seemed to be
hightlighting the merits of Flash
I use FLASH all the time. The only reason I responded strongly was due to
Scott's heavy handed attack against DHTML in favor of FLASH. Where I come
from if a man kicks sand in your face you kick a little back. Read the post
carefully, I talk about a time and a place for FLASH, but I certainly d
I agree, there is definetly a place for Flash, I don't think you (Ray that
is) can make a blanket statement that Flash is Evil. Try making an animation
as small and fast as a flash animation using any other technology, you
can't. It's also brilliant for games, and now with Flash 5, you can do load
Flash or Dhtml ? It depends on what you want to do.
There is no point in adopting any technology and refuse others. You would look
like a 5 year-old kid going "mineisbetter mineisbetter mineisbetter". That is
not a rational approach.
Project creation process
-
1.- Projec
> I'm not sure if we should/could do this with the next release. Then,
> it would not really be DynAPI 2, but really DynAPI 2 and 3/4. That
> would mean a lot of restructuring. No problem for me, but for others
> it may be. Plus all of the documentation would need to be changed as
> well. If
32 matches
Mail list logo