Feature Requests item #2942609, was opened at 2010-01-30 00:59
Message generated for change (Comment added) made by xqt
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603141&aid=2942609&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: Interface Improvements
Group: None
>Status: Closed
Priority: 5
Private: No
Submitted By: Merlissimo (merlissimo)
>Assigned to: xqt (xqt)
Summary: add new summary to category.py /some user interface changes
Initial Comment:
+ add new category info to summary when replacing category
+ add list option to show option list again
+ short option list when same one is shown again
+ add m as key for showing more content (used by most other scripts)
----------------------------------------------------------------------
>Comment By: xqt (xqt)
Date: 2010-01-31 17:37
Message:
patch done in r7902. Thanks.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603141&aid=2942609&group_…
Feature Requests item #2942609, was opened at 2010-01-30 00:59
Message generated for change (Tracker Item Submitted) made by merlissimo
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603141&aid=2942609&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: Interface Improvements
Group: None
Status: Open
Priority: 5
Private: No
Submitted By: Merlissimo (merlissimo)
Assigned to: Nobody/Anonymous (nobody)
Summary: add new summary to category.py /some user interface changes
Initial Comment:
+ add new category info to summary when replacing category
+ add list option to show option list again
+ short option list when same one is shown again
+ add m as key for showing more content (used by most other scripts)
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603141&aid=2942609&group_…
Bugs item #2941497, was opened at 2010-01-28 10:31
Message generated for change (Comment added) made by xqt
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=2941497&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: DixonD (dixond)
Assigned to: Nobody/Anonymous (nobody)
Summary: Bug in function GraphDrawer#getLabel (interwiki_graph.py)
Initial Comment:
In line 49 we have return (u'"\"%s:%s\""' % (page.site().language(), page.title())).encode('utf-8')
I believe that there are extra double quotes in u'"\"%s:%s\""'. And this is the reason that resulted dot-file have two double quotes for every label.
----------------------------------------------------------------------
>Comment By: xqt (xqt)
Date: 2010-01-28 19:21
Message:
Have a look at #1999787
https://sourceforge.net/tracker/index.php?func=detail&aid=1999787&group_id=…
it says: "the only way to pass non-alphanumeric strings to dot was to
DOUBLE-quote
them".
That might be the point.
----------------------------------------------------------------------
Comment By: DixonD (dixond)
Date: 2010-01-28 14:03
Message:
But why u'\"%s:%s\"' instead of u'"\"%s:%s\""' will not enough? So we will
get just "en:Article" instead of ""en:Article"".
----------------------------------------------------------------------
Comment By: xqt (xqt)
Date: 2010-01-28 13:33
Message:
This is done due to an exception error (Bug #1999787).
see this revision for details:
http://svn.wikimedia.org/viewvc/pywikipedia?view=rev&revision=6605
Is there any other idea to solve this?
----------------------------------------------------------------------
Comment By: xqt (xqt)
Date: 2010-01-28 13:13
Message:
prio 9 means no function at all
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=2941497&group_…
Bugs item #2941628, was opened at 2010-01-28 14:30
Message generated for change (Tracker Item Submitted) made by nobody
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=2941628&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: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: BOM (inserted by notepad.exe) should be stripped
Initial Comment:
> python version.py
Pywikipedia [http] trunk/pywikipedia (r7897, 2010/01/28, 12:22:31)
Python 2.6.2 (r262:71605, Apr 14 2009, 22:40:02) [MSC v.1500 32 bit (Intel)]
----
If a win32 user uses notepad.exe as an external editor for editarticle.py, notepad may insert 3-byte utf-8 BOM in front of file if it was BOM-free utf-8 file.
It causes that pywikipedia affected pages (e.g. by solve_disambiguation.py) contain U+FEFF (decoded BOM), and causes tables broken. (since there is U+FEFF before "{|")
http://ko.wikipedia.org/w/index.php?diff=prev&oldid=4442519
BOM should be stripped since python open() does not automatically.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=2941628&group_…
Bugs item #2941497, was opened at 2010-01-28 11:31
Message generated for change (Comment added) made by dixond
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=2941497&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: DixonD (dixond)
Assigned to: Nobody/Anonymous (nobody)
Summary: Bug in function GraphDrawer#getLabel (interwiki_graph.py)
Initial Comment:
In line 49 we have return (u'"\"%s:%s\""' % (page.site().language(), page.title())).encode('utf-8')
I believe that there are extra double quotes in u'"\"%s:%s\""'. And this is the reason that resulted dot-file have two double quotes for every label.
----------------------------------------------------------------------
>Comment By: DixonD (dixond)
Date: 2010-01-28 15:03
Message:
But why u'\"%s:%s\"' instead of u'"\"%s:%s\""' will not enough? So we will
get just "en:Article" instead of ""en:Article"".
----------------------------------------------------------------------
Comment By: xqt (xqt)
Date: 2010-01-28 14:33
Message:
This is done due to an exception error (Bug #1999787).
see this revision for details:
http://svn.wikimedia.org/viewvc/pywikipedia?view=rev&revision=6605
Is there any other idea to solve this?
----------------------------------------------------------------------
Comment By: xqt (xqt)
Date: 2010-01-28 14:13
Message:
prio 9 means no function at all
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=2941497&group_…
Bugs item #2941497, was opened at 2010-01-28 10:31
Message generated for change (Comment added) made by xqt
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=2941497&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: DixonD (dixond)
Assigned to: Nobody/Anonymous (nobody)
Summary: Bug in function GraphDrawer#getLabel (interwiki_graph.py)
Initial Comment:
In line 49 we have return (u'"\"%s:%s\""' % (page.site().language(), page.title())).encode('utf-8')
I believe that there are extra double quotes in u'"\"%s:%s\""'. And this is the reason that resulted dot-file have two double quotes for every label.
----------------------------------------------------------------------
>Comment By: xqt (xqt)
Date: 2010-01-28 13:33
Message:
This is done due to an exception error (Bug #1999787).
see this revision for details:
http://svn.wikimedia.org/viewvc/pywikipedia?view=rev&revision=6605
Is there any other idea to solve this?
----------------------------------------------------------------------
Comment By: xqt (xqt)
Date: 2010-01-28 13:13
Message:
prio 9 means no function at all
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=2941497&group_…
Patches item #2941517, was opened at 2010-01-28 11:08
Message generated for change (Settings changed) made by xqt
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603140&aid=2941517&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: Category.py - some other Ukrainian translations
Initial Comment:
Added Ukrainian translations for deletion_reason_remove and msg_remove. Patch attached,
----------------------------------------------------------------------
>Comment By: xqt (xqt)
Date: 2010-01-28 13:24
Message:
done in r7897. Thanks for it.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603140&aid=2941517&group_…
Bugs item #2941497, was opened at 2010-01-28 10:31
Message generated for change (Comment added) made by xqt
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=2941497&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: DixonD (dixond)
Assigned to: Nobody/Anonymous (nobody)
Summary: Bug in function GraphDrawer#getLabel (interwiki_graph.py)
Initial Comment:
In line 49 we have return (u'"\"%s:%s\""' % (page.site().language(), page.title())).encode('utf-8')
I believe that there are extra double quotes in u'"\"%s:%s\""'. And this is the reason that resulted dot-file have two double quotes for every label.
----------------------------------------------------------------------
>Comment By: xqt (xqt)
Date: 2010-01-28 13:13
Message:
prio 9 means no function at all
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=2941497&group_…
Patches item #2941517, was opened at 2010-01-28 12:08
Message generated for change (Tracker Item Submitted) made by dixond
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603140&aid=2941517&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: Category.py - some other Ukrainian translations
Initial Comment:
Added Ukrainian translations for deletion_reason_remove and msg_remove. Patch attached,
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603140&aid=2941517&group_…
Bugs item #2941497, was opened at 2010-01-28 11:31
Message generated for change (Settings changed) made by dixond
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=2941497&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: 9
Private: No
Submitted By: DixonD (dixond)
Assigned to: Nobody/Anonymous (nobody)
Summary: Bug in function GraphDrawer#getLabel (interwiki_graph.py)
Initial Comment:
In line 49 we have return (u'"\"%s:%s\""' % (page.site().language(), page.title())).encode('utf-8')
I believe that there are extra double quotes in u'"\"%s:%s\""'. And this is the reason that resulted dot-file have two double quotes for every label.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=2941497&group_…