Your message dated Sun, 8 Apr 2012 21:44:40 +0200
with message-id <[email protected]>
and subject line Re: Bug#640309: spam review: nominate all messages with
keyboard shortcuts
has caused the Debian Bug report #640309,
regarding spam review: nominate all messages with keyboard shortcuts
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
640309: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=640309
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: lists.debian.org
Severity: wishlist
Tags: patch
As a follow-up for #563289, I propose a patch which allows marking all
nominations displayed in a page as unsure/ham/inappropriate/spam.
I find this quite useful nowadays, as almost every message I encounter
is spam, and marking them all as such speeds up my reviews.
My patch is based on review2.pl source found in bug #563289, I'm willing
to adjust patch in case script isn't accurate anymore.
--
.''`.
: :' : Luca Falavigna <[email protected]>
`. `'
`-
--- review2.pl.orig 2011-09-04 11:27:10.000000000 +0200
+++ review2.pl 2011-09-04 11:30:16.685162636 +0200
@@ -64,6 +64,18 @@
case 70: // f
elPrefix = 's';
break;
+ case 90: // z
+ fullPrefix = 'u';
+ break;
+ case 88: // x
+ fullPrefix = 'h';
+ break;
+ case 67: // c
+ fullPrefix = 'i';
+ break;
+ case 86: // v
+ fullPrefix = 's';
+ break;
}
if (1 <= pos && pos <= $count_out) {
@@ -74,6 +86,15 @@
document.getElementById(elPrefix+pos).checked = true;
}
+ if (fullPrefix != '') {
+ for (i = 0; i < 10; i++) {
+ id = document.getElementById(fullPrefix+i);
+ if (id) {
+ id.checked = true;
+ }
+ }
+ }
+
return document.defaultAction;
}
// -->
@@ -109,7 +130,7 @@
print "
<p><small>
- Keys: <b>j</b>/<b>k</b> move down/up, <b>a</b>/<b>s</b>/<b>d</b>/<b>f</b> mark current entry as Unsure/Ham/Inappropriate/Spam respectively
+ Keys: <b>j</b>/<b>k</b> move down/up, <b>a</b>/<b>s</b>/<b>d</b>/<b>f</b> mark current entry as Unsure/Ham/Inappropriate/Spam respectively, <b>z</b>/<b>x</b>/<b>c</b>/<b>v</b> mark all entries as Unsure/Ham/Inappropriate/Spam respectively
</small></p>\n";
print "<form action=\"/cgi-bin/review/review3.pl\" method=\"GET\">\n";
signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Luca Falavigna schrieb am Sunday, den 04. September 2011:
> Package: lists.debian.org
> Severity: wishlist
> Tags: patch
>
>
> As a follow-up for #563289, I propose a patch which allows marking all
> nominations displayed in a page as unsure/ham/inappropriate/spam.
>
> I find this quite useful nowadays, as almost every message I encounter
> is spam, and marking them all as such speeds up my reviews.
>
> My patch is based on review2.pl source found in bug #563289, I'm willing
> to adjust patch in case script isn't accurate anymore.
I applied your patch.
Thanks!
Alex
pgpJwEKI2Kr36.pgp
Description: PGP signature
--- End Message ---