]> git.donarmstrong.com Git - debbugs.git/commitdiff
merge master
authorDon Armstrong <don@donarmstrong.com>
Tue, 2 Apr 2013 17:14:44 +0000 (10:14 -0700)
committerDon Armstrong <don@donarmstrong.com>
Tue, 2 Apr 2013 17:14:44 +0000 (10:14 -0700)
1  2 
Debbugs/Status.pm

diff --combined Debbugs/Status.pm
index 7ad3af457a794b13a28a20f420d5d6e312b37259,bf3d2ab7cdbdfa27d25b4d0b7eac3831445af3ef..ab35b814dae6f2c50797dc50c5d6fb069d3f8301
@@@ -191,7 -191,6 +191,7 @@@ sub read_bug
      my $status;
      my $log;
      my $location;
 +    my $report;
      if (not defined $param{summary}) {
         my $lref;
         ($lref,$location) = @param{qw(bug location)};
         }
         $status = getbugcomponent($lref, 'summary', $location);
         $log    = getbugcomponent($lref, 'log'    , $location);
 +       $report    = getbugcomponent($lref, 'report'    , $location);
         return undef unless defined $status;
         return undef if not -e $status;
      }
      else {
         $status = $param{summary};
         $log = $status;
 +       $report = $status;
         $log =~ s/\.summary$/.log/;
 +       $report =~ s/\.summary$/.report/;
         ($location) = $status =~ m/(db-h|db|archive)/;
           ($param{bug}) = $status =~ m/(\d+)\.summary$/;
      }
  
      my $status_modified = (stat($status))[9];
      # Add log last modified time
-     $data{log_modified} = (stat($log))[9];
+     $data{log_modified} = (stat($log))[9] // (stat("${log}.gz"))[9];
 +    my $report_modified = (stat($report))[9] // $data{log_modified};
      $data{last_modified} = max($status_modified,$data{log_modified});
 +    # if the date isn't set (ancient bug), use the smallest of any of the modified
 +    if (not defined $data{date} or not length($data{date})) {
 +        $data{date} = min($report_modified,$status_modified,$data{log_modified});
 +    }
      $data{location} = $location;
      $data{archived} = (defined($location) and ($location eq 'archive'))?1:0;
      $data{bug_num} = $param{bug};