summaryrefslogtreecommitdiff
path: root/IkiWiki
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-08-05 20:11:56 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-08-05 20:11:56 -0400
commitbf8558f346f8c8592526f9707541da7b22012bac (patch)
tree13a6258589823abdd0ba17814b9bfaf5dea40143 /IkiWiki
parent9802fbee404cc20027634eba7f58b78c569b7c5f (diff)
save to real setup file, and rebuild/refresh
Diffstat (limited to 'IkiWiki')
-rw-r--r--IkiWiki/Plugin/websetup.pm41
1 files changed, 33 insertions, 8 deletions
diff --git a/IkiWiki/Plugin/websetup.pm b/IkiWiki/Plugin/websetup.pm
index 2a5e27bf9..827ee3099 100644
--- a/IkiWiki/Plugin/websetup.pm
+++ b/IkiWiki/Plugin/websetup.pm
@@ -236,6 +236,10 @@ sub showform ($$) { #{{{
error(gettext("you are not logged in as an admin"));
}
+ if (! exists $config{setupfile}) {
+ error(gettext("setup file for this wiki is not known"));
+ }
+
eval q{use CGI::FormBuilder};
error($@) if $@;
@@ -399,19 +403,40 @@ sub showform ($$) { #{{{
$form->reset(0); # doesn't really make sense here
}
else {
- $form->field(name => "rebuild_asked", type => "hidden",
- value => 0, force => 1);
- # TODO save to real path
- IkiWiki::Setup::dump("/tmp/s");
- $form->text(gettext("Setup saved."));
+ IkiWiki::Setup::dump($config{setupfile});
+
+ IkiWiki::saveindex();
+ IkiWiki::unlockwiki();
+
+ # Print the top part of a standard misctemplate,
+ # then show the rebuild or refresh.
+ my $divider="xxx";
+ my $html=IkiWiki::misctemplate("setup", $divider);
+ IkiWiki::printheader($session);
+ my ($head, $tail)=split($divider, $html, 2);
+ print $head."<pre>\n";
+ my @command;
if ($form->submitted eq 'Rebuild Wiki') {
- # TODO rebuild
+ @command=("ikiwiki", "-setup", $config{setupfile},
+ "-rebuild", "-v");
}
else {
- # TODO refresh wiki and wrappers
+ @command=("ikiwiki", "-setup", $config{setupfile},
+ "-refresh", "-wrappers", "-v");
}
-
+
+ my $ret=system(@command);
+ print "\n<pre>";
+ if ($ret != 0) {
+ print '<p class="error">'.
+ sprintf(gettext("<p class=\"error\">Error: %s exited nonzero (%s)"),
+ join(" ", @command), $ret).
+ '</p>';
+ }
+
+ print $tail;
+ exit 0;
}
}