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,
|
2006-04-21 18:39:59 +02:00
|
|
|
# plus an array of wrappers to set up.
|
2006-03-15 04:24:34 +01:00
|
|
|
|
|
|
|
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-26 07:08:41 +02:00
|
|
|
if (! $config{refresh}) {
|
|
|
|
debug("generating wrappers..");
|
2006-05-03 23:50:39 +02:00
|
|
|
my @wrappers=@{$setup{wrappers}};
|
|
|
|
delete $setup{wrappers};
|
2006-03-26 07:08:41 +02:00
|
|
|
my %startconfig=(%config);
|
2006-05-03 23:50:39 +02:00
|
|
|
foreach my $wrapper (@wrappers) {
|
2006-03-26 07:08:41 +02:00
|
|
|
%config=(%startconfig, verbose => 0, %setup, %{$wrapper});
|
|
|
|
checkconfig();
|
|
|
|
gen_wrapper();
|
|
|
|
}
|
|
|
|
%config=(%startconfig);
|
2006-03-15 04:24:34 +01:00
|
|
|
}
|
2006-05-03 23:50:39 +02:00
|
|
|
else {
|
|
|
|
delete $setup{wrappers};
|
|
|
|
}
|
|
|
|
|
2006-03-15 04:24:34 +01:00
|
|
|
foreach my $c (keys %setup) {
|
2006-05-02 06:18:44 +02:00
|
|
|
if (defined $setup{$c}) {
|
|
|
|
if (! ref $setup{$c}) {
|
|
|
|
$config{$c}=possibly_foolish_untaint($setup{$c});
|
|
|
|
}
|
|
|
|
elsif (ref $setup{$c} eq 'ARRAY') {
|
|
|
|
$config{$c}=[map { possibly_foolish_untaint($_) } @{$setup{$c}}]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$config{$c}=undef;
|
|
|
|
}
|
2006-03-15 04:24:34 +01:00
|
|
|
}
|
2006-05-02 06:18:44 +02:00
|
|
|
|
2006-03-26 07:08:41 +02:00
|
|
|
if (! $config{refresh}) {
|
|
|
|
$config{rebuild}=1;
|
|
|
|
debug("rebuilding wiki..");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
debug("refreshing wiki..");
|
|
|
|
}
|
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
|