Commit Graph

2308 Commits

Author SHA1 Message Date
Gaia Pushbot
52c24c6fdf Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/340f6676fc5d
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Merge pull request #11552 from rwaldron/905614

Bug 905614 - [Unit tests] Failed: ClockView updateAnalogClock with type error. r=kgrandon

========

https://hg.mozilla.org/integration/gaia-central/rev/2d40de5fcfba
Author: Rick Waldron <waldron.rick@gmail.com>
Desc: Bug 905614 - [Unit tests] Failed: ClockView updateAnalogClock with type error.

https://bugzilla.mozilla.org/show_bug.cgi?id=905614

- Cannot repro test "failures"
- Added if statement to guard against [[Get]] property of undefined objects

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2013-08-15 13:15:29 -07:00
Gaia Pushbot
e8b613cec8 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/9caa3c130cdf
Author: Francisco Jordano <arcturus@ardeenelinfierno.com>
Desc: Merge pull request #11482 from fcampo/FacebookAddress-830020

	Bug 838820 - [B2G][Contacts]Address info from Facebook is showing hometown but not current living place

========

https://hg.mozilla.org/integration/gaia-central/rev/6cf0a6ac2b67
Author: Fernando Campo <fernando.campo@o2.com>
Desc: Bug 838820 - [B2G][Contacts]Address info from Facebook is showing hometown but not current living place
2013-08-15 10:50:27 -07:00
Yuan Xulei
f3164d88c9 Bug 904628 - Ensure focused element is not null when calling FormAssistant.updateSelection(). r=fabrice 2013-08-15 12:59:28 -04:00
Gaia Pushbot
f5c81d28cb Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/043bc31b44bb
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Merge pull request #11355 from KevinGrandon/bug_901587_remove_mouse_events_fm

Bug 901587 - Remove mouse_event_shim from fm radio r=timdream

========

https://hg.mozilla.org/integration/gaia-central/rev/297825c82980
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Bug 901587 - Remove mouse_event_shim from fm radio
2013-08-15 07:25:23 -07:00
Ed Morley
5ef0865f66 Merge mozilla-central and b2g-inbound 2013-08-15 13:37:27 +01:00
Ed Morley
342ecd9690 Merge latest green b2g-inbound changeset and mozilla-central 2013-08-15 11:58:48 +01:00
Ryan VanderMeulen
c292f445e7 Merge m-c to inbound. 2013-08-14 17:11:30 -04:00
Gaia Pushbot
20b2df4597 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/58c6fafc2ed4
Author: Olav Nymoen <olav@comoyo.com>
Desc: Merge pull request #11525 from comoyo/allow_open_remote

Bug 819882: Allow all apps to open OOP. From & to , string separator. r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/9ddf51e471de
Author: Olav Nymoen <olav@comoyo.com>
Desc: Bug 819882: Allow all apps to open OOP. From & to , string separator. r=alive
2013-08-14 12:05:23 -07:00
Yuan Xulei
ef579c676c Bug 904628 - Make the code dealing with contentEditable in forms.js more robust. r=fabrice 2013-08-14 13:54:36 -04:00
Yuan Xulei
ffbf20220b Bug 902168 - Ignore editable document in forms.js. r=fabrice 2013-08-14 13:53:53 -04:00
Gaia Pushbot
f232d1f01d Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/4e8dc46f1c1e
Author: James Lal <james@lightsofapollo.com>
Desc: Merge pull request #11469 from KevinGrandon/bug_903652_calendar_swiping

Bug 903652 - Add delayed transition visibility for tooltip

========

https://hg.mozilla.org/integration/gaia-central/rev/7c19afa8af95
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Bug 903652 - Add delayed transition visibility for tooltip
2013-08-14 10:45:23 -07:00
Gaia Pushbot
ee9383454e Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/de813755d4a4
Author: Rick Waldron <waldron.rick@gmail.com>
Desc: Bug 904220 - [Clock] Unit tests should not create actual alarm records r=ian-liu

commit af2a65ee86cc861a5b76dd2aca05bb1c6dfcd95d
Author: Mike Pennisi <mike@mikepennisi.com>
Date:   Tue Aug 13 15:32:54 2013 -0400

    Fix bug in unit tests

    Loading the application HTML into the unit test environment breaks some
    assumptions made by the tests. Notably: elements appended to the DOM
    which have identical DOM IDs will no longer be returned by
    `document.getElementById`.

    A slightly cleaner approach might involve re-loading the `body` HTML
    before *every* test and referencing elements from the global `ClockView`
    object directly. This has two drawbacks:

    1. It will tend to slow down the test suite (especially as more tests
       are written)
    2. It will require further re-factoring of the application logic (which
       caches references to its DOM nodes when they are first referenced).

    For these reasons, we might prefer the simplistic fix outlined by this
    patch.

    Part of this fix requires consistently loading the `loadBodyHTML`
    utility function in `setup.js` (so that it is loaded when the test-agent
    runs the entire test suite *and* when it runs individual test files).

commit 0ca745a11747ec7c27f333ae0bf675c7da883c6c
Author: Rick Waldron <waldron.rick@gmail.com>
Date:   Mon Aug 12 18:46:31 2013 -0400

    Bug 904220 - [Clock] Unit tests should not create actual alarm records

    https://bugzilla.mozilla.org/show_bug.cgi?id=904220

    - Reorders require files alphabetically
    - Adds Mocks:
        - mock_alarm_list.js
        - mock_alarm_manager.js
        - mock_navigator_mozl10n.js
    - Update tests to use actual markup as fixture
    - Update tests to use the same mocha API as other tests
    - Use mocks instead of creating real alarm records
    - Use sinon sandbox features

    Signed-off-by: Rick Waldron <waldron.rick@gmail.com>

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2013-08-14 10:35:23 -07:00
Gaia Pushbot
dfdc4e7393 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/949d89b5cf56
Author: Dale  Harvey <dale@arandomurl.com>
Desc: Merge pull request #11379 from benfrancis/840210

Bug 840210 - search engine must be customizable at build time. r=daleharvey

========

https://hg.mozilla.org/integration/gaia-central/rev/945123957fe8
Author: Ben Francis <ben@tola.me.uk>
Desc: Bug 840210 - search engine must be customizable at build time
2013-08-14 07:21:26 -07:00
Gaia Pushbot
e8bb595b22 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/aec8d43bd45b
Author: Sam Joch <samuel@guiora.com>
Desc: Merge pull request #11513 from pivanov/bug-904017

Bug 904017 - [HD]Add New Icon is blurry compared to other icons r=samjoch

========

https://hg.mozilla.org/integration/gaia-central/rev/b16f378c35c0
Author: Pavel Ivanov <pivanov@mozilla.com>
Desc: Bug 904017 - [HD]Add New Icon is blurry compared to other icons
2013-08-14 04:25:24 -07:00
Gaia Pushbot
7461ab8db6 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/9d45522690f3
Author: Alive.Kuo <alegnadise@gmail.com>
Desc: Merge pull request #11506 from alivedise/bugzilla/904349/move-app-error-out-of-app-window

Bug 904349 - Move app error out of app window. r=timdream

========

https://hg.mozilla.org/integration/gaia-central/rev/2c4c70b50454
Author: Alive Kuo <alegnadise@gmail.com>
Desc: Bug 904349 - Move app error out of app window.
2013-08-14 04:00:24 -07:00
Gaia Pushbot
dbf7067de1 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/cb867d2d85ee
Author: Arthur Chen <crh0716@gmail.com>
Desc: Merge pull request #11521 from crh0716/905045

Bug 905045 - Remove 'bluetooth-authorize' system message from the manifest r=evelyn

========

https://hg.mozilla.org/integration/gaia-central/rev/95c938360522
Author: crh0716 <crh0716@gmail.com>
Desc: Bug 905045 - Remove 'bluetooth-authorize' system message from the manifest
2013-08-14 03:40:24 -07:00
Gaia Pushbot
01b251a0ca Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/5d583ad896ca
Author: Alive.Kuo <alegnadise@gmail.com>
Desc: Merge pull request #11519 from alivedise/bugzilla/905006/remove-oo

Bug 905006 - Remove orientaion observer reference, r=timdream

========

https://hg.mozilla.org/integration/gaia-central/rev/e266fed28066
Author: Alive Kuo <alegnadise@gmail.com>
Desc: Bug 905006 - Remove orientaion observer reference
2013-08-14 00:15:23 -07:00
Kan-Ru Chen (陳侃如)
88193c2ea2 Bug 899073 - Move MozInputMethod, MozInputMethodManager and MozInputContext to WebIDL and uses Promises. r=yxl,khuey,nsm
--HG--
extra : rebase_source : 2ab67cebc7718e94f42cb493a76eec25df13b9cf
2013-08-09 17:41:48 +08:00
Gaia Pushbot
0ba188b263 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/47daabb93939
Author: Alive.Kuo <alegnadise@gmail.com>
Desc: Merge pull request #11516 from leob2g/Bug_901801_897874_Followup_Notification_horizontally_scrollable_with_many_CB_messages

Bug 901801 - 897874 Followup: [Notification] horizontally scrollable with many CB messages, r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/8bc21763cb22
Author: hanj.kim <hanj.kim@lge.com>
Desc: Bug 901801 - 897874 Followup: [Notification] horizontally scrollable with many CB messages
2013-08-13 18:30:24 -07:00
Nick Thomas
b3020ca031 Bug 899000, update binary bits for helix builds, r=aki a=npotb
--HG--
extra : transplant_source : %5C%2A%E0%09q%C5%8A%C2%05%E0%1Dk%8Dr%AClK%05%05w
2013-08-14 10:13:43 +12:00
Gaia Pushbot
a05e86c9c1 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/e479566bf0ea
Author: Gareth Aye <gaye@mozilla.com>
Desc: Merge pull request #11515 from gaye/bug-904830

Bug 904830 - Depend on marionette js helper in gaia a=test-only

========

https://hg.mozilla.org/integration/gaia-central/rev/23302197b3f4
Author: gaye <gaye@mozilla.com>
Desc: Bug 904830 - Depend on marionette js helper in gaia a=test-only
2013-08-13 14:55:24 -07:00
Ryan VanderMeulen
a9619b4c64 Merge m-c to b2g-inbound. 2013-08-13 15:38:58 -04:00
Gaia Pushbot
8b639ed04f Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/2b195ef19ed8
Author: Rick Waldron <waldron.rick@gmail.com>
Desc: Bug 904640 - [Messages] Keyboard should always close when pressing Send r=julienw

https://bugzilla.mozilla.org/show_bug.cgi?id=904640

- Remove focus from all elements before panel change by calling document.activeElement.blur() in MessageManager.onHashChange
- Updates Mocks:
    - MockThreadListUI to contain all properties (data and method)
    - MockThreadUI to contain all properties (data and method)
- Tests MessageManager.onHashChange:
    - Remove any focus left on specific elements
        - Assert on spy intel for document.activeElement.blur
    - Exit edit mode (Thread or Message)
        - Assert on spy intel for:
            - ThreadUI.cancelEdit
            - ThreadListUI.cancelEdit
    - Reset Group Participants View
        - Assert on spy intel for ThreadUI.groupView.reset

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2013-08-13 11:45:25 -07:00
Gaia Pushbot
b7cf807f8a Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/8d72439fdc56
Author: Rick Waldron <waldron.rick@gmail.com>
Desc: Bug 903947 - [Messages] The last recipient is copied everytime when selecting recipeint for removing r=julienw

https://bugzilla.mozilla.org/show_bug.cgi?id=903947

- Clicks on accepted recipients...
    - Should close the keyboard, if it's a known contact recipient
    - while manually entering a recipient:
        - Two rendered recipients
        - A placeholder for the cursor
    -  with only accepted recipients:
        - no changes, no assimilated recipients
    - with no placeholder at end of list:
        - no changes, no assimilated recipients
    - Ensure MockDialog triggers are assigned an initial called value (false)

This patch also fixes https://bugzilla.mozilla.org/show_bug.cgi?id=903943

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2013-08-13 10:50:26 -07:00
Aki Sasaki
763f871b8a bug 903661 - helix configs. r=catlee 2013-08-13 10:46:54 -07:00
Gaia Pushbot
b7ae5d7e89 Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/565d16505778
Author: Julien Wajsberg <felash@gmail.com>
Desc: Bug 897437 - SMS message timestamps do not display the expected strings. r=gnarf

Rewrote the message container handling function. Now with lots of unit tests
covering lots of edge cases.

This patch also does a very little bit of safe refactoring, still with unit
tests.
2013-08-13 10:35:24 -07:00
Gaia Pushbot
fc5f3b7ecb Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/050d7d00d95b
Author: Etienne Segonzac <etienne@segonzac.info>
Desc: Merge pull request #11485 from etiennesegonzac/bug-904076-call-log-db-create

Bug 904076 - fixing a bug in the call log db creation path. r=rik

========

https://hg.mozilla.org/integration/gaia-central/rev/a9bd710578e8
Author: Etienne Segonzac <etienne@segonzac.info>
Desc: Bug 904076 - fixing a bug in the call log db creation path.
r=rik
2013-08-13 10:15:24 -07:00
Gaia Pushbot
e9455462c1 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/aab0a2027f9e
Author: Gregor Wagner <anygregor@gmail.com>
Desc: Merge pull request #11274 from JonHylands/jhylands-899123-add-contact-pics-master

Bug 899123 - add pictures to contact reference workloads

========

https://hg.mozilla.org/integration/gaia-central/rev/49a58a560acb
Author: Jon Hylands <jhylands@mozilla.com>
Desc: Bug 899123 - add pictures to contact reference workloads
2013-08-13 10:00:48 -07:00
Gaia Pushbot
29ecb40ad5 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/494467b3c443
Author: Etienne Segonzac <etienne@segonzac.info>
Desc: Merge pull request #11434 from etiennesegonzac/oncall-split-and-test

Bug 902983 - Split oncall.js and make it testable r=Rik

========

https://hg.mozilla.org/integration/gaia-central/rev/c5e1f2148a89
Author: Etienne Segonzac <etienne@segonzac.info>
Desc: Bug 902983 - Split oncall.js and make it testable
r=Rik
2013-08-13 10:00:26 -07:00
Kyle Huey
ca3e0665dd Bug 890304 - Remove the indexeddb.feature.enabled pref. r=sicking 2013-08-13 08:49:11 -04:00
Gaia Pushbot
f2d4d79acd Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/a6b81f7d4b84
Author: Rudy Lu <left.lu@gmail.com>
Desc: Merge pull request #11480 from leob2g/Bug_904009-keyboard_layout_changes_to_lowercase_even_when_the_capslock__ON

Bug_904009-[keyboard]The keyboard layout changes to lowercase even when the CapsLock is ON. r=rudylu

========

https://hg.mozilla.org/integration/gaia-central/rev/f966614bc6db
Author: sarath27.vs <sarath27.vs@lge.com>
Desc: Bug_904009-[keyboard]The keyboard layout changes to lowercase even when the CapsLock is ON
2013-08-12 20:00:23 -07:00
Gaia Pushbot
e8b31b57ea Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/3a5bfe8c6e07
Author: Mihai Cîrlănaru <mihai@cirlanaru.com>
Desc: Merge pull request #11497 from dylano/master

Bug 904115 - Add sr-Latn to languages_dev.json, r=@mcirlanaru

========

https://hg.mozilla.org/integration/gaia-central/rev/31b7f93dddf4
Author: dylano <doliver@mozilla.com>
Desc: Bug 904115 - Add sr-Latn to languages_dev.json
2013-08-12 15:45:24 -07:00
Gaia Pushbot
fb2712ef47 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/c2486bc0cb3f
Author: Mihai Cîrlănaru <mihai@cirlanaru.com>
Desc: Merge pull request #11239 from mcirlanaru/bug_882909

Bug 882909 - [FTU] Don't overlap progress bar with WiFi hotspot entries. r=@fcampo

========

https://hg.mozilla.org/integration/gaia-central/rev/e166edb3115d
Author: Mihai Cirlanaru <mihai@cirlanaru.com>
Desc: Bug 882909 - [FTU] Don't overlap progress bar with WiFi hotspot entries. r=fcampo
2013-08-12 15:20:24 -07:00
Gaia Pushbot
bf2beed90c Bumping gaia.json for 3 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/0d6b56ffbc53
Author: Gareth Aye <gaye@mozilla.com>
Desc: Merge pull request #11441 from gaye/bug-894738

Bug 894738 - Redirect appropriately from ViewEvent after tapping system notification for event alarm pulls us into calendar r=kgrandon

========

https://hg.mozilla.org/integration/gaia-central/rev/7ea6f6a44d38
Author: gaye <gaye@mozilla.com>
Desc: Clean up patch and add unit tests

========

https://hg.mozilla.org/integration/gaia-central/rev/c8e56697db00
Author: gaye <gaye@mozilla.com>
Desc: Bug 894738 - Redirect appropriately from ViewEvent after tapping system notification for event alarm pulls us into calendar
2013-08-12 14:35:26 -07:00
Yuan Xulei
e3c81538ae Bug 904224 - Don't handle key events in forms.js if these is no focused input element. r=fabrice 2013-08-13 08:40:54 -04:00
Gaia Pushbot
7ee153830e Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/4013a01e6d32
Author: Olav Nymoen <olav@comoyo.com>
Desc: Merge pull request #11481 from comoyo/allow_open_remote

Bug 819882: Allow all apps to open OOP windows. r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/cd64075d3f27
Author: Olav Nymoen <olav@comoyo.com>
Desc: Bug 819882: Allow all apps to open OOP windows. r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/24e7f09e1058
Author: Sam Joch <samuel@guiora.com>
Desc: Merge pull request #11494 from pivanov/bug-904013

Bug 904013 - [Contacts] Replace "+" Icon in contacts for 1x, 1.5x and 2x r=samjoch

========

https://hg.mozilla.org/integration/gaia-central/rev/b12cc9c6d5a7
Author: Pavel Ivanov <pivanov@mozilla.com>
Desc: Bug 904013 - [Contacts] Replace "+" Icon in contacts for 1x, 1.5x and 2x
2013-08-13 05:20:25 -07:00
Gaia Pushbot
88d8de35b3 Bumping gaia.json for 3 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/260ceda6d54c
Author: Sam Joch <samuel@guiora.com>
Desc: Merge pull request #11493 from pivanov/bug-903491

Bug 903491 - [HD][Browser] Refresh icon appears to be in SD r=samjoch

========

https://hg.mozilla.org/integration/gaia-central/rev/4ce7490a7042
Author: Pavel Ivanov <pivanov@mozilla.com>
Desc: Bug 903491 - [HD][Browser] Refresh icon appears to be in SD

========

https://hg.mozilla.org/integration/gaia-central/rev/9bcc87a8a908
Author: Amir Nissim <amirn@everything.me>
Desc: Bug 898639 - [EVERYTHING.ME] User is unable to add bookmarks to Homescreen r=vingtetun

Added missing 'var' declarations, one of which was setting window.name from 'main' to other values
2013-08-13 05:10:23 -07:00
Gaia Pushbot
22b66ad3d7 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/f7a77191a8b5
Author: Salvador de la Puente González <salva@unoyunodiez.com>
Desc: Merge pull request #11343 from arcturus/bug-901472

Bug 901472 - [Cost Control] Modify the parameters for checking the credit in Colombia
r=salva

========

https://hg.mozilla.org/integration/gaia-central/rev/23386613230c
Author: Francisco Jordano <arcturus@ardeenelinfierno.com>
Desc: Bug 901472 - [Cost Control] Modify the parameters for checking the credit in Colombia
2013-08-13 03:51:34 -07:00
Gaia Pushbot
cfd1b0c479 Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/f53a55fb7dba
Author: Arthur Chen <crh0716@gmail.com>
Desc: Merge pull request #11423 from crh0716/900874

Bug 900874 - Register to DOM events instead of system messages r=evelyn

========

https://hg.mozilla.org/integration/gaia-central/rev/c70b822c886e
Author: crh0716 <crh0716@gmail.com>
Desc: Bug 900874 - Register to DOM events instead of system messages

========

