summaryrefslogtreecommitdiff
path: root/doc/todo/add_forward_age_sorting_option_to_inline.otl
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-08-29 15:41:34 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-08-29 15:41:34 -0400
commit01054da0f723f3abbd81553b654705d0bc38d28b (patch)
treebd8c1e3e494735cb63248f3fe4e3eff5294fb34d /doc/todo/add_forward_age_sorting_option_to_inline.otl
parentcf156034eee121c029553ae52afec39f7e3ca0f3 (diff)
let's not use otl for random files in this wiki
it's slow
Diffstat (limited to 'doc/todo/add_forward_age_sorting_option_to_inline.otl')
-rw-r--r--doc/todo/add_forward_age_sorting_option_to_inline.otl34
1 files changed, 0 insertions, 34 deletions
diff --git a/doc/todo/add_forward_age_sorting_option_to_inline.otl b/doc/todo/add_forward_age_sorting_option_to_inline.otl
deleted file mode 100644
index 684419f90..000000000
--- a/doc/todo/add_forward_age_sorting_option_to_inline.otl
+++ /dev/null
@@ -1,34 +0,0 @@
-The names are a bit backwards, but I guess inverting the sense of age would make people angry :-)
-
-I do not believe copy-and-paste of 3 lines is copyrightable, but in any case feel free to include in ikiwiki under the same terms.
-[[DavidBremner]]
-
-You can already do do sort=age reverse=yes [[done]] --[[Joey]]
-
-<pre>
-From 2fb2b561a678616bb0054a2d7a9d29df11998bc2 Mon Sep 17 00:00:00 2001
-From: David Bremner <bremner@pivot.cs.unb.ca>
-Date: Fri, 29 Aug 2008 15:05:41 -0300
-Subject: [PATCH] add sort='youth' to inline plugin
-
----
- IkiWiki/Plugin/inline.pm | 3 +++
- 1 files changed, 3 insertions(+), 0 deletions(-)
-
-diff --git a/IkiWiki/Plugin/inline.pm b/IkiWiki/Plugin/inline.pm
-index d2e5832..9e52712 100644
---- a/IkiWiki/Plugin/inline.pm
-+++ b/IkiWiki/Plugin/inline.pm
-@@ -194,6 +194,9 @@ sub preprocess_inline (@) { #{{{
- elsif (! exists $params{sort} || $params{sort} eq 'age') {
- @list=sort { $pagectime{$b} <=> $pagectime{$a} } @list;
- }
-+ elsif (! exists $params{sort} || $params{sort} eq 'youth') {
-+ @list=sort { $pagectime{$a} <=> $pagectime{$b} } @list;
-+ }
- else {
- return sprintf(gettext("unknown sort type %s"), $params{sort});
- }
---
-1.5.6.3
-</pre>