On Fri, 2007-09-07 at 07:52 -0700, Frederik wrote: > Hello! > > I have a project where I can't rely on cookies to be allowed on client > side. So I'd like to work with URL parameter based sessions. I could > not find any documentation how this could easily be done with Pylons, > so I'd like to ask you for some hints.
If you pass session_id to url_for once, and then use url_for for all urls, it should keep session_id around. Alternately, you could write your own wrapper around render/render_response/redirect_to that adds in a session id to all links if it's not there. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
