You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by jm...@apache.org on 2005/11/18 04:24:24 UTC

svn commit: r345425 - in /spamassassin/trunk: build/automc/buildbot_ready masses/rule-qa/automc/ruleqa.cgi

Author: jm
Date: Thu Nov 17 19:24:21 2005
New Revision: 345425

URL: http://svn.apache.org/viewcvs?rev=345425&view=rev
Log:
a little more tagifying

Modified:
    spamassassin/trunk/build/automc/buildbot_ready
    spamassassin/trunk/masses/rule-qa/automc/ruleqa.cgi

Modified: spamassassin/trunk/build/automc/buildbot_ready
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/build/automc/buildbot_ready?rev=345425&r1=345424&r2=345425&view=diff
==============================================================================
--- spamassassin/trunk/build/automc/buildbot_ready (original)
+++ spamassassin/trunk/build/automc/buildbot_ready Thu Nov 17 19:24:21 2005
@@ -108,14 +108,14 @@
   system ("$perl hit-frequencies -c tstrules -x -p -T -s 0");
 
   use POSIX qw(strftime);
-  my $daterev = strftime("%Y%m%d", gmtime(time)) . "-r$rev";
+  my $daterev = strftime("%Y%m%d", gmtime(time)) . "-r$rev-b";
   print qq{
 
 BUILDING SLOW FREQS REPORT:
 
     http://buildbot.spamassassin.org/ruleqa?daterev=$daterev
 
-  };
+};
 
   my $logdir = "/home/bbmass/tmp/logs-r$rev";
   if (!-d $logdir) {

Modified: spamassassin/trunk/masses/rule-qa/automc/ruleqa.cgi
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/masses/rule-qa/automc/ruleqa.cgi?rev=345425&r1=345424&r2=345425&view=diff
==============================================================================
--- spamassassin/trunk/masses/rule-qa/automc/ruleqa.cgi (original)
+++ spamassassin/trunk/masses/rule-qa/automc/ruleqa.cgi Thu Nov 17 19:24:21 2005
@@ -973,9 +973,10 @@
   }
 
   # if that failed, just use the daterev itself.
-  $dr =~ /^(\d+)-r(\d+)$/;
+  $dr =~ /^(\d+)-r(\d+)-(\S+)$/;
   my $date = $1;
   my $rev = $2;
+  my $tag = $3;
   my $drtitle = "(no info)";
 
   $txt = qq{
@@ -985,7 +986,7 @@
         <td class=daterevtd>
        <a title="$drtitle" href="!drhref!">$rev</a></td>
         <td class=daterevtd colspan=3>
-       <a title="$drtitle" href="!drhref!">(no info on this commit)</a></td>
+       <a title="$drtitle" href="!drhref!">(no info on this commit yet)</a></td>
 
   };