2006-03-15 04:24:34 +01:00
|
|
|
#!/usr/bin/perl
|
|
|
|
# Standard ikiwiki setup module.
|
|
|
|
# Parameters to import should be all the standard ikiwiki config stuff,
|
|
|
|
# plus hashes for cgiwrapper and svnwrapper, which specify any differing
|
|
|
|
# config stuff for them and cause the wrappers to be made.
|
|
|
|
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
2006-03-23 07:51:15 +01:00
|
|
|
use IkiWiki::Wrapper;
|
2006-03-23 08:55:25 +01:00
|
|
|
use IkiWiki::Render;
|
2006-03-23 07:51:15 +01:00
|
|
|
|
|
|
|
package IkiWiki::Setup::Standard;
|
2006-03-15 04:24:34 +01:00
|
|
|
|
|
|
|
sub import {
|
2006-03-23 07:51:15 +01:00
|
|
|
IkiWiki::setup_standard(@_);
|
|
|
|
}
|
|
|
|
|
|
|
|
package IkiWiki;
|
|
|
|
|
|
|
|
sub setup_standard {
|
2006-03-15 04:24:34 +01:00
|
|
|
my %setup=%{$_[1]};
|
|
|
|
|
2006-03-23 07:51:15 +01:00
|
|
|
debug("generating wrappers..");
|
|
|
|
my %startconfig=(%config);
|
2006-03-15 05:59:39 +01:00
|
|
|
foreach my $wrapper (@{$setup{wrappers}}) {
|
2006-03-23 07:51:15 +01:00
|
|
|
%config=(%startconfig, verbose => 0, %setup, %{$wrapper});
|
2006-03-23 09:04:34 +01:00
|
|
|
checkconfig();
|
2006-03-23 07:51:15 +01:00
|
|
|
gen_wrapper();
|
2006-03-15 04:24:34 +01:00
|
|
|
}
|
2006-03-23 07:51:15 +01:00
|
|
|
%config=(%startconfig);
|
2006-03-23 05:07:58 +01:00
|
|
|
|
2006-03-23 07:51:15 +01:00
|
|
|
debug("rebuilding wiki..");
|
2006-03-15 04:24:34 +01:00
|
|
|
foreach my $c (keys %setup) {
|
2006-03-23 07:51:15 +01:00
|
|
|
$config{$c}=possibly_foolish_untaint($setup{$c})
|
2006-03-15 04:24:34 +01:00
|
|
|
if defined $setup{$c} && ! ref $setup{$c};
|
|
|
|
}
|
2006-03-23 07:51:15 +01:00
|
|
|
$config{rebuild}=1;
|
2006-03-23 08:58:43 +01:00
|
|
|
|
2006-03-23 09:04:34 +01:00
|
|
|
checkconfig();
|
2006-03-23 08:58:43 +01:00
|
|
|
lockwiki();
|
2006-03-24 03:11:10 +01:00
|
|
|
loadindex();
|
2006-03-23 07:51:15 +01:00
|
|
|
refresh();
|
2006-03-15 04:24:34 +01:00
|
|
|
|
2006-03-23 07:51:15 +01:00
|
|
|
debug("done");
|
|
|
|
saveindex();
|
2006-03-15 04:24:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
1
|