Re: [Webware-devel] Massive PSP Problems in 1.0.1

2009-03-16 Thread Fionn Behrens
Am Montag, den 16.03.2009, 04:08 +0100 schrieb Christoph Zwerschke: > > I have always asked people to check the betas and release candidates, > but the feedback was mostly been disappointing. Open Source software > lives from active participation and feedback of its users. How can it > be improv

[Webware-devel] Massive PSP Problems in 1.0.1

2009-03-15 Thread Fionn Behrens
I kicked myself today and finally tried to upgrade one of my ancient Webware installations to 1.0.1. Unfortunately it looks like about nobody at all is left using PSP. All my pages do, though. So I quickly fell over a number of awkwardnesses which are probably just bugs. I use: - apache2 - mod_w

Re: [Webware-devel] Problems with 0.9.2 and psp

2006-10-17 Thread Fionn Behrens
On Di, 2006-10-17 at 13:01 +0200, Christoph Zwerschke wrote: > Fionn Behrens wrote: > > Looks like webware tries to load a servlet file from a dedicated > > directory for each psp page. This is a requirement that wasnt there > > before and I wonder what it is good for! Would

[Webware-devel] Problems with 0.9.2 and psp

2006-10-17 Thread Fionn Behrens
Hello all, I use psp a lot. Today I tried to update Webware to 0.9.2 and got a lot of errors which all went like the following: [Tue Oct 17 11:15:36 2006] [error] WebKit: Error while executing script /var/www/trainerportal/index_cont.psp Traceback (most recent call last): File "./WebKit/Applic

Re: [Webware-devel] virtual servers and psp - no way?

2002-12-05 Thread Fionn Behrens
On Don, 2002-12-05 at 03:20, Ian Bicking wrote: > I don't use PSP, so I'm just guessing here... > > > > > WKServer localhost 8087 > > SetHandler webkit-handler > > > > Do you need this /wk at all? Well, for the administration scripts and documentation it comes in handy. Otherwise n

[Webware-devel] virtual servers and psp - no way?

2002-12-04 Thread Fionn Behrens
I just noticed that it seems to be impossible to have multiple virtual servers each have their own AppServer handle PSP files in their respective directories. Even worse, all psp files server-wide are being processed by the first application server hat has been launched, regardless of which domain

[Webware-devel] Bug in CVS PSP engine (patch included)

2002-02-07 Thread Fionn Behrens
Hello folks, today I decided to update my 0.6something to CVS. The first thing I found was a bug ;-) The PSP Servlet engine writes a temp file in /tmp and later os.rename()s it to the actual servlet file. If /tmp and Webware are not on the same file system, this will fail. Of course I have n

RE: [Webware-devel] Live webware site :)

2001-10-12 Thread Fionn Behrens
Hi Chuck Esterbrook, on 11-Oct-2001 you wrote: > At 01:07 AM 10/12/2001 +0200, Fionn Behrens wrote: > I'm curious if you could pass along the names of those browsers? It would > be interesting to check my logs for them and possibly check for them in > servlets. I'm not

RE: [Webware-devel] Live webware site :)

2001-10-11 Thread Fionn Behrens
Hi Chuck Esterbrook, on 11-Oct-2001 you wrote: > At 12:09 AM 10/12/2001 +0200, Fionn Behrens wrote: >>The site looks nice indeed. But I find it hardly acceptable that it is not >>viewable without cookies. >> >>Just my 0.00, >> Fionn > &g

RE: [Webware-devel] Live webware site :)

2001-10-11 Thread Fionn Behrens
Hi Jeff Johnson, on 11-Oct-2001 you wrote: > http://foreclosures.lycos.com/ > > This is running FreeBSD, PostgreSQL, Webware, Cheetah and FunFormKit. > > Any suggestions appreciated. The site looks nice indeed. But I find it hardly acceptable that it is not viewable without cookies. Just my

[Webware-devel] Serious crash issue.

2001-09-26 Thread Fionn Behrens
Want to get your AppServer hung pretty fast? This is what I get when a user tries to use a POST data form with lynx 2.8.x and Webware. Looks odd. Does anyone feel like looking after it? After all its a simple way to remotely put any AppServer out of order. Traceback (innermost last): File "W

Re: [Webware-devel] Path(method) problems continued (bug?)

2001-09-19 Thread Fionn Behrens
Hi Ian Bicking, on 19-Sep-2001 you wrote: > Fionn Behrens <[EMAIL PROTECTED]> wrote: >> In my optinion there is something clearly wrong with the last one of these >> lines, because this is the function (from todays CVS HTTPRequest.py): >> >> def serverURL(

[Webware-devel] Path(method) problems continued (bug?)

2001-09-19 Thread Fionn Behrens
Following up to my previous post on this topic from August ([EMAIL PROTECTED]) I just wanted to have your opinion on the the issue again, which I investigated a bit further: Please try out the small psp I attached to this message. For me, it generates the following output: Request: Host:

Re: [Webware-devel] FieldStorage and backwards compat with strin

2001-09-09 Thread Fionn Behrens
Hi Ian Bicking, on 08-Sep-2001 you wrote: > Tavis Rudd <[EMAIL PROTECTED]> wrote: >> Is anyone actually using Webware in a shared hosting >> environment? Ian, weren't you looking around for someone >> that would let you run it? > > No, I never really found anyone, though I didn't try incred

[Webware-devel] Re: [Webware-discuss] Pickle problem help

2001-08-29 Thread Fionn Behrens
Hi Chuck, on 08/23/2000 05:03:11 you wrote: >Recently we introduced the pickling of sessions to disk, which in general >is a good thing. >However, the ListBox example has problems now because it defines an Item >class and puts Item instances in the Session. This example is so simple, I >cou

[Webware-devel] Exception instead of 404 for non-existent .psp

2001-08-22 Thread Fionn Behrens
I am using the Apache module. Requesting a non-existent psp file results in the following exception instead of a 404: Traceback (innermost last): File "WebKit/Application.py", line 335, in dispatchRequest self.handleGoodURL(transaction) File "WebKit/Application.py", line 473, in handl

[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] 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]

[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

Re: [Webware-devel] PSP oddities

2001-08-13 Thread Fionn Behrens
Hi Geoff Talvola, on 13-Aug-2001 you wrote: > So how about adding a PSP tag "<%@ page writeMethod="myWriteMethod"%> that > specifies a method to use to write out all output? If it's not specified, > then it uses the default which is to call response.write(). You could then > provide your o