~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/interfaces/sourcepackagerecipe.py

[r=abentley][bug=735899] Use the new inline multicheckbox selection
        widget to edit the source package recipe distroseries attribute.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
from lazr.restful.fields import (
37
37
    CollectionField,
38
38
    Reference,
 
39
    ReferenceChoice,
39
40
    )
40
41
from lazr.restful.interface import copy_field
41
42
from zope.interface import (
47
48
    Choice,
48
49
    Datetime,
49
50
    Int,
 
51
    List,
50
52
    Text,
51
53
    TextLine,
52
54
    )
181
183
        """
182
184
 
183
185
 
184
 
class ISourcePackageRecipeEdit(Interface):
185
 
    """ISourcePackageRecipe methods that require launchpad.Edit permission."""
186
 
 
187
 
    @mutator_for(ISourcePackageRecipeView['recipe_text'])
188
 
    @operation_for_version("devel")
189
 
    @operation_parameters(
190
 
        recipe_text=copy_field(
191
 
            ISourcePackageRecipeView['recipe_text']))
192
 
    @export_write_operation()
193
 
    def setRecipeText(recipe_text):
194
 
        """Set the text of the recipe."""
195
 
 
196
 
    def destroySelf():
197
 
        """Remove this SourcePackageRecipe from the database.
198
 
 
199
 
        This requires deleting any rows with non-nullable foreign key
200
 
        references to this object.
201
 
        """
202
 
 
203
 
 
204
186
class ISourcePackageRecipeEditableAttributes(IHasOwner):
205
187
    """ISourcePackageRecipe attributes that can be edited.
206
188
 
219
201
            vocabulary='UserTeamsParticipationPlusSelf',
220
202
            description=_("The person or team who can edit this recipe.")))
221
203
 
222
 
    distroseries = CollectionField(
223
 
        Reference(IDistroSeries), title=_("The distroseries this recipe will"
224
 
            " build a source package for"),
225
 
        readonly=False)
 
204
    distroseries = exported(List(
 
205
        ReferenceChoice(schema=IDistroSeries,
 
206
            vocabulary='BuildableDistroSeries'),
 
207
        title=_("Default distribution series"),
 
208
        description=_("If built daily, these are the distribution "
 
209
            "versions that the recipe will be built for."),
 
210
        readonly=True))
226
211
    build_daily = exported(Bool(
227
212
        title=_("Built daily"),
228
213
        description=_(
245
230
    is_stale = Bool(title=_('Recipe is stale.'))
246
231
 
247
232
 
 
233
class ISourcePackageRecipeEdit(Interface):
 
234
    """ISourcePackageRecipe methods that require launchpad.Edit permission."""
 
235
 
 
236
    @mutator_for(ISourcePackageRecipeView['recipe_text'])
 
237
    @operation_for_version("devel")
 
238
    @operation_parameters(
 
239
        recipe_text=copy_field(
 
240
            ISourcePackageRecipeView['recipe_text']))
 
241
    @export_write_operation()
 
242
    def setRecipeText(recipe_text):
 
243
        """Set the text of the recipe."""
 
244
 
 
245
    @mutator_for(ISourcePackageRecipeEditableAttributes['distroseries'])
 
246
    @operation_parameters(distroseries=copy_field(
 
247
        ISourcePackageRecipeEditableAttributes['distroseries']))
 
248
    @export_write_operation()
 
249
    @operation_for_version("devel")
 
250
    def updateSeries(distroseries):
 
251
        """Replace this recipe's distro series."""
 
252
 
 
253
    def destroySelf():
 
254
        """Remove this SourcePackageRecipe from the database.
 
255
 
 
256
        This requires deleting any rows with non-nullable foreign key
 
257
        references to this object.
 
258
        """
 
259
 
 
260
 
248
261
class ISourcePackageRecipe(ISourcePackageRecipeData,
249
262
    ISourcePackageRecipeEdit, ISourcePackageRecipeEditableAttributes,
250
263
    ISourcePackageRecipeView):