Wes Kocher
50789ffa1a
Merge m-c to fx-team a=merge CLOSED TREE
2015-03-02 13:07:53 -08:00
Nigel Babu
efd4454ae7
Backout Bug 1132771 for spidermonkey build bustage on CLOSED TREE
2015-03-02 17:13:05 +05:30
Gregory Szorc
6ad26eb327
Bug 1132771 - Define some bug components; r=glandium
...
This patch defines bug components for code that I have historically
touched.
2015-02-26 11:43:45 -08:00
Tooru Fujisawa
20a8c15d94
Bug 1108382 - Part 11: Do not use non-standard flag argument of String.prototype.replace in services/. r=rnewman
2015-03-01 09:51:33 +09:00
Gregory Szorc
85dc822c42
Bug 1132771 - Define some bug components; r=glandium
...
This patch defines bug components for code that I have historically
touched.
2015-02-26 11:43:45 -08:00
Mark Hammond
00efdeb6fb
Bug 1131410 followup - addressing review comments I missed in part1, r=adw/rnewman
2015-02-26 18:48:11 +11:00
Mark Hammond
818d55afbc
Bug 1131410 - Extract sync's log management so it can be reused by the reading-list back-end. r=adw
2015-02-17 22:06:00 +01:00
Carsten "Tomcat" Book
61e1ea70cd
Backed out changeset cd1f981b5e58 (bug 1131410) for XPC Bustage
2015-02-25 10:41:23 +01:00
Mark Hammond
ea2bdd9221
Bug 1131410 - Extract sync's log management so it can be reused by the reading-list back-end. r=adw
2015-02-25 18:54:59 +11:00
Chris Peterson
f8f65a77a7
Bug 1133284 - Remove nonstandard expression closures from services/sync. r=rnewman
2015-01-24 23:50:01 -08:00
Brian O'Keefe
eddceb3a00
Bug 870366 - Part 2: Move PREF_JS_EXPORTS to moz.build (easy moves). r=gps
2015-01-20 13:07:03 -05:00
Christoph Kerschbaumer
5b8fcccd7c
Bug 1087741: Make JS callers of ios.newChannel call ios.newChannel2 in services/ (r=rnewman,hskupin)
2014-10-24 15:22:14 -07:00
Mark Hammond
55e567417d
Bug 1121325 - improve sync logging with FxA. r=rnewman/ckarlof
2015-01-28 10:11:08 +11:00
Mark Hammond
fddb751e53
Bug 1121329 - fixes to promise handling in FxA and Hawk. r=ckarlof
2015-01-28 10:11:08 +11:00
Richard Newman
30a69d9eea
Bug 951480 - Disable test_tokenserverclient on Android. a=test-only
2015-01-24 21:38:44 -08:00
Mark Banner
6068121b2a
Bug 1099085 - HawkClient, HawkRequest and RESTRequest should support PATCH requests. r=ckarlof
2014-11-17 22:12:26 +00:00
Mike de Boer
705810d059
Bug 1089547: simplify LoopRooms implementation, add support for events. r=Standard8
2014-10-29 14:28:42 +01:00
Georg Fritzsche
ab9e7f8f27
Bug 1064333 - Migrate the FHR client id to the datareporting service. r=gps
2014-10-17 17:24:04 +02:00
Carsten "Tomcat" Book
71a4c111cd
Backed out changeset 5513b60463b8 (bug 1064333) for XPCshell test failures on a CLOSED TREE
2014-10-21 14:38:40 +02:00
Georg Fritzsche
8c752edd20
Bug 1064333 - Migrate the FHR client id to the datareporting service. r=gps
2014-10-15 17:34:53 +02:00
Wes Kocher
0bc6f1b8fb
Backed out 4 changesets (bug 1064333) for XPCShell bustage
...
Backed out changeset 378314f2892c (bug 1064333)
Backed out changeset ccb8a2ac9746 (bug 1064333)
Backed out changeset 3466ed3b9b61 (bug 1064333)
Backed out changeset 553c113c8f4e (bug 1064333)
2014-10-16 13:37:37 -07:00
Georg Fritzsche
320adb5782
Bug 1064333 - Migrate the FHR client id to the datareporting service. r=gps
2014-10-16 20:11:03 +02:00
Carsten "Tomcat" Book
2116ef6f77
Backed out changeset 735f5c30d397 (bug 1064333) for XPC Bustage on a CLOSED TREE
...
--HG--
extra : amend_source : 8b12237f285b03acfe6e18cccc9f8480c6d385c2
2014-10-16 15:03:13 +02:00
Georg Fritzsche
994bf34704
Bug 1064333 - Migrate the FHR client id to the datareporting service. r=gps
2014-10-15 17:34:53 +02:00
Andrew Halberstadt
2da4ee197d
Bug 1066735 - Remove root b2g and android specific xpcshell manifests, r=chmanchester
2014-10-07 18:18:28 -04:00
Ryan VanderMeulen
1fe0a415bd
Backed out changesets b08e57dbef4e and 1049cfbf3426 (bug 947044) for various regressions.
2014-09-25 14:32:43 -04:00
Nick Fitzgerald
b4caf18aad
Bug 947044 - Part 2: Fix tests that check ReferenceError's message. r=gavin
2014-09-22 16:13:00 +02:00
Shu-yu Guo
320f4e1440
Bug 1001090 - Part 5: Fix errors in tests throughout the tree. (r=robcee,gavin)
2014-09-15 16:30:47 -07:00
Florian Quèze
7065d9b196
Bug 838458 - Fix 'rest.js - setting a property that has only a getter' warnings, r=rnewman.
2014-08-27 16:52:21 +02:00
Gregory Szorc
9b928cab7a
Bug 1055102 - Properly handle Unicode in Bagheera payloads; r=bsmedberg
...
It was observed that FHR was sending invalid JSON payloads to the
server. Specifically, JSON payloads contained invalid Unicode strings.
Investigation revealed that the culprint was CommonUtils.convertString()
silently swallowing high bytes. When the Bagheera client went to gzip
the JSON payload, the input buffer into gzip was missing high bytes.
This patch changes the bagheera client to UTF-8 encode strings before
gzip, thus ensuring all data is preserved. A corresponding change was
also added to the mock bagheera server implementation.
Alternatively, we could have changed CommonUtils.convertString() to
be high byte aware. However, many consumers rely on this function.
This patch is written with the intent of being uplifted and the change
performed is targeted at the specific problem.
Tests for Unicode preserving behavior have been added to both the
generic Bagheera client and to FHR. The latter test is arguably
not necessary, but peace of mind is a good thing, especially with
FHR.
See also bug 915850.
--HG--
extra : rebase_source : 4efddea7767c2e5f8cf19df247c3aba07c40eec6
extra : amend_source : ae3b6d89efa54fc9ed1794404476622946ad4b22
2014-08-19 09:12:12 -07:00
Nathan Froyd
ae562efb3f
Bug 1045617 followup - remove dummy mach command DONTBUILD; r=me
2014-08-06 12:28:37 -04:00
Nathan Froyd
072b3b906e
Bug 1045617 - move services's run_server.py Makefile rules into mach; r=gps
2014-07-30 15:44:13 -04:00
Nathan Froyd
08483fe6ee
Bug 1054476 - move INSTALL_TARGETS in services/ Makefiles to EXTRA_{PP_,}JS_MODULES; r=gps
2014-07-28 15:24:01 -04:00
Nathan Froyd
be58364116
Bug 1054476 - use PREF_JS_EXPORTS in services/ Makefiles; r=gps
2014-07-28 14:42:26 -04:00
Birunthan Mohanathas
e3009122fa
Bug 1048989 - Fix 'useless expression' warnings with MERGED_COMPONENT. r=gps
2014-08-07 21:52:05 -07:00
Steve Workman
20fec6e951
Bug 982816 - Remove extra calls to nextTest in test_hawkrequest.js r=ckarlof
2014-07-08 11:44:03 -07:00
Gregory Szorc
54c4d3b9ae
Bug 1033836 - Convert TESTING_JS_MODULES to moz.build; r=glandium
...
--HG--
extra : rebase_source : 1cd9e402c507260358af7a93c6fb2fc91c24994b
2014-07-02 16:43:41 -07:00
Gregory Szorc
cd3dbd7747
Bug 1033836 - Rename services-common to services/common; rs=rnewman
...
The upcoming build system patches don't support hypthens in path names.
Changing this for that reason is kind of silly, but it's the easiest
way. Besides, nothing else uses hyphens in directory names.
--HG--
extra : rebase_source : 42dda2b1f16a3c0bfe17397a70092362e400530f
2014-07-02 16:49:36 -07:00
Fernando Jiménez
7746ac6a1d
Bug 1027595 - TypeError: deriveHawkCredentials is not a function after bug 1020859. r=jedp
2014-06-21 07:43:39 +01:00
Mark Banner
6eb2c9598f
Bug 1020859 Part 1 - Make HawkClient return all the response details for a request, and make deriveHawkCredentials common code. r=jparsons
2014-06-18 10:42:15 +01:00
Mark Hammond
98316383b5
Bug 1024812 - unhandled exceptions in hawkclient no longer cause sync to hang. r=rnewman
2014-06-14 11:47:34 +10:00
Mark Hammond
3436d9c264
Bug 1015794 - use Object.create to create services timer objects. r=rnewman
2014-06-12 10:06:47 +10:00
Fernando Jiménez
f896544f4d
Bug 988469 - MSISDN verification API for privileged apps. Part 2: Make FxA specific stuff generic. r=markh
2014-06-07 19:30:18 +02:00
Mark Hammond
e464cf75f7
Bug 1010531 - Prevent async callback from throwing when a callback is made with an error. r=rnewman
2014-05-28 10:00:00 +10:00
Mark Hammond
250befa6d2
Bug 1015794 - avoid mutating the prototype of a timer object to prevent warnings. r=rnewman
2014-05-28 09:54:52 +10:00
Mark Hammond
8213b883dc
Bug 1006943 - non-sensitive FxA log info is included with sync logs. r=rnewman
2014-05-15 12:00:59 +10:00
Ehsan Akhgari
4c3acbbb4f
Bug 1005710 - Avoid preprocessing the services JS exports files needlessly; r=mshal
2014-05-05 21:28:55 -04:00
Irving Reid
8797f73681
Bug 966674: #2 Move exceptionStr() and stackTrace() from utils.js to Log.jsm; r=gps,rnewman
2014-04-29 10:09:27 -04:00
Mark Hammond
bc93fc2b9d
Bug 990834 (part 2) - Add support/tweak retry and backoff header support to hawk and tokenserverclient. r=rnewman
2014-04-10 12:08:19 +10:00
Marco Castelluccio
8a53b11c8e
Bug 993173 - Use encoding option in readJSON. r=Yoric
2014-04-08 04:47:00 +02:00