Module: tools Branch: master Commit: ba420923ab58982d2b8b8188e05b68c1b457a314 URL: http://source.winehq.org/git/tools.git/?a=commit;h=ba420923ab58982d2b8b8188e...
Author: Alexandre Julliard julliard@winehq.org Date: Mon May 24 14:35:02 2010 +0200
patches: Add a "deferred" patch status.
---
patches/expire | 1 + patches/index.cgi | 2 ++ patches/patches.css | 1 + 3 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/patches/expire b/patches/expire index a990bfa..fb72956 100755 --- a/patches/expire +++ b/patches/expire @@ -28,6 +28,7 @@ my %status_expiry = "committed" => 1, "applyfail" => 7, "buildfail" => 7, + "deferred" => 7, "formatting" => 7, "other" => 7, "nopatch" => 3, diff --git a/patches/index.cgi b/patches/index.cgi index 4c8ce49..5016363 100755 --- a/patches/index.cgi +++ b/patches/index.cgi @@ -30,6 +30,7 @@ my %status_descr = "committed" => "Committed", "applyfail" => "Apply failure", "buildfail" => "Build failure", + "deferred" => "Deferred", "formatting" => "Formatting", "other" => "Other project", "nopatch" => "No patch", @@ -52,6 +53,7 @@ my @legend = [ "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>" ], + [ "deferred", "<ul><li>The patch is deferred because of code freeze for an upcoming release. Either resend after the release, make the patch less intrusive, or make a convincing argument that it needs to be included in the release.</li></ul>" ], [ "other", "<ul><li>The patch belongs to another WineHQ project (website, appdb, etc.) and will be applied by the respective maintainer.</li></ul>" ], [ "applyfail", "<ul><li>The patch got mangled in transit.</li>" . "<li>It's not relative to the latest git.</li>" . diff --git a/patches/patches.css b/patches/patches.css index b1224f5..4aa21ec 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; } +.deferred, .deferred :link, .deferred :visited { color: #e08000; } .testcase, .testcase :link, .testcase :visited { color: #e08000; } .other, .other :link, .other :visited { color: #e08000; } .applyfail, .applyfail :link, .applyfail :visited { color: red; }