| Commit message (Expand) | Author | Files | Lines |
2014-08-27 | Added generic state/non-state event sending to the API docs. | Kegan Dougal | 1 | -8/+123 |
2014-08-27 | api docs: Finished adding all C-S APIs. Added initialSync, publicRooms, membe... | Kegan Dougal | 4 | -53/+331 |
2014-08-27 | BF: use room_id if there is no alias | Emmanuel ROHEE | 1 | -1/+1 |
2014-08-27 | Sort recents in anti-chronological order | Emmanuel ROHEE | 3 | -1/+49 |
2014-08-27 | Moved recents things into a separate (and reusable) controler | Emmanuel ROHEE | 6 | -117/+126 |
2014-08-27 | Moved assignRoomAliases into a central piece: matrixService for now | Emmanuel ROHEE | 1 | -0/+34 |
2014-08-27 | Cleaned ng dependencies | Emmanuel ROHEE | 1 | -3/+3 |
2014-08-27 | home/recents: show the last message of each message | Emmanuel ROHEE | 3 | -8/+102 |
2014-08-27 | Rename go() into goToPage() which is available from everywhere thanks to the ... | Emmanuel ROHEE | 2 | -2/+6 |
2014-08-27 | Support limit and feedback param of initialSync | Emmanuel ROHEE | 2 | -3/+15 |
2014-08-27 | Renamed /ds to /directory | Kegan Dougal | 2 | -2/+2 |
2014-08-27 | Renamed /public/rooms to /publicRooms | Kegan Dougal | 4 | -37/+14 |
2014-08-27 | fix joining rooms on webclient | David Baker | 1 | -1/+2 |
2014-08-27 | git ignore all the homeserver*.db files | Paul "LeoNerd" Evans | 1 | -1/+1 |
2014-08-27 | A reliable logger.info() message /after/ the TCP port has been opened and is ... | Paul "LeoNerd" Evans | 1 | -0/+1 |
2014-08-27 | Updated swagger JSON: cleaned up unused entries. Converted most paths to the ... | Kegan Dougal | 4 | -477/+105 |
2014-08-27 | Removed urls.rst - The API docs / swagger JSON should be used as the canonica... | Kegan Dougal | 1 | -92/+0 |
2014-08-27 | Initial typing notification support - EDU federation, but no timers, and no a... | Paul "LeoNerd" Evans | 3 | -0/+398 |
2014-08-27 | Added parse_roomid() helper | Paul "LeoNerd" Evans | 1 | -0/+5 |
2014-08-27 | Use SQLite's PRAGMA user_version to check if the database file really matches... | Paul "LeoNerd" Evans | 1 | -6/+28 |
2014-08-27 | Neater database setup at application startup time; only .connect() it once, n... | Paul "LeoNerd" Evans | 1 | -17/+19 |
2014-08-27 | Final url modifications: renamed /presence_list to /presence/list to keep the... | Kegan Dougal | 2 | -4/+4 |
2014-08-27 | Renamed /rooms to /createRoom. Removed ability to PUT raw room IDs, and remov... | Kegan Dougal | 6 | -115/+55 |
2014-08-27 | Added support for GET /events/$eventid with auth checks. | Kegan Dougal | 4 | -2/+45 |
2014-08-27 | Modified /join/$identifier to support $identifier being a room ID in addition... | Kegan Dougal | 3 | -14/+61 |
2014-08-26 | Pepper UT TODOs | Kegan Dougal | 2 | -0/+6 |
2014-08-26 | Feedback: Removed FeedbackRestServlet. Modified keys on FeedbackEvent. Expand... | Kegan Dougal | 4 | -81/+13 |
2014-08-26 | Removed MessageRestServlet, use RoomSendEventRestServlet instead. Updated cmd... | Kegan Dougal | 6 | -87/+25 |
2014-08-26 | Added RoomSendEventRestServlet to send generic non-state events. It even appe... | Kegan Dougal | 1 | -2/+50 |
2014-08-26 | Respect 'limit' param in initialSync api | Erik Johnston | 1 | -1/+5 |
2014-08-26 | Renaming: /im/sync >> /initialSync. /rooms/$roomid/members/list >> /rooms/$ro... | Kegan Dougal | 6 | -15/+16 |
2014-08-26 | Use state_key rather than target_user_id | Mark Haines | 1 | -1/+1 |
2014-08-26 | Fix pyflakes errors | Mark Haines | 11 | -31/+11 |
2014-08-26 | Avoid double call of refresh at app startup | Emmanuel ROHEE | 2 | -5/+7 |
2014-08-26 | Fix ALL THE UNIT TESTS | Kegan Dougal | 5 | -34/+35 |
2014-08-26 | Determine and send user presence state | Emmanuel ROHEE | 4 | -5/+140 |
2014-08-26 | webclient: Updated to use /rooms/$roomid/[invite|join|leave] | Kegan Dougal | 1 | -7/+11 |
2014-08-26 | Implemented /rooms/$roomid/[invite|join|leave] with POST / PUT (incl txn ids) | Kegan Dougal | 2 | -8/+35 |
2014-08-26 | Added basic in-memory REST transaction storage. Only the latest transaction f... | Kegan Dougal | 3 | -2/+103 |
2014-08-26 | Add the ability to turn on the twisted manhole telnet service. | Erik Johnston | 2 | -2/+13 |
2014-08-26 | Add a do_users_share_a_room method and use that in the presence handler. | Erik Johnston | 2 | -5/+25 |
2014-08-26 | Added servlet for /rooms/$roomid/[invite|join|leave] | Kegan Dougal | 1 | -0/+40 |
2014-08-26 | URL renaming: Room state keys now use the format /rooms/$roomid/state/$event_... | Kegan Dougal | 1 | -2/+2 |
2014-08-26 | Adjusted webclient to use new state paths. Updated membership msg template to... | Kegan Dougal | 6 | -47/+24 |
2014-08-26 | Add 'state_key' to valid_keys | Erik Johnston | 1 | -0/+1 |
2014-08-26 | Send down state_key to clients | Erik Johnston | 1 | -1/+0 |
2014-08-26 | Removed member list servlet: now using generic state paths. | Kegan Dougal | 9 | -106/+53 |
2014-08-26 | Order 'get_recent_events_for_room' correctly. | Erik Johnston | 1 | -1/+1 |
2014-08-25 | The landing URL is now '#/' which actually points to homeController | Emmanuel ROHEE | 1 | -2/+2 |
2014-08-25 | Oops. Removed my NetBeans private folders | Emmanuel ROHEE | 3 | -39/+0 |
2014-08-24 | Ensure that we don't have duplicate hosts in the pdu destinations list | Erik Johnston | 1 | -2/+2 |
2014-08-24 | For the content repo, don't just use homeserver.hostname as that might not in... | Erik Johnston | 2 | -1/+10 |
2014-08-24 | Add a unique constraint on the room hosts table | Erik Johnston | 1 | -1/+2 |
2014-08-24 | Encode unicode from json as utf-8. This was required to allow people to regis... | Erik Johnston | 1 | -2/+2 |
2014-08-23 | oops | Matthew Hodgson | 1 | -1/+1 |
2014-08-23 | very quick and dirty responsive design for iPhones | Matthew Hodgson | 6 | -30/+110 |
2014-08-23 | point out the non-quick-start guide | Matthew Hodgson | 1 | -2/+4 |
2014-08-22 | Mention in changelog that we disabled presence. v0.0.1 | Erik Johnston | 1 | -0/+2 |
2014-08-22 | skip presence tests which broke when presence polling was disabled | Mark Haines | 3 | -0/+13 |
2014-08-22 | Oops, we need to use defer.returnValue. | Erik Johnston | 1 | -1/+2 |
2014-08-22 | Make is_presence_visible always return true as it was thrashing the database. | Erik Johnston | 1 | -0/+3 |
2014-08-22 | Turn off more spammy logging. | Erik Johnston | 1 | -1/+1 |
2014-08-22 | Turn off spammy logging | Erik Johnston | 1 | -1/+1 |
2014-08-22 | Add indices to schema | Erik Johnston | 2 | -0/+24 |
2014-08-22 | Added "Your name" as placeholder to help user understand what is this alone i... | Emmanuel ROHEE | 1 | -1/+1 |
2014-08-22 | Use /home everywhere | Emmanuel ROHEE | 6 | -12/+12 |
2014-08-22 | renamed rooms to home - renamed files | Emmanuel ROHEE | 4 | -0/+23 |
2014-08-22 | renamed rooms to home | Emmanuel ROHEE | 3 | -0/+16 |
2014-08-22 | Move profile parts of the rooms page and the config content into a new page: ... | Emmanuel ROHEE | 8 | -201/+237 |
2014-08-22 | avatar url | root | 1 | -1/+1 |
2014-08-22 | add 0.0.0 into the changelog, and add dates | Matthew Hodgson | 1 | -2/+8 |
2014-08-22 | Impl: /rooms/roomid/state/eventtype/state_key - Renamed RoomTopicRestServlet ... | Kegan Dougal | 2 | -20/+ |