- Merge the following from the English version:
r49825 -> r50931 head/ja_JP.eucJP/htdocs/ports/portindex
This commit is contained in:
parent
c59732058d
commit
970606f24a
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=53506
1 changed files with 7 additions and 1 deletions
|
@ -6,7 +6,7 @@
|
||||||
# Mon May 13 10:31:58 EST 1996
|
# Mon May 13 10:31:58 EST 1996
|
||||||
# $FreeBSD$
|
# $FreeBSD$
|
||||||
# The FreeBSD Japanese Documentation Project
|
# The FreeBSD Japanese Documentation Project
|
||||||
# Original revision: r49825
|
# Original revision: r50931
|
||||||
|
|
||||||
############################################################
|
############################################################
|
||||||
|
|
||||||
|
@ -307,7 +307,13 @@ EOF
|
||||||
print $moutf "<h3>",$category_groups{$cg},"</h3>\n";
|
print $moutf "<h3>",$category_groups{$cg},"</h3>\n";
|
||||||
print $moutf "<ul>\n";
|
print $moutf "<ul>\n";
|
||||||
foreach my $key (sort(keys(%stats))) {
|
foreach my $key (sort(keys(%stats))) {
|
||||||
|
if (!defined $category_description{$key}{group}) {
|
||||||
|
warn "Warning: no category_description/group for $key, ignore\n";
|
||||||
|
next;
|
||||||
|
}
|
||||||
|
|
||||||
next if ($category_description{$key}{group} ne $cg);
|
next if ($category_description{$key}{group} ne $cg);
|
||||||
|
|
||||||
# For the master file...
|
# For the master file...
|
||||||
print $moutf
|
print $moutf
|
||||||
"<li><a href=\"$key.html\">\u$key</a> <em>($stats{$key})</em>";
|
"<li><a href=\"$key.html\">\u$key</a> <em>($stats{$key})</em>";
|
||||||
|
|
Loading…
Reference in a new issue