Difference between revisions of "Category talk:Archived Talk"
Jump to navigation
Jump to search
(plan to move to its own namespace) |
(agree, some pre-cooked code ready to use) |
||
Line 1: | Line 1: | ||
I don't know if anybody else is paying attention, but [[User:Rednaxela|Rednaxela]] brought up the idea of using a separate namespace for Archived Talk (on [[Talk:Migration]]), and I think it's a really good idea. I want to read up on Mediawiki namespaces a bit more before digging in and doing it, but I just wanted to note here that this is in the plans... --[[User:Voidious|Voidious]] 15:59, 29 April 2009 (UTC) | I don't know if anybody else is paying attention, but [[User:Rednaxela|Rednaxela]] brought up the idea of using a separate namespace for Archived Talk (on [[Talk:Migration]]), and I think it's a really good idea. I want to read up on Mediawiki namespaces a bit more before digging in and doing it, but I just wanted to note here that this is in the plans... --[[User:Voidious|Voidious]] 15:59, 29 April 2009 (UTC) | ||
+ | |||
+ | I'm paying. I want it. This little piece of code put in LocalSettings.php will do: | ||
+ | <pre> | ||
+ | // Custom namespace | ||
+ | define ("NS_ARCHIVED", 100); | ||
+ | define ("NS_ARCHIVED_TALK", 101); | ||
+ | $wgExtraNamespaces[NS_ARCHIVED] = "Archived"; | ||
+ | $wgExtraNamespaces[NS_ARCHIVED_TALK] = "Archived_talk"; | ||
+ | </pre> | ||
+ | At least it do on my MediaWiki/1.14 installation at Thai RoboWiki. This will create the Archived and Archived_talk: namespaces. » <span style="font-size:0.9em;color:darkgreen;">[[User:Nat|Nat]] | [[User_talk:Nat|Talk]]</span> » 16:07, 29 April 2009 (UTC) |
Revision as of 17:07, 29 April 2009
I don't know if anybody else is paying attention, but Rednaxela brought up the idea of using a separate namespace for Archived Talk (on Talk:Migration), and I think it's a really good idea. I want to read up on Mediawiki namespaces a bit more before digging in and doing it, but I just wanted to note here that this is in the plans... --Voidious 15:59, 29 April 2009 (UTC)
I'm paying. I want it. This little piece of code put in LocalSettings.php will do:
// Custom namespace define ("NS_ARCHIVED", 100); define ("NS_ARCHIVED_TALK", 101); $wgExtraNamespaces[NS_ARCHIVED] = "Archived"; $wgExtraNamespaces[NS_ARCHIVED_TALK] = "Archived_talk";
At least it do on my MediaWiki/1.14 installation at Thai RoboWiki. This will create the Archived and Archived_talk: namespaces. » Nat | Talk » 16:07, 29 April 2009 (UTC)