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-07-03 23:29:56 +02:00
|
|
|
$setup{plugin}=$config{plugin};
|
|
|
|
if (exists $setup{add_plugins}) {
|
|
|
|
push @{$setup{plugin}}, @{$setup{add_plugins}};
|
|
|
|
delete $setup{add_plugins};
|
|
|
|
}
|
|
|
|
if (exists $setup{disable_plugins}) {
|
|
|
|
foreach my $plugin (@{$setup{disable_plugins}}) {
|
|
|
|
$setup{plugin}=[grep { $_ ne $plugin } @{$setup{plugin}}];
|
|
|
|
}
|
|
|
|
delete $setup{disable_plugins};
|
|
|
|
}
|
2006-07-28 19:48:24 +02:00
|
|
|
if (exists $setup{exclude}) {
|
2006-12-21 20:36:15 +01:00
|
|
|
push @{$config{wiki_file_prune_regexps}}, $setup{exclude};
|
2006-07-28 19:48:24 +02:00
|
|
|
}
|
2006-07-03 23:29:56 +02:00
|
|
|
|
2006-09-21 23:34:29 +02:00
|
|
|
if (! $config{render} && (! $config{refresh} || $config{wrappers})) {
|
2006-07-30 06:31:08 +02:00
|
|
|
debug("generating wrappers..");
|
|
|
|
my @wrappers=@{$setup{wrappers}};
|
|
|
|
delete $setup{wrappers};
|
|
|
|
my %startconfig=(%config);
|
|
|
|
foreach my $wrapper (@wrappers) {
|
|
|
|
%config=(%startconfig, verbose => 0, %setup, %{$wrapper});
|
|
|
|
checkconfig();
|
|
|
|
gen_wrapper();
|
|
|
|
}
|
|
|
|
%config=(%startconfig);
|
2006-05-03 23:50:39 +02:00
|
|
|
}
|
|
|
|
|
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}}]
|
|
|
|
}
|
2006-08-23 20:41:32 +02:00
|
|
|
elsif (ref $setup{$c} eq 'HASH') {
|
|
|
|
foreach my $key (keys %{$setup{$c}}) {
|
|
|
|
$config{$c}{$key}=possibly_foolish_untaint($setup{$c}{$key});
|
|
|
|
}
|
|
|
|
}
|
2006-05-02 06:18:44 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$config{$c}=undef;
|
|
|
|
}
|
2006-03-15 04:24:34 +01:00
|
|
|
}
|
2006-05-02 06:18:44 +02:00
|
|
|
|
2006-09-21 23:34:29 +02:00
|
|
|
if ($config{render}) {
|
|
|
|
commandline_render();
|
|
|
|
}
|
|
|
|
elsif (! $config{refresh}) {
|
2006-03-26 07:08:41 +02:00
|
|
|
$config{rebuild}=1;
|
|
|
|
debug("rebuilding wiki..");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
debug("refreshing wiki..");
|
|
|
|
}
|
2006-03-23 08:58:43 +01:00
|
|
|
|
2006-07-28 07:26:49 +02:00
|
|
|
loadplugins();
|
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
|