~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/answers/browser/faqcollection.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:
13
13
from urllib import urlencode
14
14
 
15
15
from lp import _
 
16
from lp.services.webapp import (
 
17
    canonical_url,
 
18
    Link,
 
19
    NavigationMenu,
 
20
    )
 
21
from lp.services.webapp.batching import BatchNavigator
 
22
from lp.services.webapp.menu import enabled_with_permission
16
23
from lp.answers.enums import (
17
24
    QUESTION_STATUS_DEFAULT_SEARCH,
18
25
    QuestionSort,
29
36
    )
30
37
from lp.registry.interfaces.projectgroup import IProjectGroup
31
38
from lp.services.propertycache import cachedproperty
32
 
from lp.services.webapp import (
33
 
    canonical_url,
34
 
    Link,
35
 
    NavigationMenu,
36
 
    )
37
 
from lp.services.webapp.batching import BatchNavigator
38
 
from lp.services.webapp.menu import enabled_with_permission
39
39
 
40
40
 
41
41
class FAQCollectionMenu(NavigationMenu):