Revision
11 -
Sat Apr 26 07:43:16 2008 UTC
(2 years, 4 months ago)
by
dantman
File size: 395 byte(s)
Added new wikia_basefamily.py setup.
All wikia families now inherit from this one, and use values inside of a special dict when things like smw, profile, kaltura, etc... are on or forums are not.
((Also there was a comment mistake in manga_family.py))
1 # -*- coding: utf-8 -*-
2 import family, wikia_basefamily
3
4 # The Bleach Wiki. (bleach.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 = 'bleach'
13 self.langs = { 'en': u'bleach.wikia.com', }
14 self.wikia['projectns'] = 'Bleach Wiki'
15
16 wikia_basefamily.Family.initNamespaces(self)
17