Bugs item #3541362, was opened at 2012-07-08 05:29
Message generated for change (Comment added) made by xqt
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3541362&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: interwiki
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: reza (reza1615)
Assigned to: Nobody/Anonymous (nobody)
Summary: interwiki and login errors on en.wiki
Initial Comment:
my bot (Rezabot) has a flag on en.wiki and it is not blocked there but it couldn't edit on there
File "interwiki.py", line 2296, in run
self.queryStep()
File "interwiki.py", line 2274, in queryStep
subj.finish(self)
File "interwiki.py", line 1723, in finish
if self.replaceLinks(page, new, bot):
File "interwiki.py", line 1961, in replaceLinks
status, reason, data = page.put(newtext, comment=mcomment)
File "/home/reza/pywikipedia/wikipedia.py", line 2024, in put
newPage, self.site().getToken(sysop = sysop), sysop = sysop, botflag=botflag, maxTries=maxTries)
File "/home/reza/pywikipedia/wikipedia.py", line 2143, in _putPage
self.site().checkBlocks(sysop = sysop)
File "/home/reza/pywikipedia/wikipedia.py", line 5461, in checkBlocks
raise UserBlocked('User is blocked in site %s' % self)
pywikibot.exceptions.UserBlocked: User is blocked in site wikipedia:en
also my bots name is listed on [[Wikipedia:Bots/Status]] bot iterwiki code says it's name is not in the list!
----------------------------------------------------------------------
>Comment By: xqt (xqt)
Date: 2012-07-09 01:12
Message:
It looks like the bot's IP was blocked [1] and it seems the bot was editing
as anonymous account. On the other hand I don't know why/how that (bot
working as IP) happens. Could you check your bot's IP edits?
The second message is due to the Botstatus templates has been moved into a
subfolder. Will be fixed soon.
[1]: http://en.wikipedia.org/wiki/Wikipedia:SOFTBLOCK#Setting_block_options
----------------------------------------------------------------------
Comment By: reza (reza1615)
Date: 2012-07-08 14:05
Message:
thank you for your answer after new update the bot blocking error is
solved.:) but still now it shows this massage.
it should not show this because my bot is registered and flag in en.wiki
the massage
WARNING: Your account on wikipedia:en is blocked by Anomie.
Reason: Softblock: Toolserver bots should not be editing logged out.
Consult [[WT:BOTPOL]] for consensus discussion.
Editing using this account will stop the run.
NOTE: You have new messages on wikipedia:en
Logging in to wikipedia:en as rezabot via API.
Should be logged in now
*** Your username is not listed on [[[u'Wikipedia:Bots/Status', 'BotS']]].
*** Please make sure you are allowed to use the robot before actually using
it!
----------------------------------------------------------------------
Comment By: betacommand (betacommand)
Date: 2012-07-08 07:48
Message:
Also check to make sure you are still logged in. (try running login.py and
see if that fixes it.)
----------------------------------------------------------------------
Comment By: xqt (xqt)
Date: 2012-07-08 05:37
Message:
could you try another edit with -v option to get mor output
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3541362&group_…
Bugs item #1672346, was opened at 2007-03-02 03:33
Message generated for change (Settings changed) made by xqt
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=1672346&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
>Status: Closed
Resolution: Fixed
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: uncaught socket.error exception
Initial Comment:
I got an uncaught socket error in one of my scripts today:
Traceback (most recent call last):
File "./replace-link.py", line 256, in ?
page.put(changedict[title], summ)
File "wikipedia.py", line 981, in put
return self.putPage(newtext, comment, watchArticle, minorEdit, newPage, self.site().getToken(sysop = sysop), sysop = sysop)
File "wikipedia.py", line 1049, in putPage
response, data = self.site().postForm(address, predata, sysop = sysop)
File "wikipedia.py", line 2673, in postForm
return self.postData(address, data, sysop = sysop)
File "wikipedia.py", line 2696, in postData
conn.endheaders()
File "/usr/lib/python2.4/httplib.py", line 798, in endheaders
self._send_output()
File "/usr/lib/python2.4/httplib.py", line 679, in _send_output
self.send(msg)
File "/usr/lib/python2.4/httplib.py", line 646, in send
self.connect()
File "/usr/lib/python2.4/httplib.py", line 630, in connect
raise socket.error, msg
socket.error: (110, 'Connection timed out')
Since all that socket juggling is private to wikipedia.py, I suggest that this exception be caught and re-raised as a wikipedia.Error.
----------------------------------------------------------------------
Comment By: Nobody/Anonymous (nobody)
Date: 2007-08-24 01:08
Message:
Logged In: NO
Thank you very much! Sorry I was so disgruntled in my last post. I really
appreciate all the hard work you put into making this flexible framework.
----------------------------------------------------------------------
Comment By: Merlijn S. van Deen (valhallasw)
Date: 2007-08-23 09:01
Message:
Logged In: YES
user_id=687283
Originator: NO
Fixed in r4099 (socked.error is caught in postForm)
----------------------------------------------------------------------
Comment By: Nobody/Anonymous (nobody)
Date: 2007-08-23 07:44
Message:
Logged In: NO
As of SVN revision 4096, socket errors from wikipedia.py:3174-3176 are not
caught (the comment just before these lines even makes note of this
fact).
I suggest
response = conn.getresponse()
data = response.read().decode(self.encoding())
conn.close()
be changed to
try:
response = conn.getresponse()
data = response.read().decode(self.encoding())
conn.close()
except socket.error, errmsg:
raise ServerError(errmsg)
It's really annoying to have a longer bot job that is aware of
wikipedia.Error crash because of an intermittent "Connection reset by
peer".
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=1672346&group_…
Bugs item #3541362, was opened at 2012-07-08 05:29
Message generated for change (Comment added) made by reza1615
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3541362&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: interwiki
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: reza (reza1615)
Assigned to: Nobody/Anonymous (nobody)
Summary: interwiki and login errors on en.wiki
Initial Comment:
my bot (Rezabot) has a flag on en.wiki and it is not blocked there but it couldn't edit on there
File "interwiki.py", line 2296, in run
self.queryStep()
File "interwiki.py", line 2274, in queryStep
subj.finish(self)
File "interwiki.py", line 1723, in finish
if self.replaceLinks(page, new, bot):
File "interwiki.py", line 1961, in replaceLinks
status, reason, data = page.put(newtext, comment=mcomment)
File "/home/reza/pywikipedia/wikipedia.py", line 2024, in put
newPage, self.site().getToken(sysop = sysop), sysop = sysop, botflag=botflag, maxTries=maxTries)
File "/home/reza/pywikipedia/wikipedia.py", line 2143, in _putPage
self.site().checkBlocks(sysop = sysop)
File "/home/reza/pywikipedia/wikipedia.py", line 5461, in checkBlocks
raise UserBlocked('User is blocked in site %s' % self)
pywikibot.exceptions.UserBlocked: User is blocked in site wikipedia:en
also my bots name is listed on [[Wikipedia:Bots/Status]] bot iterwiki code says it's name is not in the list!
----------------------------------------------------------------------
>Comment By: reza (reza1615)
Date: 2012-07-08 14:05
Message:
thank you for your answer after new update the bot blocking error is
solved.:) but still now it shows this massage.
it should not show this because my bot is registered and flag in en.wiki
the massage
WARNING: Your account on wikipedia:en is blocked by Anomie.
Reason: Softblock: Toolserver bots should not be editing logged out.
Consult [[WT:BOTPOL]] for consensus discussion.
Editing using this account will stop the run.
NOTE: You have new messages on wikipedia:en
Logging in to wikipedia:en as rezabot via API.
Should be logged in now
*** Your username is not listed on [[[u'Wikipedia:Bots/Status', 'BotS']]].
*** Please make sure you are allowed to use the robot before actually using
it!
----------------------------------------------------------------------
Comment By: betacommand (betacommand)
Date: 2012-07-08 07:48
Message:
Also check to make sure you are still logged in. (try running login.py and
see if that fixes it.)
----------------------------------------------------------------------
Comment By: xqt (xqt)
Date: 2012-07-08 05:37
Message:
could you try another edit with -v option to get mor output
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3541362&group_…
Bugs item #3408700, was opened at 2011-09-13 07:56
Message generated for change (Comment added) made by valhallasw
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3408700&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: solve_disambiguation
Group: None
>Status: Closed
>Resolution: Fixed
Priority: 5
Private: No
Submitted By: Daniel Herding (wikipedian)
Assigned to: Nobody/Anonymous (nobody)
Summary: [rewrite] bot requires login on wikis it won't touch
Initial Comment:
In today's SVN version of the rewrite branch, I'm trying to run
solve_disambiguation -lang:de MSSR
and change the link to "Moldauische Sozialistische Sowjetrepublik". In my user-config.py, I have entered my Bot login for the de Wikipedia.
However, while replacing, the bot crashes because it doesn't have a login for the be (Belarusian) Wikipedia. This happens because in the treat() method of solve_disambiguation, all links are checked, and interwiki links are skipped. To test whether a link is an interwiki link, it compares sites. The Link.site() getter calls the parse() method, which does an API siteinfo request on be: to check whether the wiki is capitalizing titles. For this API request, you need a be: login.
This means that, to run solve_disambiguation.py, you need a login on ALL Wikipedias.
I think that you shouldn't have to do any API requests just to parse a link. Not only do you need a login, but it also slows the bot down.
------
C:\Users\dh\pywikipedia-rewrite>scripts\solve_disambiguation.py -lang:de MSSR
0 - Abkürzung
1 - Mes Souliers Sont Rouges
2 - Moldauische Sozialistische Sowjetrepublik
3 - Redemptoristinnen
4 - Sekundärradar
5 - Wikipedia:Begriffsklärung
Found 3 references.
Will work on 1 pages.
Retrieving 1 pages from wikipedia:de.
>>> Transnistrien-Konflikt <<<
e [[staatliche Souveränität]]. Die Bevölkerung der früheren [[MSSR]] war aufgrun
d der Geschichte Bessarabiens sehr heterogen und
Option (#, r#, [s]kip link, [e]dit page, [n]ext page, [u]nlink, [q]uit,
[t]ag template {{dn}},
[m]ore context, show [d]isambiguation page, [l]ist, [a]dd new): 2
Traceback (most recent call last):
File "C:\Users\dh\pywikipedia-rewrite\scripts\solve_disambiguation.py", line 1
095, in <module>
main()
File "C:\Users\dh\pywikipedia-rewrite\scripts\solve_disambiguation.py", line 1
090, in main
bot.run()
File "C:\Users\dh\pywikipedia-rewrite\scripts\solve_disambiguation.py", line 9
87, in run
if not self.treat(refPage, disambPage):
File "C:\Users\dh\pywikipedia-rewrite\scripts\solve_disambiguation.py", line 6
11, in treat
if foundlink.site != disambPage.site:
File "C:\Program Files\Python\lib\site-packages\pywikipediabot-2.0alpha-py2.7.
egg\pywikibot\page.py", line 2380, in site
self.parse()
File "C:\Program Files\Python\lib\site-packages\pywikipediabot-2.0alpha-py2.7.
egg\pywikibot\page.py", line 2363, in parse
if self._site.case() == 'first-letter':
File "C:\Program Files\Python\lib\site-packages\pywikipediabot-2.0alpha-py2.7.
egg\pywikibot\site.py", line 973, in case
return self.siteinfo['case']
File "C:\Program Files\Python\lib\site-packages\pywikipediabot-2.0alpha-py2.7.
egg\pywikibot\site.py", line 967, in siteinfo
self._getsiteinfo()
File "C:\Program Files\Python\lib\site-packages\pywikipediabot-2.0alpha-py2.7.
egg\pywikibot\site.py", line 924, in _getsiteinfo
sidata = sirequest.submit()
File "C:\Program Files\Python\lib\site-packages\pywikipediabot-2.0alpha-py2.7.
egg\pywikibot\data\api.py", line 220, in submit
self.site.login(False)
File "C:\Program Files\Python\lib\site-packages\pywikipediabot-2.0alpha-py2.7.
egg\pywikibot\site.py", line 706, in login
user=self._username[sysop])
File "C:\Program Files\Python\lib\site-packages\pywikipediabot-2.0alpha-py2.7.
egg\pywikibot\__init__.py", line 124, in wrapper
return method(*__args, **__kw)
File "C:\Program Files\Python\lib\site-packages\pywikipediabot-2.0alpha-py2.7.
egg\pywikibot\__init__.py", line 124, in wrapper
return method(*__args, **__kw)
File "C:\Program Files\Python\lib\site-packages\pywikipediabot-2.0alpha-py2.7.
egg\pywikibot\login.py", line 105, in __init__
'wiki_code': self.site.code})
pywikibot.exceptions.NoUsername: ERROR: Username for wikipedia:be is undefined.
If you have an account for that site, please add a line to user-config.py:
usernames['wikipedia']['be'] = 'myUsername'
----------------------------------------------------------------------
>Comment By: Merlijn S. van Deen (valhallasw)
Date: 2012-07-08 13:42
Message:
This has been fixed during the Berlin hackathon.
----------------------------------------------------------------------
Comment By: Nobody/Anonymous (nobody)
Date: 2012-07-08 13:05
Message:
yihOJ1 <a href="http://btrulvsplnbu.com/">btrulvsplnbu</a>,
[url=http://dblzpjshsawf.com/]dblzpjshsawf[/url],
[link=http://pvvuauggrlim.com/]pvvuauggrlim[/link],
http://dqzvpqtnddls.com/
----------------------------------------------------------------------
Comment By: Daniel Herding (wikipedian)
Date: 2011-09-15 10:20
Message:
Just realized that there is a separate tracker for the rewrite branch. This
bug has been known there since January 2011. :(
https://jira.toolserver.org/browse/PYWP-10
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3408700&group_…
Bugs item #1672346, was opened at 2007-03-02 03:33
Message generated for change (Comment added) made by nobody
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=1672346&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Closed
Resolution: Fixed
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: uncaught socket.error exception
Initial Comment:
I got an uncaught socket error in one of my scripts today:
Traceback (most recent call last):
File "./replace-link.py", line 256, in ?
page.put(changedict[title], summ)
File "wikipedia.py", line 981, in put
return self.putPage(newtext, comment, watchArticle, minorEdit, newPage, self.site().getToken(sysop = sysop), sysop = sysop)
File "wikipedia.py", line 1049, in putPage
response, data = self.site().postForm(address, predata, sysop = sysop)
File "wikipedia.py", line 2673, in postForm
return self.postData(address, data, sysop = sysop)
File "wikipedia.py", line 2696, in postData
conn.endheaders()
File "/usr/lib/python2.4/httplib.py", line 798, in endheaders
self._send_output()
File "/usr/lib/python2.4/httplib.py", line 679, in _send_output
self.send(msg)
File "/usr/lib/python2.4/httplib.py", line 646, in send
self.connect()
File "/usr/lib/python2.4/httplib.py", line 630, in connect
raise socket.error, msg
socket.error: (110, 'Connection timed out')
Since all that socket juggling is private to wikipedia.py, I suggest that this exception be caught and re-raised as a wikipedia.Error.
----------------------------------------------------------------------
Comment By: Nobody/Anonymous (nobody)
Date: 2012-07-08 13:14
Message:
SfMii2 <a href="http://swxlyyswjgru.com/">swxlyyswjgru</a>,
[url=http://ewyumbxgmexn.com/]ewyumbxgmexn[/url],
[link=http://gwamfqnbyhlm.com/]gwamfqnbyhlm[/link],
http://eyksrxbevpqq.com/
----------------------------------------------------------------------
Comment By: Nobody/Anonymous (nobody)
Date: 2007-08-24 01:08
Message:
Logged In: NO
Thank you very much! Sorry I was so disgruntled in my last post. I really
appreciate all the hard work you put into making this flexible framework.
----------------------------------------------------------------------
Comment By: Merlijn S. van Deen (valhallasw)
Date: 2007-08-23 09:01
Message:
Logged In: YES
user_id=687283
Originator: NO
Fixed in r4099 (socked.error is caught in postForm)
----------------------------------------------------------------------
Comment By: Nobody/Anonymous (nobody)
Date: 2007-08-23 07:44
Message:
Logged In: NO
As of SVN revision 4096, socket errors from wikipedia.py:3174-3176 are not
caught (the comment just before these lines even makes note of this
fact).
I suggest
response = conn.getresponse()
data = response.read().decode(self.encoding())
conn.close()
be changed to
try:
response = conn.getresponse()
data = response.read().decode(self.encoding())
conn.close()
except socket.error, errmsg:
raise ServerError(errmsg)
It's really annoying to have a longer bot job that is aware of
wikipedia.Error crash because of an intermittent "Connection reset by
peer".
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=1672346&group_…
Bugs item #3408700, was opened at 2011-09-13 07:56
Message generated for change (Comment added) made by nobody
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3408700&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: solve_disambiguation
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Daniel Herding (wikipedian)
Assigned to: Nobody/Anonymous (nobody)
Summary: [rewrite] bot requires login on wikis it won't touch
Initial Comment:
In today's SVN version of the rewrite branch, I'm trying to run
solve_disambiguation -lang:de MSSR
and change the link to "Moldauische Sozialistische Sowjetrepublik". In my user-config.py, I have entered my Bot login for the de Wikipedia.
However, while replacing, the bot crashes because it doesn't have a login for the be (Belarusian) Wikipedia. This happens because in the treat() method of solve_disambiguation, all links are checked, and interwiki links are skipped. To test whether a link is an interwiki link, it compares sites. The Link.site() getter calls the parse() method, which does an API siteinfo request on be: to check whether the wiki is capitalizing titles. For this API request, you need a be: login.
This means that, to run solve_disambiguation.py, you need a login on ALL Wikipedias.
I think that you shouldn't have to do any API requests just to parse a link. Not only do you need a login, but it also slows the bot down.
------
C:\Users\dh\pywikipedia-rewrite>scripts\solve_disambiguation.py -lang:de MSSR
0 - Abkürzung
1 - Mes Souliers Sont Rouges
2 - Moldauische Sozialistische Sowjetrepublik
3 - Redemptoristinnen
4 - Sekundärradar
5 - Wikipedia:Begriffsklärung
Found 3 references.
Will work on 1 pages.
Retrieving 1 pages from wikipedia:de.
>>> Transnistrien-Konflikt <<<
e [[staatliche Souveränität]]. Die Bevölkerung der früheren [[MSSR]] war aufgrun
d der Geschichte Bessarabiens sehr heterogen und
Option (#, r#, [s]kip link, [e]dit page, [n]ext page, [u]nlink, [q]uit,
[t]ag template {{dn}},
[m]ore context, show [d]isambiguation page, [l]ist, [a]dd new): 2
Traceback (most recent call last):
File "C:\Users\dh\pywikipedia-rewrite\scripts\solve_disambiguation.py", line 1
095, in <module>
main()
File "C:\Users\dh\pywikipedia-rewrite\scripts\solve_disambiguation.py", line 1
090, in main
bot.run()
File "C:\Users\dh\pywikipedia-rewrite\scripts\solve_disambiguation.py", line 9
87, in run
if not self.treat(refPage, disambPage):
File "C:\Users\dh\pywikipedia-rewrite\scripts\solve_disambiguation.py", line 6
11, in treat
if foundlink.site != disambPage.site:
File "C:\Program Files\Python\lib\site-packages\pywikipediabot-2.0alpha-py2.7.
egg\pywikibot\page.py", line 2380, in site
self.parse()
File "C:\Program Files\Python\lib\site-packages\pywikipediabot-2.0alpha-py2.7.
egg\pywikibot\page.py", line 2363, in parse
if self._site.case() == 'first-letter':
File "C:\Program Files\Python\lib\site-packages\pywikipediabot-2.0alpha-py2.7.
egg\pywikibot\site.py", line 973, in case
return self.siteinfo['case']
File "C:\Program Files\Python\lib\site-packages\pywikipediabot-2.0alpha-py2.7.
egg\pywikibot\site.py", line 967, in siteinfo
self._getsiteinfo()
File "C:\Program Files\Python\lib\site-packages\pywikipediabot-2.0alpha-py2.7.
egg\pywikibot\site.py", line 924, in _getsiteinfo
sidata = sirequest.submit()
File "C:\Program Files\Python\lib\site-packages\pywikipediabot-2.0alpha-py2.7.
egg\pywikibot\data\api.py", line 220, in submit
self.site.login(False)
File "C:\Program Files\Python\lib\site-packages\pywikipediabot-2.0alpha-py2.7.
egg\pywikibot\site.py", line 706, in login
user=self._username[sysop])
File "C:\Program Files\Python\lib\site-packages\pywikipediabot-2.0alpha-py2.7.
egg\pywikibot\__init__.py", line 124, in wrapper
return method(*__args, **__kw)
File "C:\Program Files\Python\lib\site-packages\pywikipediabot-2.0alpha-py2.7.
egg\pywikibot\__init__.py", line 124, in wrapper
return method(*__args, **__kw)
File "C:\Program Files\Python\lib\site-packages\pywikipediabot-2.0alpha-py2.7.
egg\pywikibot\login.py", line 105, in __init__
'wiki_code': self.site.code})
pywikibot.exceptions.NoUsername: ERROR: Username for wikipedia:be is undefined.
If you have an account for that site, please add a line to user-config.py:
usernames['wikipedia']['be'] = 'myUsername'
----------------------------------------------------------------------
Comment By: Nobody/Anonymous (nobody)
Date: 2012-07-08 13:05
Message:
yihOJ1 <a href="http://btrulvsplnbu.com/">btrulvsplnbu</a>,
[url=http://dblzpjshsawf.com/]dblzpjshsawf[/url],
[link=http://pvvuauggrlim.com/]pvvuauggrlim[/link],
http://dqzvpqtnddls.com/
----------------------------------------------------------------------
Comment By: Daniel Herding (wikipedian)
Date: 2011-09-15 10:20
Message:
Just realized that there is a separate tracker for the rewrite branch. This
bug has been known there since January 2011. :(
https://jira.toolserver.org/browse/PYWP-10
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3408700&group_…
Bugs item #3541362, was opened at 2012-07-08 05:29
Message generated for change (Comment added) made by betacommand
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3541362&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: interwiki
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: reza (reza1615)
Assigned to: Nobody/Anonymous (nobody)
Summary: interwiki and login errors on en.wiki
Initial Comment:
my bot (Rezabot) has a flag on en.wiki and it is not blocked there but it couldn't edit on there
File "interwiki.py", line 2296, in run
self.queryStep()
File "interwiki.py", line 2274, in queryStep
subj.finish(self)
File "interwiki.py", line 1723, in finish
if self.replaceLinks(page, new, bot):
File "interwiki.py", line 1961, in replaceLinks
status, reason, data = page.put(newtext, comment=mcomment)
File "/home/reza/pywikipedia/wikipedia.py", line 2024, in put
newPage, self.site().getToken(sysop = sysop), sysop = sysop, botflag=botflag, maxTries=maxTries)
File "/home/reza/pywikipedia/wikipedia.py", line 2143, in _putPage
self.site().checkBlocks(sysop = sysop)
File "/home/reza/pywikipedia/wikipedia.py", line 5461, in checkBlocks
raise UserBlocked('User is blocked in site %s' % self)
pywikibot.exceptions.UserBlocked: User is blocked in site wikipedia:en
also my bots name is listed on [[Wikipedia:Bots/Status]] bot iterwiki code says it's name is not in the list!
----------------------------------------------------------------------
Comment By: betacommand (betacommand)
Date: 2012-07-08 07:48
Message:
Also check to make sure you are still logged in. (try running login.py and
see if that fixes it.)
----------------------------------------------------------------------
Comment By: xqt (xqt)
Date: 2012-07-08 05:37
Message:
could you try another edit with -v option to get mor output
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3541362&group_…
Bugs item #3541362, was opened at 2012-07-08 05:29
Message generated for change (Comment added) made by xqt
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3541362&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: interwiki
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: reza (reza1615)
Assigned to: Nobody/Anonymous (nobody)
Summary: interwiki and login errors on en.wiki
Initial Comment:
my bot (Rezabot) has a flag on en.wiki and it is not blocked there but it couldn't edit on there
File "interwiki.py", line 2296, in run
self.queryStep()
File "interwiki.py", line 2274, in queryStep
subj.finish(self)
File "interwiki.py", line 1723, in finish
if self.replaceLinks(page, new, bot):
File "interwiki.py", line 1961, in replaceLinks
status, reason, data = page.put(newtext, comment=mcomment)
File "/home/reza/pywikipedia/wikipedia.py", line 2024, in put
newPage, self.site().getToken(sysop = sysop), sysop = sysop, botflag=botflag, maxTries=maxTries)
File "/home/reza/pywikipedia/wikipedia.py", line 2143, in _putPage
self.site().checkBlocks(sysop = sysop)
File "/home/reza/pywikipedia/wikipedia.py", line 5461, in checkBlocks
raise UserBlocked('User is blocked in site %s' % self)
pywikibot.exceptions.UserBlocked: User is blocked in site wikipedia:en
also my bots name is listed on [[Wikipedia:Bots/Status]] bot iterwiki code says it's name is not in the list!
----------------------------------------------------------------------
>Comment By: xqt (xqt)
Date: 2012-07-08 05:37
Message:
could you try another edit with -v option to get mor output
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3541362&group_…
Bugs item #3541362, was opened at 2012-07-08 05:29
Message generated for change (Settings changed) made by reza1615
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3541362&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: interwiki
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: reza (reza1615)
Assigned to: Nobody/Anonymous (nobody)
>Summary: interwiki and login errors on en.wiki
Initial Comment:
my bot (Rezabot) has a flag on en.wiki and it is not blocked there but it couldn't edit on there
File "interwiki.py", line 2296, in run
self.queryStep()
File "interwiki.py", line 2274, in queryStep
subj.finish(self)
File "interwiki.py", line 1723, in finish
if self.replaceLinks(page, new, bot):
File "interwiki.py", line 1961, in replaceLinks
status, reason, data = page.put(newtext, comment=mcomment)
File "/home/reza/pywikipedia/wikipedia.py", line 2024, in put
newPage, self.site().getToken(sysop = sysop), sysop = sysop, botflag=botflag, maxTries=maxTries)
File "/home/reza/pywikipedia/wikipedia.py", line 2143, in _putPage
self.site().checkBlocks(sysop = sysop)
File "/home/reza/pywikipedia/wikipedia.py", line 5461, in checkBlocks
raise UserBlocked('User is blocked in site %s' % self)
pywikibot.exceptions.UserBlocked: User is blocked in site wikipedia:en
also my bots name is listed on [[Wikipedia:Bots/Status]] bot iterwiki code says it's name is not in the list!
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3541362&group_…
Bugs item #3541362, was opened at 2012-07-08 05:29
Message generated for change (Tracker Item Submitted) made by reza1615
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3541362&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: interwiki
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: reza (reza1615)
Assigned to: Nobody/Anonymous (nobody)
Summary: error on en.wiki
Initial Comment:
my bot (Rezabot) has a flag on en.wiki and it is not blocked there but it couldn't edit on there
File "interwiki.py", line 2296, in run
self.queryStep()
File "interwiki.py", line 2274, in queryStep
subj.finish(self)
File "interwiki.py", line 1723, in finish
if self.replaceLinks(page, new, bot):
File "interwiki.py", line 1961, in replaceLinks
status, reason, data = page.put(newtext, comment=mcomment)
File "/home/reza/pywikipedia/wikipedia.py", line 2024, in put
newPage, self.site().getToken(sysop = sysop), sysop = sysop, botflag=botflag, maxTries=maxTries)
File "/home/reza/pywikipedia/wikipedia.py", line 2143, in _putPage
self.site().checkBlocks(sysop = sysop)
File "/home/reza/pywikipedia/wikipedia.py", line 5461, in checkBlocks
raise UserBlocked('User is blocked in site %s' % self)
pywikibot.exceptions.UserBlocked: User is blocked in site wikipedia:en
also my bots name is listed on [[Wikipedia:Bots/Status]] bot iterwiki code says it's name is not in the list!
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3541362&group_…