summaryrefslogtreecommitdiff
path: root/IkiWiki/Setup
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-07-26 01:35:26 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-07-26 01:35:26 -0400
commit278ae9afea19b20058e7ed5290305ca69c71a649 (patch)
tree996aa479ca8d98304744967070065ac197be9b0a /IkiWiki/Setup
parent0d7bc7402c9a5e922ee3eb1b093e689756b001ff (diff)
add ability to generate setup files
quite nice ones, too, with comments and everything
Diffstat (limited to 'IkiWiki/Setup')
-rw-r--r--IkiWiki/Setup/Standard.pm54
1 files changed, 52 insertions, 2 deletions
diff --git a/IkiWiki/Setup/Standard.pm b/IkiWiki/Setup/Standard.pm
index f67c3829b..2420a6644 100644
--- a/IkiWiki/Setup/Standard.pm
+++ b/IkiWiki/Setup/Standard.pm
@@ -8,8 +8,58 @@ package IkiWiki::Setup::Standard;
use warnings;
use strict;
-sub import {
+sub import { #{{{
$IkiWiki::Setup::raw_setup=$_[1];
-}
+} #}}}
+
+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 {";
+
+ 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, "";
+ }
+
+ push @ret, "}";
+ return @ret;
+} #}}}
1