~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/app/browser/root.py

  • Committer: William Grant
  • Date: 2011-12-30 08:13:14 UTC
  • mto: This revision was merged to the branch mainline in revision 14611.
  • Revision ID: william.grant@canonical.com-20111230081314-f73f4ozgkzdi5xqb
More stuff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
from zope.schema.interfaces import TooLong
22
22
from zope.schema.vocabulary import getVocabularyRegistry
23
23
 
24
 
from lp.services.config import config
25
24
from lp import _
26
 
from lp.services.statistics.interfaces.statistic import (
27
 
    ILaunchpadStatisticSet,
28
 
    )
29
 
from lp.services.webapp import LaunchpadView
30
 
from lp.services.webapp.authorization import check_permission
31
 
from lp.services.webapp.batching import BatchNavigator
32
 
from lp.services.webapp.publisher import canonical_url
33
 
from lp.services.webapp.vhosts import allvhosts
34
 
from canonical.lazr.timeout import urlfetch
35
25
from lp.answers.interfaces.questioncollection import IQuestionSet
36
26
from lp.app.browser.launchpadform import (
37
27
    action,
48
38
from lp.registry.interfaces.person import IPersonSet
49
39
from lp.registry.interfaces.pillar import IPillarNameSet
50
40
from lp.registry.interfaces.product import IProductSet
 
41
from lp.services.config import config
51
42
from lp.services.googlesearch.interfaces import (
52
43
    GoogleResponseError,
53
44
    ISearchService,
54
45
    )
55
46
from lp.services.propertycache import cachedproperty
 
47
from lp.services.statistics.interfaces.statistic import ILaunchpadStatisticSet
 
48
from lp.services.timeout import urlfetch
 
49
from lp.services.webapp import LaunchpadView
 
50
from lp.services.webapp.authorization import check_permission
 
51
from lp.services.webapp.batching import BatchNavigator
 
52
from lp.services.webapp.publisher import canonical_url
 
53
from lp.services.webapp.vhosts import allvhosts
56
54
 
57
55
 
58
56
shipit_faq_url = 'http://www.ubuntu.com/getubuntu/shipit-faq'