]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Setup/Standard.pm
* Add processed date to aggregate preprocessor directive status output.
[ikiwiki.git] / IkiWiki / Setup / Standard.pm
index 786ba70ace16abfaaa02498e3afb7e39a74f321a..b7583097daf84851b0ebc43900ae941e79677695 100644 (file)
@@ -19,7 +19,22 @@ package IkiWiki;
 sub setup_standard {
        my %setup=%{$_[1]};
 
-       if (! $config{refresh}) {
+       $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};
+       }
+       if (exists $setup{exclude}) {
+               $config{wiki_file_prune_regexp}=qr/$config{wiki_file_prune_regexp}|$setup{exclude}/;
+       }
+
+       if (! $config{refresh} || $config{wrappers}) {
                debug("generating wrappers..");
                my @wrappers=@{$setup{wrappers}};
                delete $setup{wrappers};
@@ -31,9 +46,6 @@ sub setup_standard {
                }
                %config=(%startconfig);
        }
-       else {
-               delete $setup{wrappers};
-       }
        
        foreach my $c (keys %setup) {
                if (defined $setup{$c}) {
@@ -43,6 +55,11 @@ sub setup_standard {
                        elsif (ref $setup{$c} eq 'ARRAY') {
                                $config{$c}=[map { possibly_foolish_untaint($_) } @{$setup{$c}}]
                        }
+                       elsif (ref $setup{$c} eq 'HASH') {
+                               foreach my $key (keys %{$setup{$c}}) {
+                                       $config{$c}{$key}=possibly_foolish_untaint($setup{$c}{$key});
+                               }
+                       }
                }
                else {
                        $config{$c}=undef;
@@ -57,6 +74,7 @@ sub setup_standard {
                debug("refreshing wiki..");
        }
 
+       loadplugins();
        checkconfig();
        lockwiki();
        loadindex();