зеркало из https://github.com/mozilla/gecko-dev.git
Patch by Sam Ziegler <ziegler@mediaguaranty.com> -- cope with product
names that have a "/" in them.
This commit is contained in:
Родитель
93e12de30d
Коммит
54ec141a85
|
@ -34,6 +34,7 @@ GetVersionTable();
|
|||
foreach (@::legal_product)
|
||||
{
|
||||
my $dir = "data/mining";
|
||||
|
||||
&check_data_dir ($dir);
|
||||
&collect_stats ($dir, $_);
|
||||
}
|
||||
|
@ -60,7 +61,7 @@ select count(bug_status) from bugs where
|
|||
(bug_status='NEW' or bug_status='ASSIGNED' or bug_status='REOPENED')
|
||||
and product='$product' group by bug_status
|
||||
FIN
|
||||
|
||||
$product =~ s/\//-/gs;
|
||||
my $file = join '/', $dir, $product;
|
||||
my $exists = -f $file;
|
||||
|
||||
|
|
|
@ -409,7 +409,11 @@ FIN
|
|||
my @dates;
|
||||
my @open; my @assigned; my @reopened;
|
||||
|
||||
my $file = join '/', $dir, $::FORM{'product'};
|
||||
my $prodname = $::FORM{'product'};
|
||||
|
||||
$prodname =~ s/\//-/gs;
|
||||
|
||||
my $file = join '/', $dir, $prodname;
|
||||
my $image = "$file.gif";
|
||||
|
||||
if (! open FILE, $file)
|
||||
|
|
Загрузка…
Ссылка в новой задаче