]> git.donarmstrong.com Git - debbugs.git/commitdiff
[project @ 2000-11-01 01:52:17 by ajt]
authorajt <>
Wed, 1 Nov 2000 09:52:17 +0000 (01:52 -0800)
committerajt <>
Wed, 1 Nov 2000 09:52:17 +0000 (01:52 -0800)
the index format now ends each line with a list of tags, not the title
added and commented out bugs per page limit

cgi/common.pl

index 43eafae300f5aa543d63d4162b3df3a0a6ea2f73..9d88de2f41e5d5b619da80e90a701c03587ebab8 100644 (file)
@@ -276,11 +276,12 @@ sub getbugs {
     my @result = ();
     while(<I>) 
     {
-        if (m/^(\S+)\s+(\d+)\s+(\d+)\s+(\S+)\s+\[\s*([^]]*)\s*\]\s+(\w+)\s+(.+)$/) {
+        if (m/^(\S+)\s+(\d+)\s+(\d+)\s+(\S+)\s+\[\s*([^]]*)\s*\]\s+(\w+)\s+(.*)$/) {
             if ($bugfunc->(pkg => $1, bug => $2, status => $4, submitter => $5,
-                          severity => $6, title => $7))
+                          severity => $6, tags => $7))
            {
                push (@result, $2);
+               #last if (@result > 400);
            }
        }
     }