ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cfmaps/cfmap2html
(Generate patch)

Comparing cfmaps/cfmap2html (file contents):
Revision 1.33 by root, Wed Sep 10 10:46:12 2008 UTC vs.
Revision 1.34 by root, Sat Sep 20 18:23:50 2008 UTC

15# 15#
16# You should have received a copy of the GNU General Public License 16# You should have received a copy of the GNU General Public License
17# along with cfmaps; if not, write to the Free Software 17# along with cfmaps; if not, write to the Free Software
18# Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18# Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 19
20our $VERSION = '2.111'; 20our $VERSION = '2.112';
21 21
22use strict; 22use strict;
23 23
24use List::Util qw(min max); 24use List::Util qw(min max);
25use Deliantra; 25use Deliantra;
156 156
157 print "<div>($x|$y)"; 157 print "<div>($x|$y)";
158 158
159 sub print_archs { 159 sub print_archs {
160 print "<ul>"; 160 print "<ul>";
161 for my $a (@{$_[0]}) { 161 for my $a (reverse @{$_[0]}) {
162 my $o = $ARCH{$a->{_name}}; 162 my $o = $ARCH{$a->{_name}};
163 my $type = $a->{type} || $o->{type}; 163 my $type = $a->{type} || $o->{type};
164 my $aname = escape_html $a->{_name}; 164 my $aname = escape_html $a->{_name};
165 my $name = escape_html $a->{name} || $o->{name}; 165 my $name = escape_html $a->{name} || $o->{name};
166 166

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines