Re: [Web-SIG] Chunked Tranfer encoding on request content.

2007-03-04 Thread Sidnei da Silva
t be happening is that CherryPy is outputting the whole response body as a single chunk, and relying on the 'Content-Length' header, which would be silly, I hope that's not what's happening though I haven't looked. -- Sidnei da Silva Enfold Systems

Re: [Web-SIG] Chunked Tranfer encoding on request content.

2007-03-04 Thread Sidnei da Silva
the whole body to do chunked. -- Sidnei da Silva Enfold Systemshttp://enfoldsystems.com Fax +1 832 201 8856 Office +1 713 942 2377 Ext 214 ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-si

Re: [Web-SIG] [Proposal] "website" and first-level conf (was: more comments on Paste Deploy)

2007-03-05 Thread Sidnei da Silva
be replaced by logging to the 'nt event log', there are lots of tools to work with that. That still leaves '/etc/' and '/var/run' in the air. I guess they could just be right into the application directory? -- Sidnei da Silva Enfold Systemshttp://enfold

Re: [Web-SIG] [Proposal] "website" and first-level conf (was: more comments on Paste Deploy)

2007-03-05 Thread Sidnei da Silva
pretty sure that the classic unix-mimicing layout has no > advantages for win32. :) Well, it is something that needs to be considered though. We can't just close one eye and pretend that win32 does not exist. -- Sidnei da Silva Enfold Systemshttp://enfoldsystems.com Fax +1 83

[Web-SIG] The importance of deploying Python-based web apps on Windows (was: Re: [Proposal] "website" and first-level conf)

2007-03-05 Thread Sidnei da Silva
On 3/5/07, Jacob Smullyan <[EMAIL PROTECTED]> wrote: > On Mon, Mar 05, 2007 at 02:25:06PM -0300, Sidnei da Silva wrote: > > Well, it is something that needs to be considered though. We can't > > just close one eye and pretend that win32 does not exist. > > Yes

Re: [Web-SIG] [Proposal] "website" and first-level conf (was: more comments on Paste Deploy)

2007-03-05 Thread Sidnei da Silva
x27;cron'-like things, should be able to read settings from a file and install scheduled tasks that run the same scripts on Windows - 'service' code, should be able to have a generic service wrapper that can run anything as a service. - Application shouldn't rely on *nix si

Re: [Web-SIG] daemon tools

2007-03-07 Thread Sidnei da Silva
ther thread, Zope uses 'signals' on *nix, and 'named events' on Windows, by means of the 'Signals' package in Zope. We could possibly re-use that. -- Sidnei da Silva Enfold Systemshttp://enfoldsystems.com Fax +1 832 201 8856 Office +1 713 942 2377

Re: [Web-SIG] daemon tools

2007-03-07 Thread Sidnei da Silva
27;Signals' package in Zope. > |We could possibly re-use that. > > Great, just checked that out. I think that is the way to go. I hope that others can agree too. -- Sidnei da Silva Enfold Systemshttp://enfoldsystems.com Fax +1 832 201 8856 Office +1 713 942 2377

Re: [Web-SIG] more comments on Paste Deploy

2007-03-07 Thread Sidnei da Silva
not saying that it can't evolve into something that makes Zope 3 run as a WSGI anywhere. It just wasn't the original intent. [1] http://awkly.org/2006/01/25/zopepaste-wsgi-applications-in-zope-3-using-pastedeploy/ -- Sidnei da Silva Enfold Systemshttp://enfoldsystems.c

Re: [Web-SIG] windows, pywebd, webctl

2007-03-07 Thread Sidnei da Silva
or '*') and that basically delegates to Paste. Oh, hey, that sounds like ISAPI WSGI [1][2]. [1] http://code.google.com/p/isapi-wsgi/wiki/ISAPISimpleHandlerDocs [2] http://pylonshq.com/project/pylonshq/wiki/ServePylonsWithIIS -- Sidnei da Silva Enfold Systems

Re: [Web-SIG] daemon tools

2007-03-08 Thread Sidnei da Silva
On 3/8/07, Jim Fulton <[EMAIL PROTECTED]> wrote: > > On Mar 7, 2007, at 8:42 AM, Sidnei da Silva wrote: > > > On Windows, the NT Service Controller does all the dirty job. And it's > > pretty easy to write a service in Python that can run any application. > >

Re: [Web-SIG] [Proposal] "website" and first-level conf

2007-03-09 Thread Sidnei da Silva
om the software install. I'd expect > logs to be managed separately. That's totally fine. It could go to C:\WINDOWS\system32\LogFiles too, or it could just log to the NT Event Log, and then you can configure all sorts of things related to for how long those log files are kept. There

Re: [Web-SIG] httplib.HTTPConnection and Broken Pipe

2007-04-25 Thread Sidnei da Silva
I can retrieve the response, and > can retry the request with an appropriate authentication header. > > Is anyone aware of a way to work around this problem? > > ___ > Web-SIG mailing list > Web-SIG@python.org > Web SIG: http://www.python.org/sigs/web-sig > Unsubscribe: > http://

Re: [Web-SIG] python bug issue2464

2008-08-13 Thread Sidnei da Silva
noted in >> the bug report. >> > > Some things: > > http://foo.com > > This is not a valid URL. The correct URL for the intended location here > is: > > http://foo.com/ > > This is the root of the problem, I suspect. Firefox notices this problem > and fixe