Bugs item #2809050, was opened at 2009-06-19 16:02
Message generated for change (Comment added) made by xqt
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=2809050&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: Open
Resolution: None
>Priority: 6
Private: No
Submitted By: patrol (patrol)
Assigned to: Nobody/Anonymous (nobody)
Summary: unnecessary blank line by cosmetic_changes.py for pl-wiki
Initial Comment:
Pywikipedia [http] trunk/pywikipedia (r6972, Jun 19 2009, 07:20:57)
Python 2.6.2 (r262:71600, Apr 21 2009, 15:05:37) [MSC v.1500 32 bit (Intel)]
during the bot operation (cosmetic_changes.py) is added blank line between a DEFAULTSORT template and categories which is unnecessary for pl-wiki
see edit of bot:
http://pl.wikipedia.org/w/index.php?title=Elle_Macpherson&diff=17417260&old…
and correction made by local WP:SK:
http://pl.wikipedia.org/w/index.php?title=Elle_Macpherson&diff=17476463&old…
Polish community will be grateful if you take this into account and correct
----------------------------------------------------------------------
>Comment By: xqt (xqt)
Date: 2010-04-12 14:19
Message:
see also #2890635
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=2809050&group_…
Feature Requests item #2890635, was opened at 2009-11-02 12:11
Message generated for change (Comment added) made by xqt
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603141&aid=2890635&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
Priority: 4
Private: No
Submitted By: Nobody/Anonymous (nobody)
>Assigned to: xqt (xqt)
Summary: cosmetic changes and DEFAULTSORT
Initial Comment:
script would repair Defaultsort template by adding
text = wikipedia.replaceExcept(text, r'{{DEFAULTSORT: ', r'{{DEFAULTSORT:', ['comment', 'nowiki', 'pre'])
but Script maybe shouldn't add empty row between DEFAULTSORT and categories like here
http://cs.wikipedia.org/w/index.php?title=Nicolas_de_Condorcet&curid=480689…
----------------------------------------------------------------------
>Comment By: xqt (xqt)
Date: 2010-04-12 14:18
Message:
Duplicate to #2809050
----------------------------------------------------------------------
Comment By: xqt (xqt)
Date: 2009-11-04 07:47
Message:
This comes from standardizeCategories which inserts a blank line between
any text above categories and the iw-links below it
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603141&aid=2890635&group_…
Feature Requests item #2125042, was opened at 2008-09-23 20:55
Message generated for change (Comment added) made by xqt
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603141&aid=2125042&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: Open
>Priority: 6
Private: No
Submitted By: Linar Khalitov (rubin16)
Assigned to: Nobody/Anonymous (nobody)
Summary: featured.py
Initial Comment:
The script places {{Link FA|language}} near the interwiki link if the article is a featured article in that wikipedia.
It would be nice if the bot wouldn't only add this template but also remove it when the article loses its featured status.
This will help to avoid such situations as
http://ru.wikipedia.org/w/index.php?title=0,(9)&curid=354454&diff=11094819&…
(here you can see the work of good.py, but it's based on the same system as featured.py).
Is it possible to add such function?
Thanks a lot.
----------------------------------------------------------------------
>Comment By: xqt (xqt)
Date: 2010-04-12 13:57
Message:
Reproted via mail:
----------------------------
Hello guys, if it's possible, can you adapt featured.py to check if the
article is a former featured in X language and remove the Link FA template?
Maybe using
http://en.wikipedia.org/wiki/Category:Wikipedia_former_featured_articles
for FA and http://en.wikipedia.org/wiki/Category:Delisted_good_articles for
GA.
Best regards
--Manuel Taveras
----------------------------
----------------------------------------------------------------------
Comment By: Linar Khalitov (rubin16)
Date: 2008-10-06 14:54
Message:
that turned out to be a wrong decision...
----------------------------------------------------------------------
Comment By: Linar Khalitov (rubin16)
Date: 2008-09-24 13:21
Message:
File Added: featured.py
----------------------------------------------------------------------
Comment By: Linar Khalitov (rubin16)
Date: 2008-09-24 13:19
Message:
I've changed the script a bit. As far as I am concerned this will prevent
the bot from adding {{Link FA}} template if there already was {{Link GA}}
template.
<code>
if atrans:
text=atrans.get()
m=re_Link_FA.search(text)
#added
good=re_Link_GA.search(text)
if m:
wikipedia.output(u"(already done)")
#added
if good:
wikipedia.output(u"(GOOD ARTICLE)")
else:
</code>
But this is not a complete decision: the best way is to overwrite the old
template by new one but I don't know how to do it.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603141&aid=2125042&group_…
Bugs item #1969051, was opened at 2008-05-21 21:13
Message generated for change (Comment added) made by xqt
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=1969051&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: Daniel Barrett (djbarrett)
>Assigned to: xqt (xqt)
Summary: weblinkchecker should ignore URLs inside some tags
Initial Comment:
Our MediaWiki site has a tag that runs database queries:
<sql>select foo from bar</sql>
Unfortunately, when the query includes a URL:
<sql>select 'http://blah' from bar</sql>
weblinkchecker.py thinks this is a real URL and reports:
http://blah' - Socket Error: 'getaddrinfo failed'
(Notice the single quote on the end of the URL.)
This problem should be preventable somehow: get pywikipedia to ignore strings that look like URLs when enclosed within certain parser tags.
----------------------------------------------------------------------
>Comment By: xqt (xqt)
Date: 2010-04-12 13:49
Message:
done in pyrev:8076
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=1969051&group_…
Patches item #2985564, was opened at 2010-04-11 21:44
Message generated for change (Settings changed) made by xqt
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603140&aid=2985564&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: Open
>Resolution: Postponed
Priority: 5
Private: No
Submitted By: masti (masti01)
>Assigned to: xqt (xqt)
Summary: cosmetic_changes.py
Initial Comment:
if the link and description are the same except for capitalisation use link as link skipping description. Useful for cleaning up after capitalisation related redirects cleaning. Example: http://pl.wikipedia.org/w/index.php?diff=21129378&oldid=21129374&rcid=21691…
----------------------------------------------------------------------
>Comment By: xqt (xqt)
Date: 2010-04-12 13:12
Message:
I am not sure whether this is a good idea of cause this does spelling
changes overruling human edits. If running this in autonomous mode we must
enshure the result is always right. That's why I would like to wait for
other comments.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603140&aid=2985564&group_…
Patches item #2985625, was opened at 2010-04-12 01:18
Message generated for change (Comment added) made by xqt
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603140&aid=2985625&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: Open
Resolution: None
Priority: 5
Private: No
Submitted By: masti (masti01)
>Assigned to: xqt (xqt)
Summary: patch for #2985621
Initial Comment:
right parenthesis is allowed by mediawiki
attaching patch for textlib.py
----------------------------------------------------------------------
>Comment By: xqt (xqt)
Date: 2010-04-12 10:24
Message:
Waiting for re at #2985621
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603140&aid=2985625&group_…
Bugs item #2985621, was opened at 2010-04-12 00:54
Message generated for change (Comment added) made by xqt
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=2985621&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: Open
Resolution: None
Priority: 5
Private: No
Submitted By: masti (masti01)
>Assigned to: xqt (xqt)
Summary: weblinkchecker.py - stripping ")"
Initial Comment:
weblinkchecker i stripping trailing ) in links creating false dead links
example: http://pl.wikipedia.org/w/index.php?title=Dyskusja%3AJean-Luc_Picard&action…
python version.py
Pywikipedia [http] trunk/pywikipedia (r8074, 2010/04/10, 23:12:44)
Python 2.6.2 (r262:71600, Jan 25 2010, 18:46:45)
[GCC 4.4.2 20091222 (Red Hat 4.4.2-20)]
----------------------------------------------------------------------
>Comment By: xqt (xqt)
Date: 2010-04-12 10:13
Message:
You have deleted the sample and I am not a sysop on pl-wiki. Could you give
me that hint please.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603138&aid=2985621&group_…
Patches item #2985626, was opened at 2010-04-12 01:21
Message generated for change (Comment added) made by xqt
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603140&aid=2985626&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: Accepted
Priority: 5
Private: No
Submitted By: masti (masti01)
>Assigned to: xqt (xqt)
Summary: pl weblinkchecker.py update
Initial Comment:
update for a new template (will be active on all pl. projects)
----------------------------------------------------------------------
>Comment By: xqt (xqt)
Date: 2010-04-12 08:34
Message:
done in pyrev:8075
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603140&aid=2985626&group_…
Patches item #2985626, was opened at 2010-04-12 01:21
Message generated for change (Tracker Item Submitted) made by masti01
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603140&aid=2985626&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: Open
Resolution: None
Priority: 5
Private: No
Submitted By: masti (masti01)
Assigned to: Nobody/Anonymous (nobody)
Summary: pl weblinkchecker.py update
Initial Comment:
update for a new template (will be active on all pl. projects)
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=603140&aid=2985626&group_…