========
https://hg.mozilla.org/integration/gaia-central/rev/fced758fbf0b
Author: Corey Frang <gnarf37@gmail.com>
Desc: Bug 887737 - [SMS] The device is not recognizing the phone number received completely - r=julienw
* Rewrite the phone number matching regexp
* Include all the fixtures from Utils tests in FixturePhones and include in setup so we can share test cases
========
https://hg.mozilla.org/integration/gaia-central/rev/9621115bda40
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Merge pull request #10709 from fabi1cazenave/l10nOptim-bug853933
Bug 853933 - Don't inline all locales as JSON in the HTML, r=ochameau
========
https://hg.mozilla.org/integration/gaia-central/rev/cf0c69f54763
Author: Fabien Cazenave <fabien@cazenave.cc>
Desc: Bug 853933 - Don't inline all locales as JSON in the HTML
Currently, in order to ensure that apps are translated before first paint, all l10n resources are included as one multi-locales JSON dictionary, which is serialized in an inline `<script>` element for each HTML document. This works fine when shipping few locales, but it can increase the document size quite badly for 60+ locales, thus delaying the startup time very significantly.
This patch allows to support 60+ locales more easily by having:
* one minimal JSON dictionary per locale in each HTML file;
* one extensive JSON dictionary per locale in each webapp.
The inline JSON dictionary is split on a per-locale basis (= one `<script>` node per supported locale) and only contains the l10n strings that are required to translate the HTML document: the "startup cost" of each locale becomes neglectable, and it removes the risk of high RAM consumption when parsing a giant multi-locale JSON at startup.
All l10n resources that are not declared in the HTML document are concatenated in a single JSON dictionary per locale: this reduces the number of disk I/O to load l10n resources and does not increase the total disk size of each webapp. To enable this, this patch implements a `{{locale}}` quasi-litteral in the HTML markup that is used to declare l10n resources:
<link rel="prefetch" type="application/l10n" href="/{{locale}}.json" />
where `{{locale}}` is replaced by the value of `navigator.language`.
Note that this latter optimization is only interesting for apps that wait for the `localized` event to start. With the inline JSON dictionary for the declarative content and the `mozL10n.localize()` method, most apps could probably stop waiting for this `localized` event now.
========
https://hg.mozilla.org/integration/gaia-central/rev/9f6691adac69
Author: Julien Wajsberg <felash@gmail.com>
Desc: Bug 885283 - [sms] receiving a SMS from an existing thread but on a new thread container is broken r=gnarf
* Refactored how threads are added when a new message is received
* This incidentally resolves the bug
* made FixedHeader's refresh and scroll handler so that it's being called once
per tick only. Then we won't be afraid of calling refresh too many.
* remove some unused code in FixedHeader
* adds tests for FixedHeader
* Fix indentation of createThreadMockup
========
https://hg.mozilla.org/integration/gaia-central/rev/8637e29fffcb
Author: Julien Wajsberg <felash@gmail.com>
Desc: Bug 890079 - Homescreen grid tests failing in TBPL with: document.createTouch is not a function r=crdlc
don't try to send touch events if document.createTouch is missing.
Truncated some number of revisions since the previous bump.
========
https://hg.mozilla.org/integration/gaia-central/rev/94ed925b75d0
Author: Gabriele Svelto <gsvelto@mozilla.com>
Desc: Merge pull request #10724 from gabrielesvelto/bug-888184
Bug 888184 - Remove the canvas-based animations introduced in the workaround for bug 822345 r=alive
========
https://hg.mozilla.org/integration/gaia-central/rev/106257582c77
Author: Gabriele Svelto <gsvelto@mozilla.com>
Desc: Bug 888184 - Remove the canvas-based animations introduced in the workaround for bug 822345
- Removed the JavaScript code used to create the animations
- Replace the animated canvases with APNG animtions
- Removed the unused PNG files and recompressed the existing ones
========
https://hg.mozilla.org/integration/gaia-central/rev/f7f349019ccb
Author: Mike Pennisi <mike@mikepennisi.com>
Desc: Bug 883813 - [SMS][MMS] Placeholder string "Message" is not localizable r=julienw
Use HTML5 "data-" attribute for the localization value because setting
arbitrary elements is explicitly *not* supported by Gaia's L10n library.
========
https://hg.mozilla.org/integration/gaia-central/rev/a11b254563d2
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Merge pull request #10469 from eeejay/lockscreen-a11y-tweaks
Bug 884514, 884517 - Lockscreen a11y tweaks
========
https://hg.mozilla.org/integration/gaia-central/rev/cb45fd51a8f0
Author: Eitan Isaacson <eitan@monotonous.org>
Desc: Bug 884514 - Hide windows when lockscreen is active.
Changing the style of the app iframes won't work well because it will interfere with the way that audio apps work. So we need to use aria-hidden.
========
https://hg.mozilla.org/integration/gaia-central/rev/f31603695163
Author: Eitan Isaacson <eitan@monotonous.org>
Desc: Bug 884517 - Change lockscreen to not collapse button area when screenreader is enabled.
Updates:
- Conditionally remove 'triggered' class when screen reader is disabled.
- Also deleted some obsolete 'triggered' class removal lines that followed.