Changeset 52901 in webkit


Ignore:
Timestamp:
Jan 6, 2010 10:00:23 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-06 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

Add long_help for all common commands.
https://bugs.webkit.org/show_bug.cgi?id=33261

For now these long_helps are pretty basic.
These were all written to just explain the steps
that each command runs. This style long_help could
be made easier by using:
https://bugs.webkit.org/show_bug.cgi?id=33257

  • Scripts/webkitpy/commands/download.py:
  • Scripts/webkitpy/commands/queries.py:
Location:
trunk/WebKitTools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r52897 r52901  
     12010-01-06  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Add long_help for all common commands.
     6        https://bugs.webkit.org/show_bug.cgi?id=33261
     7
     8        For now these long_helps are pretty basic.
     9        These were all written to just explain the steps
     10        that each command runs.  This style long_help could
     11        be made easier by using:
     12        https://bugs.webkit.org/show_bug.cgi?id=33257
     13
     14        * Scripts/webkitpy/commands/download.py:
     15        * Scripts/webkitpy/commands/queries.py:
     16
    1172010-01-06  Diego Gonzalez  <diego.gonzalez@openbossa.org>
    218
  • trunk/WebKitTools/Scripts/webkitpy/commands/download.py

    r52870 r52901  
    188188        steps.ApplyPatchWithLocalCommit,
    189189    ]
     190    long_help = """Updates the working copy.
     191Downloads and applies the patches, creating local commits if necessary."""
    190192
    191193
     
    219221        steps.CloseBug,
    220222    ]
     223    long_help = """Checks to make sure builders are green.
     224Updates the working copy.
     225Applies the patch.
     226Builds.
     227Runs the layout tests.
     228Commits the patch.
     229Clears the flags on the patch.
     230Closes the bug if no patches are marked for review."""
    221231
    222232
     
    240250    help_text = "Revert the given revision in the working copy and optionally commit the revert and re-open the original bug"
    241251    argument_names = "REVISION REASON"
     252    long_help = """Updates the working copy.
     253Applies the inverse diff for the provided revision.
     254Creates an appropriate rollout ChangeLog, including a trac link and bug link.
     255Opens the generated ChangeLogs in $EDITOR.
     256Shows the prepared diff for confirmation.
     257Commits the revert and updates the bug (including re-opening the bug if necessary)."""
    242258    steps = [
    243259        steps.CleanWorkingDirectory,
  • trunk/WebKitTools/Scripts/webkitpy/commands/queries.py

    r52707 r52901  
    121121    show_in_main_help = True
    122122    help_text = "Print the status of the %s buildbots" % BuildBot.default_host
     123    long_help = """Fetches build status from http://build.webkit.org/one_box_per_builder
     124and displayes the status of each builder."""
    123125
    124126    def execute(self, options, args, tool):
Note: See TracChangeset for help on using the changeset viewer.