From: Leif W <war...@us...> - 2004-10-18 07:13:12
|
> ----- Original Message ----- > From: Clemens Eisserer > To: dyn...@li... > Sent: Monday, October 18, 2004 02:53 > Subject: Re: [Dynapi-Help] Need some help with IOElement, please. > > Hello! > First of all thanks a lot fo the fast answer! No problem. > I use the java-servlet version, however I dont see any messages from > the server although t! here should be one. I will try to get the > clac-servlet-demo working. D'oh! I'm not experienced with the Java servlet version. I forgot about it. > The problem I had with konqueror and opera (no load object or so..) > also happens with the soda-demos. I've got a Linux system and can test later. But I'd have to configure Java with Apache for the first time. Been meaning to update and recompile a newer version of Apache anyways. > PS: I found some "bad-loops" (for(var ...) in dynapi-code, may I > correct this and send it back to you or somewhere else? If It's JavaScript, if I understand what the changes are, and how it affects the code, and better can see evidence of the problem before and after, I try to submit to CVS. Best for you to grab the CVS version, see if the problem exists, if so, submit a diff for the specific line(s), or at least list the line number(s), and show the before and after code. If I guessed, I would say you intend to rewrite the loops as below, to pull the var outside the loop so that performance increases by reducing the allocation/deallocation time for each iteration. But I may be wrong. :D < for ( var i = ... ; ... ; ... ) -- > var i; > for ( i = ... ; ... ; ... ) Leif |