Only you can help us build a free scout media repository!
Please create an account to start uploading your images now.

ScoutMedia:Bot configuration

From ScoutMedia, the free scout media repository

Here are the text of the configuration files which have to be used on the bots used on the ScoutWiki network scouting wikis.

Those scripts are now ready only for use on PartioWiki, Scoutopedia and PfadiWiki, but can easily be changed to fit any new Scouting Wiki whose member would like to use a bot on.

user-config.py

family                 =  'scoutwiki'
mylang                 =  'fr' #Put here the code of the main language you will use your bot on ; here it's fr for French.

usernames['scoutwiki']['fr'] =  'French name of the Bot'
usernames['scoutwiki']['fi'] =  'Finnish name of the Bot'
usernames['scoutwiki']['de'] =  'German (PfadiWiki) name of the Bot'

When using login.py, the -lang:XX option has to be used :

  • ~$ python login.py -lang:fr for loging in on Scoutopedia
  • ~$ python login.py -lang:fi for loging in on PartioWiki
  • ~$ python login.py -lang:de for loging in on Pfadiwiki

And do the same lines for every wiki you plan to use your bot on.

When using interwiki.py, the same option is used to tell the bot on which wiki he's got to work first, he'll then check all the pages on that wiki, and after that, if needed, modify the linked pages on the other wiki to have those linked to the first. If this option is not used, the bot will use its main language as defined by mylang = 'xx'.

Of course, the bot has to be loged on each wiki you want it to be able to write on ...

scoutwiki_family.py

This script has to be placed in the /families/ directory of your bot.

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

# ScoutWiki, the international network of scouting wikis.
# ScoutWiki, le réseau international de wikis scouts.

class Family(family.Family):
    def __init__(self):
        family.Family.__init__(self)
        self.name = 'scoutwiki'

        self.langs = {
            'fi':'wiki.partio.net', # PartioWiki
            'fr':'www.scoutopedia.net', # Scoutopedia
            'de':'www.pfadiwiki.ch', #PfadiWiki
            'nl':'www.scoutpedia.nl', #Scoutpedia (NL)
            'es':'wiki.larocadelconsejo.net', #WikiRoca
            'en':'en.scoutwiki.org', #ScoutWiki English
            'ar':'ar.scoutwiki.org', #ScoutWiki Arabic
            'eo':'eo.scoutwiki.org', #SkoltViko en Esperanto
            'sv':'sv.scoutwiki.org', #ScoutWiki Swedish
            'it':'it.scoutwiki.org', #ScoutWiki en italiano
        }

        # Most namespaces are inherited from family.Family.

        self.namespaces[4] = {
            '_default': u'scoutwiki',
            'fi': u'PartioWiki',
            'fr': u'Scoutopedia',
            'de': u'Pfadiwiki',
            'nl': u'Scoutpedia',
            'es': u'WikiRoca',
            'en': u'ScoutWiki',
            'ar': u'ScoutWiki',
            'eo': u'SkoltVikio',
            'sv': u'ScoutWiki',
            'it': u'ScoutWiki',
        }
        self.namespaces[5] = {
            '_default': u'Talk about scoutwiki',
            'fi': u'Keskustelu PartioWikista',
            'fr': u'Discussion Scoutopedia',
            'de': u'Pfadiwiki Diskussion',
            'nl': u'Overleg Scoutpedia',
            'es': u'WikiRoca Discusión',
            'en': u'ScoutWiki talk',
            'ar': u'نقاش ScoutWiki',
            'eo': u'SkoltVikio diskuto',
            'sv': u'ScoutWikidiskussion',
            'it': u'Discussioni ScoutWiki',
        }

        #custom namespaces
        self.namespaces[100] = {
            '_default':u'Portal',       #portails
            #'fi':u'Lodju' #Geocache (bug)
            'fr':u'Portail',
            'en':u'Portal',
            'it':u'Portale',
        }
        self.namespaces[101] = {
            '_default':u'Portal talk',
            #'fi':u'Keskustelu lodjusta'
            'fr':u'Discussion Portail',
            'en':u'Portal Talk',
            'it':u'Discussioni portale',
        }

    def version(self, code):
        return "1.9.3"

    def path(self, code):
        return '/index.php'