| Commit message (Expand) | Author | Age | Files | Lines |
* | Make captcha work again with the new registration logic. | Kegan Dougal | 2014-09-15 | 1 | -0/+1 |
* | Split out password/captcha/email logic. | Kegan Dougal | 2014-09-15 | 2 | -140/+217 |
* | Added LoginType constants. Created general structure for processing registrat... | Kegan Dougal | 2014-09-15 | 2 | -20/+84 |
* | Bump version and change log | Erik Johnston | 2014-09-12 | 1 | -1/+1 |
* | Fix bug where we relied on the current_state_events being updated when we are... | Erik Johnston | 2014-09-12 | 1 | -2/+2 |
* | Fix bug where we no longer stored user_id on Pdus | Erik Johnston | 2014-09-12 | 1 | -1/+7 |
* | Make the state resolution use actual power levels rather than taking them fro... | Erik Johnston | 2014-09-12 | 4 | -82/+54 |
* | Fix bug where we incorrectly removed a remote host from the list of hosts in ... | Erik Johnston | 2014-09-12 | 1 | -12/+45 |
* | Fix bug where we didn't return a tuple when expected. | Erik Johnston | 2014-09-12 | 1 | -1/+1 |
* | Fix bug where we used an unbound local variable if we ended up rolling back t... | Erik Johnston | 2014-09-09 | 1 | -4/+1 |
* | Apparently we can't do txn.rollback(), so raise and catch an exception instead. | Erik Johnston | 2014-09-08 | 1 | -11/+19 |
* | Added num_joined_users key to /publicRooms for each room. Show this informati... | Kegan Dougal | 2014-09-08 | 1 | -0/+6 |
* | Handle the case where we don't have a common ancestor | Erik Johnston | 2014-09-08 | 1 | -9/+18 |
* | Fix bug in state handling where we incorrectly identified a missing pdu. Upda... | Erik Johnston | 2014-09-08 | 2 | -52/+49 |
* | Rollback if we try and insert duplicate events | Erik Johnston | 2014-09-08 | 1 | -0/+1 |
* | Fix race in presence handler where we evicted things from cache while handlin... | Erik Johnston | 2014-09-08 | 1 | -2/+3 |
* | Bump version and changelog | Erik Johnston | 2014-09-08 | 1 | -1/+1 |
* | Fix bug where we used an event_id as a pdu_id | Erik Johnston | 2014-09-06 | 1 | -3/+5 |
* | Added captcha support on both the HS and web client. | Kegan Dougal | 2014-09-05 | 6 | -10/+182 |
|\ |
|
| * | Reload captchas when they fail. Cleanup on success. | Kegan Dougal | 2014-09-05 | 1 | -2/+2 |
| * | 80 chars please | Kegan Dougal | 2014-09-05 | 2 | -11/+23 |
| * | Add config opion for XFF headers when performing ReCaptcha auth. | Kegan Dougal | 2014-09-05 | 3 | -2/+12 |
| * | Captchas now work on registration. Missing x-forwarded-for config arg support... | Kegan Dougal | 2014-09-05 | 4 | -7/+115 |
| * | Added a captcha config to the HS, to enable registration captcha checking and... | Kegan Dougal | 2014-09-05 | 4 | -2/+44 |
* | | Fix generation of event ids so that they are consistent between local and rem... | Erik Johnston | 2014-09-06 | 1 | -1/+4 |
* | | When getting a state event also include the previous content | Erik Johnston | 2014-09-06 | 5 | -13/+43 |
* | | Add support for inviting people when you create a room | Erik Johnston | 2014-09-06 | 1 | -0/+26 |
* | | Validate power levels event changes. Change error messages to be more helpful... | Erik Johnston | 2014-09-05 | 1 | -10/+37 |
* | | Generate m.room.aliases event when the HS creates a room alias | Erik Johnston | 2014-09-05 | 10 | -18/+94 |
|/ |
|
* | Empty string is not a valid JSON object, so don't return them in HTTP responses. | Erik Johnston | 2014-09-05 | 3 | -7/+7 |
* | AUth the contents of power level events | Erik Johnston | 2014-09-05 | 1 | -1/+72 |
* | Change the default power levels to be 0, 50 and 100 | Erik Johnston | 2014-09-05 | 2 | -10/+10 |
* | Bump versions. Update change logs. | Erik Johnston | 2014-09-03 | 1 | -1/+1 |
* | Added a TODO note about YAML modeline for editors | Paul "LeoNerd" Evans | 2014-09-03 | 1 | -0/+3 |
* | Error code must be an integer | Erik Johnston | 2014-09-03 | 1 | -1/+1 |
* | Import SynapseError | Erik Johnston | 2014-09-03 | 1 | -0/+1 |
* | Handle timeouts slightly nicer. | Erik Johnston | 2014-09-03 | 1 | -1/+5 |
* | Don't do auth for change_membership in federation handler, it doesn't work an... | Erik Johnston | 2014-09-03 | 1 | -2/+3 |
* | When creating a room and a user supplies a room_alias but no name, use the ro... | Erik Johnston | 2014-09-03 | 1 | -0/+11 |
* | Merge branch 'develop' of github.com:matrix-org/synapse into develop | David Baker | 2014-09-03 | 98 | -350/+757 |
|\ |
|
| * | Add support to _simple_insert() to do INSERT OR REPLACE | Paul "LeoNerd" Evans | 2014-09-03 | 1 | -4/+6 |
| * | Implement a kick api | Erik Johnston | 2014-09-03 | 1 | -2/+5 |
| * | Default PID file should be 'homeserver.pid' to match the other 'homeserver.*'... | Paul "LeoNerd" Evans | 2014-09-03 | 1 | -1/+1 |
| * | fix the copyright holder from matrix.org to OpenMarket Ltd, as matrix.org has... | Matthew Hodgson | 2014-09-03 | 97 | -97/+97 |
| * | Limit the size of uploads | Mark Haines | 2014-09-03 | 3 | -1/+55 |
| * | Bubble up SynapseErrors so expected failures aren't masked. | Kegan Dougal | 2014-09-03 | 1 | -0/+2 |
| * | Add exception handling to directory servlet, so we don't 500. Mark directory ... | Kegan Dougal | 2014-09-03 | 1 | -2/+16 |
| * | Fix up directory server to not require uploading room hosts. Update the room ... | Erik Johnston | 2014-09-03 | 2 | -2/+11 |
| * | Handle new state events which don't have a common ancestor | Erik Johnston | 2014-09-03 | 1 | -0/+12 |
| * | Snapshot prev_state for generic events | Erik Johnston | 2014-09-03 | 1 | -1/+6 |
| * | Kill the state | Paul "LeoNerd" Evans | 2014-09-03 | 2 | -31/+6 |
| * | Bugfix for back-pagination of presence | Paul "LeoNerd" Evans | 2014-09-03 | 1 | -0/+2 |
| * | Make retrying requests on DNS failures configurable, and turn off retrying on... | Kegan Dougal | 2014-09-03 | 2 | -7/+24 |
| * | Store SQL DDL deltas as well; attempt to upgrade the database on startup if i... | Paul "LeoNerd" Evans | 2014-09-03 | 2 | -7/+183 |
| * | hs: Updated synapse.http.client to handle DNSLookupErrors and bail immediately. | Kegan Dougal | 2014-09-03 | 1 | -1/+6 |
| * | Implement presence state visibilty limiting when polling eventsource for stream | Paul "LeoNerd" Evans | 2014-09-03 | 1 | -9/+57 |
| * | Don't eat federation transmit errors during unit tests; fix remote presence E... | Paul "LeoNerd" Evans | 2014-09-03 | 1 | -1/+0 |
| * | Make sure to print exceptions properly from notifier failures | Paul "LeoNerd" Evans | 2014-09-03 | 1 | -1/+6 |
| * | Updated feedback api docs and fixed feedback content template bug | Kegan Dougal | 2014-09-03 | 1 | -2/+1 |
| * | apidocs: mtime_age > last_active_ago. Presence REST: Sanity check values in i... | Kegan Dougal | 2014-09-03 | 1 | -0/+8 |
| * | Merge branch 'develop' of github.com:matrix-org/synapse into develop | Erik Johnston | 2014-09-03 | 7 | -174/+222 |
| |\ |
|
| | * | Edited /presence REST servlet to raise SynapseErrors to return a standard err... | Kegan Dougal | 2014-09-03 | 1 | -7/+12 |
| | * | Update API docs to use 'presence' key not 'state'. Fixed error messages when ... | Kegan Dougal | 2014-09-03 | 1 | -1/+1 |
| | * | Fixed /presence APIs to urldecode user IDs. | Kegan Dougal | 2014-09-03 | 1 | -1/+5 |
| | * | Fixed GET /events/$id to be not broken. | Kegan Dougal | 2014-09-03 | 1 | -1/+3 |
| | * | move contentrepo class to it's own file | Mark Haines | 2014-09-03 | 3 | -163/+194 |
| | * | URL decode user IDs for /profile REST path segments. | Kegan Dougal | 2014-09-03 | 1 | -0/+6 |
| * | | Add option to change content repo location | Erik Johnston | 2014-09-03 | 3 | -4/+20 |
| |/ |
|
| * | Rename the 'do_users_share_a_room' to something slightly less verb-sounding | Paul "LeoNerd" Evans | 2014-09-03 | 2 | -2/+2 |
| * | Allow optional non-suppression of exceptions through the Distributor | Paul "LeoNerd" Evans | 2014-09-03 | 1 | -4/+13 |
| * | Neater is_presence_visible() code | Paul "LeoNerd" Evans | 2014-09-03 | 1 | -9/+8 |
* | | Add support for registering with a threepid to the HS (get credentials from t... | David Baker | 2014-09-03 | 3 | -9/+100 |
|/ |
|
* | Merge branch 'master' into develop | Erik Johnston | 2014-09-03 | 2 | -3/+3 |
|\ |
|
| * | Bump version and changelog | Erik Johnston | 2014-09-02 | 1 | -1/+1 |
| * | Update default endpoint port to match the default ports in the config | Erik Johnston | 2014-09-02 | 1 | -2/+2 |
* | | Add ban support: /rooms/$roomid/ban with { user_id : foo } | Kegan Dougal | 2014-09-03 | 1 | -2/+2 |
* | | Add copyright notices and fix pyflakes errors | Mark Haines | 2014-09-03 | 7 | -7/+59 |
* | | Set status message for ratelimit error responses | Mark Haines | 2014-09-03 | 3 | -6/+12 |
* | | Merge branch 'ratelimiting' into develop | Mark Haines | 2014-09-03 | 9 | -8/+141 |
|\ \
| |/
|/| |
|
| * | Raise LimitExceedError when the ratelimiting is throttling requests | Mark Haines | 2014-09-03 | 2 | -11/+29 |
| * | rate limiting for message sending | Mark Haines | 2014-09-02 | 4 | -4/+7 |
| * | Add ratelimiting config | Mark Haines | 2014-09-02 | 1 | -0/+21 |
| * | Add ratelimiting function to basehandler | Mark Haines | 2014-09-02 | 5 | -1/+27 |
| * | Test ratelimiter | Mark Haines | 2014-09-02 | 1 | -19/+48 |
| * | Ratelimiter object | Mark Haines | 2014-09-02 | 1 | -0/+36 |
* | | Merge branch 'master' of github.com:matrix-org/synapse into release-v0.2.0 | Erik Johnston | 2014-09-02 | 2 | -3/+20 |
|\ \ |
|
| * | | v0.1.2 v0.1.2 | David Baker | 2014-08-29 | 1 | -1/+1 |
| * | | Version bump for bug fix. v0.1.1 | Erik Johnston | 2014-08-29 | 1 | -1/+1 |
| * | | When notifying listeners, don't do so in a serial fashion | Erik Johnston | 2014-08-29 | 1 | -2/+19 |
| * | | Bump version and change log v0.1.0 | Erik Johnston | 2014-08-29 | 1 | -1/+1 |
* | | | Order matters when adding REST servlets | Paul "LeoNerd" Evans | 2014-09-02 | 1 | -21/+21 |
* | | | Fix bug where we didn't correctly store the ops power levels event. | Erik Johnston | 2014-09-02 | 3 | -1/+9 |
* | | | Add rest endpoint for the whole user profile | David Baker | 2014-09-02 | 1 | -0/+21 |
* | | | Safer handling of incoming presence EDUs that may or maynot contain 'presence... | Paul "LeoNerd" Evans | 2014-09-02 | 1 | -3/+13 |
* | | | 'continue' to go to the next item in a for loop, not 'break' | Paul "LeoNerd" Evans | 2014-09-02 | 1 | -1/+1 |
* | | | By default, only room ops can change the name and topic. | Erik Johnston | 2014-09-02 | 1 | -0/+2 |
| |/
|/| |
|
* | | Remove option for disabling webclient because it was confusing | Mark Haines | 2014-09-02 | 1 | -4/+1 |
* | | Implement auth for kicking. | Erik Johnston | 2014-09-02 | 1 | -3/+10 |
* | | Add message to assertion | Erik Johnston | 2014-09-02 | 1 | -1/+1 |
* | | Default HTTP and HTTPS ports to 8008 and 8448 | Erik Johnston | 2014-09-02 | 1 | -2/+4 |
* | | os.makedirs is almost but not entirely unlike mkdir -p | Mark Haines | 2014-09-02 | 1 | -1/+2 |
* | | Fix typo when reading TLS config | Mark Haines | 2014-09-02 | 1 | -1/+1 |
* | | Make the config directory if the directory doesn't exisit when generating config | Mark Haines | 2014-09-02 | 1 | -0/+1 |
* | | More helpful error messages for missing config | Mark Haines | 2014-09-02 | 3 | -6/+29 |
* | | Add support for setting room name and topic when creating rooms | Erik Johnston | 2014-09-02 | 1 | -4/+29 |
* | | given everything's apparently gone https:// by default for c-s, change this h... | Matthew Hodgson | 2014-09-01 | 1 | -1/+5 |
* | | Add unsecure listener port to homeserver | Mark Haines | 2014-09-01 | 2 | -8/+17 |
* | | enable ECDHE ciphers | Mark Haines | 2014-09-01 | 1 | -0/+6 |
* | | Reënable presence visibility permission checking now it's not used on redund... | Paul "LeoNerd" Evans | 2014-09-01 | 1 | -4/+0 |
* | | No need to test is_presence_visible in _start_polling_local because we know i... | Paul "LeoNerd" Evans | 2014-09-01 | 1 | -4/+0 |
* | | specify metavars in argparse | Matthew Hodgson | 2014-09-01 | 1 | -2/+3 |
* | | Use yaml for config file | Mark Haines | 2014-09-01 | 1 | -11/+6 |
* | | Don't set a 'default' key in the creation event | Erik Johnston | 2014-09-01 | 1 | -1/+0 |
* | | Use pregenerated DH params when generating config | Mark Haines | 2014-09-01 | 1 | -7/+29 |
* | | That was a breaking db change. You need to recreate the databases. (In realit... | Erik Johnston | 2014-09-01 | 1 | -1/+1 |
* | | Don't put required power levels on permission state events | Erik Johnston | 2014-09-01 | 1 | -2/+4 |
* | | Merge branch 'develop' of github.com:matrix-org/synapse into room_config | Erik Johnston | 2014-09-01 | 15 | -246/+634 |
|\ \ |
|
| * | | Fix SSL for federation http client | Mark Haines | 2014-09-01 | 2 | -2/+2 |
| * | | Enable SSL for s2s http client | Mark Haines | 2014-09-01 | 2 | -3/+7 |
| * | | Add server TLS context factory | Mark Haines | 2014-09-01 | 1 | -0/+23 |
| * | | Merge branch 'develop' into server2server_tls | Mark Haines | 2014-09-01 | 2 | -0/+14 |
| |\ \ |
|
| * | | | Listen using SSL | Mark Haines | 2014-09-01 | 2 | -2/+8 |
| * | | | Merge branch 'develop' into server2server_tls | Mark Haines | 2014-09-01 | 2 | -34/+84 |
| |\ \ \ |
|
| * | | | | Fix homeserver config parsing | Mark Haines | 2014-09-01 | 7 | -34/+45 |
| * | | | | Merge branch 'develop' into server2server_tls | Mark Haines | 2014-09-01 | 9 | -178/+196 |
| |\ \ \ \ |
|
| * \ \ \ \ | Merge branch 'develop' into server2server_tls | Mark Haines | 2014-08-31 | 18 | -333/+652 |
| |\ \ \ \ \ |
|
| | * | | | | | Add config tree to synapse. Add support for reading config from a file | Mark Haines | 2014-08-31 | 9 | -231/+441 |
| | | |_|_|/
| | |/| | | |
|
| * | | | | | Add store for server certificates and keys | Mark Haines | 2014-08-28 | 3 | -1/+135 |
* | | | | | | Add all the necessary checks to make banning work. | Erik Johnston | 2014-09-01 | 6 | -6/+54 |
* | | | | | | Merge branch 'develop' of github.com:matrix-org/synapse into room_config | Erik Johnston | 2014-09-01 | 3 | -34/+98 |
|\ \ \ \ \ \
| | |_|_|_|/
| |/| | | | |
|
| * | | | | | Bump a user's presence last_active time every time they send a message to a room | Paul "LeoNerd" Evans | 2014-09-01 | 2 | -0/+10 |
| * | | | | | Perform room unit tests with 'local' users actually in the right domain ;) | Paul "LeoNerd" Evans | 2014-09-01 | 1 | -0/+4 |
| | |_|_|/
| |/| | | |
|
| * | | | | Rename API-visible 'mtime' presence field to 'last_active'; slightly differen... | Paul "LeoNerd" Evans | 2014-09-01 | 1 | -23/+49 |
| * | | | | Rename 'state' presence key to the much more obvious 'presence'; maintain a l... | Paul "LeoNerd" Evans | 2014-09-01 | 2 | -12/+36 |
| | |_|/
| |/| | |
|
* | | | | Add beginnings of ban support. | Erik Johnston | 2014-09-01 | 8 | -29/+122 |
* | | | | Implement power level lists, default power levels and send_evnet_level/add_st... | Erik Johnston | 2014-09-01 | 7 | -48/+218 |
* | | | | Merge branch 'develop' of github.com:matrix-org/synapse into room_config | Erik Johnston | 2014-09-01 | 9 | -178/+196 |
|\| | | |
|
| * | | | missed a s#/matrix#/_matrix/g | Matthew Hodgson | 2014-08-31 | 1 | -1/+1 |
| * | | | change the world: make the default matrix API URL prefix /_matrix rather than... | Matthew Hodgson | 2014-08-31 | 1 | -4/+4 |
| * | | | Bugfixes on presence pushes on user joining: | Paul "LeoNerd" Evans | 2014-08-29 | 1 | -9/+8 |
| * | | | Renamed get_current_token_part to get_current_key | Paul "LeoNerd" Evans | 2014-08-29 | 4 | -10/+10 |
| * | | | Have EventSource's get_new_events_for_user() API work only on keys within tha... | Paul "LeoNerd" Evans | 2014-08-29 | 5 | -30/+33 |
| * | | | TypingNotificationEventSource has to return proper tokens, not int 0 | Paul "LeoNerd" Evans | 2014-08-29 | 1 | -2/+2 |
| * | | | Rename 'events_key' to 'room_key' so it matches the name of the event source | Paul "LeoNerd" Evans | 2014-08-29 | 4 | -10/+10 |
| * | | | Define a new event stream data source for typing notifications (currently null) | Paul "LeoNerd" Evans | 2014-08-29 | 3 | -8/+28 |
| * | | | Avoid hardcoding names of individual stream token keys in its own implementat... | Paul "LeoNerd" Evans | 2014-08-29 | 1 | -9/+3 |
| * | | | Use str.join() properly | Paul "LeoNerd" Evans | 2014-08-29 | 1 | -2/+1 |
| * | | | Move the *EventSource classes into the handlers they relate to, so it's easie... | Paul "LeoNerd" Evans | 2014-08-29 | 3 | -127/+130 |
| | |/
| |/| |
|
* | | | Start adding storage for new events. | Erik Johnston | 2014-08-29 | 3 | -0/+121 |
* | | | Merge branch 'develop' of github.com:matrix-org/synapse into room_config | Erik Johnston | 2014-08-29 | 14 | -145/+234 |
|\| | |
|
| * | | Get the equalities right. | Erik Johnston | 2014-08-29 | 2 | -4/+10 |
| * | | Merge branch 'presence_logging' into develop | Erik Johnston | 2014-08-29 | 6 | -91/+189 |
| |\ \ |
|
| | * | | Fix a couple of bugs in presence handler related to pushing updatesto the cor... | Erik Johnston | 2014-08-29 | 2 | -18/+43 |
| | * | | Turn of trace_function logging | Erik Johnston | 2014-08-28 | 2 | -10/+10 |
| | * | | Only poll remote users if they are in our presence list, rather than in a com... | Erik Johnston | 2014-08-28 | 1 | -53/+66 |
| | * | | Don't query the rooms members table so much by using the new notifier api tha... | Erik Johnston | 2014-08-28 | 2 | -62/+46 |
| | * | | Merge branch 'develop' of github.com:matrix-org/synapse into presence_logging | Erik Johnston | 2014-08-28 | 8 | -47/+39 |
| | |\ \ |
|
| | * | | | Up timeout to 10 minutes | Erik Johnston | 2014-08-28 | 1 | -1/+1 |
| | * | | | And more logging. | Erik Johnston | 2014-08-28 | 2 | -1/+3 |
| | * | | | Add more logging. Up the event stream timer to 10s | Erik Johnston | 2014-08-28 | 2 | -1/+4 |
| | * | | | Add logging to try and figure out what is going on with the presence stuff | Erik Johnston | 2014-08-28 | 4 | -3/+66 |
| * | | | | Fix FederationHandler to event.origin | Mark Haines | 2014-08-28 | 1 | -1/+1 |
| * | | | | Initial room event stream token must be s0, not s1, or everyone will miss the... | Paul "LeoNerd" Evans | 2014-08-28 | 1 | -1/+1 |
| | |/ /
| |/| | |
|
| * | | | Only send presence "poll"/"unpoll" EDUs when changing from/to zero remotes | Paul "LeoNerd" Evans | 2014-08-28 | 1 | -2/+14 |
| * | | | Avoid AlreadyCalledError from EDU sending failures | Paul "LeoNerd" Evans | 2014-08-28 | 1 | -1/+2 |
| * | | | Re-enable presence, un-skip presence tests | Paul "LeoNerd" Evans | 2014-08-28 | 1 | -8/+0 |
| | |/
| |/| |
|
| * | | Remove get_state_for_room function from federation handler | Mark Haines | 2014-08-28 | 1 | -15/+11 |
| * | | use @wraps to set the __name__ __module__ and __doc__ correctly for logged fu... | Mark Haines | 2014-08-28 | 1 | -0/+2 |
| * | | Support multiple login flows when deciding how to login. Updated cmdclient an... | Kegan Dougal | 2014-08-28 | 1 | -1/+1 |
| * | | Fix pyflakes warnings | Mark Haines | 2014-08-28 | 4 | -10/+4 |
| * | | Merge backfill_ and backfill in federation handler | Mark Haines | 2014-08-28 | 1 | -18/+5 |
| |/ |
|
| * | Fix bug where we used UserID objects instead of strigns | Erik Johnston | 2014-08-28 | 1 | -1/+2 |
* | | Create the correct events with the right configuration when creating a new room. | Erik Johnston | 2014-08-28 | 5 | -21/+104 |
|/ |
|
* | Fix typo in NullSource.get_pagination_rows. Remove unused import. | Erik Johnston | 2014-08-28 | 1 | -2/+1 |
* | Define a NullSource useful for unit-testing | Paul "LeoNerd" Evans | 2014-08-27 | 1 | -0/+16 |
* | Split out MessageHandler | Erik Johnston | 2014-08-27 | 3 | -276/+305 |
* | Merge branch 'develop' into storage_transactions | Mark Haines | 2014-08-27 | 2 | -2/+6 |
|\ |
|
| * | If timeout=0, return immediately | Erik Johnston | 2014-08-27 | 1 | -1/+5 |
* | | Merge branch 'develop' into storage_transactions | Mark Haines | 2014-08-27 | 18 | -644/+635 |
|\| |
|
| * | Merge branch 'develop' of github.com:matrix-org/synapse into develop | Erik Johnston | 2014-08-27 | 1 | -0/+46 |
| |\ |
|
| * | | Comments! | Erik Johnston | 2014-08-27 | 1 | -0/+35 |
| * | | Remove stale FIXMEs | Erik Johnston | 2014-08-27 | 1 | -2/+0 |
| * | | Remove store_id from notifier.on_new_room_event calls. | Erik Johnston | 2014-08-27 | 2 | -13/+8 |
| * | | Turn off presence again. | Erik Johnston | 2014-08-27 | 1 | -2/+2 |
| * | | Merge branch 'develop' of github.com:matrix-org/synapse into stream_refactor | Erik Johnston | 2014-08-27 | 4 | -37/+14 |
| |\ \ |
|
| * | | | Index sources in a nicer fashion. | Erik Johnston | 2014-08-27 | 3 | -16/+15 |
| * | | | Convert get_paginat_rows to use PaginationConfig. This allows people to suppl... | Erik Johnston | 2014-08-27 | 3 | -41/+61 |
| * | | | PEP8 tweaks. | Erik Johnston | 2014-08-27 | 5 | -10/+12 |
| * | | | Merge branch 'develop' of github.com:matrix-org/synapse into stream_refactor | Erik Johnston | 2014-08-27 | 10 | -76/+369 |
| |\ \ \ |
|
| * | | | | Implement presence event source. Change the way the notifier indexes listeners | Erik Johnston | 2014-08-27 | 5 | -80/+107 |
| * | | | | Enable presence again. Fix up api to match old api. | Erik Johnston | 2014-08-26 | 5 | -10/+35 |
| * | | | | Fix exceptions so that the event stream works. Presence like events are turne... | Erik Johnston | 2014-08-26 | 1 | -2/+4 |
| * | | | | Merge branch 'develop' of github.com:matrix-org/synapse into stream_refactor | Erik Johnston | 2014-08-26 | 5 | -123/+60 |
| |\ \ \ \ |
|
| * | | | | | WIP: Completely change how event streaming and pagination work. This reflects... | Erik Johnston | 2014-08-26 | 15 | -655/+430 |
| * | | | | | Merge branch 'develop' of github.com:matrix-org/synapse into stream_refactor | Erik Johnston | 2014-08-26 | 5 | -9/+14 |
| |\ \ \ \ \ |
|
| * \ \ \ \ \ | Merge branch 'develop' of github.com:matrix-org/synapse into stream_refactor | Erik Johnston | 2014-08-26 | 11 | -31/+11 |
| |\ \ \ \ \ \ |
|
| * \ \ \ \ \ \ | Merge branch 'develop' of github.com:matrix-org/synapse into stream_refactor | Erik Johnston | 2014-08-26 | 3 | -0/+168 |
| |\ \ \ \ \ \ \ |
|
| * \ \ \ \ \ \ \ | Merge branch 'develop' of github.com:matrix-org/synapse into stream_refactor | Erik Johnston | 2014-08-26 | 22 | -155/+281 |
| |\ \ \ \ \ \ \ \ |
|
| * | | | | | | | | | Use new StreamToken in pagination config | Erik Johnston | 2014-08-21 | 1 | -5/+9 |
| * | | | | | | | | | Add in StreamToken type | Erik Johnston | 2014-08-21 | 1 | -0/+74 |
* | | | | | | | | | | Return the store_id from persist_event | Mark Haines | 2014-08-27 | 1 | -1/+3 |
* | | | | | | | | | | Merge branch 'develop' into storage_transactions | Mark Haines | 2014-08-27 | 9 | -75/+273 |
|\ \ \ \ \ \ \ \ \ \
| | |_|_|_|_|_|_|_|/
| |/| | | | | | | | |
|
| * | | | | | | | | | Added RestServlet for /rooms/$roomid/initialSync | Kegan Dougal | 2014-08-27 | 1 | -0/+30 |
| * | | | | | | | | | Added RestServlet for /rooms/$roomid/state | Kegan Dougal | 2014-08-27 | 1 | -0/+16 |
| | |_|_|_|_|_|_|/
| |/| | | | | | | |
|
| * | | | | | | | | Renamed /ds to /directory | Kegan Dougal | 2014-08-27 | 1 | -1/+1 |
| * | | | | | | | | Renamed /public/rooms to /publicRooms | Kegan Dougal | 2014-08-27 | 3 | -36/+13 |
| | |_|_|_|_|_|/
| |/| | | | | | |
|
| * | | | | | | | A reliable logger.info() message /after/ the TCP port has been opened and is ... | Paul "LeoNerd" Evans | 2014-08-27 | 1 | -0/+1 |
| * | | | | | | | Initial typing notification support - EDU federation, but no timers, and no a... | Paul "LeoNerd" Evans | 2014-08-27 | 2 | -0/+148 |
| * | | | | | | | Added parse_roomid() helper | Paul "LeoNerd" Evans | 2014-08-27 | 1 | -0/+5 |
| * | | | | | | | Use SQLite's PRAGMA user_version to check if the database file really matches... | Paul "LeoNerd" Evans | 2014-08-27 | 1 | -6/+28 |
| * | | | | | | | Neater database setup at application startup time; only .connect() it once, n... | Paul "LeoNerd" Evans | 2014-08-27 | 1 | -17/+19 |
| * | | | | | | | Final url modifications: renamed /presence_list to /presence/list to keep the... | Kegan Dougal | 2014-08-27 | 1 | -1/+1 |
| * | | | | | | | Renamed /rooms to /createRoom. Removed ability to PUT raw room IDs, and remov... | Kegan Dougal | 2014-08-27 | 1 | -17/+14 |
* | | | | | | | | add _get_room_member, fix datastore methods | Mark Haines | 2014-08-27 | 5 | -12/+33 |
* | | | | | | | | Start updating state handling to use snapshots | Mark Haines | 2014-08-27 | 2 | -18/+13 |
* | | | | | | | | Remove call to get_federation from homeserver | Mark Haines | 2014-08-27 | 1 | -4/+0 |
* | | | | | | | | Fill out prev_events before calling persist_event | Mark Haines | 2014-08-27 | 3 | -65/+28 |
* | | | | | | | | Remove unused populate_previous_pdus | Mark Haines | 2014-08-27 | 3 | -27/+1 |
* | | | | | | | | Merge branch 'develop' into storage_transactions | Mark Haines | 2014-08-27 | 12 | -129/+160 |
|\| | | | | | | |
|
| * | | | | | | | Added support for GET /events/$eventid with auth checks. | Kegan Dougal | 2014-08-27 | 4 | -2/+45 |
| * | | | | | | | Modified /join/$identifier to support $identifier being a room ID in addition... | Kegan Dougal | 2014-08-27 | 3 | -14/+61 |
| | |_|_|_|_|/
| |/| | | | | |
|
| * | | | | | | Pepper UT TODOs | Kegan Dougal | 2014-08-26 | 2 | -0/+6 |
| * | | | | | | Feedback: Removed FeedbackRestServlet. Modified keys on FeedbackEvent. Expand... | Kegan Dougal | 2014-08-26 | 4 | -81/+13 |
| * | | | | | | Removed MessageRestServlet, use RoomSendEventRestServlet instead. Updated cmd... | Kegan Dougal | 2014-08-26 | 1 | -49/+0 |
| * | | | | | | Added RoomSendEventRestServlet to send generic non-state events. It even appe... | Kegan Dougal | 2014-08-26 | 1 | -2/+50 |
| | |_|_|_|/
| |/| | | | |
|
| * | | | | | Respect 'limit' param in initialSync api | Erik Johnston | 2014-08-26 | 1 | -1/+5 |
* | | | | | | Fold federation/handler into handlers/federation | Mark Haines | 2014-08-26 | 6 | -172/+141 |
* | | | | | | Use store.persist_event rather than pdu_actions.persist_outgoing/pdu_actions.... | Mark Haines | 2014-08-26 | 2 | -21/+2 |
* | | | | | | Move new event boilerplate in room handlers into a method on a base clase. | Mark Haines | 2014-08-26 | 2 | -52/+33 |
* | | | | | | Move pdu and event persistence into a single persist_event function | Mark Haines | 2014-08-26 | 3 | -49/+35 |
* | | | | | | Merge branch 'develop' into storage_transactions | Mark Haines | 2014-08-26 | 3 | -7/+8 |
|\| | | | | |
|
| * | | | | | Merge branch 'client_server_url_rename' into develop | Kegan Dougal | 2014-08-26 | 3 | -7/+8 |
| |\ \ \ \ \ |
|
| | * | | | | | Renaming: /im/sync >> /initialSync. /rooms/$roomid/members/list >> /rooms/$ro... | Kegan Dougal | 2014-08-26 | 3 | -7/+8 |
| | | |_|_|/
| | |/| | | |
|
* | | | | | | Merge branch 'develop' into storage_transactions | Mark Haines | 2014-08-26 | 1 | -1/+1 |
|\| | | | | |
|
| * | | | | | Use state_key rather than target_user_id | Mark Haines | 2014-08-26 | 1 | -1/+1 |
| |/ / / / |
|
* | | | | | Use state_key rather than target_user_id | Mark Haines | 2014-08-26 | 1 | -1/+1 |
* | | | | | Merge branch 'develop' into storage_transactions | Mark Haines | 2014-08-26 | 27 | -186/+460 |
|\| | | | |
|
| * | | | | Fix pyflakes errors | Mark Haines | 2014-08-26 | 11 | -31/+11 |
| | |_|/
| |/| | |
|
| * | | | Merge branch 'develop' of github.com:matrix-org/synapse into client_server_ur... | Kegan Dougal | 2014-08-26 | 3 | -5/+35 |
| |\ \ \
| | | |/
| | |/| |
|
| | * | | Add the ability to turn on the twisted manhole telnet service. | Erik Johnston | 2014-08-26 | 1 | -0/+10 |
| | * | | Add a do_users_share_a_room method and use that in the presence handler. | Erik Johnston | 2014-08-26 | 2 | -5/+25 |
| * | | | Implemented /rooms/$roomid/[invite|join|leave] with POST / PUT (incl txn ids) | Kegan Dougal | 2014-08-26 | 2 | -8/+35 |
| * | | | Added basic in-memory REST transaction storage. Only the latest transaction f... | Kegan Dougal | 2014-08-26 | 3 | -2/+103 |
| * | | | Added servlet for /rooms/$roomid/[invite|join|leave] | Kegan Dougal | 2014-08-26 | 1 | -0/+40 |
| |/ / |
|
| * | | Adjusted webclient to use new state paths. Updated membership msg template to... | Kegan Dougal | 2014-08-26 | 1 | -1/+2 |
| * | | Merge branch 'develop' of github.com:matrix-org/synapse into client_server_ur... | Kegan Dougal | 2014-08-26 | 1 | -1/+1 |
| |\ \ |
|
| | * | | Add 'state_key' to valid_keys | Erik Johnston | 2014-08-26 | 1 | -0/+1 |
| | * | | Send down state_key to clients | Erik Johnston | 2014-08-26 | 1 | -1/+0 |
| * | | | Merge branch 'develop' of github.com:matrix-org/synapse into client_server_ur... | Kegan Dougal | 2014-08-26 | 17 | -30/+153 |
| |\| | |
|
| | * | | Order 'get_recent_events_for_room' correctly. | Erik Johnston | 2014-08-26 | 1 | -1/+1 |