Re: proxy controller

2008-12-10 Thread Matt Wilson
On Dec 5, 8:30 am, Teemu Ikonen [EMAIL PROTECTED] wrote: Hi all, I have a newbie problem which I could not solve by browsing the docs, faqs or mailing list archives: I need a simple proxy controller for a paste-deployed pylons app. Simple means taking URLs of the form

Can we move the tests folder inside the pylons folder?

2008-11-18 Thread Matt Wilson
After easy_installing Pylons, my site-packages folder has an easy- install.pth file that points to my Pylons-0.9.7egg folder. Inside that egg folder, I've got these directories: $ ls ~/virtualenvs/scratch/lib/python2.5/site-packages/Pylons-0.9.7rc3- py2.5.egg/ EGG-INFO pylons tests See

Re: Can we move the tests folder inside the pylons folder?

2008-11-18 Thread Matt Wilson
On Nov 18, 12:51 pm, Ian Bicking [EMAIL PROTECTED] wrote: Matt Wilson wrote: After easy_installing Pylons, my site-packages folder has an easy- install.pth file that points to my Pylons-0.9.7egg folder. Inside that egg folder, I've got these directories: $ ls ~/virtualenvs/scratch

Trying to use weberror.errormiddleware.ErrorMiddleware

2008-11-17 Thread Matt Wilson
I've got a wsgi script I'm running with mod_wsgi and the script looks like this: def myapp(environ, start_response): start_response('500 Internal Error', [('Content-Type', 'text/ plain')]) 1/0 # sometimes I comment this out return ['Returning 500'] from weberror.errormiddleware