~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Jeroen Vermeulen
  • Date: 2011-09-26 06:30:07 UTC
  • mto: This revision was merged to the branch mainline in revision 14049.
  • Revision ID: jeroen.vermeulen@canonical.com-20110926063007-1fb5eelnidpnra9a
Fix lots of lint in recently-changed files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
225
225
                    code_import.branch.unique_name))
226
226
 
227
227
 
228
 
 
229
228
class NewCodeImportForm(Interface):
230
229
    """The fields presented on the form for editing a code import."""
231
230
 
253
252
            "The URL of the git repository.  The HEAD branch will be "
254
253
            "imported."),
255
254
        allowed_schemes=["git", "http", "https"],
256
 
        allow_userinfo=False, # Only anonymous access is supported.
 
255
        allow_userinfo=False,  # Only anonymous access is supported.
257
256
        allow_port=True,
258
257
        allow_query=False,
259
258
        allow_fragment=False,
265
264
            "The URL of the Mercurial repository.  The tip branch will be "
266
265
            "imported."),
267
266
        allowed_schemes=["http", "https"],
268
 
        allow_userinfo=False, # Only anonymous access is supported.
 
267
        allow_userinfo=False,  # Only anonymous access is supported.
269
268
        allow_port=True,
270
 
        allow_query=False,    # Query makes no sense in Mercurial
271
 
        allow_fragment=False, # Fragment makes no sense in Mercurial
272
 
        trailing_slash=False) # See http://launchpad.net/bugs/56357.
 
269
        allow_query=False,     # Query makes no sense in Mercurial.
 
270
        allow_fragment=False,  # Fragment makes no sense in Mercurial.
 
271
        trailing_slash=False)  # See http://launchpad.net/bugs/56357.
273
272
 
274
273
    branch_name = copy_field(
275
274
        IBranch['name'],
330
329
            owner_field = self.schema['owner']
331
330
            any_owner_choice = Choice(
332
331
                __name__='owner', title=owner_field.title,
333
 
                description = _("As an administrator you are able to reassign"
334
 
                                " this branch to any person or team."),
 
332
                description=_(
 
333
                    "As an administrator you are able to reassign this "
 
334
                    "branch to any person or team."),
335
335
                required=True, vocabulary='ValidPersonOrTeam')
336
336
            any_owner_field = form.Fields(
337
337
                any_owner_choice, render_context=self.render_context)
492
492
            return self._showButtonForStatus(status)
493
493
    else:
494
494
        condition = None
 
495
 
495
496
    def success(self, action, data):
496
497
        """Make the requested status change."""
497
498
        if status is not None: