~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/testopenid/browser/server.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-01 11:37:40 UTC
  • mfrom: (14612.2.10 oh-god-so-many-imports)
  • Revision ID: launchpad@pqm.canonical.com-20120101113740-o241xl1m2njr25qn
[r=wgrant][no-qa] Post-apocalyptic tree-wide format-imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
from zope.session.interfaces import ISession
34
34
 
35
35
from lp import _
36
 
from lp.services.webapp import LaunchpadView
37
 
from lp.services.webapp.interfaces import (
38
 
    ICanonicalUrlData,
39
 
    IPlacelessLoginSource,
40
 
    )
41
 
from lp.services.webapp.login import (
42
 
    allowUnauthenticatedSession,
43
 
    logInPrincipal,
44
 
    logoutPerson,
45
 
    )
46
 
from lp.services.webapp.publisher import (
47
 
    Navigation,
48
 
    stepthrough,
49
 
    )
50
36
from lp.app.browser.launchpadform import (
51
37
    action,
52
38
    LaunchpadFormView,
64
50
    cachedproperty,
65
51
    get_property_cache,
66
52
    )
 
53
from lp.services.webapp import LaunchpadView
 
54
from lp.services.webapp.interfaces import (
 
55
    ICanonicalUrlData,
 
56
    IPlacelessLoginSource,
 
57
    )
 
58
from lp.services.webapp.login import (
 
59
    allowUnauthenticatedSession,
 
60
    logInPrincipal,
 
61
    logoutPerson,
 
62
    )
 
63
from lp.services.webapp.publisher import (
 
64
    Navigation,
 
65
    stepthrough,
 
66
    )
67
67
from lp.testopenid.interfaces.server import (
68
68
    get_server_url,
69
69
    ITestOpenIDApplication,