https://hg.mozilla.org/integration/gaia-central/rev/e7560439092a
Author: Arthur Chen <crh0716@gmail.com>
Desc: Merge pull request #11449 from crh0716/903181

Bug 903181 - Add a step value r=evelyn

========

https://hg.mozilla.org/integration/gaia-central/rev/811120d1f1aa
Author: crh0716 <crh0716@gmail.com>
Desc: Bug 903181 - Add a step value
2013-08-13 02:25:27 -07:00
Gaia Pushbot
0fed958701 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/93333daac801
Author: Dominic Kuo <dkuo@mozilla.com>
Desc: Merge pull request #11474 from dominickuo/bug-894203

Bug 894203 - Update the @1.5x assets for music app, r=rexboy7

========

https://hg.mozilla.org/integration/gaia-central/rev/a352b9a46b36
Author: Dominic Kuo <dkuo@mozilla.com>
Desc: Bug 894203 - Update the @1.5x assets for music app
2013-08-13 02:10:25 -07:00
Gaia Pushbot
9716d2c5ea Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/4194b54f00c2
Author: Rex KM Lee <rexboy@mozilla.com>
Desc: Merge pull request #11503 from snowmantw/issue899002

Bug 899002 - Use one button dialog for CE audio warning r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/ee7e6ec19a07
Author: Greg Weng (snowmantw) <gweng@mozilla.com>
Desc: Bug 899002 - Use one button dialog for CE audio warning
2013-08-14 22:50:30 -07:00
Gaia Pushbot
faa31cef6c Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/3ff317d48348
Author: Rick Waldron <waldron.rick@gmail.com>
Desc: Bug 882751 - Tapping in the center of the clock doesn't work as expected r=ianliu

https://bugzilla.mozilla.org/show_bug.cgi?id=882751

- Reorder digital-clock HTML elements to match analog-clock layout
- Creates explicit object for all timeouts
- Adds `container` to list of lazy init'ed elements
- Removes the unused `this.digitalClockBackground` element
- Consolidates init and initClockface, removes initClockface
- Ensures handleEvent is called with bound handlers
- removes unnecessary nested setTimeout function calls
- Consolidates logic from showAnalogClock, showDigitalClock and show
- Removes showAnalogClock, showDigitalClock
- Defines single pattern for clock face display
- Includes tests for support of Clock.show() and ClockView.handleEvent->show
- Adds mock_alarm_list, mock_asyncstorage
- Ensure that a clock face default always shows, no matter what.
- Request stored clock face mode as early as possible
- Ensure that clock face mode is updated if default doesn't match stored.
- Simplify the clock face rendering tests

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2013-08-14 20:55:23 -07:00
Gaia Pushbot
c216b70b3c Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/d60ff6e69bf8
Author: Alive.Kuo <alegnadise@gmail.com>
Desc: Merge pull request #11530 from alivedise/bugzilla_904534_master_v2

Bug 904534 - Use BrowserFrame to gen mozbrowser iframe in Window, r=timdream

========

https://hg.mozilla.org/integration/gaia-central/rev/e152d2ba1f0b
Author: Alive Kuo <alegnadise@gmail.com>
Desc: Bug 904534 - Use BrowserFrame to generate mozbrowser iframe in Window
Manager.
2013-08-14 20:21:23 -07:00
Gaia Pushbot
138ccb24b6 Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/f71d436bdcdd
Author: gasolin <gasolin@gmail.com>
Desc: Merge pull request #11371 from LeeChSien/Bug_901862

Bug 901862 - [Test][System] Unit test for Utility Tray, r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/ab8edeaba303
Author: Jason Lee <chsien@gmail.com>
Desc: Bug 901862 - [Test][System] Unit test for Utility Tray

========

https://hg.mozilla.org/integration/gaia-central/rev/d644f1f71aea
Author: John Hu <johu@mozilla.com>
Desc: Merge pull request #11280 from huchengtw-moz/camera/Bug_897356_2_camera_cannot_work_when_plug_out_usb

Bug 897356 - [Buri][Contacts][Camera]The camera can't work when plug out...

========

https://hg.mozilla.org/integration/gaia-central/rev/bd7b5f02bbb9
Author: John Hu <johu@mozilla.com>
Desc: Bug 897356 - [Buri][Contacts][Camera]The camera can't work when plug out USB
2013-08-14 19:05:23 -07:00
Gaia Pushbot
2f104f9ac5 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/fd0d9515e6af
Author: James Lal <james@lightsofapollo.com>
Desc: Merge pull request #11539 from lightsofapollo/bug-901850-product

Bug 901850 - marionette-js-runner symlink app contents

========

https://hg.mozilla.org/integration/gaia-central/rev/270d0eb11c7b
Author: James Lal <james@lightsofapollo.com>
Desc: Bug 901850 - marionette-js-runner symlink app contents
2013-08-14 18:40:23 -07:00
Gaia Pushbot
8f37451fdb Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/72615b79efd6
Author: James Lal <james@lightsofapollo.com>
Desc: Merge pull request #10981 from ganesh7/bug_819628

Bug 819628

========

https://hg.mozilla.org/integration/gaia-central/rev/ab0e5cfec4bf
Author: gghosh <ganeshghosh@gmail.com>
Desc: BUG 819628 - incremental commit changes into a single commit.
2013-08-14 16:00:24 -07:00
Gaia Pushbot
3422018552 Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/f61a98729da9
Author: John Ford <john@johnford.info>
Desc: bug 851361 -- Revert "Merge pull request #8726 from leob2g/Bug_852361_Device_is_shut_down_when_battery_level_become_two_percents"

This reverts commit a7f1e921c67d5d3d4e0afaa06aca79320784e806, reversing
changes made to bd398458e986740d0a774d44ba0344ff3d6958cb.
2013-08-14 13:55:26 -07:00
Gaia Pushbot
be4dcfced2 Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/0c1f21738fac
Author: Mike Pennisi <mike@mikepennisi.com>
Desc: Bug 884890 - [MMS][Multirecipient] Use CSS and touch events for handling the recipients container pull&push effects r=julienw
2013-08-14 12:25:28 -07:00
Gaia Pushbot
f75331fef6 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/f2c1d7617f86
Author: Rex KM Lee <rexboy@mozilla.com>
Desc: Merge pull request #11456 from rexboy7/fix-bug894815

bug 894815 - [lockscreen]permission screen and attention screen height f...

========

https://hg.mozilla.org/integration/gaia-central/rev/29b9507be23b
Author: Rex Lee <rexboy@mozilla.com>
Desc: bug 894815 - [lockscreen]permission screen and attention screen height fix on lockscreen camera
2013-08-13 00:10:24 -07:00
Gaia Pushbot
685d8d5860 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/d7ff1015ccee
Author: Rex KM Lee <rexboy@mozilla.com>
Desc: Merge pull request #11270 from rexboy7/fix-bug899511

Bug 899501 - [Dialer] Layout adjusting for HD support on suggestion over...

========

https://hg.mozilla.org/integration/gaia-central/rev/fc83b598b958
Author: Rex Lee <rexboy@mozilla.com>
Desc: Bug 899501 - [Dialer] Layout adjusting for HD support on suggestion overlay
2013-08-12 23:35:23 -07:00
Fabrice Desré
b40ae1e5cc Bug 904224 - "System JS : ERROR chrome://browser/content/forms.js:827 TypeError: element is null" in green B2G mochitest-2,3 runs r=yxl 2013-08-12 21:02:11 -07:00
Michael Henretty
e9cb83c3ee Bug 883923 - Provide a Fuzzy Matcher API for phone numbers. r=fabrice 2013-07-31 21:04:59 -07:00
Gaia Pushbot
0e7faad570 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/7cdb69546a02
Author: Pavel Ivanov <pivanov@mozilla.com>
Desc: Merge pull request #11462 from pivanov/bug-903438

Bug 903438 - [Settings][HD] Text spacing incorrect in "Call Settings" and "Celluar & Data"

========

https://hg.mozilla.org/integration/gaia-central/rev/fa7036c4d030
Author: Pavel Ivanov <pivanov@mozilla.com>
Desc: Bug 903438 - [Settings][HD] Text spacing incorrect in "Call Settings" and "Celluar & Data"
2013-08-12 12:55:24 -07:00
Ryan VanderMeulen
f7b0f7438b Merge m-c to b2g-inbound. 2013-08-12 15:36:24 -04:00
Gaia Pushbot
ea1670c2d8 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/be7b9a0cc966
Author: Ran Ben Aharon <ran@everything.me>
Desc: Merge pull request #11484 from EverythingMe/bugfix-analytics

Bug 904087 - Analytics not being reported [r=gregor]

========

https://hg.mozilla.org/integration/gaia-central/rev/c9c655519d38
Author: Ran Ben Aharon <ran@ranbena.com>
Desc: Bug 904087 - Analytics not being reported [r=gregor]
2013-08-12 12:20:23 -07:00
Gaia Pushbot
0b9880e22f Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/849abb6698a7
Author: Ran Ben Aharon <ran@everything.me>
Desc: Merge pull request #11489 from EverythingMe/bugfix-loadmore2

Bug 904085 - Fixed bug from previous related commit r=gregor

========

https://hg.mozilla.org/integration/gaia-central/rev/efd145a91578
Author: Ran Ben Aharon <ran@ranbena.com>
Desc: Bug 904085 - Fixed bug from previous related commit r=gregor
2013-08-12 12:10:23 -07:00
Ed Morley
9a32ee0533 Bug 901898 - Remove codesighs now that it's no longer run in automation; r=gps 2013-08-12 13:10:41 +01:00
Gaia Pushbot
cbf696412c Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/cc6b6bcc278e
Author: Rick Waldron <waldron.rick@gmail.com>
Desc: Bug 903260 fixes tests, a=test-only

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2013-08-10 13:10:23 -07:00
Gaia Pushbot
a0cb7e72a6 Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/5774008b1f63
Author: Rick Waldron <waldron.rick@gmail.com>
Desc: Bug 903260 - [SMS][MMS] SettingsURL value is never used in sms/js/notification.js: Ringtones BROKEN

https://bugzilla.mozilla.org/show_bug.cgi?id=903260

- Make the mock's set method behave enough like the real thing to write a correct test
- Assign the result of the call to set(…) to the actual local setting
- Tests
    - Ensure that the src property is as expected

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2013-08-10 12:45:23 -07:00
Gaia Pushbot
a393791c24 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/f3944d41b059
Author: David Flanagan <dflanagan@mozilla.com>
Desc: Merge pull request #11468 from es92/music2uxUpdate

Music2 UX update

========

https://hg.mozilla.org/integration/gaia-central/rev/41f714bd5ebd
Author: Evan Shapiro <evan.a.shapiro@gmail.com>
Desc: music2: ux redesign

Conflicts:
	test_apps/music2/style/css/style.css
2013-08-09 17:21:26 -07:00
Gaia Pushbot
b3f06f9319 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/6d539d255cad
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Merge pull request #11470 from hotzenklotz/903521_camera_in_FF

Bug 903521 - Camera not working in gaia when run in Firefox r=kgrandon

========

https://hg.mozilla.org/integration/gaia-central/rev/f2b2ca763a75
Author: Tom Herold <therold@mozilla.com>
Desc: Bug 903521 - Camera not working in gaia when run in Firefox
2013-08-09 16:50:24 -07:00
Gaia Pushbot
bb55815eb3 Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/0e3e30e489ff
Author: Rick Waldron <waldron.rick@gmail.com>
Desc: Bug 903137 - [SMS][MMS] Contextmenu prompt for email in message should display email address r=gnarf

- Make all prompts consistent
- Ensures that dataset.isContact strings are only used to derive a true isContact boolean
- Renames ThreadUI.activateContact to ThreadUI.prompt
    - The function no longer serves as only a "contact" prompt
    - May prompt any type of recipient (contact, unknown, email)
    - May prompt from header, group list or message content
- Renames ThreadUI.genPrompt to ThreadUI.prompContact
    - genPrompt is meaningless
    - The function is explicitly for creating a prompt with a known contact
    - Includes the contact info lookup
- Converts promptContact arguments to an object, instead of named parameters
- Update LinkActionHandler to delegate to promptContact, instead of doing it's own duplicated lookup
- Adds tests to ensure that a something is displayed when something is provided
    - Could be any of the following:
      - DOM UL
      - Email address
      - Phone Number
      - Name
- Updates LinkActionHandler tests to use the correct new function names

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2013-08-09 12:05:25 -07:00
Gaia Pushbot
ecc5f02ba6 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/30a28b592ed8
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Merge pull request #11353 from KevinGrandon/bug_901578_remove_mouse_shim_settings

Bug 901578 - Remove mouse_event_shim from settings r=kaze

========

https://hg.mozilla.org/integration/gaia-central/rev/86532663e60e
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Bug 901578 - Remove mouse_event_shim from settings
2013-08-09 11:45:23 -07:00
Jan Jongboom
d51e732ee3 Bug 902830 - Emit mozChromeEvent if input focus changes. r=yxl 2013-08-09 14:01:28 -04:00
Gaia Pushbot
3c55662c8a Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/a202d951a704
Author: James Lal <james@lightsofapollo.com>
Desc: Merge pull request #11464 from lightsofapollo/revert-11425

Revert "Merge pull request #11425 from comoyo/mozContacts2vcard"

========

https://hg.mozilla.org/integration/gaia-central/rev/94b6457ad206
Author: James Lal <james@lightsofapollo.com>
Desc: Revert "Merge pull request #11425 from comoyo/mozContacts2vcard"

This reverts commit 1b3b923534f606c69fce61136aa21849ee8bba6a, reversing
changes made to c354940fbe112bcf2d90e2a5654ad1824f3a2348.
2013-08-09 10:35:35 -07:00
Gaia Pushbot
c11fd53943 Bumping gaia.json for 3 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/ffe47e2d96de
Author: Vivien Nicolas <21@vingtetun.org>
Desc: Bug 903400 - Trim whitespaces for search in the e.me search bar. r=vingtetun,a=leo+

========

https://hg.mozilla.org/integration/gaia-central/rev/44c09c38ef4b
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Merge pull request #11448 from KevinGrandon/bug_902959_add_getApps_param

Bug 902959 - Add option to suppress apps which have hidden roles r=vingtetun

========

https://hg.mozilla.org/integration/gaia-central/rev/7bac1ccb3ef5
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Bug 902959 - Add option to suppress apps which have hidden roles
2013-08-09 10:25:30 -07:00
Gaia Pushbot
03e1b9fda7 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/b89cd693bf17
Author: James Lal <james@lightsofapollo.com>
Desc: Merge pull request #11444 from lightsofapollo/vbump-marionette

vbump marionette

========

https://hg.mozilla.org/integration/gaia-central/rev/dc3f9ab26dc7
Author: James Lal <james@lightsofapollo.com>
Desc: vbump marionette
2013-08-09 10:05:25 -07:00
Gregor Wagner
0c848debc2 Bug 902899 - Fix ContentPermission Prompt. r=etienne 2013-08-09 19:02:33 +02:00
Gaia Pushbot
39b72f1e53 Bumping gaia.json for 3 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/f970557b626a
Author: Rick Waldron <waldron.rick@gmail.com>
Desc: Bug 902973 - REAPPLY Disable sms notification_test.js for frequent TBPL orange, a=test-only

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>

========

https://hg.mozilla.org/integration/gaia-central/rev/2d0fff56e4df
Author: Sam Joch <samuel@guiora.com>
Desc: Merge pull request #11352 from epang/bug901500_email_missing_images

Bug 901500 - Adding Missing Email Images r=samjoch

========

https://hg.mozilla.org/integration/gaia-central/rev/77172567ba5a
Author: Eric Pang <epang@mozilla.com>
Desc: Bug 901500 - Adding Missing Email Images
2013-08-09 07:50:26 -07:00
Gaia Pushbot
8f1095fc02 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/3386bba33a11
Author: Sam Joch <samuel@guiora.com>
Desc: Merge pull request #11350 from epang/bug901499_cameragraphicsswap

Bug 901499 - Swap Camera Graphics r=samjoch

========

https://hg.mozilla.org/integration/gaia-central/rev/c691ba73a9ae
Author: Eric Pang <epang@mozilla.com>
Desc: Bug 901499 - Swap Camera Graphics
2013-08-09 07:25:25 -07:00
Gaia Pushbot
91dd830f94 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/55a28af01d44
Author: Francisco Jordano <arcturus@ardeenelinfierno.com>
Desc: Merge pull request #11425 from comoyo/mozContacts2vcard

Bug 896982: Design and implement a component to transform mozContacts to VCARD format [r=arcturus]

========

https://hg.mozilla.org/integration/gaia-central/rev/d409de36cf9f
Author: Sergi Mansilla <sergi.mansilla@gmail.com>
Desc: Design and implement a component to transform mozContacts to VCARD format
2013-08-09 05:00:24 -07:00
Gaia Pushbot
f760dcdb83 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/c452a61687ef
Author: Yuren Ju <yurenju@gmail.com>
Desc: Merge pull request #11286 from yurenju/896425

Bug 896425 - Add customization support for recording profile r=djf

========

https://hg.mozilla.org/integration/gaia-central/rev/a6c838236673
Author: Yuren Ju <yurenju@gmail.com>
Desc: Bug 896425 - Add customization support for recording profile
2013-08-09 03:55:23 -07:00
Gaia Pushbot
a8ba965cf9 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/37f6005f3b09
Author: Gabriele Svelto <gsvelto@mozilla.com>
Desc: Merge pull request #11399 from gabrielesvelto/bug-902409-parallel-builds

Bug 902409 - Added a missing dependency to the webapp-zip target r=ochameau

========

https://hg.mozilla.org/integration/gaia-central/rev/b9abd47eedbf
Author: Gabriele Svelto <gabriele.svelto@gmail.com>
Desc: Bug 902409 - Added a missing dependency to the webapp-zip target
2013-08-09 01:50:23 -07:00
Gaia Pushbot
20920e3c54 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/49ed800397c7
Author: Alive.Kuo <alegnadise@gmail.com>
Desc: Merge pull request #11338 from alivedise/bugzilla/898385_master/remove-over-usage-of-ori-sensor

Bug 898385 - Reduce orientation sensor usage. r=timdream

========

https://hg.mozilla.org/integration/gaia-central/rev/e388b7ae12c9
Author: Alive Kuo <alegnadise@gmail.com>
Desc: Bug 898385 - Reduce orientation sensor usage.
2013-08-08 20:45:23 -07:00
Gaia Pushbot
d9c6d30375 Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/b3bbcbb9026c
Author: Alive.Kuo <alegnadise@gmail.com>
Desc: Merge pull request #11446 from alivedise/bugzilla/900420_master

Bug 900420 - Remove mozTT reference, r=timdream

========

https://hg.mozilla.org/integration/gaia-central/rev/74e77eaec10f
Author: Alive Kuo <alegnadise@gmail.com>
Desc: Bug 900420 - Remove mozTT reference

========

https://hg.mozilla.org/integration/gaia-central/rev/84d84ed85cec
Author: Arthur Chen <crh0716@gmail.com>
Desc: Merge pull request #10877 from crh0716/881862

Bug 881862 - Control the network type from the json file

========

https://hg.mozilla.org/integration/gaia-central/rev/b122f126a233
Author: crh0716 <crh0716@gmail.com>
Desc: Bug 881862 - Control the network type from the json file
2013-08-08 19:50:23 -07:00
Gaia Pushbot
d74e834589 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/70c0630bb512
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Merge pull request #11431 from KevinGrandon/blob-uris-travis-failure

Bug 806374 - Don't store phone's wallpaper or the dialer ringtone or the notification ringtone as a data: URI in the settings DB

========

https://hg.mozilla.org/integration/gaia-central/rev/446bc97f1f99
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Bug 806374 - Don't store phone's wallpaper or the dialer ringtone or the notification ringtone as a data: URI in the settings DB
2013-08-08 17:15:24 -07:00
Gaia Pushbot
9645d53281 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/78632e8ee2f3
Author: James Lal <james@lightsofapollo.com>
Desc: Merge pull request #11443 from lightsofapollo/kill-integration

remove old integration tests for now

========

