http://www.mediawiki.org/wiki/Special:Code/pywikipedia/10781
Revision: 10781 Author: xqt Date: 2012-12-11 10:53:08 +0000 (Tue, 11 Dec 2012) Log Message: ----------- corresponding image_repository and data_repository of a Page
Modified Paths: -------------- branches/rewrite/pywikibot/page.py
Modified: branches/rewrite/pywikibot/page.py =================================================================== --- branches/rewrite/pywikibot/page.py 2012-12-11 10:45:44 UTC (rev 10780) +++ branches/rewrite/pywikibot/page.py 2012-12-11 10:53:08 UTC (rev 10781) @@ -94,6 +94,16 @@ """Return the Site object for the wiki on which this Page resides.""" return self._link.site
+ @property + def image_repository(self): + """Return the Site object for the image repository.""" + return self.site.image_repository() + + @property + def data_repository(self): + """Return the Site object for the data repository.""" + return self.site.data_repository() + def namespace(self): """Return the number of the namespace of the page.
@@ -460,8 +470,8 @@
""" txt = self.get() - txt = pywikibot.removeLanguageLinks(txt, site = self.site) - txt = pywikibot.removeCategoryLinks(txt, site = self.site) + txt = pywikibot.removeLanguageLinks(txt, site=self.site) + txt = pywikibot.removeCategoryLinks(txt, site=self.site) if len(txt) < 4: return True else: @@ -837,8 +847,8 @@ """ self.text = newtext return self.save(comment=comment, watch=watchArticle, - minor=minorEdit, botflag=botflag, force=force, - async=async, callback=callback) + minor=minorEdit, botflag=botflag, force=force, + async=async, callback=callback)
def put_async(self, newtext, comment=u'', watchArticle=None, minorEdit=True, botflag=None, force=False, callback=None): @@ -2560,7 +2570,6 @@ Assumes that the lang & title come clean, no checks are made. """ link = Link.__new__(Link) - link._site = pywikibot.Site(lang, source.family.name) link._section = None link._source = source @@ -2584,7 +2593,7 @@ # This regular expression will match any decimal and hexadecimal entity and # also entities that might be named entities. entityR = re.compile( - r'&(#(?P<decimal>\d+)|#x(?P<hex>[0-9a-fA-F]+)|(?P<name>[A-Za-z]+));') + r'&(?:amp;)?(#(?P<decimal>\d+)|#x(?P<hex>[0-9a-fA-F]+)|(?P<name>[A-Za-z]+));') # These characters are Html-illegal, but sadly you *can* find some of # these and converting them to unichr(decimal) is unsuitable convertIllegalHtmlEntities = {
pywikipedia-svn@lists.wikimedia.org