Re: pylons redirect as post request

2011-06-10 Thread Dan Sommers
On Fri, 10 Jun 2011 10:19:08 +0200, Cornelius Kölbel wrote: > from within a controller I need to do a redirect to another controller, > but as a post request. hm, what did I miss? [ ... ] > Looking and trying to understand the code in > /usr/share/pyshared/pylons/controllers/util.py it seems to

pylons redirect as post request

2011-06-10 Thread Cornelius Kölbel
Dear pylonians, from within a controller I need to do a redirect to another controller, but as a post request. hm, what did I miss? from pylons.controllers.util import redirect How to I tell the redirct to do a post request and how can I pass the data along? Looking and trying to understand