]> sipb.mit.edu Git - ikiwiki.git/commitdiff
po plugin: set every configuration item to unsafe
authorintrigeri <intrigeri@boum.org>
Sun, 19 Oct 2008 15:18:17 +0000 (17:18 +0200)
committerintrigeri <intrigeri@boum.org>
Sun, 19 Oct 2008 15:19:42 +0000 (17:19 +0200)
We will check later which ones are actually safe enough for websetup.

Signed-off-by: intrigeri <intrigeri@boum.org>
IkiWiki/Plugin/po.pm
doc/plugins/po.mdwn

index 56f4162dad3db9efd054bd17256306255485798a..f535ebd397d73b23042b522e1aa8cd2b8178e31c 100644 (file)
@@ -47,7 +47,7 @@ sub getsetup () { #{{{
                                'name' => 'English'
                        },
                        description => "master language (non-PO files)",
-                       safe => 1,
+                       safe => 0,
                        rebuild => 1,
                },
                po_slave_languages => {
@@ -58,7 +58,7 @@ sub getsetup () { #{{{
                                'de' => 'Deutsch'
                        },
                        description => "slave languages (PO files)",
-                       safe => 1,
+                       safe => 0,
                        rebuild => 1,
                },
                po_translatable_pages => {
@@ -66,14 +66,14 @@ sub getsetup () { #{{{
                        example => "!*/Discussion",
                        description => "PageSpec controlling which pages are translatable",
                        link => "ikiwiki/PageSpec",
-                       safe => 1,
+                       safe => 0,
                        rebuild => 1,
                },
                po_link_to => {
                        type => "string",
                        example => "current",
                        description => "internal linking behavior (default/current/negotiated)",
-                       safe => 1,
+                       safe => 0,
                        rebuild => 1,
                },
 } #}}}
index 97c2e2d4e6fbdb5446142616db4b76011a95aa83..14d3ac65b7e672767092f7bab0f0e9d2165dd467 100644 (file)
@@ -239,6 +239,10 @@ Misc. improvements
 
 Use nice page titles from meta plugin in links, as inline already does.
 
+### websetup
+
+Which configuration settings are safe enough for websetup?
+
 Translation quality assurance
 -----------------------------