po plugin: set every configuration item to unsafe
We will check later which ones are actually safe enough for websetup. Signed-off-by: intrigeri <intrigeri@boum.org>master
parent
b4316fd941
commit
8211910566
|
@ -47,7 +47,7 @@ sub getsetup () { #{{{
|
||||||
'name' => 'English'
|
'name' => 'English'
|
||||||
},
|
},
|
||||||
description => "master language (non-PO files)",
|
description => "master language (non-PO files)",
|
||||||
safe => 1,
|
safe => 0,
|
||||||
rebuild => 1,
|
rebuild => 1,
|
||||||
},
|
},
|
||||||
po_slave_languages => {
|
po_slave_languages => {
|
||||||
|
@ -58,7 +58,7 @@ sub getsetup () { #{{{
|
||||||
'de' => 'Deutsch'
|
'de' => 'Deutsch'
|
||||||
},
|
},
|
||||||
description => "slave languages (PO files)",
|
description => "slave languages (PO files)",
|
||||||
safe => 1,
|
safe => 0,
|
||||||
rebuild => 1,
|
rebuild => 1,
|
||||||
},
|
},
|
||||||
po_translatable_pages => {
|
po_translatable_pages => {
|
||||||
|
@ -66,14 +66,14 @@ sub getsetup () { #{{{
|
||||||
example => "!*/Discussion",
|
example => "!*/Discussion",
|
||||||
description => "PageSpec controlling which pages are translatable",
|
description => "PageSpec controlling which pages are translatable",
|
||||||
link => "ikiwiki/PageSpec",
|
link => "ikiwiki/PageSpec",
|
||||||
safe => 1,
|
safe => 0,
|
||||||
rebuild => 1,
|
rebuild => 1,
|
||||||
},
|
},
|
||||||
po_link_to => {
|
po_link_to => {
|
||||||
type => "string",
|
type => "string",
|
||||||
example => "current",
|
example => "current",
|
||||||
description => "internal linking behavior (default/current/negotiated)",
|
description => "internal linking behavior (default/current/negotiated)",
|
||||||
safe => 1,
|
safe => 0,
|
||||||
rebuild => 1,
|
rebuild => 1,
|
||||||
},
|
},
|
||||||
} #}}}
|
} #}}}
|
||||||
|
|
|
@ -239,6 +239,10 @@ Misc. improvements
|
||||||
|
|
||||||
Use nice page titles from meta plugin in links, as inline already does.
|
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
|
Translation quality assurance
|
||||||
-----------------------------
|
-----------------------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue