Jan-Ivar Bruaroey
368c23ee03
Bug 1026782 Implements MozLoopService.setLoopCharPref. r=ttaubert
2014-07-01 17:12:54 +01:00
Andrei Oprea
55f22c6544
Bug 1023507 - Handle SDK failures when calling connect. r+ui-r=dmose
2014-06-25 11:00:00 -04:00
Adam Roach [:abr]
f0203d7e00
Bug 1011472 - Add audio alert for incoming call r=florian,standard8
2014-06-26 18:55:03 -05:00
Mark Banner
5c3cd1dcdd
Bug 1030062 Loop Marionette tests need clearer failure points when displayed on tbpl. r=dburns
2014-06-26 09:00:08 +01:00
Jim Blandy
7e20285e70
Bug 914753: Make Emacs file variable header lines correct, or at least consistent. DONTBUILD r=ehsan
...
The -*- file variable lines -*- establish per-file settings that Emacs will
pick up. This patch makes the following changes to those lines (and touches
nothing else):
- Never set the buffer's mode.
Years ago, Emacs did not have a good JavaScript mode, so it made sense
to use Java or C++ mode in .js files. However, Emacs has had js-mode for
years now; it's perfectly serviceable, and is available and enabled by
default in all major Emacs packagings.
Selecting a mode in the -*- file variable line -*- is almost always the
wrong thing to do anyway. It overrides Emacs's default choice, which is
(now) reasonable; and even worse, it overrides settings the user might
have made in their '.emacs' file for that file extension. It's only
useful when there's something specific about that particular file that
makes a particular mode appropriate.
- Correctly propagate settings that establish the correct indentation
level for this file: c-basic-offset and js2-basic-offset should be
js-indent-level. Whatever value they're given should be preserved;
different parts of our tree use different indentation styles.
- We don't use tabs in Mozilla JS code. Always set indent-tabs-mode: nil.
Remove tab-width: settings, at least in files that don't contain tab
characters.
- Remove js2-mode settings that belong in the user's .emacs file, like
js2-skip-preprocessor-directives.
2014-06-24 22:12:07 -07:00
Mark Banner
d3de984921
Bug 1023279 Make conversation window title localizable, and add missing license header. r=nperriault,ui-review=darrin
2014-06-23 11:48:32 +01:00
Mark Banner
165f7d28a4
Bug 1026504 - Clarify non-shared status of sdk and webl10n for Loop by moving them from the shared libs to non-shared. r=nperriault
...
--HG--
rename : browser/components/loop/content/shared/libs/otcdn/webrtc/v2.2.5/css/ot.min.css => browser/components/loop/content/libs/otcdn/webrtc/v2.2.5/css/ot.min.css
rename : browser/components/loop/content/shared/libs/otcdn/webrtc/v2.2.5/images/rtc/access-denied-chrome.png => browser/components/loop/content/libs/otcdn/webrtc/v2.2.5/images/rtc/access-denied-chrome.png
rename : browser/components/loop/content/shared/libs/otcdn/webrtc/v2.2.5/images/rtc/access-denied-copy-firefox.png => browser/components/loop/content/libs/otcdn/webrtc/v2.2.5/images/rtc/access-denied-copy-firefox.png
rename : browser/components/loop/content/shared/libs/otcdn/webrtc/v2.2.5/images/rtc/access-denied-firefox.png => browser/components/loop/content/libs/otcdn/webrtc/v2.2.5/images/rtc/access-denied-firefox.png
rename : browser/components/loop/content/shared/libs/otcdn/webrtc/v2.2.5/images/rtc/access-predenied-chrome.png => browser/components/loop/content/libs/otcdn/webrtc/v2.2.5/images/rtc/access-predenied-chrome.png
rename : browser/components/loop/content/shared/libs/otcdn/webrtc/v2.2.5/images/rtc/access-prompt-chrome.png => browser/components/loop/content/libs/otcdn/webrtc/v2.2.5/images/rtc/access-prompt-chrome.png
rename : browser/components/loop/content/shared/libs/otcdn/webrtc/v2.2.5/images/rtc/audioonly-publisher.png => browser/components/loop/content/libs/otcdn/webrtc/v2.2.5/images/rtc/audioonly-publisher.png
rename : browser/components/loop/content/shared/libs/otcdn/webrtc/v2.2.5/images/rtc/audioonly-subscriber.png => browser/components/loop/content/libs/otcdn/webrtc/v2.2.5/images/rtc/audioonly-subscriber.png
rename : browser/components/loop/content/shared/libs/otcdn/webrtc/v2.2.5/images/rtc/buttons.png => browser/components/loop/content/libs/otcdn/webrtc/v2.2.5/images/rtc/buttons.png
rename : browser/components/loop/content/shared/libs/otcdn/webrtc/v2.2.5/images/rtc/loader.gif => browser/components/loop/content/libs/otcdn/webrtc/v2.2.5/images/rtc/loader.gif
rename : browser/components/loop/content/shared/libs/otcdn/webrtc/v2.2.5/images/rtc/mic-off.png => browser/components/loop/content/libs/otcdn/webrtc/v2.2.5/images/rtc/mic-off.png
rename : browser/components/loop/content/shared/libs/otcdn/webrtc/v2.2.5/images/rtc/mic-on.png => browser/components/loop/content/libs/otcdn/webrtc/v2.2.5/images/rtc/mic-on.png
rename : browser/components/loop/content/shared/libs/otcdn/webrtc/v2.2.5/images/rtc/speaker-off.png => browser/components/loop/content/libs/otcdn/webrtc/v2.2.5/images/rtc/speaker-off.png
rename : browser/components/loop/content/shared/libs/otcdn/webrtc/v2.2.5/images/rtc/speaker-on.png => browser/components/loop/content/libs/otcdn/webrtc/v2.2.5/images/rtc/speaker-on.png
rename : browser/components/loop/content/shared/libs/otcdn/webrtc/v2.2.5/js/dynamic_config.min.js => browser/components/loop/content/libs/otcdn/webrtc/v2.2.5/js/dynamic_config.min.js
rename : browser/components/loop/content/shared/libs/sdk.js => browser/components/loop/content/libs/sdk.js
rename : browser/components/loop/content/shared/libs/webl10n-20130617.js => browser/components/loop/standalone/content/libs/webl10n-20130617.js
2014-06-18 10:43:31 +01:00
Mark Banner
52532e0c8b
Bug 1020859 Part 2 - Change Loop to use HawkClient to increase shared code usage and make MozLoopService simpler. r=mhammond
2014-06-18 10:42:15 +01:00
Mark Banner
80c167047f
Bug 1022689 Separate out the Loop Push Handler from the Loop Service code to help similify testing and clarify separation of modules. r=mhammond
2014-06-16 08:41:17 +01:00
Nicolas Perriault
033195a4d4
Bug 1022874 - Add non-minified version of Backbone for Loop. r=Standard8
2014-06-11 11:03:50 +01:00
Nicolas Perriault
8193905a43
Bug 1022873 - Add non-minified version of Lodash for Loop. r=Standard8
2014-06-11 11:03:12 +01:00
Nicolas Perriault
ab0c349930
Bug 1022872 - Add non-minified version of jQuery for Loop. r=Standard8
2014-06-11 11:01:21 +01:00
Adam Roach [:abr]
cbe641f3ba
Bug 1022772 - SJCL should be unminified, versioned r=Standard8
2014-06-09 13:24:24 -05:00
Nicolas Perriault
d545069052
Bug 1018208 - Write missing tests for Loop "do not disturb" feature. r=Standard8
2014-06-09 10:29:54 +01:00
Mark Banner
5737965ad2
Bug 994483 Fix running marionette tests locally and bug 1021573 Fix intermittent failure due to the server trying to bind to a socket that hasn't been released yet. r=jgriffin
2014-06-06 20:57:00 +01:00
Nicolas Perriault
479cea6ac1
Bug 1020451 Implement basic accept/reject call buttons so that video isn't shown before the call is accepted. r=Standard8
2014-06-05 19:57:42 +02:00
Adam Roach [:abr]
9c6e239c1a
Bug 994131 - Change URLs in OT.properties to use https r=Standard8
2014-06-05 12:42:01 -05:00
Nicolas Perriault
c4630b9ff7
Bug 1003029 Use local versions of OT assets. r=Standard8,rs=gijs,r=abr
2014-06-05 17:01:18 +01:00
Adam Roach [:abr]
9b3c57757a
Bug 1021036 - Change default button color from grey to purple r=NiKo`
2014-06-05 10:51:37 -05:00
Mark Banner
3e420161df
Bug 994483 Add Loop unit tests to tbpl. r=dburns
2014-06-05 15:45:16 +01:00
Adam Roach [:abr]
7953db0448
Bug 1020540 - Include only those components we need from SJCL r=Standard8
2014-06-05 09:23:39 -05:00
Nicolas Perriault
a2215a102c
Bug 1018875 Prevent displaying OT GuM custom dialog. r=Standard8
2014-06-05 15:51:59 +02:00
Alexis Metaireau
579f9a8d9f
Bug 987086 Loop web client should use configuration for determining server url. r=nperriault, r=Standard8
2014-06-05 15:18:41 +02:00
Mark Banner
f101778976
Bug 1017902 Use saved hawk session tokens, if possible, when registering with the server to preserve the session across restarts. r=jparsons,r=mhammond
2014-06-05 10:29:54 +01:00
Mark Banner
74aef7c36a
Bug 1017394 In MozLoopService use promises rather than callbacks to make the code cleaner. r=mhammond
2014-06-04 14:42:41 +01:00
Mark Banner
935ab98fc1
Backed out changeset 3540ecf33808 / bug 1003029 due to test failures.
2014-06-04 13:16:06 +01:00
Nicolas Perriault
580ad47021
Bug 1003029 Use local versions of OT assets for Loop. r=Standard
2014-06-04 09:40:52 +01:00
Mark Banner
d31d424371
Bug 1020121 Remove unnecessary/erroneous .gitignore files from loop. r=nperriault
2014-06-04 09:36:50 +01:00
Nicolas Perriault
bfe48acf8f
Bug 994152 Loop needs a "do not disturb" control. r=mhammond,r=Standard8
2014-06-02 20:30:02 +01:00
Adam Roach [:abr]
b1bb176852
Bug 1017206: Update SDK to 2.2.5 rs=me
2014-05-30 18:25:23 -05:00
Mark Banner
d45530e597
Bug 1017882 Remove unnecessary and incorrect padding value for notification close buttons. r=nperriault
2014-05-30 13:22:30 +01:00
Mark Banner
1c60c1dcef
Bug 994485 Update loop's readme and remove redundant make-links.sh DONTBUILD
2014-05-29 22:12:30 +01:00
Mark Banner
0eec772206
Bug 994485 Make standalone tests work with combined repositories/changed file layout, and fix the standalone server. r=dmose
2014-05-29 21:25:39 +01:00
Dan Mosedale
6fb426e9a9
Bug 976109 - Switch session tokens from cookies to Hawk, r=NiKo`,Standard8
2014-05-29 21:20:11 +01:00
Mark Banner
4b930a3ab5
Bug 994151 Part 2. Only register with the servers if the user has obtained call urls that haven't expired yet. r=dmose
2014-05-29 21:20:11 +01:00
Mark Banner
c7f16b64f5
Bug 994151 Part 1. Ensure the client is registered before requesting a call url. r=dmose
2014-05-29 21:20:11 +01:00
Mark Banner
7ac979f6f6
Bug 1013092 Remove the logo from the video stream. r=nperriault
2014-05-29 21:20:11 +01:00
Nicolas Perriault
17501430bb
Bug 974895: Added landing page for unsupported devices, r=Standard8.
2014-05-29 21:20:11 +01:00
Nicolas Perriault
1b7e6cebc8
Bug 1005041: In progress feedback when getting a call url, r=dmose
2014-05-29 21:20:11 +01:00
Nicolas Perriault
46959a8b27
Bug 997178 - Restart a call, r=dmose
2014-05-29 21:20:11 +01:00
Romain Gauthier
a3b3b676d2
Bug 972941: Landing page for non WebRTC-compliant browsers on supported devices. r=nperriault
2014-05-29 21:20:11 +01:00
Nicolas Perriault
e4287a9ce1
Bug 999480 - Panel to use a router & templated views, r=Standard8
2014-05-29 21:20:11 +01:00
Nicolas Perriault
e2819ee27e
Bug 998271 - L10n notifications, r=dmose
2014-05-29 21:20:11 +01:00
Nicolas Perriault
900c609645
Bug 991118 - Going back should terminate call session, r=dmose
2014-05-29 21:20:11 +01:00
Nicolas Perriault
b3e78f8053
Bug 991128 - make reloading a live call do something reasonable, r=dmose
2014-05-29 21:20:11 +01:00
Nicolas Perriault
7d663f33a9
Bug 996526 - Backbone views to carry their own templates. r=dmose
2014-05-29 21:20:11 +01:00
Nicolas Perriault
10938a5fde
Bug 972019 - Shared conversation router logic. r=dmose
2014-05-29 21:20:11 +01:00
Mark Banner
671c706913
Bug 995194 Don't unpublish when receiving sessionDisconnected, as we've implicitly unpublished already, r=dmose
2014-05-29 21:20:11 +01:00
Dan Mosedale
83c30ff2f6
Bug 976127 - Get marionette to drive shared and desktop-local unit tests, r=Standard8
2014-05-29 21:20:11 +01:00
Nicolas Perriault
7fae1e6c4c
Bug 972019: Terminate a call. r=Standard8
...
--HG--
extra : transplant_source : %ADE%A7%A4%A5%F2v%114%95%10%21%C6Trg%CA%86y%19
2014-05-29 21:20:11 +01:00