Xqt has submitted this change and it was merged.
Change subject: (Bug 55414) Initial bugfix for non existing pages
......................................................................
(Bug 55414) Initial bugfix for non existing pages
Decrease the maximum number of pages loaded at once to API restriction (50 pages)
Change-Id: Ic77d85b5503ea2661dd7d54f131977cceb988935
---
M interwiki.py
1 file changed, 2 insertions(+), 2 deletions(-)
Approvals:
Xqt: Looks good to me, approved
diff --git a/interwiki.py b/interwiki.py
index 8265bc6..88a4693 100644
--- a/interwiki.py
+++ b/interwiki.py
@@ -302,7 +302,7 @@
interwiki_min_subjects
-query: The maximum number of pages that the bot will load at once.
- Default value is 60.
+ Default value is 50.
Some configuration option can be used to change the working of this robot:
@@ -467,7 +467,7 @@
force = False
cleanup = False
remove = []
- maxquerysize = 60
+ maxquerysize = 50
same = False
skip = set()
skipauto = False
--
To view, visit https://gerrit.wikimedia.org/r/89500
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: Ic77d85b5503ea2661dd7d54f131977cceb988935
Gerrit-PatchSet: 1
Gerrit-Project: pywikibot/compat
Gerrit-Branch: master
Gerrit-Owner: Xqt <info(a)gno.de>
Gerrit-Reviewer: Xqt <info(a)gno.de>
Gerrit-Reviewer: jenkins-bot
Xqt has submitted this change and it was merged.
Change subject: A little description about not showing characters when you type passwords, which always confuses people
......................................................................
A little description about not showing characters when you type passwords, which always confuses people
implemented partially from [1]
[1] https://gerrit.wikimedia.org/r/#/c/79730/4/pywikibot/login.py
Change-Id: I6569fcb244f2bb19e6e6b34cc769c187a0e1b2eb
---
M login.py
1 file changed, 4 insertions(+), 3 deletions(-)
Approvals:
DrTrigon: Checked; Looks good to me, but someone else must approve
Xqt: Looks good to me, approved
diff --git a/login.py b/login.py
index 49befc8..7a812e5 100644
--- a/login.py
+++ b/login.py
@@ -302,7 +302,8 @@
# As we don't want the password to appear on the screen, we set
# password = True
self.password = pywikibot.input(
- u'Password for user %(name)s on %(site)s:'
+ u'Password for user %(name)s on %(site)s\n' \
+ u'No characters will be shown:'
% {'name': self.username, 'site': self.site},
password = True)
@@ -372,8 +373,8 @@
for arg in pywikibot.handleArgs():
if arg.startswith("-pass"):
if len(arg) == 5:
- password = pywikibot.input(u'Password for all accounts:',
- password = True)
+ password = pywikibot.input(u'Password for all accounts ' \
+ u'(no characters will be shown):', password = True)
else:
password = arg[6:]
elif arg == "-clean":
--
To view, visit https://gerrit.wikimedia.org/r/84007
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I6569fcb244f2bb19e6e6b34cc769c187a0e1b2eb
Gerrit-PatchSet: 4
Gerrit-Project: pywikibot/compat
Gerrit-Branch: master
Gerrit-Owner: Ladsgroup <ladsgroup(a)gmail.com>
Gerrit-Reviewer: DrTrigon <dr.trigon(a)surfeu.ch>
Gerrit-Reviewer: Ladsgroup <ladsgroup(a)gmail.com>
Gerrit-Reviewer: Legoktm <legoktm.wikipedia(a)gmail.com>
Gerrit-Reviewer: Xqt <info(a)gno.de>
Gerrit-Reviewer: jenkins-bot