[Webware-devel] Umlaut support for htmlEncode()

2001-08-17 Thread Fionn Behrens
Just apply the patch below. Thanks, Fionn *** Funcs.py.orig Fri Aug 17 21:56:51 2001 --- Funcs.pyFri Aug 17 21:56:58 2001 *** *** 18,23 --- 18,30 ['<', '<'], ['>', '>'], ['"', '"'], + ['d', 'ä'], + ['D', 'Ä'], +

Re: [Webware-devel] Request _pathContext As a generalization of Path Session

2001-08-17 Thread Geoff Talvola
At 01:42 PM 8/17/01 -0400, Clark C . Evans wrote: >On Sat, Aug 11, 2001 at 11:32:59PM -0400, Clark C . Evans wrote: >| Please find attached a patch for HTTPRequest.py >| and Applicaiton.py which generalizes Heiko Hees's >| wonderful "Path Based Session" to allow for >| session-like variables to be

Re: [Webware-devel] Request _pathContext As a generalization of Path Session

2001-08-17 Thread Clark C . Evans
On Sat, Aug 11, 2001 at 11:32:59PM -0400, Clark C . Evans wrote: | Please find attached a patch for HTTPRequest.py | and Applicaiton.py which generalizes Heiko Hees's | wonderful "Path Based Session" to allow for | session-like variables to be included in the | path *before* the servlet context

Re: [Webware-devel] What should this error message tell me?

2001-08-17 Thread Fionn Behrens
Hi Geoff Talvola, on 17-Aug-2001 you wrote: >>SyntaxError: can't assign to function call (line 81) > > I've never heard of that before. Do you have a PSP that reproduces the > problem? I am sorry, please forget my post. This was a silly mistake. I wrote array(index) instead of array[index]

RE: [Webware-devel] What should this error message tell me?

2001-08-17 Thread Love, Jay
That sounds to me like it is an error with the PSP file. When imp tries to import it, the psp file is doing something illegal. Are you doing anything hacky in the PSP file itself? Jay > -Original Message- > From: Geoff Talvola [mailto:[EMAIL PROTECTED]] > Sent: Friday, August 17, 2001

Re: [Webware-devel] What should this error message tell me?

2001-08-17 Thread Geoff Talvola
At 04:27 PM 8/17/01 +0200, Fionn Behrens wrote: >I get this while loading a PSP: > >Traceback (innermost last): >File "WebKit/Application.py", line 335, in dispatchRequest >self.handleGoodURL(transaction) >File "WebKit/Application.py", line 473, in handleGoodURL >self.createServletInTransaction(tr

[Webware-devel] Fix

2001-08-17 Thread Fionn Behrens
CVS, file PSP/PSPParser, line 242: except EOFError: is wrong, because Streamreader does not raise that. It should read: except EndofInputError: (or you should fix StreamReader to raise EOFError) Regards, Fionn ___ Webware-devel mail

[Webware-devel] What should this error message tell me?

2001-08-17 Thread Fionn Behrens
I get this while loading a PSP: Traceback (innermost last): File "WebKit/Application.py", line 335, in dispatchRequest self.handleGoodURL(transaction) File "WebKit/Application.py", line 473, in handleGoodURL self.createServletInTransaction(transaction) File "WebKit/Application.py", line 873, i