summary refs log tree commit diff
path: root/synapse/api/errors.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-09-15Also unittest RoomMemberStore's joined_hosts_for_room()Paul "LeoNerd" Evans1-0/+48
2014-09-15Use new 'tests.unittest' in new storage level testsPaul "LeoNerd" Evans5-5/+5
2014-09-15Correctly handle the 'age' key in events and pdusErik Johnston10-15/+51
2014-09-15BF: inviter field has moved to the room root objectEmmanuel ROHEE1-1/+1
2014-09-15BF: presence and eventMap were not reset at logout.Emmanuel ROHEE1-10/+14
2014-09-15Use "white-space: pre-wrap" for "Text will wrap when necessary, and on line ↵Emmanuel ROHEE1-3/+2
breaks"
2014-09-13unbreak wordwrapping by breaking multiline paste for nowMatthew Hodgson1-1/+2
2014-09-13always scroll to bottom when entering a roomMatthew Hodgson1-2/+2
2014-09-13more wishlistMatthew Hodgson1-0/+2
2014-09-12Define a CLOS-like 'around' modifier as a decorator, to neaten up the ↵Paul "LeoNerd" Evans1-10/+23
'orig_*' noise of wrapping the setUp()/tearDown() methods
2014-09-12Add some docstringsPaul "LeoNerd" Evans1-0/+6
2014-09-12Additionally look first for a 'loglevel' attribute on the running test ↵Paul "LeoNerd" Evans1-3/+7
method, before the TestCase
2014-09-12Define a (class) decorator for easily setting a DEBUG logging level on a ↵Paul "LeoNerd" Evans1-0/+5
TestCase
2014-09-12Allow a TestCase to set a 'loglevel' attribute, which overrides the logging ↵Paul "LeoNerd" Evans1-1/+22
level while that testcase runs
2014-09-12Have all unit tests import from our own subclass of trial's unittest ↵Paul "LeoNerd" Evans21-61/+52
TestCase; set up logging in ONE PLACE ONLY
2014-09-12Update CHANGES.rst v0.2.3Erik Johnston1-0/+3
2014-09-12SpellcheckErik Johnston1-1/+1
2014-09-12Add note about glare supportErik Johnston1-0/+1
2014-09-12Update the spec document to replace the candidate message with the ↵David Baker1-3/+3
candidates message.
2014-09-12Send multiple candidates at once instead of all individually. Changes spec ↵David Baker2-9/+58
to include multiple candidates in a candidate(s) message.
2014-09-12Bump version and change logErik Johnston3-2/+21
2014-09-12Fix bug where we relied on the current_state_events being updated when we ↵Erik Johnston1-2/+2
are handling type specific persistence
2014-09-12Fix bug where we no longer stored user_id on PdusErik Johnston1-1/+7
2014-09-12Make the state resolution use actual power levels rather than taking them ↵Erik Johnston5-127/+194
from a Pdu key.
2014-09-12Fix bug where we incorrectly removed a remote host from the list of hosts in ↵Erik Johnston1-12/+45
a room when any user from that host left that room even if they weren't the last user from that host in that room
2014-09-12Fix bug where we didn't return a tuple when expected.Erik Johnston1-1/