[galaxy-dev] Redirecting to a URL and breaking the frameset

2013-01-21 Thread Paul Boddie
Hello, Is there a convenient recipe for redirecting to a URL and breaking the frameset? I have been trying to use trans.response.send_redirect with a variety of URLs, either something as simple as url_for(/) or as complicated as a url_for invocation with lots of arguments, but the resulting

Re: [galaxy-dev] Redirecting to a URL and breaking the frameset

2013-01-21 Thread Jeremy Goecks
Adding the attribute target=_top to your URL will load the URL in the main browser window rather than a frame. E.g. a href=controller/action target=_topLoad result in top window/a Best, J. On Jan 21, 2013, at 7:24 AM, Paul Boddie wrote: Hello, Is there a convenient recipe for

Re: [galaxy-dev] Redirecting to a URL and breaking the frameset

2013-01-21 Thread Paul Boddie
On 21/01/13 15:26, Paul Boddie wrote: On 21/01/13 15:16, Jeremy Goecks wrote: Adding the attribute target=_top to your URL will load the URL in the main browser window rather than a frame. E.g. a href=controller/action target=_topLoad result in top window/a But in the Python code itself?