Patches item #3080440, was opened at 2010-10-03 19:04
Message generated for change (Comment added) made by xqt
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603140&aid=3080440&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: Translations
Group: None
>Status: Closed
>Resolution: Accepted
Priority: 5
Private: No
Submitted By: DixonD (dixond)
>Assigned to: xqt (xqt)
Summary: Ukrainian message in movepages.py
Initial Comment:
Add Ukrainian message in movepages.py
----------------------------------------------------------------------
>Comment By: xqt (xqt)
Date: 2010-10-04 21:34
Message:
done in r8602
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603140&aid=3080440&group_…
Feature Requests item #3080876, was opened at 2010-10-04 12:17
Message generated for change (Tracker Item Submitted) made by nobody
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603141&aid=3080876&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
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: force improvement for interwiki
Initial Comment:
recently introducted -cleanup option is great. I would suggest further improvement for the current -force operation, i.e. adding additional parameters to distinguish between different types of problems. e.g. -force:namespace would remove namespace mismatch (when a page has a template as interwiki or a category has a page link as interwiki, for example), and -force:disambig would remove disambig status mismatch, and -force:all would combine both of the above options. -force:disambig is the most controversial edit but it still may be needed for manual operations, while -force:namespace is less controversial and could be used in auto mode as well. would it be possible to implement this?
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603141&aid=3080876&group_…
Patches item #3080440, was opened at 2010-10-03 20:04
Message generated for change (Tracker Item Submitted) made by dixond
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603140&aid=3080440&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: Translations
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: DixonD (dixond)
Assigned to: Nobody/Anonymous (nobody)
Summary: Ukrainian message in movepages.py
Initial Comment:
Add Ukrainian message in movepages.py
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603140&aid=3080440&group_…
Bugs item #3080364, was opened at 2010-10-03 15:51
Message generated for change (Tracker Item Submitted) made by emijrp
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3080364&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: General
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: emijrp (emijrp)
Assigned to: Nobody/Anonymous (nobody)
Summary: xmlreader.py fails a lot
Initial Comment:
Hi all;
I think that there is an error in xmlreader.py. When parsing a full revision XML (in this case[1]), using this code[2] (look at the try-catch, it writes in console when it fails) I get correctly username, timestamp and revisionid, but sometimes, the page title and the page id are None or empty string.
The first error is:
['', None, 'QuartierLatin1968', '2004-10-10T04:24:14Z', '4267'] #look the empty string for the title, and the None for pageid
But if we do:
7za e -bd -so kwwiki-20100926-pages-meta-history.xml.7z 2>/dev/null | egrep -i '2004-10-10T04::14Z' -C20
We get this[3], which is OK, the page title and the page id are available in the XML, but not correctly parsed. And this is not the only page title and page it that fails.
Perhaps I have missed something, because I'm learning to parsing XML. Sorry in that case.
Regards,
emijrp
[1] http://download.wikimedia.org/kwwiki/20100926/kwwiki-20100926-pages-meta-hi…
[2] http://pastebin.ca/1951930
[3] http://pastebin.ca/1951937
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3080364&group_…
Bugs item #3080070, was opened at 2010-10-02 14:37
Message generated for change (Tracker Item Submitted) made by nakor-wikipedia
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3080070&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: rewrite
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nakor Wikipedia (nakor-wikipedia)
Assigned to: Russell Blau (russblau)
Summary: templatesWithParam return params in wrong order
Initial Comment:
When there are more than 9 parameters in a template, templatesWithParam does not retuen them in the correct order. Below is a patch that fixes the problem:
### Eclipse Workspace Patch 1.0
#P pywikibot
Index: pywikibot/page.py
===================================================================
--- pywikibot/page.py (revision 8601)
+++ pywikibot/page.py (working copy)
@@ -930,13 +930,16 @@
args = template[1]
positional = []
named = {}
+ intkeys = {}
for key in sorted(args):
try:
int(key)
except ValueError:
named[key] = args[key]
else:
- positional.append(args[key])
+ intkeys[int(key)]=args[key]
+ for key in sorted(intkeys, key=int):
+ positional.append(intkeys[key])
for name in named:
positional.append("%s=%s" % (name, named[name]))
result.append((pywikibot.Page(link, self.site), positional))
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3080070&group_…
Bugs item #3080059, was opened at 2010-10-02 19:39
Message generated for change (Comment added) made by mga73
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3080059&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: other
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: MGA73 (mga73)
Assigned to: Nobody/Anonymous (nobody)
Summary: NowCommons.py
Initial Comment:
NowCommons.py gives me an error after replacing usage:
Traceback (most recent call last):
File "C:\pywikipedia\nowcommons.py", line 359, in <module>
main()
File "C:\pywikipedia\nowcommons.py", line 355, in main
bot.run()
File "C:\pywikipedia\nowcommons.py", line 318, in run
oImageRobot.run()
File "C:\pywikipedia\image.py", line 137, in run
case = re.escape(self.oldImage[0].upper() + \
IndexError: string index out of range
MGA73
----------------------------------------------------------------------
>Comment By: MGA73 (mga73)
Date: 2010-10-02 19:42
Message:
__version__ = '$Id: nowcommons.py 8406 2010-08-17 17:09:03Z amir $'
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3080059&group_…
Bugs item #3080059, was opened at 2010-10-02 19:39
Message generated for change (Tracker Item Submitted) made by mga73
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3080059&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: other
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: MGA73 (mga73)
Assigned to: Nobody/Anonymous (nobody)
Summary: NowCommons.py
Initial Comment:
NowCommons.py gives me an error after replacing usage:
Traceback (most recent call last):
File "C:\pywikipedia\nowcommons.py", line 359, in <module>
main()
File "C:\pywikipedia\nowcommons.py", line 355, in main
bot.run()
File "C:\pywikipedia\nowcommons.py", line 318, in run
oImageRobot.run()
File "C:\pywikipedia\image.py", line 137, in run
case = re.escape(self.oldImage[0].upper() + \
IndexError: string index out of range
MGA73
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=3080059&group_…