One way to do it would be:

saved_menu_vars = urllib.quote(json.dumps(request.get_vars))

Then in the controller you could:

url_vars = json.loads(request.vars.saved_menu_vars)

Or you could simply:

URL('default', 'manage_menu_favorites', vars=dict(specificURL = 
request.url, **request.get_vars))

Then in the controller you assume that any vars that is not specificURL is 
one of the new favorite get vars. Which is fine if you don't use 
specificURL anywhere else. 

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to