Merge branch 'release-1.1'

This commit is contained in:
2018-05-17 12:41:35 +02:00
2 changed files with 18 additions and 2 deletions

View File

@@ -18,6 +18,9 @@ Those can be installed using pip and the _requirements.txt_ file provided with t
Versions Versions
-------- --------
* v1.1
- Improved page filter
* v1.0 * v1.0
- first stable release - first stable release
- less debug output - less debug output

View File

@@ -3,7 +3,7 @@
# #
# redfam.py # redfam.py
# #
# Copyright 2017 Jonathan Golder <jonathan@golderweb.de> # Copyright 2018 Jonathan Golder <jonathan@golderweb.de>
# #
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
@@ -594,8 +594,21 @@ class RedFamWorker( RedFam ):
except Break: except Break:
break break
# Follow moved pages
if self.article_has_status( "redirect", title=article ):
try:
page = page.moved_target()
except pywikibot.exceptions.NoMoveTarget:
pass
# Exclude Users & User Talkpage
if page.namespace() == 2 or page.namespace() == 3:
self.article_add_status( "user", title=article )
continue
# Toggle talkpage # Toggle talkpage
if talkpages: if talkpages and not page.isTalkPage() or\
not talkpages and page.isTalkPage():
page = page.toggleTalkPage() page = page.toggleTalkPage()
# Add reference to redfam to pages # Add reference to redfam to pages