aboutsummaryrefslogtreecommitdiff
path: root/doc/plugins
diff options
context:
space:
mode:
authorSimon McVittie <smcv@debian.org>2010-03-24 23:51:48 +0000
committerSimon McVittie <smcv@debian.org>2010-03-24 23:51:48 +0000
commit60edd2dc3157f756f4f7a213ee15836fe7bbb769 (patch)
treeeff866087835eda7e49a6cfa14a4d6b0f402294b /doc/plugins
parentb0ae19872d443860aeaab7069255e3a68a520887 (diff)
downloadikiwiki-60edd2dc3157f756f4f7a213ee15836fe7bbb769.tar
ikiwiki-60edd2dc3157f756f4f7a213ee15836fe7bbb769.tar.gz
Allow sorting to be combined and/or reversed
Diffstat (limited to 'doc/plugins')
-rw-r--r--doc/plugins/write.mdwn17
1 files changed, 16 insertions, 1 deletions
diff --git a/doc/plugins/write.mdwn b/doc/plugins/write.mdwn
index bfa6617bd..1010e76e4 100644
--- a/doc/plugins/write.mdwn
+++ b/doc/plugins/write.mdwn
@@ -593,7 +593,9 @@ function of the ikiwiki wrapper when it is being generated.
hook(type => "sort", id => "foo", call => \&sort_by_foo);
This hook adds an additional [[ikiwiki/pagespec/sorting]] order or overrides
-an existing one. The callback is given two page names as arguments, and
+an existing one.
+
+The callback is given two page names followed by the parameter as arguments, and
returns negative, zero or positive if the first page should come before,
close to (i.e. undefined order), or after the second page.
@@ -603,6 +605,19 @@ For instance, the built-in `title` sort order could be reimplemented as
pagetitle(basename($_[0])) cmp pagetitle(basename($_[1]));
}
+and to sort by an arbitrary `meta` value, you could use:
+
+ # usage: sort="meta(description)"
+ sub sort_by_meta {
+ my $param = $_[2];
+ error "sort=meta requires a parameter" unless defined $param;
+ my $left = $pagestate{$_[0]}{meta}{$param};
+ $left = "" unless defined $left;
+ my $right = $pagestate{$_[1]}{meta}{$param};
+ $right = "" unless defined $right;
+ return $left cmp $right;
+ }
+
## Exported variables
Several variables are exported to your plugin when you `use IkiWiki;`