~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-06 01:31:44 UTC
  • mfrom: (14642.1.9 remove-shims-0)
  • Revision ID: launchpad@pqm.canonical.com-20120106013144-s9hq77q6vjp5qx1v
[rs=sinzui][bug=911969] remove the webapp.launchpadform shim,
 and webapp launchpadform globs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2009 Canonical Ltd.  This software is licensed under the
 
1
# Copyright 2009-2012 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
17
16
from lp.answers.interfaces.faq import IFAQ
18
17
from lp.answers.interfaces.faqcollection import IFAQCollection
 
18
from lp.app.browser.launchpadform import (
 
19
    action,
 
20
    LaunchpadEditFormView,
 
21
    )
19
22
from lp.services.webapp import (
20
 
    action,
21
23
    canonical_url,
22
24
    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
29
30
 
30
31
 
31
32
class FAQNavigationMenu(NavigationMenu):