]> sipb.mit.edu Git - ikiwiki.git/commitdiff
turn booleans into questions
authorJoey Hess <joey@kodama.kitenet.net>
Sat, 26 Jul 2008 18:43:47 +0000 (14:43 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Sat, 26 Jul 2008 18:43:47 +0000 (14:43 -0400)
IkiWiki.pm
IkiWiki/Plugin/aggregate.pm
IkiWiki/Plugin/amazon_s3.pm
IkiWiki/Plugin/inline.pm
IkiWiki/Plugin/mdwn.pm

index 6a72a0144e9da40c7cd00a6f2ec09fe8835fd085..7b6c4d622a34ab51fa5927cf3b9c7c4a459484ea 100644 (file)
@@ -116,7 +116,7 @@ sub getsetup () { #{{{
        discussion => {
                type => "boolean",
                default => 1,
-               description => "enable Discussion pages",
+               description => "enable Discussion pages?",
                safe => 1,
                rebuild => 1,
        },
@@ -166,14 +166,14 @@ sub getsetup () { #{{{
        verbose => {
                type => "boolean",
                default => 0,
-               description => "display verbose messages when building",
+               description => "display verbose messages when building?",
                safe => 1,
                rebuild => 0,
        },
        syslog => {
                type => "boolean",
                default => 0,
-               description => "log to syslog",
+               description => "log to syslog?",
                safe => 1,
                rebuild => 0,
        },
@@ -245,7 +245,7 @@ sub getsetup () { #{{{
        hardlink => {
                type => "boolean",
                default => 0,
-               description => "attempt to hardlink source files (optimisation for large files)",
+               description => "attempt to hardlink source files? (optimisation for large files)",
                safe => 0, # paranoia
                rebuild => 0,
        },
index be62d8a1aeb31add542cfb39dcf90556aeb5ee73..0886fd753f3f09bfe35e4cc5d0c74647e97bc309 100644 (file)
@@ -43,14 +43,14 @@ sub getsetup () { #{{{
                aggregateinternal => {
                        type => "boolean",
                        default => 0,
-                       description => "enable aggregation to internal pages",
+                       description => "enable aggregation to internal pages?",
                        safe => 0, # enabling needs manual transition
                        rebuild => 0,
                },
                aggregate_webtrigger => {
                        type => "boolean",
                        default => 0,
-                       description => "allow aggregation to be triggered via the web",
+                       description => "allow aggregation to be triggered via the web?",
                        safe => 1,
                        rebuild => 0,
                },
index b7470ca7950da421c91cd0d98b7300b82e86b7b4..9cb74fb1e805e14dfc5fae71cfd1dd694655aea5 100644 (file)
@@ -43,7 +43,7 @@ sub getopt () { #{{{
 sub getsetup () { #{{{
        return
                 amazon_s3_key_id => {
-                       type => "boolean",
+                       type => "string",
                        default => "",
                        description => "public access key id",
                        safe => 1,
@@ -82,7 +82,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? (to allow urls ending in \"/index.html\" and \"/\")",
                        safe => 1,
                        rebuild => 1,
                },
index 4d96001ed7bffdf653de4ef631fdbdf029d24205..f8150fd72396e4029215ba764afee2c4237d0279 100644 (file)
@@ -50,28 +50,28 @@ sub getsetup () { #{{{
                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,
                },
index 920d90e5e5eb8f81abf8560f402cd8d849e4c72b..59cb93bc41e3103ab8c5dd61658a1bac542d0b25 100644 (file)
@@ -16,7 +16,7 @@ sub getsetup () { #{{{
                multimarkdown => {
                        type => "boolean",
                        default => 0,
-                       description => "enable use of multimarkdown features",
+                       description => "enable multimarkdown features?",
                        safe => 1,
                        rebuild => 1,
                },