sort backlinks by page name

master
joey 2006-03-12 16:46:00 +00:00
parent 64de5c0ebf
commit 8859b2feaf
1 changed files with 5 additions and 5 deletions

10
ikiwiki
View File

@ -120,7 +120,6 @@ sub writefile ($$) { #{{{
my $dir=dirname($file);
if (! -d $dir) {
print STDERR ">>$dir<<\n";
my $d="";
foreach my $s (split(m!/+!, $dir)) {
$d.="$s/";
@ -246,8 +245,7 @@ sub backlinks ($) { #{{{
}
}
# TODO sort by page name
return @links;
return sort { $a->{page} cmp $b->{page} } @links;
} #}}}
sub parentlinks ($) { #{{{
@ -672,7 +670,8 @@ sub misctemplate ($$) { #{{{
my $pagebody=shift;
my $template=HTML::Template->new(
filename => "$templatedir/misc.tmpl");
filename => "$templatedir/misc.tmpl"
);
$template->param(
title => $title,
indexlink => indexlink(),
@ -686,7 +685,8 @@ sub cgi_recentchanges ($) { #{{{
my $q=shift;
my $template=HTML::Template->new(
filename => "$templatedir/recentchanges.tmpl");
filename => "$templatedir/recentchanges.tmpl"
);
$template->param(
title => "RecentChanges",
indexlink => indexlink(),