~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/webapp/launchpadform.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
 
# Temporary module to handle transitions during landing
2
 
 
3
 
__all__ = [
4
 
    'action',
5
 
    'custom_widget',
6
 
    'LaunchpadEditFormView',
7
 
    'LaunchpadFormView',
8
 
    'ReturnToReferrerMixin',
9
 
    'safe_action',
10
 
    ]
11
 
 
12
 
from lp.app.browser.launchpadform import (
13
 
    action,
14
 
    custom_widget,
15
 
    LaunchpadEditFormView,
16
 
    LaunchpadFormView,
17
 
    ReturnToReferrerMixin,
18
 
    safe_action,
19
 
    )