https://hg.mozilla.org/integration/gaia-central/rev/955ecf9b4814
Author: James Lal <james@lightsofapollo.com>
Desc: remove old integration tests for now
2013-08-08 15:21:24 -07:00
Vivien Nicolas
42816646f5 Bug 797497 - Disable tap "scrollbar" r=fabrice 2013-08-08 15:04:04 -07:00
Fabrice Desré
53dab01d71 Bug 880548 - Register activities that expose the 'view' type as content handlers r=vingtetun 2013-08-08 15:04:03 -07:00
Gaia Pushbot
1dd0ea4f78 Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/4cca0ebdd402
Author: Vivien Nicolas <21@vingtetun.org>
Desc: Bug 838634 - Better integration of e.me to the landing page. r=pike, a=leo+
2013-08-08 13:10:23 -07:00
Gaia Pushbot
940cbd7e4b Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/12c35a08fe1b
Author: Rick Waldron <waldron.rick@gmail.com>
Desc: 902973 - [SMS][MMS] Intermittent TEST-UNEXPECTED-FAIL in notification_test.js r=gnarf

https://bugzilla.mozilla.org/show_bug.cgi?id=902973

- Clean up
- Migrate to sinon.spy
- Use mocks as spy targets
- Assert on spy intel instead of mock properties
- Simpify mocks
- Ensure Threads tests start with hash = '';
- Remove from blacklist

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2013-08-08 12:15:24 -07:00
Gaia Pushbot
0915327197 Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/b290b9fde0f1
Author: Vivien Nicolas <21@vingtetun.org>
Desc: Bug 902897 - Prevent e.me to be scrolled while panning between pages. r=ran

========

https://hg.mozilla.org/integration/gaia-central/rev/56eadcdc815a
Author: Vivien Nicolas <21@vingtetun.org>
Desc: Bug 900989 - The height of homescreen pages force excessive repaints. r=ran

========

https://hg.mozilla.org/integration/gaia-central/rev/3236858bec69
Author: Vivien Nicolas <21@vingtetun.org>
Desc: Bug 902465 - Too many CanvasLayer on e.me results hurt panning. r=ran

========

https://hg.mozilla.org/integration/gaia-central/rev/fc6330d99b32
Author: Evyatar Amitay <evyatar@doat.com>
Desc: Bug 903043 - Fix and enhance e.me integration on the landing page. r=vingtetun
2013-08-08 11:40:29 -07:00
Gaia Pushbot
98cfedf26e Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/c841634cb485
Author: Dale Harvey <dale@arandomurl.com>
Desc: Bug 898326 - Disable buttons when switching camera. r=djf

========

https://hg.mozilla.org/integration/gaia-central/rev/e71e50ddfde5
Author: David Flanagan <dflanagan@mozilla.com>
Desc: Bug 890427: use camera API's onPreviewStateChange callback to avoid deadlock. r=johu

do the same thing in loadCameraPreview
2013-08-08 11:25:23 -07:00
Gaia Pushbot
4fb45cb7a6 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/c406aed66b1a
Author: Jonathan Griffin <jgriffin@mozilla.com>
Desc: Merge pull request #11437 from jonallengriffin/updateui

Bug 866908 - Pick up a newer version of gaia-ui-tests, a=test-only

========

https://hg.mozilla.org/integration/gaia-central/rev/d6110bb2ae9d
Author: Jonathan Griffin <jgriffin@mozilla.com>
Desc: Bug 866908 - Pick up a newer version of gaia-ui-tests, a=test-only
2013-08-08 10:55:26 -07:00
Jan Jongboom
7b7eba1d54 Bug 902153 - Ignore input type=range in forms.js. r=yxl 2013-08-12 13:17:29 -04:00
Gaia Pushbot
9d3edc9b09 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/f23ea95edc32
Author: Ran Ben Aharon <ran@everything.me>
Desc: Merge pull request #11483 from EverythingMe/bugfix-loadmore

Bug 904085 - Can't load more apps into Collection results [r=gregor]

========

https://hg.mozilla.org/integration/gaia-central/rev/f426ecbd4885
Author: Ran Ben Aharon <ran@ranbena.com>
Desc: Bug 904085 - Can't load more apps into Collection results
2013-08-12 09:55:24 -07:00
Gaia Pushbot
48cf1dff1c Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/523866b511f5
Author: George <georgeiscoming@gmail.com>
Desc: Merge pull request #11472 from cctuan/901458

Bug 901458 - [Buri][Settings]The interface display abnormal when input PIN code

========

https://hg.mozilla.org/integration/gaia-central/rev/f8b32754a7b9
Author: cctuan <georgeiscoming@gmail.com>
Desc: Bug 901458 - [Buri][Settings]The interface display abnormal when input PIN code
2013-08-12 06:55:24 -07:00
Gaia Pushbot
b1332d7881 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/f82e95c4ab22
Author: Sam Joch <samuel@guiora.com>
Desc: Merge pull request #11357 from pivanov/bug-901480

Bug 901480 - Update Graphics in 1.1HD for WVGA Device r=samjoch

========

https://hg.mozilla.org/integration/gaia-central/rev/5cdd08ff6119
Author: Pavel Ivanov <pivanov@mozilla.com>
Desc: Bug 901480 - Update Graphics in 1.1HD for WVGA Device
2013-08-12 04:55:24 -07:00
Gaia Pushbot
a462518c62 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/81e23789be37
Author: Sam Joch <samuel@guiora.com>
Desc: Merge pull request #11461 from pivanov/bug-903477

Bug 903477 - [Bluetooth] Bluetooth icons inner shadow is too dark - tone down r=samjoch

========

https://hg.mozilla.org/integration/gaia-central/rev/86cba5a078e3
Author: Pavel Ivanov <pivanov@mozilla.com>
Desc: Bug 903477 - [Bluetooth] Bluetooth icons inner shadow is too dark - tone down
2013-08-12 03:25:25 -07:00
Gaia Pushbot
9183bf3a61 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/1b8fba13f1a8
Author: Sam Joch <samuel@guiora.com>
Desc: Merge pull request #11458 from pivanov/bug-903365

Bug 903365 - [Settings][HD] Settings icons inner shadow is too dark - tone down r=samjoch

========

https://hg.mozilla.org/integration/gaia-central/rev/c65b13c80834
Author: Pavel Ivanov <pivanov@mozilla.com>
Desc: Bug 903365 - [Settings][HD] Settings icons inner shadow is too dark - tone down
2013-08-12 02:30:23 -07:00
Gaia Pushbot
05517777e4 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/92fa69a58527
Author: Sam Joch <samuel@guiora.com>
Desc: Merge pull request #11204 from pivanov/bug-898792

Bug 898792 - [Dialer] - The bottom buttons are not the same height r=samjoch

========

https://hg.mozilla.org/integration/gaia-central/rev/3fea3cec7c79
Author: Pavel Ivanov <pivanov@mozilla.com>
Desc: Bug 898792 - [Dialer] - The bottom buttons are not the same height
2013-08-12 02:05:23 -07:00
Gaia Pushbot
f4b524a378 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/daaf5314e6fc
Author: Yuren Ju <yurenju@gmail.com>
Desc: Merge pull request #11476 from yurenju/902402

bug 902402: add -L argument to find command to follow symbolic for apps r=@timdream

========

https://hg.mozilla.org/integration/gaia-central/rev/9b91315b8ffc
Author: Yuren Ju <yurenju@gmail.com>
Desc: bug 902402: add -L argument to find command to follow symbolic for apps
2013-08-12 00:35:24 -07:00
Gaia Pushbot
3cc6ab759b Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/2fe4d936fd60
Author: Rudy Lu <left.lu@gmail.com>
Desc: Merge pull request #11465 from littleq0903/bug-902649-2

Bug 902549 - [B2G][l10n][Email] Double @@ signs in the second keyboard layer. r=rudylu

========

https://hg.mozilla.org/integration/gaia-central/rev/cfb7d57a7779
Author: LittleQ <littleq0903@gmail.com>
Desc: Bug 902549 - [B2G][l10n][Email] Double @@ signs in the second keyboard layer
2013-08-11 20:50:23 -07:00
Gaia Pushbot
9ccce68371 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/bde91dfcd775
Author: gasolin <gasolin@gmail.com>
Desc: Merge pull request #11396 from gasolin/issue-898262

Bug 898262 - HD: [CostControl] canvas and wifi/3g checkboxs not use scre..., r=lodr

========

https://hg.mozilla.org/integration/gaia-central/rev/5241d8afb674
Author: gasolin <gasolin@gmail.com>
Desc: Bug 898262 - HD: [CostControl] canvas and wifi/3g checkboxs not use screen space well
2013-08-11 19:35:29 -07:00
Gaia Pushbot
4cdbca29f6 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/f4bf404a0aa8
Author: Alive.Kuo <alegnadise@gmail.com>
Desc: Merge pull request #11531 from alivedise/bugzilla/904991/app-window-factory

Bug 904991 - App Window Factory, r=timdream

========

https://hg.mozilla.org/integration/gaia-central/rev/adceb5097431
Author: Alive Kuo <alegnadise@gmail.com>
Desc: Bug 904991 - App Window Factory
2013-08-15 04:50:23 -07:00
Gaia Pushbot
5e6c0fe795 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/a58a2144100e
Author: Yuren Ju <yurenju@gmail.com>
Desc: Merge pull request #11545 from yurenju/remove-offline

Bug 905608 - Remove build/offline-cache.js and make target for it r=@timdream

========

https://hg.mozilla.org/integration/gaia-central/rev/518d0a317466
Author: Yuren Ju <yurenju@gmail.com>
Desc: Bug 905608 - Remove build/offline-cache.js and make target for it
2013-08-15 04:25:24 -07:00
Gaia Pushbot
52f7353f67 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/7074e7efe829
Author: Sam Joch <samuel@guiora.com>
Desc: Merge pull request #11466 from pivanov/bug-903360

Bug 903360 - [HD] Blue time stamp is too small and should be closer to the right edge r=samjoch

========

https://hg.mozilla.org/integration/gaia-central/rev/94253782dd92
Author: Pavel Ivanov <pivanov@mozilla.com>
Desc: Bug 903360 - [HD] Blue time stamp is too small and should be closer to the right edge
2013-08-15 03:40:23 -07:00
Gaia Pushbot
31011ba6dd Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/0452882ba864
Author: Alive.Kuo <alegnadise@gmail.com>
Desc: Merge pull request #11541 from snowmantw/issue904982

Bug 904982 - [System] System reboot if CustomDialog shows with improper callbacks, r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/349a68bfec90
Author: Greg Weng (snowmantw) <gweng@mozilla.com>
Desc: Bug 904982 - [System] System reboot if CustomDialog shows with improper callbacks

========

https://hg.mozilla.org/integration/gaia-central/rev/9c65f0e58196
Author: Gabriele Svelto <gsvelto@mozilla.com>
Desc: Merge pull request #11424 from gabrielesvelto/bug-902500-scrollintoview

Bug 902500 - Prevent synchronous reflows when scrolling to the bottom of the message list r=julienw

========

https://hg.mozilla.org/integration/gaia-central/rev/537dea3ef4f7
Author: Gabriele Svelto <gabriele.svelto@gmail.com>
Desc: Bug 902500 - Prevent synchronous reflows when scrolling to the bottom of the message list
2013-08-15 03:20:25 -07:00
Gaia Pushbot
2e5ae1baea Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/e240516ce3ec
Author: Sam Joch <samuel@guiora.com>
Desc: Merge pull request #11348 from epang/bug901496_browsergraphicswap

Bug 901499 - Swap Camera Graphics r=samjoch

========

https://hg.mozilla.org/integration/gaia-central/rev/44bde2c73c65
Author: Eric Pang <epang@mozilla.com>
Desc: Bug 901499 - Swap Camera Graphics
2013-08-15 03:05:27 -07:00
Ms2ger
6c3982af30 Merge m-c to inbound. 2013-08-14 14:47:39 +02:00
Jonathan Watt
4fd2b8439e Bug 894840, part 2 - Get rid of the nsFilePickerShownCallback ctor's aMulti argument by exposing nsIFilePicker.mode. r=mounir 2013-07-22 13:46:27 +01:00
Gaia Pushbot
1cdbe4ad4e Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/82e365b7253c
Author: Jonathan Griffin <jgriffin@mozilla.com>
Desc: Merge pull request #11435 from jonallengriffin/902973

Bug 902973 - Disable sms notification_test.js for frequent TBPL orange, ...

========

https://hg.mozilla.org/integration/gaia-central/rev/bb7baf95cc0c
Author: Jonathan Griffin <jgriffin@mozilla.com>
Desc: Bug 902973 - Disable sms notification_test.js for frequent TBPL orange, a=test-only
2013-08-08 10:10:24 -07:00
Gaia Pushbot
f6c76813e3 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/c307df5aae16
Author: Francisco Jordano <arcturus@ardeenelinfierno.com>
Desc: Merge pull request #11398 from arcturus/contact_list_selectable-2

Bug 901079 - [Contacts] Contacts list should offer a select mode

========

https://hg.mozilla.org/integration/gaia-central/rev/6df7529b0aae
Author: Francisco Jordano <arcturus@ardeenelinfierno.com>
Desc: Bug 901079 - [Contacts] Contacts list should offer a select mode
2013-08-08 08:40:24 -07:00
Gaia Pushbot
0a3a96cae4 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/2665bef33588
Author: Francisco Borja Salguero Castellano <fbsc@tid.es>
Desc: Merge pull request #11427 from borjasalguero/paris_sms_manifest

Bug 879199 - Remove mobileconnection permission from SMS app r=julienw

========

https://hg.mozilla.org/integration/gaia-central/rev/a1350cdec37c
Author: borjasalguero <fbsc@tid.es>
Desc: Bug 879199 - Remove mobileconnection permission from SMS app r=julienw
2013-08-08 08:05:23 -07:00
Gaia Pushbot
dc785b8ea7 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/f7fe122995e7
Author: Francisco Jordano <arcturus@ardeenelinfierno.com>
Desc: Merge pull request #11420 from borjasalguero/paris_ftu_screen

Bug 902800 - [FTU] Flickering with start tour screen after About Firefox OS screen r=arcturus

========

https://hg.mozilla.org/integration/gaia-central/rev/e0b402a314ea
Author: borjasalguero <fbsc@tid.es>
Desc: Bug 902800 - [FTU] Flickering with start tour screen after About Firefox OS screen r=fcampo
2013-08-08 07:55:24 -07:00
Gaia Pushbot
dda86a1a21 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/6b84d29fdbb8
Author: Arthur Chen <crh0716@gmail.com>
Desc: Merge pull request #11336 from crh0716/895226

Bug 895226 - Add a check on active call r=etienne, a=leo+

========

https://hg.mozilla.org/integration/gaia-central/rev/7a870cd8850d
Author: crh0716 <crh0716@gmail.com>
Desc: Bug 895226 - Get the previous call from handledCalls directly
2013-08-08 07:45:32 -07:00
Gaia Pushbot
a73fc5e560 Bumping gaia.json for 3 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/feae4d017673
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Merge pull request #11428 from fabi1cazenave/smsCursorScroll-bug875338

Bug 875338: the content is not scrolled down when sending an MMS, r=julienw

========

https://hg.mozilla.org/integration/gaia-central/rev/ad7ba745f6df
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Bug 875338: the content is not scrolled down when sending an MMS, r=julienw

========

https://hg.mozilla.org/integration/gaia-central/rev/5bb8a4a8dcbf
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Revert "Merge pull request #11055 from fabi1cazenave/smsCursorScroll-bug875338"

This reverts commit 96e8da02b834bc15fc4adc402b40c08ba36b2a59, reversing
changes made to b3fb4af5ef69ac087afc77329fdd82d5c6d122a0.
2013-08-08 07:10:24 -07:00
Gaia Pushbot
d9fe2ac62d Bumping gaia.json for 5 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/20da670c9645
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Merge pull request #11055 from fabi1cazenave/smsCursorScroll-bug875338

Bug 875338: the content is not scrolled down when sending an MMS, r=gnarf

========

https://hg.mozilla.org/integration/gaia-central/rev/8dd470c59d5d
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Bug 875338: unit tests

========

https://hg.mozilla.org/integration/gaia-central/rev/91bcb68bfa1b
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Bug 875338: the content is not scrolled down when sending an MMS, r=gnarf
+ do not scroll to bottom if the user already scrolled manually

========

https://hg.mozilla.org/integration/gaia-central/rev/347ba8341259
Author: ochameau <poirot.alex@gmail.com>
Desc: Merge pull request #11409 from ochameau/bug902625

Bug 902625 - DEVICE_DEBUG doesn't correctly set remote debugging mode r=@vingtetun

========

https://hg.mozilla.org/integration/gaia-central/rev/5415ffb74ea9
Author: Alexandre Poirot <poirot.alex@gmail.com>
Desc: Bug 902625 - DEVICE_DEBUG doesn't correctly set remote debugging mode
2013-08-08 07:00:29 -07:00
Gaia Pushbot
c3f45a7fb8 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/f10c7f33dcf5
Author: Etienne Segonzac <etienne@segonzac.info>
Desc: Merge pull request #11421 from lissyx/bug900848

Bug 900848 - Use withheld-number string key instead of unknown in call log r=etienne

========

https://hg.mozilla.org/integration/gaia-central/rev/bb08fbdbb2bf
Author: Alexandre Lissy <lissyx+github@lissyx.dyndns.org>
Desc: Bug 900848 - Use withheld-number string key instead of unknown in call log

Also remove a portion of dead code that was referring to the unknown
key: since |Utils.getPhoneNumberPrimaryInfo| will return null in case
|matchingTel| is invalid, it means that either way we will have been
thrown out of this code previously, since the |matchingTel| is being
checked for in the if() code just above.
2013-08-08 05:50:30 -07:00
Gaia Pushbot
9464359854 Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/cf4b9e1d77d1
Author: Julien Wajsberg <felash@gmail.com>
Desc: Bug 902390 - [sms][mms] the input is 1px too high with the 'Moz' font r=borja
2013-08-08 05:40:23 -07:00
Gaia Pushbot
42491b77a4 Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/80cde7ce278e
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Merge pull request #11378 from jmcanterafonseca/align_fb_active_merge

Bug 901571 - FB Contacts must not match under different circumstances

========

https://hg.mozilla.org/integration/gaia-central/rev/f11cf9fe096d
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Bug 901571 - FB Contacts must not match under different circumstances

========

https://hg.mozilla.org/integration/gaia-central/rev/45321dab19db
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Merge pull request #11419 from jmcanterafonseca/edit_active_merge

Bug 902391 - Active merge in edit mode for Contacts

========

https://hg.mozilla.org/integration/gaia-central/rev/316758208a3c
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Bug 902391 - Active merge in edit mode for Contacts
2013-08-08 05:30:23 -07:00
Gaia Pushbot
1074c2f211 Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/dbfb03ac7296
Author: Etienne Segonzac <etienne@segonzac.info>
Desc: Merge pull request #10865 from lissyx/bug889245

Bug 889245 - [Call log] When user make a voicemail call, call log shows ...

========

https://hg.mozilla.org/integration/gaia-central/rev/89fb5a99c545
Author: Alexandre Lissy <lissyx+mozillians@lissyx.dyndns.org>
Desc: Bug 889245 - [Call log] Display emergency number or Voicemail string

========

https://hg.mozilla.org/integration/gaia-central/rev/a212e78a202b
Author: Arthur Chen <crh0716@gmail.com>
Desc: Merge pull request #11333 from crh0716/900386

Bug 900386 - Use localize function to do localization r=evelyn

========

https://hg.mozilla.org/integration/gaia-central/rev/e6fa4ecb565c
Author: crh0716 <crh0716@gmail.com>
Desc: Bug 900386 - Use localize function to do localization
2013-08-08 04:10:23 -07:00
Gaia Pushbot
b938de4775 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/20258a9a0b11
Author: Etienne Segonzac <etienne@segonzac.info>
Desc: Merge pull request #10929 from lissyx/bug892520

Bug 892520 - Ensure serialization of upgrade path

========

