diff options
author | Nicolas Vigier <boklm@mageia.org> | 2012-05-30 16:15:31 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2012-05-30 16:15:31 +0000 |
commit | 6f99926171e989a0862cded41a1e3fdcdb16c599 (patch) | |
tree | 88b0dad609a1a43d272513c39312bafff71adbcb | |
parent | 9cf7f57a1a8866cc8dc5a24d233fb80e908c616e (diff) | |
download | puppet-6f99926171e989a0862cded41a1e3fdcdb16c599.tar puppet-6f99926171e989a0862cded41a1e3fdcdb16c599.tar.gz puppet-6f99926171e989a0862cded41a1e3fdcdb16c599.tar.bz2 puppet-6f99926171e989a0862cded41a1e3fdcdb16c599.tar.xz puppet-6f99926171e989a0862cded41a1e3fdcdb16c599.zip |
add Feature namespace
-rw-r--r-- | deployment/wikis/templates/wiki_settings | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/deployment/wikis/templates/wiki_settings b/deployment/wikis/templates/wiki_settings index 3714bacd..43a68621 100644 --- a/deployment/wikis/templates/wiki_settings +++ b/deployment/wikis/templates/wiki_settings @@ -17,3 +17,11 @@ $wgLogo = ""; $wgDefaultSkin = 'cavendish'; $wgFavicon = '/mw-en/skins/cavendish/favicon.png'; $wgRightsIcon = 'https://i.creativecommons.org/l/by-sa/3.0/88x31.png'; + +define('NS_FEATURE', 100); +define('NS_FEATURE_TALK', 101); +$wgExtraNamespaces[NS_FEATURE] = 'Feature'; +$wgExtraNamespaces[NS_FEATURE_TALK] = 'Feature_Talk'; +$wgContentNamespaces[] = NS_FEATURE; +$wgNamespacesToBeSearchedDefault[NS_FEATURE] = true; + |