Module: tools Branch: master Commit: 0ac1df0fd92d3854ab9142621207a8519ba8b95f URL: http://source.winehq.org/git/tools.git/?a=commit;h=0ac1df0fd92d3854ab9142621...
Author: Alexandre Julliard julliard@winehq.org Date: Mon Nov 1 12:54:19 2010 +0100
patches: Add a "bad sequence" patch status.
---
patches/expire | 1 + patches/patches.css | 1 + patches/update | 2 ++ 3 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/patches/expire b/patches/expire index fb72956..c4d49f3 100755 --- a/patches/expire +++ b/patches/expire @@ -35,6 +35,7 @@ my %status_expiry = "rejected" => 7, "split" => 7, "depend" => 7, + "sequence" => 7, "superseded" => 1, "testcase" => 7, "testfail" => 7, diff --git a/patches/patches.css b/patches/patches.css index 4aa21ec..6e0e206 100644 --- a/patches/patches.css +++ b/patches/patches.css @@ -50,6 +50,7 @@ tr.odd { background-color: #f8e8e8; } .testbot, .testbot :link, .testbot :visited { color: green; } .depend, .depend :link, .depend :visited { color: #e08000; } .superseded, .superseded :link, .superseded :visited { color: #e08000; } +.sequence, .sequence :link, .sequence :visited { color: #e08000; } .deferred, .deferred :link, .deferred :visited { color: #e08000; } .testcase, .testcase :link, .testcase :visited { color: #e08000; } .other, .other :link, .other :visited { color: #e08000; } diff --git a/patches/update b/patches/update index d9387f9..ef24a7f 100755 --- a/patches/update +++ b/patches/update @@ -38,6 +38,7 @@ my %status_descr = "split" => "Needs splitting", "depend" => "Dependency", "superseded" => "Superseded", + "sequence" => "Bad sequence", "testcase" => "Needs tests", "testfail" => "Test failure", ); @@ -50,6 +51,7 @@ my @legend = [ "committed", "<ul><li>You have done everything right; congratulations!</li>" . "<li>You screwed up but AJ missed it, send a fix before someone notices ;-)</li></ul>" ], [ "depend", "<ul><li>The patch is part of a series in which a previous patch hasn't been applied. Resend when the dependent patch is fixed.</li></ul>" ], + [ "sequence", "<ul><li>The patch is part of a series but it's not correctly numbered. Resend the series with correct sequence numbers to enable the <a href="http://testbot.winehq.org/%5C%22%3Etestbot</a> to figure it out.</li></ul>" ], [ "superseded", "<ul><li>An updated version of the patch has been submitted.</li>" . "<li>Someone else fixed the problem already.</li></ul>" ], [ "testcase", "<ul><li>You need to write some test cases demonstrating that the patch is correct.</li></ul>" ],