https://bugzilla.wikimedia.org/show_bug.cgi?id=54539
Web browser: ---
Bug ID: 54539
Summary: Remove error-prone invalid-char exception
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/623/
Reported by: gallaecio
Created on: 2013-08-03 21:14:53.303000
Subject: Remove error-prone invalid-char exception
Original description:
The code removed by this patch was preventing me from loading the following
page:
http://techbase.kde.org/Localization/fy/Fryske_kompjûterwurden
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugzilla.wikimedia.org/show_bug.cgi?id=54415
Web browser: ---
Bug ID: 54415
Summary: claimit.py: enable claim with the same property, but
different value
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/349/
Reported by: apac1
Created on: 2013-09-15 16:15:03.602000
Subject: claimit.py: enable claim with the same property, but different value
Original labels: claimit.py, wikidata, enhancement, python, pywikibotOriginal
description:
The below can be added to claimit.py to enable adding statements on items with
the same property, but different values.
https://github.com/wikimedia/pywikibot-core/blob/master/scripts/claimit.py
:::python
for claim in self.claims:
if claim.getID() in item.get().get('claims'):
propertytoadd = claim.getID()
for valueofproperty in item.claims[propertytoadd]:
if valueofproperty.getTarget() ==
claim.getTarget():
pywikibot.output("item for %s has already
property %s with value %s" % (page.title(), propertytoadd,
valueofproperty.getTarget()))
break
else:
continue
else:
pywikibot.output('Adding additional %s --> %s' %
(claim.getID(), claim.getTarget()))
item.addClaim(claim)
else:
pywikibot.output('Adding %s --> %s'
% (claim.getID(), claim.getTarget()))
item.addClaim(claim)
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugzilla.wikimedia.org/show_bug.cgi?id=54542
Web browser: ---
Bug ID: 54542
Summary: Add multiple values for a claim
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/620/
Reported by: felixreimann
Created on: 2013-07-03 13:43:43.303000
Subject: Add multiple values for a claim
Original description:
Wikidata: The attached patch allows to add additional values even if the claim
is already there.
Before, editClaim either adds the claim and the value if the item does not
contain the claim yet or changes the value of the claim. Sometimes, however,
additional values are needed.
This is enabled with the force_add parameter which is False per default and
thus, the prior behavior of the method is unchanged if not otherwise specified.
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugzilla.wikimedia.org/show_bug.cgi?id=54566
Web browser: ---
Bug ID: 54566
Summary: New option "-no" to djvutext.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/patches/539/
Reported by: aronsson
Created on: 2012-03-12 14:40:15
Subject: New option "-no" to djvutext.py
Original description:
djvutext.py adds OCR text to books in Wikisource. Some books already have text
for some pages, but not for others. The "-no" flag added by this patch only
adds new pages, but doesn't alter the text for any existing pages. \(At any
such question, it answers "no" automatically.\)
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugzilla.wikimedia.org/show_bug.cgi?id=55160
Web browser: ---
Bug ID: 55160
Summary: Page._getVersionHistory returns only a part of a
history
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/1546/
Reported by: dixond
Created on: 2012-11-28 13:00:50
Subject: Page._getVersionHistory returns only a part of a history
Assigned to: xqt
Original description:
There is a bug in Page.\_getVersionHistory. It doesn't load the whole history
it it is large. The problem in here \(wikipedia.py\):
if len\(result\['query'\]\['pages'\].values\(\)\[0\]\['revisions'\]\) <
revCount:
thisHistoryDone = True
I believe it should be as following:
if not getAll and
len\(result\['query'\]\['pages'\].values\(\)\[0\]\['revisions'\]\) >=
revCount:
thisHistoryDone = True
Version.py:
Pywikipedia trunk/pywikipedia/ \(r10745, 2012/11/20, 13:03:05\)
Python 2.7.3 \(default, Apr 10 2012, 23:31:26\) \[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.
https://bugzilla.wikimedia.org/show_bug.cgi?id=55039
Web browser: ---
Bug ID: 55039
Summary: add xml to weblinkchecker.py
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/299/
Reported by: beta16
Created on: 2012-03-05 18:09:14
Subject: add xml to weblinkchecker.py
Original description:
Pywikipedia trunk/pywikipedia/ \(r9951, 2012/03/01, 14:12:57\)
Python 2.7.2 \(default, Jun 12 2011, 15:08:59\) \[MSC v.1500 32 bit \(Intel\)\]
config-settings:
use\_api = True
use\_api\_login = True
unicode test: ok
It's possible to run the weblinkchecker.py with -xml parameter. Or read the
externallinks.sql.gz file?
Thanks\!
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugzilla.wikimedia.org/show_bug.cgi?id=55193
Web browser: ---
Bug ID: 55193
Summary: Missing key in ['query-continue'] value
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/1469/
Reported by: xqt
Created on: 2012-06-21 13:22:11
Subject: Missing key in ['query-continue'] value
Assigned to: russblau
Original description:
c:\Pywikipedia\rw>pwb.py interwiki.py -auto -cleanup -async
-usercontribs:Xqt -namespace:0 -namespace:14 -verbose
Pywikipediabot r10326 2012-06-08 12:08:53Z
Python 2.7.3 \(default, Apr 10 2012, 23:24:47\) \[MSC v.1500 64 bit \(AMD64\)\]
Starting 1 threads...
Found 1 wikipedia:de processes running, including this one.
NOTE: Number of pages queued is 0, trying to add 60 more.
Retrieving 50 pages from wikipedia:de.
Missing 'revisions|info|categoryinfo|templates|langlinks' key in
\['query-continue'\] value.
Retrieving 10 pages from wikipedia:de.
Missing 'revisions|info|categoryinfo|templates|langlinks' key in
\['query-continue'\] value.
NOTE: \[\[de:Peja \(Ort\)\]\] is redirect to \[\[de:Pec\]\]
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugzilla.wikimedia.org/show_bug.cgi?id=55134
Web browser: ---
Bug ID: 55134
Summary: Suppress warning from getcurrenttimestamp()
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/1641/
Reported by: nu11zer0
Created on: 2013-07-10 17:50:45.220000
Subject: Suppress warning from getcurrenttimestamp()
Original description:
Since r11686, some warnings appear in my log, including "WARNING API warning
(parse): No 'title' or 'contentmodel' was given, assuming wikitext." I examined
and found that the text comes from getcurrenttimestamp(). Just add
"contentmodel=wikitext" should suppress this message.
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugzilla.wikimedia.org/show_bug.cgi?id=55121
Web browser: ---
Bug ID: 55121
Summary: No generate_family_file script
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/1669/
Reported by: legoktm
Created on: 2013-09-05 03:48:06.344000
Subject: No generate_family_file script
Original description:
core does not have a generate_family_files.py script that compat has.
This is necessary for anyone who wants to run on a 3rd party wiki.
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugzilla.wikimedia.org/show_bug.cgi?id=55182
Web browser: ---
Bug ID: 55182
Summary: Unable to input unicode titles to command line
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/1489/
Reported by: xqt
Created on: 2012-07-09 15:21:41
Subject: Unable to input unicode titles to command line
Original description:
I didn't found it possible to input an unicode title to the command line like:
category.py move -from:"Anni de el VIII secoło a.C." -to:"Ani de el VIII secoło
a.C." -lang:vec
The result is:
Getting \[\[Categoria:Anni de el VIII secolo a.C.\]\]
Getting \[\[Categoria:Anni de el VIII secolo a.C.\]\]
with simple "l" instead of "ł" \(and btw I am wondering about the two gettings
while that category does not exist\)
decoding these categories works as follows:
category.py move -from:"Anni\_de\_el\_VIII\_seco%C5%82o\_a.C."
-to:"Anni\_de\_el\_VIII\_seco%C5%82o\_a.C." -lang:vec
This bug is also valid for rewrite branch but there is no output.
--
You are receiving this mail because:
You are the assignee for the bug.