minor style etc changes
parent
04a9d8e867
commit
153c0ff13b
|
@ -2435,10 +2435,8 @@ sub match_ip ($$;@) {
|
|||
package IkiWiki::SortSpec;
|
||||
|
||||
# This is in the SortSpec namespace so that the $a and $b that sort() uses
|
||||
# $IkiWiki::SortSpec::a and $IkiWiki::SortSpec::b, so that plugins' cmp
|
||||
# functions can access them easily.
|
||||
sub sort_pages
|
||||
{
|
||||
# are easily available in this namespace, for cmp functions to use them.
|
||||
sub sort_pages {
|
||||
my $f = IkiWiki::sortspec_translate(shift);
|
||||
|
||||
return sort $f @_;
|
||||
|
|
|
@ -300,8 +300,8 @@ sub pagetemplate (@) {
|
|||
}
|
||||
|
||||
sub get_sort_key {
|
||||
my $page = $_[0];
|
||||
my $meta = $_[1];
|
||||
my $page = shift;
|
||||
my $meta = shift;
|
||||
|
||||
# e.g. titlesort (also makes sense for author)
|
||||
my $key = $pagestate{$page}{meta}{$meta . "sort"};
|
||||
|
@ -379,7 +379,7 @@ sub match_copyright ($$;@) {
|
|||
package IkiWiki::SortSpec;
|
||||
|
||||
sub cmp_meta {
|
||||
my $meta = $_[0];
|
||||
my $meta = shift;
|
||||
error(gettext("sort=meta requires a parameter")) unless defined $meta;
|
||||
|
||||
if ($meta eq 'updated' || $meta eq 'date') {
|
||||
|
|
Loading…
Reference in New Issue