Pylons AuthKit integration when full_stack=False

2007-12-03 Thread [EMAIL PROTECTED]
Hello everyone, Should the AuthKit middleware be active even when full_stack=False? I've been rummaging thru http://wiki.pylonshq.com/display/pysbook/Authentication+and+Authorization#authentication-middleware and I wanted to ask if the example is correct; I think not, but please feel free to

REST routes after numeric IDs

2007-12-03 Thread Mike Orr
I'm trying to combine Routes's RESTful actions with numbered resources. So I have the following URLs: /section/1234 # View incident 1234, with the usual URL suffixes for REST actions. /section/1234/5678 # View entry 5678 from incident 1234, with REST actions.

Dependencies with using =

2007-12-03 Thread Carlo Sogono
Many pylons dependencies use = checks but this causes a simple problem. If at any time, later versions of these dependencies are incompatible with that pylons projects then the whole installation goes kaput. I have a project on 0.9.5 and the same project won't run on a new installation using

h.link_to_remote help

2007-12-03 Thread Anil
${ h.link_to_remote(Download, dict(url=h.url(controller=export, action=pdf)) ) } I have a link like that. The action pdf generates a PDF file. Then, I want to show this PDF file to the browser (for download). How can I do this? I am thinking I need to send back some headers, but not sure if

Re: Dependencies with using =

2007-12-03 Thread Mike Orr
On Dec 3, 2007 9:13 PM, Carlo Sogono [EMAIL PROTECTED] wrote: Many pylons dependencies use = checks but this causes a simple problem. If at any time, later versions of these dependencies are incompatible with that pylons projects then the whole installation goes kaput. I have a project on