summary refs log tree commit diff
path: root/scripts-dev/convert_server_keys.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-09-19LintBrendan Abolivier1-1/+2
2019-09-19Use six.moves.filter when filtering out from MXIDBrendan Abolivier1-1/+3
Python 2's filter() function and Python 3's don't return the same type when processing a string (respectively str and filter), therefore use six's compatibility mapping (which resolves to itertools.ifilter() if using Python2), then generate a string from the filtered list, in order to ensure consistent behaviour between Python 2 and Python 3.
2019-09-19Add unit tests for strip_invalid_mxid_charactersBrendan Abolivier1-1/+21
2019-09-10Update changelog.d/2.bugfixBrendan Abolivier1-1/+1
Co-Authored-By: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
2019-09-09Process revocations in _on_membership_or_invite_directBrendan Abolivier1-18/+11
2019-09-09Rename io.open import to limite side-effectsBrendan Abolivier1-2/+2
2019-09-09LintBrendan Abolivier1-1/+1
2019-09-09Revert "Merge pull request #5932 from ↵Brendan Abolivier3-7/+4
matrix-org/babolivier/account_validity_template_encode" This reverts commit 84e695f506faf54982b9e19dceb9c02acffad95f, reversing changes made to 99eec6d2d5cc76e645c3fd7ca6cda85b2bab6feb.
2019-09-09Read all files as UTF-8Brendan Abolivier1-1/+2
2019-09-09Revert "Ensure the password reset template is correctly converte