https://hg.mozilla.org/integration/gaia-central/rev/bc8ab7a1d3bd
Author: Alexandre Lissy <lissyx+github@lissyx.dyndns.org>
Desc: Bug 892520 - Ensure proper upgrade path
2013-08-08 03:35:23 -07:00
Gaia Pushbot
545411e155 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/1d71d406d7fe
Author: George <georgeiscoming@gmail.com>
Desc: Merge pull request #11380 from cctuan/896934

Bug 896934 - [Settings] Listen new system message for Bluetooth pairing requests in connectivity.js

========

https://hg.mozilla.org/integration/gaia-central/rev/2a769b49413e
Author: cctuan <georgeiscoming@gmail.com>
Desc: Bug 896934 - [Settings] Listen new system message for Bluetooth pairing requests in connectivity.js
2013-08-08 02:05:23 -07:00
Gaia Pushbot
5bf497f04b Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/5eaec29efe38
Author: Arthur Chen <crh0716@gmail.com>
Desc: Merge pull request #11393 from chuck-lee/bug-901837_WAP_Push_test_app

Bug 901837 - Test app for receiving WAP Push. r=arthurcc

========

https://hg.mozilla.org/integration/gaia-central/rev/0a2692200e33
Author: Chuck Lee <chulee@mozilla.com>
Desc: Bug 901837 - Test app for receiving WAP Push.
2013-08-08 01:00:23 -07:00
Gaia Pushbot
1524f73ebb Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/fd03fbd18a09
Author: Arthur Chen <crh0716@gmail.com>
Desc: Merge pull request #11374 from crh0716/891742

Bug 891742 - Add roaming preference selector for CDMA r=jaoo

========

https://hg.mozilla.org/integration/gaia-central/rev/1265c3ddfe7c
Author: crh0716 <crh0716@gmail.com>
Desc: Bug 891742 - Add roaming preference selector for CDMA
2013-08-07 22:35:23 -07:00
Gaia Pushbot
c81d7d29be Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/78dcf8d32fa5
Author: Ian Liu <iliu@mozilla.com>
Desc: Merge pull request #11395 from oconnore/902305-clock-alarm-repeat-object

Bug 902305 - Change alarm repeat representation from a bitset to an object, r=@ian-liu

========

https://hg.mozilla.org/integration/gaia-central/rev/d5cb4c0c575e
Author: Eric O'Connor <eric@bocoup.com>
Desc: Change alarm repeat data representation from a bit-string to an object.

'0000011' -> {saturday: true, sunday: true}
2013-08-07 20:51:24 -07:00
Jan Jongboom
db365c9dce Bug 899999 - Implement new InputContext API. r=yxl 2013-08-07 20:07:41 -04:00
Gaia Pushbot
26b36f402d Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/be017a4d1a4f
Author: James Lal <james@lightsofapollo.com>
Desc: Merge pull request #11327 from ganesh7/bug_901111

events only change if valid2

========

https://hg.mozilla.org/integration/gaia-central/rev/86d1045013b8
Author: gghosh <ganeshghosh@gmail.com>
Desc: BUG 901111- When editing an event with invalid data, despite the warning, the data is still saved.
2013-08-07 16:45:24 -07:00
Gaia Pushbot
123a1f916e Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/b6408d2d9046
Author: Ghislain 'Aus' Lacroix <aus@noiseport.org>
Desc: Merge pull request #11254 from nullaus/market-customizations

Market customizations helper object and base test case

========

https://hg.mozilla.org/integration/gaia-central/rev/95614e3fffab
Author: Ghislain 'Aus' Lacroix <aus@mozilla.com>
Desc: bug 892153

Create Operator Variant Helper and base tests for Market Customization work. Object enables customization of settings and other application data on first SIM insertion AND during SIM changes at runtime if so desired.

r=timdream, julienw

========

https://hg.mozilla.org/integration/gaia-central/rev/8ebf016ddc47
Author: Jonathan Griffin <jgriffin@mozilla.com>
Desc: Merge pull request #11410 from jonallengriffin/902641

Bug 902641 - Disable contacts_list_test.js for frequent TBPL orange, a=t...

========

https://hg.mozilla.org/integration/gaia-central/rev/5b3a5f923cb9
Author: Jonathan Griffin <jgriffin@mozilla.com>
Desc: Bug 902641 - Disable contacts_list_test.js for frequent TBPL orange, a=test-only
2013-08-07 14:45:23 -07:00
Gaia Pushbot
b7823f313c Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/553715baac40
Author: Jonathan Griffin <jgriffin@mozilla.com>
Desc: Merge pull request #11407 from ahal/xulrunner

Bug 902496 - Update copy of xulrunner-sdk being used

========

https://hg.mozilla.org/integration/gaia-central/rev/8d6106f716c6
Author: Andrew Halberstadt <halbersa@gmail.com>
Desc: Bug 902496 - Update copy of xulrunner-sdk being used, r=jgriffin
2013-08-07 14:00:23 -07:00
Gaia Pushbot
0f562864a4 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/acd53f668718
Author: Vivien Nicolas <21@vingtetun.org>
Desc: Bug 902465 - Too many CanvasLayer on e.me results hurts panning. part 2. r=ran

========

https://hg.mozilla.org/integration/gaia-central/rev/f94712ea7073
Author: Evyatar Amitay <evyatron@gmail.com>
Desc: Bug 902465 - Too many CanvasLayer on e.me results hurts panning. part 1. r=vingtetun
2013-08-07 12:50:23 -07:00
Gaia Pushbot
a489a37905 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/fc8241f97254
Author: Evyatar Amitay <evyatron@gmail.com>
Desc: Bug 902517 - The e.me banner is shown above the dock when a bookmark is added. r=vingtetun

========

https://hg.mozilla.org/integration/gaia-central/rev/37024c7e63d1
Author: Evyatar Amitay <evyatron@gmail.com>
Desc: Bug 902123 - The background of the landing page is darker once e.me has been opened. r=vingtetun
2013-08-07 12:40:23 -07:00
Gaia Pushbot
514a6a4004 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/6991d4067741
Author: vingtetun <21@vingtetun.org>
Desc: Merge pull request #11344 from fcampo/TutorialSwipeLeft

Bug 901041 - Remove 'swipe left' screen in tutorial (as part of the first run experience)

========

https://hg.mozilla.org/integration/gaia-central/rev/03ec92421539
Author: Fernando Campo <fernando.campo@o2.com>
Desc: Bug 901041 - Remove 'swipe left' screen in tutorial (as part of the first run experience)
2013-08-07 12:30:23 -07:00
Gaia Pushbot
b00908ec05 Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/c4acbffef44e
Author: Fabrice Desré <fabrice@desre.org>
Desc: Bug 901383 - Some permissions dialogs should have a 'more info' capability. r=etienne
2013-08-07 12:15:23 -07:00
Gaia Pushbot
727020d87a Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/fb932dc7c5c4
Author: Jonathan Griffin <jgriffin@mozilla.com>
Desc: Merge pull request #11406 from jonallengriffin/902551

Bug 902551 - Disable save_bookmark_test.js on TBPL for near permaorange,...

========

https://hg.mozilla.org/integration/gaia-central/rev/a7a15ae05e97
Author: Jonathan Griffin <jgriffin@mozilla.com>
Desc: Bug 902551 - Disable save_bookmark_test.js on TBPL for near permaorange, a=test-only
2013-08-07 11:31:24 -07:00
Gaia Pushbot
806387235f Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/14deb0991916
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Merge pull request #11397 from fabi1cazenave/localizeShouldNotClearAll-bug902363

Bug 902363: [mozL10n] factorize `setTextContent` to fix `localizeElement`, r=julienw

========

https://hg.mozilla.org/integration/gaia-central/rev/49303a4a3e82
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Bug 902363: factorize `setTextContent` to fix `localizeElement`
2013-08-07 10:25:23 -07:00
Gaia Pushbot
6a7007457a Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/f90b4d8c90a1
Author: Jonathan Griffin <jgriffin@mozilla.com>
Desc: Merge pull request #11403 from jonallengriffin/gaiaui

Bug 900630 - Update gaia-ui-tests.json, a=test-only

========

https://hg.mozilla.org/integration/gaia-central/rev/80bf009e8d60
Author: Jonathan Griffin <jgriffin@mozilla.com>
Desc: Bug 900630 - Update gaia-ui-tests.json, a=test-only

========

https://hg.mozilla.org/integration/gaia-central/rev/772427971529
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Merge pull request #11275 from fabi1cazenave/contactSearchFocus-bug898976

Bug 898976: [Contacts] Keyboard does not disappear when clicking then Enter key in the contacts search page, r=jmcf

========

https://hg.mozilla.org/integration/gaia-central/rev/add784345ea7
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Bug 898976: [Contacts] Keyboard does not disappear when clicking ENTER key in contacts search page
2013-08-07 10:15:29 -07:00
Gaia Pushbot
165082023a Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/a983aefa1136
Author: Ben Francis <ben@tola.me.uk>
Desc: Merge pull request #11346 from gasolin/issue-900345

Bug 900345 - HD: [browser] left arrow in sidebar is bigger than expect r=benfrancis

========

https://hg.mozilla.org/integration/gaia-central/rev/a99af35ab2be
Author: gasolin <gasolin@gmail.com>
Desc: Bug 900345 - HD: [browser] left arrow in sidebar is bigger than expect
2013-08-07 10:12:10 -07:00
Gaia Pushbot
885554b6fc Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/514eeba803a5
Author: Francisco Borja Salguero Castellano <fbsc@tid.es>
Desc: Merge pull request #11382 from borjasalguero/paris_settings_contact

Bug 901471 - Revamp Contact Settings screen to allow to import / export ...

========

https://hg.mozilla.org/integration/gaia-central/rev/2bb3fbad978c
Author: borjasalguero <fbsc@tid.es>
Desc: Bug 901471 - Revamp Contact Settings screen to allow to import / export from / to different sources r=jmcanterafonseca
2013-08-07 10:00:46 -07:00
Gaia Pushbot
a887b8f62a Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/93418295d620
Author: Vivien Nicolas <21@vingtetun.org>
Desc: Bug 902233 - Failing unit tests. r=ran
2013-08-07 10:00:24 -07:00
Gaia Pushbot
ebcdff5907 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/9c12b7dc33c7
Author: Francisco Jordano <arcturus@ardeenelinfierno.com>
Desc: Merge pull request #11329 from leob2g/Bug_876123_Avoid_Multiple_SelectionBox_Values_Display

[Costcontrol] Bug_876123_Avoid_Multiple_Display r=lodr

========

https://hg.mozilla.org/integration/gaia-central/rev/9161e96366e3
Author: sarath27.vs <sarath27.vs@lge.com>
Desc: Bug_876123_Avoid_Multiple_Display
2013-08-07 01:40:23 -07:00
Gaia Pushbot
66fdcf9cee Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/b26ac118fa83
Author: Etienne Segonzac <etienne@segonzac.info>
Desc: Merge pull request #11381 from etiennesegonzac/telephony-helper-tests

Bug 883276 - Cover the TelephonyHelper with unit tests.

========

https://hg.mozilla.org/integration/gaia-central/rev/1e7a4ae29bf8
Author: Etienne Segonzac <etienne@segonzac.info>
Desc: Bug 883276 - Cover the TelephonyHelper with unit tests.
r=julienw
2013-08-07 00:55:23 -07:00
Gaia Pushbot
a9c0854bc5 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/13332352a031
Author: Arthur Chen <crh0716@gmail.com>
Desc: Merge pull request #11394 from crh0716/895287_master

Bug 895287 - Set wifi.suspended to false when manually turning off wifi r=evelyn, a=leo+

========

https://hg.mozilla.org/integration/gaia-central/rev/ce51afbd03b3
Author: crh0716 <crh0716@gmail.com>
Desc: Bug 895287 - Set wifi.suspended to false when manually turning off wifi
2013-08-06 21:20:23 -07:00
Gaia Pushbot
04e769b60f Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/77aed7428666
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Merge pull request #11390 from KevinGrandon/bug_902199_fix_travis

Bug 902199 - Fix travis error r=vingtetun

========

https://hg.mozilla.org/integration/gaia-central/rev/fad675024f68
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Bug 902199 - Fix travis error.
2013-08-06 16:30:23 -07:00
Gaia Pushbot
b7a80b51cb Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/51071ff883bd
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Merge pull request #11389 from KevinGrandon/bug_902176_add_mozTelephony_shim

Bug 902176 - Add telephony mock r=vingtetun

========

https://hg.mozilla.org/integration/gaia-central/rev/9e88e777cc0f
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Bug 902176 - Add telephony mock
2013-08-06 15:45:23 -07:00
Gaia Pushbot
ce98070a3f Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/6c183e1466d6
Author: Dale  Harvey <dale@arandomurl.com>
Desc: Merge pull request #11103 from daleharvey/796563

Bug 796563 - Add animation when entering and leaving settings. r=benfrancis

========

https://hg.mozilla.org/integration/gaia-central/rev/fb8a0e633da4
Author: Dale Harvey <dale@arandomurl.com>
Desc: Bug 796563 - Add animation when entering and leaving settings
2013-08-06 15:00:23 -07:00
Gaia Pushbot
f16a165d55 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/14566701e80e
Author: Dave Hylands <dhylands@gmail.com>
Desc: Merge pull request #11388 from dhylands/dhylands-902028-mediadb

Bug 902028 - DeviceStorage fix enumerateAll to work with webidl and the 1.1 way. r=djf

========

https://hg.mozilla.org/integration/gaia-central/rev/a143c46ccd8f
Author: Dave Hylands <dhylands@gmail.com>
Desc: Bug 902028 - DeviceStorage fix enumerateAll to work with webidl and the 1.1 way.
2013-08-06 14:15:24 -07:00
Gaia Pushbot
8309e1a839 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/76dcfb5668d2
Author: vingtetun <21@vingtetun.org>
Desc: Merge pull request #11385 from EverythingMe/evme-middle-squashed

[Bug 838634] Move Evme to landing page [r=21]

========

https://hg.mozilla.org/integration/gaia-central/rev/38ff7535c268
Author: Evyatar Amitay <evyatron@gmail.com>
Desc: [Bug 838634] Move Evme to landing page [r=21]
2013-08-06 13:20:23 -07:00
Gaia Pushbot
be65692dcf Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/d4325ada997b
Author: Jonathan Griffin <jgriffin@mozilla.com>
Desc: Merge pull request #11384 from jonallengriffin/disable_visibility

Bug 902045 - Disable tag_visibility_monitor_test.js in TBPL due to frequ...

========

https://hg.mozilla.org/integration/gaia-central/rev/5a2ff5e6c537
Author: Jonathan Griffin <jgriffin@mozilla.com>
Desc: Bug 902045 - Disable tag_visibility_monitor_test.js in TBPL due to frequent orange, a=test-only
2013-08-06 12:35:24 -07:00
Gaia Pushbot
4a1b6680dc Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/ca81894022ba
Author: David Flanagan <dflanagan@mozilla.com>
Desc: Merge pull request #11359 from davidflanagan/bug901377

Bug 901377: fix serious autocorrect regressions r=yxl

========

https://hg.mozilla.org/integration/gaia-central/rev/ca760d73e466
Author: David Flanagan <dflanagan@mozilla.com>
Desc: Bug 901377: fix serious autocorrect regressions
2013-08-06 09:25:24 -07:00
Gaia Pushbot
29b8469784 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/453d7dee630d
Author: Ben Kelly <bkelly@mozilla.com>
Desc: Merge pull request #11377 from wanderview/contacts_throbber_cpu

Bug 901657: Use display:none to hide animation. r=jmcf

========

https://hg.mozilla.org/integration/gaia-central/rev/d7003fd65a19
Author: Ben Kelly <ben@wanderview.com>
Desc: Bug 901657: Use display:none to hide animation
2013-08-06 08:30:23 -07:00
Gaia Pushbot
aa4680dfb1 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/5c749196a94d
Author: Rex KM Lee <rexboy@mozilla.com>
Desc: Merge pull request #11376 from rexboy7/fix-bug899511-master

bug 899511 : [System] Resize popup window correctly

========

https://hg.mozilla.org/integration/gaia-central/rev/82ca343aa6f2
Author: Rex Lee <rexboy@mozilla.com>
Desc: bug 899511 : [System] Resize popup window correctly
2013-08-06 07:20:27 -07:00
Gaia Pushbot
39b37ef5f6 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/83566e190ff3
Author: John Hu <johu@mozilla.com>
Desc: Merge pull request #11221 from huchengtw-moz/video/Bug_898993_thumbnail_size_is_not_compitable_to_hdpi

Bug 898993 - the creation of thumbnail size is not compatible to hdpi de...

========

https://hg.mozilla.org/integration/gaia-central/rev/64a51f6734fd
Author: John Hu <johu@mozilla.com>
Desc: Bug 898993 - the creation of thumbnail size is not compatible to hdpi device
2013-08-06 07:10:25 -07:00
Gaia Pushbot
774d0297ba Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/fb34bf4d3541
Author: Francisco Jordano <arcturus@ardeenelinfierno.com>
Desc: Merge pull request #11351 from jmcanterafonseca/fix_link_img

Bug 901512 - [Contacts] Unable to finish the linking process when there ...

========

https://hg.mozilla.org/integration/gaia-central/rev/5054f99b4768
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Bug 901512 - [Contacts] Unable to finish the linking process when there has been an error while retrieving the picture of FB contact
2013-08-06 05:20:23 -07:00
Gaia Pushbot
da194fc86a Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/b092e1f99db9
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Merge pull request #11354 from jmcanterafonseca/fb_hide_duplicates

Bug 901566 - For FB imported contacts hide 'find duplicates' option in c...

========

https://hg.mozilla.org/integration/gaia-central/rev/f20d4f9096f7
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Bug 901566 - For FB imported contacts hide 'find duplicates' option in contact details

========

https://hg.mozilla.org/integration/gaia-central/rev/1d826926faca
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Merge pull request #11341 from fabi1cazenave/systemMissingEntities-bug901449

Bug 901449 - [STK] missing l10n entities, r=timdream

========

https://hg.mozilla.org/integration/gaia-central/rev/863967e5090e
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Bug 901449 - [STK] missing l10n entities, r=timdream
2013-08-06 05:05:24 -07:00
Gaia Pushbot
7603ce86e8 Bumping gaia.json for 3 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/675fee0417bd
Author: Vivien Nicolas <21@vingtetun.org>
Desc: Bug 900513 - Cancel touch events generated by the home button at position 0,0 in the system app. r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/e859ad1745b3
Author: George <georgeiscoming@gmail.com>
Desc: Merge pull request #10733 from cctuan/888871

Bug 888871 - [CALL LOG] There is no confirmation screen when deleting a record in the call log

========

https://hg.mozilla.org/integration/gaia-central/rev/c799da0e4707
Author: gduan <gduan@mozilla.com>
Desc: Bug 888871 - [CALL LOG] There is no confirmation screen when deleting a record in the call log
2013-08-06 04:45:30 -07:00
Vivien Nicolas
211696bbbc Bug 789358: Enable hit-target fluffing for b2g. r=mbrubeck 2012-09-13 15:43:16 -07:00
Gregor Wagner
ac8e392165 Bug 900960 - Enable the new Notification API on B2G by default. r=vingtetun 2013-08-06 12:13:07 +02:00
Gaia Pushbot
69d22ff01b Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/b78c7c91a6b9
Author: Rex KM Lee <rexboy@mozilla.com>
Desc: Merge pull request #11223 from rexboy7/fix-bug894287

Bug 894287 - [Lockscreen] When there are connected calls, change 'emerge...

========

https://hg.mozilla.org/integration/gaia-central/rev/65c980df3d5d
Author: Rex Lee <rexboy@mozilla.com>
Desc: Bug 894287 - [Lockscreen] When there are connected calls, change 'emergency call' button to 'return to call'
2013-08-06 02:50:23 -07:00
Gaia Pushbot
4f4745b815 Bumping gaia.json for 6 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/f7ed8118d114
Author: William Chen <wchen@mozilla.com>
Desc: Bug 900279 - Update Gaia with additional functionality to support Notification API. r=etienne

========

