aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/CGI.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2011-01-05 16:58:27 -0400
committerJoey Hess <joey@kitenet.net>2011-01-05 17:06:11 -0400
commit4a6ac6b485c7e6e312e42c3c609df693f5e531ec (patch)
tree8d9da03b0ffe21c3310f0f7b8cdfd0cc3e1a4c3b /IkiWiki/CGI.pm
parentea734d451ce7680906618b41ac35a0f3904b154a (diff)
downloadikiwiki-4a6ac6b485c7e6e312e42c3c609df693f5e531ec.tar
ikiwiki-4a6ac6b485c7e6e312e42c3c609df693f5e531ec.tar.gz
add cgitemplate
cgitemplate is a modified misctemplate that takes an optional cgi object and uses it to set the baseurl, and also optionally the forcebaseurl, if a page is provided. If no cgi object is provided, it will fall back to using $config{url}. I expect this will only be needed in exceptional cases where that doesn't much matter, such as cgierror(). showform uses cgitemplate, so there is no more need for showform_preview.
Diffstat (limited to 'IkiWiki/CGI.pm')
-rw-r--r--IkiWiki/CGI.pm46
1 files changed, 34 insertions, 12 deletions
diff --git a/IkiWiki/CGI.pm b/IkiWiki/CGI.pm
index f1bec6b8f..30d108a81 100644
--- a/IkiWiki/CGI.pm
+++ b/IkiWiki/CGI.pm
@@ -46,23 +46,45 @@ sub showform ($$$$;@) {
my $cgi=shift;
printheader($session);
- print misctemplate($form->title, $form->render(submit => $buttons), @_);
+ print cgitemplate($cgi, $form->title,
+ $form->render(submit => $buttons), @_);
}
-# Like showform, but the base url will be set to allow edit previews
-# that use links relative to the specified page.
-sub showform_preview ($$$$;@) {
- my $form=shift;
- my $buttons=shift;
- my $session=shift;
+sub cgitemplate ($$$;@) {
my $cgi=shift;
+ my $title=shift;
+ my $content=shift;
my %params=@_;
+
+ my $template=template("page.tmpl");
- # The base url needs to be a full URL, and urlto may return a path.
- my $baseurl = urlabs(urlto($params{page}), $cgi->url);
+ my $topurl = defined $cgi ? $cgi->url : $config{url};
- showform($form, $buttons, $session, $cgi, @_,
- forcebaseurl => $baseurl);
+ my $page="";
+ if (exists $params{page}) {
+ $page=delete $params{page};
+ $params{forcebaseurl}=urlabs(urlto($page), $topurl);
+ }
+ run_hooks(pagetemplate => sub {
+ shift->(
+ page => $page,
+ destpage => $page,
+ template => $template,
+ );
+ });
+ templateactions($template, "");
+
+ $template->param(
+ dynamic => 1,
+ title => $title,
+ wikiname => $config{wikiname},
+ content => $content,
+ baseurl => urlabs(urlto(undef), $topurl),
+ html5 => $config{html5},
+ %params,
+ );
+
+ return $template->output;
}
sub redirect ($$) {
@@ -439,7 +461,7 @@ sub cgierror ($) {
my $message=shift;
print "Content-type: text/html\n\n";
- print misctemplate(gettext("Error"),
+ print cgitemplate(undef, gettext("Error"),
"<p class=\"error\">".gettext("Error").": $message</p>");
die $@;
}