~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/browser/sourcepackagerecipebuild.py

  • Committer: Paul Hummer
  • Date: 2010-07-14 10:09:35 UTC
  • mto: This revision was merged to the branch mainline in revision 11152.
  • Revision ID: paul@canonical.com-20100714100935-04zbk3our25pnlmf
Added rescore flow

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
    'SourcePackageRecipeBuildNavigation',
11
11
    'SourcePackageRecipeBuildView',
12
12
    'SourcePackageRecipeBuildCancelView',
 
13
    'SourcePackageRecipeBuildRescoreView',
13
14
    ]
14
15
 
15
16
from zope.interface import Interface
 
17
from zope.schema import Text
16
18
 
17
19
from canonical.launchpad.browser.librarian import FileNavigationMixin
18
20
from canonical.launchpad.webapp import (
37
39
 
38
40
    facet = 'branches'
39
41
 
40
 
    links = ('cancel',)
 
42
    links = ('cancel', 'rescore')
41
43
 
42
44
    @enabled_with_permission('launchpad.Edit')
43
45
    def cancel(self):
44
46
        return Link('+cancel', 'Cancel build', icon='remove')
45
47
 
 
48
    @enabled_with_permission('launchpad.Edit')
 
49
    def rescore(self):
 
50
        return Link('+rescore', 'Rescore build', icon='edit')
 
51
 
46
52
 
47
53
class SourcePackageRecipeBuildView(LaunchpadView):
48
54
    """Default view of a SourcePackageRecipeBuild."""
119
125
    def request_action(self, action, data):
120
126
        """Cancel the build."""
121
127
        self.context.cancelBuild()
 
128
 
 
129
 
 
130
class SourcePackageRecipeBuildRescoreView(LaunchpadFormView):
 
131
    """View for rescoring a build."""
 
132
 
 
133
    class schema(Interface):
 
134
        """Schema for deleting a build."""
 
135
        score = Text(
 
136
            title=u'Score', required=True,
 
137
            description=u'The score of the recipe.')
 
138
 
 
139
    page_title = label = "Rescore build"
 
140
 
 
141
    @property
 
142
    def cancel_url(self):
 
143
        return canonical_url(self.context)
 
144
    next_url = cancel_url
 
145
 
 
146
    @action('Rescore build', name='rescore')
 
147
    def request_action(self, action, data):
 
148
        """Rescore the build."""
 
149
        self.context.buildqueue_record.lastscore = int(data['score'])
 
150
 
 
151
    @property
 
152
    def initial_values(self):
 
153
        return {'score': str(self.context.buildqueue_record.lastscore)}
 
154