lists.torproject.org
Sign In Sign Up
Manage this list Sign In Sign Up

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

tbb-commits

Thread Start a new thread
Threads by month
  • ----- 2026 -----
  • March
  • February
  • January
  • ----- 2025 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2022 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2021 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2020 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2019 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2018 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2017 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2016 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2015 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2014 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
tbb-commits@lists.torproject.org

  • 1 participants
  • 20078 discussions
[tor-browser/esr24] Bug 1037641 - Split SetDirectionFromChangedTextNode into TextNodeWillChangeDirection and TextNodeChangedDirection. r=ehsan, a=abillings
by mikeperry@torproject.org 29 Aug '14

29 Aug '14
commit 38dc93ccf1549b964930c50bbc3f55f2377b6e23 Author: Simon Montagu <smontagu(a)smontagu.org> Date: Wed Aug 6 12:02:59 2014 +0300 Bug 1037641 - Split SetDirectionFromChangedTextNode into TextNodeWillChangeDirection and TextNodeChangedDirection. r=ehsan, a=abillings --- content/base/public/DirectionalityUtils.h | 18 +++++++++++++----- content/base/src/DirectionalityUtils.cpp | 26 ++++++++++++++------------ content/base/src/nsGenericDOMDataNode.cpp | 10 +++++++--- 3 files changed, 34 insertions(+), 20 deletions(-) diff --git a/content/base/public/DirectionalityUtils.h b/content/base/public/DirectionalityUtils.h index 85a7e78..4b1758c 100644 --- a/content/base/public/DirectionalityUtils.h +++ b/content/base/public/DirectionalityUtils.h @@ -79,12 +79,20 @@ void WalkDescendantsSetDirAuto(mozilla::dom::Element* aElement, void WalkDescendantsClearAncestorDirAuto(mozilla::dom::Element* aElement); /** - * When the contents of a text node have changed, deal with any elements whose - * directionality needs to change + * When the contents of a text node are about to change, retrieve the current + * directionality of the text + * + * @return whether the text node affects the directionality of any element + */ +bool TextNodeWillChangeDirection(nsIContent* aTextNode, Directionality* aOldDir, + uint32_t aOffset); + +/** + * After the contents of a text node have changed, change the directionality + * of any elements whose directionality is determined by that node */ -void SetDirectionFromChangedTextNode(nsIContent* aTextNode, uint32_t aOffset, - const PRUnichar* aBuffer, uint32_t aLength, - bool aNotify); +void TextNodeChangedDirection(nsIContent* aTextNode, Directionality aOldDir, + bool aNotify); /** * When a text node is appended to an element, find any ancestors with dir=auto diff --git a/content/base/src/DirectionalityUtils.cpp b/content/base/src/DirectionalityUtils.cpp index 9fa8a12..a689a19 100644 --- a/content/base/src/DirectionalityUtils.cpp +++ b/content/base/src/DirectionalityUtils.cpp @@ -316,6 +316,7 @@ GetDirectionFromText(const PRUnichar* aText, const uint32_t aLength, start < end && NS_IS_LOW_SURROGATE(*start)) { ch = SURROGATE_TO_UCS4(ch, *start++); + current++; } Directionality dir = GetDirectionFromChar(ch); @@ -822,26 +823,27 @@ void SetAncestorDirectionIfAuto(nsINode* aTextNode, Directionality aDir, } } -void -SetDirectionFromChangedTextNode(nsIContent* aTextNode, uint32_t aOffset, - const PRUnichar* aBuffer, uint32_t aLength, - bool aNotify) +bool +TextNodeWillChangeDirection(nsIContent* aTextNode, Directionality* aOldDir, + uint32_t aOffset) { if (!NodeAffectsDirAutoAncestor(aTextNode)) { nsTextNodeDirectionalityMap::EnsureMapIsClearFor(aTextNode); - return; + return false; } uint32_t firstStrong; - Directionality oldDir = GetDirectionFromText(aTextNode->GetText(), - &firstStrong); - if (aOffset > firstStrong) { - return; - } + *aOldDir = GetDirectionFromText(aTextNode->GetText(), &firstStrong); + return (aOffset <= firstStrong); +} - Directionality newDir = GetDirectionFromText(aBuffer, aLength); +void +TextNodeChangedDirection(nsIContent* aTextNode, Directionality aOldDir, + bool aNotify) +{ + Directionality newDir = GetDirectionFromText(aTextNode->GetText()); if (newDir == eDir_NotSet) { - if (oldDir != eDir_NotSet && aTextNode->HasTextNodeDirectionalityMap()) { + if (aOldDir != eDir_NotSet && aTextNode->HasTextNodeDirectionalityMap()) { // This node used to have a strong directional character but no // longer does. ResetTextNodeDirection() will re-resolve the // directionality of any elements whose directionality was diff --git a/content/base/src/nsGenericDOMDataNode.cpp b/content/base/src/nsGenericDOMDataNode.cpp index 2efc6cd..69ee693 100644 --- a/content/base/src/nsGenericDOMDataNode.cpp +++ b/content/base/src/nsGenericDOMDataNode.cpp @@ -294,9 +294,9 @@ nsGenericDOMDataNode::SetTextInternal(uint32_t aOffset, uint32_t aCount, nsNodeUtils::CharacterDataWillChange(this, &info); } - if (NodeType() == nsIDOMNode::TEXT_NODE) { - SetDirectionFromChangedTextNode(this, aOffset, aBuffer, aLength, aNotify); - } + Directionality oldDir = eDir_NotSet; + bool dirAffectsAncestor = (NodeType() == nsIDOMNode::TEXT_NODE && + TextNodeWillChangeDirection(this, &oldDir, aOffset)); if (aOffset == 0 && endOffset == textLength) { // Replacing whole text or old text was empty. Don't bother to check for @@ -338,6 +338,10 @@ nsGenericDOMDataNode::SetTextInternal(uint32_t aOffset, uint32_t aCount, document->SetBidiEnabled(); } + if (dirAffectsAncestor) { + TextNodeChangedDirection(this, oldDir, aNotify); + } + // Notify observers if (aNotify) { CharacterDataChangeInfo info = {
1 0
0 0
[tor-browser/esr24] No bug, Automated HSTS preload list update from host bld-linux64-spot-135 - a=hsts-update
by mikeperry@torproject.org 29 Aug '14

29 Aug '14
commit c0507450a166ac7b8f2fb529e9eeb91c132fe15c Author: ffxbld <none@none> Date: Sat Aug 23 03:13:58 2014 -0700 No bug, Automated HSTS preload list update from host bld-linux64-spot-135 - a=hsts-update --- security/manager/boot/src/nsSTSPreloadList.errors | 10 +++++++ security/manager/boot/src/nsSTSPreloadList.inc | 30 +++++++++++++++++---- 2 files changed, 35 insertions(+), 5 deletions(-) diff --git a/security/manager/boot/src/nsSTSPreloadList.errors b/security/manager/boot/src/nsSTSPreloadList.errors index 01e8365..39ae673 100644 --- a/security/manager/boot/src/nsSTSPreloadList.errors +++ b/security/manager/boot/src/nsSTSPreloadList.errors @@ -1,6 +1,8 @@ +accelerated.de: did not receive HSTS header admin.google.com: did not receive HSTS header adsfund.org: could not connect to host airbnb.com: did not receive HSTS header +ansdell.net: did not receive HSTS header api.lookout.com: could not connect to host api.mega.co.nz: could not connect to host api.recurly.com: did not receive HSTS header @@ -13,10 +15,12 @@ bassh.net: did not receive HSTS header bccx.com: could not connect to host betnet.fr: could not connect to host bigshinylock.minazo.net: could not connect to host +blog.lookout.com: did not receive HSTS header braintreegateway.com: did not receive HSTS header braintreepayments.com: did not receive HSTS header browserid.org: did not receive HSTS header business.medbank.com.mt: did not receive HSTS header +ca.gparent.org: could not connect to host carlolly.co.uk: did not receive HSTS header cert.se: max-age too low: 2628001 checkout.google.com: did not receive HSTS header @@ -52,6 +56,7 @@ gmail.com: did not receive HSTS header googlemail.com: did not receive HSTS header googleplex.com: could not connect to host goto.google.com: did not receive HSTS header +gparent.org: could not connect to host greplin.com: did not receive HSTS header groups.google.com: did not receive HSTS header hackerone-user-content.com: could not connect to host @@ -72,6 +77,10 @@ ledgerscope.net: did not receive HSTS header liberty.lavabit.com: could not connect to host lifeguard.aecom.com: did not receive HSTS header lists.mayfirst.org: did not receive HSTS header +loenshotel.de: could not connect to host +login.corp.google.com: max-age too low: 7776000 +logotype.se: did not receive HSTS header +m.gparent.org: could not connect to host mail.google.com: did not receive HSTS header market.android.com: did not receive HSTS header mobilethreat.net: could not connect to host @@ -123,6 +132,7 @@ sunshinepress.org: could not connect to host surfeasy.com: did not receive HSTS header talk.google.com: did not receive HSTS header talkgadget.google.com: did not receive HSTS header +tektoria.de: did not receive HSTS header translate.googleapis.com: did not receive HSTS header uprotect.it: could not connect to host wallet.google.com: did not receive HSTS header diff --git a/security/manager/boot/src/nsSTSPreloadList.inc b/security/manager/boot/src/nsSTSPreloadList.inc index 7dfc5f6..5d3a4c7 100644 --- a/security/manager/boot/src/nsSTSPreloadList.inc +++ b/security/manager/boot/src/nsSTSPreloadList.inc @@ -8,7 +8,7 @@ /*****************************************************************************/ #include "mozilla/StandardInteger.h" -const PRTime gPreloadListExpirationTime = INT64_C(1419070103890000); +const PRTime gPreloadListExpirationTime = INT64_C(1419674876234000); class nsSTSPreload { @@ -18,7 +18,6 @@ class nsSTSPreload }; static const nsSTSPreload kSTSPreloadList[] = { - { "accelerated.de", true }, { "accounts.firefox.com", true }, { "accounts.google.com", true }, { "aclu.org", false }, @@ -38,6 +37,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "apn-einstellungen.de", true }, { "app.manilla.com", true }, { "app.recurly.com", false }, + { "app.simpletax.ca", false }, { "app.yinxiang.com", false }, { "archlinux.de", true }, { "arivo.com.br", true }, @@ -65,14 +65,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blacklane.com", true }, { "blocksatz-medien.de", true }, { "blog.cyveillance.com", true }, + { "blog.gparent.org", false }, { "blog.linode.com", false }, - { "blog.lookout.com", false }, { "blog.torproject.org", false }, { "bohramt.de", true }, { "boxcryptor.com", true }, + { "brunosouza.org", true }, { "buddhistische-weisheiten.org", true }, + { "bugzil.la", true }, { "bugzilla.mozilla.org", true }, { "business.lookout.com", false }, + { "bytepark.de", true }, { "calyxinstitute.org", false }, { "carezone.com", false }, { "cartouche24.eu", true }, @@ -101,6 +104,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cybershambles.com", true }, { "cybozu.com", true }, { "cyphertite.com", true }, + { "daphne.informatik.uni-freiburg.de", true }, { "data-abundance.com", true }, { "data.qld.gov.au", false }, { "datenkeks.de", true }, @@ -127,6 +131,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "entropia.de", false }, { "errors.zenpayroll.com", false }, { "espra.com", true }, + { "ethitter.com", true }, { "eurotramp.com", true }, { "explodie.org", true }, { "f-droid.org", true }, @@ -136,6 +141,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "feedbin.com", false }, { "ferienhaus-polchow-ruegen.de", true }, { "fiken.no", true }, + { "firemail.io", true }, { "fischer-its.com", true }, { "fj.simple.com", false }, { "flynn.io", true }, @@ -151,6 +157,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "giacomopelagatti.it", true }, { "globalcs.co.uk", true }, { "globuli-info.de", true }, + { "gmantra.org", true }, { "go.xero.com", false }, { "gocardless.com", true }, { "grc.com", false }, @@ -166,6 +173,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hausverbrauch.de", true }, { "heha.co", true }, { "helichat.de", true }, + { "help.simpletax.ca", false }, { "helpium.de", true }, { "hex2013.com", true }, { "hoerbuecher-und-hoerspiele.de", true }, @@ -224,14 +232,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "login.persona.org", true }, { "login.sapo.pt", true }, { "login.xero.com", false }, - { "logotype.se", true }, { "lolicore.ch", true }, { "lookout.com", false }, + { "ludwig.im", true }, { "lumi.do", false }, { "luneta.nearbuysystems.com", false }, + { "mach-politik.ch", true }, { "mail.de", true }, { "mailbox.org", false }, { "makeyourlaws.org", true }, + { "malnex.de", true }, { "manage.zenpayroll.com", false }, { "manageprojects.com", true }, { "manager.linode.com", false }, @@ -258,6 +268,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mudcrab.us", true }, { "munich-rage.de", true }, { "musicgamegalaxy.de", true }, + { "mutantmonkey.sexy", true }, { "mwe.st", true }, { "my.onlime.ch", false }, { "my.xero.com", false }, @@ -267,6 +278,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "neilwynne.com", false }, { "netzbit.de", true }, { "netzpolitik.org", true }, + { "ng-security.com", true }, { "npw.net", true }, { "onedrive.com", true }, { "onedrive.live.com", false }, @@ -278,6 +290,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "p.linode.com", false }, { "packagist.org", false }, { "pajonzeck.de", true }, + { "palava.tv", true }, { "passport.yandex.by", false }, { "passport.yandex.com", false }, { "passport.yandex.com.tr", false }, @@ -310,6 +323,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rad-route.de", true }, { "raiseyourflag.com", true }, { "redports.org", true }, + { "reedloden.com", true }, { "reserve-online.net", true }, { "reviews.anime.my", true }, { "riccy.org", true }, @@ -321,21 +335,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "romab.com", true }, { "rosenkeller.org", true }, { "roundcube.mayfirst.org", false }, + { "rws-vertriebsportal.de", true }, { "sakaki.anime.my", true }, { "salaervergleich.com", true }, { "sandbox.mydigipass.com", false }, { "schokokeks.org", false }, { "schwarzer.it", true }, { "scrambl.is", true }, + { "sdsl-speedtest.de", true }, { "securityheaders.com", true }, { "secuvera.de", true }, { "seifried.org", true }, + { "servethecity-karlsruhe.de", true }, { "sherbers.de", true }, { "shodan.io", true }, { "siammedia.co", true }, { "silentcircle.com", true }, { "simbolo.co.uk", false }, { "simple.com", false }, + { "simpletax.ca", false }, { "simplystudio.com", true }, { "skydrive.live.com", false }, { "sprueche-zum-valentinstag.de", true }, @@ -356,7 +374,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "surkatty.org", true }, { "tageau.com", true }, { "tatort-fanpage.de", true }, - { "tektoria.de", true }, { "tent.io", true }, { "texte-zur-taufe.de", true }, { "thepaymentscompany.com", true }, @@ -385,6 +402,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tonex.nl", true }, { "torproject.org", false }, { "trauertexte.info", true }, + { "tunebitfm.de", true }, { "twitter.com", false }, { "ub3rk1tten.com", true }, { "ubertt.org", true }, @@ -404,6 +422,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webmail.gigahost.dk", false }, { "webmail.onlime.ch", false }, { "webmail.schokokeks.org", false }, + { "websenat.de", true }, { "welches-kinderfahrrad.de", true }, { "wepay.com", false }, { "wf-bigsky-master.appspot.com", true }, @@ -464,5 +483,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "y-o-w.com", true }, { "z.ai", true }, { "zenpayroll.com", false }, + { "zeropush.com", true }, { "zotero.org", true }, };
1 0
0 0
[tor-browser/esr24] No bug, Automated HSTS preload list update from host bld-linux64-spot-033 - a=hsts-update
by mikeperry@torproject.org 29 Aug '14

29 Aug '14
commit 087d41e1ee86f0892c7515a26c83a88d88779538 Author: ffxbld <none@none> Date: Sat Aug 9 03:12:28 2014 -0700 No bug, Automated HSTS preload list update from host bld-linux64-spot-033 - a=hsts-update --- security/manager/boot/src/nsSTSPreloadList.errors | 9 +++------ security/manager/boot/src/nsSTSPreloadList.inc | 9 +++++++-- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/security/manager/boot/src/nsSTSPreloadList.errors b/security/manager/boot/src/nsSTSPreloadList.errors index 02067a9..4713b73 100644 --- a/security/manager/boot/src/nsSTSPreloadList.errors +++ b/security/manager/boot/src/nsSTSPreloadList.errors @@ -40,7 +40,6 @@ dropbox.com: max-age too low: 2592000 dropcam.com: did not receive HSTS header edmodo.com: did not receive HSTS header email.lookout.com: could not connect to host -emailprivacytester.com: did not receive HSTS header encrypted.google.com: did not receive HSTS header epoxate.com: did not receive HSTS header errors.zenpayroll.com: could not connect to host @@ -60,7 +59,6 @@ hackerone-user-content.com: could not connect to host haste.ch: could not connect to host history.google.com: did not receive HSTS header hostedtalkgadget.google.com: did not receive HSTS header -howrandom.org: could not connect to host in.xero.com: max-age too low: 3600 intercom.io: did not receive HSTS header iop.intuit.com: max-age too low: 86400 @@ -96,10 +94,9 @@ play.google.com: did not receive HSTS header prodpad.com: did not receive HSTS header profiles.google.com: did not receive HSTS header rapidresearch.me: could not connect to host -riseup.net: did not receive HSTS header +riseup.net: could not connect to host sah3.net: could not connect to host saturngames.co.uk: did not receive HSTS header -schokokeks.org: did not receive HSTS header script.google.com: did not receive HSTS header security.google.com: did not receive HSTS header semenkovich.com: did not receive HSTS header @@ -119,12 +116,13 @@ ssl.panoramio.com: did not receive HSTS header stocktrade.de: could not connect to host sunshinepress.org: could not connect to host surfeasy.com: did not receive HSTS header +surkatty.org: could not connect to host talk.google.com: did not receive HSTS header talkgadget.google.com: did not receive HSTS header translate.googleapis.com: did not receive HSTS header uprotect.it: could not connect to host wallet.google.com: did not receive HSTS header -webmail.mayfirst.org: could not connect to host +webmail.mayfirst.org: did not receive HSTS header whonix.org: did not receive HSTS header www.cueup.com: could not connect to host www.developer.mydigipass.com: could not connect to host @@ -144,6 +142,5 @@ www.paypal.com: max-age too low: 14400 www.rme.li: did not receive HSTS header www.roddis.net: did not receive HSTS header www.sandbox.mydigipass.com: could not connect to host -www.schokokeks.org: did not receive HSTS header www.surfeasy.com: did not receive HSTS header zoo24.de: max-age too low: 2592000 diff --git a/security/manager/boot/src/nsSTSPreloadList.inc b/security/manager/boot/src/nsSTSPreloadList.inc index 503d7a1..76d4f47 100644 --- a/security/manager/boot/src/nsSTSPreloadList.inc +++ b/security/manager/boot/src/nsSTSPreloadList.inc @@ -8,7 +8,7 @@ /*****************************************************************************/ #include "mozilla/StandardInteger.h" -const PRTime gPreloadListExpirationTime = INT64_C(1417860380322000); +const PRTime gPreloadListExpirationTime = INT64_C(1418465184497000); class nsSTSPreload { @@ -75,6 +75,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ebanking.indovinabank.com.vn", false }, { "ecosystem.atlassian.net", true }, { "eff.org", true }, + { "emailprivacytester.com", true }, { "encircleapp.com", true }, { "entropia.de", false }, { "errors.zenpayroll.com", false }, @@ -143,6 +144,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mnsure.org", true }, { "mobile.usaa.com", false }, { "mudcrab.us", true }, + { "mwe.st", true }, { "my.onlime.ch", false }, { "my.xero.com", false }, { "mylookout.com", false }, @@ -165,7 +167,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pastebin.linode.com", false }, { "pay.gigahost.dk", true }, { "paymill.com", true }, - { "paymill.de", false }, + { "paymill.de", true }, { "pixi.me", true }, { "plus.google.com", false }, { "plus.sandbox.google.com", false }, @@ -181,6 +183,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "roundcube.mayfirst.org", false }, { "sakaki.anime.my", true }, { "sandbox.mydigipass.com", false }, + { "schokokeks.org", false }, { "securityheaders.com", true }, { "seifried.org", true }, { "shodan.io", true }, @@ -201,6 +204,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tinfoilsecurity.com", false }, { "torproject.org", false }, { "twitter.com", false }, + { "ub3rk1tten.com", true }, { "ubertt.org", true }, { "usaa.com", false }, { "vmoagents.com", false }, @@ -255,6 +259,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "www.noisebridge.net", false }, { "www.opsmate.com", true }, { "www.python.org", true }, + { "www.schokokeks.org", false }, { "www.simbolo.co.uk", false }, { "www.simple.com", false }, { "www.therapynotes.com", false },
1 0
0 0
[tor-browser/esr24] Bug 777574 - Skip all quickCheckAPI tests on linux/android/emulator slaves. r=kamidphish, a=test-only
by mikeperry@torproject.org 29 Aug '14

29 Aug '14
commit e3a565c6effc03fe56102732c8b38a72afb87385 Author: Benoit Jacob <bjacob(a)mozilla.com> Date: Mon Aug 11 22:57:16 2014 -0400 Bug 777574 - Skip all quickCheckAPI tests on linux/android/emulator slaves. r=kamidphish, a=test-only --- content/canvas/test/webgl/skipped_tests_android.txt | 11 +++++++++++ content/canvas/test/webgl/skipped_tests_linux.txt | 10 ++++++++++ content/canvas/test/webgl/skipped_tests_linux_mesa.txt | 11 +++++++++++ 3 files changed, 32 insertions(+) diff --git a/content/canvas/test/webgl/skipped_tests_android.txt b/content/canvas/test/webgl/skipped_tests_android.txt index a5c15b8..6378f1f 100644 --- a/content/canvas/test/webgl/skipped_tests_android.txt +++ b/content/canvas/test/webgl/skipped_tests_android.txt @@ -34,3 +34,14 @@ conformance/textures/gl-teximage.html conformance/textures/tex-image-and-sub-image-2d-with-image.html conformance/textures/tex-image-with-format-and-type.html conformance/textures/texture-size.html +conformance/more/conformance/quickCheckAPI-A.html +conformance/more/conformance/quickCheckAPI-B1.html +conformance/more/conformance/quickCheckAPI-B2.html +conformance/more/conformance/quickCheckAPI-B3.html +conformance/more/conformance/quickCheckAPI-B4.html +conformance/more/conformance/quickCheckAPIBadArgs.html +conformance/more/conformance/quickCheckAPI-C.html +conformance/more/conformance/quickCheckAPI-D_G.html +conformance/more/conformance/quickCheckAPI-G_I.html +conformance/more/conformance/quickCheckAPI-L_S.html +conformance/more/conformance/quickCheckAPI-S_V.html diff --git a/content/canvas/test/webgl/skipped_tests_linux.txt b/content/canvas/test/webgl/skipped_tests_linux.txt index 443f3eb..44da05b 100644 --- a/content/canvas/test/webgl/skipped_tests_linux.txt +++ b/content/canvas/test/webgl/skipped_tests_linux.txt @@ -1 +1,11 @@ +conformance/more/conformance/quickCheckAPI-A.html +conformance/more/conformance/quickCheckAPI-B1.html conformance/more/conformance/quickCheckAPI-B2.html +conformance/more/conformance/quickCheckAPI-B3.html +conformance/more/conformance/quickCheckAPI-B4.html +conformance/more/conformance/quickCheckAPIBadArgs.html +conformance/more/conformance/quickCheckAPI-C.html +conformance/more/conformance/quickCheckAPI-D_G.html +conformance/more/conformance/quickCheckAPI-G_I.html +conformance/more/conformance/quickCheckAPI-L_S.html +conformance/more/conformance/quickCheckAPI-S_V.html diff --git a/content/canvas/test/webgl/skipped_tests_linux_mesa.txt b/content/canvas/test/webgl/skipped_tests_linux_mesa.txt index 194c317..fa67582 100644 --- a/content/canvas/test/webgl/skipped_tests_linux_mesa.txt +++ b/content/canvas/test/webgl/skipped_tests_linux_mesa.txt @@ -1,3 +1,14 @@ conformance/misc/type-conversion-test.html conformance/reading/read-pixels-test.html conformance/textures/texture-mips.html +conformance/more/conformance/quickCheckAPI-A.html +conformance/more/conformance/quickCheckAPI-B1.html +conformance/more/conformance/quickCheckAPI-B2.html +conformance/more/conformance/quickCheckAPI-B3.html +conformance/more/conformance/quickCheckAPI-B4.html +conformance/more/conformance/quickCheckAPIBadArgs.html +conformance/more/conformance/quickCheckAPI-C.html +conformance/more/conformance/quickCheckAPI-D_G.html +conformance/more/conformance/quickCheckAPI-G_I.html +conformance/more/conformance/quickCheckAPI-L_S.html +conformance/more/conformance/quickCheckAPI-S_V.html
1 0
0 0
[tor-browser/esr24] No bug, Automated HSTS preload list update from host bld-linux64-spot-111 - a=hsts-update
by mikeperry@torproject.org 29 Aug '14

29 Aug '14
commit 46b09f4ffe51035103ea9f414439c71c608b1da8 Author: ffxbld <none@none> Date: Sat Aug 16 03:14:26 2014 -0700 No bug, Automated HSTS preload list update from host bld-linux64-spot-111 - a=hsts-update --- security/manager/boot/src/nsSTSPreloadList.errors | 15 +- security/manager/boot/src/nsSTSPreloadList.inc | 195 ++++++++++++++++++++- 2 files changed, 203 insertions(+), 7 deletions(-) diff --git a/security/manager/boot/src/nsSTSPreloadList.errors b/security/manager/boot/src/nsSTSPreloadList.errors index 4713b73..01e8365 100644 --- a/security/manager/boot/src/nsSTSPreloadList.errors +++ b/security/manager/boot/src/nsSTSPreloadList.errors @@ -8,6 +8,7 @@ apis.google.com: did not receive HSTS header app.lookout.com: could not connect to host appengine.google.com: did not receive HSTS header appseccalifornia.org: did not receive HSTS header +azprep.us: did not receive HSTS header bassh.net: did not receive HSTS header bccx.com: could not connect to host betnet.fr: could not connect to host @@ -22,7 +23,6 @@ checkout.google.com: did not receive HSTS header chrome-devtools-frontend.appspot.com: did not receive HSTS header chrome.google.com: did not receive HSTS header cloud.google.com: did not receive HSTS header -code-poets.co.uk: did not receive HSTS header code.google.com: did not receive HSTS header codereview.chromium.org: did not receive HSTS header crate.io: did not receive HSTS header @@ -42,7 +42,6 @@ edmodo.com: did not receive HSTS header email.lookout.com: could not connect to host encrypted.google.com: did not receive HSTS header epoxate.com: did not receive HSTS header -errors.zenpayroll.com: could not connect to host espra.com: could not connect to host fatzebra.com.au: did not receive HSTS header gamesdepartment.co.uk: did not receive HSTS header @@ -59,10 +58,12 @@ hackerone-user-content.com: could not connect to host haste.ch: could not connect to host history.google.com: did not receive HSTS header hostedtalkgadget.google.com: did not receive HSTS header +howrandom.org: could not connect to host in.xero.com: max-age too low: 3600 intercom.io: did not receive HSTS header iop.intuit.com: max-age too low: 86400 irccloud.com: did not receive HSTS header +janoberst.com: could not connect to host jitsi.org: did not receive HSTS header jottit.com: could not connect to host keymaster.lookout.com: did not receive HSTS header @@ -78,6 +79,7 @@ mobilethreatnetwork.net: could not connect to host my.alfresco.com: did not receive HSTS header mydigipass.com: did not receive HSTS header mykolab.com: did not receive HSTS header +nachsenden.info: did not receive HSTS header neonisi.com: could not connect to host nexth.de: could not connect to host nexth.net: did not receive HSTS header @@ -93,11 +95,14 @@ platform.lookout.com: could not connect to host play.google.com: did not receive HSTS header prodpad.com: did not receive HSTS header profiles.google.com: did not receive HSTS header +promecon-gmbh.de: did not receive HSTS header rapidresearch.me: could not connect to host -riseup.net: could not connect to host +riseup.net: did not receive HSTS header +s-c.se: could not connect to host sah3.net: could not connect to host saturngames.co.uk: did not receive HSTS header script.google.com: did not receive HSTS header +security-carpet.com: could not connect to host security.google.com: did not receive HSTS header semenkovich.com: did not receive HSTS header serverdensity.io: did not receive HSTS header @@ -116,7 +121,6 @@ ssl.panoramio.com: did not receive HSTS header stocktrade.de: could not connect to host sunshinepress.org: could not connect to host surfeasy.com: did not receive HSTS header -surkatty.org: could not connect to host talk.google.com: did not receive HSTS header talkgadget.google.com: did not receive HSTS header translate.googleapis.com: did not receive HSTS header @@ -130,9 +134,8 @@ www.dropbox.com: max-age too low: 2592000 www.elanex.biz: did not receive HSTS header www.gmail.com: did not receive HSTS header www.googlemail.com: did not receive HSTS header -www.greplin.com: could not connect to host +www.greplin.com: did not receive HSTS header www.jitsi.org: did not receive HSTS header -www.lastpass.com: did not receive HSTS header www.ledgerscope.net: did not receive HSTS header www.logentries.com: did not receive HSTS header www.moneybookers.com: did not receive HSTS header diff --git a/security/manager/boot/src/nsSTSPreloadList.inc b/security/manager/boot/src/nsSTSPreloadList.inc index 76d4f47..7dfc5f6 100644 --- a/security/manager/boot/src/nsSTSPreloadList.inc +++ b/security/manager/boot/src/nsSTSPreloadList.inc @@ -8,7 +8,7 @@ /*****************************************************************************/ #include "mozilla/StandardInteger.h" -const PRTime gPreloadListExpirationTime = INT64_C(1418465184497000); +const PRTime gPreloadListExpirationTime = INT64_C(1419070103890000); class nsSTSPreload { @@ -18,54 +18,98 @@ class nsSTSPreload }; static const nsSTSPreload kSTSPreloadList[] = { + { "accelerated.de", true }, { "accounts.firefox.com", true }, { "accounts.google.com", true }, { "aclu.org", false }, { "activiti.alfresco.com", false }, + { "adamkostecki.de", true }, + { "addvocate.com", true }, { "adsfund.org", true }, + { "aie.de", true }, { "aladdinschools.appspot.com", false }, + { "alexsexton.com", true }, { "alpha.irccloud.com", false }, { "anycoin.me", true }, + { "apadvantage.com", true }, { "api.intercom.io", false }, { "api.simple.com", false }, { "api.xero.com", false }, + { "apn-einstellungen.de", true }, { "app.manilla.com", true }, { "app.recurly.com", false }, { "app.yinxiang.com", false }, + { "archlinux.de", true }, { "arivo.com.br", true }, + { "auf-feindgebiet.de", true }, + { "baer.im", true }, { "bank.simple.com", false }, + { "barcodeberlin.com", true }, + { "baruch.me", true }, + { "bayrisch-fuer-anfaenger.de", true }, { "bccx.com", true }, { "bcrook.com", false }, + { "beastowner.com", true }, + { "beastowner.li", true }, + { "bedeta.de", true }, + { "beneathvt.com", true }, + { "benjamins.com", true }, + { "best-wedding-quotes.com", true }, { "bitbucket.org", false }, + { "bitfactory.ws", true }, + { "bl4ckb0x.com", true }, + { "bl4ckb0x.de", true }, + { "bl4ckb0x.info", true }, + { "bl4ckb0x.net", true }, + { "bl4ckb0x.org", true }, { "blacklane.com", true }, + { "blocksatz-medien.de", true }, { "blog.cyveillance.com", true }, { "blog.linode.com", false }, { "blog.lookout.com", false }, { "blog.torproject.org", false }, + { "bohramt.de", true }, { "boxcryptor.com", true }, + { "buddhistische-weisheiten.org", true }, { "bugzilla.mozilla.org", true }, { "business.lookout.com", false }, { "calyxinstitute.org", false }, { "carezone.com", false }, + { "cartouche24.eu", true }, + { "cartucce24.it", true }, + { "celltek-server.de", true }, + { "certible.com", true }, { "check.torproject.org", false }, { "chromiumcodereview.appspot.com", false }, + { "clapping-rhymes.com", true }, { "cloudcert.org", true }, { "cloudns.com.au", true }, { "cloudsecurityalliance.org", true }, + { "cloudup.com", true }, + { "code-poets.co.uk", true }, { "codereview.appspot.com", false }, { "config.schokokeks.org", false }, { "conformal.com", true }, + { "conrad-kostecki.de", true }, { "controlcenter.gigahost.dk", true }, { "crm.onlime.ch", false }, { "crypto.cat", false }, + { "cryptopartyatx.org", true }, + { "cube.de", true }, { "cupcake.io", true }, { "cupcake.is", true }, + { "cybershambles.com", true }, { "cybozu.com", true }, { "cyphertite.com", true }, + { "data-abundance.com", true }, { "data.qld.gov.au", false }, + { "datenkeks.de", true }, { "davidlyness.com", true }, + { "dedimax.de", true }, + { "derhil.de", true }, { "detectify.com", false }, { "developer.mydigipass.com", false }, + { "die-besten-weisheiten.de", true }, { "dillonkorman.com", true }, { "dist.torproject.org", false }, { "dm.lookout.com", false }, @@ -74,49 +118,108 @@ static const nsSTSPreload kSTSPreloadList[] = { { "download.jitsi.org", false }, { "ebanking.indovinabank.com.vn", false }, { "ecosystem.atlassian.net", true }, + { "ed.gs", true }, + { "edyou.eu", true }, { "eff.org", true }, { "emailprivacytester.com", true }, { "encircleapp.com", true }, + { "energy-drink-magazin.de", true }, { "entropia.de", false }, { "errors.zenpayroll.com", false }, { "espra.com", true }, + { "eurotramp.com", true }, + { "explodie.org", true }, { "f-droid.org", true }, { "factor.cc", false }, { "fairbill.com", true }, { "faq.lookout.com", false }, { "feedbin.com", false }, + { "ferienhaus-polchow-ruegen.de", true }, { "fiken.no", true }, + { "fischer-its.com", true }, { "fj.simple.com", false }, { "flynn.io", true }, + { "forewordreviews.com", true }, + { "forodeespanol.com", true }, { "forum.linode.com", false }, { "forum.quantifiedself.com", true }, + { "freeshell.de", true }, + { "gemeinfreie-lieder.de", true }, { "gernert-server.de", true }, { "getcloak.com", false }, + { "getdigitized.net", true }, + { "giacomopelagatti.it", true }, + { "globalcs.co.uk", true }, + { "globuli-info.de", true }, { "go.xero.com", false }, { "gocardless.com", true }, { "grc.com", false }, + { "greensolid.biz", true }, { "grepular.com", true }, + { "guphi.net", true }, + { "guthabenkarten-billiger.de", true }, { "hackerone.com", true }, { "harvestapp.com", true }, + { "hasilocke.de", true }, { "haste.ch", true }, + { "haufschild.de", true }, + { "hausverbrauch.de", true }, { "heha.co", true }, + { "helichat.de", true }, + { "helpium.de", true }, + { "hex2013.com", true }, + { "hoerbuecher-und-hoerspiele.de", true }, + { "honeytracks.com", true }, + { "hostinginnederland.nl", true }, + { "hostix.de", true }, { "howrandom.org", true }, + { "iban.is", true }, { "id.atlassian.com", false }, { "id.mayfirst.org", false }, + { "ihrlotto.de", true }, { "imouto.my", false }, { "inertianetworks.com", true }, + { "irische-segenswuensche.info", true }, + { "isitchristmas.com", true }, + { "it-schwerin.de", true }, { "itriskltd.com", true }, { "jackyyf.com", false }, + { "janus-engineering.de", true }, + { "jelmer.co.uk", true }, + { "jelmer.uk", true }, + { "jfreitag.de", true }, + { "jonas-keidel.de", true }, + { "jonaswitmer.ch", true }, + { "julian-kipka.de", true }, + { "k-dev.de", true }, + { "kardize24.pl", true }, { "keeperapp.com", true }, { "keepersecurity.com", true }, + { "kernel-error.de", true }, { "keyerror.com", true }, + { "kinderbuecher-kostenlos.de", true }, { "kinsights.com", false }, + { "kitsta.com", true }, + { "klatschreime.de", true }, + { "klaxn.com", true }, + { "kleidertauschpartys.de", true }, + { "konklone.com", true }, + { "koop-bremen.de", true }, + { "koordinate.net", true }, + { "kraken.io", true }, + { "kura.io", true }, + { "lagerauftrag.info", true }, + { "lasst-uns-beten.de", true }, { "lastpass.com", false }, { "launchkey.com", true }, + { "lavalite.de", true }, + { "lb-toner.de", true }, { "library.linode.com", false }, { "linode.com", false }, { "linx.net", false }, { "lockify.com", true }, + { "loenshotel.de", true }, + { "loftboard.eu", true }, { "logentries.com", false }, { "login.persona.org", true }, { "login.sapo.pt", true }, @@ -132,6 +235,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "manage.zenpayroll.com", false }, { "manageprojects.com", true }, { "manager.linode.com", false }, + { "mandala-ausmalbilder.de", true }, + { "markusueberallassetmanagement.de", true }, + { "mathiasbynens.be", true }, { "matteomarescotti.name", true }, { "mattmccutchen.net", true }, { "mbp.banking.co.at", false }, @@ -140,22 +246,38 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mega.co.nz", false }, { "members.mayfirst.org", false }, { "members.nearlyfreespeech.net", false }, + { "mig5.net", true }, + { "mikewest.org", true }, { "miku.hatsune.my", true }, + { "miskatonic.org", true }, { "mnsure.org", true }, { "mobile.usaa.com", false }, + { "mondwandler.de", true }, + { "mountainroseherbs.com", true }, + { "movlib.org", true }, { "mudcrab.us", true }, + { "munich-rage.de", true }, + { "musicgamegalaxy.de", true }, { "mwe.st", true }, { "my.onlime.ch", false }, { "my.xero.com", false }, { "mylookout.com", false }, + { "mynigma.org", true }, { "neg9.org", false }, { "neilwynne.com", false }, + { "netzbit.de", true }, + { "netzpolitik.org", true }, + { "npw.net", true }, { "onedrive.com", true }, { "onedrive.live.com", false }, { "oplop.appspot.com", true }, { "opsmate.com", false }, + { "optimus.io", true }, + { "otakuworld.de", true }, + { "oversight.io", true }, { "p.linode.com", false }, { "packagist.org", false }, + { "pajonzeck.de", true }, { "passport.yandex.by", false }, { "passport.yandex.com", false }, { "passport.yandex.com.tr", false }, @@ -168,48 +290,112 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pay.gigahost.dk", true }, { "paymill.com", true }, { "paymill.de", true }, + { "pdf.yt", true }, + { "picksin.club", true }, + { "pierre-schmitz.com", true }, { "pixi.me", true }, { "plus.google.com", false }, { "plus.sandbox.google.com", false }, { "portal.tirol.gv.at", true }, + { "posteo.de", true }, + { "pressfreedomfoundation.org", true }, + { "projektzentrisch.de", true }, + { "prowhisky.de", true }, + { "pubkey.is", true }, { "publications.qld.gov.au", false }, { "pult.co", true }, { "pypi.python.org", true }, { "python.org", false }, + { "qetesh.de", true }, + { "rad-route.de", true }, + { "raiseyourflag.com", true }, + { "redports.org", true }, + { "reserve-online.net", true }, { "reviews.anime.my", true }, + { "riccy.org", true }, + { "riesenmagnete.de", true }, + { "rippleunion.com", true }, { "rme.li", false }, + { "robteix.com", true }, { "roddis.net", false }, { "romab.com", true }, + { "rosenkeller.org", true }, { "roundcube.mayfirst.org", false }, { "sakaki.anime.my", true }, + { "salaervergleich.com", true }, { "sandbox.mydigipass.com", false }, { "schokokeks.org", false }, + { "schwarzer.it", true }, + { "scrambl.is", true }, { "securityheaders.com", true }, + { "secuvera.de", true }, { "seifried.org", true }, + { "sherbers.de", true }, { "shodan.io", true }, + { "siammedia.co", true }, { "silentcircle.com", true }, { "simbolo.co.uk", false }, { "simple.com", false }, + { "simplystudio.com", true }, { "skydrive.live.com", false }, + { "sprueche-zum-valentinstag.de", true }, + { "sprueche-zur-geburt.info", true }, + { "sprueche-zur-hochzeit.de", true }, + { "sprueche-zur-konfirmation.de", true }, { "squareup.com", false }, { "stage.wepay.com", false }, { "static.wepay.com", false }, + { "stationary-traveller.eu", true }, { "stripe.com", true }, { "strongest-privacy.com", true }, + { "studydrive.net", true }, { "subrosa.io", true }, + { "supplies24.at", true }, + { "supplies24.es", true }, { "support.mayfirst.org", false }, { "surkatty.org", true }, + { "tageau.com", true }, + { "tatort-fanpage.de", true }, + { "tektoria.de", true }, { "tent.io", true }, + { "texte-zur-taufe.de", true }, + { "thepaymentscompany.com", true }, { "therapynotes.com", false }, { "tinfoilsecurity.com", false }, + { "tinte24.de", true }, + { "tintenfix.net", true }, + { "tipps-fuer-den-haushalt.de", true }, + { "tittelbach.at", true }, + { "tomfisher.eu", true }, + { "toner24.at", true }, + { "toner24.co.uk", true }, + { "toner24.es", true }, + { "toner24.fr", true }, + { "toner24.it", true }, + { "toner24.nl", true }, + { "toner24.pl", true }, + { "tonerdepot.de", true }, + { "tonerjet.at", true }, + { "tonerjet.co.uk", true }, + { "tonerklick.de", true }, + { "tonerkurier.de", true }, + { "tonermaus.de", true }, + { "tonermonster.de", true }, + { "tonex.de", true }, + { "tonex.nl", true }, { "torproject.org", false }, + { "trauertexte.info", true }, { "twitter.com", false }, { "ub3rk1tten.com", true }, { "ubertt.org", true }, + { "ukrainians.ch", true }, + { "unterfrankenclan.de", true }, { "usaa.com", false }, + { "viennan.net", true }, { "vmoagents.com", false }, { "vocaloid.my", true }, { "w-spotlight.appspot.com", true }, + { "webandmore.de", true }, { "webcollect.org.uk", true }, { "webfilings-eu-mirror.appspot.com", true }, { "webfilings-eu.appspot.com", true }, @@ -218,6 +404,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webmail.gigahost.dk", false }, { "webmail.onlime.ch", false }, { "webmail.schokokeks.org", false }, + { "welches-kinderfahrrad.de", true }, { "wepay.com", false }, { "wf-bigsky-master.appspot.com", true }, { "wf-demo-eu.appspot.com", true }, @@ -230,8 +417,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wf-trial-hrd.appspot.com", true }, { "wiki.python.org", true }, { "wildbee.org", true }, + { "winhistory-forum.net", true }, { "wiz.biz", true }, { "writeapp.me", false }, + { "wunderlist.com", true }, { "www.aclu.org", false }, { "www.airbnb.com", true }, { "www.apollo-auto.com", true }, @@ -251,6 +440,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "www.heliosnet.com", true }, { "www.intercom.io", false }, { "www.irccloud.com", false }, + { "www.lastpass.com", false }, { "www.linode.com", false }, { "www.lookout.com", false }, { "www.makeyourlaws.org", true }, @@ -270,6 +460,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "www.wepay.com", false }, { "www.zenpayroll.com", false }, { "xbrlsuccess.appspot.com", true }, + { "xps2pdf.co.uk", true }, + { "y-o-w.com", true }, { "z.ai", true }, { "zenpayroll.com", false }, + { "zotero.org", true }, };
1 0
0 0
[tor-browser/esr24] Automated checkin: version bump for firefox 24.7.0esr release. DONTBUILD CLOSED TREE a=release
by mikeperry@torproject.org 29 Aug '14

29 Aug '14
commit 5a45b0d0ddb1c96ca2ec0ce16f7d616d390aec3f Author: ffxbld <none@none> Date: Mon Jul 14 18:28:02 2014 -0400 Automated checkin: version bump for firefox 24.7.0esr release. DONTBUILD CLOSED TREE a=release --- browser/config/version.txt | 2 +- config/milestone.txt | 2 +- js/src/config/milestone.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/browser/config/version.txt b/browser/config/version.txt index 60f1860..98b82b8 100644 --- a/browser/config/version.txt +++ b/browser/config/version.txt @@ -1 +1 @@ -24.6.0esrpre +24.7.0esrpre diff --git a/config/milestone.txt b/config/milestone.txt index 71e3ef9..c293ee8 100644 --- a/config/milestone.txt +++ b/config/milestone.txt @@ -10,4 +10,4 @@ # hardcoded milestones in the tree from these two files. #-------------------------------------------------------- -24.6.0 +24.7.0esrpre diff --git a/js/src/config/milestone.txt b/js/src/config/milestone.txt index 71e3ef9..c293ee8 100644 --- a/js/src/config/milestone.txt +++ b/js/src/config/milestone.txt @@ -10,4 +10,4 @@ # hardcoded milestones in the tree from these two files. #-------------------------------------------------------- -24.6.0 +24.7.0esrpre
1 0
0 0
[tor-browser/esr24] Bug 701479 - Remove usage of EnumPrintersW to test if port is FILE:. nsDeviceContextSpecWin shouldn't start UI for asking for a filename nor query all possible printers. r=jimm, a=lsblakk
by mikeperry@torproject.org 29 Aug '14

29 Aug '14
commit 5c995e3f678a3e5a5cf5ec29abf0e811cc1a6707 Author: Oskar Eisemuth <dev_oskar(a)hotmail.com> Date: Tue Jan 28 16:31:20 2014 +0100 Bug 701479 - Remove usage of EnumPrintersW to test if port is FILE:. nsDeviceContextSpecWin shouldn't start UI for asking for a filename nor query all possible printers. r=jimm, a=lsblakk --- widget/windows/nsDeviceContextSpecWin.cpp | 196 ----------------------------- 1 file changed, 196 deletions(-) diff --git a/widget/windows/nsDeviceContextSpecWin.cpp b/widget/windows/nsDeviceContextSpecWin.cpp index 134d74f..1da105f 100644 --- a/widget/windows/nsDeviceContextSpecWin.cpp +++ b/widget/windows/nsDeviceContextSpecWin.cpp @@ -181,189 +181,6 @@ static PRUnichar * GetDefaultPrinterNameFromGlobalPrinters() return ToNewUnicode(printerName); } -//---------------------------------------------------------------- -static nsresult -EnumerateNativePrinters(DWORD aWhichPrinters, LPWSTR aPrinterName, bool& aIsFound, bool& aIsFile) -{ - DWORD dwSizeNeeded = 0; - DWORD dwNumItems = 0; - LPPRINTER_INFO_2W lpInfo = NULL; - - // Get buffer size - if (::EnumPrintersW(aWhichPrinters, NULL, 2, NULL, 0, &dwSizeNeeded, - &dwNumItems)) { - return NS_ERROR_FAILURE; - } - - // allocate memory - lpInfo = (LPPRINTER_INFO_2W) malloc(dwSizeNeeded); - if (!lpInfo) { - return NS_ERROR_OUT_OF_MEMORY; - } - - if (::EnumPrintersW(PRINTER_ENUM_LOCAL, NULL, 2, (LPBYTE)lpInfo, - dwSizeNeeded, &dwSizeNeeded, &dwNumItems) == 0) { - free(lpInfo); - return NS_OK; - } - - for (DWORD i = 0; i < dwNumItems; i++ ) { - if (wcscmp(lpInfo[i].pPrinterName, aPrinterName) == 0) { - aIsFound = true; - aIsFile = wcscmp(lpInfo[i].pPortName, L"FILE:") == 0; - break; - } - } - - free(lpInfo); - return NS_OK; -} - -//---------------------------------------------------------------- -static void -CheckForPrintToFileWithName(LPWSTR aPrinterName, bool& aIsFile) -{ - bool isFound = false; - aIsFile = false; - nsresult rv = EnumerateNativePrinters(PRINTER_ENUM_LOCAL, aPrinterName, isFound, aIsFile); - if (isFound) return; - - rv = EnumerateNativePrinters(PRINTER_ENUM_NETWORK, aPrinterName, isFound, aIsFile); - if (isFound) return; - - rv = EnumerateNativePrinters(PRINTER_ENUM_SHARED, aPrinterName, isFound, aIsFile); - if (isFound) return; - - rv = EnumerateNativePrinters(PRINTER_ENUM_REMOTE, aPrinterName, isFound, aIsFile); - if (isFound) return; -} - -static nsresult -GetFileNameForPrintSettings(nsIPrintSettings* aPS) -{ - // for testing -#ifdef DEBUG_rods - return NS_OK; -#endif - - nsresult rv; - - nsCOMPtr<nsIFilePicker> filePicker = do_CreateInstance("@mozilla.org/filepicker;1", &rv); - NS_ENSURE_SUCCESS(rv, rv); - - nsCOMPtr<nsIStringBundleService> bundleService = - mozilla::services::GetStringBundleService(); - if (!bundleService) - return NS_ERROR_FAILURE; - nsCOMPtr<nsIStringBundle> bundle; - rv = bundleService->CreateBundle(NS_ERROR_GFX_PRINTER_BUNDLE_URL, getter_AddRefs(bundle)); - NS_ENSURE_SUCCESS(rv, rv); - - nsXPIDLString title; - rv = bundle->GetStringFromName(NS_LITERAL_STRING("PrintToFile").get(), getter_Copies(title)); - NS_ENSURE_SUCCESS(rv, rv); - - nsCOMPtr<nsIWindowWatcher> wwatch = - (do_GetService(NS_WINDOWWATCHER_CONTRACTID, &rv)); - NS_ENSURE_SUCCESS(rv, rv); - - nsCOMPtr<nsIDOMWindow> window; - wwatch->GetActiveWindow(getter_AddRefs(window)); - - rv = filePicker->Init(window, title, nsIFilePicker::modeSave); - NS_ENSURE_SUCCESS(rv, rv); - - rv = filePicker->AppendFilters(nsIFilePicker::filterAll); - NS_ENSURE_SUCCESS(rv, rv); - - PRUnichar* fileName; - aPS->GetToFileName(&fileName); - - if (fileName) { - if (*fileName) { - nsAutoString leafName; - nsCOMPtr<nsIFile> file(do_CreateInstance("@mozilla.org/file/local;1")); - if (file) { - rv = file->InitWithPath(nsDependentString(fileName)); - if (NS_SUCCEEDED(rv)) { - file->GetLeafName(leafName); - filePicker->SetDisplayDirectory(file); - } - } - if (!leafName.IsEmpty()) { - rv = filePicker->SetDefaultString(leafName); - } - NS_ENSURE_SUCCESS(rv, rv); - } - nsMemory::Free(fileName); - } - - int16_t dialogResult; - filePicker->Show(&dialogResult); - - if (dialogResult == nsIFilePicker::returnCancel) { - return NS_ERROR_ABORT; - } - - nsCOMPtr<nsIFile> localFile; - rv = filePicker->GetFile(getter_AddRefs(localFile)); - NS_ENSURE_SUCCESS(rv, rv); - - if (dialogResult == nsIFilePicker::returnReplace) { - // be extra safe and only delete when the file is really a file - bool isFile; - rv = localFile->IsFile(&isFile); - if (NS_SUCCEEDED(rv) && isFile) { - rv = localFile->Remove(false /* recursive delete */); - NS_ENSURE_SUCCESS(rv, rv); - } - } - - nsAutoString unicodePath; - rv = localFile->GetPath(unicodePath); - NS_ENSURE_SUCCESS(rv,rv); - - if (unicodePath.IsEmpty()) { - rv = NS_ERROR_ABORT; - } - - if (NS_SUCCEEDED(rv)) aPS->SetToFileName(unicodePath.get()); - - return rv; -} - -//---------------------------------------------------------------------------------- -static nsresult -CheckForPrintToFile(nsIPrintSettings* aPS, LPWSTR aPrinterName, PRUnichar* aUPrinterName) -{ - nsresult rv = NS_OK; - - if (!aPrinterName && !aUPrinterName) return rv; - - bool toFile; - CheckForPrintToFileWithName(aPrinterName?aPrinterName:aUPrinterName, toFile); - // Since the driver wasn't a "Print To File" Driver, check to see - // if the name of the file has been set to the special "FILE:" - if (!toFile) { - nsXPIDLString toFileName; - aPS->GetToFileName(getter_Copies(toFileName)); - if (toFileName) { - if (*toFileName) { - if (toFileName.EqualsLiteral("FILE:")) { - // this skips the setting of the "print to file" info below - // which we don't want to do. - return NS_OK; - } - } - } - } - aPS->SetPrintToFile(toFile); - if (toFile) { - rv = GetFileNameForPrintSettings(aPS); - } - return rv; -} - //---------------------------------------------------------------------------------- NS_IMETHODIMP nsDeviceContextSpecWin::Init(nsIWidget* aWidget, nsIPrintSettings* aPrintSettings, @@ -398,15 +215,6 @@ NS_IMETHODIMP nsDeviceContextSpecWin::Init(nsIWidget* aWidget, SetDriverName(driverName); SetDevMode(devMode); - if (!aIsPrintPreview) { - rv = CheckForPrintToFile(mPrintSettings, deviceName, nullptr); - if (NS_FAILED(rv)) { - nsCRT::free(deviceName); - nsCRT::free(driverName); - return NS_ERROR_FAILURE; - } - } - // clean up nsCRT::free(deviceName); nsCRT::free(driverName); @@ -437,10 +245,6 @@ NS_IMETHODIMP nsDeviceContextSpecWin::Init(nsIWidget* aWidget, NS_ASSERTION(printerName, "We have to have a printer name"); if (!printerName || !*printerName) return rv; - if (!aIsPrintPreview) { - CheckForPrintToFile(mPrintSettings, nullptr, printerName); - } - return GetDataFromPrinter(printerName, mPrintSettings); }
1 0
0 0
[tor-browser/esr24] Backed out changeset 810977d38c0d (bug 701479) for jetpack orange, DONTBUILD because strict backout and RyanVM says so.
by mikeperry@torproject.org 29 Aug '14

29 Aug '14
commit c523f5c0036542fc1ed36b78e46b99f1f86c8728 Author: Gijs Kruitbosch <gijskruitbosch(a)gmail.com> Date: Tue Jul 15 14:46:52 2014 +0100 Backed out changeset 810977d38c0d (bug 701479) for jetpack orange, DONTBUILD because strict backout and RyanVM says so. --- widget/windows/nsDeviceContextSpecWin.cpp | 196 +++++++++++++++++++++++++++++ 1 file changed, 196 insertions(+) diff --git a/widget/windows/nsDeviceContextSpecWin.cpp b/widget/windows/nsDeviceContextSpecWin.cpp index 1da105f..134d74f 100644 --- a/widget/windows/nsDeviceContextSpecWin.cpp +++ b/widget/windows/nsDeviceContextSpecWin.cpp @@ -181,6 +181,189 @@ static PRUnichar * GetDefaultPrinterNameFromGlobalPrinters() return ToNewUnicode(printerName); } +//---------------------------------------------------------------- +static nsresult +EnumerateNativePrinters(DWORD aWhichPrinters, LPWSTR aPrinterName, bool& aIsFound, bool& aIsFile) +{ + DWORD dwSizeNeeded = 0; + DWORD dwNumItems = 0; + LPPRINTER_INFO_2W lpInfo = NULL; + + // Get buffer size + if (::EnumPrintersW(aWhichPrinters, NULL, 2, NULL, 0, &dwSizeNeeded, + &dwNumItems)) { + return NS_ERROR_FAILURE; + } + + // allocate memory + lpInfo = (LPPRINTER_INFO_2W) malloc(dwSizeNeeded); + if (!lpInfo) { + return NS_ERROR_OUT_OF_MEMORY; + } + + if (::EnumPrintersW(PRINTER_ENUM_LOCAL, NULL, 2, (LPBYTE)lpInfo, + dwSizeNeeded, &dwSizeNeeded, &dwNumItems) == 0) { + free(lpInfo); + return NS_OK; + } + + for (DWORD i = 0; i < dwNumItems; i++ ) { + if (wcscmp(lpInfo[i].pPrinterName, aPrinterName) == 0) { + aIsFound = true; + aIsFile = wcscmp(lpInfo[i].pPortName, L"FILE:") == 0; + break; + } + } + + free(lpInfo); + return NS_OK; +} + +//---------------------------------------------------------------- +static void +CheckForPrintToFileWithName(LPWSTR aPrinterName, bool& aIsFile) +{ + bool isFound = false; + aIsFile = false; + nsresult rv = EnumerateNativePrinters(PRINTER_ENUM_LOCAL, aPrinterName, isFound, aIsFile); + if (isFound) return; + + rv = EnumerateNativePrinters(PRINTER_ENUM_NETWORK, aPrinterName, isFound, aIsFile); + if (isFound) return; + + rv = EnumerateNativePrinters(PRINTER_ENUM_SHARED, aPrinterName, isFound, aIsFile); + if (isFound) return; + + rv = EnumerateNativePrinters(PRINTER_ENUM_REMOTE, aPrinterName, isFound, aIsFile); + if (isFound) return; +} + +static nsresult +GetFileNameForPrintSettings(nsIPrintSettings* aPS) +{ + // for testing +#ifdef DEBUG_rods + return NS_OK; +#endif + + nsresult rv; + + nsCOMPtr<nsIFilePicker> filePicker = do_CreateInstance("@mozilla.org/filepicker;1", &rv); + NS_ENSURE_SUCCESS(rv, rv); + + nsCOMPtr<nsIStringBundleService> bundleService = + mozilla::services::GetStringBundleService(); + if (!bundleService) + return NS_ERROR_FAILURE; + nsCOMPtr<nsIStringBundle> bundle; + rv = bundleService->CreateBundle(NS_ERROR_GFX_PRINTER_BUNDLE_URL, getter_AddRefs(bundle)); + NS_ENSURE_SUCCESS(rv, rv); + + nsXPIDLString title; + rv = bundle->GetStringFromName(NS_LITERAL_STRING("PrintToFile").get(), getter_Copies(title)); + NS_ENSURE_SUCCESS(rv, rv); + + nsCOMPtr<nsIWindowWatcher> wwatch = + (do_GetService(NS_WINDOWWATCHER_CONTRACTID, &rv)); + NS_ENSURE_SUCCESS(rv, rv); + + nsCOMPtr<nsIDOMWindow> window; + wwatch->GetActiveWindow(getter_AddRefs(window)); + + rv = filePicker->Init(window, title, nsIFilePicker::modeSave); + NS_ENSURE_SUCCESS(rv, rv); + + rv = filePicker->AppendFilters(nsIFilePicker::filterAll); + NS_ENSURE_SUCCESS(rv, rv); + + PRUnichar* fileName; + aPS->GetToFileName(&fileName); + + if (fileName) { + if (*fileName) { + nsAutoString leafName; + nsCOMPtr<nsIFile> file(do_CreateInstance("@mozilla.org/file/local;1")); + if (file) { + rv = file->InitWithPath(nsDependentString(fileName)); + if (NS_SUCCEEDED(rv)) { + file->GetLeafName(leafName); + filePicker->SetDisplayDirectory(file); + } + } + if (!leafName.IsEmpty()) { + rv = filePicker->SetDefaultString(leafName); + } + NS_ENSURE_SUCCESS(rv, rv); + } + nsMemory::Free(fileName); + } + + int16_t dialogResult; + filePicker->Show(&dialogResult); + + if (dialogResult == nsIFilePicker::returnCancel) { + return NS_ERROR_ABORT; + } + + nsCOMPtr<nsIFile> localFile; + rv = filePicker->GetFile(getter_AddRefs(localFile)); + NS_ENSURE_SUCCESS(rv, rv); + + if (dialogResult == nsIFilePicker::returnReplace) { + // be extra safe and only delete when the file is really a file + bool isFile; + rv = localFile->IsFile(&isFile); + if (NS_SUCCEEDED(rv) && isFile) { + rv = localFile->Remove(false /* recursive delete */); + NS_ENSURE_SUCCESS(rv, rv); + } + } + + nsAutoString unicodePath; + rv = localFile->GetPath(unicodePath); + NS_ENSURE_SUCCESS(rv,rv); + + if (unicodePath.IsEmpty()) { + rv = NS_ERROR_ABORT; + } + + if (NS_SUCCEEDED(rv)) aPS->SetToFileName(unicodePath.get()); + + return rv; +} + +//---------------------------------------------------------------------------------- +static nsresult +CheckForPrintToFile(nsIPrintSettings* aPS, LPWSTR aPrinterName, PRUnichar* aUPrinterName) +{ + nsresult rv = NS_OK; + + if (!aPrinterName && !aUPrinterName) return rv; + + bool toFile; + CheckForPrintToFileWithName(aPrinterName?aPrinterName:aUPrinterName, toFile); + // Since the driver wasn't a "Print To File" Driver, check to see + // if the name of the file has been set to the special "FILE:" + if (!toFile) { + nsXPIDLString toFileName; + aPS->GetToFileName(getter_Copies(toFileName)); + if (toFileName) { + if (*toFileName) { + if (toFileName.EqualsLiteral("FILE:")) { + // this skips the setting of the "print to file" info below + // which we don't want to do. + return NS_OK; + } + } + } + } + aPS->SetPrintToFile(toFile); + if (toFile) { + rv = GetFileNameForPrintSettings(aPS); + } + return rv; +} + //---------------------------------------------------------------------------------- NS_IMETHODIMP nsDeviceContextSpecWin::Init(nsIWidget* aWidget, nsIPrintSettings* aPrintSettings, @@ -215,6 +398,15 @@ NS_IMETHODIMP nsDeviceContextSpecWin::Init(nsIWidget* aWidget, SetDriverName(driverName); SetDevMode(devMode); + if (!aIsPrintPreview) { + rv = CheckForPrintToFile(mPrintSettings, deviceName, nullptr); + if (NS_FAILED(rv)) { + nsCRT::free(deviceName); + nsCRT::free(driverName); + return NS_ERROR_FAILURE; + } + } + // clean up nsCRT::free(deviceName); nsCRT::free(driverName); @@ -245,6 +437,10 @@ NS_IMETHODIMP nsDeviceContextSpecWin::Init(nsIWidget* aWidget, NS_ASSERTION(printerName, "We have to have a printer name"); if (!printerName || !*printerName) return rv; + if (!aIsPrintPreview) { + CheckForPrintToFile(mPrintSettings, nullptr, printerName); + } + return GetDataFromPrinter(printerName, mPrintSettings); }
1 0
0 0
[tor-browser/esr24] Bug 1035551 - Add an in-tree config for marionette tests. r=ahal, a=NPOTB
by mikeperry@torproject.org 29 Aug '14

