Revision
22 -
Wed May 28 20:31:35 2008 UTC
(2 years, 3 months ago)
by
dantman
File size: 532 byte(s)
What the... Where the hell did that come from?
1 # -*- coding: utf-8 -*-
2 import family, wikia_basefamily
3
4 # The Animepedia. (anime.wikia.com)
5
6 class Family(wikia_basefamily.Family):
7
8 def __init__(self):
9
10 wikia_basefamily.Family.__init__(self)
11
12 self.name = 'anime'
13 self.langs = { 'en': u'anime.wikia.com', }
14 self.wikia['projectns'] = 'Animepedia'
15 self.wikia['smw'] = True
16 self.namespaces[112] = { '_default': u'World'}
17 self.namespaces[113] = { '_default': u'World talk'}
18
19 wikia_basefamily.Family.initNamespaces(self)
20