Purge/empty request.get?

2008-11-13 Thread Jules Stevenson
Hi, Is there a simple way to remove the request.get variables? I have a page that uses .GET to store a load of form elements data as the page can be resent to the controller at any time [onchange event on a select] but is not actually stored at this time, and these get vars are used to

Re: Why does a route with unmatched conditions give 500 and not 404?

2008-11-13 Thread mario ruggier
On Wed, Nov 12, 2008 at 9:44 PM, Mike Orr [EMAIL PROTECTED] wrote: On Wed, Nov 12, 2008 at 2:00 AM, mario ruggier [EMAIL PROTECTED] wrote: I would like to support specific http verbs on a given URI. For example, to support GET and PUT for the URI /controller/action/id I have defined these 2

Re: Why does a route with unmatched conditions give 500 and not 404?

2008-11-13 Thread Mike Orr
On Thu, Nov 13, 2008 at 2:58 AM, mario ruggier [EMAIL PROTECTED] wrote: On Wed, Nov 12, 2008 at 9:44 PM, Mike Orr [EMAIL PROTECTED] wrote: On Wed, Nov 12, 2008 at 2:00 AM, mario ruggier [EMAIL PROTECTED] wrote: I would like to support specific http verbs on a given URI. For example, to

pylons templates

2008-11-13 Thread [EMAIL PROTECTED]
Hi all, I have deployed my application on a debian lenny server, apache 2.2.3, mod_wsgi 2.3. I changed some templates (page layout, pretty colors for users ...), but the changes are not visible - the page layout is still the same, no change in color or anything else (after apache rester and also

Re: Why does a route with unmatched conditions give 500 and not 404?

2008-11-13 Thread mario ruggier
On Thu, 13 Nov 2008 07:22:16 -0800, Mike Orr [EMAIL PROTECTED] wrote: On Thu, Nov 13, 2008 at 2:58 AM, mario ruggier [EMAIL PROTECTED] wrote: NotImplementedError: Action u'action' is not implemented. Is that what the action name should be, or does it always say 'action'? It will show the

Re: Pylons/ Tesla bind problem

2008-11-13 Thread matiu
Try putting the data manip stuff inside of: yourapp/model/__init__.py in the: def init_model(engine): Put data initialization in here... On Nov 13, 3:16 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Thanks for the response!  I'll root around and if I find the culprit, I'll post my