diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-07-26 19:28:15 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-07-26 19:28:15 -0400 |
commit | 8051316904d13de3e467f01ebaeacaa5d8efb1b6 (patch) | |
tree | 4d11c3557475acec4a5738f404a79e4aca62b0f1 /IkiWiki/Plugin | |
parent | bb872ea1e820f842c0b826fe802f8aac797a7146 (diff) |
add missing setup options, tweak others' display
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/amazon_s3.pm | 12 | ||||
-rw-r--r-- | IkiWiki/Plugin/anonok.pm | 3 | ||||
-rw-r--r-- | IkiWiki/Plugin/attachment.pm | 2 | ||||
-rw-r--r-- | IkiWiki/Plugin/mirrorlist.pm | 2 |
4 files changed, 8 insertions, 11 deletions
diff --git a/IkiWiki/Plugin/amazon_s3.pm b/IkiWiki/Plugin/amazon_s3.pm index 9cb74fb1e..d9279b680 100644 --- a/IkiWiki/Plugin/amazon_s3.pm +++ b/IkiWiki/Plugin/amazon_s3.pm @@ -44,21 +44,20 @@ sub getsetup () { #{{{ return amazon_s3_key_id => { type => "string", - default => "", + example => "XXXXXXXXXXXXXXXXXXXX", description => "public access key id", safe => 1, rebuild => 0, }, amazon_s3_key_id => { type => "string", - default => "", - description => "file holding secret key", + example => "$ENV{HOME}/.s3_key", + description => "file holding secret key (must not be readable by others!)", safe => 0, # ikiwiki reads this file rebuild => 0, }, amazon_s3_bucket => { type => "string", - default => "", example => "mywiki", description => "globally unique name of bucket to store wiki in", safe => 1, @@ -66,14 +65,13 @@ sub getsetup () { #{{{ }, amazon_s3_prefix => { type => "string", - default => "wiki/", + example => "wiki/", description => "a prefix to prepend to each page name", safe => 1, rebuild => 1, }, amazon_s3_location => { type => "string", - default => "", example => "EU", description => "which S3 datacenter to use (leave blank for default)", safe => 1, @@ -82,7 +80,7 @@ sub getsetup () { #{{{ amazon_s3_dupindex => { type => "boolean", default => 0, - description => "store each index file twice? (to allow urls ending in \"/index.html\" and \"/\")", + description => "store each index file twice? (allows urls ending in \"/index.html\" and \"/\")", safe => 1, rebuild => 1, }, diff --git a/IkiWiki/Plugin/anonok.pm b/IkiWiki/Plugin/anonok.pm index e61549986..7b966f845 100644 --- a/IkiWiki/Plugin/anonok.pm +++ b/IkiWiki/Plugin/anonok.pm @@ -14,9 +14,8 @@ sub getsetup () { #{{{ return anonok_pagespec => { type => "string", - default => "", example => "*/discussion", - description => "PageSpec to limit which pages anonymouse users can edit", + description => "PageSpec to limit which pages anonymous users can edit", safe => 1, rebuild => 0, }, diff --git a/IkiWiki/Plugin/attachment.pm b/IkiWiki/Plugin/attachment.pm index 3fe33c858..6f707832d 100644 --- a/IkiWiki/Plugin/attachment.pm +++ b/IkiWiki/Plugin/attachment.pm @@ -14,7 +14,7 @@ sub import { #{{{ sub getsetup () { #{{{ return - => { + virus_checker => { type => "string", default => "", example => "clamdscan -", diff --git a/IkiWiki/Plugin/mirrorlist.pm b/IkiWiki/Plugin/mirrorlist.pm index c7630d81f..eb273561d 100644 --- a/IkiWiki/Plugin/mirrorlist.pm +++ b/IkiWiki/Plugin/mirrorlist.pm @@ -14,7 +14,7 @@ sub getsetup () { #{{{ return mirrorlist => { type => "string", - default => "", + default => {}, description => "list of mirrors", safe => 1, rebuild => 1, |