Wasteland Wiki
Advertisement
Icon bot
This is the user page of Porter21's bot. Bots are automated or semi-automated accounts for making repetitive edits that would be extremely tedious to do manually.
Administrators: If this bot is malfunctioning or causing harm please block it.

Config files for using Pywikipediabot at Wasteland Wiki.

Last update: May 22, 2012.

wasteland_family.py[ | ]

# -*- coding: utf-8  -*-
import family

# Wasteland Wiki (wasteland.falloutwiki.com)

class Family(family.Family):

    def __init__(self):

        family.Family.__init__(self)

        self.name          = 'wasteland'
        self.langs         = {
                               'en': 'wasteland.falloutwiki.com',
                             }
        # Most namespaces are inherited from family.Family.
        self.namespaces[4] = {'_default': u'Wasteland Wiki'}
        self.namespaces[5] = {'_default': u'Wasteland Wiki talk'}
        
        # Custom namespace list for en.
        self.namespaces[110] = {'_default':u'Forum'}
        self.namespaces[112] = {'_default':u'Portal'}
        self.namespaces[113] = {'_default':u'Portal talk'}
        self.namespaces[114] = {'_default':u'Blog'}
        self.namespaces[115] = {'_default':u'Blog talk'}

    def scriptpath(self, code):
        return ''

    def version(self, code):
        return "1.18.3"
Advertisement