~cr3/launchpad-results/trunk

« back to all changes in this revision

Viewing changes to lib/lp/results/interfaces/openid.py

  • Committer: Marc Tardif
  • Date: 2010-12-07 01:16:17 UTC
  • Revision ID: marc.tardif@canonical.com-20101207011617-cqcv0240ca3cs5ba
Added TestStat for statistics about test runs and TestRank for ranking of projects.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
    An object that knows about the policy for doing OpenID authentication.
20
20
    """
21
21
 
22
 
    provider_url = Attribute("The provider URL when logging in.")
 
22
    provider_url = Attribute("The provider URL when logging in")
23
23
 
24
24
    def begin(self, return_to_suffix):
25
25
        """
43
43
    A factory for OpenID policies.
44
44
    """
45
45
 
46
 
    logout_url = Attribute("The URL to redirect to when logging out.")
 
46
    logout_url = Attribute("The URL to redirect to when logging out")
47
47
 
48
48
    def getOpenID(request, consumer_factory=None):
49
49
        """Return an object that implements L{IOpenID}."""
50