mirror of https://gitlab.crans.org/nounous/nixos
Add new namespaces
parent
92afe359dc
commit
0f7707cbbb
|
|
@ -143,12 +143,23 @@ in
|
|||
# Custom Namespaces
|
||||
define("NS_ARCHIVE", 3000);
|
||||
define("NS_ARCHIVE_TALK", 3001);
|
||||
$wgExtraNamespaces[NS_ARCHIVE] = "Archive";
|
||||
$wgExtraNamespaces[NS_ARCHIVE_TALK] = "Discussion_archive";
|
||||
define("NS_PUBLIC", 3002);
|
||||
define("NS_PUBLIC_TALK", 3003);
|
||||
define("NS_INTERNE", 3004);
|
||||
define("NS_INTERNE_TALK", 3005);
|
||||
$wgExtraNamespaces[
|
||||
NS_ARCHIVE => "Archive",
|
||||
NS_ARCHIVE_TALK => "Discussion_archive",
|
||||
NS_PUBLIC => "Public",
|
||||
NS_PUBLIC_TALK => "Discussions_pages_publiques",
|
||||
NS_INTERNE => "Interne",
|
||||
NS_INTERNE_TALK => "Discussions_pages_internes"
|
||||
];
|
||||
|
||||
# Debug
|
||||
$wgShowExceptionDetails = true;
|
||||
$wgDebugToolbar = true;
|
||||
$wgDebugLogFile = "/var/log/mediawiki/debug.log";
|
||||
# $wgShowDebug = true;
|
||||
# $wgDevelopmentWarnings = true;
|
||||
'';
|
||||
|
|
|
|||
Loading…
Reference in New Issue