summary refs log tree commit diff
path: root/jsfiddles/example_app/demo.js (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-09-02Added the new power level related events which were recently introduced.Kegan Dougal1-0/+60
2014-09-02Added more room alias bullet points.Kegan Dougal1-2/+4
2014-09-02Finished up Identity section in the architecture section.Kegan Dougal1-7/+20
2014-09-02Minor formatting tweaks.Kegan Dougal1-4/+4
2014-09-02Added section on rate limiting.Kegan Dougal1-3/+15
2014-09-02ALL THE LINKS! Most APIs now link to relative paths off the doc, outlined at ↵Kegan Dougal1-18/+52
the bottom of the .rst.
2014-09-02roomName directive: Take into account invited users.Emmanuel ROHEE1-1/+38
Use the last user display name
2014-09-02More formatting, more TODOs. Settled on a way of linking to external API ↵Kegan Dougal1-31/+53
docs; started converting references to relative links.
2014-09-02spec: Added internal links to different sections. Added NOTE and WARNING ↵Kegan Dougal1-64/+123
admonitions and hide away loooong TODO lists behind comments. Smaller ones remain.
2014-09-02make power level more visibleMatthew Hodgson1-3/+3
2014-09-02Attempt to make avatar change clearerEmmanuel ROHEE2-4/+15
2014-09-02BF: Reset base timer time ($scope.now) everytime last_active_ago is touchedEmmanuel ROHEE1-7/+6
2014-09-02Updated howto.rst to use the new APIs. Updated JSFiddles to use 8008. Linked ↵Kegan Dougal11-138/+465
new fiddles with howto.rst. Added more explanations.
2014-09-02BF: Prevent controllers from being instantiated twice.Emmanuel ROHEE1-14/+7
AngularJS will instantiate it when discovering ng-controller in their respective html files
2014-09-02Handle "m.room.create" in order to inform controllers about new roomsEmmanuel ROHEE3-5/+29
2014-09-02Order matters when adding REST servletsPaul "LeoNerd" Evans1-21/+21
2014-09-02Fix bug where we didn't correctly store the ops power levels event.Erik Johnston3-1/+9
2014-09-02Whoops: Put /events parameters object in the right part of the api tree.Kegan Dougal1-17/+18
2014-09-02Updated API docs with new keys on /createRoom and new API /rooms/$roomid/banKegan Dougal1-0/+54
2014-09-02Add rest endpoint for the whole user profileDavid Baker1-0/+21
2014-09-02More ban spec. Added 'name' and 'topic' keys to /createRoom.Kegan Dougal1-13/+33
2014-09-02Safer handling of incoming presence EDUs that may or maynot contain ↵Paul "LeoNerd" Evans1-3/+13
'presence' or 'state'
2014-09-02'continue' to go to the next item in a for loop, not 'break'Paul "LeoNerd" Evans1-1/+1
2014-09-02By default, only room ops can change the name and topic.Erik Johnston1-0/+2
2014-09-02Remove option for disabling webclient because it was confusingMark Haines1-4/+1
2014-09-02Fix room permissions testErik Johnston1-0/+3
2014-09-02Implement auth for kicking.Erik Johnston1-3/+10
2014-09-02Add message to assertionErik Johnston1-1/+1
2014-09-02Default HTTP and HTTPS ports to 8008 and 8448Erik Johnston1-2/+4
2014-09-02Make the demo listen on both HTTP and HTTPS portsErik Johnston1-3/+5
2014-09-02os.makedirs is almost but not entirely unlike mkdir -pMark Haines1-1/+2
2014-09-02Fix typo when reading TLS configMark Haines1-1/+1
2014-09-02Represent user power level in a room by a red bar at the bottom of his ↵Emmanuel ROHEE5-0/+60
avatar image. The width of this bar depends on the power level.
2014-09-02Ensure that event source unit tests could cope with ↵Paul "LeoNerd" Evans1-14/+20
get_new_events_for_user() returning a Deferred
2014-09-02Make the config directory if the directory doesn't exisit when generating configMark Haines1-0/+1
2014-09-02More helpful error messages for missing configMark Haines3-6/+29
2014-09-02Yet more bullet points on various sections.Kegan Dougal1-11/+45
2014-09-02BF: Armed updateMemberListPresenceAge only onceEmmanuel ROHEE1-1/+3
2014-09-02Make the intro bit a separate section rather than have a 'quick start' ↵David Baker1-2/+5
section that only tells you how to get started half way through.
2014-09-02Add support for setting room name and topic when creating roomsErik Johnston1-4/+29
2014-09-02Added section on banning users, currently in flux as the API changes / is ↵Kegan Dougal1-0/+26
implemented.
2014-09-02Expanded on bullet points in several sections.Kegan Dougal1-4/+12
2014-09-02BF: Take into account MEMBER_EVENT and PRESENCE_EVENT events only after the ↵Emmanuel ROHEE1-2/+6
initialSync is done
2014-09-01given everything's apparently gone https:// by default for c-s, change this ↵Matthew Hodgson1-1/+5
hardcoding...
2014-09-01Add unsecure listener port to homeserverMark Haines2-8/+17
2014-09-01enable ECDHE ciphersMark Haines1-0/+6
2014-09-01Reënable presence visibility permission checking now it's not used on ↵Paul "LeoNerd" Evans2-6/+0
redundant code paths
2014-09-01No need to test is_presence_visible in _start_polling_local because we know ↵Paul "LeoNerd" Evans1-4/+0
it will be by when it's called
2014-09-01specify metavars in argparseMatthew Hodgson1-2/+3
2014-09-01add pyyaml dependency for config filesMark Haines1-0/+1
2014-09-01Use yaml for config fileMark Haines1-11/+6
2014-09-01Don't set a 'default' key in the creation eventErik Johnston1-1/+0
2014-09-01Use pregenerated DH params when generating configMark Haines1-7/+29
2014-09-01That was a breaking db change. You need to recreate the databases. (In ↵Erik Johnston1-1/+1
reality, it's enough to just run the im.sql through your db and change the schema version)
2014-09-01Don't put required power levels on permission state eventsErik Johnston1-2/+4
2014-09-01Update readme with instructions on how to generate configs for homeserversMark Haines1-2/+12
2014-09-01Fix the tests to include new db callsErik Johnston2-6/+20
2014-09-01Fix SSL for federation http clientMark Haines2-2/+2
2014-09-01