]> sipb.mit.edu Git - ikiwiki.git/commitdiff
don't rely on plugin load order when determining generated directives
authorJoey Hess <joey@kodama.kitenet.net>
Thu, 30 Oct 2008 17:41:19 +0000 (13:41 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Thu, 30 Oct 2008 17:41:19 +0000 (13:41 -0400)
Instead, shortcuts will explicitly be marked as such when registered, and
listdirectives can filter them out.

IkiWiki/Plugin/listdirectives.pm
IkiWiki/Plugin/shortcut.pm
doc/bugs/cannot_preview_shortcuts.mdwn

index fc8927ccb6ca4dca305b013077c1bb8a34cb3561..2ab3e4665fc2c95000f6c22bd14bbc246775ed66 100644 (file)
@@ -30,7 +30,7 @@ sub getsetup () { #{{{
 } #}}}
 
 my @fulllist;
-my @earlylist;
+my @shortlist;
 my $pluginstring;
 
 sub checkconfig () { #{{{
@@ -40,15 +40,14 @@ sub checkconfig () { #{{{
        else {
                $config{directive_description_dir} =~ s/\/+$//;
        }
-
-       @earlylist = sort keys %{$IkiWiki::hooks{preprocess}};
 } #}}}
 
 sub needsbuild (@) { #{{{
        my $needsbuild=shift;
 
        @fulllist = sort keys %{$IkiWiki::hooks{preprocess}};
-       $pluginstring = join(' ', @earlylist) . " : " . join(' ', @fulllist);
+       @shortlist = grep { ! $IkiWiki::hooks{preprocess}{$_}{shortcut} } @fulllist;
+       $pluginstring = join(' ', @shortlist) . " : " . join(' ', @fulllist);
 
        foreach my $page (keys %pagestate) {
                if (exists $pagestate{$page}{listdirectives}{shown}) {
@@ -77,7 +76,7 @@ sub preprocess (@) { #{{{
                @pluginlist = @fulllist;
        }
        else {
-               @pluginlist = @earlylist;
+               @pluginlist = @shortlist;
        }
        
        my $result = '<ul class="listdirectives">';
index 77131edb07ac588a7108f5659e686ce1954a45d7..dec8afdb5fa139e0dd1bcb9e1bfa7c57c951b6a8 100644 (file)
@@ -39,6 +39,7 @@ sub preprocess_shortcut (@) { #{{{
        }
 
        hook(type => "preprocess", no_override => 1, id => $params{name},
+               shortcut => 1,
                call => sub { shortcut_expand($params{url}, $params{desc}, @_) });
 
        #translators: This is used to display what shortcuts are defined.
index 7c830898da6099aa8e6b9c3454ce4ae0591fee1f..d7045b2dc34e97843bd856a2494eeeb7695b4a6a 100644 (file)
@@ -8,3 +8,10 @@ Shortcuts such as \[[!google foo]] do not work when previewing pages.
 >> still works, but it relies on the fact that the `listdirectives` `checkconfig`
 >> hook is called before the `shortcut` `checkconfig` hook.
 >> -- [[Will]]
+
+>> The order plugins are loaded is effectively random. (`keys %hooks`).
+>> So I've made shortcuts pass a 'shortcut' parameter when registering
+>> them, which listdirectives can grep out of the full list of directives.
+>> That may not be the best name to give it, especially if other plugins
+>> generate directives too. Seemed better than forcing shortcut's
+>> checkconfig hook to run last tho. --[[Joey]]