]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Setup/Standard.pm
add ability to generate setup files
[ikiwiki.git] / IkiWiki / Setup / Standard.pm
index 76213b11aa2636987f3c669ae21379d984e767ff..2420a66442f78210240b4d5140d2b54d36cf49bb 100644 (file)
@@ -1,35 +1,65 @@
 #!/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.
+# plus an array of wrappers to set up.
 
 package IkiWiki::Setup::Standard;
 
 use warnings;
 use strict;
 
-sub import {
-       my %setup=%{$_[1]};
+sub import { #{{{
+       $IkiWiki::Setup::raw_setup=$_[1];
+} #}}}
 
-       ::debug("generating wrappers..");
-       foreach my $wrapper (@{$setup{wrappers}}) {
-               %::config=(%::config, verbose => 0, %setup, %{$wrapper});
-               ::checkoptions();
-               ::gen_wrapper();
-       }
+sub generate (@) { #{{{
+       my %setup=@_;
+
+       eval q{use Data::Dumper};
+       error($@) if $@;
+       local $Data::Dumper::Terse=1;
+
+       my @ret="#!/usr/bin/perl
+# Setup file for ikiwiki.
+# Passing this to ikiwiki --setup will make ikiwiki generate wrappers and
+# build the wiki.
+#
+# Remember to re-run ikiwiki --setup any time you edit this file.
+
+use IkiWiki::Setup::Standard {";
 
-       ::debug("rebuilding wiki..");
-       foreach my $c (keys %setup) {
-               $::config{$c}=::possibly_foolish_untaint($setup{$c})
-                       if defined $setup{$c} && ! ref $setup{$c};
+       foreach my $id (sort keys %{$IkiWiki::hooks{getsetup}}) {
+               my @setup=$IkiWiki::hooks{getsetup}{$id}{call}->();
+               return unless @setup;
+               push @ret, "\t# $id plugin";
+               while (@setup) {
+                       my $key=shift @setup;
+                       my %info=%{shift @setup};
+       
+                       push @ret, "\t# ".$info{description} if exists $info{description};
+       
+                       my $value=undef;
+                       my $prefix="#";
+                       if (exists $setup{$key} && defined $setup{$key}) {
+                               $value=$setup{$key};
+                               $prefix="";
+                       }
+                       elsif (exists $info{default}) {
+                               $value=$info{default};
+                       }
+                       elsif (exists $info{example}) {
+                               $value=$info{example};
+                       }
+       
+                       my $dumpedvalue=Dumper($value);
+                       chomp $dumpedvalue;
+                       push @ret, "\t$prefix$key=$dumpedvalue,";
+               }
+               push @ret, "";
        }
-       $::config{rebuild}=1;
-       ::checkoptions();
-       ::refresh();
 
-       ::debug("done");
-       ::saveindex();
-}
+       push @ret, "}";
+       return @ret;
+} #}}}
 
 1