Re: [Webware-devel] Page.writeDocType()

2003-01-25 Thread Stuart Donaldson
Given the comment in the writeDocType method, is it possible that the fix of removing a default DocType should be re-considered? What does it mean that some versions of Mozilla acted strangely? Mozilla has been under active development and made significant progress in bug-shooting. Perhaps

[Webware-devel] Page.writeDocType()

2003-01-25 Thread Roger Haase
This may be a nit, but several months ago I ran into a couple of screwy errors dealing with Javascript and IE 6.0 which were related to the change to Page.writeDocType. As this may impact someone else upgrading from .7, it may be worth a comment in the WebKit release notes. Personally, I use the

Re: [Webware-devel] Javascript Escapes - patch 655531

2003-01-25 Thread Stuart Donaldson
Ian Bicking wrote: On Sat, 2003-01-25 at 16:19, Stuart Donaldson wrote: In essence, Fazal Majid's patch which he included in the bug report is: #self.chars = string.replace(self.chars,'\t','t') #self.chars = string.replace(self.chars, "'", "\\'") self.chars = string

Re: [Webware-devel] Javascript Escapes - patch 655531

2003-01-25 Thread Ian Bicking
On Sat, 2003-01-25 at 16:19, Stuart Donaldson wrote: > In essence, Fazal Majid's patch which he included in the bug report is: > #self.chars = string.replace(self.chars,'\t','t') > #self.chars = string.replace(self.chars, "'", > "\\'") > self.chars = st

Re: [Webware-devel] Re: [Webware-discuss] forward() question ++ sendRedirectquestion

2003-01-25 Thread Stuart Donaldson
Roger Haase wrote: --- Stuart Donaldson <[EMAIL PROTECTED]> wrote: Awake and sleep are both called while in the forward() call to a new servlet. The forwarding servlet (the one calling forward()) does not finish processing until after the forward() call is through, so the forw

[Webware-devel] Javascript Escapes - patch 655531

2003-01-25 Thread Stuart Donaldson
Previously, I hadn't had a chance to do much with bug 655531 regarding javascript escapes in PSP. http://sourceforge.net/tracker/index.php?func=detail&aid=655531&group_id=4866&atid=104866 However I just took a look at it, as I have some javascript to incorporate into my PSP in the near future.