diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-07-18 08:24:24 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-07-18 08:24:24 +0200 |
commit | fc61780b35af913801d72086456f493f63197da6 (patch) | |
tree | f85891288a7bd988da9f0f15ae64e5c63f00d493 /application/basilisk/components/privatebrowsing | |
parent | 69f7f9e5f1475891ce11cc4f431692f965b0cd30 (diff) | |
parent | 50d3e596bbe89c95615f96eb71f6bc5be737a1db (diff) | |
download | UXP-fc61780b35af913801d72086456f493f63197da6.tar UXP-fc61780b35af913801d72086456f493f63197da6.tar.gz UXP-fc61780b35af913801d72086456f493f63197da6.tar.lz UXP-fc61780b35af913801d72086456f493f63197da6.tar.xz UXP-fc61780b35af913801d72086456f493f63197da6.zip |
Merge commit '50d3e596bbe89c95615f96eb71f6bc5be737a1db' into Basilisk-releasev2018.07.18
# Conflicts:
# browser/app/profile/firefox.js
# browser/components/preferences/jar.mn
Diffstat (limited to 'application/basilisk/components/privatebrowsing')
5 files changed, 208 insertions, 0 deletions
diff --git a/application/basilisk/components/privatebrowsing/content/aboutPrivateBrowsing.css b/application/basilisk/components/privatebrowsing/content/aboutPrivateBrowsing.css new file mode 100644 index 000000000..29d7a843d --- /dev/null +++ b/application/basilisk/components/privatebrowsing/content/aboutPrivateBrowsing.css @@ -0,0 +1,10 @@ +html.private .showNormal, +html.normal .showPrivate, +body[tpEnabled] .showTpDisabled, +body:not([tpEnabled]) .showTpEnabled { + display: none !important; +} + +.hide { + display: none; +} diff --git a/application/basilisk/components/privatebrowsing/content/aboutPrivateBrowsing.js b/application/basilisk/components/privatebrowsing/content/aboutPrivateBrowsing.js new file mode 100644 index 000000000..00184102a --- /dev/null +++ b/application/basilisk/components/privatebrowsing/content/aboutPrivateBrowsing.js @@ -0,0 +1,97 @@ +/* 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/. */ + +var {classes: Cc, interfaces: Ci, utils: Cu} = Components; + +Cu.import("resource://gre/modules/Services.jsm"); +Cu.import("resource://gre/modules/PrivateBrowsingUtils.jsm"); +Cu.import("resource://gre/modules/XPCOMUtils.jsm"); + +const FAVICON_QUESTION = "chrome://global/skin/icons/question-32.png"; +const FAVICON_PRIVACY = "chrome://browser/skin/privatebrowsing/favicon.svg"; + +var stringBundle = Services.strings.createBundle( + "chrome://browser/locale/aboutPrivateBrowsing.properties"); + +#ifdef MOZ_SAFE_BROWSING +var prefBranch = Services.prefs.getBranch("privacy.trackingprotection."); +var prefObserver = { + QueryInterface: XPCOMUtils.generateQI([Ci.nsIObserver, + Ci.nsISupportsWeakReference]), + observe: function () { + let tpSubHeader = document.getElementById("tpSubHeader"); + let tpToggle = document.getElementById("tpToggle"); + let tpButton = document.getElementById("tpButton"); + let title = document.getElementById("title"); + let titleTracking = document.getElementById("titleTracking"); + let globalTrackingEnabled = prefBranch.getBoolPref("enabled"); + let trackingEnabled = globalTrackingEnabled || + prefBranch.getBoolPref("pbmode.enabled"); + + tpButton.classList.toggle("hide", globalTrackingEnabled); + tpToggle.checked = trackingEnabled; + title.classList.toggle("hide", trackingEnabled); + titleTracking.classList.toggle("hide", !trackingEnabled); + tpSubHeader.classList.toggle("tp-off", !trackingEnabled); + } +}; +prefBranch.addObserver("pbmode.enabled", prefObserver, true); +prefBranch.addObserver("enabled", prefObserver, true); +#endif + +function setFavIcon(url) { + document.getElementById("favicon").setAttribute("href", url); +} + +document.addEventListener("DOMContentLoaded", function () { + if (!PrivateBrowsingUtils.isContentWindowPrivate(window)) { + document.documentElement.classList.remove("private"); + document.documentElement.classList.add("normal"); + document.title = stringBundle.GetStringFromName("title.normal"); + document.getElementById("favicon") + .setAttribute("href", FAVICON_QUESTION); + document.getElementById("startPrivateBrowsing") + .addEventListener("command", openPrivateWindow); + return; + } + +#ifdef MOZ_SAFE_BROWSING + let tpToggle = document.getElementById("tpToggle"); + document.getElementById("tpButton").addEventListener('click', () => { + tpToggle.click(); + }); +#endif + + document.title = stringBundle.GetStringFromName("title.head"); + document.getElementById("favicon") + .setAttribute("href", FAVICON_PRIVACY); +#ifdef MOZ_SAFE_BROWSING + tpToggle.addEventListener("change", toggleTrackingProtection); +#endif + + let formatURLPref = Cc["@mozilla.org/toolkit/URLFormatterService;1"] + .getService(Ci.nsIURLFormatter).formatURLPref; + document.getElementById("learnMore").setAttribute("href", + formatURLPref("app.support.baseURL") + "private-browsing"); + +#ifdef MOZ_SAFE_BROWSING + // Update state that depends on preferences. + prefObserver.observe(); +#endif +}, false); + +function openPrivateWindow() { + // Ask chrome to open a private window + document.dispatchEvent( + new CustomEvent("AboutPrivateBrowsingOpenWindow", {bubbles:true})); +} + +#ifdef MOZ_SAFE_BROWSING +function toggleTrackingProtection() { + // Ask chrome to enable tracking protection + document.dispatchEvent( + new CustomEvent("AboutPrivateBrowsingToggleTrackingProtection", + {bubbles: true})); +} +#endif diff --git a/application/basilisk/components/privatebrowsing/content/aboutPrivateBrowsing.xhtml b/application/basilisk/components/privatebrowsing/content/aboutPrivateBrowsing.xhtml new file mode 100644 index 000000000..c27de6994 --- /dev/null +++ b/application/basilisk/components/privatebrowsing/content/aboutPrivateBrowsing.xhtml @@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +# 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/. +--> +<!DOCTYPE html [ + <!ENTITY % htmlDTD PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> + %htmlDTD; + <!ENTITY % globalDTD SYSTEM "chrome://global/locale/global.dtd"> + %globalDTD; + <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd"> + %brandDTD; + <!ENTITY % browserDTD SYSTEM "chrome://browser/locale/browser.dtd"> + %browserDTD; + <!ENTITY % aboutPrivateBrowsingDTD SYSTEM "chrome://browser/locale/aboutPrivateBrowsing.dtd"> + %aboutPrivateBrowsingDTD; +]> + +<html xmlns="http://www.w3.org/1999/xhtml" class="private"> + <head> + <link id="favicon" rel="icon" type="image/png"/> + <link rel="stylesheet" href="chrome://browser/content/aboutPrivateBrowsing.css" type="text/css" media="all"/> + <link rel="stylesheet" href="chrome://browser/skin/privatebrowsing/aboutPrivateBrowsing.css" type="text/css" media="all"/> + <script type="application/javascript;version=1.7" src="chrome://browser/content/aboutPrivateBrowsing.js"></script> + </head> + + <body dir="&locale.dir;"> + <p class="showNormal">&aboutPrivateBrowsing.notPrivate;</p> + <button xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" + id="startPrivateBrowsing" + class="showNormal" + label="&privatebrowsingpage.openPrivateWindow.label;" + accesskey="&privatebrowsingpage.openPrivateWindow.accesskey;"/> + <div class="showPrivate about-content-container"> + <h1 class="title"> + <span id="title">&privateBrowsing.title;</span> +#ifdef MOZ_SAFE_BROWSING + <span id="titleTracking">&privateBrowsing.title.tracking;</span> +#endif + </h1> + <section class="section-main"> + <p>&aboutPrivateBrowsing.info.notsaved.before;<strong>&aboutPrivateBrowsing.info.notsaved.emphasize;</strong>&aboutPrivateBrowsing.info.notsaved.after;</p> + <div class="list-row"> + <ul> + <li>&aboutPrivateBrowsing.info.visited;</li> + <li>&aboutPrivateBrowsing.info.cookies;</li> + <li>&aboutPrivateBrowsing.info.searches;</li> + <li>&aboutPrivateBrowsing.info.temporaryFiles;</li> + </ul> + </div> + <p>&aboutPrivateBrowsing.info.saved.before;<strong>&aboutPrivateBrowsing.info.saved.emphasize;</strong>&aboutPrivateBrowsing.info.saved.after2;</p> + <div class="list-row"> + <ul> + <li>&aboutPrivateBrowsing.info.bookmarks;</li> + <li>&aboutPrivateBrowsing.info.downloads;</li> + </ul> + </div> + <p> + &aboutPrivateBrowsing.note.before; + <strong>&aboutPrivateBrowsing.note.emphasize;</strong> + &aboutPrivateBrowsing.note.after; + </p> + </section> + +#ifdef MOZ_SAFE_BROWSING + <h2 id="tpSubHeader" class="about-subheader"> + <span class="tpTitle">&trackingProtection.title;</span> + <input id="tpToggle" class="toggle toggle-input" type="checkbox"/> + <span id="tpButton" class="toggle-btn"></span> + </h2> + + <section class="section-main"> + <p>&trackingProtection.description2;</p> + </section> +#endif + + <section class="section-main"> + <p class="about-info">&aboutPrivateBrowsing.learnMore2; + <a id="learnMore" target="_blank">&aboutPrivateBrowsing.learnMore2.title;</a>. + </p> + </section> + + </div> + </body> +</html> diff --git a/application/basilisk/components/privatebrowsing/jar.mn b/application/basilisk/components/privatebrowsing/jar.mn new file mode 100644 index 000000000..0147bb039 --- /dev/null +++ b/application/basilisk/components/privatebrowsing/jar.mn @@ -0,0 +1,8 @@ +# 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/. + +browser.jar: + content/browser/aboutPrivateBrowsing.css (content/aboutPrivateBrowsing.css) +* content/browser/aboutPrivateBrowsing.xhtml (content/aboutPrivateBrowsing.xhtml) +* content/browser/aboutPrivateBrowsing.js (content/aboutPrivateBrowsing.js) diff --git a/application/basilisk/components/privatebrowsing/moz.build b/application/basilisk/components/privatebrowsing/moz.build new file mode 100644 index 000000000..aac3a838c --- /dev/null +++ b/application/basilisk/components/privatebrowsing/moz.build @@ -0,0 +1,7 @@ +# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- +# vim: set filetype=python: +# 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/. + +JAR_MANIFESTS += ['jar.mn'] |