abstract
| - Leave messages for bots on the bot requests page.
- ページデータの書き出し を使用して wiki ソースを取得する bot は、ウィキアによって付加されているクレジット行を除去しなければなりません。現在付加されている行は以下の通りです: From [http://ja.starter.wikia.com Wikia starter pages for Japanese], a [http://www.wikia.com Wikia] wiki. Python Wikipediabot を使用する場合は以下に示したように wikipedia.py を修正することで対応できます。 1.
* この修正を追加するため、まず次に示す行を検索してください。:def put(self, newtext, comment=None, watchArticle = None, minorEdit = True): 2.
* スクロールダウンすると次に示す行があり、この方法の最終行になります:return self.putPage(newtext, comment, watchArticle, minorEdit, newPage, self.site().getToken(sysop = sysop), sysop = sysop) 3.
* 上記の行の間に以下に示すコードを挿入してください(注意: 各行は "return" と同じインデントになっていることを確認してください): # This is a fix to make the bot work properly with the behavior of Wikia's [[Special:Export]] # which adds a "credit line" to the XML dump: # SOME CREDITS HERE # ATT: This assumes that this id is NOT used in the article text itself! newtext = re.sub(r'\.*\<\/div\>','',newtext) comment = comment+' !!wikia-credits fix!!'
|