~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/webapp/__init__.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
"""The webapp package contains infrastructure that is common across Launchpad
9
9
__metaclass__ = type
10
10
 
11
11
__all__ = [
12
 
    'action',
13
12
    'ApplicationMenu',
14
13
    'canonical_name',
15
14
    'canonical_url',
16
15
    'ContextMenu',
17
 
    'custom_widget',
18
16
    'enabled_with_permission',
19
17
    'expand_numbers',
20
18
    'FacetMenu',
21
19
    'GetitemNavigation',
22
 
    'LaunchpadEditFormView',
23
 
    'LaunchpadFormView',
24
20
    'LaunchpadView',
25
21
    'LaunchpadXMLRPCView',
26
22
    'Link',
28
24
    'NavigationMenu',
29
25
    'nearest',
30
26
    'redirection',
31
 
    'safe_action',
32
27
    'sorted_dotted_numbers',
33
28
    'sorted_version_numbers',
34
29
    'StandardLaunchpadFacets',
35
30
    'stepthrough',
36
31
    'stepto',
37
32
    'structured',
38
 
    'UnsafeFormGetSubmissionError',
39
33
    'urlappend',
40
34
    'urlparse',
41
35
    'urlsplit',
42
36
    'Utf8PreferredCharsets',
43
37
    ]
44
38
 
45
 
from lp.services.webapp.launchpadform import (
46
 
    action,
47
 
    custom_widget,
48
 
    LaunchpadEditFormView,
49
 
    LaunchpadFormView,
50
 
    safe_action,
51
 
    )
52
39
from lp.services.webapp.menu import (
53
40
    ApplicationMenu,
54
41
    ContextMenu,