Photos
Blog
Projects
vanrenterghem.biz
projects
/
git.ikiwiki.info.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
img: restrict to JPEG, PNG and GIF images by default
[git.ikiwiki.info.git]
/
IkiWiki
/
Plugin
/
sortnaturally.pm
diff --git
a/IkiWiki/Plugin/sortnaturally.pm
b/IkiWiki/Plugin/sortnaturally.pm
index 92453749d9048f3acdea42bfc4058360e67d1e63..108b489f80d6f7e71916c891345ecea8569e9ed3 100644
(file)
--- a/
IkiWiki/Plugin/sortnaturally.pm
+++ b/
IkiWiki/Plugin/sortnaturally.pm
@@
-7,13
+7,14
@@
no warnings;
sub import {
hook(type => "getsetup", id => "sortnaturally", call => \&getsetup);
sub import {
hook(type => "getsetup", id => "sortnaturally", call => \&getsetup);
+ hook(type => "checkconfig", id => "sortnaturally", call => \&checkconfig);
}
sub getsetup {
return
plugin => {
safe => 1,
}
sub getsetup {
return
plugin => {
safe => 1,
- rebuild =>
1
,
+ rebuild =>
undef
,
},
}
},
}
@@
-29,4
+30,9
@@
sub cmp_title_natural {
IkiWiki::pagetitle(IkiWiki::basename($b)))
}
IkiWiki::pagetitle(IkiWiki::basename($b)))
}
+sub cmp_path_natural {
+ Sort::Naturally::ncmp(IkiWiki::pagetitle($a),
+ IkiWiki::pagetitle($b))
+}
+
1;
1;