https://hg.mozilla.org/integration/gaia-central/rev/62b311a11ef3
Author: Arthur Chen <crh0716@gmail.com>
Desc: Merge pull request #11243 from chuck-lee/bug-898293_Add_SSID_length_limitation

Bug 898293 - Limit the data length of SSID to 32 bytes.  r=arthurcc

========

https://hg.mozilla.org/integration/gaia-central/rev/e7be9b14c897
Author: Chuck Lee <chulee@mozilla.com>
Desc: Bug 898293 - Limit the data length of SSID to 32 bytes. r=arthurcc

========

https://hg.mozilla.org/integration/gaia-central/rev/ce36dd64e4e5
Author: Sam Joch <samuel@guiora.com>
Desc: Merge pull request #11203 from pivanov/bug-898791

Bug 898791 - [Dialer] - The number is blue. Should be white and font weight 300. r=samjoch

========

https://hg.mozilla.org/integration/gaia-central/rev/0b54b7d1b89b
Author: Pavel Ivanov <pivanov@mozilla.com>
Desc: Bug 898791 - [Dialer] - The number is blue. Should be white and font weight 300

========

https://hg.mozilla.org/integration/gaia-central/rev/e511eebc2ba2
Author: Julien Wajsberg <felash@gmail.com>
Desc: Bug 901856 - Add the new Notification API to the UITest test application r=gwagner

also fixed the "send notification now" button where an event was passed to
"noti" but "noti" can only handle window as parameter.
2013-08-06 02:40:24 -07:00
Gaia Pushbot
c5358364f7 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/c4a00f8aeb80
Author: Rudy Lu <left.lu@gmail.com>
Desc: Merge pull request #11365 from RudyLu/marketplace/hires-icon

Bug 898382 - Update Marketplace with 1.5x icon. r=Rudy

========

https://hg.mozilla.org/integration/gaia-central/rev/445ede39b891
Author: Chris Van <cvan@mozilla.com>
Desc: Bug 898382 - Update Marketplace with 1.5x icon.
2013-08-06 01:21:24 -07:00
Gaia Pushbot
02cae2c127 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/3cb073ca610c
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Merge pull request #11342 from fabi1cazenave/cameraMissingEntities-bug901463

Bug 901463 - [System/Camera] missing l10n entities, r=djf

========

https://hg.mozilla.org/integration/gaia-central/rev/93459e81a7cf
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Bug 901463 - [System/Camera] missing l10n entities, r=djf
2013-08-06 01:10:23 -07:00
Gaia Pushbot
e891a58c8f Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/158ce534cf63
Author: George <georgeiscoming@gmail.com>
Desc: Merge pull request #11311 from cctuan/899526

Bug 899526 - [Gallery][HD] Thumbnails are blurred

========

https://hg.mozilla.org/integration/gaia-central/rev/69013cd1428e
Author: cctuan <georgeiscoming@gmail.com>
Desc: Bug 899526 - [Gallery][HD] Thumbnails are blurred
2013-08-05 18:40:23 -07:00
Ryan VanderMeulen
ad40253932 Merge m-c to b2g-inbound. 2013-08-05 20:01:39 -04:00
Gaia Pushbot
deb6003273 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/116a51ab4e9e
Author: Jonathan Griffin <jgriffin@mozilla.com>
Desc: Merge pull request #11361 from jonallengriffin/bump

Bug 900630 - Update gaia-ui-tests.json to pull in latest Marionette, a=t...

========

https://hg.mozilla.org/integration/gaia-central/rev/cbacdbb401aa
Author: Jonathan Griffin <jgriffin@mozilla.com>
Desc: Bug 900630 - Update gaia-ui-tests.json to pull in latest Marionette, a=test-only
2013-08-05 17:00:23 -07:00
Ryan VanderMeulen
b20c40920e Merge b2g-inbound to m-c. 2013-08-05 19:52:11 -04:00
Gaia Pushbot
60ea01b174 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/bfebfb81d21b
Author: Mihai Cîrlănaru <mihai@cirlanaru.com>
Desc: Merge pull request #11208 from mcirlanaru/bug_894457

Bug 894457 - [Call Log] Add 'Send Message' option to the phone ... r=@etiennesegonzac

========

https://hg.mozilla.org/integration/gaia-central/rev/931c02a71483
Author: Mihai Cirlanaru <mihai@cirlanaru.com>
Desc: Bug 894457 - [Call Log] Add 'Send Message' option to the phone action menu. r=etienne
2013-08-05 16:25:23 -07:00
Gaia Pushbot
f937d46592 Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/c746f50b0825
Author: Rick Waldron <waldron.rick@gmail.com>
Desc: Bug 900539 - [SMS][MMS] Context Menu options for email address in message body. r=gnarf

- Changes "phone-link" to "dial-link" to match ActivityPicker.dial (allows directly mapping action to ActivityPicker function)
- Changes "data-phonenumber" to "data-dial" to match ActivityPicker.dial
- Consolidates duplicated MozActivity calls for email, phone and url links
    - Simplifies LinkActionHandler APIs to delegate to ActivityPicker wherever possible
- Removes duplicated try/catch boilerplate by providing an private abstract function for safely invoking MozActivity.
- Adds new locale string for "Send email" in email context menu
- Updates ThreadUI.activateContact to provide a "Send email" option, instead of a "Call" option when handling activations originating from an email address.

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2013-08-05 15:20:27 -07:00
Bhavana Bajaj
80a67bd18b Merging in version bump NO BUG 2013-08-05 11:06:54 -07:00
Carsten "Tomcat" Book
ce9fe7db3d Merge b2g-inbound to m-c 2013-08-05 11:22:48 +02:00
Gaia Pushbot
0f051f5724 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/5e7a8bbe525c
Author: Ian Liu <iliu@mozilla.com>
Desc: Merge pull request #11334 from ian-liu/bluetooth/Bug898092_Fail_to_open_Bluetooth_store_files_changed_to_/Download/Bluetooth_from_/Downloads/Bluetooth

Bug 898092 - Fail to open Bluetooth received files - path to store files changed to /Download/Bluetooth from /Downloads/Bluetooth, r=@alivedise

========

https://hg.mozilla.org/integration/gaia-central/rev/94dcf9d72f32
Author: ian-liu <iliu@mozilla.com>
Desc: Bug 898092 - Fail to open Bluetooth received files - path to store files changed to /Download/Bluetooth from /Downloads/Bluetooth
2013-08-04 22:55:22 -07:00
Gaia Pushbot
972c91d25f Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/955e63dc2d09
Author: Dale Harvey <dale@arandomurl.com>
Desc: Bug 830157 - Remove uppercase text transform on shared headers. r=arnau

========

https://hg.mozilla.org/integration/gaia-central/rev/8393ca75be72
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Merge pull request #11304 from fabi1cazenave/l10nContacts-bug898992

Bug 898992: l10n.js should keep track of untranslated elements, r=julienw

========

https://hg.mozilla.org/integration/gaia-central/rev/f9e9f16457fa
Author: Ben Kelly <ben@wanderview.com>
Desc: Bug 898992: unit tests

========

https://hg.mozilla.org/integration/gaia-central/rev/9fae9096f6ef
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Bug 898992: l10n.js should keep track of untranslated elements

If a document embeds an inline JSON dictionary, l10n.js translates the document right away without loading other l10n resources.  It usually works fine because our build system ensures the inline JSON dictionary contains all the necessary keys to handle the declarative content; but if an app adds some dynamic content to the document, when the user language is changed there might be some untranslated elements -- e.g. the "Add Contact" form in the Contacts app.

With this patch, l10n.js keeps track of untranslated elements:
* if an inline dictionary is used, untranslated elements will be translated as soon as all external l10n resources are loaded;
* instead of raising a JS warning each time an element can't be translated, l10n.js now sends one unique warning with all missing l10n keys when the document is translated.
2013-08-05 08:35:23 -07:00
Gaia Pushbot
5b4c24ae0b Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/372e564e36e7
Author: Francisco Borja Salguero Castellano <fbsc@tid.es>
Desc: Merge pull request #10411 from cctuan/882154

Bug 882154 - [MMS] [UX] Multi Recipients. Apply overlay design for conta...

========

https://hg.mozilla.org/integration/gaia-central/rev/1528ef22395e
Author: Tuan George <tuangeorge@Tuans-MacBook-Air.local>
Desc: Bug 882154 - [MMS] [UX] Multi Recipients. Apply overlay design for contact information
2013-08-05 06:20:23 -07:00
Gaia Pushbot
e3717bd096 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/d77a2f32b74e
Author: Rudy Lu <left.lu@gmail.com>
Desc: Merge pull request #11313 from RudyLu/keyboard/Bug900905-listen_to_settingsChange

Bug 900905 - add listener for the change of mozSetting -
r=janjongboom

========

https://hg.mozilla.org/integration/gaia-central/rev/0340f4276929
Author: Rudy Lu <left.lu@gmail.com>
Desc: Bug 900905 - add listener for the change of mozSetting -
"keyboard.ftu.enabled"
2013-08-05 05:35:24 -07:00
Gaia Pushbot
3ee612c7f1 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/8870fc3128b8
Author: Fernando Rodríguez Sela <frsela@tid.es>
Desc: Merge pull request #11310 from frsela/STK/Bug817952

Bug 817952 - B2G STKUI: Add support for STK_CMD_PROVIDE_LOCAL_INFO, r=timdream

========

https://hg.mozilla.org/integration/gaia-central/rev/01a26583feef
Author: Fernando Rodriguez Sela <frsela@tid.es>
Desc: STK: Implemented STK_CMD_PROVIDE_LOCAL_INFO command
2013-08-05 04:40:23 -07:00
Gaia Pushbot
3b9179e228 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/975681e89140
Author: Fernando Rodríguez Sela <frsela@tid.es>
Desc: Merge pull request #11089 from lissyx/bug894868

Bug 894868 - Reset input textbox value for STK INPUT, r=frsela

========

https://hg.mozilla.org/integration/gaia-central/rev/407711160541
Author: Alexandre Lissy <lissyx+github@lissyx.dyndns.org>
Desc: Bug 894868 - Reset input textbox value for STK INPUT
2013-08-05 03:55:23 -07:00
Gaia Pushbot
8ea2e3e4d8 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/a6d5b4bad48c
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Merge pull request #11339 from fabi1cazenave/contactsMissingEntity-bug901444

Bug 901444 - [l10n] missing `duplicate-contacts' entity, r=jmcf

========

https://hg.mozilla.org/integration/gaia-central/rev/b2557517ef2a
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Bug 901444 - [l10n] missing `duplicate-contacts' entity, r=jmcf
2013-08-05 03:45:29 -07:00
Gaia Pushbot
945aac7efe Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/70453bf2e1dd
Author: Francisco Borja Salguero Castellano <fbsc@tid.es>
Desc: Merge pull request #11140 from leob2g/Bug_896958_ShowingWrongErrorMessage_WhenOpeningSMSapp_AfterHomeButton_isPressed

[MMS][896958]Handling the ActivityCanceled event from Gecko in SMS application when Home button is pressed to avaoid application error. r=borjasalguero

========

https://hg.mozilla.org/integration/gaia-central/rev/366a93d4c3f3
Author: sasikala.paruchuri <sasikala.paruchuri@lge.com>
Desc: Handling the ActivityCanceled event from Gecko in SMS application when Home button is pressed to avaoid application error

Removed else statement as per the review comments
2013-08-05 03:21:24 -07:00
Carsten "Tomcat" Book
85ba6d7391 Merge m-c to b2g-inbound 2013-08-05 12:03:22 +02:00
Gaia Pushbot
689f50212c Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/e89beafc7df5
Author: Ian Liu <iliu@mozilla.com>
Desc: Merge pull request #11087 from ian-liu/bluetooth/Bug895779_Update_icon_which_be_provide_via_UX_team_for_assets_@1.5

Bug 895779 - [Bluetooth File Transfer] Update icon which be provide via UX team for assets @1.5, r=@rexboy7

========

https://hg.mozilla.org/integration/gaia-central/rev/367891a05349
Author: ian-liu <iliu@mozilla.com>
Desc: Bug 895779 - [Bluetooth File Transfer] Update icon which be provide via UX team for assets @1.5
2013-08-05 01:10:25 -07:00
Gaia Pushbot
8fb6c0be38 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/cd7b9299822e
Author: gasolin <gasolin@gmail.com>
Desc: Merge pull request #11292 from gasolin/issue-898257

Bug 898257 - HD: costcontrol canvas is blur, r=lodr

========

https://hg.mozilla.org/integration/gaia-central/rev/ce428bf77d8d
Author: gasolin <gasolin@gmail.com>
Desc: Bug 898257 - HD: costcontrol canvas is blur
2013-08-05 00:00:23 -07:00
Gaia Pushbot
6a2f57df11 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/3e7b6feeeade
Author: David Flanagan <dflanagan@mozilla.com>
Desc: Merge pull request #11328 from jimporter/music-fix-mediadb

Bug 901309 - Fix issues with device storage in mediadb.js

========

https://hg.mozilla.org/integration/gaia-central/rev/c21987e9671c
Author: Jim Porter <jporter@mozilla.com>
Desc: Bug 901309 - Fix issues with device storage in mediadb.js
2013-08-04 08:45:24 -07:00
Gaia Pushbot
aaca95947d Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/25f044f2ab15
Author: Dave Hylands <dhylands@gmail.com>
Desc: Merge pull request #11326 from dhylands/dhylands-893284-ds-test

Bug 893284 - Fix ds-test to work with composite support removed. r=djf

========

https://hg.mozilla.org/integration/gaia-central/rev/0c3903493eb9
Author: Dave Hylands <dhylands@gmail.com>
Desc: Bug 893284 - Fix ds-test to work with composite support removed.

========

https://hg.mozilla.org/integration/gaia-central/rev/c508b25f290c
Author: Dave Hylands <dhylands@gmail.com>
Desc: Merge pull request #11325 from dhylands/dhylands-893282-mediadb

Bug 893282 - Fix mediadb to scan all device storage areas. r=djf

========

https://hg.mozilla.org/integration/gaia-central/rev/1e490c3e8206
Author: Dave Hylands <dhylands@gmail.com>
Desc: Bug 893282 - Fix mediadb to scan all device storage areas.
2013-08-02 16:40:25 -07:00
Gaia Pushbot
5a2df3fb88 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/8561359fa10c
Author: David Flanagan <dflanagan@mozilla.com>
Desc: Merge pull request #11241 from huchengtw-moz/gallery/Bug_899098_database_upgrade_message_is_present_when_sd_card_is_empty

Bug 899098 - Database Upgrade message is present in Gallery even if the ... r=davidflanagan

========

https://hg.mozilla.org/integration/gaia-central/rev/34b9ba340ab6
Author: John Hu <johu@mozilla.com>
Desc: Bug 899098 - Database Upgrade message is present in Gallery even if the SD card is empty
2013-08-02 15:45:23 -07:00
Rail Aliiev
0623a8b6ca Bug 901061 - [Leo] Please update the leo blobs to v08o image blobs for all branches of leo. r=hwine 2013-08-02 16:17:35 -04:00
Gaia Pushbot
80d582557d Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/7669b3265def
Author: Vivien Nicolas <21@vingtetun.org>
Desc: Bug 901044 - Everything.me needs additional strings for the search bar. r=pike
2013-08-02 12:55:23 -07:00
Gaia Pushbot
49543ba27f Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/149536c8959f
Author: Fernando Campo <fernando.campo@o2.com>
Desc: Merge pull request #11295 from fcampo/FB_resolution_images

Bug 900361 - Enable customization per target device of resolution for FB images (r=jmcf)

========

https://hg.mozilla.org/integration/gaia-central/rev/f65bdab88e13
Author: Fernando Campo <fernando.campo@o2.com>
Desc: Bug 900361 - Enable customization per target device of resolution for FB images
2013-08-02 06:15:23 -07:00
Gaia Pushbot
7654c2b7fb Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/eb07abf78fa9
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Merge pull request #11201 from fabi1cazenave/pdfViewer-bug898408

Bug 898408: do not optimize l10n resources for PDF.js, r=ochameau

========

https://hg.mozilla.org/integration/gaia-central/rev/ae2f601c47f8
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Bug 898408: do not optimize l10n resources for PDF.js
2013-08-02 06:05:22 -07:00
Gaia Pushbot
58bc5bd51b Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/f02326672a65
Author: evanxd <itoyxd@gmail.com>
Desc: Merge pull request #11289 from evanxd/bug-900363

Bug 900363 - Remove the useless images.

========

https://hg.mozilla.org/integration/gaia-central/rev/1df503fd0a0e
Author: Evan Xd <itoyxd@gmail.com>
Desc: Bug 900363 - Remove the useless images.
2013-08-01 21:15:24 -07:00
Gaia Pushbot
a40cbc6a99 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/5e9cda8e7d4a
Author: Dominic Kuo <dkuo@mozilla.com>
Desc: Merge pull request #11054 from dominickuo/bug-884720

Bug 884720 - No autoplay for music and video pickers, r=jimporter

========

https://hg.mozilla.org/integration/gaia-central/rev/4a7fd6733125
Author: Dominic Kuo <dkuo@mozilla.com>
Desc: Bug 884720 - No autoplay for music and video pickers
2013-08-01 21:05:23 -07:00
Gaia Pushbot
bf141f9712 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/b604b6c90a16
Author: steveck-chung <schung@mozilla.com>
Desc: Merge pull request #11267 from steveck-chung/Bug-897942

Bug 897942 - [SMS] SMS contact lookup type always displayed in English. r=gnarf37

========

https://hg.mozilla.org/integration/gaia-central/rev/d123771f5392
Author: Steve Chung <schung@mozilla.com>
Desc: Bug 897942 - [SMS] SMS contact lookup type always displayed in English
2013-08-01 20:35:23 -07:00
Gaia Pushbot
a755bcee84 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/f2dab90e4919
Author: Rex KM Lee <rexboy@mozilla.com>
Desc: Merge pull request #11282 from rexboy7/fixfm-bug899496-master

Bug 899496 - [Helix][FM][HD] UI tweak for Hidpi device

========

https://hg.mozilla.org/integration/gaia-central/rev/56dbba3a421f
Author: Rex Lee <rexboy@mozilla.com>
Desc: Bug 899496 - [Helix][FM][HD] UI tweak for Hidpi device
2013-08-01 20:20:23 -07:00
Gaia Pushbot
e2c0da74d3 Bumping gaia.json for 2 gaia-central revision(s)
Truncated some number of revisions since the previous bump.

========

https://hg.mozilla.org/integration/gaia-central/rev/134f237a04b8
Author: Dale  Harvey <dale@arandomurl.com>
Desc: Merge pull request #11257 from daleharvey/814431

Bug 814431 - Add hit states to buttons. r=benfrancis

========

https://hg.mozilla.org/integration/gaia-central/rev/f4d6904f5bca
Author: Dale Harvey <dale@arandomurl.com>
Desc: Bug 814431 - Add hit states to buttons
2013-08-01 17:27:45 -07:00
Ryan VanderMeulen
b699da806f Merge m-c to b2g-inbound. 2013-08-01 20:26:14 -04:00
Jan Jongboom
67d196a0bf Bug 885692 - Implement InputMethodManager for virtual keyboard layout switching. r=yxl 2013-08-01 13:16:43 -04:00
Ryan VanderMeulen
9afe1e0aca Backed out changeset a850d7025a3c (bug 885692) to see if it fixes OSX asserts on a CLOSED TREE. 2013-08-01 15:22:21 -04:00
Jan Jongboom
d06895b310 Bug 885692 - Implement InputMethodManager for virtual keyboard layout switching. r=yxl 2013-08-01 13:16:43 -04:00
Gaia Pushbot
68b76c922e Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/6b754b3426ae
Author: Rudy Lu <left.lu@gmail.com>
Desc: Merge pull request #10959 from RudyLu/keyboard/swipe_hide_keyboard_3

Bug 805586 - support "Swipe down" to hide the keyboard. r=janjongboom

========

https://hg.mozilla.org/integration/gaia-central/rev/8bd9295f0f68
Author: Rudy Lu <left.lu@gmail.com>
Desc: Bug 805586 - Support "Swipe down" gesture to hide the keyboard.

