2 package IkiWiki::Plugin::shortcut;
9 hook(type => "getsetup", id => "shortcut", call => \&getsetup);
10 hook(type => "checkconfig", id => "shortcut", call => \&checkconfig);
11 hook(type => "preprocess", id => "shortcut", call => \&preprocess_shortcut);
23 if (defined $config{srcdir} && length $config{srcdir}) {
24 # Preprocess the shortcuts page to get all the available shortcuts
25 # defined before other pages are rendered.
26 my $srcfile=srcfile("shortcuts.".$config{default_pageext}, 1);
27 if (! defined $srcfile) {
28 $srcfile=srcfile("shortcuts.mdwn", 1);
30 if (! defined $srcfile) {
31 print STDERR sprintf(gettext("shortcut plugin will not work without %s"),
32 "shortcuts.".$config{default_pageext})."\n";
35 IkiWiki::preprocess("shortcuts", "shortcuts", readfile($srcfile));
40 sub preprocess_shortcut (@) {
43 if (! defined $params{name} || ! defined $params{url}) {
44 error gettext("missing name or url parameter");
47 hook(type => "preprocess", no_override => 1, id => $params{name},
49 call => sub { shortcut_expand($params{url}, $params{desc}, @_) });
51 #translators: This is used to display what shortcuts are defined.
52 #translators: First parameter is the name of the shortcut, the second
53 #translators: is an URL.
54 return sprintf(gettext("shortcut %s points to <i>%s</i>"), $params{name}, $params{url});
57 sub shortcut_expand ($$@) {
62 # Get params in original order.
67 push @params, $key if ! length $value;
70 # If the shortcuts page changes, all pages that use shortcuts will
72 add_depends($params{destpage}, "shortcuts");
74 my $text=join(" ", @params);
75 my $encoded_text=$text;
76 $encoded_text=~s/([^A-Za-z0-9])/sprintf("%%%02X", ord($1))/seg;
79 $1 eq 's' ? $encoded_text : $text
83 if (defined $params{desc}) {
93 return "<a href=\"$url\">$desc</a>";