summary refs log tree commit diff
path: root/cmdclient/console.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-10-30Fix pep8 warningsMark Haines35-135/+179
2014-10-30Fix SQL so that accepts we may want to persist events twice.Erik Johnston2-25/+47
2014-10-30SYWEB-112: Use the right user ID when determining invites for display on the ↵Kegan Dougal1-2/+9
recents list.
2014-10-29SYWEB-48: Better regex for binging on usernames.Kegan Dougal1-1/+28
This uses /\blocalpart\b|\bdisplayname\b/i which is overall a lot better than before. This specifically gets @localpart references which the bug was originally for.
2014-10-29Use floating-point rather than integer division to handle timeouts so that ↵Paul "LeoNerd" Evans1-1/+1
non-zero but sub-second waits don't collapse to zero
2014-10-29Add a run_on_reactor functionErik Johnston1-0/+7
2014-10-29Start filling out and using new events tablesErik Johnston8-93/+159
2014-10-29SYWEB-127: Open event info modal dialog when the bubble is clicked.Kegan Dougal1-12/+11
This allows images to be clicked by clicking on the edge with the bubble. This is important since Redactions are only visible on the event info screen.
2014-10-29Fix an off-by-one bug in presence event stream pagination; this might be ↵Paul "LeoNerd" Evans2-1/+17
responsible for any number of bug reports
2014-10-29Construct a source-specific 'SourcePaginationConfig' to pass into ↵Paul "LeoNerd" Evans6-40/+43
get_pagination_rows; meaning each source doesn't have to care about its own name any more
2014-10-29Remove redundant (and incorrect) presence pagination fetching codePaul "LeoNerd" Evans1-3/+0
2014-10-29oops - fix css on desktopMatthew Hodgson1-1/+0
2014-10-29SYWEB-98: Handle incoming m.room.redaction events.Kegan Dougal1-0/+39
UI for redactions is now complete.
2014-10-29SYWEB-98: Add redactEvent matrix API call.Kegan Dougal3-2/+30
2014-10-29SYWEB-98: Add a 'Redact' button to the event info modal dialog.Kegan Dougal2-3/+31
I think this is better than overriding the right-click contextual menu. Currently clicking this button does nothing.
2014-10-29Implement SYWEB-58: Clicking a notification now takes you to that room.Kegan Dougal2-1/+7
2014-10-29Fix SYWEB-128 : Auto-scroll broken if not exactly at bottom of list.Kegan Dougal1-1/+3
Added a small 10px buffer so if the list isn't quite at the bottom it still actually scrolls.
2014-10-28Don't reference PDU when persisting eventErik Johnston2-4/+5
2014-10-28Begin implementing all the PDU storage stuff in Events landErik Johnston9-42/+485
2014-10-28Add transaction level logging and timing information. Add a _simple_delete ↵Erik Johnston9-21/+91
method
2014-10-28Clean up LoggingTransactionErik Johnston1-10/+4
2014-10-28Add timer to LoggingTransactionErik Johnston1-3/+10
2014-10-28fix mobile CSS layoutMatthew Hodgson2-4/+9
2014-10-27Fix SYWEB-110 : Prevent room ID leaking by looking for an m.room.nameKegan Dougal1-1/+11
2014-10-27Remove duplicate join_event from create_roomMark Haines1-5/+0
2014-10-27Fix SYWEB-114 : Error message when trying to invite a user already in the room.Kegan Dougal1-1/+1
2014-10-27Don't clobber existing cssKegan Dougal1-209/+0
2014-10-27Remove duplicate importErik Johnston1-1/+0
2014-10-27SYWEB-121: Have some bootstrap files.Kegan Dougal2-0/+9457
2014-10-27Implement SYWEB-121 : Display JSON when clicking messages.Kegan Dougal4-12/+24
JSON is displayed as a modal dialog via AngularJS' bootstrap module, "ui.bootstrap".
2014-10-27HandleRoomMember: handle correctly prev_contentgiomfo1-1/+1
2014-10-27Fix SYWEB-109 : No error if HS rejects the username in registration.Kegan Dougal1-0/+3
Display all error messages from the server when registering, rather than just the types of errors the client recognises.
2014-10-27