]> 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 0e7cbd4d12f0705aa8706461c404a154ad8fbf99..c1e6a7eb304e8ac84643a95b03e17684a8235a2d 100644 (file)
@@ -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));
        }