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', 'Ä'],
+
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
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
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]
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
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
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
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