don't rely on plugin load order when determining generated directives

Instead, shortcuts will explicitly be marked as such when registered, and
listdirectives can filter them out.
master
Joey Hess 2008-10-30 13:41:19 -04:00
parent 8f5723e1d5
commit 354d22e27b
3 changed files with 12 additions and 5 deletions

View 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">';

View 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.

View 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]]