On 6/18/07, voltron <[EMAIL PROTECTED]> wrote: > > Could someone tell me how I should add the Paste.auth middleware to my > middleware stack? > The link to this middleware is: > http://pythonpaste.org/module-paste.auth.cookie.html > > thanks >
Did you try: app = AuthCookieHandler(app) The constructor doesn't take a config, so if you want customized parameters you have to pass them in on your own. Dan --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
