summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* Start of converting PresenceHandler unit tests to use SQLiteMemoryDbPool - ↵Paul "LeoNerd" Evans2014-09-111-46/+27
| | | | just the 'State' test case for now
* Unit-test DirectoryHandler against (real) SQLite memory store, not mocked ↵Paul "LeoNerd" Evans2014-09-111-15/+12
| | | | storage layer
* Added unit tests of DirectoryStorePaul "LeoNerd" Evans2014-09-111-0/+66
|
* Test ProfileHandler against the real datastore layer using SQLite :memory:Paul "LeoNerd" Evans2014-09-101-25/+25
|
* Added unit tests for PresenceDataStore tooPaul "LeoNerd" Evans2014-09-102-2/+166
|
* Remember to kill now-dead import in test_profile.pyPaul "LeoNerd" Evans2014-09-101-1/+0
|
* Move SQLiteMemoryDbPool implementation into tests.utilsPaul "LeoNerd" Evans2014-09-102-27/+15
|
* It's considered polite to actually wait for DB prepare before running testsPaul "LeoNerd" Evans2014-09-101-1/+4
|
* Also test avatar_url profile fieldPaul "LeoNerd" Evans2014-09-101-0/+14
|
* Tiny trivial PoC unit-test using SQLite in :memory: modePaul "LeoNerd" Evans2014-09-101-0/+78
|
* prepare_database() on db_conn, not plain name, so we can pass in the ↵Paul "LeoNerd" Evans2014-09-102-32/+35
| | | | connection from outside
* Make sure not to open our TCP ports until /after/ the DB is nicely prepared ↵Paul "LeoNerd" Evans2014-09-101-1/+2
| | | | ready for use
* No need for a tiny run() function any more, just use reactor.run() directlyPaul "LeoNerd" Evans2014-09-101-6/+2
|
* Move database preparing code out of homserver.py into storage where it belongsPaul "LeoNerd" Evans2014-09-103-64/+71
|
* Add text for incoming callsDavid Baker2014-09-101-0/+1
|
* Show mxid in call bar for users with no displaynameDavid Baker2014-09-101-1/+6
|
* Less buggy rejection of calls when busyDavid Baker2014-09-102-13/+20
|
* reject calls if there's already a call in progressDavid Baker2014-09-101-0/+4
|
* More rst formatting.Kegan Dougal2014-09-091-5/+6
|
* Extra restrictions to make parsing easier.Kegan Dougal2014-09-091-1/+8
|
* TyopsKegan Dougal2014-09-091-7/+7
|
* Added initial draft for human-readable ID rules.Kegan Dougal2014-09-091-0/+71
|
* Move model to client-server for now.Kegan Dougal2014-09-097-0/+0
|
* Hangup call if user denies media access.David Baker2014-09-092-8/+2
|
* Don't try setting up the call if the user has canceled it before allowing ↵David Baker2014-09-091-0/+4
| | | | permission.
* Don't break if you press the hangup button before allowing media permission.David Baker2014-09-092-2/+3
|
* Don't play an engaged tone if we hang up locally.David Baker2014-09-093-5/+18
|
* Fix bug where we used an unbound local variable if we ended up rolling back ↵Erik Johnston2014-09-091-4/+1
| | | | the persist_event transaction
* Improved room page loading flow: do pagination only when the members list is ↵Emmanuel ROHEE2014-09-091-3/+5
| | | | | | available. Killed an unexpected pagination trigger when the page load: paginateMore
* When the user has been kicked or banned from a room, remove the room from ↵Emmanuel ROHEE2014-09-091-1/+8
| | | | his recents list
* Made recents list display something when joining a room which we do not have ↵Emmanuel ROHEE2014-09-091-0/+8
| | | | state data yet
* BF: prevent joined messages to be displayed twice when joining a room.Emmanuel ROHEE2014-09-091-4/+16
| | | | Do this by synchronizing the m.room.member joined event from the events stream and the start of the pagination
* make calls work in FirefoxDavid Baker2014-09-091-8/+21
|
* Removed historical code: recents does not need to manage presences. It is ↵Emmanuel ROHEE2014-09-091-6/+0
| | | | already done by initialSync in eventStreamService
* BF: Made the grey background of the current room cover all the cell widthEmmanuel ROHEE2014-09-091-1/+1
|
* Show call invites in the message tableDavid Baker2014-09-092-0/+7
|
* CSS tweakageKegan Dougal2014-09-081-0/+3
|
* Display a 'Set Topic' button if there is no topic or it's a 0-len string.Kegan Dougal2014-09-083-11/+30
|
* Add ability to set topic by double-clicking on the topic text then hitting ↵Kegan Dougal2014-09-085-1/+59
| | | | enter.
* Fixed bug which displayed an older room topic because it was being returned ↵Kegan Dougal2014-09-081-1/+13
| | | | from /initialSync messages key. Check the ts of the event before clobbering state.
* long topic is long. CSS support itKegan Dougal2014-09-081-0/+4
|
* Display public room topics if they exist on the public room list.Kegan Dougal2014-09-082-0/+10
|
* Display the room topic in the room, underneath the name of the room.Kegan Dougal2014-09-083-8/+33
|
* Update jsfiddles to have more helpful error messages when there is no ↵Kegan Dougal2014-09-084-5/+30
| | | | connection when logging in.
* Add slightly helpful advice on how to generate config if you don'y already ↵Erik Johnston2014-09-081-0/+1
| | | | have one
* Don't autogen config in synctl for the same reasons we don't turn of ↵Erik Johnston2014-09-081-6/+2
| | | | | | --generate-config by default on the homeserver - it is liable to confuse people who have moved the config file or have chosen a non standard location. Also, don't override log file location.
* Apparently we can't do txn.rollback(), so raise and catch an exception instead.Erik Johnston2014-09-081-11/+19
|
* Added demo.detailsKegan Dougal2014-09-081-0/+7
|
* Updated jsfiddle links to point to githubKegan Dougal2014-09-081-5/+5
|
* Bodge to default to '1 users' when you create a room, which is better than ↵Kegan Dougal2014-09-082-1/+6
| | | | blindly assuming a recents controller is writing to rootScope.rooms and setting numUsersInRoom there.
* Added big massive TODOs on a huge design problem with initial syncKegan Dougal2014-09-082-1/+20
|
* Float right the num users, apply room highlight to user count.Kegan Dougal2014-09-082-1/+7
|
* Better checks are better.Kegan Dougal2014-09-081-1/+1
|
* Added num_joined_users key to /publicRooms for each room. Show this ↵Kegan Dougal2014-09-084-2/+15
| | | | information in the webclient.
* Handle the case where we don't have a common ancestorErik Johnston2014-09-082-9/+42
|
* Added number of users in recent rooms.Kegan Dougal2014-09-082-0/+16
|
* Fix bug in state handling where we incorrectly identified a missing pdu. ↵Erik Johnston2014-09-083-67/+267
| | | | Update tests to catch this case.
* Make #matrix public rooms bold to make them stand out from the other public ↵Kegan Dougal2014-09-082-1/+8
| | | | rooms. Ideally this would be metadata in /publicRooms to say something like 'featured channel', but for now, just make it a client side check.
* Sort the public room list by display name.Kegan Dougal2014-09-081-1/+1
|
* Rollback if we try and insert duplicate eventsErik Johnston2014-09-081-0/+1
|
* Added /join descriptionEmmanuel ROHEE2014-09-081-0/+1
|
* matrixService.rooms must be renamed matrixService.initialSync nowEmmanuel ROHEE2014-09-082-3/+4
|
* App startup improvements:Emmanuel ROHEE2014-09-083-39/+39
| | | | | | | - do one and only one initialSync when the app starts. (recents-controller does not do its own anymore) - initialSync: get only the last message per room instead of default number of messages (10) Prevent recents-controller from loosing its data each time the page URL changes
* add sounds to the calling interfaceDavid Baker2014-09-0811-14/+75
|
* Merge branch 'origin/release-v0.2.2' into developEmmanuel ROHEE2014-09-080-0/+0
|\
| * fix desktop notifs, which were broken in eab463fdMatthew Hodgson2014-09-062-3/+3
| |
| * Center recaptcha dialog.Kegan Dougal2014-09-061-0/+4
| |
| * Remove disabled change from CHANGESErik Johnston2014-09-061-1/+0
| |
| * disable broken event dup suppression, and fix echo for /meMatthew Hodgson2014-09-062-16/+25
| |
| * Set the room_alias field when we encounter a new one, rather than only from ↵Kegan Dougal2014-09-061-2/+1
| | | | | | | | local storage.
| * Use the room_display_name when presenting on the home page, and not the ↵Kegan Dougal2014-09-061-1/+1
| | | | | | | | room_alias which may not be set.
| * https when loading recaptcha jsKegan Dougal2014-09-061-1/+1
| |
| * Fix race in presence handler where we evicted things from cache while ↵Erik Johnston2014-09-061-2/+3
| | | | | | | | handling a key therein
| * Bump version and changelogErik Johnston2014-09-063-2/+23
| |
* | fix embarassing bug where in-progress messages get vaped when the previous ↵Matthew Hodgson2014-09-081-1/+3
| | | | | | | | one gets delivered
* | fix desktop notifs, which were broken in eab463fdMatthew Hodgson2014-09-082-3/+3
| |
* | Center recaptcha dialog.Kegan Dougal2014-09-081-0/+4
| |
* | Remove disabled change from CHANGESErik Johnston2014-09-081-1/+0
| |
* | disable broken event dup suppression, and fix echo for /meMatthew Hodgson2014-09-082-16/+25
| |
* | Set the room_alias field when we encounter a new one, rather than only from ↵Kegan Dougal2014-09-081-2/+1
| | | | | | | | local storage.
* | Use the room_display_name when presenting on the home page, and not the ↵Kegan Dougal2014-09-081-1/+1
| | | | | | | | room_alias which may not be set.
* | https when loading recaptcha jsKegan Dougal2014-09-081-1/+1
| |
* | Fix race in presence handler where we evicted things from cache while ↵Erik Johnston2014-09-081-2/+3
| | | | | | | | handling a key therein
* | Bump version and changelogErik Johnston2014-09-083-2/+23
| |
* | Minor spec tweaks.Kegan Dougal2014-09-081-3/+5
| |
* | Revert "BF: Made notification work again (forgot to renamed "offline" to ↵Emmanuel ROHEE2014-09-081-1/+1
| | | | | | | | | | | | "unavailable")" This reverts commit c3f9d8e41bf2d23f676a10ec4579434a94b1fc39.
* | BF: Made notification work again (forgot to renamed "offline" to "unavailable")Emmanuel ROHEE2014-09-081-1/+1
|/
* dedup all eventsMatthew Hodgson2014-09-061-31/+42
|
* handle m.room.aliases for id<->alias mapping; remove local_storage map; stop ↵Matthew Hodgson2014-09-064-10/+85
| | | | local echo flickering by removing opacity transition for now; implement /join
* add todoMatthew Hodgson2014-09-061-0/+4
|
* Fix state unit testErik Johnston2014-09-061-0/+1
|
* Fix bug where we used an event_id as a pdu_idErik Johnston2014-09-061-3/+5
|
* Unit tests do not need captchas.Kegan Dougal2014-09-051-0/+1
|
* Added captcha support on both the HS and web client.Kegan Dougal2014-09-0513-21/+309
|\ | | | | | | Merge branch 'captcha' of github.com:matrix-org/synapse into develop
| * Added instructions for setting up captcha in an obviously named file.Kegan Dougal2014-09-053-11/+54
| |
| * Reload captchas when they fail. Cleanup on success.Kegan Dougal2014-09-052-2/+11
| |
| * 80 chars pleaseKegan Dougal2014-09-052-11/+23
| |
| * Add config opion for XFF headers when performing ReCaptcha auth.Kegan Dougal2014-09-053-2/+12
| |
| * Captchas now work on registration. Missing x-forwarded-for config arg ↵Kegan Dougal2014-09-054-7/+115
| | | | | | | | support. Missing reloading a new captcha on the web client / displaying a sensible error message.
| * Added a captcha config to the HS, to enable registration captcha checking ↵Kegan Dougal2014-09-055-3/+44
| | | | | | | | and for the recaptcha private key.
| * Added webclient config.js for storing recaptcha public key.Kegan Dougal2014-09-054-5/+31
| |
| * Modified matrixService.register to specify if captcha results should be sent ↵Kegan Dougal2014-09-052-6/+28
| | | | | | | | with the registration request. This is toggleable via useCaptcha in register-controller.
| * Added basic captcha, not hooked upKegan Dougal2014-09-053-3/+20
| |
* | Fix generation of event ids so that they are consistent between local and ↵Erik Johnston2014-09-061-1/+4
| | | | | | | | remote ids
* | When getting a state event also include the previous contentErik Johnston2014-09-065-13/+43
| |
* | Document new invite key added to createRoom apiErik Johnston2014-09-061-0/+10
| |
* | Add support for inviting people when you create a roomErik Johnston2014-09-061-0/+26
| |
* | Better call bar (visually: still lacks ring[back] tones).David Baker2014-09-067-18/+112
| |
* | Add m.roo.aliasesErik Johnston2014-09-051-0/+16
| |
* | Validate power levels event changes. Change error messages to be more ↵Erik Johnston2014-09-051-10/+37
| | | | | | | | helpful. Fix bug where we checked the wrong power levels
* | Generate m.room.aliases event when the HS creates a room aliasErik Johnston2014-09-0510-18/+94
|/
* Merge branch 'develop' of github.com:matrix-org/synapse into developErik Johnston2014-09-0516-246/+578
|\
| * BF: tab completion did not work with commands. $scope.input contained only ↵Emmanuel ROHEE2014-09-051-1/+10
| | | | | | | | | | | | the typed chars not the result of the completion. Needed to fire an event so that ng update the input model
| * BF: Update the members list on banned & kicked "events"Emmanuel ROHEE2014-09-051-4/+13
| |
| * autoscroll down(if the scroller was already at the bottom) when receiving ↵Emmanuel ROHEE2014-09-051-13/+18
| | | | | | | | member events
| * doc: kick can take a reason argEmmanuel ROHEE2014-09-051-1/+1
| |
| * Created kick & unban methods in matrixService. Made some factorisation.Emmanuel ROHEE2014-09-052-23/+24
| |
| * Added sanity checks in commandsEmmanuel ROHEE2014-09-051-34/+55
| |
| * BF: Make /unban work againEmmanuel ROHEE2014-09-052-2/+2
| |
| * Display ban & kick reasonEmmanuel ROHEE2014-09-052-1/+14
| |
| * Fixed empty display name (content.displayname in a room member can be null)Emmanuel ROHEE2014-09-051-1/+3
| |
| * Revert "Fixed empty display name (content.displayname in a room member can ↵Emmanuel ROHEE2014-09-051-6/+0
| | | | | | | | | | | | be null)" This reverts commit f286a4fcd46ff6c2c42a8732d004d8188aaa65f8.
| * Fixed empty display name (content.displayname in a room member can be null)Emmanuel ROHEE2014-09-051-0/+6
| |
| * Add demo/etc to .gitignoreMark Haines2014-09-051-0/+1
| |
| * BF: Fixed members list layout when the scrollbar appearsEmmanuel ROHEE2014-09-051-1/+3
| |
| * BF: Show "Bob invited you" in recents when Bob invites the userEmmanuel ROHEE2014-09-051-1/+5
| |
| * hide the forgot password link until it worksDavid Baker2014-09-051-2/+2
| |
| * Fixed duplicated messages sending in slow network condition.Emmanuel ROHEE2014-09-053-5/+55
| | | | | | | | | | | | | | Show the message sending flow state in the messages list: - While sending, the message appears semi transparent in the chat. - If successfully sent, it appears as before, ie normal - In case of failure, it appears in red with an Unsent text.
| * Cleaned all sending references as it not usedEmmanuel ROHEE2014-09-051-22/+4
| |
| * Do not systematically scroll to the bottom on new events in the roomEmmanuel ROHEE2014-09-051-2/+8
| |
| * merge spec changesMatthew Hodgson2014-09-041-13/+27
| |
| * switch IRC-style command parser to use regexps rather than split(" ") so ↵Matthew Hodgson2014-09-042-55/+96
| | | | | | | | | | | | | | | | that it doesn't choke on consecutive whitespaces yield better errors for invalid commands don't pass invalid commands through as messages support kick reasons
| * Add version 0 of the VoIP specification.David Baker2014-09-041-11/+97
| |
| * Merge branch 'master' into developMark Haines2014-09-040-0/+0
| |\
| | * BF: presence PUT requests stopped to work with old "state" param yesterday ↵Emmanuel ROHEE2014-09-041-1/+1
| | | | | | | | | | | | evening :( -https://github.com/matrix-org/synapse/commit/cda31fb7553ba3d880de09a464ae3b62ea6632fc?diff=unified
| | * Fixed registration flow when registering with matrixID & password and no emailEmmanuel ROHEE2014-09-041-1/+1
| | |
| | * Merge branch 'develop' of github.com:matrix-org/synapse v0.2.1aErik Johnston2014-09-042-16/+43
| | |\
| * | | BF: presence PUT requests stopped to work with old "state" param yesterday ↵Emmanuel ROHEE2014-09-041-1/+1
| | | | | | | | | | | | | | | | evening :( -https://github.com/matrix-org/synapse/commit/cda31fb7553ba3d880de09a464ae3b62ea6632fc?diff=unified
| * | | Fixed registration flow when registering with matrixID & password and no emailEmmanuel ROHEE2014-09-041-1/+1
| | | |
| * | | Added mUserDisplayName, a filter to resolve a user display name from a user_idEmmanuel ROHEE2014-09-042-9/+42
| | | |
| * | | Moved mRoomName filter into matrix-filter.js, a place for all generic ↵Emmanuel ROHEE2014-09-047-86/+106
| | | | | | | | | | | | | | | | filters using Matrix data.
| * | | Re-apply fixes to the link-email screen to make it work again (in a somewhat ↵David Baker2014-09-042-27/+54
| | | | | | | | | | | | | | | | temporary way until home servers sign associations). Unhide the linked emails box.
| * | | BF: Do not filter incoming member events. Before, only invitations to the ↵Emmanuel ROHEE2014-09-041-7/+2
| | | | | | | | | | | | | | | | current user were showned in the recents.
| * | | Report ban/unban messages to recents listsEmmanuel ROHEE2014-09-041-8/+19
| | |/ | |/|
* | | Empty string is not a valid JSON object, so don't return them in HTTP responses.Erik Johnston2014-09-053-7/+7
| | |
* | | AUth the contents of power level eventsErik Johnston2014-09-051-1/+72
| | |
* | | Change the default power levels to be 0, 50 and 100Erik Johnston2014-09-052-10/+10
|/ /
* | Merge branch 'master' of github.com:matrix-org/synapse into developErik Johnston2014-09-044-15/+16
|\| | | | | | | | | Conflicts: CHANGES.rst
| * make synctl default to homesever.logMatthew Hodgson2014-09-031-3/+3
| |
| * Merge branch 'release-v0.2.1' v0.2.1Erik Johnston2014-09-03189-1090/+4260
| |\
| | * Bump versions. Update change logs.Erik Johnston2014-09-033-2/+19
| | |
* | | big warningMatthew Hodgson2014-09-041-0/+17
| | |
* | | target live siteMatthew Hodgson2014-09-041-2/+2
| | |
* | | changelog for v0.2.1Matthew Hodgson2014-09-041-0/+16
| | |
* | | update README to know about synctlMatthew Hodgson2014-09-041-14/+24
| |/ |/|
* | Added a simple start/stop control scriptPaul "LeoNerd" Evans2014-09-031-0/+38
| |
* | Added a TODO note about YAML modeline for editorsPaul "LeoNerd" Evans2014-09-031-0/+3
| |
* | Error code must be an integerErik Johnston2014-09-031-1/+1
| |
* | Import SynapseErrorErik Johnston2014-09-031-0/+1
| |
* | Handle timeouts slightly nicer.Erik Johnston2014-09-031-1/+5
| |
* | Fix test to assert that we don't do authErik Johnston2014-09-031-1/+1
| |
* | Don't do auth for change_membership in federation handler, it doesn't work ↵Erik Johnston2014-09-031-2/+3
| | | | | | | | and federation doesn't do auth in general either. Add a hacky timeout when trying to join a remote room.
* | Hide email link UI from the settings because it doesn't work.David Baker2014-09-031-2/+2
| |
* | When creating a room and a user supplies a room_alias but no name, use the ↵Erik Johnston2014-09-031-0/+11
| | | | | | | | room_alias as the name.
* | Added more ng-if to make nice sentences like "Bob kicked Alice" or "Bob ↵Emmanuel ROHEE2014-09-031-4/+13
| | | | | | | | unbanned Alice"
* | better error msgsMatthew Hodgson2014-09-031-3/+3
| |
* | Ignore leave members in the list tooEmmanuel ROHEE2014-09-031-2/+2
| |
* | Fixed used of state_key instead of user_id in member events.Emmanuel ROHEE2014-09-031-4/+7
| | | | | | | | Needed to split into 2 conditional spans for grammar reason
* | Merge branch 'develop' of github.com:matrix-org/synapse into developDavid Baker2014-09-03168-789/+1898
|\ \ | | | | | | | | | | | | Conflicts: synapse/http/client.py
| * | Fix ban pathErik Johnston2014-09-031-1/+1
| | |
| * | Add support to _simple_insert() to do INSERT OR REPLACEPaul "LeoNerd" Evans2014-09-031-4/+6
| | |
| * | Added federation protocol urls section from other docs.Kegan Dougal2014-09-031-0/+73
| | |
| * | Fix a few cases where we used user_id instead of state_keyErik Johnston2014-09-032-6/+6
| | |
| * | Marked docs/client-server/specification.rst as old.Kegan Dougal2014-09-031-0/+14
| | |
| * | More explanation of federation keys.Kegan Dougal2014-09-031-8/+124
| | |
| * | Normalise users power levels so that the user with the higher power level ↵Emmanuel ROHEE2014-09-032-1/+24
| | | | | | | | | | | | will have a bar covering 100% of the width of his avatar
| * | Added more terms.Kegan Dougal2014-09-031-4/+68
| | |
| * | Implement a kick apiErik Johnston2014-09-031-2/+5
| | |
| * | Unindent list in specification to remove blockquoteMark Haines2014-09-031-32/+36
| | |
| * | Default PID file should be 'homeserver.pid' to match the other ↵Paul "LeoNerd" Evans2014-09-031-1/+1
| | | | | | | | | | | | 'homeserver.*' naming convention
| * | Use /rooms/$room_id/state/m.room.member/$user_id to change the membership of ↵Emmanuel ROHEE2014-09-032-3/+15
| | | | | | | | | | | | another user
| * | fix the copyright holder from matrix.org to OpenMarket Ltd, as matrix.org ↵Matthew Hodgson2014-09-03152-153/+155
| | | | | | | | | | | | hasn't been incorporated in time for launch.
| * | Fix formating for threat modelMark Haines2014-09-031-6/+6
| | |
| * | Move securitY threat model docs into specificationMark Haines2014-09-032-141/+124
| | |
| * | Limit the size of uploadsMark Haines2014-09-033-1/+55
| | |
| * | Bubble up SynapseErrors so expected failures aren't masked.Kegan Dougal2014-09-031-0/+2
| | |
| * | Add exception handling to directory servlet, so we don't 500. Mark directory ↵Kegan Dougal2014-09-032-2/+18
| | | | | | | | | | | | API as volatile in the api docs.
| * | Fix up directory server to not require uploading room hosts. Update the room ↵Erik Johnston2014-09-033-2/+16
| | | | | | | | | | | | hosts table with the current room hosts (if we have them) on GET.
| * | List commands and their usage in the settings pageEmmanuel ROHEE2014-09-031-0/+15
| | |
| * | Added /kick $user_idEmmanuel ROHEE2014-09-031-4/+14
| | |
| * | Handle new state events which don't have a common ancestorErik Johnston2014-09-031-0/+12
| | |
| * | Snapshot prev_state for generic eventsErik Johnston2014-09-031-1/+6
| | |
| * | Kill the statePaul "LeoNerd" Evans2014-09-035-94/+60
| | | | | | | | | | | | ... key from all the Presence messages
| * | Bugfix for back-pagination of presencePaul "LeoNerd" Evans2014-09-031-0/+2
| | |
| * | Added /unban $user_idEmmanuel ROHEE2014-09-031-0/+10
| | |
| * | Add support for room namesErik Johnston2014-09-032-2/+20
| | |
| * | Make retrying requests on DNS failures configurable, and turn off retrying ↵Kegan Dougal2014-09-033-8/+29
| | | | | | | | | | | | only in directory.get_association
| * | Send unrecognized commands as text message (as before)Emmanuel ROHEE2014-09-031-1/+2
| | |
| * | Do not define power level limits in setUserPowerLevel. Update the function ↵Emmanuel ROHEE2014-09-032-35/+3
| | | | | | | | | | | | to be used as a resetUserPowerLevel
| * | Added /deop $user_idEmmanuel ROHEE2014-09-032-3/+36
| | |
| * | Store SQL DDL deltas as well; attempt to upgrade the database on startup if ↵Paul "LeoNerd" Evans2014-09-034-22/+183
| | | | | | | | | | | | it's too old
| * | BF: Do not be polluted by ops events that come when paginating backEmmanuel ROHEE2014-09-031-2/+5
| | |
| * | hs: Updated synapse.http.client to handle DNSLookupErrors and bail immediately.Kegan Dougal2014-09-031-1/+6
| | |
| * | Implement presence state visibilty limiting when polling eventsource for streamPaul "LeoNerd" Evans2014-09-033-15/+147
| | |
| * | Don't eat federation transmit errors during unit tests; fix remote presence ↵Paul "LeoNerd" Evans2014-09-032-1/+16
| | | | | | | | | | | | EDU-sending test because of this
| * | Make sure to print exceptions properly from notifier failuresPaul "LeoNerd" Evans2014-09-031-1/+6
| | |
| * | apidocs: Added m.room.nameKegan Dougal2014-09-031-0/+62
| | |
| * | apidocs: Tweak join response format. Explicitly state empty JSON objects ↵Kegan Dougal2014-09-031-5/+35
| | | | | | | | | | | | where they are required by the spec. Mark unimplemented room GET APIs clearly.
| * | Added /op $user_id $powerLevelEmmanuel ROHEE2014-09-033-7/+59
| | |
| * | Updated feedback api docs and fixed feedback content template bugKegan Dougal2014-09-032-2/+11
| | |
| * | apidocs: mtime_age > last_active_ago. Presence REST: Sanity check values in ↵Kegan Dougal2014-09-032-2/+10
| | | | | | | | | | | | invite/drop arrays.
| * | Merge branch 'develop' of github.com:matrix-org/synapse into developErik Johnston2014-09-0310-177/+247
| |\ \ | | | | | | | | | | | | | | | | | | | | Conflicts: synapse/http/server.py synapse/http/content_repository.py
| | * | Edited /presence REST servlet to raise SynapseErrors to return a standard ↵Kegan Dougal2014-09-031-7/+12
| | | | | | | | | | | | | | | | error response, rather than a string.
| | * | Update API docs to use 'presence' key not 'state'. Fixed error messages when ↵Kegan Dougal2014-09-032-2/+2
| | | | | | | | | | | | | | | | setting presence.
| | * | Fixed /presence APIs to urldecode user IDs.Kegan Dougal2014-09-031-1/+5
| | | |
| | * | Fixed GET /events/$id to be not broken.Kegan Dougal2014-09-031-1/+3
| | | |
| | * | move contentrepo class to it's own fileMark Haines2014-09-033-163/+194
| | | |
| | * | URL decode user IDs for /profile REST path segments.Kegan Dougal2014-09-031-0/+6
| | | |
| | * | Make API docs not lie on registration/login.Kegan Dougal2014-09-032-2/+24
| | | |
| * | | Add option to change content repo locationErik Johnston2014-09-033-4/+20
| |/ /
| * | Update port numbers.Kegan Dougal2014-09-037-7/+7
| | |
| * | Better indicate in the page feedback section that a user can't join a room ↵Emmanuel ROHEE2014-09-031-1/+2
| | | | | | | | | | | | (because he has been banned for ex). May be worth to be put in the middle of screen
| * | Fill out power level bits in the specErik Johnston2014-09-031-42/+63
| | |
| * | Rename the 'do_users_share_a_room' to something slightly less verb-soundingPaul "LeoNerd" Evans2014-09-034-6/+6
| | |
| * | Allow optional non-suppression of exceptions through the DistributorPaul "LeoNerd" Evans2014-09-032-7/+34
| | |
| * | Neater is_presence_visible() codePaul "LeoNerd" Evans2014-09-031-9/+8
| | |
| * | Do not show banned people in member list. Format ban events strings in room ↵Emmanuel ROHEE2014-09-033-4/+10
| | | | | | | | | | | | and recent flows
| * | Prefix API links with /docs/api/client-server so they should link through ↵Kegan Dougal2014-09-031-15/+15
| | | | | | | | | | | | correctly on matrix.org
| * | cmdclient: Fixed /join to work with the updated c-s API.Kegan Dougal2014-09-031-1/+1
| | |
| * | Added /ban commandEmmanuel ROHEE2014-09-032-1/+29
| | |
| * | Made IRC style command easier to handle specifically for possible argumentsEmmanuel ROHEE2014-09-031-10/+22
| | |
| * | cmdclient: Now works correctly with user localpart login. Default to 8008 ↵Kegan Dougal2014-09-031-3/+7
| | | | | | | | | | | | not 8080.
* | | Make registering and logging in with a threepid work in the webclient.David Baker2014-09-035-27/+113
| | |
* | | Add support for registering with a threepid to the HS (get credentials from ↵David Baker2014-09-033-9/+100
|/ / | | | | | | the client and check them against an ID server).
* | Merge branch 'master' into developErik Johnston2014-09-037-6/+69
|\|
| * Add database upgrade script v0.2.0Erik Johnston2014-09-021-0/+10
| |
| * Un block quote listErik Johnston2014-09-021-3/+3
| |
| * Try and remove annoying italics in github rst viewerErik Johnston2014-09-021-1/+2
| |
| * Remove an annoying 'the'Erik Johnston2014-09-021-1/+1
| |
| * Don't so heavily suggest you need to edit the default config. List the ↵Erik Johnston2014-09-021-3/+7
| | | | | | | | changed parameters.
| * Fix spellingErik Johnston2014-09-021-1/+1
| |
| * Hide the email textbox during registeration has it has not been wired up yet.Erik Johnston2014-09-021-2/+2
| |
| * Bump version and changelogErik Johnston2014-09-024-2/+50
| |
| * Update default endpoint port to match the default ports in the configErik Johnston2014-09-021-2/+2
| |
* | Add ban support: /rooms/$roomid/ban with { user_id : foo }Kegan Dougal2014-09-031-2/+2
| |
* | Add copyright notices and fix pyflakes errorsMark Haines2014-09-037-7/+59
| |
* | Set status message for ratelimit error responsesMark Haines2014-09-033-6/+12
| |
* | Merge branch 'ratelimiting' into developMark Haines2014-09-0314-10/+244
|\ \
| * | Fix tests to support ratelimitingMark Haines2014-09-033-2/+64
| | |
| * | Raise LimitExceedError when the ratelimiting is throttling requestsMark Haines2014-09-032-11/+29
| | |