<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
		<id>https://www.civ-wiki.de/index.php?action=history&amp;feed=atom&amp;title=Benutzer%3AJerrys_Bot</id>
		<title>Benutzer:Jerrys Bot - Versionsgeschichte</title>
		<link rel="self" type="application/atom+xml" href="https://www.civ-wiki.de/index.php?action=history&amp;feed=atom&amp;title=Benutzer%3AJerrys_Bot"/>
		<link rel="alternate" type="text/html" href="https://www.civ-wiki.de/index.php?title=Benutzer:Jerrys_Bot&amp;action=history"/>
		<updated>2026-05-03T00:54:34Z</updated>
		<subtitle>Versionsgeschichte dieser Seite in CivWiki</subtitle>
		<generator>MediaWiki 1.27.7</generator>

	<entry>
		<id>https://www.civ-wiki.de/index.php?title=Benutzer:Jerrys_Bot&amp;diff=50052&amp;oldid=prev</id>
		<title>Jerry Demmings: Die Seite wurde neu angelegt: „*Bot von Benutzer:Jerry Demmings *:mw:Pywikipedia *Konfiguration: Zu erstellende Dateien: ;user-config.py &lt;pre&gt; mylang='de' family='civwiki' usernames[…“</title>
		<link rel="alternate" type="text/html" href="https://www.civ-wiki.de/index.php?title=Benutzer:Jerrys_Bot&amp;diff=50052&amp;oldid=prev"/>
				<updated>2013-11-09T23:36:20Z</updated>
		
		<summary type="html">&lt;p&gt;Die Seite wurde neu angelegt: „*Bot von &lt;a href=&quot;/wiki/Benutzer:Jerry_Demmings&quot; title=&quot;Benutzer:Jerry Demmings&quot;&gt;Benutzer:Jerry Demmings&lt;/a&gt; *&lt;a href=&quot;http://www.mediawiki.org/wiki/Pywikipedia&quot; class=&quot;extiw&quot; title=&quot;mw:Pywikipedia&quot;&gt;mw:Pywikipedia&lt;/a&gt; *Konfiguration: Zu erstellende Dateien: ;user-config.py &amp;lt;pre&amp;gt; mylang=&amp;#039;de&amp;#039; family=&amp;#039;civwiki&amp;#039; usernames[…“&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;*Bot von [[Benutzer:Jerry Demmings]]&lt;br /&gt;
*[[:mw:Pywikipedia]]&lt;br /&gt;
*Konfiguration: Zu erstellende Dateien:&lt;br /&gt;
;user-config.py&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mylang='de'&lt;br /&gt;
family='civwiki'&lt;br /&gt;
usernames['civwiki']['civwiki']=u'Jerrys Bot'&lt;br /&gt;
console_encoding = 'utf-8'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
;families/civwiki_family.py&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# -*- coding: utf-8  -*-              # REQUIRED&lt;br /&gt;
import config, family, urllib         # REQUIRED&lt;br /&gt;
&lt;br /&gt;
class Family(family.Family):          # REQUIRED&lt;br /&gt;
    def __init__(self):               # REQUIRED&lt;br /&gt;
        family.Family.__init__(self)  # REQUIRED&lt;br /&gt;
        self.name = 'civwiki'        # REQUIRED; replace with actual name&lt;br /&gt;
&lt;br /&gt;
        self.langs = {                # REQUIRED&lt;br /&gt;
            'civwiki': 'www.civwiki.de',  # Include one line for each wiki in family&lt;br /&gt;
            ###'fr': 'www.example.fr',   # in the format 'code': 'hostname',&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        # Translation used on all wikis for the different namespaces.&lt;br /&gt;
        # Most namespaces are inherited from family.Family.&lt;br /&gt;
        # Check the family.py file (in main directory) to see the standard&lt;br /&gt;
        # namespace translations for each known language.&lt;br /&gt;
&lt;br /&gt;
        # You only need to enter translations that differ from the default.&lt;br /&gt;
        # There are two ways of entering namespace translations.&lt;br /&gt;
        # 1.  If you only need to change the translation of a particular&lt;br /&gt;
        #     namespace for one or two languages, use this format (example):&lt;br /&gt;
        #self.namespaces[2]['en'] = u'Wikiuser'&lt;br /&gt;
        #self.namespaces[3]['en'] = u'Wikiuser talk'&lt;br /&gt;
&lt;br /&gt;
        # 2.  If you need to change the translation for many languages&lt;br /&gt;
        #     for the same namespace number, use this format (this is common&lt;br /&gt;
        #     for namespaces 4 and 5, because these are usually given a&lt;br /&gt;
        #     unique name for each wiki) (example):&lt;br /&gt;
        #self.namespaces[4] = {&lt;br /&gt;
        #    '_default': [u'WIKINAME', self.namespaces[4]['_default']], # REQUIRED&lt;br /&gt;
        #    'de': 'Name des Wikis',&lt;br /&gt;
        #    'es': 'Nombre del wiki',&lt;br /&gt;
        #    'fr': 'Nom du wiki',&lt;br /&gt;
        #    # ETC.&lt;br /&gt;
        #}&lt;br /&gt;
&lt;br /&gt;
        # Wikimedia wikis all use &amp;quot;bodyContent&amp;quot; as the id of the &amp;lt;div&amp;gt;&lt;br /&gt;
        # element that contains the actual page content; change this for&lt;br /&gt;
        # wikis that use something else (e.g., mozilla family)&lt;br /&gt;
        #self.content_id = &amp;quot;bodyContent&amp;quot;&lt;br /&gt;
&lt;br /&gt;
        # On most wikis page names must start with a capital letter, but some&lt;br /&gt;
        # languages don't use this.  This should be a list of languages that&lt;br /&gt;
        # _don't_ require the first letter to be capitalized.  Example:&lt;br /&gt;
        # self.nocapitalize = ['foo', 'bar']&lt;br /&gt;
&lt;br /&gt;
        # SETTINGS FOR WIKIS THAT USE DISAMBIGUATION PAGES:&lt;br /&gt;
&lt;br /&gt;
        # Disambiguation template names in different languages; each value&lt;br /&gt;
        # must be a list, even if there is only one entry.  Example:&lt;br /&gt;
        # self.disambiguationTemplates['en'] = ['disambig', 'disambiguation']&lt;br /&gt;
&lt;br /&gt;
        # The name of the category containing disambiguation&lt;br /&gt;
        # pages for the various languages. Only one category per language,&lt;br /&gt;
        # and without the namespace, so add things like:&lt;br /&gt;
        # self.disambcatname['en'] = &amp;quot;Disambiguation&amp;quot;&lt;br /&gt;
&lt;br /&gt;
    def protocol(self, code):&lt;br /&gt;
        &amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
        Can be overridden to return 'https'. Other protocols are not supported.&lt;br /&gt;
        &amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
        return 'http'&lt;br /&gt;
&lt;br /&gt;
    def scriptpath(self, code):&lt;br /&gt;
        &amp;quot;&amp;quot;&amp;quot;The prefix used to locate scripts on this wiki.&lt;br /&gt;
&lt;br /&gt;
        This is the value displayed when you enter {{SCRIPTPATH}} on a&lt;br /&gt;
        wiki page (often displayed at [[Help:Variables]] if the wiki has&lt;br /&gt;
        copied the master help page correctly).&lt;br /&gt;
&lt;br /&gt;
        The default value is the one used on Wikimedia Foundation wikis,&lt;br /&gt;
        but needs to be overridden in the family file for any wiki that&lt;br /&gt;
        uses a different value.&lt;br /&gt;
&lt;br /&gt;
        &amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
        return '/'&lt;br /&gt;
&lt;br /&gt;
    # IMPORTANT: if your wiki does not support the api.php interface,&lt;br /&gt;
    # you must uncomment the second line of this method:&lt;br /&gt;
    def apipath(self, code):&lt;br /&gt;
        # raise NotImplementedError, &amp;quot;%s wiki family does not support api.php&amp;quot; % self.name&lt;br /&gt;
        return '%s/api.php' % self.scriptpath(code)&lt;br /&gt;
&lt;br /&gt;
    # Which version of MediaWiki is used? REQUIRED&lt;br /&gt;
    def version(self, code):&lt;br /&gt;
        # Replace with the actual version being run on your wiki&lt;br /&gt;
        return '1.16.0'&lt;br /&gt;
&lt;br /&gt;
    def code2encoding(self, code):&lt;br /&gt;
        &amp;quot;&amp;quot;&amp;quot;Return the encoding for a specific language wiki&amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
        # Most wikis nowadays use UTF-8, but change this if yours uses&lt;br /&gt;
        # a different encoding&lt;br /&gt;
        return 'utf-8'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jerry Demmings</name></author>	</entry>

	</feed>