Paste Error

2006-10-21 Thread Alagu Madhu
Installed f:\pylons Processing dependencies for Pylons==0.9.3dev Searching for Paste==dev,=0.9.9dev-r5793 Reading http://www.pylonshq.com/download/ Reading http://www.python.org/pypi/Paste/ Reading http://pythonpaste.org Reading http://www.python.org/pypi/Paste/0.9.8.1 Best match: Paste dev

Re: Paste Error

2006-10-21 Thread Alagu Madhu
Robert Leftwich wrote: Alagu Madhu wrote: 'svn' is not recognized as an internal or external command, operable program or batch file. You reported a very similar error to the mailing list on the 30/6/06, do the same thing that was recommended to you back then, i.e. install subversion.

Re: Status Code Other than 200?

2006-10-21 Thread Michael G. Noll
Another variant for creating a non-200 response.# create a new Response with content-type header 'application/xml'response = Response(render(template.myt), code=204)response.headers['Content-Type'] = 'application/xml' return responseMichael --~--~-~--~~~---~--~~

Re: Status Code Other than 200?

2006-10-21 Thread Ben Bangert
On Oct 21, 2006, at 1:37 AM, wyatt-bC wrote: And since I just can't get enough of this topic, here's why neither ``code`` nor ``status_code`` work as keyword args to render_response: render_response hands its *args and **kwargs off to response to do some work. The result from response is