2 # Standard ikiwiki setup module.
3 # Parameters to import should be all the standard ikiwiki config stuff,
4 # plus an array of wrappers to set up.
11 package IkiWiki::Setup::Standard;
14 IkiWiki::setup_standard(@_);
22 $setup{plugin}=$config{plugin};
23 if (exists $setup{add_plugins}) {
24 push @{$setup{plugin}}, @{$setup{add_plugins}};
25 delete $setup{add_plugins};
27 if (exists $setup{disable_plugins}) {
28 foreach my $plugin (@{$setup{disable_plugins}}) {
29 $setup{plugin}=[grep { $_ ne $plugin } @{$setup{plugin}}];
31 delete $setup{disable_plugins};
33 if (exists $setup{exclude}) {
34 $config{wiki_file_prune_regexp}=qr/$config{wiki_file_prune_regexp}|$setup{exclude}/;
37 if (! $config{render} && (! $config{refresh} || $config{wrappers})) {
38 debug("generating wrappers..");
39 my @wrappers=@{$setup{wrappers}};
40 delete $setup{wrappers};
41 my %startconfig=(%config);
42 foreach my $wrapper (@wrappers) {
43 %config=(%startconfig, verbose => 0, %setup, %{$wrapper});
47 %config=(%startconfig);
50 foreach my $c (keys %setup) {
51 if (defined $setup{$c}) {
52 if (! ref $setup{$c}) {
53 $config{$c}=possibly_foolish_untaint($setup{$c});
55 elsif (ref $setup{$c} eq 'ARRAY') {
56 $config{$c}=[map { possibly_foolish_untaint($_) } @{$setup{$c}}]
58 elsif (ref $setup{$c} eq 'HASH') {
59 foreach my $key (keys %{$setup{$c}}) {
60 $config{$c}{$key}=possibly_foolish_untaint($setup{$c}{$key});
69 if ($config{render}) {
72 elsif (! $config{refresh}) {
74 debug("rebuilding wiki..");
77 debug("refreshing wiki..");