http://www.mediawiki.org/wiki/Special:Code/pywikipedia/10103
Revision: 10103 Author: binbot Date: 2012-04-10 07:18:22 +0000 (Tue, 10 Apr 2012) Log Message: ----------- Allow textlink=True for saving titles (we may want to upload them to a wikipage as a list)
Modified Paths: -------------- trunk/pywikipedia/replace.py
Modified: trunk/pywikipedia/replace.py =================================================================== --- trunk/pywikipedia/replace.py 2012-04-09 14:58:32 UTC (rev 10102) +++ trunk/pywikipedia/replace.py 2012-04-10 07:18:22 UTC (rev 10103) @@ -531,8 +531,8 @@ #Save the title for later processing instead of editing self.editcounter += 1 self.articles.write(u'#%s\n%s' - % (page.title(asLink=True), - self.splitLine())) + % (page.title(asLink=True, textlink=True), + self.splitLine())) self.articles.flush() # For the peace of our soul :-) # choice must be 'N' break @@ -559,8 +559,8 @@ #Save the title for later processing instead of editing self.editcounter += 1 self.articles.write(u'#%s\n%s' - % (page.title(asLink=True), - self.splitLine())) + % (page.title(asLink=True, textlink=True), + self.splitLine())) self.articles.flush()
#Finally:
pywikipedia-svn@lists.wikimedia.org