]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - IkiWiki/Plugin/shortcut.pm
shortcut: If default_pageext is set, first look for shortcuts.default_pageext
[git.ikiwiki.info.git] / IkiWiki / Plugin / shortcut.pm
index 33d158d3eb6a74a3d02f64e996e66a9a8889724b..c1e6a7eb304e8ac84643a95b03e17684a8235a2d 100644 (file)
@@ -3,7 +3,7 @@ package IkiWiki::Plugin::shortcut;
 
 use warnings;
 use strict;
-use IkiWiki 2.00;
+use IkiWiki 3.00;
 
 sub import {
        hook(type => "getsetup", id => "shortcut", call => \&getsetup);
@@ -23,9 +23,13 @@ sub checkconfig () {
        if (defined $config{srcdir}) {
                # Preprocess the shortcuts page to get all the available shortcuts
                # defined before other pages are rendered.
-               my $srcfile=srcfile("shortcuts.mdwn", 1);
+               my $srcfile=srcfile("shortcuts.".$config{default_pageext}, 1);
                if (! defined $srcfile) {
-                       error(gettext("shortcut plugin will not work without a shortcuts.mdwn"));
+                       $srcfile=srcfile("shortcuts.mdwn", 1);
+               }
+               if (! defined $srcfile) {
+                       error(sprintf(gettext("shortcut plugin will not work without %s"),
+                               "shortcuts.".$config{default_pageext}));
                }
                IkiWiki::preprocess("shortcuts", "shortcuts", readfile($srcfile));
        }