From c16929f07ff38728a6a96f4e6d25bf5966ff882e Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Tue, 23 Jun 2009 17:33:50 +0000 Subject: Update tutorials with new callback API. --- docs/tutorials/bfgwiki/authorization.rst | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'docs/tutorials/bfgwiki/authorization.rst') diff --git a/docs/tutorials/bfgwiki/authorization.rst b/docs/tutorials/bfgwiki/authorization.rst index bd4e80206..e493852ec 100644 --- a/docs/tutorials/bfgwiki/authorization.rst +++ b/docs/tutorials/bfgwiki/authorization.rst @@ -29,12 +29,13 @@ the policy, and pass it as the ``authentication_policy`` argument to the ``make_app`` function. The first positional argument of an ``AuthTktAuthenticationPolicy`` is a secret used to encrypt cookie data. Its second argument ("callback") should be a callable that -accepts a userid. If the userid exists in the system, the callback -should return a sequence of group identifiers (or an empty sequence if -the user isn't a member of any groups). If the userid *does not* -exist in the system, the callback should return ``None``. We'll use -"dummy" data to represent user and groups sources. When we're done, -your application's ``run.py`` will look like this. +accepts a userid ana a request. If the userid exists in the system, +the callback should return a sequence of group identifiers (or an +empty sequence if the user isn't a member of any groups). If the +userid *does not* exist in the system, the callback should return +``None``. We'll use "dummy" data to represent user and groups +sources. When we're done, your application's ``run.py`` will look +like this. .. literalinclude:: src/authorization/tutorial/run.py :linenos: -- cgit v1.2.3