Jeff Watkins wrote: > It strips user_name and password to log you in. The assumption being > that you'll be submitting to a page that isn't expecting these values, > because the login page was displayed to intercept navigation. I still > haven't figured that out yet...
Generally any argument not expected by the receiving method is stripped (see turbogears.util.adapt_call), exception being methods having declared *args or **kw parameters. If finer control over stripping is needed, I suppose we could have a "function" (probably a callable object really) that would allow adding and removing arguments before the call to the controller method. Cheers, Simon --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears -~----------~----~----~----~------~----~------~--~---

