chiark / gitweb /
send voting url to admin not to voters
[modbot-mtm.git] / xlog / bin / report
index 3c689f0e8ef08c1c816bcb3c96646a883b950601..aef8458c91932a5d164a0d25ca146a7823fa989d 100755 (executable)
@@ -6,10 +6,11 @@ chdir $ng or die $!;
 use strict (qw(vars));
 use IO::Handle;
 use POSIX;
-use CGI qw/:standard *table end_*/;
+use CGI qw/:standard *table end_* -no_xhtml/;
 
 our @lines= ();
 our @s;
+our $oddeven = "o";
 
 our ($processline,$needmap);
 our ($selectmid,$selectnum);
@@ -20,8 +21,11 @@ sub processlog ($$) {
     while (<F>) {
        chomp;
        @s= split /\t/;
-        $s[0]= strftime "%Y-%m-%d %H:%M:%S %Z", localtime $s[0];
+       push @s, '' if @s<=6;
+        $s[0]= strftime "%Y-%m-%d %H:%M %Z", localtime $s[0];
+        $s[0] =~ s/(\d+\:\d)\d/${1}x/;
        &$processline();
+       $oddeven =~ y/oe/eo/;
     }
 }
 sub processlogs ($) {
@@ -35,6 +39,8 @@ sub processline_print () {
     my @sp= @s;
     $sp[3] =~ s/\@\w{0,2}/ at .. /;
     @sp= map { escapeHTML($_) } @sp[0..5];
+    $sp[3] =~ s/&lt;/\<br>&lt;/;
+    $sp[2]=~s/\@/\@<span class='hole'><\/span>/;
     my @spu= map {
        s/\W/ sprintf "%%%02x", ord $& /ge;
        $_;
@@ -42,14 +48,16 @@ sub processline_print () {
     if (length $s[1] && length $s[2]) {
        my $url= url().'/message/'.$spu[1].'/'.$spu[2];
        foreach my $i (qw(1 2)) {
-           $sp[$i]= a({ href=>$url }, $sp[$i] );
+           $sp[$i]= a({ href=>$url }, $sp[$i]."<br>" );
        }
     }
     if (length $s[6]) {
        $sp[5]= a({ href=>"$staticfiles/nr-$s[6].txt" }, $sp[5] );
     }
-#print STDERR join('|',@sp),"\n";
-    print Tr(td([@sp]));
+
+    print "<tr class='$oddeven'><td>$sp[0]</td>";
+    print "<td class='ref'>$sp[1] $sp[2]</td>";
+    print td([@sp[3..5]]),"</tr>\n";
 }
 
 sub processline_print_ifsingle () {
@@ -98,12 +106,19 @@ if ($pi =~ m,^/message/(\d+)/(.*)$,) {
     $processline= \&processline_queue;
 }
 
-print header(), start_html($title), h1($title), start_table();
+my $css=<<EOJ;
+span.hole:before { content: " "; }
+td.ref { font-size: 0.75em; }
+tr.o { background: #ddddff; }
+EOJ
+
+print header(),
+  start_html(-title=>$title, -style=>{'-code'=>$css}),
+  h1($title), start_table();
 
 print Tr(td([map { strong($_) } (qw(
                                Date
-                               Reference
-                               Message-ID
+                               Reference/Message-ID
                                From
                                Subject
                                Event