[Webware-devel] w4py.org outage

2005-04-02 Thread Eric Radman
them they only had to call me back if it would be down for more than an hour. -- Eric Radman | http://eradman.com --- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real us

Re: [Webware-devel] w4py support person

2005-04-02 Thread Eric Radman
On 20:18 Sat 02 Apr , Ian Bicking wrote: > Does anyone know who the support contact for w4py is? It seems to be down. I put a call into Tummy.com at 970-494-0355 and used option 1 to leave a message in their emergency mailbox. I left my cell (570-840-4487) as a contact. I'll write the list as

Re: [Webware-devel] Mixing POST and GET request fields in WSGIKit

2005-03-31 Thread Eric Radman
On 13:04 Thu 31 Mar , Ian Bicking wrote: > Well, that's what happens when you don't excersize something at all > before checking it in. Repeating that mistake, I've checked in a fix. Nice! Seems to work perfectly now. Thanks for your work on this. Eric

Re: [Webware-devel] Mixing POST and GET request fields in WSGIKit

2005-03-31 Thread Eric Radman
On 10:42 Thu 31 Mar , Ian Bicking wrote: > > I think that must be because it uses cgi.parse_qs directory, which > returns a dictionary of lists (never flattening parameters). I checked > in what I think is a fix. I'm now getting a Serve Error when I submit POST data with a query string in

[Webware-devel] Mixing POST and GET request fields in WSGIKit

2005-03-31 Thread Eric Radman
self.writeln(""" """) self.writeln("""Field variables:""") self.writeln("""""") fields = self.request().fields() for field in fields: self.wri

Re: [Webware-devel] Add an Examples folder to SVN?

2005-03-25 Thread Eric Radman
On 09:18 Fri 25 Mar , Winston Wolff wrote: > Do you prefer "Extras"? I already added "Examples" but it is easy to > rename it now that we are using Subversion. :-) I don't really care if they're all on the root or under a directory, but if they are to be grouped, 'Extras' is okayI can't

Re: [Webware-devel] SVN Access / Recap

2005-02-28 Thread Eric Radman
On 16:54 Mon 28 Feb , Chuck Esterbrook wrote: > Does this mean that you're done and we can start checking in changes, > or is there another reload planned (for something like the repository > history)? I'm done. I was able to preserve the revision history from the Webware CVS import, but could

[Webware-devel] SVN Access / Recap

2005-02-28 Thread Eric Radman
s very few locking and permission issues. The current revision is at 2057, which is current with the Webware CVS snapshot for Thursday, Feb 24. -- Eric Radman | http://eradman.com --- SF email is sponsored by - The IT Product Guide Read hones

Re: [Webware-devel] Subversion

2005-02-28 Thread Eric Radman
repository. A couple of extra commands, but worthwhile. > > b.bum Does anyone else care what format is used for the back end? I'm currently trying to merge the other projects onto the converted Webware cvs tree. It's taking a long time; the Webware tree took more than 2-1/2 hours to co

[Webware-devel] Retrying import

2005-02-26 Thread Eric Radman
On 12:45 Sat 26 Feb , Ian Bicking wrote: > Eric Radman wrote: > > What happened to everything that was in the repository before, like > Component and Wiki...? I think the repository needs to be restored from > backup and Webware CVS merged in again; I don't want to lose

Re: [Webware-devel] Split up root repository

2005-02-26 Thread Eric Radman
On 02:06 Sat 26 Feb , Ian Bicking wrote: > Eric Radman wrote: > > > >We can keep one big "global" database, but then user's can't be > >authenticated against specific relms, and very few need access to Home. > >The password file for all thre

[Webware-devel] Split up root repository

2005-02-25 Thread Eric Radman
e out how. The history is all there from the CVS import. -- Eric Radman | http://eradman.com --- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which produ

[Webware-devel] Correct Address: svn.w4py.org

2005-02-25 Thread Eric Radman
I used the wrong hostname in my last e-mail. Use svn.w4py.org for connecting the the Subversion server. -- Eric Radman | http://eradman.com --- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds o

[Webware-devel] Subversion Repository is up

2005-02-25 Thread Eric Radman
I migrated the SourceForge CVS repository to SVN on w4py.org. There are two repositories right now: svn://webwareforpython.org/Home svn://webwareforpython.org/Webware Anonymous read access is enabled on Webware, but not Home. The import left a lot of useless revision data in 'branches' and 'tag

Re: [Webware-devel] Subversion

2005-02-25 Thread Eric Radman
ository here: svn://eradman.com/Webware If someone with administrative access would like to give me permission I'll set it up. I also listed the steps I used to convert the repository below in case a step in this process needs to be repeated. -- Eric Radman | http://eradman.com Ins

[Webware-devel] Re: [Webware-discuss] Pycon sprint for WSGIKit: configuration

2005-02-09 Thread Eric Radman
On 15:43 Thu 03 Feb , Ian Bicking wrote: > True, to the degree that the software was written with this in mind. > Because Webware isn't one-process-per-request it has to be more > abstract. For instance, how would you dispatch on a virtual host in > Webware? You could if you allowed for ca

[Webware-devel] Scaling issue is non-existent

2005-01-10 Thread Eric Radman
acket reassembly code, but I'm not going to burn any more time on it. -- Eric Radman | http://eradman.com --- The SF.Net email is sponsored by: Beat the post-holiday blues Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek

[Webware-devel] Scaling issue is non-existent

2005-01-03 Thread Eric Radman
2000 TCP packet reassembly code, but I'm not going to burn any more time on it. -- Eric Radman | http://eradman.com --- The SF.Net email is sponsored by: Beat the post-holiday blues Get a FREE limited edition SourceForge.net t-shirt from

[Webware-devel] Processing POST and GET fields in wsgikit

2004-12-08 Thread Eric Radman
cgi.FieldStorage() and creates a new class that explicitly parses the query string even if the HTTP request type was not GET. It's unclear to me how this should be implemented, but I assume it has to tie into the HTTPRequest._setupFields() function in wkrequest.py -- Eric Radman | http://eradman.

[Webware-devel] Processing POST and GET fields in wsgikit

2004-12-06 Thread Eric Radman
cgi.FieldStorage() and creates a new class that explicitly parses the query string even if the HTTP request type was not GET. It's unclear to me how this should be implemented, but I assume it has to tie into the HTTPRequest._setupFields() function in wkrequest.py -- Eric Radman | http://eradman.

[Webware-devel] WSGI WebKit Sessions

2004-11-17 Thread Eric Radman
ssion = self.session() id = session._values['userid'] if id is None: """ Error """ else """ Generate Page """ This is fine, but session[] always returns None, so I have to use _values[]. Is this a bug or inten