1. To fix the issue that keyboard may ignore all touch event after swipe
down.
2. Also change from asyncStorage to mozSettings to keep ftu.enabled, so
that we could disable it when doing automated testing of keyboard.
2013-08-01 04:20:23 -07:00
Gene Lian
f6fee5ada5 Bug 850140 - B2G MMS: implement MmsService.handleDeliveryIndication() to handle delivery report (part 2, handle delivery report). r=vicamo a=koi+ 2013-07-31 15:24:07 +08:00
Gaia Pushbot
424e9d0842 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/e8ded466224d
Author: George <georgeiscoming@gmail.com>
Desc: Merge pull request #11293 from cctuan/898294

Bug 898294 - [Gallery] Statusbar show when switching from camera app to gallery

========

https://hg.mozilla.org/integration/gaia-central/rev/f71ce1382d07
Author: cctuan <georgeiscoming@gmail.com>
Desc: Bug 898294 - [Gallery] Statusbar show when switching from camera app to gallery
2013-08-01 03:45:28 -07:00
Gaia Pushbot
4f9c336bf6 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/c0b6498daf59
Author: Yuren Ju <yurenju@gmail.com>
Desc: Merge pull request #11218 from yurenju/898256

bug 898256 - Use new 1.5x assets from UX for shared style r=basiclines

========

https://hg.mozilla.org/integration/gaia-central/rev/e4c746dd723e
Author: Yuren Ju <yurenju@gmail.com>
Desc: bug 898256 - Use new 1.5x assets from UX for shared style
2013-08-01 03:00:23 -07:00
Gaia Pushbot
537880a1e4 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/5814ff026554
Author: George <georgeiscoming@gmail.com>
Desc: Merge pull request #11291 from cctuan/900355

Comment Bug 900355 - [System] Keyboard show unexpectedly after pressing home from PUK ebtering screen

========

https://hg.mozilla.org/integration/gaia-central/rev/76008a41ee0d
Author: cctuan <georgeiscoming@gmail.com>
Desc: Bug 900355 - [System] Keyboard show unexpectedly after pressing home from PUK ebtering screen
2013-08-01 01:55:23 -07:00
Gaia Pushbot
16ea158bc6 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/5a6df093104e
Author: James Lal <james@lightsofapollo.com>
Desc: Merge pull request #11285 from lightsofapollo/revert-unit-test-bustage

Revert "Bug 806374 - Don't store phone's wallpaper or the dialer rington...

========

https://hg.mozilla.org/integration/gaia-central/rev/9814686d42e2
Author: James Lal <james@lightsofapollo.com>
Desc: Revert "Bug 806374 - Don't store phone's wallpaper or the dialer ringtone or the notification ringtone as a data: URI r=vingtetun"

This reverts commit 996244ec35d2d151a1ae5ac4e17ea0ffcdde8aa0.
2013-08-01 01:10:22 -07:00
Gaia Pushbot
0d31943c75 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/cd43ee3c6396
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Merge pull request #11245 from jmcanterafonseca/fix_897786

Bug 897786 - [Buri][Contacts]The contact pic display abnormal when link ...

========

https://hg.mozilla.org/integration/gaia-central/rev/0fc804028707
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Bug 897786 - [Buri][Contacts]The contact pic display abnormal when link contact with Gmail and facebook
2013-08-01 00:45:23 -07:00
Gaia Pushbot
30cbdf3ba3 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/c9f00ec7a9b5
Author: James Burke <jrburke@gmail.com>
Desc: Merge pull request #11064 from jrburke/bug892069-email-startup-trigger

Bug 892069 [email] Optimize startup based on app trigger r=asuth

========

https://hg.mozilla.org/integration/gaia-central/rev/f6dcf5456b0d
Author: jrburke <jrburke@gmail.com>
Desc: Bug 892069 [email] Optimize startup based on app trigger
2013-07-31 17:50:25 -07:00
Gaia Pushbot
a11f10eae4 Bumping gaia.json for 3 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/f522e212c86a
Author: David Flanagan <dflanagan@mozilla.com>
Desc: Merge pull request #11202 from davidflanagan/bug896907

Bug 896907: let the user preview a captured video before picking it r=daleharvey,johnhu

========

https://hg.mozilla.org/integration/gaia-central/rev/b682c140d18f
Author: David Flanagan <dflanagan@mozilla.com>
Desc: Bug 896907: let the user preview a captured video before picking it

address review comments

========

https://hg.mozilla.org/integration/gaia-central/rev/f423657e3f3d
Author: John Ford <john@johnford.info>
Desc: Revert "Bug 782211 - Update Gaia with additional functionality to support Notification API."

This reverts commit 359b76d47ad2694c7237332797b818c3f5b0e53b.
2013-07-31 16:55:24 -07:00
Gaia Pushbot
454ebad8ff Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/f4043cffc443
Author: Fabrice Desré <fabrice@desre.org>
Desc: Bug 900208 - Opensearch plugins don't need to be stored stringified r=kgrandon
2013-07-31 16:45:23 -07:00
Gaia Pushbot
96fadcae95 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/3ed7544ee8f4
Author: vingtetun <21@vingtetun.org>
Desc: Merge pull request #11230 from KevinGrandon/content2-initial

Bug 898352 - Implement homescreen rocket bar and opensearch.

========

https://hg.mozilla.org/integration/gaia-central/rev/922968c62be8
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Bug 898352 - Implement homescreen rocket bar and opensearch r=vingtetun
2013-07-31 10:00:23 -07:00
Gaia Pushbot
0688f978cb Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/79c130ec5ca1
Author: Fabrice Desré <fabrice@desre.org>
Desc: Bug 806374 - Don't store phone's wallpaper or the dialer ringtone or the notification ringtone as a data: URI r=vingtetun

========

https://hg.mozilla.org/integration/gaia-central/rev/68204ea0ed28
Author: Fabrice Desré <fabrice@desre.org>
Desc: Bug 806374 - Don't store phone's wallpaper or the dialer ringtone or the notification ringtone as a data: URI r=vingtetun
2013-07-31 09:05:23 -07:00
Gaia Pushbot
8964234863 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/a39946ecff22
Author: Mike Pennisi <mike@mikepennisi.com>
Desc: Bug 897117 - [Clock] ClockView methods are not fully covered by unit tests r=ianliu

This commit also fixes a bug in the tested method's implementation,
where the minute boundary was being calculated incorrectly. This bug
would induce the method to asynchronously recurse during the second of
time before the minute rolled over.

========

https://hg.mozilla.org/integration/gaia-central/rev/c09c5d448650
Author: Mike Pennisi <mike@mikepennisi.com>
Desc: Bug 897103 - [Clock] Utility methods are not fully covered by unit tests r=ianliu
2013-07-31 08:10:23 -07:00
Gaia Pushbot
a7160f090d Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/d791136d48f3
Author: Mike Pennisi <mike@mikepennisi.com>
Desc: Bug 897090 - [Clock] L10n mocking is fragmented across test files r=ianliu

========

https://hg.mozilla.org/integration/gaia-central/rev/0ad3e929c87a
Author: Mike Pennisi <mike@mikepennisi.com>
Desc: Bug 897089 - [Clock] Utility methods pollute global scope r=ianliu

Organizing utility methods under a single namespace increases code
readability and minimizes global namespace pollution.
2013-07-31 08:00:26 -07:00
Gaia Pushbot
a44fdce7fd Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/9e7b27494d61
Author: Olav Nymoen <olav@comoyo.com>
Desc: Merge pull request #11251 from comoyo/replaceable_homescreen

Bug 898330 - Add a panel in the Settings app in order to switch homescreens. r=vingtetun

========

https://hg.mozilla.org/integration/gaia-central/rev/ad23abaf8f70
Author: Olav Nymoen <olav@comoyo.com>
Desc: Bug 898330 - Add a panel in the Settings app in order to switch homescreens. r=vingtetun
2013-07-31 06:40:23 -07:00
Gaia Pushbot
ada6e750fc Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/ddecb0524d95
Author: Julien Wajsberg <felash@gmail.com>
Desc: Merge pull request #11111 from TheoChevalier/Bug859035-unknown-size-author

Bug 859035 - [l10n] Do not use the same unknown entity for Size & Author...
r=julien

========

https://hg.mozilla.org/integration/gaia-central/rev/e13a2b2fb4ae
Author: TheoChevalier <theo.chevalier11@gmail.com>
Desc: Bug 859035 - [l10n] Do not use the same unknown entity for Size & Author when installing a WebApp
2013-07-31 06:30:25 -07:00
Gaia Pushbot
a3f89ad0f5 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/ab50af1c1473
Author: Dale  Harvey <dale@arandomurl.com>
Desc: Merge pull request #11213 from mpizza/Bug_898341_Camera_disable_flashlight

Bug 898341 - The flashlight icon is still here when switching to front camera. r=daleharvey

========

https://hg.mozilla.org/integration/gaia-central/rev/3f21dae599a9
Author: mpizza <mmm198219@gmail.com>
Desc: Bug 898341 - The flashlight icon is still here after switching to front-facing camera
2013-07-31 05:35:23 -07:00
Gaia Pushbot
23fd930ee6 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/1579922fae96
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Merge pull request #11255 from fabi1cazenave/l10nUpdateNotification-bug892031

Bug 892031: [Notification] the "update available" notification is not translated when the language is changed, r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/aa03ef87e218
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Bug 892031: [Notification] the "update available" notification is not translated when the language is changed

 • use mozL10n.localize() to ensure all element carry their l10n-data attributes
 • fix l10n.js so that element properties can be pluralized, too
2013-07-31 02:45:27 -07:00
Gaia Pushbot
220d101a90 Bumping gaia.json for 6 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/12379f829ad1
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Merge pull request #11247 from jmcanterafonseca/fb_link_broken

Bug 899503 - FB Link is broken after landing bug 895824

========

https://hg.mozilla.org/integration/gaia-central/rev/589c5e9d560c
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Bug 899503 - FB Link is broken after landing bug 895824

========

https://hg.mozilla.org/integration/gaia-central/rev/fe2329f31cf3
Author: George <georgeiscoming@gmail.com>
Desc: Merge pull request #11260 from cctuan/899422

Bug 899422 - [System][HD] lack of image assets

========

https://hg.mozilla.org/integration/gaia-central/rev/4acc89b1bb75
Author: cctuan <georgeiscoming@gmail.com>
Desc: Bug 899422 - [System][HD] lack of image assets

========

https://hg.mozilla.org/integration/gaia-central/rev/8420b76828bb
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Merge pull request #11248 from jmcanterafonseca/fix_fb_passive_mode

Bug 899525 - In passive mode merge do not match existing FB Contacts

========

https://hg.mozilla.org/integration/gaia-central/rev/02a817b06f5e
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Bug 899525 - In passive mode merge do not match existing FB Contacts
2013-07-31 00:55:23 -07:00
Gaia Pushbot
eb5ed54448 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/af7ef38d9a64
Author: David Flanagan <dflanagan@mozilla.com>
Desc: Merge pull request #11231 from davidflanagan/bug896363

Bug 896363: Add an auto-correct dictionary for Catalan r=RudyLu

========

https://hg.mozilla.org/integration/gaia-central/rev/cbdbf160127c
Author: David Flanagan <dflanagan@mozilla.com>
Desc: Bug 896363: Add an auto-correct dictionary for Catalan

also correctly handle and capitalize multi-character key alternatives
2013-07-30 23:00:24 -07:00
Gaia Pushbot
90e46a99a8 Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/7e8284bea36c
Author: Rick Waldron <waldron.rick@gmail.com>
Desc: Bug 899003 - [Buri][Buri][SMS] Long press on number in message: menu includes "Call" option r=gnarf

https://bugzilla.mozilla.org/show_bug.cgi?id=899003
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2013-07-30 13:45:23 -07:00
Gaia Pushbot
f5ec94d1ab Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/d2343a615807
Author: William Chen <wchen@mozilla.com>
Desc: Bug 782211 - Update Gaia with additional functionality to support Notification API.
2013-07-30 11:50:24 -07:00
Gaia Pushbot
bf26e2b1dd Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/775b20c42b52
Author: Julien Wajsberg <felash@gmail.com>
Desc: Bug 890443 - [SMS] the "fixed header" style and transitions should be adjusted so that it's not jumping when changing header r=schung

Important changes
* changes how the fixed header is found. Now we're iterating starting with the
  top instead of the bottom. In the SMS app, the most common cases is when the
  list is not scrolled so much, and therefore starting at the top will likely be
  way faster once the list is long.
* we don't position the header in the same loop, now we position the header
  depending on the next header, if it exists.
* we use a specific hiding class instead of specifying the 100% transform
  translation in the js code. Also, using a 100% transform translation is used
  instead of display none, so that we can get some necessary measurements in the
  init method. Most notably, we need to take into account the view's padding
  top.

Less important changes:
* changed the desktop mock so that we have more headers when loading in Firefox
* check that we have mozSetMessageHandler before using it so that we can launch
  the app in main Firefox
* moved the first header's margin top to the view's padding top. This makes it
  easier to calculate the exact location to trigger the fixed header switch
  effect.
2013-07-30 11:40:24 -07:00
Gaia Pushbot
3c6d12f1bf Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/1e3fa6fe4ab9
Author: Justin Lebar <justin.lebar@gmail.com>
Desc: Merge pull request #11236 from jlebar/apploaded-listener

Bug 899328 - Register only one listener for mozbrowserloadend and appload...

========

https://hg.mozilla.org/integration/gaia-central/rev/836f32732fee
Author: Justin Lebar <justin.lebar@gmail.com>
Desc: Bug 899328 - Register only one listener for mozbrowserloadend and appopen on a given app iframe.

This prevents us from leaking listeners.
2013-07-30 10:45:24 -07:00
Michael Wu
8e55a995e4 Bug 898898 - Add support for building on gonk-JB MR2, r=glandium 2013-07-30 13:36:54 -04:00
Gaia Pushbot
b028ba6023 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/b716117c0391
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Merge pull request #11235 from KevinGrandon/bug_872500_update_manifests

Bug 872500 - Update manifests r=baku

========

https://hg.mozilla.org/integration/gaia-central/rev/3e12b71f13f5
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Bug 872500 - Update manifests
2013-07-30 08:40:28 -07:00
Gaia Pushbot
826e54b82e Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/fd0e7d9b0435
Author: Dale  Harvey <dale@arandomurl.com>
Desc: Merge pull request #11214 from mpizza/Bug_898358_video_recording_disable_switchBTN

Bug 898358 - [Camera][Helix][V1.1.0 HD] The switching icon is still disp r=daleharvey

========

https://hg.mozilla.org/integration/gaia-central/rev/b711390d891a
Author: mpizza <mmm198219@gmail.com>
Desc: Bug 898358 - [Camera][Helix][V1.1.0 HD] The switching icon is still displayed here while user is recording a video
2013-07-30 08:30:22 -07:00
Gaia Pushbot
d3e986ac0f Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/c16a68a6edd5
Author: Dale  Harvey <dale@arandomurl.com>
Desc: Merge pull request #11216 from mpizza/Bug_898358_turnOff_flashLight_frontFacingMode

Bug 898372 - [Camera][Helix][V1.1.0 HD] FxOS doesn't turn off the light r=daleharvey

========

https://hg.mozilla.org/integration/gaia-central/rev/0d12748b4ec0
Author: mpizza <mmm198219@gmail.com>
Desc: Bug 898372 - [Camera][Helix][V1.1.0 HD] FxOS doesn't turn off the light after user switched to front-facing camera
2013-07-30 08:05:23 -07:00
Gaia Pushbot
16228b7098 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/8e61d48cd62b
Author: Andrew Sutherland <asutherland@asutherland.org>
Desc: Merge pull request #11246 from ian-liu/email/Bug887700_cannot_load_email_in_Inbox_after_OTA_updated

Bug 887700 - [OTA] [Data Migration] [Email] Cannot load email in Inbox after update from v1.0.1 to v1.1.0. r=asuth

========

https://hg.mozilla.org/integration/gaia-central/rev/de3ad2b843b8
Author: ian-liu <iliu@mozilla.com>
Desc: Bug 887700 - [OTA] [Data Migration] [Email] Cannot load email in Inbox after update from v1.0.1 to v1.1.0
2013-07-30 07:00:24 -07:00
Gaia Pushbot
5bb32a98d9 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/a2800243e083
Author: Ben Francis <ben@tola.me.uk>
Desc: Merge pull request #11237 from gasolin/issue-897920

Bug 897920 - [Browser] remove redundant resource r=benfrancis

========

https://hg.mozilla.org/integration/gaia-central/rev/cce5d8812de4
Author: gasolin <gasolin@gmail.com>
Desc: Bug 897920 - [Browser] remove redundant resource
2013-07-30 06:25:23 -07:00
Gaia Pushbot
ea5435834e Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/cc6529f11643
Author: Ben Kelly <bkelly@mozilla.com>
Desc: Merge pull request #11233 from wanderview/contacts-update-tel-type

Bug 898241: Use l10n type for tel update activity.  r=jmcf

========

https://hg.mozilla.org/integration/gaia-central/rev/07314a1896fa
Author: Ben Kelly <ben@wanderview.com>
Desc: Bug 898241: Use l10n type for tel update activity.
2013-07-30 06:15:24 -07:00
Gaia Pushbot
69a78f739c Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/10f16f6a15f8
Author: gasolin <gasolin@gmail.com>
Desc: Merge pull request #11219 from gasolin/issue-887670vs

Bug 887670 - [Test][System] Unit test for ValueSelector, r=rudy

========

https://hg.mozilla.org/integration/gaia-central/rev/b4ba3673c02d
Author: gasolin <gasolin@gmail.com>
Desc: Bug 887670 - [Test][System] Unit test for ValueSelector

========

https://hg.mozilla.org/integration/gaia-central/rev/b2220c4242ba
Author: gasolin <gasolin@gmail.com>
Desc: Merge pull request #11188 from gasolin/issue-887670ip

Bug 887670 - [Test][System] Unit test for InputParser, r=rudy

========

https://hg.mozilla.org/integration/gaia-central/rev/7e84d1f4fef4
Author: gasolin <gasolin@gmail.com>
Desc: Bug 887670 - [Test][System] Unit test for InputParser
2013-07-30 05:20:24 -07:00
Gaia Pushbot
6197b9d18f Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/1ff2bfaa9a51
Author: George <georgeiscoming@gmail.com>
Desc: Merge pull request #11198 from cctuan/898701

Bug 898701 - [Gallery] image in thumbnails display not correctly

========

https://hg.mozilla.org/integration/gaia-central/rev/008f10dbc951
Author: cctuan <georgeiscoming@gmail.com>
Desc: Bug 898701 - [Gallery] image in thumbnails display not correctly
2013-07-30 04:55:23 -07:00
Gaia Pushbot
30e556bc5d Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/cd18c67ac910
Author: John Hu <johu@mozilla.com>
Desc: Merge pull request #11215 from huchengtw-moz/settings/Bug_897918_settings_app_should_use_hi-res_image

Bug 897918 - Settings app should use hi-res icons on hd phones, r=arthurcc

========

https://hg.mozilla.org/integration/gaia-central/rev/8a92813acb82
Author: John Hu <johu@mozilla.com>
Desc: Bug 897918 - Settings app should use hi-res icons on hd phones
2013-07-30 04:35:23 -07:00
Gaia Pushbot
5f95ac6931 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/3cc23620cc2e
Author: Rex KM Lee <rexboy@mozilla.com>
Desc: Merge pull request #11186 from rexboy7/fix-bug896901

Bug 896901 - [Email] Change style for account type selector of manual se...

========

https://hg.mozilla.org/integration/gaia-central/rev/1511a9f6f78f
Author: Rex Lee <rexboy@mozilla.com>
Desc: Bug 896901 - [Email] Change style for account type selector of manual setup
2013-07-30 01:15:23 -07:00
Gaia Pushbot
4c25ceb69a Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/ab71f112f089
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Merge pull request #11185 from jmcanterafonseca/rescue_match_name

