Changeset 58265 in webkit


Ignore:
Timestamp:
Apr 26, 2010 2:52:40 PM (14 years ago)
Author:
ojan@chromium.org
Message:

2010-04-26 Ojan Vafai <ojan@chromium.org>

Reviewed by Eric Seidel.

complete rietveld bugzilla integration
https://bugs.webkit.org/show_bug.cgi?id=38021

Makes --fancy-review the default. All this means is that the patch will
be uploaded to rietveld in addition to bugs.webkit.org.

  • Scripts/webkitpy/tool/steps/options.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r58263 r58265  
     12010-04-26  Ojan Vafai  <ojan@chromium.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        complete rietveld bugzilla integration
     6        https://bugs.webkit.org/show_bug.cgi?id=38021
     7
     8        Makes --fancy-review the default. All this means is that the patch will
     9        be uploaded to rietveld in addition to bugs.webkit.org.
     10
     11        * Scripts/webkitpy/tool/steps/options.py:
     12
    1132010-04-26  Chris Jerdonek  <cjerdonek@webkit.org>
    214
  • trunk/WebKitTools/Scripts/webkitpy/tool/steps/options.py

    r58261 r58265  
    4141    description = make_option("-m", "--description", action="store", type="string", dest="description", help="Description string for the attachment (default: \"patch\")")
    4242    email = make_option("--email", action="store", type="string", dest="email", help="Email address to use in ChangeLogs.")
    43     fancy_review = make_option("--fancy-review", action="store_true", dest="fancy_review", default=False, help="(Experimental) Upload the patch to Rietveld code review tool.")
     43    fancy_review = make_option("--no-fancy-review", action="store_false", dest="fancy_review", default=True, help="Do not upload the patch to Rietveld code review tool.")
    4444    force_clean = make_option("--force-clean", action="store_true", dest="force_clean", default=False, help="Clean working directory before applying patches (removes local changes and commits)")
    4545# FIXME: Make commit ranges treat each commit separately instead of squashing them into one.
Note: See TracChangeset for help on using the changeset viewer.