# pings interrupting page builds.
hook(type => "change", id => "inline",
call => \&IkiWiki::pingurl);
-
} # }}}
sub getopt () { #{{{
rss => {
type => "boolean",
default => 0,
- description => "enable rss feeds by default",
+ description => "enable rss feeds by default?",
safe => 1,
rebuild => 1,
},
atom => {
type => "boolean",
default => 0,
- description => "enable atom feeds by default",
+ description => "enable atom feeds by default?",
safe => 1,
rebuild => 1,
},
allowrss => {
type => "boolean",
default => 0,
- description => "allow rss feeds to be used",
+ description => "allow rss feeds to be used?",
safe => 1,
rebuild => 1,
},
allowatom => {
type => "boolean",
default => 0,
- description => "allow atom feeds to be used",
+ description => "allow atom feeds to be used?",
safe => 1,
rebuild => 1,
},
type => "string",
default => "",
example => "http://rpc.technorati.com/rpc/ping",
- description => "urls to ping (using XMP-RPC) on feed update",
+ description => "urls to ping (using XML-RPC) on feed update",
safe => 1,
rebuild => 0,
},
if ($config{atom}) {
push @{$config{wiki_file_prune_regexps}}, qr/\.atom$/;
}
+ if (! exists $config{pingurl}) {
+ $config{pingurl}=[];
+ }
} #}}}
sub format (@) { #{{{