Bug 898345 - Contacts matcher in both passive an active mode must suppor...

========

https://hg.mozilla.org/integration/gaia-central/rev/62b6eecc70e2
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Bug 898345 - Contacts matcher in both passive an active mode must support matching by the name field
2013-07-30 00:05:23 -07:00
Gaia Pushbot
fdf3658f7f Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/cdca48f0f366
Author: George <georgeiscoming@gmail.com>
Desc: Merge pull request #11174 from cctuan/896393

Bug 896393 - [Dialer] Keyboard doesnt show in apps when moved from Dialer Contact to other apps.

========

https://hg.mozilla.org/integration/gaia-central/rev/78daf023a2e6
Author: cctuan <georgeiscoming@gmail.com>
Desc: Bug 896393 - [Dialer] Keyboard doesnt show in apps when moved from Dialer Contact to other apps.
2013-07-29 20:20:22 -07:00
Gaia Pushbot
e8a8a95013 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/3dbea8a3e643
Author: Arthur Chen <crh0716@gmail.com>
Desc: Merge pull request #11211 from crh0716/896942_master

Bug 896942 - Fix assets r=rexboy

========

https://hg.mozilla.org/integration/gaia-central/rev/d3d92c48161e
Author: crh0716 <crh0716@gmail.com>
Desc: Bug 896942 - Fix assets
2013-07-29 19:15:24 -07:00
Gaia Pushbot
42f6e44a93 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/09d7e6724358
Author: Jim Porter <squibblyflabbetydoo@gmail.com>
Desc: Merge pull request #11234 from mozsquib/music-ogg-title

Bug 877474 - [music] Music app shows filename *and* title field for Ogg Vorbis files

========

https://hg.mozilla.org/integration/gaia-central/rev/02a968daf649
Author: Jim Porter <jporter@mozilla.com>
Desc: Bug 877474 - [music] Music app shows filename *and* title field for Ogg Vorbis files; r=djf
2013-07-29 18:06:23 -07:00
Fernando Jiménez
c0333c1f9e Bug 892068 - Expose MCC/MNC to payment providers in mozPay() so Webpay can disable payments per region. r=fabrice 2013-07-30 00:50:22 +02:00
Fernando Jiménez
dae0cfe91d Bug 816564 - Silent SMS to Authenticate Device for Mobile Billing. Part 2: mozPaymentProvider. r=vicamo, fabrice 2013-07-30 00:50:22 +02:00
Gaia Pushbot
2a24b88091 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/74877b52dcb3
Author: Fabrice Desré <fabrice@desre.org>
Desc: Merge pull request #11228 from karlcow/master

Bug 899162 - Remove UA override for tumblr.com and arstechnica.com r=lmandel

========

https://hg.mozilla.org/integration/gaia-central/rev/2b169af1a2a1
Author: karl <karl+github@la-grange.net>
Desc: Remove UA override for tumblr.com (Bug 826361) and arstechnica.com (Bug 843149)
2013-07-29 11:45:24 -07:00
Gaia Pushbot
49181652d0 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/bb4a52c0438c
Author: Fernando Jiménez Moreno <ferjmoreno@gmail.com>
Desc: Merge pull request #11229 from ferjm/paymenteventlistener

Bug 899153 - TypeError: this.removeEventListener is not a function in pa...

========

https://hg.mozilla.org/integration/gaia-central/rev/dd1834c7454a
Author: Fernando Jiménez <ferjmoreno@gmail.com>
Desc: Bug 899153 - TypeError: this.removeEventListener is not a function in payment.js. r=vingtetun
2013-07-29 11:15:24 -07:00
Tomoaki Konno
f7cd8c637c Bug 797561 - Expose a server tcp socket API to web applications r=honza 2013-07-29 10:36:43 -07:00
Gaia Pushbot
40cd27c9c8 Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/e40805193a37
Author: Mike Pennisi <mike@mikepennisi.com>
Desc: Bug 897088 - [Clock] Modules incorrectly organized r=ianliu
2013-07-29 09:00:26 -07:00
Gaia Pushbot
e232f1725f Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/efd78e2f24c5
Author: Francisco Jordano <arcturus@ardeenelinfierno.com>
Desc: Merge pull request #11197 from AntonioMA/bug-896945_2

Bug 896945 Customize the open-app treatment based on the showApp and showOnly flags r=alive r=fabrice

========

https://hg.mozilla.org/integration/gaia-central/rev/4e46fd4d5cfd
Author: Antonio M. Amaya <amac@peregrin>
Desc: Bug 896945 Customize the open-app treatment based on the showApp and showOnly flags r=alive r=fabrice
2013-07-29 08:35:23 -07:00
Gaia Pushbot
9c195d5baa Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/905b27d99e15
Author: vingtetun <21@vingtetun.org>
Desc: Merge pull request #11168 from jlebar/wireless-network-string

Bug 868510 - Change the no wifi found string to "No wireless networks fo...

========

https://hg.mozilla.org/integration/gaia-central/rev/3dadb9aa8e75
Author: Justin Lebar <justin.lebar@gmail.com>
Desc: Bug 868510 - Change the no wifi found string to "No wireless networks found".
2013-07-29 07:20:24 -07:00
Gaia Pushbot
4a5bcb4a4e Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/30af13f27841
Author: Jose Antonio Olivera Ortega <josea.olivera@gmail.com>
Desc: Merge pull request #11222 from jaoo/886758

Bug 886758 - [Settings] Users are not able to disable the sim lock from settings app when the sim card is not ready. r=arthurcc

========

https://hg.mozilla.org/integration/gaia-central/rev/2d29809a2de5
Author: Jose Antonio Olivera Ortega <josea.olivera@gmail.com>
Desc: Bug 886758 - [Settings] Users are not able to disable the sim lock from settings app when the sim card is not ready
2013-07-29 03:25:23 -07:00
Gaia Pushbot
dcbe02bcf5 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/e3ce8d0e4f9c
Author: gasolin <gasolin@gmail.com>
Desc: Merge pull request #11176 from gasolin/issue-897916

Bug 897916 - HD: browser resources need update, r=rex

========

https://hg.mozilla.org/integration/gaia-central/rev/fe7fc3e8c15d
Author: gasolin <gasolin@gmail.com>
Desc: Bug 897916 - HD: browser resources need update
2013-07-29 00:35:24 -07:00
Gaia Pushbot
f1ebaf2d20 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/481bc5b521cd
Author: steveck-chung <schung@mozilla.com>
Desc: Merge pull request #11209 from steveck-chung/hdpi-image-assets

Bug 898299 - hdpi/xhdpi Image assets polishing in Message app. r=rexboy

========

https://hg.mozilla.org/integration/gaia-central/rev/680657d97a21
Author: Steve Chung <schung@mozilla.com>
Desc: Bug 898299 - hdpi/xhdpi Image assets polishing in Message app
2013-07-29 00:15:25 -07:00
Antonio M. Amaya
d1d45aa4d0 Bug 896945 - Allow System Messages to inform gaia they should bring up the receiving app in a configurable way. r=gene,fabrice a=leo+ 2013-07-25 14:36:15 +02:00
Gaia Pushbot
573dddaad8 Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/c2a13d1a2278
Author: John Hu <johu@mozilla.com>
Desc: Merge pull request #11210 from huchengtw-moz/video/Bug_898324_there_is_1px_shifting

Bug 898324 - There is 1px shifting down of selection border, r=rexboy

========

https://hg.mozilla.org/integration/gaia-central/rev/ebdadf56095e
Author: John Hu <johu@mozilla.com>
Desc: Bug 898324 - There is 1px shifting down of selection border

========

https://hg.mozilla.org/integration/gaia-central/rev/473773a65d55
Author: John Hu <johu@mozilla.com>
Desc: Merge pull request #11207 from huchengtw-moz/video/Bug_898377_missing_1.5x_icon

Bug 898377 - The 1.5x icon is missing in Video app on Gaia master branch, r=rexboy

========

https://hg.mozilla.org/integration/gaia-central/rev/e32d1a3520c0
Author: John Hu <johu@mozilla.com>
Desc: Bug 898377 - The 1.5x icon is missing in Video app on Gaia master branch
2013-07-28 23:50:23 -07:00
Gaia Pushbot
413c877acd Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/a36df4782c67
Author: Arthur Chen <crh0716@gmail.com>
Desc: Merge pull request #11189 from crh0716/898937

Bug 898937 - Add background size to the thumb r=rexboy

========

https://hg.mozilla.org/integration/gaia-central/rev/591a4783221c
Author: crh0716 <crh0716@gmail.com>
Desc: Bug 898937 - Add background size to the thumb
2013-07-28 22:20:23 -07:00
Gaia Pushbot
62207990bf Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/bb821fbbbdd5
Author: Arthur Chen <crh0716@gmail.com>
Desc: Merge pull request #10964 from crh0716/893625

Bug 893625 - Support hdpi resolution device and add 1.5x assets r=dkuo

========

https://hg.mozilla.org/integration/gaia-central/rev/e95392a95276
Author: Arthur Chen <crh0716@gmail.com>
Desc: Bug 893625 - Support hdpi resolution device and add 1.5x assets
2013-07-28 22:10:23 -07:00
Gaia Pushbot
c17c44f05f Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/1f604f09768f
Author: gasolin <gasolin@gmail.com>
Desc: Merge pull request #11199 from gasolin/issue-898260

Bug 898260 - HD: costcontrol resources need update, r=rex

========

https://hg.mozilla.org/integration/gaia-central/rev/d48ebe27479c
Author: gasolin <gasolin@gmail.com>
Desc: Bug 898260 - HD: costcontrol resources need update
2013-07-28 21:35:22 -07:00
Gaia Pushbot
1eab1a4846 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/da3a43fa2e36
Author: steveck-chung <schung@mozilla.com>
Desc: Merge pull request #11178 from steveck-chung/bug-895817

Bug 895817 - [SMS/MMS] Selecting a contact from facebook is not working. r=gnarf37

========

https://hg.mozilla.org/integration/gaia-central/rev/71fe21f9d44a
Author: Steve Chung <schung@mozilla.com>
Desc: Bug 895817 - [SMS/MMS] Selecting a contact from facebook is not working
2013-07-28 19:35:22 -07:00
Gaia Pushbot
d9cfbf7980 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/39737621d1f3
Author: steveck-chung <schung@mozilla.com>
Desc: Merge pull request #11187 from steveck-chung/Message-youtube-sharing

Bug 896956 - [Youtube] Share video via SMS. r=gnarf37

========

https://hg.mozilla.org/integration/gaia-central/rev/25da8aea107f
Author: Steve Chung <schung@mozilla.com>
Desc: Bug 896956 - [Youtube] Share video via SMS
2013-07-28 19:21:23 -07:00
Gaia Pushbot
0cae76d1c0 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/6479aa2b65e0
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Merge pull request #11194 from fabi1cazenave/l10nUnescape-bug898316

Bug 898316: escape \uXXXX unicode character codes in .properties files, r=Pike

========

https://hg.mozilla.org/integration/gaia-central/rev/83a0108bbb99
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Bug 898316: escape \uXXXX character codes in .properties files
2013-07-28 16:45:23 -07:00
Philipp Kewisch
1fc0fe161a Fix bug 880511 - Web Console and Style Editor make hardcoded references to the browser window. r=dcamp 2013-08-01 10:51:24 +02:00
Gaia Pushbot
213129a98c Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/878cc221e0fd
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Merge pull request #11200 from fabi1cazenave/cellBroadcastLabel-bug890151

Bug 890151 - [CB] CH50 message should not be displayed when the Cell Broadcast service is off, r=kaze

========

https://hg.mozilla.org/integration/gaia-central/rev/b10f7f809290
Author: hyuna.cho <hyuna.cho@lge.com>
Desc: Bug 890151 - [CB] CH50 CB message should not be displayed when the Cell Broadcast service is off
2013-07-27 11:10:23 -07:00
Nikhil Marathe
62d6c477f0 Bug 884897 - Remove dom_push.xpt from installers. r=dougt
--HG--
extra : amend_source : aa3296f0baed0891ad5bfa81472381c4db21b160
2013-08-02 17:19:47 -07:00
Gaia Pushbot
59ae0e519d Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/302b622d781c
Author: gasolin <gasolin@gmail.com>
Desc: Merge pull request #11173 from gasolin/issue-887670sdp

Bug 887670 - [Test][System] Unit test for SpinDatePicker, r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/67564a09ab9e
Author: gasolin <gasolin@gmail.com>
Desc: Bug 887670 - [Test][System] Unit test for SpinDatePicker

========

https://hg.mozilla.org/integration/gaia-central/rev/ae21684b855f
Author: gasolin <gasolin@gmail.com>
Desc: Merge pull request #11152 from gasolin/issue-887670vp

Bug 887670 - [Test][System] Unit test for Value Picker, r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/fd6ac317518a
Author: gasolin <gasolin@gmail.com>
Desc: Bug 887670 - [Test][System] Unit test for Value Picker
2013-07-26 21:10:23 -07:00
Gaia Pushbot
c0725d2a6e Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/f2454e95b24f
Author: Fabrice Desré <fabrice@desre.org>
Desc: Bug 895826 - followup, r=me
2013-07-26 10:35:22 -07:00
Gaia Pushbot
0003437afa Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/d337ff34f778
Author: Fernando Jiménez Moreno <ferjmoreno@gmail.com>
Desc: Merge pull request #11193 from ferjm/calllog10percent

Bug 897036 - Dialer app remains at 10% loading when test_call_log_all_ca...

========

https://hg.mozilla.org/integration/gaia-central/rev/84b2f61891f7
Author: Fernando Jiménez <ferjmoreno@gmail.com>
Desc: Bug 897036 - Dialer app remains at 10% loading when test_call_log_all_calls is run. r=francisco
2013-07-26 10:20:22 -07:00
Gaia Pushbot
5559d17628 Bumping gaia.json for 3 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/f930b8591991
Author: Eitan Isaacson <eitan@monotonous.org>
Desc: Merge pull request #11171 from eeejay/homescreen-wheel-event

Change pages with wheel event.

========

https://hg.mozilla.org/integration/gaia-central/rev/9e456d7cf9ee
Author: Eitan Isaacson <eitan@monotonous.org>
Desc: Bug 898155 - Change pages with wheel event. r=crdlc

========

https://hg.mozilla.org/integration/gaia-central/rev/1e5cddf78944
Author: Corey Frang <gnarf37@gmail.com>
Desc: Bug 897494 - [SMS] should not detect a number starting the next word for part of the phone number - r=schung

* Use word boundary meta char instead of ensuring next character is not a digit - this detects this situation properly
2013-07-26 09:05:25 -07:00
Gaia Pushbot
7ab399f2c8 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/231c4ee54e5f
Author: Myk Melez <myk@mozilla.org>
Desc: Merge pull request #11170 from mykmelez/master-fx-version

bug 898130 - label desktop-helper as fx-compatible and set recommended maxVersion; r=vingtetun, NPOTB

========

https://hg.mozilla.org/integration/gaia-central/rev/de468c9f71d0
Author: Myk Melez <myk@mozilla.org>
Desc: label desktop-helper as fx-compatible and set recommended maxVersion
2013-07-26 08:30:23 -07:00
Mihai Cirlanaru
691afef206 Bug 873511 - Correctly parse 'tel:' links that contain whitespaces. r=fabrice 2013-07-26 11:20:17 -04:00
Gaia Pushbot
2685c0a478 Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/c76f17cc655c
Author: Anthony Ricaud <anthony@ricaud.me>
Desc: Revert "Bug 889717 - [Settings] Do not work when you are scrolling and select a menu"

This reverts commit 6990d381055cafaa28995c221bb69cf4023c64b9.
2013-07-26 07:21:24 -07:00
Gaia Pushbot
72d0e41709 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/256e9b41093c
Author: Cristian Rodriguez <crdlc@tid.es>
Desc: Merge pull request #11163 from crdlc/bug-897418

Bug 897418

========

https://hg.mozilla.org/integration/gaia-central/rev/4fa35c669c9f
Author: crdlc <crdlc@tid.es>
Desc: Bug 897418 - Merge Contacts: Implement UI for active merge when adding contact
2013-07-26 05:40:26 -07:00
Gaia Pushbot
dc53f660c5 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/afa2c9330944
Author: Cristian Rodriguez <crdlc@tid.es>
Desc: Merge pull request #11181 from crdlc/bug-hide-status-from-import-cenceled

Bug 898287 - [Cancel Import] Don't show the status UI component after canceling

========

https://hg.mozilla.org/integration/gaia-central/rev/775394e3119e
Author: crdlc <crdlc@tid.es>
Desc: Bug 898287 - [Cancel Import] Do not show the status UI component after canceling
2013-07-26 04:00:26 -07:00
Gaia Pushbot
5d8f93133c Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/2bcf223e3a7f
Author: Alive.Kuo <alegnadise@gmail.com>
Desc: Merge pull request #11164 from alivedise/bugzilla/897874/notification-disappearing

Bug 897874: Delay the notification transition before event handler, r=timdream, a=leo+

========

https://hg.mozilla.org/integration/gaia-central/rev/e4e69274fdb1
Author: Alive Kuo <alegnadise@gmail.com>
Desc: Bug 897874: Delay the notification transition before event handler
2013-07-26 03:05:23 -07:00
Gaia Pushbot
e906aa3781 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/4d96cb10a7e4
Author: George <georgeiscoming@gmail.com>
Desc: Merge pull request #11180 from cctuan/master-898290

Bug 898290 - [Gallery] HD gradient image rename

========

https://hg.mozilla.org/integration/gaia-central/rev/c9dbe04b6115
Author: cctuan <georgeiscoming@gmail.com>
Desc: Bug 898290 - [Gallery] HD gradient image rename
2013-07-26 02:10:25 -07:00
Gaia Pushbot
b306a90079 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/15b9a5231e9e
Author: John Hu <johu@mozilla.com>
Desc: Merge pull request #11161 from huchengtw-moz/media/Bug_891797-2

Bug 891797 - [OTA][Data Migration][MediaDB] Data of Gallery, Video, and ...r=djf

========

https://hg.mozilla.org/integration/gaia-central/rev/17e4246eac8d
Author: John Hu <johu@mozilla.com>
Desc: Bug 891797 - [OTA][Data Migration][MediaDB] Data of Gallery, Video, and Music app is different than original after update from v1.0.1 to v1.1.0.
2013-07-25 22:30:27 -07:00
Gaia Pushbot
1991ff79d0 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/72f1b7c657c6
Author: Fabrice Desré <fabrice@desre.org>
Desc: Merge pull request #11101 from khuey/896755

Bug 896755: Handle app crashes in the cost control widget.

========

https://hg.mozilla.org/integration/gaia-central/rev/2199b1c81bf2
Author: Kyle Huey <khuey@kylehuey.com>
Desc: Bug 896755: Handle app crashes in the cost control widget. r=salva

This still makes no effort to handle non-fatal 'mozbrowsererror's.
2013-07-25 14:35:23 -07:00
Gaia Pushbot
9d64674df2 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/1b2749831fc2
Author: Jonathan Griffin <jgriffin@mozilla.com>
Desc: Merge pull request #11169 from jonallengriffin/bug898108

Bug 898108 - Disable frequently failing test in TBPL, a=test-only

========

https://hg.mozilla.org/integration/gaia-central/rev/633ef140b5d1
Author: Jonathan Griffin <jgriffin@mozilla.com>
Desc: Bug 898108 - Disable frequently failing test in TBPL, a=test-only
2013-07-25 13:16:24 -07:00
Gaia Pushbot
7fbf064093 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/59cd74709f7e
Author: Rudy Lu <left.lu@gmail.com>
Desc: Merge pull request #11040 from RudyLu/pdfjs/update_to_0.8.352

Bug 881152 - update pdf.js in Gaia to 0.8.352 for hdpi resolution suppor...
r=vingtetun

========

