2007-12-12 07:52:26 +01:00
|
|
|
#!/usr/bin/perl
|
|
|
|
package IkiWiki::Plugin::edittemplate;
|
|
|
|
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
|
|
|
use IkiWiki 2.00;
|
2007-12-12 08:45:44 +01:00
|
|
|
use HTML::Template;
|
|
|
|
use Encode;
|
2007-12-12 07:52:26 +01:00
|
|
|
|
|
|
|
sub import { #{{{
|
2008-08-03 22:40:12 +02:00
|
|
|
hook(type => "getsetup", id => "edittemplate",
|
|
|
|
call => \&getsetup);
|
2007-12-12 07:52:26 +01:00
|
|
|
hook(type => "needsbuild", id => "edittemplate",
|
|
|
|
call => \&needsbuild);
|
|
|
|
hook(type => "preprocess", id => "edittemplate",
|
|
|
|
call => \&preprocess);
|
2007-12-12 09:01:15 +01:00
|
|
|
hook(type => "formbuilder", id => "edittemplate",
|
|
|
|
call => \&formbuilder);
|
2007-12-12 07:52:26 +01:00
|
|
|
} #}}}
|
|
|
|
|
2008-08-03 22:40:12 +02:00
|
|
|
sub getsetup () { #{{{
|
|
|
|
return
|
|
|
|
plugin => {
|
|
|
|
safe => 1,
|
|
|
|
rebuild => undef,
|
|
|
|
},
|
|
|
|
} #}}}
|
|
|
|
|
2007-12-12 07:52:26 +01:00
|
|
|
sub needsbuild (@) { #{{{
|
|
|
|
my $needsbuild=shift;
|
|
|
|
|
|
|
|
foreach my $page (keys %pagestate) {
|
|
|
|
if (exists $pagestate{$page}{edittemplate}) {
|
2008-01-29 23:36:25 +01:00
|
|
|
if (exists $pagesources{$page} &&
|
|
|
|
grep { $_ eq $pagesources{$page} } @$needsbuild) {
|
2007-12-12 07:52:26 +01:00
|
|
|
# remove state, it will be re-added
|
|
|
|
# if the preprocessor directive is still
|
|
|
|
# there during the rebuild
|
|
|
|
delete $pagestate{$page}{edittemplate};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} #}}}
|
|
|
|
|
|
|
|
sub preprocess (@) { #{{{
|
|
|
|
my %params=@_;
|
|
|
|
|
|
|
|
return "" if $params{page} ne $params{destpage};
|
|
|
|
|
|
|
|
if (! exists $params{template} || ! length($params{template})) {
|
2008-07-13 21:05:34 +02:00
|
|
|
error gettext("template not specified")
|
2007-12-12 07:52:26 +01:00
|
|
|
}
|
|
|
|
if (! exists $params{match} || ! length($params{match})) {
|
2008-07-13 21:05:34 +02:00
|
|
|
error gettext("match not specified")
|
2007-12-12 07:52:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$pagestate{$params{page}}{edittemplate}{$params{match}}=$params{template};
|
|
|
|
|
2008-09-20 22:19:09 +02:00
|
|
|
return "" if ($params{silent} && IkiWiki::yesno($params{silent}));
|
|
|
|
|
|
|
|
my $link=IkiWiki::linkpage($params{template});
|
|
|
|
add_depends($params{page}, $link);
|
|
|
|
my $linkHTML = htmllink($params{page}, $params{destpage}, $link);
|
|
|
|
|
2008-09-20 22:21:04 +02:00
|
|
|
return sprintf(gettext("edittemplate %s registered for %s"),
|
2008-09-20 22:19:09 +02:00
|
|
|
$linkHTML, $params{match});
|
2007-12-12 07:52:26 +01:00
|
|
|
} # }}}
|
|
|
|
|
2007-12-12 09:01:15 +01:00
|
|
|
sub formbuilder (@) { #{{{
|
2007-12-12 07:52:26 +01:00
|
|
|
my %params=@_;
|
|
|
|
my $form=$params{form};
|
2007-12-12 09:35:23 +01:00
|
|
|
|
2008-08-26 02:51:10 +02:00
|
|
|
return if $form->field("do") ne "create" ||
|
|
|
|
length $form->field("editcontent");
|
|
|
|
|
2007-12-12 08:45:44 +01:00
|
|
|
my $page=$form->field("page");
|
|
|
|
|
|
|
|
# The tricky bit here is that $page is probably just the base
|
|
|
|
# page name, without any subdir, but the pagespec for a template
|
|
|
|
# probably does include the subdir (ie, "bugs/*"). We don't know
|
2007-12-12 09:35:23 +01:00
|
|
|
# what subdir the user will pick to put the page in. So, try them
|
|
|
|
# all, starting with the one that was made default.
|
2007-12-12 08:45:44 +01:00
|
|
|
my @page_locs=$page;
|
2007-12-12 09:35:23 +01:00
|
|
|
foreach my $field ($form->field) {
|
|
|
|
if ($field eq 'page') {
|
|
|
|
@page_locs=$field->def_value;
|
|
|
|
push @page_locs, $field->options;
|
2007-12-12 08:45:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $p (@page_locs) {
|
|
|
|
foreach my $registering_page (keys %pagestate) {
|
|
|
|
if (exists $pagestate{$registering_page}{edittemplate}) {
|
|
|
|
foreach my $pagespec (sort keys %{$pagestate{$registering_page}{edittemplate}}) {
|
|
|
|
if (pagespec_match($p, $pagespec, location => $registering_page)) {
|
2008-09-20 22:23:15 +02:00
|
|
|
my $template=$pagestate{$registering_page}{edittemplate}{$pagespec};
|
2007-12-12 08:45:44 +01:00
|
|
|
$form->field(name => "editcontent",
|
2008-09-20 22:23:15 +02:00
|
|
|
value => filltemplate($template, $page));
|
2008-09-20 22:19:09 +02:00
|
|
|
$form->field(name => "type",
|
2008-09-20 22:23:15 +02:00
|
|
|
value => pagetype($pagesources{$template}))
|
|
|
|
if $pagesources{$template};
|
2007-12-12 08:45:44 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} #}}}
|
|
|
|
|
|
|
|
sub filltemplate ($$) { #{{{
|
|
|
|
my $template_page=shift;
|
|
|
|
my $page=shift;
|
|
|
|
|
|
|
|
my $template_file=$pagesources{$template_page};
|
|
|
|
if (! defined $template_file) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $template;
|
|
|
|
eval {
|
|
|
|
$template=HTML::Template->new(
|
|
|
|
filter => sub {
|
|
|
|
my $text_ref = shift;
|
|
|
|
$$text_ref=&Encode::decode_utf8($$text_ref);
|
|
|
|
chomp $$text_ref;
|
|
|
|
},
|
|
|
|
filename => srcfile($template_file),
|
|
|
|
die_on_bad_params => 0,
|
|
|
|
no_includes => 1,
|
|
|
|
);
|
|
|
|
};
|
|
|
|
if ($@) {
|
2008-07-13 21:05:34 +02:00
|
|
|
# Indicate that the earlier preprocessor directive set
|
|
|
|
# up a template that doesn't work.
|
|
|
|
return "[[!pagetemplate ".gettext("failed to process")." $@]]";
|
2007-12-12 08:45:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$template->param(name => $page);
|
2007-12-12 07:52:26 +01:00
|
|
|
|
2007-12-12 08:45:44 +01:00
|
|
|
return $template->output;
|
2007-12-12 07:52:26 +01:00
|
|
|
} #}}}
|
|
|
|
|
|
|
|
1
|