[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

abarth at webkit.org abarth at webkit.org
Thu Apr 8 01:01:27 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit af8fd832e1278e6acb3432be2eab2365fa6fc32f
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jan 12 09:41:36 2010 +0000

    2010-01-12  Adam Barth  <abarth at webkit.org>
    
            Reviewed by Eric Seidel.
    
            webkit-patch shouldn't waste my time for with a component prompt
            https://bugs.webkit.org/show_bug.cgi?id=33521
    
            The component field isn't very useful for bugs created with
            webkit-patch because they're likely to be resolved quickly.  Instead of
            always prompting for a component, we should just default to the "New
            Bugs" component.  If the bug stays around for more than five minutes,
            we can assign it a proper component.
    
            * Scripts/webkitpy/bugzilla.py:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53121 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index b5331d9..5ad1a4e 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -2,6 +2,21 @@
 
         Reviewed by Eric Seidel.
 
+        webkit-patch shouldn't waste my time for with a component prompt
+        https://bugs.webkit.org/show_bug.cgi?id=33521
+
+        The component field isn't very useful for bugs created with
+        webkit-patch because they're likely to be resolved quickly.  Instead of
+        always prompting for a component, we should just default to the "New
+        Bugs" component.  If the bug stays around for more than five minutes,
+        we can assign it a proper component.
+
+        * Scripts/webkitpy/bugzilla.py:
+
+2010-01-12  Adam Barth  <abarth at webkit.org>
+
+        Reviewed by Eric Seidel.
+
         Add experimental "land-safely" command to webkit-patch
         https://bugs.webkit.org/show_bug.cgi?id=33518
 
diff --git a/WebKitTools/Scripts/webkitpy/bugzilla.py b/WebKitTools/Scripts/webkitpy/bugzilla.py
index 77eb5e5..b911a04 100644
--- a/WebKitTools/Scripts/webkitpy/bugzilla.py
+++ b/WebKitTools/Scripts/webkitpy/bugzilla.py
@@ -399,7 +399,9 @@ class Bugzilla(object):
         self.browser.select_form(name="Create")
         component_items = self.browser.find_control('component').items
         component_names = map(lambda item: item.name, component_items)
-        if not component or component not in component_names:
+        if not component:
+            component = "New Bugs"
+        if component not in component_names:
             component = self.prompt_for_component(component_names)
         self.browser['component'] = [component]
         if cc:

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list