~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/webapp/authentication.py

  • Committer: Curtis Hovey
  • Date: 2011-12-24 17:49:30 UTC
  • mto: This revision was merged to the branch mainline in revision 14602.
  • Revision ID: curtis.hovey@canonical.com-20111224174930-xk1d5cvhyxq46ctf
Moved webapp to lp.services.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
from zope.security.proxy import removeSecurityProxy
35
35
from zope.session.interfaces import ISession
36
36
 
37
 
from lp.registry.interfaces.person import (
38
 
    IPerson,
39
 
    IPersonSet,
40
 
    )
41
 
from lp.services.config import config
42
 
from lp.services.identity.interfaces.account import IAccountSet
43
 
from lp.services.oauth.interfaces import OAUTH_CHALLENGE
 
37
from canonical.config import config
44
38
from lp.services.webapp.interfaces import (
45
39
    AccessLevel,
46
40
    BasicAuthLoggedInEvent,
50
44
    IPlacelessAuthUtility,
51
45
    IPlacelessLoginSource,
52
46
    )
 
47
from lp.registry.interfaces.person import (
 
48
    IPerson,
 
49
    IPersonSet,
 
50
    )
 
51
from lp.services.identity.interfaces.account import IAccountSet
 
52
from lp.services.oauth.interfaces import OAUTH_CHALLENGE
53
53
 
54
54
 
55
55
class PlacelessAuthUtility: