~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/answers/browser/faq.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-05 16:22:45 UTC
  • mfrom: (14584.1.3 fix-retest-colorize)
  • Revision ID: launchpad@pqm.canonical.com-20120105162245-cvhcg00ousz00rtu
[r=allenap][no-qa] Remove terminal color codes from input in
 bin/retest.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2009-2012 Canonical Ltd.  This software is licensed under the
 
1
# Copyright 2009 Canonical Ltd.  This software is licensed under the
2
2
# GNU Affero General Public License version 3 (see the file LICENSE).
3
3
 
4
4
"""`IFAQ` browser views."""
13
13
    ]
14
14
 
15
15
from lp import _
 
16
from lp.answers.browser.faqcollection import FAQCollectionMenu
16
17
from lp.answers.interfaces.faq import IFAQ
17
18
from lp.answers.interfaces.faqcollection import IFAQCollection
18
 
from lp.app.browser.launchpadform import (
 
19
from lp.services.webapp import (
19
20
    action,
20
 
    LaunchpadEditFormView,
21
 
    )
22
 
from lp.services.webapp import (
23
21
    canonical_url,
24
22
    enabled_with_permission,
 
23
    LaunchpadEditFormView,
 
24
    LaunchpadView,
25
25
    Link,
26
26
    NavigationMenu,
27
27
    )
28
28
from lp.services.webapp.breadcrumb import Breadcrumb
29
 
from lp.services.webapp.publisher import LaunchpadView
30
29
 
31
30
 
32
31
class FAQNavigationMenu(NavigationMenu):