~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/buildmaster/interfaces/builder.py

  • Committer: Francis J. Lacoste
  • Date: 2011-07-14 21:49:37 UTC
  • mto: This revision was merged to the branch mainline in revision 13501.
  • Revision ID: francis.lacoste@canonical.com-20110714214937-redwzax7e3ti1wxe
Lint sucks, but hoover blows.

Show diffs side-by-side

added added

removed removed

Lines of Context:
136
136
 
137
137
    title = exported(Title(
138
138
        title=_('Title'), required=True,
139
 
        description=_('The builder slave title. Should be just a few words.')))
 
139
        description=_(
 
140
            'The builder slave title. Should be just a few words.')))
140
141
 
141
142
    description = exported(Description(
142
143
        title=_('Description'), required=False,
207
208
        :param file_sha1: The file's sha1, which is how the file is addressed
208
209
            in the slave XMLRPC protocol. Specially, the file_sha1 'buildlog'
209
210
            will cause the build log to be retrieved and gzipped.
210
 
        :param filename: The name of the file to be given to the librarian file
211
 
            alias.
 
211
        :param filename: The name of the file to be given to the librarian
 
212
            file alias.
212
213
        :param private: True if the build is for a private archive.
213
214
        :return: A Deferred that calls back with a librarian file alias.
214
215
        """
246
247
 
247
248
    def updateStatus(logger=None):
248
249
        """Update the builder's status by probing it.
249
 
        
 
250
 
250
251
        :return: A Deferred that fires when the dialog with the slave is
251
252
            finished.  It does not have a return value.
252
253
        """
253
254
 
254
255
    def cleanSlave():
255
256
        """Clean any temporary files from the slave.
256
 
        
 
257
 
257
258
        :return: A Deferred that fires when the dialog with the slave is
258
259
            finished.  It does not have a return value.
259
260
        """