29 Aug '14
commit 916f79ab0a7251d4ff7206cb05e80832f326d552 Author: Chris Manchester <cmanchester(a)mozilla.com> Date: Mon Jul 14 16:02:39 2014 -0400 Bug 1035551 - Add an in-tree config for marionette tests. r=ahal, a=NPOTB --- testing/config/mozharness/marionette.py | 57 +++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/testing/config/mozharness/marionette.py b/testing/config/mozharness/marionette.py new file mode 100644 index 0000000..6794bbc --- /dev/null +++ b/testing/config/mozharness/marionette.py @@ -0,0 +1,57 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +config = { + "marionette_desktop_options": [ + "--type=%(type)s", + "--log-raw=%(raw_log_file)s", + "--binary=%(binary)s", + "--address=%(address)s", + ], + "marionette_emulator_options": [ + "--type=%(type)s", + "--log-raw=%(raw_log_file)s", + "--logcat-dir=%(logcat_dir)s", + "--emulator=%(emulator)s", + "--homedir=%(homedir)s", + ], + "webapi_emulator_options": [ + "--type=%(type)s", + "--log-raw=%(raw_log_file)s", + "--symbols-path=%(symbols_path)s", + "--logcat-dir=%(logcat_dir)s", + "--emulator=%(emulator)s", + "--homedir=%(homedir)s", + ], + # This combination is not currently run. + "webapi_desktop_options": [ + ], + "gaiatest_emulator_options": [ + "--restart", + "--timeout=%(timeout)s", + "--type=%(type)s", + "--testvars=%(testvars)s", + "--profile=%(profile)s", + "--symbols-path=%(symbols_path)s", + "--xml-output=%(xml_output)s", + "--html-output=%(html_output)s", + "--log-raw=%(raw_log_file)s", + "--logcat-dir=%(logcat_dir)s", + "--emulator=%(emulator)s", + "--homedir=%(homedir)s", + ], + "gaiatest_desktop_options": [ + "--restart", + "--timeout=%(timeout)s", + "--type=%(type)s", + "--testvars=%(testvars)s", + "--profile=%(profile)s", + "--symbols-path=%(symbols_path)s", + "--xml-output=%(xml_output)s", + "--html-output=%(html_output)s", + "--log-raw=%(raw_log_file)s", + "--binary=%(binary)s", + "--address=%(address)s", + ], +}
1 0
0 0
[tor-browser/esr24] Automated checkin: version bump for thunderbird 24.7.0 release. DONTBUILD CLOSED TREE a=release
by mikeperry@torproject.org 29 Aug '14

29 Aug '14
commit 89942ba11cfb2d441346036501aaeaa2102036c8 Author: tbirdbld <none@none> Date: Thu Jul 17 09:53:59 2014 -0400 Automated checkin: version bump for thunderbird 24.7.0 release. DONTBUILD CLOSED TREE a=release --- config/milestone.txt | 2 +- js/src/config/milestone.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/milestone.txt b/config/milestone.txt index c293ee8..20c6f99 100644 --- a/config/milestone.txt +++ b/config/milestone.txt @@ -10,4 +10,4 @@ # hardcoded milestones in the tree from these two files. #-------------------------------------------------------- -24.7.0esrpre +24.7.0 diff --git a/js/src/config/milestone.txt b/js/src/config/milestone.txt index c293ee8..20c6f99 100644 --- a/js/src/config/milestone.txt +++ b/js/src/config/milestone.txt @@ -10,4 +10,4 @@ # hardcoded milestones in the tree from these two files. #-------------------------------------------------------- -24.7.0esrpre +24.7.0
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 1946
  • 1947
  • 1948
  • 1949
  • 1950
  • 1951
  • 1952
  • ...
  • 2008
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.