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.
6 package IkiWiki::Setup::Standard;
13 IkiWiki::Setup::merge($_[1]);
16 sub dumpline ($$$$) { #{{{
22 eval q{use Data::Dumper};
24 local $Data::Dumper::Terse=1;
25 local $Data::Dumper::Indent=1;
26 local $Data::Dumper::Pad="\t";
27 local $Data::Dumper::Sortkeys=1;
28 local $Data::Dumper::Quotekeys=0;
29 # only the perl version preserves utf-8 in output
30 local $Data::Dumper::Useperl=1;
33 if (($type eq 'boolean' || $type eq 'integer') && $value=~/^[0-9]+$/) {
37 elsif (ref $value eq 'ARRAY' && @$value && ! grep { /[^\S]/ } @$value) {
38 # dump simple array as qw{}
39 $dumpedvalue="[qw{".join(" ", @$value)."}]";
42 $dumpedvalue=Dumper($value);
45 # add to second and subsequent lines
46 my @lines=split(/\n/, $dumpedvalue);
48 for (my $x=0; $x <= $#lines; $x++) {
49 $lines[$x] =~ s/^\t//;
50 $dumpedvalue.="\t".($x ? $prefix : "").$lines[$x]."\n";
53 $dumpedvalue=~s/^\t//;
57 return "\t$prefix$key => $dumpedvalue,";
60 sub dumpvalues ($@) { #{{{
67 next if $key eq "plugin" || $info{type} eq "internal";
69 push @ret, "\t# ".$info{description} if exists $info{description};
71 if (exists $setup->{$key} && defined $setup->{$key}) {
72 push @ret, dumpline($key, $setup->{$key}, $info{type}, "");
73 delete $setup->{$key};
75 elsif (exists $info{example}) {
76 push @ret, dumpline($key, $info{example}, $info{type}, "#");
79 push @ret, dumpline($key, "", $info{type}, "#");
85 sub gendump ($) { #{{{
86 my $description=shift;
90 # disable logging to syslog while dumping
91 $config{syslog}=undef;
93 push @ret, dumpvalues(\%setup, IkiWiki::getsetup());
94 foreach my $pair (IkiWiki::Setup::getsetup()) {
95 my $plugin=$pair->[0];
97 my @values=dumpvalues(\%setup, @{$setup});
99 push @ret, "", "\t# $plugin plugin", @values;
107 "# Passing this to ikiwiki --setup will make ikiwiki generate",
108 "# wrappers and build the wiki.",
110 "# Remember to re-run ikiwiki --setup any time you edit this file.",
111 "use IkiWiki::Setup::Standard {";