Re: Insecure Default Testing Setup?

2008-07-13 Thread Mike Orr
On Sat, Jul 12, 2008 at 10:55 PM, Ben Bangert [EMAIL PROTECTED] wrote: On Jul 12, 2008, at 9:34 PM, Nick wrote: I'll start by saying that I could very well be wrong about this, but this looks like a security problem to me. In the standard development.ini file for every paster project

Re: The Pylons Book

2008-07-13 Thread SnowWrite
Hi, I'm planning on reading this book (new to Pylons) and I'm looking forward to going through the chapters. My partner and I have spent the last two days getting to know Pylons.. we like what we've seen so far! I'll provide feedback for this book from the newbie camp. Best Regards, Donna M.

Re: Debugging failed tests with pylons globals

2008-07-13 Thread Alberto Valverde
Justin Tulloss wrote: () In addition, it's very difficult to inspect the object that an SOP refers to since it obfuscates the object's __dict__. This trick can help: req = pylons.request._current_obj() # get current request object wrapped by SOP print dir(req) Again, it's just a matter

Re: WebHelpers 0.6 released

2008-07-13 Thread Wichert Akkerman
Previously Ian Bicking wrote: Christoph Haas wrote: On Freitag, 11. Juli 2008, Mike Orr wrote: On Fri, Jul 11, 2008 at 9:43 AM, rcs_comp [EMAIL PROTECTED] wrote: in html.tags the form function has 'POST' for the default method, which is invalid xhtml. I changed it to: def

Re: Insecure Default Testing Setup?

2008-07-13 Thread Nick
On further contemplation, I realize that the window of opportunity is relatively small and straightforward to fix per each distribution once the problem is noticed, so I'm not too worried about it... But thanks for the fast and informative replies! On Jul 13, 2:19 am, Mike Orr [EMAIL PROTECTED]

Plyons API docs

2008-07-13 Thread Philip
I have been looking for an online resource that provides detailed information about the the WSGIController class in pylons.controllers. Has anyone created / generated such a refrence? Or will I need to dig through that classes code to gain any complete understanding of it?

Workaround for Subversion 1.5 `python setup.py develop`

2008-07-13 Thread Wyatt Baldwin
I ran into this today while setting up a Pylons develop environment on Mac OS 10.4.11 using virtualenv. I think the issue is with setuptools and Subversion 1.5, not with Mac OS, Pylons, or virtualenv (though I'm not 100% sure about that). Anyway, you can figure this out using the Google, but

Re: Debugging failed tests with pylons globals

2008-07-13 Thread Mike Orr
On Sun, Jul 13, 2008 at 6:16 AM, Alberto Valverde [EMAIL PROTECTED] wrote: Justin Tulloss wrote: () In addition, it's very difficult to inspect the object that an SOP refers to since it obfuscates the object's __dict__. This trick can help: req = pylons.request._current_obj() # get

Re: Plyons API docs

2008-07-13 Thread Mike Orr
On Sun, Jul 13, 2008 at 10:52 AM, Philip [EMAIL PROTECTED] wrote: I have been looking for an online resource that provides detailed information about the the WSGIController class in pylons.controllers. Has anyone created / generated such a refrence? Or will I need to dig through that classes

Re: Plyons API docs

2008-07-13 Thread Philip
On Jul 13, 7:15 pm, Mike Orr [EMAIL PROTECTED] wrote: On Sun, Jul 13, 2008 at 10:52 AM, Philip [EMAIL PROTECTED] wrote: I have been looking for an online resource that provides detailed information about the the WSGIController class in pylons.controllers. Has anyone created / generated

AuthKit with Pylons 0.9.7rc1

2008-07-13 Thread Wyatt Baldwin
My AuthKit setup, which I essentially copied from the wiki/book [1]/ [2], didn't work when I upgraded from Pylons 0.9.6.2 to 0.9.7rc1 (trunk). Here's what I did to get it working: I moved the following line above the ErrorHandler middleware in middleware.py: app =