[Wikitech-l] Team Practices Coaching Clinic during 2017 Developer Summit

2017-01-05 Thread Joel Aufrecht
Team Practices Group Clinic TPG will be offering 15-minute consultations on team practices and collaboration topics of your choosing; for example: task tracking, improving communication between or within teams, or communicating with geographic diversity. See TPG_Clinic

Re: [Wikitech-l] pywikibot troubleshooting in recitation-bot

2017-01-05 Thread Anthony Di Franco
Actually I've made a bit of progress diagnosing this. It has nothing to do with the login or looping in my code but may have to do with the composition of my use of multiprocessing and pywikibot's use of multithreading and may have to do with this bug: https://phabricator.wikimedia.org/T135986 Any

[Wikitech-l] Help me to fix a bug in my extension

2017-01-05 Thread Victor Porton
My extension does add additional links (which it is created to render in addition to the normal [[...]] links) to the pagelinks table for the edited page every even edit and erroneously removes them back every odd edit. Please help to debug this silly behavior: https://gerrit.wikimedia.org/r/#/c/

Re: [Wikitech-l] Help me to fix a bug in my extension

2017-01-05 Thread bawolff
Hi, You shouldn't modify the contents of the ParserOutput object from any OutputPage related hook, as MediaWiki's cache system won't take the new version into account correctly. Instead you should use a hook called from the parser. For your use case I would suggest the ParserAfterParse. So try ch