зеркало из https://github.com/mozilla/gecko-dev.git
Fixing bug 286542. In the html source of owners.html, each module owner and peer should be on a separate line. r=myk@mozilla.org
This commit is contained in:
Родитель
17710e7b2c
Коммит
c1615c1d7b
|
@ -314,7 +314,11 @@ while (@reprow = $repquery->fetchrow()) {
|
|||
<tbody>
|
||||
<tr>
|
||||
<th>Owner:</th>
|
||||
<td><a href="$maillist">| . join(', ', @ownernames) . qq|</a></td>
|
||||
<td>
|
||||
<a href="$maillist">
|
||||
| . join(",\n ", @ownernames) . qq|
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Source:</th>
|
||||
|
@ -351,14 +355,16 @@ while (@reprow = $repquery->fetchrow()) {
|
|||
</tr>
|
||||
<tr>
|
||||
<th>Peers:</th>
|
||||
<td>|;
|
||||
<td>
|
||||
|;
|
||||
my @peerlist;
|
||||
foreach $i (@peers) {
|
||||
$i =~ s/\@/@/g;
|
||||
push @peerlist, qq|<a href="mailto:$i">| . shift(@peernames) . "</a>";
|
||||
}
|
||||
print OWNERS join(', ', @peerlist);
|
||||
print OWNERS qq|</td>
|
||||
print OWNERS join(",\n ", @peerlist);
|
||||
print OWNERS qq|
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Documents:</th>
|
||||
|
|
Загрузка…
Ссылка в новой задаче