]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - IkiWiki/Setup/Standard.pm
allow multiple setup file types, and support safe parsing
[git.ikiwiki.info.git] / IkiWiki / Setup / Standard.pm
index c99dbb620d9473cca44bbec527c115d47a5574d5..4022ff03cb14941296e03f87288e3f2e2f890130 100644 (file)
@@ -82,24 +82,34 @@ sub dumpvalues ($@) {
        return @ret;
 }
 
-sub gendump ($) {
+sub gendump ($$) {
+       my $class=shift;
        my $description=shift;
+
        my %setup=(%config);
        my @ret;
        
        # disable logging to syslog while dumping
        $config{syslog}=undef;
 
-       my $curr_section;
+       eval q{use Text::Wrap};
+       die $@ if $@;
+
+       my %section_plugins;
        push @ret, dumpvalues(\%setup, IkiWiki::getsetup());
        foreach my $pair (IkiWiki::Setup::getsetup()) {
                my $plugin=$pair->[0];
                my $setup=$pair->[1];
                my %s=@{$setup};
                my $section=$s{plugin}->{section};
-               if (! defined $curr_section || $curr_section ne $section) {
-                       $curr_section=$section;
-                       push @ret, "", "\t#", "\t# $section plugins", "\t#";
+               push @{$section_plugins{$section}}, $plugin;
+               if (@{$section_plugins{$section}} == 1) {
+                       push @ret, "", "\t".("#" x 70), "\t# $section plugins",
+                               sub {
+                                       wrap("\t#   (", "\t#    ",
+                                               join(", ", @{$section_plugins{$section}})).")"
+                               },
+                               "\t".("#" x 70);
                }
 
                my @values=dumpvalues(\%setup, @{$setup});
@@ -119,7 +129,7 @@ sub gendump ($) {
                "use IkiWiki::Setup::Standard {";
        push @ret, "}";
 
-       return @ret;
+       return map { ref $_ ? $_->() : $_ } @ret;
 }
 
 1