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;
31 if ($type eq 'boolean' || $type eq 'integer') {
35 elsif ($type eq 'string' && ref $value eq 'ARRAY' && @$value &&
36 ! grep { /[^-A-Za-z0-9_]/ } @$value) {
37 # dump simple array as qw{}
38 $dumpedvalue="[qw{ ".join(" ", @$value)." }]";
41 $dumpedvalue=Dumper($value);
44 # add to second and subsequent lines
45 my @lines=split(/\n/, $dumpedvalue);
47 for (my $x=0; $x <= $#lines; $x++) {
48 $lines[$x] =~ s/^\t//;
49 $dumpedvalue.="\t".($x ? $prefix : "").$lines[$x]."\n";
52 $dumpedvalue=~s/^\t//;
56 return "\t$prefix$key => $dumpedvalue,";
59 sub dumpvalues ($@) { #{{{
66 next if $info{type} eq "internal";
68 push @ret, "\t# ".$info{description} if exists $info{description};
70 if (exists $setup->{$key} && defined $setup->{$key}) {
71 push @ret, dumpline($key, $setup->{$key}, $info{type}, "");
72 delete $setup->{$key};
74 elsif (exists $info{example}) {
75 push @ret, dumpline($key, $info{example}, $info{type}, "#");
78 push @ret, dumpline($key, "", $info{type}, "#");
84 sub gendump ($) { #{{{
85 my $description=shift;
89 # disable logging to syslog while dumping
92 push @ret, "\t# basic setup";
93 push @ret, dumpvalues(\%setup, IkiWiki::getsetup());
95 # Load all plugins, so that all setup options are available.
96 # (But skip a few problematic external demo plugins.)
97 my @plugins=grep { ! /^(externaldemo|pythondemo|\Q$config{rcs}\E)$/ }
98 sort(IkiWiki::listplugins());
99 unshift @plugins, $config{rcs} if $config{rcs}; # rcs plugin 1st
100 foreach my $plugin (@plugins) {
101 eval { IkiWiki::loadplugin($plugin) };
102 if (exists $IkiWiki::hooks{checkconfig}{$plugin}{call}) {
103 my @s=eval { $IkiWiki::hooks{checkconfig}{$plugin}{call}->() };
107 foreach my $id (@plugins) {
108 if (exists $IkiWiki::hooks{getsetup}{$id}{call}) {
109 # use an array rather than a hash, to preserve order
110 my @s=eval { $IkiWiki::hooks{getsetup}{$id}{call}->() };
112 push @ret, "", "\t# $id plugin";
113 push @ret, dumpvalues(\%setup, @s);
121 "# Passing this to ikiwiki --setup will make ikiwiki generate",
122 "# wrappers and build the wiki.",
124 "# Remember to re-run ikiwiki --setup any time you edit this file.",
125 "use IkiWiki::Setup::Standard {";