~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-06 12:11:50 UTC
  • mfrom: (14625.2.7 gina-dsc-binaries)
  • Revision ID: launchpad@pqm.canonical.com-20120106121150-e0bucmb5qeyytnn9
[r=wgrant][bug=911943] Fix SourcePackageReleaseDscBinariesUpdater:
        round chunk_size to int (and document this issue).

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 canonical.config import config
 
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
38
44
from lp.services.webapp.interfaces import (
39
45
    AccessLevel,
40
46
    BasicAuthLoggedInEvent,
44
50
    IPlacelessAuthUtility,
45
51
    IPlacelessLoginSource,
46
52
    )
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: