~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/browser/productrelease.py

Merged fix-retest-colorize into redo-read-only-transactions-in-buildmaster, resolving several import conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
    SimpleVocabulary,
34
34
    )
35
35
 
36
 
from canonical.launchpad import _
37
 
from canonical.launchpad.webapp import (
38
 
    canonical_url,
39
 
    ContextMenu,
40
 
    enabled_with_permission,
41
 
    LaunchpadView,
42
 
    Link,
43
 
    Navigation,
44
 
    stepthrough,
45
 
    )
 
36
from lp import _
46
37
from lp.app.browser.launchpadform import (
47
38
    action,
48
39
    custom_widget,
60
51
    IProductRelease,
61
52
    IProductReleaseFileAddForm,
62
53
    )
 
54
from lp.services.webapp import (
 
55
    canonical_url,
 
56
    ContextMenu,
 
57
    enabled_with_permission,
 
58
    LaunchpadView,
 
59
    Link,
 
60
    Navigation,
 
61
    stepthrough,
 
62
    )
63
63
 
64
64
 
65
65
class ProductReleaseNavigation(Navigation):