~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/browser/bug.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-06 12:11:50 UTC
  • mfrom: (14625.2.7 gina-dsc-binaries)
  • Revision ID: launchpad@pqm.canonical.com-20120106121150-e0bucmb5qeyytnn9
[r=wgrant][bug=911943] Fix SourcePackageReleaseDscBinariesUpdater:
        round chunk_size to int (and document this issue).

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
from zope.security.interfaces import Unauthorized
61
61
 
62
62
from lp import _
63
 
from lp.services.searchbuilder import (
64
 
    any,
65
 
    greater_than,
66
 
    )
67
 
from lp.services.webapp import (
68
 
    canonical_url,
69
 
    ContextMenu,
70
 
    LaunchpadView,
71
 
    Link,
72
 
    Navigation,
73
 
    StandardLaunchpadFacets,
74
 
    stepthrough,
75
 
    structured,
76
 
    )
77
 
from lp.services.webapp.authorization import (
78
 
    check_permission,
79
 
    precache_permission_for_objects,
80
 
    )
81
 
from lp.services.webapp.interfaces import (
82
 
    ICanonicalUrlData,
83
 
    ILaunchBag,
84
 
    )
85
63
from lp.app.browser.launchpadform import (
86
64
    action,
87
65
    custom_widget,
121
99
from lp.services.librarian.browser import ProxiedLibraryFileAlias
122
100
from lp.services.mail.mailwrapper import MailWrapper
123
101
from lp.services.propertycache import cachedproperty
 
102
from lp.services.searchbuilder import (
 
103
    any,
 
104
    greater_than,
 
105
    )
 
106
from lp.services.webapp import (
 
107
    canonical_url,
 
108
    ContextMenu,
 
109
    LaunchpadView,
 
110
    Link,
 
111
    Navigation,
 
112
    StandardLaunchpadFacets,
 
113
    stepthrough,
 
114
    structured,
 
115
    )
 
116
from lp.services.webapp.authorization import (
 
117
    check_permission,
 
118
    precache_permission_for_objects,
 
119
    )
 
120
from lp.services.webapp.interfaces import (
 
121
    ICanonicalUrlData,
 
122
    ILaunchBag,
 
123
    )
124
124
 
125
125
 
126
126
class BugNavigation(Navigation):