https://bugzilla.wikimedia.org/show_bug.cgi?id=54551
Web browser: ---
Bug ID: 54551
Summary: weblinkchecker exclude webarchive
Product: Pywikibot
Version: unspecified
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: Unprioritized
Component: General
Assignee: Pywikipedia-bugs(a)lists.wikimedia.org
Reporter: legoktm.wikipedia(a)gmail.com
Classification: Unclassified
Mobile Platform: ---
Originally from: http://sourceforge.net/p/pywikipediabot/patches/592/
Reported by: masti01
Created on: 2013-01-31 09:16:41
Subject: weblinkchecker exclude webarchive
Original description:
Exclude webArchive from checked links as this is already archived
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugzilla.wikimedia.org/show_bug.cgi?id=55312
Web browser: ---
Bug ID: 55312
Summary: delinker doesn't understand line breaks
Product: Pywikibot
Version: unspecified
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: Unprioritized
Component: General
Assignee: Pywikipedia-bugs(a)lists.wikimedia.org
Reporter: legoktm.wikipedia(a)gmail.com
Classification: Unclassified
Mobile Platform: ---
Originally from: http://sourceforge.net/p/pywikipediabot/bugs/851/
Reported by: multichill
Created on: 2009-02-08 14:20:27
Subject: delinker doesn't understand line breaks
Original description:
An image got deleted and the delinker tried to remove it, but the image had a
line break in the description. Result:
http://nl.wikipedia.org/w/index.php?title=De\_Speelman&diff=prev&oldid=1541…
multichill@nightshade:~/pywikipedia$ python version.py
Pywikipedia \[http\] trunk/pywikipedia \(r6334, Feb 06 2009, 16:42:40\)
Python 2.5.2 \(r252:60911, Jan 4 2009, 21:59:32\)
\[GCC 4.3.2\]
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugzilla.wikimedia.org/show_bug.cgi?id=57877
Web browser: ---
Bug ID: 57877
Summary: removing custom sortkey while moving cat
Product: Pywikibot
Version: compat (1.0)
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: Unprioritized
Component: category.py
Assignee: Pywikipedia-bugs(a)lists.wikimedia.org
Reporter: hercule.wikipedia(a)gmail.com
Classification: Unclassified
Mobile Platform: ---
Hello,
I ran category.py to move Catégorie:WikiGnome to Catégorie:Utilisateur
WikiGnome on fr.wiki. This evening someone point me an unespected removal of
custom sortkey :
https://fr.wikipedia.org/w/index.php?title=Wikip%C3%A9dia:WikiGnome&curid=5…
I update my git daily. This evening my version.pyt output is :
Pywikibot: [https] r/pywikibot/compat (r10559, 341ed66, 2013/12/01, 19:41:39,
OUTDATED)
Release version: 1.0b1
Python: 2.7.3 (default, Sep 26 2013, 20:03:06)
[GCC 4.6.3]
config-settings:
use_api = True
use_api_login = True
unicode test: ok
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugzilla.wikimedia.org/show_bug.cgi?id=55003
Web browser: ---
Bug ID: 55003
Summary: claimit.py sample: add option for entry of coordinates
Product: Pywikibot
Version: unspecified
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: Unprioritized
Component: General
Assignee: Pywikipedia-bugs(a)lists.wikimedia.org
Reporter: legoktm.wikipedia(a)gmail.com
Classification: Unclassified
Mobile Platform: ---
Originally from: http://sourceforge.net/p/pywikipediabot/feature-requests/343/
Reported by: apac1
Created on: 2013-08-29 03:52:55.400000
Subject: claimit.py sample: add option for entry of coordinates
Original description:
Add the currently unsupported datatype
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugzilla.wikimedia.org/show_bug.cgi?id=62094
Bug ID: 62094
Summary: Cannot pickle Page objects
Product: Pywikibot
Version: core (2.0)
Hardware: All
OS: All
Status: NEW
Severity: major
Priority: Unprioritized
Component: General
Assignee: Pywikipedia-bugs(a)lists.wikimedia.org
Reporter: info(a)gno.de
Web browser: ---
Mobile Platform: ---
import pickle
import pywikibot
p = pywikibot.Page(pywikibot.Site('de'), 'user:Xqt/Test')
laFile = open('la.data', 'wb')
pickle.dump(p, laFile)
laFile.close()
causes the following error in core whereas it works in compat:
c:\Pywikipedia\core>pwb.py la2
Traceback (most recent call last):
File "C:\Pywikipedia\core\pwb.py", line 143, in <module>
run_python_file(fn, argv, argvu)
File "C:\Pywikipedia\core\pwb.py", line 67, in run_python_file
exec(compile(source, filename, "exec"), main_mod.__dict__)
File "C:\Pywikipedia\core\scripts\la2.py", line 9, in <module>
pickle.dump(p, laFile)
File "C:\Python27\lib\pickle.py", line 1370, in dump
Pickler(file, protocol).dump(obj)
File "C:\Python27\lib\pickle.py", line 224, in dump
self.save(obj)
File "C:\Python27\lib\pickle.py", line 331, in save
self.save_reduce(obj=obj, *rv)
File "C:\Python27\lib\pickle.py", line 419, in save_reduce
save(state)
File "C:\Python27\lib\pickle.py", line 286, in save
f(self, obj) # Call unbound method with explicit self
File "C:\Python27\lib\pickle.py", line 649, in save_dict
self._batch_setitems(obj.iteritems())
File "C:\Python27\lib\pickle.py", line 663, in _batch_setitems
save(v)
File "C:\Python27\lib\pickle.py", line 331, in save
self.save_reduce(obj=obj, *rv)
File "C:\Python27\lib\pickle.py", line 419, in save_reduce
save(state)
File "C:\Python27\lib\pickle.py", line 286, in save
f(self, obj) # Call unbound method with explicit self
File "C:\Python27\lib\pickle.py", line 649, in save_dict
self._batch_setitems(obj.iteritems())
File "C:\Python27\lib\pickle.py", line 663, in _batch_setitems
save(v)
File "C:\Python27\lib\pickle.py", line 331, in save
self.save_reduce(obj=obj, *rv)
File "C:\Python27\lib\pickle.py", line 419, in save_reduce
save(state)
File "C:\Python27\lib\pickle.py", line 286, in save
f(self, obj) # Call unbound method with explicit self
File "C:\Python27\lib\pickle.py", line 649, in save_dict
self._batch_setitems(obj.iteritems())
File "C:\Python27\lib\pickle.py", line 663, in _batch_setitems
save(v)
File "C:\Python27\lib\pickle.py", line 306, in save
rv = reduce(self.proto)
File "C:\Python27\lib\copy_reg.py", line 70, in _reduce_ex
raise TypeError, "can't pickle %s objects" % base.__name__
TypeError: can't pickle lock objects
<type 'exceptions.TypeError'>
CRITICAL: Waiting for 1 network thread(s) to finish. Press ctrl-c to abort
c:\Pywikipedia\core>
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugzilla.wikimedia.org/show_bug.cgi?id=58789
Web browser: ---
Bug ID: 58789
Summary: page.Save() does not support sysop parameter
Product: Pywikibot
Version: core (2.0)
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: Unprioritized
Component: General
Assignee: Pywikipedia-bugs(a)lists.wikimedia.org
Reporter: valhallasw(a)arctus.nl
Classification: Unclassified
Mobile Platform: ---
In compat, page.Save can be passed sysop=True to force a sysop edit; in core,
the edit just errors out:
"pywikibot.exceptions.PageNotSaved: [[MediaWiki:Gadget-false-blue-links.js]]:
protectednamespace-interface: You're not allowed to
edit interface messages"
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugzilla.wikimedia.org/show_bug.cgi?id=58892
Web browser: ---
Bug ID: 58892
Summary: pagefromfile: appendtops variable is not defined
Product: Pywikibot
Version: unspecified
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: Unprioritized
Component: General
Assignee: Pywikipedia-bugs(a)lists.wikimedia.org
Reporter: info(a)gno.de
Classification: Unclassified
Mobile Platform: ---
File "pagefromfile.py", line 365, in <module>
main()
File "pagefromfile.py", line 361, in main
bot.run()
File "pagefromfile.py", line 159, in run
self.put(title, contents)
File "pagefromfile.py", line 188, in put
if appendtops.find(self.nocontents)==-1 and
appendtops.find(self.nocontents.lower())==-1:
NameError: global name 'appendtops' is not defined
bug reported at mw:
https://www.mediawiki.org/wiki/Manual_talk:Pywikibot#Must_use_Monobook_to_r…
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugzilla.wikimedia.org/show_bug.cgi?id=55167
Web browser: ---
Bug ID: 55167
Summary: missing attribut page._pagid after Site.loadinfo(page)
Product: Pywikibot
Version: unspecified
Hardware: All
OS: All
Status: ASSIGNED
Severity: normal
Priority: Unprioritized
Component: General
Assignee: Pywikipedia-bugs(a)lists.wikimedia.org
Reporter: legoktm.wikipedia(a)gmail.com
Classification: Unclassified
Mobile Platform: ---
Originally from: http://sourceforge.net/p/pywikipediabot/bugs/1534/
Reported by: xqt
Created on: 2012-11-04 11:08:35
Subject: missing attribut page._pagid after Site.loadinfo(page)
Assigned to: russblau
Original description:
Another missing attribut:
Retrieving 50 pages from wikipedia:en.
WARNING: preloadpages: Query returned unexpected title 'International law'
Dump de \(wikipedia\) appended.
Traceback \(most recent call last\):
File "C:\Pywikipedia\rw\pwb.py", line 42, in <module>
execfile\(sys.argv\[0\]\)
File "C:\Pywikipedia\rw\scripts\interwiki.py", line 2516, in <module>
if \_\_name\_\_ == "\_\_main\_\_":
File "C:\Pywikipedia\rw\scripts\interwiki.py", line 2490, in main
try:
File "C:\Pywikipedia\rw\scripts\interwiki.py", line 2248, in run
"""Start the process until finished"""
File "C:\Pywikipedia\rw\scripts\interwiki.py", line 2221, in queryStep
File "C:\Pywikipedia\rw\scripts\interwiki.py", line 2217, in oneQuery
\# Tell all of the subjects that the promised work is done
File "C:\Pywikipedia\rw\scripts\interwiki.py", line 1224, in batchLoaded
if not page.exists\(\):
File "C:\Pywikipedia\rw\pywikibot\page.py", line 411, in exists
return self.site.page\_exists\(self\)
File "C:\Pywikipedia\rw\pywikibot\site.py", line 1153, in page\_exists
return page.\_pageid > 0
AttributeError: 'Page' object has no attribute '\_pageid'
and btw "en:International law" exists\!
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugzilla.wikimedia.org/show_bug.cgi?id=55231
Web browser: ---
Bug ID: 55231
Summary: template with /doc subpage interwiki.py has problem
Product: Pywikibot
Version: unspecified
Hardware: All
OS: All
Status: ASSIGNED
Severity: normal
Priority: Unprioritized
Component: interwiki.py
Assignee: Pywikipedia-bugs(a)lists.wikimedia.org
Reporter: legoktm.wikipedia(a)gmail.com
Classification: Unclassified
Mobile Platform: ---
Originally from: http://sourceforge.net/p/pywikipediabot/bugs/1366/
Reported by: reza1615
Created on: 2011-10-24 03:23:28
Subject: template with /doc subpage interwiki.py has problem
Assigned to: xqt
Original description:
Hi,
i came across a problom with templates that have /doc subpage. if some of
interwikis don't have /doc it confuses and delete other interwikis
cases
http://en.wikipedia.org/w/index.php?title=Template:Cite\_encyclopedia/doc&d…
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugzilla.wikimedia.org/show_bug.cgi?id=55144
Web browser: ---
Bug ID: 55144
Summary: Date and time format in archivebot.py
Product: Pywikibot
Version: unspecified
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: Unprioritized
Component: General
Assignee: Pywikipedia-bugs(a)lists.wikimedia.org
Reporter: legoktm.wikipedia(a)gmail.com
Classification: Unclassified
Mobile Platform: ---
Originally from: http://sourceforge.net/p/pywikipediabot/bugs/1614/
Reported by: n-fran
Created on: 2013-04-14 06:34:38
Subject: Date and time format in archivebot.py
Original description:
Skilled owners of bots told me that the problem because of which archivebot.py
doesn't work in the Russian Wikipedia, is that the bot doesn't accept a format
of date and time of the Russian Wikipedia.
http://en.wikipedia.org/wiki/Wikipedia:Village\_pump\_%28technical%29\#arch…
I would like that in standard framework the relevant amendments allowing users
of the Russian Wikipedia to work with this script were made. Also, please, make
amendments to a standard code for the Chinese Wikipedia.
https://github.com/makecat/wikipediabot/commit/659a774d159d0c53e4ee74f2b78e…
Thanks.
Pywikipedia \(r11307 \(wikipedia.py\), 2013/03/30, 16:42:04, OUTDATED\)
Python 2.6.4 \(r264:75708, Oct 26 2009, 08:23:19\) \[MSC v.1500 32 bit
\(Intel\)\]
config-settings:
use\_api = True
use\_api\_login = True
unicode test: ok
--
You are receiving this mail because:
You are the assignee for the bug.