https://hg.mozilla.org/integration/gaia-central/rev/1a7a4cb2fabe
Author: Rudy Lu <left.lu@gmail.com>
Desc: Bug 881152 - update pdf.js in Gaia to 0.8.352 for hdpi resolution support.
2013-07-25 12:20:24 -07:00
Gaia Pushbot
490851f968 Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/5e8dad30d5ad
Author: Fabrice Desré <fabrice@desre.org>
Desc: Bug 895826 - Resolve lack of YT back button r=vingtetun
2013-07-25 12:00:23 -07:00
Alive Kuo
bac4a808ba Bug 887650 - Append extra information about activity caller in system message. r=gene 2013-07-25 13:18:24 -04:00
Ed Morley
8dc6e27254 Merge latest green birch changeset and mozilla-central 2013-07-25 16:32:43 +01:00
Gaia Pushbot
814defde53 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/701cd7f0334b
Author: Dominic Kuo <dkuo@mozilla.com>
Desc: Merge pull request #11162 from dominickuo/bug-893171

Bug 893171 - Only prompt error message when error name is NO_PROVIDER, r=dkuo

========

https://hg.mozilla.org/integration/gaia-central/rev/fd45ea39b9e1
Author: Punam Dahiya <punamdahiya@yahoo.com>
Desc: Bug 893171 - Only prompt error message when error name is NO_PROVIDER
2013-07-25 04:00:23 -07:00
Gaia Pushbot
815037bf94 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/0d2075c3e9ed
Author: Timothy Guan-tin Chien <timdream@gmail.com>
Desc: Merge pull request #11160 from timdream/fix-icon-selection-dppx

Bug 883819 - Use 90@1x icon as 60@1.5x icon for now, r=crdlc

========

https://hg.mozilla.org/integration/gaia-central/rev/3f94f5fc1600
Author: Timothy Guan-tin Chien <timdream@gmail.com>
Desc: Bug 883819 - Use 90@1x icon as 60@1.5x icon for now
2013-07-25 03:35:23 -07:00
Gaia Pushbot
ffe158521a Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/bb346d13970d
Author: George <georgeiscoming@gmail.com>
Desc: Merge pull request #11035 from cctuan/system-image

Bug 891807 - @1.5x assets are required for system app

========

https://hg.mozilla.org/integration/gaia-central/rev/6fa7c6cbea1f
Author: cctuan <georgeiscoming@gmail.com>
Desc: Bug 891807 - @1.5x assets are required for system app
2013-07-25 03:25:22 -07:00
Gaia Pushbot
1c436ba534 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/923bd215fb8f
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Merge pull request #11157 from jmcanterafonseca/bkelly_bug

Revert "Bug 894611: Defer contact placeholder creation during load."

========

https://hg.mozilla.org/integration/gaia-central/rev/bb1a3e3264ce
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Revert "Bug 894611: Defer contact placeholder creation during load."

This reverts commit 5adb1074a9c9f6a96579174c0751516ffd38b2b5.
2013-07-25 01:45:24 -07:00
Gaia Pushbot
b75b71ddeb Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/65b56a32ea70
Author: Germán Toro del Valle <gtorodelvalle@gmail.com>
Desc: Merge pull request #11001 from gtorodelvalle/dialer-bug-892880-load-latest-outgoing-call

Bug 892880 - Gaia implementation of bug 887488 (Press call once to show last called number in the dialer app) (r=etiennesegonzac)

========

https://hg.mozilla.org/integration/gaia-central/rev/36483cd47af6
Author: Germán Toro del Valle <gtorodelvalle@gmail.com>
Desc: Bug 892880 - Gaia implementation of bug 887488 (Press call once to show last called number in the dialer app).

========

https://hg.mozilla.org/integration/gaia-central/rev/ea8ac5341c20
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Merge pull request #11155 from jmcanterafonseca/update_matching_rules_passive

Bug 897864 - Passive mode must match names (first or last) when they are...

========

https://hg.mozilla.org/integration/gaia-central/rev/e6b80b59e8a9
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Bug 897864 - Passive mode must match names (first or last) when they are both null
2013-07-25 01:30:23 -07:00
Gaia Pushbot
d27e1a05b6 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/0c12ef1bc157
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Merge pull request #11143 from jmcanterafonseca/fb_match_and_link

Bug 895824 - while importing FB Contacts automatically link with local c...

========

https://hg.mozilla.org/integration/gaia-central/rev/248d3954b47c
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Bug 895824 - while importing FB Contacts automatically link with local contact if there is a matching
2013-07-25 01:10:24 -07:00
Gaia Pushbot
3fd6099f18 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/66da5a7070f6
Author: Ian Liu <iliu@mozilla.com>
Desc: Merge pull request #11145 from ian-liu/clock/Bug896931_Clock_app_need_1.5x_ratio_pictures_for_hd_versions

Bug 896931 - [Clock][UX][HD] Clock app need 1.5x ratio pictures for hd versions, r=@rexboy7

========

https://hg.mozilla.org/integration/gaia-central/rev/c11c5464f253
Author: ian-liu <iliu@mozilla.com>
Desc: Bug 896931 - [Clock][UX][HD] Clock app need 1.5x ratio pictures for hd versions
2013-07-24 22:00:26 -07:00
Gaia Pushbot
94143bdad2 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/089e712b0ed6
Author: Rex KM Lee <rexboy@mozilla.com>
Desc: Merge pull request #10976 from rexboy7/fix-bug882056

Bug 882056 - [Dialer] Single call on hold can only be performed from BT devices

========

https://hg.mozilla.org/integration/gaia-central/rev/be445a6bf681
Author: Rex Lee <rexboy@mozilla.com>
Desc: Bug 882056 - [Dialer] Single call on hold can only be performed from BT devices
2013-07-24 21:05:23 -07:00
Bobby Holley
0bc53afcdb Bug 870043 - Disable the watchdog on b2g. r=mrbkap 2013-07-24 15:33:32 -07:00
Gaia Pushbot
fa2cbdab8a Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/755ad2936b1b
Author: Fabrice Desré <fabrice@desre.org>
Desc: Merge pull request #11107 from khuey/896825

Bug 896825: Call the closeCallback even if the close transition has been cancelled.

========

https://hg.mozilla.org/integration/gaia-central/rev/ec55d3f26b76
Author: Kyle Huey <khuey@kylehuey.com>
Desc: Bug 896825: Call the closeCallback even if the close transition has been
cancelled. r=alive
2013-07-24 15:05:25 -07:00
Gaia Pushbot
f45cce2c46 Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/142505d882b3
Author: Aki Sasaki <aki@escapewindow.com>
Desc: Merge pull request #11134 from escapewindow/master

bug 896324 - Add Catalan to languages-dev.json.

========

https://hg.mozilla.org/integration/gaia-central/rev/57d1de6505fb
Author: Aki Sasaki <aki@escapewindow.com>
Desc: Delete languages_shira.json

========

https://hg.mozilla.org/integration/gaia-central/rev/11449be9daa6
Author: Aki Sasaki <aki@escapewindow.com>
Desc: Delete languages_basecamp.json

========

https://hg.mozilla.org/integration/gaia-central/rev/a32a0afc8146
Author: Aki Sasaki <aki@escapewindow.com>
Desc: bug 896324 - Add Catalan to languages-dev.json.
2013-07-24 15:03:41 -07:00
Gaia Pushbot
0545cc68d5 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/b201c99bbf0b
Author: Ryan VanderMeulen <rvandermeulen@mozilla.com>
Desc: Merge pull request #10859 from leob2g/Bug_891299_String_disappear

Bug 891299 - [Dialer] String disapper when using keypad and hide

========

https://hg.mozilla.org/integration/gaia-central/rev/aec4e8c211bc
Author: sungwoo.yoon <sungwoo.yoon@lge.com>
Desc: Bug 891299 - [Dialer] String disapper when using keypad and hide
2013-07-24 14:50:44 -07:00
Gaia Pushbot
9fb0039a8d Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/eaa7e832a813
Author: Ryan VanderMeulen <rvandermeulen@mozilla.com>
Desc: Merge pull request #10890 from EverythingMe/890437

[Bug 890437] E.me swipe keyboard hide [r=Evyatron]

========

https://hg.mozilla.org/integration/gaia-central/rev/1738fd4a1b75
Author: Ran Ben Aharon <ran@ranbena.com>
Desc: [Bug 890437] E.me swipe keyboard hide [r=Evyatron]
2013-07-24 14:50:23 -07:00
Gaia Pushbot
236fcee34e Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/5ac18f35181f
Author: Jonathan Griffin <jgriffin@mozilla.com>
Desc: Merge pull request #11149 from jonallengriffin/suggestion

Bug 897558 - Disable suggestion_bar_test.js for frequent TBPL orange, a=...

========

https://hg.mozilla.org/integration/gaia-central/rev/c2952d65ae55
Author: Jonathan Griffin <jgriffin@mozilla.com>
Desc: Bug 897558 - Disable suggestion_bar_test.js for frequent TBPL orange, a=test-only
2013-07-24 11:00:23 -07:00
Gaia Pushbot
1ce661c3b9 Bumping gaia.json for 3 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/40e122f61752
Author: Anthony Ricaud <anthony@ricaud.me>
Desc: Merge pull request #11133 from msujaws/patch-2

Bug 894232 - [Dialer] Disable 'Put call on hold' feature for Leo due to ... r=rik
(cherry picked from commit d6abf011ba3314f77fc687e73b842a46be6f3716)

========

https://hg.mozilla.org/integration/gaia-central/rev/4acec9c82586
Author: Ben Kelly <bkelly@mozilla.com>
Desc: Merge pull request #11017 from wanderview/contacts-defer-ph

Bug 894611: Defer contact placeholder creation during load.  r=arcturus

========

https://hg.mozilla.org/integration/gaia-central/rev/d4ad6f9d631a
Author: Ben Kelly <ben@wanderview.com>
Desc: Bug 894611: Defer contact placeholder creation during load.
2013-07-24 10:05:23 -07:00
Gaia Pushbot
b9a0812cfa Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/4e9ffaa0d192
Author: Fernando Jiménez Moreno <ferjmoreno@gmail.com>
Desc: Merge pull request #11147 from ferjm/calllogtests

Bug 897118 - TEST-UNEXPECTED-FAIL | 1) [communications-dialer] dialer/ca...

========

https://hg.mozilla.org/integration/gaia-central/rev/5bc43217ed8f
Author: Fernando Jiménez <ferjmoreno@gmail.com>
Desc: Bug 897118 - TEST-UNEXPECTED-FAIL | 1) [communications-dialer] dialer/call_log_db Clean up delete_db. r=daleharvey
2013-07-24 08:55:23 -07:00
Alexandre Poirot
cfe4407c30 Bug 817580 - Pref off new webapps actor features until we secure remote debugger connection. r=paul.rouget 2013-07-24 11:29:04 -04:00
Alexandre Poirot
58a01f510d Bug 817580 - Expose tab actors for apps in child processes. r=jimb 2013-07-24 11:28:32 -04:00
Gaia Pushbot
0f27542735 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/272955d39f21
Author: Dale  Harvey <dale@arandomurl.com>
Desc: Merge pull request #11106 from daleharvey/814436

Bug 814436 - Ensure clear data dialogs have warning UI. r=benfrancis

========

https://hg.mozilla.org/integration/gaia-central/rev/b96f15d568d5
Author: Dale Harvey <dale@arandomurl.com>
Desc: Bug 814436 - Ensure clear data dialogs have warning UI
2013-07-24 08:20:25 -07:00
Gaia Pushbot
1ecf6dc252 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/36b9dc33dc57
Author: Anthony Ricaud <anthony@ricaud.me>
Desc: Merge pull request #11109 from TheoChevalier/Bug835611-localized-units-costcontrol

Bug 835611 - [l10n] Cost Control should use localized units r=salva

========

https://hg.mozilla.org/integration/gaia-central/rev/e6af83745c49
Author: TheoChevalier <theo.chevalier11@gmail.com>
Desc: Bug 835611 - [l10n] Cost Control should use localized units
2013-07-24 06:30:23 -07:00
Gaia Pushbot
1da6d5a385 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/be4345837143
Author: Cristian Rodriguez <crdlc@tid.es>
Desc: Merge pull request #11074 from crdlc/bug-866563-master

Bug 866563 - [Buri][Homescreen]Continuously drag APP to hotseat,hotseat ...

========

https://hg.mozilla.org/integration/gaia-central/rev/a62e244e8294
Author: crdlc <crdlc@tid.es>
Desc: Bug 866563 - [Buri][Homescreen]Continuously drag APP to hotseat,hotseat will be freeze
2013-07-24 05:55:23 -07:00
Gaia Pushbot
a8788f6705 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/e12d656470b5
Author: Jose Antonio Olivera Ortega <josea.olivera@gmail.com>
Desc: Merge pull request #10927 from jaoo/891345

Bug 891345 - [User Story][Settings] Need an UI for calling line identification restriction. r=arthurcc

========

https://hg.mozilla.org/integration/gaia-central/rev/c95b53a3ff5f
Author: Jose Antonio Olivera Ortega <josea.olivera@gmail.com>
Desc: Bug 891345 - [Settings] Need an IU for calling line identification restriction
2013-07-24 04:40:22 -07:00
Gaia Pushbot
2aa2c55c5c Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/90e5fc245472
Author: Dale  Harvey <dale@arandomurl.com>
Desc: Merge pull request #11047 from timdream/browser-about

Bug 894978 - Correct background image dimensions in browser about page. r=daleharvey

========

https://hg.mozilla.org/integration/gaia-central/rev/1c03bd97f358
Author: Timothy Guan-tin Chien <timdream@gmail.com>
Desc: Bug 894978 - Correct background image dimensions in browser about page

========

https://hg.mozilla.org/integration/gaia-central/rev/5526d8d0d259
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Merge pull request #11141 from jmcanterafonseca/contacts_match_fix2

Bug 897390 Contacts Matcher (active mode) matches incorrectly contacts w...

========

https://hg.mozilla.org/integration/gaia-central/rev/44df443bc79b
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Bug 897390 Contacts Matcher (active mode) matches incorrectly contacts which do not define familyName
2013-07-24 04:15:23 -07:00
Gaia Pushbot
832a4c94ba Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/433a9ee7697a
Author: Fernando Campo <fernando.campo@o2.com>
Desc: Merge pull request #11124 from fcampo/2error-sendingSms

Bug 891855 - [sms][mms] Gaia should handle the error codes properly to pop up reasonable prompt

========

https://hg.mozilla.org/integration/gaia-central/rev/6c507e68f733
Author: Fernando Campo <fernando.campo@o2.com>
Desc: Bug 891855 - [sms][mms] Gaia should handle the error codes properly to pop up reasonable prompt
2013-07-24 02:45:24 -07:00
Gaia Pushbot
4062e617c6 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/463249557715
Author: Cristian Rodriguez <crdlc@tid.es>
Desc: Merge pull request #11118 from crdlc/bug-896994

Bug 896994 - [Merge duplicate contacts] Clicking on list items does not ...

========

https://hg.mozilla.org/integration/gaia-central/rev/b5a37156754d
Author: crdlc <crdlc@tid.es>
Desc: Bug 896994 - [Merge duplicate contacts] Clicking on list items does not work fine sometimes
2013-07-24 02:15:25 -07:00
Gaia Pushbot
88770fa1de Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/bbd08618e170
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Merge pull request #11013 from fabi1cazenave/otaUpdateI18n-bug828260

Bug 828260: translate update prompt after locale switch, r=timdream

========

https://hg.mozilla.org/integration/gaia-central/rev/9a42d3e7a545
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Bug 828260: translate update prompt after locale switch, r=timdream
2013-07-24 00:55:24 -07:00
Gaia Pushbot
8e233dc65b Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/30a47d350e69
Author: Salvador de la Puente González <salva@unoyunodiez.com>
Desc: Merge pull request #11120 from leob2g/Bug_896848_Usage_App_Closing_When_Receive_a_Call

[CostControl] Bug_896848_Closing_Usage_app_after_call
r=lodr

========

https://hg.mozilla.org/integration/gaia-central/rev/a6bccc065679
Author: sarath27.vs <sarath27.vs@lge.com>
Desc: Bug_896848_Closing_Usage_app_after_call
2013-07-24 00:20:23 -07:00
Gaia Pushbot
dac9f841d3 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/01f697002cd9
Author: Salvador de la Puente González <salva@unoyunodiez.com>
Desc: Merge pull request #11093 from lodr/bug-896367-adding-missed-icchelper

Bug 896367 - Adding a missed ICCHelper
r=arcturus

========

https://hg.mozilla.org/integration/gaia-central/rev/b8ae5351106a
Author: lodr <salva@unoyunodiez.com>
Desc: Bug 896367 - Adding a missed ICCHelper
2013-07-24 00:00:24 -07:00
Gaia Pushbot
080787047f Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/512a45823730
Author: James Burke <jrburke@gmail.com>
Desc: Merge pull request #10868 from jrburke/app-zip

Bug 890182 Allow apps to specify a directory to use for builds, r=ochameau and asuth

========

https://hg.mozilla.org/integration/gaia-central/rev/ee0632d5e21d
Author: jrburke <jrburke@gmail.com>
Desc: Bug 890182 Allow apps to specify a directory to use for builds
2013-07-23 23:35:23 -07:00
Gaia Pushbot
ee0c88a1d5 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/9e28669b2798
Author: Rudy Lu <left.lu@gmail.com>
Desc: Merge pull request #11044 from RudyLu/homescreen/Bug893966-add_1.5x_assets

Bug 893966 - some 1.5x assets are still missing for Homescreen app. r=rexboy7.

========

https://hg.mozilla.org/integration/gaia-central/rev/2d7bfac436ec
Author: Rudy Lu <left.lu@gmail.com>
Desc: Bug 893966 - some 1.5x assets are still missing for Homescreen app
 1. Add 1.5x assets.
 2. Modify the background size for app delete icon.
2013-07-23 21:45:23 -07:00
Gaia Pushbot
24ea1b384e Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/637b88e4d8ee
Author: Andrew Sutherland <asutherland@asutherland.org>
Desc: Merge pull request #11139 from asutherland/email-imap-fakeserver-fixes

Bug 813411 - [email/IMAP] port/import Thunderbird's IMAP and SMTP fake-servers. r=jrburke

========

https://hg.mozilla.org/integration/gaia-central/rev/d3c573551c77
Author: Andrew Sutherland <asutherland@asutherland.org>
Desc: Bug 813411 - [email/IMAP] port/import Thunderbird's IMAP and SMTP fake-servers. r=jrburke

Land changes from https://github.com/mozilla-b2g/gaia-email-libs-and-more/pull/224
2013-07-23 21:00:25 -07:00
Gaia Pushbot
2317b288a4 Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/ebe053f5cad8
Author: Jim Porter <squibblyflabbetydoo@gmail.com>
Desc: Merge pull request #11138 from mozsquib/email-activesync-fix-user-param

Bug 897308 - [email/activesync] Username in URL query is "undefined"

========

https://hg.mozilla.org/integration/gaia-central/rev/2b326bb70272
Author: Jim Porter <jporter@mozilla.com>
Desc: Bug 897308 - [email/activesync] Username in URL query is "undefined"; r=asuth

========

https://hg.mozilla.org/integration/gaia-central/rev/651a53c98e3f
Author: Rex KM Lee <rexboy@mozilla.com>
Desc: Merge pull request #11005 from rexboy7/fix-bug890869-master

Bug 890869 - [FM] @1.5x asset revise

========

https://hg.mozilla.org/integration/gaia-central/rev/e52efc53112b
Author: Rex Lee <rexboy@mozilla.com>
Desc: Bug 890869 - [FM] @1.5x asset revise
2013-07-23 20:25:23 -07:00
Gaia Pushbot
c19adeac09 Bumping gaia.json for 2 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/b0dd079e5c26
Author: Rex KM Lee <rexboy@mozilla.com>
Desc: Merge pull request #11119 from rexboy7/fixhd-comm-r2-master

Bug 896381 - @1.5x assets update for communcation apps (FTU, Dialer, Contacts), round2

========

https://hg.mozilla.org/integration/gaia-central/rev/d242d471dbba
Author: Rex Lee <rexboy@mozilla.com>
Desc: Bug 896381 - @1.5x assets update for communcation apps (FTU, Dialer, Contacts), round2
2013-07-23 20:15:23 -07:00