aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/aggregate.pm
diff options
context:
space:
mode:
authorAmitai Schlair <schmonz-web-ikiwiki@schmonz.com>2013-08-03 09:55:54 -0400
committerAmitai Schlair <schmonz-web-ikiwiki@schmonz.com>2013-08-03 09:55:54 -0400
commitd844a3487ed03fc35eecd89c6924c5e5ad36b4c5 (patch)
tree96e1fb55d8465f64721ff28a1802c9f788e35ebc /IkiWiki/Plugin/aggregate.pm
parent61f4dbb8bec4c39a4c48aa67493e34205a3f3b06 (diff)
downloadikiwiki-d844a3487ed03fc35eecd89c6924c5e5ad36b4c5.tar
ikiwiki-d844a3487ed03fc35eecd89c6924c5e5ad36b4c5.tar.gz
cookiejar is now a core config setting.
Diffstat (limited to 'IkiWiki/Plugin/aggregate.pm')
-rw-r--r--IkiWiki/Plugin/aggregate.pm9
1 files changed, 0 insertions, 9 deletions
diff --git a/IkiWiki/Plugin/aggregate.pm b/IkiWiki/Plugin/aggregate.pm
index ccbc6c9a9..3e3eb6d93 100644
--- a/IkiWiki/Plugin/aggregate.pm
+++ b/IkiWiki/Plugin/aggregate.pm
@@ -58,21 +58,12 @@ sub getsetup () {
safe => 1,
rebuild => 0,
},
- cookiejar => {
- type => "string",
- example => { file => "$ENV{HOME}/.ikiwiki/cookies" },
- safe => 0, # hooks into perl module internals
- description => "cookie control",
- },
}
sub checkconfig () {
if (! defined $config{aggregateinternal}) {
$config{aggregateinternal}=1;
}
- if (! defined $config{cookiejar}) {
- $config{cookiejar}={ file => "$ENV{HOME}/.ikiwiki/cookies" };
- }
# This is done here rather than in a refresh hook because it
# needs to run before the wiki is locked.