2006-10-15 21:33:52 +02:00
|
|
|
#!/usr/bin/perl
|
|
|
|
package IkiWiki::Plugin::shortcut;
|
|
|
|
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
2008-12-23 22:34:19 +01:00
|
|
|
use IkiWiki 3.00;
|
2006-10-15 21:33:52 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub import {
|
2008-08-04 01:35:35 +02:00
|
|
|
hook(type => "getsetup", id => "shortcut", call => \&getsetup);
|
2008-10-29 19:20:31 +01:00
|
|
|
hook(type => "checkconfig", id => "shortcut", call => \&checkconfig);
|
2006-10-15 21:33:52 +02:00
|
|
|
hook(type => "preprocess", id => "shortcut", call => \&preprocess_shortcut);
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-10-15 21:33:52 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub getsetup () {
|
2008-08-04 01:35:35 +02:00
|
|
|
return
|
|
|
|
plugin => {
|
|
|
|
safe => 1,
|
|
|
|
rebuild => undef,
|
|
|
|
},
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-08-04 01:35:35 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub checkconfig () {
|
2008-10-29 19:20:31 +01:00
|
|
|
if (defined $config{srcdir}) {
|
|
|
|
# Preprocess the shortcuts page to get all the available shortcuts
|
|
|
|
# defined before other pages are rendered.
|
2009-02-12 19:02:58 +01:00
|
|
|
my $srcfile=srcfile("shortcuts.".$config{default_pageext}, 1);
|
2008-10-29 19:20:31 +01:00
|
|
|
if (! defined $srcfile) {
|
2009-02-12 19:02:58 +01:00
|
|
|
$srcfile=srcfile("shortcuts.mdwn", 1);
|
|
|
|
}
|
|
|
|
if (! defined $srcfile) {
|
|
|
|
error(sprintf(gettext("shortcut plugin will not work without %s"),
|
|
|
|
"shortcuts.".$config{default_pageext}));
|
2008-10-29 19:20:31 +01:00
|
|
|
}
|
|
|
|
IkiWiki::preprocess("shortcuts", "shortcuts", readfile($srcfile));
|
2007-12-17 21:33:47 +01:00
|
|
|
}
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-10-15 21:33:52 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub preprocess_shortcut (@) {
|
2006-10-15 21:33:52 +02:00
|
|
|
my %params=@_;
|
|
|
|
|
|
|
|
if (! defined $params{name} || ! defined $params{url}) {
|
2008-07-13 21:05:34 +02:00
|
|
|
error gettext("missing name or url parameter");
|
2006-10-15 21:33:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
hook(type => "preprocess", no_override => 1, id => $params{name},
|
2008-10-30 18:41:19 +01:00
|
|
|
shortcut => 1,
|
2006-11-20 12:31:23 +01:00
|
|
|
call => sub { shortcut_expand($params{url}, $params{desc}, @_) });
|
2006-10-15 21:33:52 +02:00
|
|
|
|
2007-01-04 13:00:23 +01:00
|
|
|
#translators: This is used to display what shortcuts are defined.
|
|
|
|
#translators: First parameter is the name of the shortcut, the second
|
|
|
|
#translators: is an URL.
|
2007-02-15 09:38:57 +01:00
|
|
|
return sprintf(gettext("shortcut %s points to <i>%s</i>"), $params{name}, $params{url});
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-10-15 21:33:52 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub shortcut_expand ($$@) {
|
2006-10-15 21:33:52 +02:00
|
|
|
my $url=shift;
|
2006-11-20 12:31:23 +01:00
|
|
|
my $desc=shift;
|
2006-10-15 21:33:52 +02:00
|
|
|
my %params=@_;
|
|
|
|
|
|
|
|
# Get params in original order.
|
|
|
|
my @params;
|
|
|
|
while (@_) {
|
|
|
|
my $key=shift;
|
|
|
|
my $value=shift;
|
|
|
|
push @params, $key if ! length $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
# If the shortcuts page changes, all pages that use shortcuts will
|
|
|
|
# need to be updated.
|
|
|
|
add_depends($params{destpage}, "shortcuts");
|
|
|
|
|
|
|
|
my $text=join(" ", @params);
|
|
|
|
my $encoded_text=$text;
|
|
|
|
$encoded_text=~s/([^A-Za-z0-9])/sprintf("%%%02X", ord($1))/seg;
|
2007-12-12 22:50:29 +01:00
|
|
|
|
|
|
|
$url=~s{\%([sS])}{
|
|
|
|
$1 eq 's' ? $encoded_text : $text
|
|
|
|
}eg;
|
2007-05-09 01:00:59 +02:00
|
|
|
|
2007-01-28 02:01:33 +01:00
|
|
|
$text=~s/_/ /g;
|
2008-03-02 17:29:02 +01:00
|
|
|
if (defined $params{desc}) {
|
|
|
|
$desc=$params{desc};
|
|
|
|
}
|
2006-11-20 12:31:23 +01:00
|
|
|
if (defined $desc) {
|
|
|
|
$desc=~s/\%s/$text/g;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$desc=$text;
|
|
|
|
}
|
|
|
|
|
|
|
|
return "<a href=\"$url\">$desc</a>";
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-10-15 21:33:52 +02:00
|
|
|
|
|
|
|
1
|