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.
|
|
|
|
|
|
|
|
package IkiWiki::Setup::Standard;
|
|
|
|
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
sub import {
|
|
|
|
my %setup=%{$_[1]};
|
|
|
|
|
|
|
|
::debug("generating wrappers..");
|
2006-03-23 05:02:19 +01:00
|
|
|
my %startconfig=(%::config);
|
2006-03-15 05:59:39 +01:00
|
|
|
foreach my $wrapper (@{$setup{wrappers}}) {
|
2006-03-23 05:02:19 +01:00
|
|
|
%::config=(%startconfig, verbose => 0, %setup, %{$wrapper});
|
2006-03-23 05:01:02 +01:00
|
|
|
::checkoptions();
|
|
|
|
::gen_wrapper();
|
2006-03-15 04:24:34 +01:00
|
|
|
}
|
2006-03-23 05:07:58 +01:00
|
|
|
%::config=(%startconfig);
|
|
|
|
|
2006-03-15 04:24:34 +01:00
|
|
|
::debug("rebuilding wiki..");
|
|
|
|
foreach my $c (keys %setup) {
|
|
|
|
$::config{$c}=::possibly_foolish_untaint($setup{$c})
|
|
|
|
if defined $setup{$c} && ! ref $setup{$c};
|
|
|
|
}
|
|
|
|
$::config{rebuild}=1;
|
2006-03-23 05:01:02 +01:00
|
|
|
::checkoptions();
|
2006-03-15 04:24:34 +01:00
|
|
|
::refresh();
|
|
|
|
|
|
|
|
::debug("done");
|
|
|
|
::saveindex();
|
|
|
|
}
|
|
|
|
|
|
|
|
1
|