~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: William Grant
  • Date: 2011-12-30 02:21:12 UTC
  • mto: (14606.3.6 apocaremains)
  • mto: This revision was merged to the branch mainline in revision 14608.
  • Revision ID: william.grant@canonical.com-20111230022112-1b1pdbwt1suongbu
Drop fatsam.dia. It's more than 6 years out of date.

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
    )
36
50
from lp.app.browser.launchpadform import (
37
51
    action,
38
52
    LaunchpadFormView,
50
64
    cachedproperty,
51
65
    get_property_cache,
52
66
    )
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,