summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* 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
| | |
| * | rate limiting for message sendingMark Haines2014-09-024-4/+7
| | |
| * | Add ratelimiting configMark Haines2014-09-021-0/+21
| | |
| * | Add ratelimiting function to basehandlerMark Haines2014-09-025-1/+27
| | |
| * | Test ratelimiterMark Haines2014-09-023-19/+87
| | |
| * | Ratelimiter objectMark Haines2014-09-021-0/+36
| | |
* | | howto: Link jsfiddles correctly. Hide ugly TODOs.Kegan Dougal2014-09-031-10/+22
| | |
* | | doc generatorMatthew Hodgson2014-09-033-0/+792
| | |
* | | fix rstMatthew Hodgson2014-09-031-16/+26
| | |
* | | don't echo password to stdout...Matthew Hodgson2014-09-031-1/+1
| | |
* | | more critiqueMatthew Hodgson2014-09-021-1/+2
| | |
* | | Edited room creation section to mention all the events created when the room is.Kegan Dougal2014-09-021-1/+16
| | |
* | | Added Qs which should be answered in the marked TODOsKegan Dougal2014-09-021-7/+7
| | |
* | | only need one voip section :)Matthew Hodgson2014-09-021-5/+0
| | |
* | | general documentation review and editingMatthew Hodgson2014-09-022-52/+156
| | |
* | | fix quickstart slightlyMatthew Hodgson2014-09-021-6/+6
| | |
* | | Added the new power level related events which were recently introduced.Kegan Dougal2014-09-021-0/+60
| | |
* | | Added more room alias bullet points.Kegan Dougal2014-09-021-2/+4
| | |
* | | Finished up Identity section in the architecture section.Kegan Dougal2014-09-021-7/+20
| | |
* | | Minor formatting tweaks.Kegan Dougal2014-09-021-4/+4
| | |
* | | Added section on rate limiting.Kegan Dougal2014-09-021-3/+15
| | |
* | | ALL THE LINKS! Most APIs now link to relative paths off the doc, outlined at ↵Kegan Dougal2014-09-021-18/+52
| | | | | | | | | | | | the bottom of the .rst.
* | | roomName directive: Take into account invited users.Emmanuel ROHEE2014-09-021-1/+38
| | | | | | | | | | | | Use the last user display name
* | | More formatting, more TODOs. Settled on a way of linking to external API ↵Kegan Dougal2014-09-021-31/+53
| | | | | | | | | | | | docs; started converting references to relative links.
* | | spec: Added internal links to different sections. Added NOTE and WARNING ↵Kegan Dougal2014-09-021-64/+123
| | | | | | | | | | | | admonitions and hide away loooong TODO lists behind comments. Smaller ones remain.
* | | make power level more visibleMatthew Hodgson2014-09-021-3/+3
| | |
* | | Attempt to make avatar change clearerEmmanuel ROHEE2014-09-022-4/+15
| | |
* | | BF: Reset base timer time ($scope.now) everytime last_active_ago is touchedEmmanuel ROHEE2014-09-021-7/+6
| | |
* | | Updated howto.rst to use the new APIs. Updated JSFiddles to use 8008. Linked ↵Kegan Dougal2014-09-0211-138/+465
| |/ |/| | | | | new fiddles with howto.rst. Added more explanations.
* | Merge branch 'master' of github.com:matrix-org/synapse into release-v0.2.0Erik Johnston2014-09-024-4/+56
|\ \ | | | | | | | | | | | | | | | | | | Conflicts: synapse/notifier.py webclient/room/room-controller.js webclient/room/room.html
| * | v0.1.2 v0.1.2David Baker2014-08-293-2/+8
| | |
| * | Give basic feedback on the state of VoIP calls in the UI (manually adding to ↵David Baker2014-08-293-3/+6
| | | | | | | | | | | | master having added to develop)
| * | Version bump for bug fix. v0.1.1Erik Johnston2014-08-293-2/+9
| | |
| * | Merge branch 'hotfixes-v0.1.0' of github.com:matrix-org/synapseErik Johnston2014-08-291-2/+19
| |\ \
| | * | When notifying listeners, don't do so in a serial fashionErik Johnston2014-08-291-2/+19
| |/ /
| * | Bump version and change log v0.1.0Erik Johnston2014-08-293-2/+24
| | |
* | | BF: Prevent controllers from being instantiated twice.Emmanuel ROHEE2014-09-021-14/+7
| | | | | | | | | | | | AngularJS will instantiate it when discovering ng-controller in their respective html files
* | | Handle "m.room.create" in order to inform controllers about new roomsEmmanuel ROHEE2014-09-023-5/+29
| | |
* | | Order matters when adding REST servletsPaul "LeoNerd" Evans2014-09-021-21/+21
| | |
* | | Fix bug where we didn't correctly store the ops power levels event.Erik Johnston2014-09-023-1/+9
| | |
* | | Whoops: Put /events parameters object in the right part of the api tree.Kegan Dougal2014-09-021-17/+18
| | |
* | | Updated API docs with new keys on /createRoom and new API /rooms/$roomid/banKegan Dougal2014-09-021-0/+54
| | |
* | | Add rest endpoint for the whole user profileDavid Baker2014-09-021-0/+21
| | |
* | | More ban spec. Added 'name' and 'topic' keys to /createRoom.Kegan Dougal2014-09-021-13/+33
| | |
* | | Safer handling of incoming presence EDUs that may or maynot contain ↵Paul "LeoNerd" Evans2014-09-021-3/+13
| | | | | | | | | | | | 'presence' or 'state'
* | | 'continue' to go to the next item in a for loop, not 'break'Paul "LeoNerd" Evans2014-09-021-1/+1
| | |
* | | By default, only room ops can change the name and topic.Erik Johnston2014-09-021-0/+2
| |/ |/|
* | Remove option for disabling webclient because it was confusingMark Haines2014-09-021-4/+1
| |
* | Fix room permissions testErik Johnston2014-09-021-0/+3
| |
* | Implement auth for kicking.Erik Johnston2014-09-021-3/+10
| |
* | Add message to assertionErik Johnston2014-09-021-1/+1
| |
* | Default HTTP and HTTPS ports to 8008 and 8448Erik Johnston2014-09-021-2/+4
| |
* | Make the demo listen on both HTTP and HTTPS portsErik Johnston2014-09-021-3/+5
| |
* | os.makedirs is almost but not entirely unlike mkdir -pMark Haines2014-09-021-1/+2
| |
* | Fix typo when reading TLS configMark Haines2014-09-021-1/+1
| |
* | Represent user power level in a room by a red bar at the bottom of his ↵Emmanuel ROHEE2014-09-025-0/+60
| | | | | | | | avatar image. The width of this bar depends on the power level.
* | Ensure that event source unit tests could cope with ↵Paul "LeoNerd" Evans2014-09-021-14/+20
| | | | | | | | get_new_events_for_user() returning a Deferred
* | Make the config directory if the directory doesn't exisit when generating configMark Haines2014-09-021-0/+1
| |
* | More helpful error messages for missing configMark Haines2014-09-023-6/+29
| |
* | Yet more bullet points on various sections.Kegan Dougal2014-09-021-11/+45
| |
* | BF: Armed updateMemberListPresenceAge only onceEmmanuel ROHEE2014-09-021-1/+3
| |
* | Make the intro bit a separate section rather than have a 'quick start' ↵David Baker2014-09-021-2/+5
| | | | | | | | section that only tells you how to get started half way through.
* | Add support for setting room name and topic when creating roomsErik Johnston2014-09-021-4/+29
| |
* | Added section on banning users, currently in flux as the API changes / is ↵Kegan Dougal2014-09-021-0/+26
| | | | | | | | implemented.
* | Merge remote-tracking branch 'origin/develop' into developEmmanuel ROHEE2014-09-021-4/+12
|\ \
| * | Expanded on bullet points in several sections.Kegan Dougal2014-09-021-4/+12
| | |
* | | Merge branch 'withoutYAML' into developEmmanuel ROHEE2014-09-021-2/+6
|\ \ \ | |/ / |/| |
| * | BF: Take into account MEMBER_EVENT and PRESENCE_EVENT events only after the ↵Emmanuel ROHEE2014-09-021-2/+6
| | | | | | | | | | | | initialSync is done
* | | given everything's apparently gone https:// by default for c-s, change this ↵Matthew Hodgson2014-09-011-1/+5
| | | | | | | | | | | | hardcoding...
* | | Add unsecure listener port to homeserverMark Haines2014-09-012-8/+17
| | |
* | | enable ECDHE ciphersMark Haines2014-09-011-0/+6
| | |
* | | Reënable presence visibility permission checking now it's not used on ↵Paul "LeoNerd" Evans2014-09-012-6/+0
| | | | | | | | | | | | redundant code paths
* | | No need to test is_presence_visible in _start_polling_local because we know ↵Paul "LeoNerd" Evans2014-09-011-4/+0
| | | | | | | | | | | | it will be by when it's called
* | | specify metavars in argparseMatthew Hodgson2014-09-011-2/+3
| | |
* | | add pyyaml dependency for config filesMark Haines2014-09-011-0/+1
| | |
* | | Use yaml for config fileMark Haines2014-09-011-11/+6
| | |
* | | Don't set a 'default' key in the creation eventErik Johnston2014-09-011-1/+0
| | |
* | | Use pregenerated DH params when generating configMark Haines2014-09-011-7/+29
| | |
* | | That was a breaking db change. You need to recreate the databases. (In ↵Erik Johnston2014-09-011-1/+1
| | | | | | | | | | | | reality, it's enough to just run the im.sql through your db and change the schema version)
* | | Merge branch 'room_config' into developErik Johnston2014-09-0112-48/+579
|\ \ \
| * | | Don't put required power levels on permission state eventsErik Johnston2014-09-011-2/+4
| | | |
| * | | Merge branch 'develop' of github.com:matrix-org/synapse into room_configErik Johnston2014-09-0117-248/+655
| |\ \ \
| * | | | Fix the tests to include new db callsErik Johnston2014-09-012-6/+20
| | | | |
| * | | | Add all the necessary checks to make banning work.Erik Johnston2014-09-016-6/+54
| | | | |
| * | | | Merge branch 'develop' of github.com:matrix-org/synapse into room_configErik Johnston2014-09-0143-252/+11416
| |\ \ \ \ | | | |/ / | | |/| |
| * | | | Add beginnings of ban support.Erik Johnston2014-09-018-29/+122
| | | | |
| * | | | Implement power level lists, default power levels and ↵Erik Johnston2014-09-017-48/+218
| | | | | | | | | | | | | | | | | | | | send_evnet_level/add_state_level events.
| * | | | Merge branch 'develop' of github.com:matrix-org/synapse into room_configErik Johnston2014-09-0162-897/+1411
| |\ \ \ \
| * | | | | Start adding storage for new events.Erik Johnston2014-08-293-0/+121
| | | | | |
| * | | | | Merge branch 'develop' of github.com:matrix-org/synapse into room_configErik Johnston2014-08-2933-351/+1976
| |\ \ \ \ \
| * | | | | | Create the correct events with the right configuration when creating a new room.Erik Johnston2014-08-285-21/+104
| | | | | | |
* | | | | | | Update readme with instructions on how to generate configs for homeserversMark Haines2014-09-011-2/+12
| |_|_|_|/ / |/| | | | |
* | | | | | Merge branch 'server2server_tls' into developMark Haines2014-09-0117-248/+655
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | |
| * | | | | Fix SSL for federation http clientMark Haines2014-09-012-2/+2
| | | | | |
| * | | | | Merge remote-tracking branch 'origin/develop' into server2server_tlsMark Haines2014-09-0110-100/+260
| |\ \ \ \ \ | |/ / / / / |/| | | | |
* | | | | | Follow API renaming. state -> presence. mtime_ago -> last_active_agoEmmanuel ROHEE2014-09-013-16/+15
| | | | | |
* | | | | | Small formatting errorsKegan Dougal2014-09-011-2/+2
| | | | | |
* | | | | | fix lying docsDavid Baker2014-09-011-14/+3
| | | | | |
* | | | | | Added roomName, a directive to compute a room name based on its alias (not ↵Emmanuel ROHEE2014-09-014-5/+45
| | | | | | | | | | | | | | | | | | | | | | | | aliases for now) and its users displaynames or ids
* | | | | | Little bit more on syncing APIs, need to know more about responses before ↵Kegan Dougal2014-09-011-8/+42
| | | | | | | | | | | | | | | | | | | | | | | | more work can be done on it.
* | | | | | Oops, show the voice call button once a call has endedDavid Baker2014-09-011-1/+1
| | | | | |
* | | | | | Added docs on presence 'last_active' fieldPaul "LeoNerd" Evans2014-09-011-0/+8
| | | | | |
* | | | | | Fairly simple move of the call status widget to the header bar (and ↵David Baker2014-09-015-40/+44
| | | | | | | | | | | | | | | | | | | | | | | | therefore into the index page rather than the rooms page).
* | | | | | Flesh out Room Events.Kegan Dougal2014-09-011-17/+99
| | | | | |
* | | | | | BF: Check config exists (=defined in the localstorage) before using itEmmanuel ROHEE2014-09-011-2/+6
| | | | | |
| * | | | | Enable SSL for s2s http clientMark Haines2014-09-012-3/+7
| | | | | |
| * | | | | Add server TLS context factoryMark Haines2014-09-011-0/+23
| | | | | |
| * | | | | Merge branch 'develop' into server2server_tlsMark Haines2014-09-018-25/+126
| |\ \ \ \ \ | |/ / / / / |/| | | | |
* | | | | | missing semicolonDavid Baker2014-09-011-1/+1
| | | | | |
* | | | | | Bump a user's presence last_active time every time they send a message to a roomPaul "LeoNerd" Evans2014-09-012-0/+10
| | | | | |
* | | | | | Have MemoryDataStore's get_rooms_for_user_where_membership_is() return room ↵Paul "LeoNerd" Evans2014-09-011-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | membership event objects, as per interface contract
* | | | | | Perform room unit tests with 'local' users actually in the right domain ;)Paul "LeoNerd" Evans2014-09-012-6/+10
| | | | | |
* | | | | | Specced out state/non-state events. Start working on the myriad of syncing APIs.Kegan Dougal2014-09-011-15/+94
| | | | | |
* | | | | | Handle call events in the recents view as well to get consistency with what ↵David Baker2014-09-011-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | it displays when refreshed.
* | | | | | Just show 'Call' for call events. Don't just splat out the content of the ↵David Baker2014-09-011-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | event for other events: it's rarely going to be sesnible.
| * | | | | Listen using SSLMark Haines2014-09-012-2/+8
| | | | | |
| * | | | | Merge branch 'develop' into server2server_tlsMark Haines2014-09-0134-142/+11045
| |\ \ \ \ \ | |/ / / / / |/| | | | |
* | | | | | Rename API-visible 'mtime' presence field to 'last_active'; slightly ↵Paul "LeoNerd" Evans2014-09-014-41/+82
| | | | | | | | | | | | | | | | | | | | | | | | different semantics
* | | | | | Fixed presence change that occurs -Xs agoEmmanuel ROHEE2014-09-011-0/+5
| | | | | |
* | | | | | Fixed presence state update. Specifically, the current user was sometimes ↵Emmanuel ROHEE2014-09-011-5/+23
| | | | | | | | | | | | | | | | | | | | | | | | indicated as offline
* | | | | | Rename 'state' presence key to the much more obvious 'presence'; maintain a ↵Paul "LeoNerd" Evans2014-09-017-78/+147
| | | | | | | | | | | | | | | | | | | | | | | | legacy 'state' copy for now
* | | | | | Fleshed out joining/leaving rooms. Added M_LIMIT_EXCEEDED standard error ↵Kegan Dougal2014-09-011-12/+64
| | | | | | | | | | | | | | | | | | | | | | | | code for rate limited requests.
* | | | | | Don't show the hang up button once tha call has endedDavid Baker2014-09-011-1/+1
| | | | | |
* | | | | | Added /web folder which contains html/css (based off the default swagger-ui) ↵Kegan Dougal2014-09-0117-0/+10718
| | | | | | | | | | | | | | | | | | | | | | | | for viewing the c-s json api.
* | | | | | Renamed json files because: paths.Kegan Dougal2014-09-018-7/+7
| |_|_|/ / |/| | | |
| * | | | Fix homeserver config parsingMark Haines2014-09-019-36/+66
| | | | |
| * | | | Merge branch 'develop' into server2server_tlsMark Haines2014-09-0160-747/+1291
| |\ \ \ \ | |/ / / / |/| | | |
* | | | | add another public wishlist itemMatthew Hodgson2014-09-011-0/+1
| | | | |
* | | | | make the little logos clickable for ErikMatthew Hodgson2014-09-016-7/+7
| | | | |
* | | | | Start digging into invite/join/leave sections.Kegan Dougal2014-09-011-10/+51
| | | | |
* | | | | BF: Pass desired_user_id to register API. And update the app header to avoid ↵Emmanuel ROHEE2014-09-012-2/+10
| | | | | | | | | | | | | | | | | | | | to display the previous matrix id
* | | | | licenses, please...Matthew Hodgson2014-09-012-2/+32
| | | | |
* | | | | fix footer on non-room pagesMatthew Hodgson2014-09-011-1/+0
| | | | |
* | | | | don't make HS ports explicit if it's the default for the protocolMatthew Hodgson2014-08-312-2/+8
| | | | |
* | | | | missed a s#/matrix#/_matrix/gMatthew Hodgson2014-08-311-1/+1
| | | | |
* | | | | change the world: make the default matrix API URL prefix /_matrix rather ↵Matthew Hodgson2014-08-3127-93/+93
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | than /matrix to make it easier for existing websites to mount a HS in their namespace without collisions. perl -pi -e 's#/matrix#/_matrix#g' ./cmdclient/console.py ./docs/client-server/howto.rst ./docs/client-server/specification.rst ./docs/client-server/swagger_matrix/directory ./docs/client-server/swagger_matrix/events ./docs/client-server/swagger_matrix/login ./docs/client-server/swagger_matrix/presence ./docs/client-server/swagger_matrix/profile ./docs/client-server/swagger_matrix/registration ./docs/client-server/swagger_matrix/rooms ./docs/server-server/specification.rst ./graph/graph.py ./jsfiddles/create_room_send_msg/demo.js ./jsfiddles/event_stream/demo.js ./jsfiddles/example_app/demo.js ./jsfiddles/register_login/demo.js ./jsfiddles/room_memberships/demo.js ./synapse/api/urls.py ./tests/federation/test_federation.py ./tests/handlers/test_presence.py ./tests/handlers/test_typing.py ./tests/rest/test_events.py ./tests/rest/test_presence.py ./tests/rest/test_profile.py ./tests/rest/test_rooms.py ./webclient/components/fileUpload/file-upload-service.js ./webclient/components/matrix/matrix-service.js
* | | | | make lightbox a bit less uglyMatthew Hodgson2014-08-311-2/+6
| | | | |
* | | | | only show presence timings if we know themMatthew Hodgson2014-08-311-1/+1
| | | | |
* | | | | nasty big monolithic commit of a whole bunch of UI/UX improvements:Matthew Hodgson2014-08-3115-310/+356
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - add a simple CSS template across the app for navigation & cosmetics - split login into login & register, and totally reskin it - restructure room CSS to play nicely with it - implement basis 1:1 chat from user pages - disable autofocus on iOS to improve UX
* | | | | factor out mobile css into its own fileMatthew Hodgson2014-08-311-0/+92
| | | | |
* | | | | factor out the signup process into its own controllerMatthew Hodgson2014-08-312-0/+127
| | | | |
* | | | | moar logos!Matthew Hodgson2014-08-312-0/+0
| | | | |
* | | | | switch default profile image to one of our own devising (dating back to ↵Matthew Hodgson2014-08-312-0/+0
| | | | | | | | | | | | | | | | | | | | communicator(!))
* | | | | add a basic wishlistMatthew Hodgson2014-08-311-0/+6
| | | | |
* | | | | tweaks to settings pageMatthew Hodgson2014-08-302-28/+16
| | | | |
* | | | | actually add a 'home' buttonMatthew Hodgson2014-08-301-0/+1
| | | | |
* | | | | shrink text bubble font a bit; make image thumbnails always fit in their bubblesMatthew Hodgson2014-08-301-1/+6
| | | | |
* | | | | Bugfixes on presence pushes on user joining:Paul "LeoNerd" Evans2014-08-292-66/+79
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * No need to inform clients of status of remote users; as that will arrive in due course anyway. We don't -have- the state currently, so we'd only send an unknown message * Remember to bump the presence serial for the event source, so the notifiers will wake up and report it
* | | | | Renamed get_current_token_part to get_current_keyPaul "LeoNerd" Evans2014-08-294-10/+10
| | | | |
* | | | | Have EventSource's get_new_events_for_user() API work only on keys within ↵Paul "LeoNerd" Evans2014-08-295-30/+33
| | | | | | | | | | | | | | | | | | | | that source, not overall eventstream tokens
* | | | | Bugfix for rest presence test - datastore needs to implement profile methodsPaul "LeoNerd" Evans2014-08-291-0/+10
| | | | |
* | | | | TypingNotificationEventSource has to return proper tokens, not int 0Paul "LeoNerd" Evans2014-08-291-2/+2
| | | | |
* | | | | Rename 'events_key' to 'room_key' so it matches the name of the event sourcePaul "LeoNerd" Evans2014-08-294-10/+10
| | | | |
* | | | | Give basic feedback on the state of VoIP calls in the UI.David Baker2014-08-293-3/+6
| | | | |
* | | | | todoMatthew Hodgson2014-08-291-1/+1
| | | | |
* | | | | fix mobile skin by hiding recents LHS in /roomsMatthew Hodgson2014-08-291-0/+2
| | | | |
* | | | | Added case-sensitivity notes on IDs, added TODO on UTF-8.Kegan Dougal2014-08-291-7/+15
| | | | |
* | | | | Define a new event stream data source for typing notifications (currently null)Paul "LeoNerd" Evans2014-08-294-11/+33
| | | | |
* | | | | Avoid hardcoding names of individual stream token keys in its own ↵Paul "LeoNerd" Evans2014-08-291-9/+3
| | | | | | | | | | | | | | | | | | | | implementation; this at least reduces the number of places in source code the individual parts are stored
* | | | | oops. Should not have c+p all linesEmmanuel ROHEE2014-08-291-2/+0
| | | | |
* | | | | Implemented /nickEmmanuel ROHEE2014-08-291-0/+4
| | | | |