summaryrefslogtreecommitdiff
path: root/doc/todo/add_forward_age_sorting_option_to_inline.otl
blob: 684419f9093d977e5bedd700a946f813657ca0d8 (plain)
  1. The names are a bit backwards, but I guess inverting the sense of age would make people angry :-)
  2. 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.
  3. [[DavidBremner]]
  4. You can already do do sort=age reverse=yes [[done]] --[[Joey]]
  5. <pre>
  6. From 2fb2b561a678616bb0054a2d7a9d29df11998bc2 Mon Sep 17 00:00:00 2001
  7. From: David Bremner <bremner@pivot.cs.unb.ca>
  8. Date: Fri, 29 Aug 2008 15:05:41 -0300
  9. Subject: [PATCH] add sort='youth' to inline plugin
  10. ---
  11. IkiWiki/Plugin/inline.pm | 3 +++
  12. 1 files changed, 3 insertions(+), 0 deletions(-)
  13. diff --git a/IkiWiki/Plugin/inline.pm b/IkiWiki/Plugin/inline.pm
  14. index d2e5832..9e52712 100644
  15. --- a/IkiWiki/Plugin/inline.pm
  16. +++ b/IkiWiki/Plugin/inline.pm
  17. @@ -194,6 +194,9 @@ sub preprocess_inline (@) { #{{{
  18. elsif (! exists $params{sort} || $params{sort} eq 'age') {
  19. @list=sort { $pagectime{$b} <=> $pagectime{$a} } @list;
  20. }
  21. + elsif (! exists $params{sort} || $params{sort} eq 'youth') {
  22. + @list=sort { $pagectime{$a} <=> $pagectime{$b} } @list;
  23. + }
  24. else {
  25. return sprintf(gettext("unknown sort type %s"), $params{sort});
  26. }
  27. --
  28. 1.5.6.3
  29. </pre>