~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/systemhomes.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:
24
24
from zope.component import getUtility
25
25
from zope.interface import implements
26
26
 
 
27
from canonical.config import config
 
28
from lp.services.webapp.interfaces import (
 
29
    IAPIDocRoot,
 
30
    ICanonicalUrlData,
 
31
    ILaunchBag,
 
32
    )
27
33
from lp.bugs.errors import InvalidBugTargetType
28
34
from lp.bugs.interfaces.bug import (
29
35
    CreateBugParams,
65
71
    IProduct,
66
72
    IProductSet,
67
73
    )
68
 
from lp.services.config import config
69
 
from lp.services.feeds.interfaces.application import IFeedsApplication
 
74
from lp.services.feeds.interfaces import IFeedsApplication
70
75
from lp.services.statistics.interfaces.statistic import ILaunchpadStatisticSet
71
 
from lp.services.webapp.interfaces import (
72
 
    IAPIDocRoot,
73
 
    ICanonicalUrlData,
74
 
    ILaunchBag,
75
 
    )
76
76
from lp.services.webservice.interfaces import IWebServiceApplication
77
77
from lp.services.worlddata.interfaces.language import ILanguageSet
78
78
from lp.testopenid.interfaces.server import ITestOpenIDApplication
392
392
    def cachedWADLPath(cls, instance_name, version):
393
393
        """Helper method to calculate the path to a cached WADL file."""
394
394
        return os.path.join(
395
 
            config.root, 'lib', 'canonical', 'launchpad',
 
395
            os.path.dirname(os.path.normpath(__file__)),
396
396
            'apidoc', version, '%s.wadl' % (instance_name,))
397
397
 
398
398
    def toWADL(self):