tor-commits
Threads by month
- ----- 2025 -----
- 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
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
April 2022
- 2 participants
- 111 discussions

[tor-browser] branch tor-browser-91.8.0esr-11.5-1 updated (abc0b7298eddb -> 623e8a73c6976)
by gitolite role 05 Apr '22
by gitolite role 05 Apr '22
05 Apr '22
This is an automated email from the git hooks/post-receive script.
richard pushed a change to branch tor-browser-91.8.0esr-11.5-1
in repository tor-browser.
from abc0b7298eddb Bug 21952: Implement Onion-Location
new d7b8ebd62f4c2 fixup! Add TorStrings module for localization
new 3c85de34837cc fixup! Bug 40597: Implement TorSettings module
new 207037ff0a0f2 squash! Bug 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#connection
new 76f70fba50817 squash! Bug 27476: Implement about:torconnect captive portal within Tor Browser
new 623e8a73c6976 fixup! Bug 40597: Implement TorSettings module
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
browser/components/preferences/preferences.js | 10 +-
browser/components/preferences/preferences.xhtml | 5 +-
browser/components/torconnect/TorConnectParent.jsm | 59 +-
.../torconnect/content/aboutTorConnect.css | 189 ++-
.../torconnect/content/aboutTorConnect.js | 570 +++++++--
.../torconnect/content/aboutTorConnect.xhtml | 43 +-
.../components/torconnect/content/arrow-right.svg | 4 +
browser/components/torconnect/content/bridge.svg | 5 +
.../torconnect/content/connection-failure.svg | 5 +
.../torconnect/content/connection-location.svg | 5 +
browser/components/torconnect/content/globe.svg | 4 +
.../torconnect/content/onion-slash-fillable.svg | 5 +
browser/components/torconnect/jar.mn | 6 +
.../torpreferences/content/bridgeQrDialog.jsm | 51 +
.../torpreferences/content/bridgeQrDialog.xhtml | 23 +
.../torpreferences/content/builtinBridgeDialog.jsm | 142 +++
.../content/builtinBridgeDialog.xhtml | 43 +
...gory.inc.xhtml => connectionCategory.inc.xhtml} | 8 +-
.../torpreferences/content/connectionPane.js | 1315 ++++++++++++++++++++
.../torpreferences/content/connectionPane.xhtml | 177 +++
.../content/connectionSettingsDialog.jsm | 393 ++++++
.../content/connectionSettingsDialog.xhtml | 62 +
.../components/torpreferences/content/network.svg | 0
.../torpreferences/content/provideBridgeDialog.jsm | 69 +
.../content/provideBridgeDialog.xhtml | 21 +
.../torpreferences/content/requestBridgeDialog.jsm | 32 +-
.../content/requestBridgeDialog.xhtml | 10 +-
.../torpreferences/content/torLogDialog.jsm | 18 +
.../components/torpreferences/content/torPane.js | 940 --------------
.../torpreferences/content/torPane.xhtml | 157 ---
.../torpreferences/content/torPreferences.css | 394 +++++-
browser/components/torpreferences/jar.mn | 15 +-
browser/modules/Moat.jsm | 122 +-
browser/modules/TorConnect.jsm | 278 +++--
browser/modules/TorProtocolService.jsm | 100 +-
browser/modules/TorSettings.jsm | 139 +--
browser/modules/TorStrings.jsm | 320 ++++-
toolkit/modules/RemotePageAccessManager.jsm | 13 +-
38 files changed, 4109 insertions(+), 1643 deletions(-)
create mode 100644 browser/components/torconnect/content/arrow-right.svg
create mode 100644 browser/components/torconnect/content/bridge.svg
create mode 100644 browser/components/torconnect/content/connection-failure.svg
create mode 100644 browser/components/torconnect/content/connection-location.svg
create mode 100644 browser/components/torconnect/content/globe.svg
create mode 100644 browser/components/torconnect/content/onion-slash-fillable.svg
create mode 100644 browser/components/torpreferences/content/bridgeQrDialog.jsm
create mode 100644 browser/components/torpreferences/content/bridgeQrDialog.xhtml
create mode 100644 browser/components/torpreferences/content/builtinBridgeDialog.jsm
create mode 100644 browser/components/torpreferences/content/builtinBridgeDialog.xhtml
rename browser/components/torpreferences/content/{torCategory.inc.xhtml => connectionCategory.inc.xhtml} (57%)
create mode 100644 browser/components/torpreferences/content/connectionPane.js
create mode 100644 browser/components/torpreferences/content/connectionPane.xhtml
create mode 100644 browser/components/torpreferences/content/connectionSettingsDialog.jsm
create mode 100644 browser/components/torpreferences/content/connectionSettingsDialog.xhtml
copy toolkit/themes/shared/icons/defaultFavicon.svg => browser/components/torpreferences/content/network.svg (100%)
create mode 100644 browser/components/torpreferences/content/provideBridgeDialog.jsm
create mode 100644 browser/components/torpreferences/content/provideBridgeDialog.xhtml
delete mode 100644 browser/components/torpreferences/content/torPane.js
delete mode 100644 browser/components/torpreferences/content/torPane.xhtml
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
1
5

[tor-browser] annotated tag tor-browser-91.8.0esr-11.5-1-build1 created (now 1c32723e3e347)
by gitolite role 05 Apr '22
by gitolite role 05 Apr '22
05 Apr '22
This is an automated email from the git hooks/post-receive script.
richard pushed a change to annotated tag tor-browser-91.8.0esr-11.5-1-build1
in repository tor-browser.
at 1c32723e3e347 (tag)
tagging abc0b7298eddbcb5cec50d7b411173e763fe95d5 (commit)
replaces FIREFOX_91_8_0esr_BUILD1
by Richard Pospesel
on Tue Apr 5 16:54:46 2022 +0000
- Log -----------------------------------------------------------------
Tagging build1 for 91.8esr-based alpha
-----BEGIN PGP SIGNATURE-----
iQJLBAABCAA1FiEEvnyRTMkiztnZPSO33kc2A2PzSywFAmJMdGkXHHJpY2hhcmRA
dG9ycHJvamVjdC5vcmcACgkQ3kc2A2PzSyw8vg/+PsBuW6pwHu3BgGvWoaQoO13j
2wyQIY6yiSqpglTYZkw0p4sHfzi/Gn0QxZzlrUn8/ddrBgM1xQVtcY4T1f0RAu7j
3IJVlP18aZ2D5+g0+nIDhmuQHxbbye67i0nf2WpQxkxBjA8wq3vaNY5LgeuQDwnM
6kfjpdzrQK0sixmxKoKl7IlxStHHNwe3W6vFI3c/Qd3yhb4hFmjJqgaaQOKrcYGX
LDLcxfWVX3LEJNpylmcbNGhYbeZO6r61VADHpdLeHJ8XRnJS7/EXNHMjS2XCgwbu
9jtO1545GN5ZuNzZ5ViR6L0pGpJjYMPiRZfFyUk0Yral7am5ddsVNBRXvgSft+0A
MWiv8tZo3gJ+9XPkAVsVWybRvq4x+m057iuCD3R8i0GHpo/PgTGp7t8E0eyApuDx
vN+VPmEecnSsvTDqGSVuKTIo0/+6mE3UGvuLNEOi69kYX3/FakXwgNMBtjcAoPDw
KIUgBSszhdAaN5NjGZJ0dNK7dfST3wbdCM2Qh4F+mscM0IGnnfx8fMKmjIGk8I2D
psRnfAhgscVJqSIl6eG7ExbJd5bjTDaubfA0XejSAOMSajs0eOF1ROXiztHRgwJ3
EkduAV5JOdlcFD9nGo4rpqyYl+zeIXKkXAFfX2du1f+86CW50DAgNBRCDdCtNSEU
p5jipaJ2c2LT9GKmiF4=
=ly0I
-----END PGP SIGNATURE-----
-----------------------------------------------------------------------
No new revisions were added by this update.
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
1
0

[pluggable-transports/snowflake] branch main updated: Represent fingerprint internally as byte array
by gitolite role 05 Apr '22
by gitolite role 05 Apr '22
05 Apr '22
This is an automated email from the git hooks/post-receive script.
arlo pushed a commit to branch main
in repository pluggable-transports/snowflake.
The following commit(s) were added to refs/heads/main by this push:
new 2f89fbc Represent fingerprint internally as byte array
2f89fbc is described below
commit 2f89fbc2ed3e25d2b4be76edc600cca37de91864
Author: Arlo Breault <arlolra(a)gmail.com>
AuthorDate: Thu Mar 17 10:46:37 2022 -0400
Represent fingerprint internally as byte array
---
broker/broker.go | 2 +-
broker/ipc.go | 12 +++++++++---
common/messages/client.go | 4 ++++
common/messages/messages_test.go | 6 ++++++
4 files changed, 20 insertions(+), 4 deletions(-)
diff --git a/broker/broker.go b/broker/broker.go
index 6e85fbd..10129d7 100644
--- a/broker/broker.go
+++ b/broker/broker.go
@@ -143,7 +143,7 @@ func (ctx *BrokerContext) AddSnowflake(id string, proxyType string, natType stri
type ClientOffer struct {
natType string
sdp []byte
- fingerprint string
+ fingerprint [20]byte
}
func main() {
diff --git a/broker/ipc.go b/broker/ipc.go
index 2ef4ccd..e11a33c 100644
--- a/broker/ipc.go
+++ b/broker/ipc.go
@@ -2,6 +2,7 @@ package main
import (
"container/heap"
+ "encoding/hex"
"fmt"
"log"
"net"
@@ -130,11 +131,16 @@ func (i *IPC) ClientOffers(arg messages.Arg, response *[]byte) error {
}
offer := &ClientOffer{
- natType: req.NAT,
- sdp: []byte(req.Offer),
- fingerprint: req.Fingerprint,
+ natType: req.NAT,
+ sdp: []byte(req.Offer),
}
+ fingerprint, err := hex.DecodeString(req.Fingerprint)
+ if err != nil {
+ return sendClientResponse(&messages.ClientPollResponse{Error: err.Error()}, response)
+ }
+ copy(offer.fingerprint[:], fingerprint)
+
// Only hand out known restricted snowflakes to unrestricted clients
var snowflakeHeap *SnowflakeHeap
if offer.natType == NATUnrestricted {
diff --git a/common/messages/client.go b/common/messages/client.go
index 4d435ab..96f8ed8 100644
--- a/common/messages/client.go
+++ b/common/messages/client.go
@@ -5,6 +5,7 @@ package messages
import (
"bytes"
+ "encoding/hex"
"encoding/json"
"fmt"
@@ -105,6 +106,9 @@ func DecodeClientPollRequest(data []byte) (*ClientPollRequest, error) {
if message.Fingerprint == "" {
message.Fingerprint = defaultBridgeFingerprint
}
+ if hex.DecodedLen(len(message.Fingerprint)) != 20 {
+ return nil, fmt.Errorf("cannot decode fingerprint")
+ }
switch message.NAT {
case "":
diff --git a/common/messages/messages_test.go b/common/messages/messages_test.go
index 5365aa8..dd1f4fb 100644
--- a/common/messages/messages_test.go
+++ b/common/messages/messages_test.go
@@ -344,6 +344,12 @@ func TestEncodeClientPollRequests(t *testing.T) {
defaultBridgeFingerprint,
nil,
},
+ {
+ "unknown",
+ "fake",
+ "123123",
+ fmt.Errorf(""),
+ },
} {
req1 := &ClientPollRequest{
NAT: test.natType,
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
1
0

[tor-browser] branch tor-browser-91.8.0esr-11.5-1 updated (af2a7d1b0c662 -> abc0b7298eddb)
by gitolite role 05 Apr '22
by gitolite role 05 Apr '22
05 Apr '22
This is an automated email from the git hooks/post-receive script.
richard pushed a change to branch tor-browser-91.8.0esr-11.5-1
in repository tor-browser.
from af2a7d1b0c662 Bug 1760674. r=mak
new e86d8a6532cce Revert "Bug 1724777, optimize suppressed MicroTask handling, r=mccr8 a=RyanVM"
new beb17fc2844ee Adding issue template for bugs.
new 7165f95148c11 Bug 24796 - Comment out excess permissions from GeckoView
new 761e4a85232b5 Bug 25741 - TBA: Disable GeckoNetworkManager
new beebae37f654c Bug 28125 - Prevent non-Necko network connections
new 6e774cce638bc Bug 40166: Disable security.certerrors.mitm.auto_enable_enterprise_roots
new d5c0b63e0521a Bug 16285: Exclude ClearKey system for now
new 5d89834d8fd8e Bug 21431: Clean-up system extensions shipped in Firefox
new 54825814d3615 Bug 33852: Clean up about:logins (LockWise) to avoid mentioning sync, etc.
new f9a078461a894 Bug 40025: Remove Mozilla add-on install permissions
new e0196cd06418c Bug 40002: Remove about:ion
new bab5941642353 Bug 12974: Disable NTLM and Negotiate HTTP Auth
new 0ed7726bb4a8c Bug 18821: Disable libmdns for Android and Desktop
new ebffe2a8b07af Bug 26353: Prevent speculative connect that violated FPI.
new 7923597a2f715 Bug 31740: Remove some unnecessary RemoteSettings instances
new b3d89b424fc38 Bug 30541: Disable WebGL readPixel() for web content
new 0cd1e75fcc145 Bug 28369: Stop shipping pingsender executable
new ab2d72adb1071 Bug 40073: Disable remote Public Suffix List fetching
new bb1c6f55e9c35 TB4: Tor Browser's Firefox preference overrides.
new 898aeff57d5bc Bug 40125: Expose Security Level pref in GeckoView
new 901108f8a11d3 Bug 30605: Honor privacy.spoof_english in Android
new 50e2ec9dde32f Bug 40199: Avoid using system locale for intl.accept_languages in GeckoView
new 7346fb274f0dd Bug 40198: Expose privacy.spoof_english pref in GeckoView
new 9d654a971f1e4 Bug 40171: Make WebRequest and GeckoWebExecutor First-Party aware
new 27a9dbd5688a5 Bug 26345: Hide tracking protection UI
new 6767dd1fea3bb Bug 9173: Change the default Firefox profile directory to be TBB-relative.
new 269e9c5ff4aad Bug 18800: Remove localhost DNS lookup in nsProfileLock.cpp
new c2f7fdfa0c3f0 Bug 27604: Fix addon issues when moving TB directory
new 0025872061adf Bug 32418: Allow updates to be disabled via an enterprise policy.
new 889c71ccdd6df Bug 13028: Prevent potential proxy bypass cases.
new 234cd151c72cf Bug 11641: change TBB command line flags to be more like Firefox's
new 70359a66027e9 Bug 16620: Clear window.name when no referrer sent
new a4e07cdb0bc5c Bug 21830: Copying large text from web console leaks to /tmp
new 41f6337a86f3e Bug 23104: Add a default line height compensation
new f9f7ccf86259c Bug 40309: Avoid using regional OS locales
new ba1cb19d18035 Bug 40432: Prevent probing installed applications
new 28f4ad6dce921 Bug 32220: Improve the letterboxing experience
new 9f961c57e54e3 Bug 2176: Rebrand Firefox to TorBrowser
new 828a229e34b21 Bring back old Firefox onboarding
new 54dac2434ab16 Bug 26961: New user onboarding.
new 006c661b2b4e3 Bug 40069: Add helpers for message passing with extensions
new b6130dfe6c8b1 TB3: Tor Browser's official .mozconfigs.
new e67880a00bd17 Bug 40562: Added Tor-related preferences to 000-tor-browser.js
new b3d6ae3052aad Bug 40597: Implement TorSettings module
new 05f06fb89a0e4 Bug 10760: Integrate TorButton to TorBrowser core
new 57b929702989c Bug 28044: Integrate Tor Launcher into tor-browser
new cfb66b8722d96 Orfox: Centralized proxy applied to AbstractCommunicator and BaseResources.
new 6ead5b0f65302 Add TorStrings module for localization
new 247b306aa0318 Bug 14631: Improve profile access error messages.
new 39e1fcabd5c41 40209: Implement Basic Crypto Safety
new f97f514db4114 Bug 19273: Avoid JavaScript patching of the external app helper dialog.
new b7770061d2692 Bug 40807: Added QRCode.js to toolkit/modules
new 44fafae244a39 Bug 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#connection
new 849fa16538789 Bug 27476: Implement about:torconnect captive portal within Tor Browser
new 6b62431dcc138 Bug 12620: TorBrowser regression tests
new a9fdc83f68bb9 Bug 40091: Load HTTPS Everywhere as a builtin addon in desktop
new 1d2bf99ec321f Bug 40253: Explicitly allow NoScript in Private Browsing mode.
new ca14ed5967a7d Bug 25658: Replace security slider with security level UI
new 45a896f38592a Bug 27511: Add new identity button to toolbar
new 537f51d84e5f8 Bug 4234: Use the Firefox Update Process for Tor Browser.
new 89c47ef13dbb7 Bug 13379: Sign our MAR files.
new 347f58f5825e2 Bug 16940: After update, load local change notes.
new 311a4bf972a6f Bug 32658: Create a new MAR signing key
new 5a4d056eb1125 Omnibox: Add DDG, Startpage, Disconnect, Youtube, Twitter; remove Amazon, eBay, bing
new f920c4444c8b2 Bug 23247: Communicating security expectations for .onion
new 329a81bfe06fa Bug 30237: Add v3 onion services client authentication prompt
new 5cc99ce9ada16 Bug 28005: Implement .onion alias urlbar rewrites
new abc0b7298eddb Bug 21952: Implement Onion-Location
The 68 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.eslintignore | 3 +
.gitlab/issue_templates/UXBug.md | 29 +
.gitlab/issue_templates/bug.md | 32 +
.gitmodules | 3 +
.mozconfig | 40 +
.mozconfig-android | 36 +
.mozconfig-asan | 46 +
.mozconfig-mac | 57 +
.mozconfig-mingw | 32 +
browser/actors/AboutTBUpdateChild.jsm | 12 +
browser/actors/AboutTBUpdateParent.jsm | 120 ++
browser/actors/ClickHandlerChild.jsm | 20 +
browser/actors/ClickHandlerParent.jsm | 1 +
browser/actors/ContextMenuChild.jsm | 4 +
browser/actors/CryptoSafetyChild.jsm | 87 +
browser/actors/CryptoSafetyParent.jsm | 142 ++
browser/actors/NetErrorChild.jsm | 7 +
browser/actors/NetErrorParent.jsm | 8 +
browser/actors/moz.build | 8 +
browser/app/Makefile.in | 4 +-
browser/app/macbuild/Contents/Info.plist.in | 2 +-
browser/app/macbuild/Contents/MacOS-files.in | 1 -
browser/app/permissions | 15 +-
browser/app/profile/000-tor-browser.js | 674 +++++++
browser/app/profile/firefox.js | 32 +-
browser/base/content/aboutDialog-appUpdater.js | 2 +-
browser/base/content/aboutDialog.js | 12 +-
browser/base/content/aboutDialog.xhtml | 38 +-
.../base/content/abouttbupdate/aboutTBUpdate.css | 74 +
.../base/content/abouttbupdate/aboutTBUpdate.js | 27 +
.../base/content/abouttbupdate/aboutTBUpdate.xhtml | 39 +
browser/base/content/appmenu-viewcache.inc.xhtml | 32 +-
browser/base/content/browser-doctype.inc | 6 +
browser/base/content/browser-menubar.inc | 45 +-
browser/base/content/browser-places.js | 12 +-
browser/base/content/browser-sets.inc | 2 +
browser/base/content/browser-siteIdentity.js | 59 +-
browser/base/content/browser.css | 7 +
browser/base/content/browser.js | 146 +-
browser/base/content/browser.xhtml | 14 +
browser/base/content/certerror/aboutNetError.js | 22 +-
browser/base/content/certerror/aboutNetError.xhtml | 1 +
browser/base/content/main-popupset.inc.xhtml | 3 +
browser/base/content/navigator-toolbox.inc.xhtml | 17 +
browser/base/content/nsContextMenu.js | 18 +
browser/base/content/pageinfo/pageInfo.js | 2 +-
browser/base/content/pageinfo/pageInfo.xhtml | 10 +
browser/base/content/pageinfo/security.js | 81 +-
browser/base/content/popup-notifications.inc | 14 +
browser/base/content/tab-content.js | 6 +
browser/base/content/tabbrowser-tab.js | 9 +
browser/base/content/tabbrowser.js | 7 +
browser/base/content/utilityOverlay.js | 26 +
browser/base/jar.mn | 5 +
browser/base/moz.build | 3 +
browser/branding/alpha/VisualElements_150.png | Bin 0 -> 8412 bytes
browser/branding/alpha/VisualElements_70.png | Bin 0 -> 3496 bytes
browser/branding/alpha/background.png | Bin 0 -> 33362 bytes
browser/branding/alpha/bgstub.jpg | Bin 0 -> 12506 bytes
browser/branding/alpha/bgstub_2x.jpg | Bin 0 -> 49771 bytes
browser/branding/{nightly => alpha}/branding.nsi | 0
.../branding/alpha/configure.sh | 8 +-
browser/branding/alpha/content/about-logo.png | Bin 0 -> 21173 bytes
.../{nightly => alpha}/content/about-logo.svg | 0
browser/branding/alpha/content/about-logo(a)2x.png | Bin 0 -> 51309 bytes
browser/branding/alpha/content/about-wordmark.svg | 36 +
browser/branding/alpha/content/about.png | Bin 0 -> 18520 bytes
.../{nightly => alpha}/content/aboutDialog.css | 0
browser/branding/alpha/content/aboutlogins.svg | 59 +
.../content/firefox-wordmark.svg | 0
.../alpha/content/identity-icons-brand.svg | 8 +
.../branding/{official => alpha}/content/jar.mn | 4 +
.../branding/{aurora => alpha}/content/moz.build | 0
browser/branding/alpha/content/tor-styles.css | 13 +
browser/branding/alpha/default128.png | Bin 0 -> 9397 bytes
browser/branding/alpha/default16.png | Bin 0 -> 811 bytes
browser/branding/alpha/default22.png | Bin 0 -> 1240 bytes
browser/branding/alpha/default24.png | Bin 0 -> 1368 bytes
browser/branding/alpha/default256.png | Bin 0 -> 20481 bytes
browser/branding/alpha/default32.png | Bin 0 -> 1956 bytes
browser/branding/alpha/default48.png | Bin 0 -> 3067 bytes
browser/branding/alpha/default512.png | Bin 0 -> 44907 bytes
browser/branding/alpha/default64.png | Bin 0 -> 4318 bytes
browser/branding/alpha/disk.icns | Bin 0 -> 1548786 bytes
browser/branding/alpha/document.icns | Bin 0 -> 564054 bytes
browser/branding/alpha/document.ico | Bin 0 -> 119671 bytes
browser/branding/{nightly => alpha}/dsstore | Bin
.../firefox.VisualElementsManifest.xml | 2 +-
browser/branding/alpha/firefox.icns | Bin 0 -> 291096 bytes
browser/branding/alpha/firefox.ico | Bin 0 -> 119941 bytes
browser/branding/alpha/firefox.svg | 25 +
browser/branding/alpha/firefox64.ico | Bin 0 -> 119941 bytes
.../{official => alpha}/locales/en-US/brand.dtd | 8 +-
.../{nightly => alpha}/locales/en-US/brand.ftl | 2 +-
.../locales/en-US/brand.properties | 12 +-
.../branding/{official => alpha}/locales/jar.mn | 0
.../{aurora/content => alpha/locales}/moz.build | 0
browser/branding/{aurora => alpha}/moz.build | 0
browser/branding/{aurora => alpha}/newtab.ico | Bin
browser/branding/{aurora => alpha}/newwindow.ico | Bin
browser/branding/{aurora => alpha}/pbmode.ico | Bin
browser/branding/alpha/pref/firefox-branding.js | 34 +
.../{nightly => alpha}/stubinstaller/bgstub.jpg | Bin
.../stubinstaller/installing_page.css | 0
.../stubinstaller/profile_cleanup_page.css | 0
browser/branding/alpha/wizHeader.bmp | Bin 0 -> 34254 bytes
browser/branding/alpha/wizHeaderRTL.bmp | Bin 0 -> 34254 bytes
browser/branding/alpha/wizWatermark.bmp | Bin 0 -> 206038 bytes
browser/branding/branding-common.mozbuild | 2 +
browser/branding/nightly/VisualElements_150.png | Bin 25470 -> 11666 bytes
browser/branding/nightly/VisualElements_70.png | Bin 9590 -> 4273 bytes
browser/branding/nightly/configure.sh | 8 +-
.../nightly/content/identity-icons-brand.svg | 8 +
browser/branding/nightly/content/jar.mn | 4 +
browser/branding/nightly/content/tor-styles.css | 13 +
browser/branding/nightly/default128.png | Bin 12392 -> 13686 bytes
browser/branding/nightly/default16.png | Bin 756 -> 891 bytes
browser/branding/nightly/default22.png | Bin 1146 -> 1377 bytes
browser/branding/nightly/default24.png | Bin 1281 -> 1509 bytes
browser/branding/nightly/default256.png | Bin 30546 -> 33587 bytes
browser/branding/nightly/default32.png | Bin 1910 -> 2254 bytes
browser/branding/nightly/default48.png | Bin 3606 -> 3789 bytes
browser/branding/nightly/default512.png | Bin 0 -> 87830 bytes
browser/branding/nightly/default64.png | Bin 4826 -> 5426 bytes
browser/branding/nightly/document.icns | Bin 517716 -> 689723 bytes
browser/branding/nightly/document.ico | Bin 47042 -> 124422 bytes
.../nightly/firefox.VisualElementsManifest.xml | 2 +-
browser/branding/nightly/firefox.icns | Bin 1014680 -> 642308 bytes
browser/branding/nightly/firefox.ico | Bin 66730 -> 131711 bytes
browser/branding/nightly/firefox.svg | 29 +
browser/branding/nightly/firefox64.ico | Bin 38630 -> 131711 bytes
browser/branding/nightly/locales/en-US/brand.dtd | 8 +-
browser/branding/nightly/locales/en-US/brand.ftl | 2 +-
.../nightly/locales/en-US/brand.properties | 10 +-
browser/branding/nightly/locales/jar.mn | 7 +-
browser/branding/nightly/locales/moz.build | 2 -
browser/branding/nightly/wizHeader.bmp | Bin 25820 -> 34254 bytes
browser/branding/nightly/wizHeaderRTL.bmp | Bin 25820 -> 34254 bytes
browser/branding/nightly/wizWatermark.bmp | Bin 154544 -> 206038 bytes
browser/branding/official/VisualElements_150.png | Bin 23037 -> 7949 bytes
browser/branding/official/VisualElements_70.png | Bin 8763 -> 3374 bytes
browser/branding/official/configure.sh | 16 +-
.../official/content/identity-icons-brand.svg | 8 +
browser/branding/official/content/jar.mn | 4 +
browser/branding/official/content/tor-styles.css | 14 +
browser/branding/official/default128.png | Bin 13513 -> 9007 bytes
browser/branding/official/default16.png | Bin 722 -> 839 bytes
browser/branding/official/default22.png | Bin 1134 -> 1250 bytes
browser/branding/official/default24.png | Bin 1312 -> 1405 bytes
browser/branding/official/default256.png | Bin 32441 -> 19136 bytes
browser/branding/official/default32.png | Bin 1948 -> 1965 bytes
browser/branding/official/default48.png | Bin 3448 -> 3074 bytes
browser/branding/official/default512.png | Bin 0 -> 40438 bytes
browser/branding/official/default64.png | Bin 5459 -> 4196 bytes
browser/branding/official/disk.icns | Bin 1525764 -> 172073 bytes
browser/branding/official/document.icns | Bin 501145 -> 509227 bytes
browser/branding/official/document.ico | Bin 45478 -> 119916 bytes
.../official/firefox.VisualElementsManifest.xml | 2 +-
browser/branding/official/firefox.icns | Bin 1021785 -> 259709 bytes
browser/branding/official/firefox.ico | Bin 68328 -> 118595 bytes
browser/branding/official/firefox.svg | 31 +
browser/branding/official/firefox64.ico | Bin 38630 -> 118595 bytes
browser/branding/official/locales/en-US/brand.dtd | 8 +-
.../official/locales/en-US/brand.properties | 10 +-
browser/branding/official/wizHeader.bmp | Bin 25820 -> 34254 bytes
browser/branding/official/wizHeaderRTL.bmp | Bin 25820 -> 34254 bytes
browser/branding/official/wizWatermark.bmp | Bin 154544 -> 206038 bytes
browser/branding/tor-styles.inc.css | 87 +
browser/components/BrowserContentHandler.jsm | 94 +-
browser/components/BrowserGlue.jsm | 195 +-
browser/components/about/AboutRedirector.cpp | 12 +-
browser/components/about/components.conf | 6 +-
.../components/aboutlogins/AboutLoginsParent.jsm | 2 +
.../components/aboutlogins/content/aboutLogins.css | 8 +-
.../components/aboutlogins/content/aboutLogins.js | 6 +
.../content/components/fxaccounts-button.css | 5 +
.../aboutlogins/content/components/menu-button.css | 10 +
.../controlcenter/content/identityPanel.inc.xhtml | 22 +
.../components/customizableui/CustomizableUI.jsm | 21 +
.../customizableui/content/panelUI.inc.xhtml | 2 +-
browser/components/moz.build | 10 +-
browser/components/newtab/AboutNewTabService.jsm | 15 +-
.../onionservices/ExtensionMessaging.jsm | 77 +
.../onionservices/HttpsEverywhereControl.jsm | 162 ++
.../components/onionservices/OnionAliasStore.jsm | 201 ++
.../onionservices/OnionLocationChild.jsm | 48 +
.../onionservices/OnionLocationParent.jsm | 168 ++
.../content/authNotificationIcon.inc.xhtml | 6 +
.../onionservices/content/authPopup.inc.xhtml | 16 +
.../onionservices/content/authPreferences.css | 20 +
.../content/authPreferences.inc.xhtml | 19 +
.../onionservices/content/authPreferences.js | 66 +
.../components/onionservices/content/authPrompt.js | 320 ++++
.../components/onionservices/content/authUtil.jsm | 47 +
.../onionservices/content/netError/browser.svg | 3 +
.../onionservices/content/netError/network.svg | 3 +
.../content/netError/onionNetError.css | 88 +
.../content/netError/onionNetError.js | 243 +++
.../onionservices/content/netError/onionsite.svg | 8 +
.../content/onionlocation-notification-icons.css | 5 +
.../onionservices/content/onionlocation-urlbar.css | 60 +
.../content/onionlocation-urlbar.inc.xhtml | 10 +
.../onionservices/content/onionlocation.svg | 3 +
.../content/onionlocationPreferences.inc.xhtml | 11 +
.../content/onionlocationPreferences.js | 31 +
.../onionservices/content/onionservices.css | 69 +
.../onionservices/content/savedKeysDialog.js | 259 +++
.../onionservices/content/savedKeysDialog.xhtml | 42 +
browser/components/onionservices/jar.mn | 11 +
browser/components/onionservices/moz.build | 9 +
browser/components/preferences/home.inc.xhtml | 4 +-
browser/components/preferences/main.inc.xhtml | 54 -
browser/components/preferences/main.js | 14 -
browser/components/preferences/preferences.js | 14 +-
browser/components/preferences/preferences.xhtml | 12 +-
browser/components/preferences/privacy.inc.xhtml | 6 +
browser/components/preferences/privacy.js | 44 +
browser/components/search/SearchSERPTelemetry.jsm | 6 -
.../search/extensions/blockchair-onion/favicon.png | Bin 0 -> 3116 bytes
.../extensions/blockchair-onion/manifest.json | 26 +
.../search/extensions/blockchair/favicon.png | Bin 0 -> 2898 bytes
.../search/extensions/blockchair/manifest.json | 26 +
.../search/extensions/ddg-onion/favicon.ico | Bin 0 -> 973 bytes
.../search/extensions/ddg-onion/manifest.json | 26 +
.../components/search/extensions/ddg/favicon.ico | Bin 5430 -> 0 bytes
.../components/search/extensions/ddg/favicon.png | Bin 0 -> 1150 bytes
.../components/search/extensions/ddg/manifest.json | 38 +-
.../extensions/google/_locales/b-1-d/messages.json | 23 -
.../extensions/google/_locales/b-1-e/messages.json | 23 -
.../extensions/google/_locales/b-d/messages.json | 23 -
.../extensions/google/_locales/b-e/messages.json | 23 -
.../extensions/google/_locales/en/messages.json | 24 -
.../search/extensions/google/manifest.json | 17 +-
.../search/extensions/startpage/favicon.png | Bin 0 -> 1150 bytes
.../search/extensions/startpage/manifest.json | 26 +
.../extensions/twitter/favicon.ico} | Bin
.../search/extensions/twitter/manifest.json | 26 +
.../extensions/wikipedia/_locales/NN/messages.json | 20 -
.../extensions/wikipedia/_locales/NO/messages.json | 20 -
.../extensions/wikipedia/_locales/af/messages.json | 20 -
.../extensions/wikipedia/_locales/an/messages.json | 20 -
.../extensions/wikipedia/_locales/ar/messages.json | 20 -
.../wikipedia/_locales/ast/messages.json | 20 -
.../extensions/wikipedia/_locales/az/messages.json | 20 -
.../wikipedia/_locales/be-tarask/messages.json | 20 -
.../extensions/wikipedia/_locales/be/messages.json | 20 -
.../extensions/wikipedia/_locales/bg/messages.json | 20 -
.../extensions/wikipedia/_locales/bn/messages.json | 20 -
.../extensions/wikipedia/_locales/br/messages.json | 20 -
.../extensions/wikipedia/_locales/bs/messages.json | 20 -
.../extensions/wikipedia/_locales/ca/messages.json | 20 -
.../extensions/wikipedia/_locales/cy/messages.json | 20 -
.../extensions/wikipedia/_locales/cz/messages.json | 20 -
.../extensions/wikipedia/_locales/da/messages.json | 20 -
.../extensions/wikipedia/_locales/de/messages.json | 20 -
.../wikipedia/_locales/dsb/messages.json | 20 -
.../extensions/wikipedia/_locales/el/messages.json | 20 -
.../extensions/wikipedia/_locales/en/messages.json | 20 -
.../extensions/wikipedia/_locales/eo/messages.json | 20 -
.../extensions/wikipedia/_locales/es/messages.json | 20 -
.../extensions/wikipedia/_locales/et/messages.json | 20 -
.../extensions/wikipedia/_locales/eu/messages.json | 20 -
.../extensions/wikipedia/_locales/fa/messages.json | 20 -
.../extensions/wikipedia/_locales/fi/messages.json | 20 -
.../extensions/wikipedia/_locales/fr/messages.json | 20 -
.../wikipedia/_locales/fy-NL/messages.json | 20 -
.../wikipedia/_locales/ga-IE/messages.json | 20 -
.../extensions/wikipedia/_locales/gd/messages.json | 20 -
.../extensions/wikipedia/_locales/gl/messages.json | 20 -
.../extensions/wikipedia/_locales/gn/messages.json | 20 -
.../extensions/wikipedia/_locales/gu/messages.json | 20 -
.../extensions/wikipedia/_locales/he/messages.json | 20 -
.../extensions/wikipedia/_locales/hi/messages.json | 20 -
.../extensions/wikipedia/_locales/hr/messages.json | 20 -
.../wikipedia/_locales/hsb/messages.json | 20 -
.../extensions/wikipedia/_locales/hu/messages.json | 20 -
.../extensions/wikipedia/_locales/hy/messages.json | 20 -
.../extensions/wikipedia/_locales/ia/messages.json | 20 -
.../extensions/wikipedia/_locales/id/messages.json | 20 -
.../extensions/wikipedia/_locales/is/messages.json | 20 -
.../extensions/wikipedia/_locales/it/messages.json | 20 -
.../extensions/wikipedia/_locales/ja/messages.json | 20 -
.../extensions/wikipedia/_locales/ka/messages.json | 20 -
.../wikipedia/_locales/kab/messages.json | 20 -
.../extensions/wikipedia/_locales/kk/messages.json | 20 -
.../extensions/wikipedia/_locales/km/messages.json | 20 -
.../extensions/wikipedia/_locales/kn/messages.json | 20 -
.../extensions/wikipedia/_locales/kr/messages.json | 20 -
.../wikipedia/_locales/lij/messages.json | 20 -
.../extensions/wikipedia/_locales/lo/messages.json | 20 -
.../extensions/wikipedia/_locales/lt/messages.json | 20 -
.../wikipedia/_locales/ltg/messages.json | 20 -
.../extensions/wikipedia/_locales/lv/messages.json | 20 -
.../extensions/wikipedia/_locales/mk/messages.json | 20 -
.../extensions/wikipedia/_locales/mr/messages.json | 20 -
.../extensions/wikipedia/_locales/ms/messages.json | 20 -
.../extensions/wikipedia/_locales/my/messages.json | 20 -
.../extensions/wikipedia/_locales/ne/messages.json | 20 -
.../extensions/wikipedia/_locales/nl/messages.json | 20 -
.../extensions/wikipedia/_locales/oc/messages.json | 20 -
.../extensions/wikipedia/_locales/pa/messages.json | 20 -
.../extensions/wikipedia/_locales/pl/messages.json | 20 -
.../extensions/wikipedia/_locales/pt/messages.json | 20 -
.../extensions/wikipedia/_locales/rm/messages.json | 20 -
.../extensions/wikipedia/_locales/ro/messages.json | 20 -
.../extensions/wikipedia/_locales/ru/messages.json | 20 -
.../extensions/wikipedia/_locales/si/messages.json | 20 -
.../extensions/wikipedia/_locales/sk/messages.json | 20 -
.../extensions/wikipedia/_locales/sl/messages.json | 20 -
.../extensions/wikipedia/_locales/sq/messages.json | 20 -
.../extensions/wikipedia/_locales/sr/messages.json | 20 -
.../wikipedia/_locales/sv-SE/messages.json | 20 -
.../extensions/wikipedia/_locales/ta/messages.json | 20 -
.../extensions/wikipedia/_locales/te/messages.json | 20 -
.../extensions/wikipedia/_locales/th/messages.json | 20 -
.../extensions/wikipedia/_locales/tl/messages.json | 20 -
.../extensions/wikipedia/_locales/tr/messages.json | 20 -
.../extensions/wikipedia/_locales/uk/messages.json | 20 -
.../extensions/wikipedia/_locales/ur/messages.json | 20 -
.../extensions/wikipedia/_locales/uz/messages.json | 20 -
.../extensions/wikipedia/_locales/vi/messages.json | 20 -
.../extensions/wikipedia/_locales/wo/messages.json | 20 -
.../wikipedia/_locales/zh-CN/messages.json | 20 -
.../wikipedia/_locales/zh-TW/messages.json | 20 -
.../search/extensions/wikipedia/manifest.json | 15 +-
.../components/search/extensions/yahoo/favicon.ico | Bin 0 -> 5430 bytes
.../search/extensions/yahoo/manifest.json | 28 +
.../search/extensions/youtube/favicon.ico | Bin 0 -> 1150 bytes
.../search/extensions/youtube/manifest.json | 26 +
.../securitylevel/content/securityLevel.js | 527 ++++++
.../securitylevel/content/securityLevelButton.css | 18 +
.../content/securityLevelButton.inc.xhtml | 7 +
.../securitylevel/content/securityLevelIcon.svg | 40 +
.../securitylevel/content/securityLevelPanel.css | 74 +
.../content/securityLevelPanel.inc.xhtml | 47 +
.../content/securityLevelPreferences.css | 52 +
.../content/securityLevelPreferences.inc.xhtml | 67 +
browser/components/securitylevel/jar.mn | 6 +
browser/components/securitylevel/moz.build | 1 +
browser/components/sessionstore/SessionStore.jsm | 4 +
browser/components/torconnect/TorConnectChild.jsm | 9 +
browser/components/torconnect/TorConnectParent.jsm | 147 ++
.../torconnect/content/aboutTorConnect.css | 180 ++
.../torconnect/content/aboutTorConnect.js | 298 +++
.../torconnect/content/aboutTorConnect.xhtml | 45 +
.../components/torconnect/content/onion-slash.svg | 5 +
browser/components/torconnect/content/onion.svg | 4 +
.../torconnect/content/torBootstrapUrlbar.js | 93 +
.../torconnect/content/torconnect-urlbar.css | 57 +
.../torconnect/content/torconnect-urlbar.inc.xhtml | 10 +
browser/components/torconnect/jar.mn | 7 +
browser/components/torconnect/moz.build | 6 +
.../torpreferences/content/requestBridgeDialog.jsm | 209 +++
.../content/requestBridgeDialog.xhtml | 35 +
.../torpreferences/content/torCategory.inc.xhtml | 9 +
.../torpreferences/content/torLogDialog.jsm | 66 +
.../torpreferences/content/torLogDialog.xhtml | 23 +
.../components/torpreferences/content/torPane.js | 940 ++++++++++
.../torpreferences/content/torPane.xhtml | 157 ++
.../torpreferences/content/torPreferences.css | 189 ++
.../torpreferences/content/torPreferencesIcon.svg | 8 +
browser/components/torpreferences/jar.mn | 10 +
browser/components/torpreferences/moz.build | 1 +
browser/components/uitour/UITour-lib.js | 7 +
browser/components/uitour/UITour.jsm | 120 +-
browser/components/uitour/UITourChild.jsm | 33 +-
browser/components/urlbar/UrlbarInput.jsm | 45 +-
browser/confvars.sh | 35 +-
browser/extensions/moz.build | 13 +-
.../extensions/onboarding/OnboardingTelemetry.jsm | 578 ++++++
.../extensions/onboarding/OnboardingTourType.jsm | 40 +
browser/extensions/onboarding/README.md | 87 +
browser/extensions/onboarding/api.js | 275 +++
browser/extensions/onboarding/background.js | 8 +
.../extensions/onboarding/content/Onboarding.jsm | 1920 ++++++++++++++++++++
.../extensions/onboarding/content/img/close.png | Bin 0 -> 798 bytes
.../content/img/figure_tor-circuit-display.png | Bin 0 -> 26334 bytes
.../content/img/figure_tor-expect-differences.png | Bin 0 -> 22290 bytes
.../onboarding/content/img/figure_tor-network.png | Bin 0 -> 11982 bytes
.../content/img/figure_tor-onion-services.png | Bin 0 -> 40968 bytes
.../onboarding/content/img/figure_tor-privacy.png | Bin 0 -> 35527 bytes
.../content/img/figure_tor-security-level.png | Bin 0 -> 11263 bytes
.../onboarding/content/img/figure_tor-security.png | Bin 0 -> 24554 bytes
.../content/img/figure_tor-toolbar-layout.png | Bin 0 -> 13269 bytes
.../onboarding/content/img/figure_tor-welcome.png | Bin 0 -> 48405 bytes
.../onboarding/content/img/icons_no-icon.png | Bin 0 -> 673 bytes
.../onboarding/content/img/icons_tour-complete.png | Bin 0 -> 694 bytes
.../onboarding/content/img/icons_tour-complete.svg | 17 +
.../content/onboarding-tor-circuit-display.js | 283 +++
.../onboarding/content/onboarding-tour-agent.js | 107 ++
.../extensions/onboarding/content/onboarding.css | 664 +++++++
.../extensions/onboarding/content/onboarding.js | 38 +
browser/extensions/onboarding/data_events.md | 154 ++
browser/extensions/onboarding/jar.mn | 19 +
.../onboarding/locales/en-US/onboarding.properties | 126 ++
.../extensions/onboarding/locales/jar.mn | 11 +-
.../onboarding/locales}/moz.build | 0
browser/extensions/onboarding/manifest.json | 26 +
browser/extensions/onboarding/moz.build | 29 +
.../{formautofill => onboarding}/schema.json | 0
.../onboarding/test/browser/.eslintrc.js | 7 +
.../extensions/onboarding/test/browser/browser.ini | 18 +
.../browser/browser_onboarding_accessibility.js | 89 +
.../test/browser/browser_onboarding_keyboard.js | 137 ++
.../browser/browser_onboarding_notification.js | 62 +
.../browser/browser_onboarding_notification_2.js | 80 +
.../browser/browser_onboarding_notification_3.js | 82 +
.../browser/browser_onboarding_notification_4.js | 84 +
.../browser/browser_onboarding_notification_5.js | 25 +
...arding_notification_click_auto_complete_tour.js | 33 +
.../browser_onboarding_select_default_tour.js | 80 +
.../test/browser/browser_onboarding_skip_tour.js | 47 +
.../test/browser/browser_onboarding_tours.js | 115 ++
.../test/browser/browser_onboarding_tourset.js | 82 +
.../test/browser/browser_onboarding_uitour.js | 167 ++
browser/extensions/onboarding/test/browser/head.js | 288 +++
.../extensions/onboarding/test/unit/.eslintrc.js | 7 +
browser/extensions/onboarding/test/unit/head.js | 54 +
.../test/unit/test-onboarding-tour-type.js | 89 +
.../extensions/onboarding/test/unit/xpcshell.ini | 5 +
browser/installer/Makefile.in | 8 +
browser/installer/package-manifest.in | 18 +-
browser/installer/windows/nsis/shared.nsh | 1 -
browser/locales/Makefile.in | 10 +-
.../locales/en-US/chrome/browser/aboutTBUpdate.dtd | 8 +
browser/locales/filter.py | 1 +
browser/locales/jar.mn | 10 +-
browser/locales/l10n.ini | 1 +
browser/locales/l10n.toml | 4 +
browser/modules/BridgeDB.jsm | 61 +
browser/modules/HomePage.jsm | 2 +-
browser/modules/Moat.jsm | 730 ++++++++
browser/modules/TorConnect.jsm | 643 +++++++
browser/modules/TorProcessService.jsm | 12 +
browser/modules/TorProtocolService.jsm | 484 +++++
browser/modules/TorSettings.jsm | 693 +++++++
browser/modules/TorStrings.jsm | 622 +++++++
browser/modules/moz.build | 7 +
browser/moz.build | 1 +
browser/moz.configure | 8 +-
browser/themes/linux/browser.css | 9 -
browser/themes/shared/UITour.inc.css | 56 +-
browser/themes/shared/browser.inc.css | 5 +
browser/themes/shared/controlcenter/panel.inc.css | 4 +-
.../themes/shared/customizableui/panelUI.inc.css | 3 +-
browser/themes/shared/icons/new_circuit.svg | 6 +
browser/themes/shared/icons/new_identity.svg | 9 +
.../shared/identity-block/identity-block.inc.css | 33 +-
.../themes/shared/identity-block/onion-slash.svg | 5 +
.../themes/shared/identity-block/onion-warning.svg | 4 +
browser/themes/shared/identity-block/onion.svg | 4 +
browser/themes/shared/jar.inc.mn | 8 +
browser/themes/shared/menupanel.inc.css | 1 +
browser/themes/shared/notification-icons.inc.css | 5 +
browser/themes/shared/onionPattern.css | 31 +
browser/themes/shared/onionPattern.inc.xhtml | 12 +
browser/themes/shared/onionPattern.svg | 22 +
browser/themes/shared/preferences/privacy.css | 4 +
browser/themes/shared/tabs.inc.css | 6 +
browser/themes/shared/toolbarbutton-icons.inc.css | 8 +
browser/themes/shared/urlbar-searchbar.inc.css | 4 +
browser/themes/windows/browser.css | 9 -
build/application.ini.in | 2 +-
build/moz.configure/init.configure | 3 +-
config/createprecomplete.py | 18 +-
.../client/aboutdebugging/src/actions/runtimes.js | 5 +
.../images/aboutdebugging-firefox-aurora.svg | 35 +-
.../themes/images/aboutdebugging-firefox-beta.svg | 35 +-
.../themes/images/aboutdebugging-firefox-logo.svg | 11 +-
.../images/aboutdebugging-firefox-nightly.svg | 35 +-
.../images/aboutdebugging-firefox-release.svg | 35 +-
docshell/base/nsAboutRedirector.cpp | 6 +-
docshell/base/nsDocShell.cpp | 193 +-
docshell/base/nsDocShell.h | 6 +
docshell/base/nsDocShellLoadState.cpp | 4 +
docshell/base/nsIDocShell.idl | 5 +
docshell/base/nsIWebNavigation.idl | 5 +
docshell/build/components.conf | 1 +
docshell/shistory/SessionHistoryEntry.cpp | 14 +
docshell/shistory/SessionHistoryEntry.h | 1 +
docshell/shistory/nsISHEntry.idl | 5 +
docshell/shistory/nsSHEntry.cpp | 22 +-
docshell/shistory/nsSHEntry.h | 1 +
docshell/test/mochitest/mochitest.ini | 5 +
docshell/test/mochitest/test_tor_bug16620.html | 211 +++
docshell/test/mochitest/tor_bug16620.html | 51 +
docshell/test/mochitest/tor_bug16620_form.html | 51 +
dom/base/Document.cpp | 97 +-
dom/base/Document.h | 10 +-
dom/base/nsContentUtils.cpp | 19 +
dom/base/nsContentUtils.h | 5 +
dom/base/nsGlobalWindowOuter.cpp | 5 +-
dom/base/test/mochitest.ini | 2 -
dom/base/test/test_suppressed_microtasks.html | 62 -
dom/canvas/ClientWebGLContext.cpp | 8 +
dom/interfaces/base/nsIBrowser.idl | 3 +-
dom/ipc/BrowserChild.cpp | 2 +
dom/ipc/BrowserParent.cpp | 24 +-
dom/ipc/BrowserParent.h | 3 +
dom/ipc/PBrowser.ipdl | 10 +
dom/ipc/WindowGlobalActor.cpp | 4 +-
dom/ipc/WindowGlobalChild.cpp | 6 +-
dom/security/nsMixedContentBlocker.cpp | 16 +-
dom/webidl/Document.webidl | 8 +
dom/workers/RuntimeService.cpp | 4 +-
dom/workers/WorkerPrivate.cpp | 2 +-
dom/worklet/WorkletThread.cpp | 2 +-
extensions/auth/nsHttpNegotiateAuth.cpp | 4 +
extensions/permissions/PermissionManager.cpp | 6 +-
intl/l10n/L10nRegistry.jsm | 19 +-
intl/locale/LocaleService.cpp | 25 -
intl/strres/nsStringBundle.cpp | 1 +
js/xpconnect/src/xpc.msg | 10 +
layout/generic/ReflowInput.cpp | 19 +-
layout/generic/test/mochitest.ini | 1 +
layout/generic/test/test_tor_bug23104.html | 50 +
mobile/android/app/000-tor-browser-android.js | 47 +
mobile/android/app/geckoview-prefs.js | 2 +
mobile/android/app/mobile.js | 4 +
mobile/android/app/moz.build | 1 +
.../components/geckoview/GeckoViewStartup.jsm | 5 +
mobile/android/confvars.sh | 9 +
mobile/android/geckoview/api.txt | 6 +
mobile/android/geckoview/build.gradle | 1 +
.../android/geckoview/src/main/AndroidManifest.xml | 20 +-
.../gecko/media/GeckoMediaDrmBridgeV21.java | 49 +-
.../java/org/mozilla/gecko/util/ProxySelector.java | 25 +-
.../java/org/mozilla/geckoview/GeckoRuntime.java | 8 +-
.../mozilla/geckoview/GeckoRuntimeSettings.java | 94 +-
.../java/org/mozilla/geckoview/WebRequest.java | 18 +
.../exoplayer2/upstream/DefaultHttpDataSource.java | 47 +-
mobile/android/installer/package-manifest.in | 4 +
.../modules/geckoview/GeckoViewProgress.jsm | 4 +
mobile/android/moz.configure | 21 +-
mobile/android/torbrowser.configure | 30 +
modules/libmar/tool/mar.c | 6 +-
modules/libmar/tool/moz.build | 12 +-
modules/libmar/verify/moz.build | 14 +-
modules/libpref/init/StaticPrefList.yaml | 13 +-
moz.configure | 81 +
netwerk/base/nsSocketTransport2.cpp | 6 +
netwerk/dns/effective_tld_names.dat | 2 +
netwerk/dns/mdns/libmdns/components.conf | 15 -
netwerk/dns/mdns/libmdns/moz.build | 28 -
netwerk/ipc/DocumentLoadListener.cpp | 10 +
netwerk/protocol/http/nsHttpNTLMAuth.cpp | 3 +
netwerk/socket/nsSOCKSIOLayer.cpp | 49 +
.../url-classifier/UrlClassifierFeatureBase.cpp | 2 +-
netwerk/url-classifier/components.conf | 6 -
python/mozbuild/mozbuild/artifacts.py | 2 -
run-tbb-tests | 66 +
security/manager/ssl/RemoteSecuritySettings.jsm | 23 +
security/manager/ssl/nsSecureBrowserUI.cpp | 12 +
security/moz.build | 2 +-
security/nss/lib/certhigh/ocsp.c | 8 +
.../libpkix/pkix_pl_nss/module/pkix_pl_socket.c | 21 +
security/nss/lib/ssl/Makefile | 2 +-
services/settings/IDBHelpers.jsm | 4 +
services/settings/dumps/blocklists/moz.build | 14 +-
services/settings/dumps/main/moz.build | 7 -
services/settings/dumps/security-state/moz.build | 1 -
taskcluster/ci/source-test/mozlint.yml | 2 +
tbb-tests-ignore.txt | 13 +
tbb-tests/browser.ini | 5 +
tbb-tests/browser_tor_TB4.js | 35 +
tbb-tests/browser_tor_bug2950.js | 74 +
tbb-tests/browser_tor_omnibox.js | 20 +
tbb-tests/mochitest.ini | 3 +
.../nightly/locales => tbb-tests}/moz.build | 6 +-
tbb-tests/test_tor_bug2874.html | 25 +
toolkit/actors/AboutHttpsOnlyErrorParent.jsm | 5 +
.../components/antitracking/antitracking.manifest | 2 +-
toolkit/components/antitracking/components.conf | 7 -
.../EnterprisePoliciesParent.jsm | 14 +-
toolkit/components/enterprisepolicies/moz.build | 3 +
toolkit/components/extensions/Extension.jsm | 19 +-
toolkit/components/extensions/ExtensionParent.jsm | 47 +
.../components/httpsonlyerror/content/errorpage.js | 19 +-
.../processsingleton/MainProcessSingleton.jsm | 10 +
.../remotebrowserutils/RemoteWebNavigation.jsm | 4 +
.../components/resistfingerprinting/RFPHelper.jsm | 94 +-
toolkit/components/search/SearchService.jsm | 32 +-
toolkit/components/telemetry/app/TelemetrySend.jsm | 19 +-
toolkit/components/telemetry/moz.build | 4 -
toolkit/content/license.html | 65 +
toolkit/content/widgets/browser-custom-element.js | 13 +-
.../mozapps/profile/profileSelection.properties | 5 +
toolkit/modules/AppConstants.jsm | 22 +
toolkit/modules/Bech32Decode.jsm | 103 ++
toolkit/modules/PopupNotifications.jsm | 6 +
toolkit/modules/QRCode.jsm | 1241 +++++++++++++
toolkit/modules/RemotePageAccessManager.jsm | 23 +
toolkit/modules/UpdateUtils.jsm | 22 +-
toolkit/modules/moz.build | 5 +
toolkit/modules/sessionstore/SessionHistory.jsm | 5 +
toolkit/moz.build | 1 +
toolkit/mozapps/extensions/AddonManager.jsm | 24 +
.../mozapps/extensions/internal/XPIProvider.jsm | 46 +-
toolkit/mozapps/extensions/test/browser/head.js | 1 +
.../extensions/test/xpcshell/head_addons.js | 1 +
toolkit/mozapps/update/UpdateService.jsm | 256 ++-
toolkit/mozapps/update/UpdateServiceStub.jsm | 4 +
toolkit/mozapps/update/UpdateTelemetry.jsm | 1 +
toolkit/mozapps/update/common/updatehelper.cpp | 8 +
toolkit/mozapps/update/moz.build | 5 +-
toolkit/mozapps/update/nsIUpdateService.idl | 11 +
toolkit/mozapps/update/updater/launchchild_osx.mm | 2 +
toolkit/mozapps/update/updater/moz.build | 2 +-
.../updater/nightly_aurora_level3_primary.der | Bin 1225 -> 1245 bytes
.../updater/nightly_aurora_level3_secondary.der | Bin 1225 -> 1245 bytes
toolkit/mozapps/update/updater/release_primary.der | Bin 1225 -> 1229 bytes
.../mozapps/update/updater/release_secondary.der | Bin 1225 -> 1229 bytes
.../mozapps/update/updater/updater-common.build | 24 +-
toolkit/mozapps/update/updater/updater.cpp | 364 +++-
toolkit/profile/nsProfileLock.cpp | 17 +-
toolkit/profile/nsToolkitProfileService.cpp | 62 +-
toolkit/profile/nsToolkitProfileService.h | 13 +-
toolkit/toolkit.mozbuild | 3 +-
toolkit/torproject/torbutton | 1 +
toolkit/xre/MacLaunchHelper.h | 2 +
toolkit/xre/MacLaunchHelper.mm | 2 +
toolkit/xre/moz.build | 3 +
toolkit/xre/nsAppRunner.cpp | 275 ++-
toolkit/xre/nsConsoleWriter.cpp | 2 +-
toolkit/xre/nsUpdateDriver.cpp | 159 +-
toolkit/xre/nsXREDirProvider.cpp | 192 +-
toolkit/xre/nsXREDirProvider.h | 22 +-
tools/lint/codespell.yml | 1 +
.../lib/environments/browser-window.js | 10 +-
.../lib/environments/frame-script.js | 1 +
tools/update-packaging/common.sh | 64 +-
tools/update-packaging/make_full_update.sh | 25 +
tools/update-packaging/make_incremental_update.sh | 71 +-
.../exthandler/nsExternalHelperAppService.cpp | 207 ++-
uriloader/exthandler/nsExternalHelperAppService.h | 3 +
.../exthandler/nsIExternalHelperAppService.idl | 47 +
widget/android/WebExecutorSupport.cpp | 10 +
widget/nsTransferable.cpp | 6 +
xpcom/base/CycleCollectedJSContext.cpp | 51 +-
xpcom/base/CycleCollectedJSContext.h | 29 +-
xpcom/base/ErrorList.py | 22 +
xpcom/ds/StaticAtoms.py | 1 +
xpcom/io/TorFileUtils.cpp | 133 ++
xpcom/io/TorFileUtils.h | 32 +
xpcom/io/moz.build | 5 +
xpcom/io/nsAppFileLocationProvider.cpp | 98 +-
xpcom/reflect/xptinfo/xptinfo.h | 3 +-
647 files changed, 23407 insertions(+), 3304 deletions(-)
create mode 100644 .gitlab/issue_templates/UXBug.md
create mode 100644 .gitlab/issue_templates/bug.md
create mode 100644 .gitmodules
create mode 100755 .mozconfig
create mode 100755 .mozconfig-android
create mode 100644 .mozconfig-asan
create mode 100644 .mozconfig-mac
create mode 100644 .mozconfig-mingw
create mode 100644 browser/actors/AboutTBUpdateChild.jsm
create mode 100644 browser/actors/AboutTBUpdateParent.jsm
create mode 100644 browser/actors/CryptoSafetyChild.jsm
create mode 100644 browser/actors/CryptoSafetyParent.jsm
create mode 100644 browser/app/profile/000-tor-browser.js
create mode 100644 browser/base/content/abouttbupdate/aboutTBUpdate.css
create mode 100644 browser/base/content/abouttbupdate/aboutTBUpdate.js
create mode 100644 browser/base/content/abouttbupdate/aboutTBUpdate.xhtml
create mode 100644 browser/branding/alpha/VisualElements_150.png
create mode 100644 browser/branding/alpha/VisualElements_70.png
create mode 100644 browser/branding/alpha/background.png
create mode 100644 browser/branding/alpha/bgstub.jpg
create mode 100644 browser/branding/alpha/bgstub_2x.jpg
copy browser/branding/{nightly => alpha}/branding.nsi (100%)
copy services/settings/dumps/security-state/moz.build => browser/branding/alpha/configure.sh (53%)
create mode 100644 browser/branding/alpha/content/about-logo.png
copy browser/branding/{nightly => alpha}/content/about-logo.svg (100%)
create mode 100644 browser/branding/alpha/content/about-logo(a)2x.png
create mode 100644 browser/branding/alpha/content/about-wordmark.svg
create mode 100644 browser/branding/alpha/content/about.png
copy browser/branding/{nightly => alpha}/content/aboutDialog.css (100%)
create mode 100644 browser/branding/alpha/content/aboutlogins.svg
copy browser/branding/{nightly => alpha}/content/firefox-wordmark.svg (100%)
create mode 100644 browser/branding/alpha/content/identity-icons-brand.svg
copy browser/branding/{official => alpha}/content/jar.mn (80%)
copy browser/branding/{aurora => alpha}/content/moz.build (100%)
create mode 100644 browser/branding/alpha/content/tor-styles.css
create mode 100644 browser/branding/alpha/default128.png
create mode 100644 browser/branding/alpha/default16.png
create mode 100644 browser/branding/alpha/default22.png
create mode 100644 browser/branding/alpha/default24.png
create mode 100644 browser/branding/alpha/default256.png
create mode 100644 browser/branding/alpha/default32.png
create mode 100644 browser/branding/alpha/default48.png
create mode 100644 browser/branding/alpha/default512.png
create mode 100644 browser/branding/alpha/default64.png
create mode 100644 browser/branding/alpha/disk.icns
create mode 100644 browser/branding/alpha/document.icns
create mode 100644 browser/branding/alpha/document.ico
copy browser/branding/{nightly => alpha}/dsstore (100%)
copy browser/branding/{nightly => alpha}/firefox.VisualElementsManifest.xml (93%)
create mode 100644 browser/branding/alpha/firefox.icns
create mode 100644 browser/branding/alpha/firefox.ico
create mode 100644 browser/branding/alpha/firefox.svg
create mode 100644 browser/branding/alpha/firefox64.ico
copy browser/branding/{official => alpha}/locales/en-US/brand.dtd (68%)
copy browser/branding/{nightly => alpha}/locales/en-US/brand.ftl (90%)
copy browser/branding/{nightly => alpha}/locales/en-US/brand.properties (69%)
copy browser/branding/{official => alpha}/locales/jar.mn (100%)
copy browser/branding/{aurora/content => alpha/locales}/moz.build (100%)
copy browser/branding/{aurora => alpha}/moz.build (100%)
copy browser/branding/{aurora => alpha}/newtab.ico (100%)
copy browser/branding/{aurora => alpha}/newwindow.ico (100%)
copy browser/branding/{aurora => alpha}/pbmode.ico (100%)
create mode 100644 browser/branding/alpha/pref/firefox-branding.js
copy browser/branding/{nightly => alpha}/stubinstaller/bgstub.jpg (100%)
copy browser/branding/{nightly => alpha}/stubinstaller/installing_page.css (100%)
copy browser/branding/{aurora => alpha}/stubinstaller/profile_cleanup_page.css (100%)
create mode 100644 browser/branding/alpha/wizHeader.bmp
create mode 100644 browser/branding/alpha/wizHeaderRTL.bmp
create mode 100644 browser/branding/alpha/wizWatermark.bmp
create mode 100644 browser/branding/nightly/content/identity-icons-brand.svg
create mode 100644 browser/branding/nightly/content/tor-styles.css
create mode 100644 browser/branding/nightly/default512.png
create mode 100644 browser/branding/nightly/firefox.svg
create mode 100644 browser/branding/official/content/identity-icons-brand.svg
create mode 100644 browser/branding/official/content/tor-styles.css
create mode 100644 browser/branding/official/default512.png
create mode 100644 browser/branding/official/firefox.svg
create mode 100644 browser/branding/tor-styles.inc.css
create mode 100644 browser/components/onionservices/ExtensionMessaging.jsm
create mode 100644 browser/components/onionservices/HttpsEverywhereControl.jsm
create mode 100644 browser/components/onionservices/OnionAliasStore.jsm
create mode 100644 browser/components/onionservices/OnionLocationChild.jsm
create mode 100644 browser/components/onionservices/OnionLocationParent.jsm
create mode 100644 browser/components/onionservices/content/authNotificationIcon.inc.xhtml
create mode 100644 browser/components/onionservices/content/authPopup.inc.xhtml
create mode 100644 browser/components/onionservices/content/authPreferences.css
create mode 100644 browser/components/onionservices/content/authPreferences.inc.xhtml
create mode 100644 browser/components/onionservices/content/authPreferences.js
create mode 100644 browser/components/onionservices/content/authPrompt.js
create mode 100644 browser/components/onionservices/content/authUtil.jsm
create mode 100644 browser/components/onionservices/content/netError/browser.svg
create mode 100644 browser/components/onionservices/content/netError/network.svg
create mode 100644 browser/components/onionservices/content/netError/onionNetError.css
create mode 100644 browser/components/onionservices/content/netError/onionNetError.js
create mode 100644 browser/components/onionservices/content/netError/onionsite.svg
create mode 100644 browser/components/onionservices/content/onionlocation-notification-icons.css
create mode 100644 browser/components/onionservices/content/onionlocation-urlbar.css
create mode 100644 browser/components/onionservices/content/onionlocation-urlbar.inc.xhtml
create mode 100644 browser/components/onionservices/content/onionlocation.svg
create mode 100644 browser/components/onionservices/content/onionlocationPreferences.inc.xhtml
create mode 100644 browser/components/onionservices/content/onionlocationPreferences.js
create mode 100644 browser/components/onionservices/content/onionservices.css
create mode 100644 browser/components/onionservices/content/savedKeysDialog.js
create mode 100644 browser/components/onionservices/content/savedKeysDialog.xhtml
create mode 100644 browser/components/onionservices/jar.mn
create mode 100644 browser/components/onionservices/moz.build
create mode 100644 browser/components/search/extensions/blockchair-onion/favicon.png
create mode 100644 browser/components/search/extensions/blockchair-onion/manifest.json
create mode 100644 browser/components/search/extensions/blockchair/favicon.png
create mode 100644 browser/components/search/extensions/blockchair/manifest.json
create mode 100644 browser/components/search/extensions/ddg-onion/favicon.ico
create mode 100644 browser/components/search/extensions/ddg-onion/manifest.json
delete mode 100644 browser/components/search/extensions/ddg/favicon.ico
create mode 100644 browser/components/search/extensions/ddg/favicon.png
delete mode 100644 browser/components/search/extensions/google/_locales/b-1-d/messages.json
delete mode 100644 browser/components/search/extensions/google/_locales/b-1-e/messages.json
delete mode 100644 browser/components/search/extensions/google/_locales/b-d/messages.json
delete mode 100644 browser/components/search/extensions/google/_locales/b-e/messages.json
delete mode 100644 browser/components/search/extensions/google/_locales/en/messages.json
create mode 100644 browser/components/search/extensions/startpage/favicon.png
create mode 100644 browser/components/search/extensions/startpage/manifest.json
copy browser/components/{newtab/data/content/tippytop/favicons/twitter-com.ico => search/extensions/twitter/favicon.ico} (100%)
create mode 100644 browser/components/search/extensions/twitter/manifest.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/NN/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/NO/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/af/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/an/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/ar/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/ast/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/az/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/be-tarask/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/be/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/bg/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/bn/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/br/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/bs/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/ca/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/cy/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/cz/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/da/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/de/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/dsb/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/el/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/en/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/eo/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/es/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/et/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/eu/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/fa/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/fi/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/fr/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/fy-NL/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/ga-IE/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/gd/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/gl/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/gn/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/gu/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/he/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/hi/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/hr/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/hsb/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/hu/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/hy/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/ia/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/id/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/is/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/it/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/ja/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/ka/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/kab/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/kk/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/km/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/kn/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/kr/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/lij/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/lo/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/lt/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/ltg/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/lv/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/mk/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/mr/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/ms/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/my/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/ne/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/nl/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/oc/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/pa/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/pl/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/pt/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/rm/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/ro/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/ru/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/si/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/sk/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/sl/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/sq/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/sr/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/sv-SE/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/ta/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/te/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/th/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/tl/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/tr/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/uk/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/ur/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/uz/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/vi/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/wo/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/zh-CN/messages.json
delete mode 100644 browser/components/search/extensions/wikipedia/_locales/zh-TW/messages.json
create mode 100644 browser/components/search/extensions/yahoo/favicon.ico
create mode 100644 browser/components/search/extensions/yahoo/manifest.json
create mode 100644 browser/components/search/extensions/youtube/favicon.ico
create mode 100644 browser/components/search/extensions/youtube/manifest.json
create mode 100644 browser/components/securitylevel/content/securityLevel.js
create mode 100644 browser/components/securitylevel/content/securityLevelButton.css
create mode 100644 browser/components/securitylevel/content/securityLevelButton.inc.xhtml
create mode 100644 browser/components/securitylevel/content/securityLevelIcon.svg
create mode 100644 browser/components/securitylevel/content/securityLevelPanel.css
create mode 100644 browser/components/securitylevel/content/securityLevelPanel.inc.xhtml
create mode 100644 browser/components/securitylevel/content/securityLevelPreferences.css
create mode 100644 browser/components/securitylevel/content/securityLevelPreferences.inc.xhtml
create mode 100644 browser/components/securitylevel/jar.mn
create mode 100644 browser/components/securitylevel/moz.build
create mode 100644 browser/components/torconnect/TorConnectChild.jsm
create mode 100644 browser/components/torconnect/TorConnectParent.jsm
create mode 100644 browser/components/torconnect/content/aboutTorConnect.css
create mode 100644 browser/components/torconnect/content/aboutTorConnect.js
create mode 100644 browser/components/torconnect/content/aboutTorConnect.xhtml
create mode 100644 browser/components/torconnect/content/onion-slash.svg
create mode 100644 browser/components/torconnect/content/onion.svg
create mode 100644 browser/components/torconnect/content/torBootstrapUrlbar.js
create mode 100644 browser/components/torconnect/content/torconnect-urlbar.css
create mode 100644 browser/components/torconnect/content/torconnect-urlbar.inc.xhtml
create mode 100644 browser/components/torconnect/jar.mn
create mode 100644 browser/components/torconnect/moz.build
create mode 100644 browser/components/torpreferences/content/requestBridgeDialog.jsm
create mode 100644 browser/components/torpreferences/content/requestBridgeDialog.xhtml
create mode 100644 browser/components/torpreferences/content/torCategory.inc.xhtml
create mode 100644 browser/components/torpreferences/content/torLogDialog.jsm
create mode 100644 browser/components/torpreferences/content/torLogDialog.xhtml
create mode 100644 browser/components/torpreferences/content/torPane.js
create mode 100644 browser/components/torpreferences/content/torPane.xhtml
create mode 100644 browser/components/torpreferences/content/torPreferences.css
create mode 100644 browser/components/torpreferences/content/torPreferencesIcon.svg
create mode 100644 browser/components/torpreferences/jar.mn
create mode 100644 browser/components/torpreferences/moz.build
create mode 100644 browser/extensions/onboarding/OnboardingTelemetry.jsm
create mode 100644 browser/extensions/onboarding/OnboardingTourType.jsm
create mode 100644 browser/extensions/onboarding/README.md
create mode 100644 browser/extensions/onboarding/api.js
create mode 100644 browser/extensions/onboarding/background.js
create mode 100644 browser/extensions/onboarding/content/Onboarding.jsm
create mode 100644 browser/extensions/onboarding/content/img/close.png
create mode 100644 browser/extensions/onboarding/content/img/figure_tor-circuit-display.png
create mode 100644 browser/extensions/onboarding/content/img/figure_tor-expect-differences.png
create mode 100644 browser/extensions/onboarding/content/img/figure_tor-network.png
create mode 100644 browser/extensions/onboarding/content/img/figure_tor-onion-services.png
create mode 100644 browser/extensions/onboarding/content/img/figure_tor-privacy.png
create mode 100644 browser/extensions/onboarding/content/img/figure_tor-security-level.png
create mode 100644 browser/extensions/onboarding/content/img/figure_tor-security.png
create mode 100644 browser/extensions/onboarding/content/img/figure_tor-toolbar-layout.png
create mode 100644 browser/extensions/onboarding/content/img/figure_tor-welcome.png
create mode 100644 browser/extensions/onboarding/content/img/icons_no-icon.png
create mode 100644 browser/extensions/onboarding/content/img/icons_tour-complete.png
create mode 100644 browser/extensions/onboarding/content/img/icons_tour-complete.svg
create mode 100644 browser/extensions/onboarding/content/onboarding-tor-circuit-display.js
create mode 100644 browser/extensions/onboarding/content/onboarding-tour-agent.js
create mode 100644 browser/extensions/onboarding/content/onboarding.css
create mode 100644 browser/extensions/onboarding/content/onboarding.js
create mode 100644 browser/extensions/onboarding/data_events.md
create mode 100644 browser/extensions/onboarding/jar.mn
create mode 100644 browser/extensions/onboarding/locales/en-US/onboarding.properties
copy services/settings/dumps/security-state/moz.build => browser/extensions/onboarding/locales/jar.mn (53%)
copy browser/{branding/aurora/content => extensions/onboarding/locales}/moz.build (100%)
create mode 100644 browser/extensions/onboarding/manifest.json
create mode 100644 browser/extensions/onboarding/moz.build
copy browser/extensions/{formautofill => onboarding}/schema.json (100%)
create mode 100644 browser/extensions/onboarding/test/browser/.eslintrc.js
create mode 100644 browser/extensions/onboarding/test/browser/browser.ini
create mode 100644 browser/extensions/onboarding/test/browser/browser_onboarding_accessibility.js
create mode 100644 browser/extensions/onboarding/test/browser/browser_onboarding_keyboard.js
create mode 100644 browser/extensions/onboarding/test/browser/browser_onboarding_notification.js
create mode 100644 browser/extensions/onboarding/test/browser/browser_onboarding_notification_2.js
create mode 100644 browser/extensions/onboarding/test/browser/browser_onboarding_notification_3.js
create mode 100644 browser/extensions/onboarding/test/browser/browser_onboarding_notification_4.js
create mode 100644 browser/extensions/onboarding/test/browser/browser_onboarding_notification_5.js
create mode 100644 browser/extensions/onboarding/test/browser/browser_onboarding_notification_click_auto_complete_tour.js
create mode 100644 browser/extensions/onboarding/test/browser/browser_onboarding_select_default_tour.js
create mode 100644 browser/extensions/onboarding/test/browser/browser_onboarding_skip_tour.js
create mode 100644 browser/extensions/onboarding/test/browser/browser_onboarding_tours.js
create mode 100644 browser/extensions/onboarding/test/browser/browser_onboarding_tourset.js
create mode 100644 browser/extensions/onboarding/test/browser/browser_onboarding_uitour.js
create mode 100644 browser/extensions/onboarding/test/browser/head.js
create mode 100644 browser/extensions/onboarding/test/unit/.eslintrc.js
create mode 100644 browser/extensions/onboarding/test/unit/head.js
create mode 100644 browser/extensions/onboarding/test/unit/test-onboarding-tour-type.js
create mode 100644 browser/extensions/onboarding/test/unit/xpcshell.ini
create mode 100644 browser/locales/en-US/chrome/browser/aboutTBUpdate.dtd
create mode 100644 browser/modules/BridgeDB.jsm
create mode 100644 browser/modules/Moat.jsm
create mode 100644 browser/modules/TorConnect.jsm
create mode 100644 browser/modules/TorProcessService.jsm
create mode 100644 browser/modules/TorProtocolService.jsm
create mode 100644 browser/modules/TorSettings.jsm
create mode 100644 browser/modules/TorStrings.jsm
create mode 100644 browser/themes/shared/icons/new_circuit.svg
create mode 100644 browser/themes/shared/icons/new_identity.svg
create mode 100644 browser/themes/shared/identity-block/onion-slash.svg
create mode 100644 browser/themes/shared/identity-block/onion-warning.svg
create mode 100644 browser/themes/shared/identity-block/onion.svg
create mode 100644 browser/themes/shared/onionPattern.css
create mode 100644 browser/themes/shared/onionPattern.inc.xhtml
create mode 100644 browser/themes/shared/onionPattern.svg
create mode 100644 docshell/test/mochitest/test_tor_bug16620.html
create mode 100644 docshell/test/mochitest/tor_bug16620.html
create mode 100644 docshell/test/mochitest/tor_bug16620_form.html
delete mode 100644 dom/base/test/test_suppressed_microtasks.html
create mode 100644 layout/generic/test/test_tor_bug23104.html
create mode 100644 mobile/android/app/000-tor-browser-android.js
create mode 100644 mobile/android/torbrowser.configure
create mode 100755 run-tbb-tests
create mode 100644 tbb-tests-ignore.txt
create mode 100644 tbb-tests/browser.ini
create mode 100644 tbb-tests/browser_tor_TB4.js
create mode 100644 tbb-tests/browser_tor_bug2950.js
create mode 100644 tbb-tests/browser_tor_omnibox.js
create mode 100644 tbb-tests/mochitest.ini
copy {browser/branding/nightly/locales => tbb-tests}/moz.build (58%)
create mode 100644 tbb-tests/test_tor_bug2874.html
create mode 100644 toolkit/modules/Bech32Decode.jsm
create mode 100644 toolkit/modules/QRCode.jsm
create mode 160000 toolkit/torproject/torbutton
create mode 100644 xpcom/io/TorFileUtils.cpp
create mode 100644 xpcom/io/TorFileUtils.h
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
1
68

[tor-browser] branch tor-browser-91.8.0esr-11.5-1 created (now af2a7d1b0c662)
by gitolite role 04 Apr '22
by gitolite role 04 Apr '22
04 Apr '22
This is an automated email from the git hooks/post-receive script.
richard pushed a change to branch tor-browser-91.8.0esr-11.5-1
in repository tor-browser.
at af2a7d1b0c662 Bug 1760674. r=mak
No new revisions were added by this update.
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
1
0

[tor-launcher] branch master updated: Bug 40823: Revert tor-launcher 5fcd4edb836fcab3db21139e670bddc77811e30c
by gitolite role 04 Apr '22
by gitolite role 04 Apr '22
04 Apr '22
This is an automated email from the git hooks/post-receive script.
richard pushed a commit to branch master
in repository tor-launcher.
The following commit(s) were added to refs/heads/master by this push:
new a1803fc Bug 40823: Revert tor-launcher 5fcd4edb836fcab3db21139e670bddc77811e30c
a1803fc is described below
commit a1803fca33f4cf75ad7a422f9035cf9287f59ac1
Author: Richard Pospesel <richard(a)torproject.org>
AuthorDate: Wed Mar 30 21:01:39 2022 +0000
Bug 40823: Revert tor-launcher 5fcd4edb836fcab3db21139e670bddc77811e30c
This reverts commit 5fcd4edb836fcab3db21139e670bddc77811e30c.
---
src/chrome/locale/en-US/network-settings.dtd | 259 ---------------------------
1 file changed, 259 deletions(-)
diff --git a/src/chrome/locale/en-US/network-settings.dtd b/src/chrome/locale/en-US/network-settings.dtd
index cc501cd..fe905bf 100644
--- a/src/chrome/locale/en-US/network-settings.dtd
+++ b/src/chrome/locale/en-US/network-settings.dtd
@@ -94,262 +94,3 @@
<!ENTITY torConnect.connectedConcise "Connected">
<!ENTITY torConnect.notConnectedConcise "Not Connected">
<!ENTITY torConnect.copyLog "Copy Tor Logs">
-<!ENTITY torConnect.configureConnection "Configure Connection…">
-<!ENTITY torConnect.tryBridge "Try a Bridge">
-
-<!-- #40773 about:torconnect country names -->
-<!-- LOCALIZTION NOTE (countries.XX): The country names should be translated such that:
-- some form of the 'official' name is preferred (we try to call countries what they call themselves)
-- the name can be easily found within a sorted list (eg: in English we prefer 'Netherlands' over 'The Netherlands' as most English speakers would not skip down to the 'T' section of the list to find the Netherlands, similarly 'Venezuela' vs 'Bolivarian Republic of Venezuela'). The names in this list will displayed to the user in a sorted order using String.prototype.localeCompare(); see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Ob… [...]
-
-Thank you!
- -->
-<!ENTITY countries.ad "Andorra">
-<!ENTITY countries.ae "United Arab Emirates">
-<!ENTITY countries.af "Afghanistan">
-<!ENTITY countries.ag "Antigua and Barbuda">
-<!ENTITY countries.ai "Anguilla">
-<!ENTITY countries.al "Albania">
-<!ENTITY countries.am "Armenia">
-<!ENTITY countries.ao "Angola">
-<!ENTITY countries.aq "Antarctica">
-<!ENTITY countries.ar "Argentina">
-<!ENTITY countries.as "American Samoa">
-<!ENTITY countries.at "Austria">
-<!ENTITY countries.au "Australia">
-<!ENTITY countries.aw "Aruba">
-<!ENTITY countries.ax "Åland Islands">
-<!ENTITY countries.az "Azerbaijan">
-<!ENTITY countries.ba "Bosnia and Herzegovina">
-<!ENTITY countries.bb "Barbados">
-<!ENTITY countries.bd "Bangladesh">
-<!ENTITY countries.be "Belgium">
-<!ENTITY countries.bf "Burkina Faso">
-<!ENTITY countries.bg "Bulgaria">
-<!ENTITY countries.bh "Bahrain">
-<!ENTITY countries.bi "Burundi">
-<!ENTITY countries.bj "Benin">
-<!ENTITY countries.bl "Saint Barthélemy">
-<!ENTITY countries.bm "Bermuda">
-<!ENTITY countries.bn "Brunei Darussalam">
-<!ENTITY countries.bo "Bolivia (Plurinational State of)">
-<!ENTITY countries.bq "Bonaire, Sint Eustatius and Saba">
-<!ENTITY countries.br "Brazil">
-<!ENTITY countries.bs "Bahamas">
-<!ENTITY countries.bt "Bhutan">
-<!ENTITY countries.bv "Bouvet Island">
-<!ENTITY countries.bw "Botswana">
-<!ENTITY countries.by "Belarus">
-<!ENTITY countries.bz "Belize">
-<!ENTITY countries.ca "Canada">
-<!ENTITY countries.cc "Cocos (Keeling) Islands">
-<!ENTITY countries.cd "Congo (Kinshasa)">
-<!ENTITY countries.cf "Central African Republic">
-<!ENTITY countries.cg "Congo (Brazzaville)">
-<!ENTITY countries.ch "Switzerland">
-<!ENTITY countries.ci "Côte d'Ivoire">
-<!ENTITY countries.ck "Cook Islands">
-<!ENTITY countries.cl "Chile">
-<!ENTITY countries.cm "Cameroon">
-<!ENTITY countries.cn "China">
-<!ENTITY countries.co "Colombia">
-<!ENTITY countries.cr "Costa Rica">
-<!ENTITY countries.cu "Cuba">
-<!ENTITY countries.cv "Cabo Verde">
-<!ENTITY countries.cw "Curaçao">
-<!ENTITY countries.cx "Christmas Island">
-<!ENTITY countries.cy "Cyprus">
-<!ENTITY countries.cz "Czechia">
-<!ENTITY countries.de "Germany">
-<!ENTITY countries.dj "Djibouti">
-<!ENTITY countries.dk "Denmark">
-<!ENTITY countries.dm "Dominica">
-<!ENTITY countries.do "Dominican Republic">
-<!ENTITY countries.dz "Algeria">
-<!ENTITY countries.ec "Ecuador">
-<!ENTITY countries.ee "Estonia">
-<!ENTITY countries.eg "Egypt">
-<!ENTITY countries.eh "Western Sahara">
-<!ENTITY countries.er "Eritrea">
-<!ENTITY countries.es "Spain">
-<!ENTITY countries.et "Ethiopia">
-<!ENTITY countries.fi "Finland">
-<!ENTITY countries.fj "Fiji">
-<!ENTITY countries.fk "Falkland Islands (Malvinas)">
-<!ENTITY countries.fm "Micronesia (Federated States of)">
-<!ENTITY countries.fo "Faroe Islands">
-<!ENTITY countries.fr "France">
-<!ENTITY countries.ga "Gabon">
-<!ENTITY countries.gb "United Kingdom">
-<!ENTITY countries.gd "Grenada">
-<!ENTITY countries.ge "Georgia">
-<!ENTITY countries.gf "French Guiana">
-<!ENTITY countries.gg "Guernsey">
-<!ENTITY countries.gh "Ghana">
-<!ENTITY countries.gi "Gibraltar">
-<!ENTITY countries.gl "Greenland">
-<!ENTITY countries.gm "Gambia">
-<!ENTITY countries.gn "Guinea">
-<!ENTITY countries.gp "Guadeloupe">
-<!ENTITY countries.gq "Equatorial Guinea">
-<!ENTITY countries.gr "Greece">
-<!ENTITY countries.gs "South Georgia and the South Sandwich Islands">
-<!ENTITY countries.gt "Guatemala">
-<!ENTITY countries.gu "Guam">
-<!ENTITY countries.gw "Guinea-Bissau">
-<!ENTITY countries.gy "Guyana">
-<!ENTITY countries.hk "Hong Kong">
-<!ENTITY countries.hm "Heard Island and McDonald Islands">
-<!ENTITY countries.hn "Honduras">
-<!ENTITY countries.hr "Croatia">
-<!ENTITY countries.ht "Haiti">
-<!ENTITY countries.hu "Hungary">
-<!ENTITY countries.id "Indonesia">
-<!ENTITY countries.ie "Ireland">
-<!ENTITY countries.il "Israel">
-<!ENTITY countries.im "Isle of Man">
-<!ENTITY countries.in "India">
-<!ENTITY countries.io "British Indian Ocean Territory">
-<!ENTITY countries.iq "Iraq">
-<!ENTITY countries.ir "Iran (Islamic Republic of)">
-<!ENTITY countries.is "Iceland">
-<!ENTITY countries.it "Italy">
-<!ENTITY countries.je "Jersey">
-<!ENTITY countries.jm "Jamaica">
-<!ENTITY countries.jo "Jordan">
-<!ENTITY countries.jp "Japan">
-<!ENTITY countries.ke "Kenya">
-<!ENTITY countries.kg "Kyrgyzstan">
-<!ENTITY countries.kh "Cambodia">
-<!ENTITY countries.ki "Kiribati">
-<!ENTITY countries.km "Comoros">
-<!ENTITY countries.kn "Saint Kitts and Nevis">
-<!ENTITY countries.kp "Korea (Democratic People's Republic of)">
-<!ENTITY countries.kr "Korea (Republic of)">
-<!ENTITY countries.kw "Kuwait">
-<!ENTITY countries.ky "Cayman Islands">
-<!ENTITY countries.kz "Kazakhstan">
-<!ENTITY countries.la "Lao People's Democratic Republic">
-<!ENTITY countries.lb "Lebanon">
-<!ENTITY countries.lc "Saint Lucia">
-<!ENTITY countries.li "Liechtenstein">
-<!ENTITY countries.lk "Sri Lanka">
-<!ENTITY countries.lr "Liberia">
-<!ENTITY countries.ls "Lesotho">
-<!ENTITY countries.lt "Lithuania">
-<!ENTITY countries.lu "Luxembourg">
-<!ENTITY countries.lv "Latvia">
-<!ENTITY countries.ly "Libya">
-<!ENTITY countries.ma "Morocco">
-<!ENTITY countries.mc "Monaco">
-<!ENTITY countries.md "Moldova (Republic of)">
-<!ENTITY countries.me "Montenegro">
-<!ENTITY countries.mf "Saint Martin (French part)">
-<!ENTITY countries.mg "Madagascar">
-<!ENTITY countries.mh "Marshall Islands">
-<!ENTITY countries.mk "North Macedonia">
-<!ENTITY countries.ml "Mali">
-<!ENTITY countries.mm "Myanmar">
-<!ENTITY countries.mn "Mongolia">
-<!ENTITY countries.mo "Macao">
-<!ENTITY countries.mp "Northern Mariana Islands">
-<!ENTITY countries.mq "Martinique">
-<!ENTITY countries.mr "Mauritania">
-<!ENTITY countries.ms "Montserrat">
-<!ENTITY countries.mt "Malta">
-<!ENTITY countries.mu "Mauritius">
-<!ENTITY countries.mv "Maldives">
-<!ENTITY countries.mw "Malawi">
-<!ENTITY countries.mx "Mexico">
-<!ENTITY countries.my "Malaysia">
-<!ENTITY countries.mz "Mozambique">
-<!ENTITY countries.na "Namibia">
-<!ENTITY countries.nc "New Caledonia">
-<!ENTITY countries.ne "Niger">
-<!ENTITY countries.nf "Norfolk Island">
-<!ENTITY countries.ng "Nigeria">
-<!ENTITY countries.ni "Nicaragua">
-<!ENTITY countries.nl "Netherlands">
-<!ENTITY countries.no "Norway">
-<!ENTITY countries.np "Nepal">
-<!ENTITY countries.nr "Nauru">
-<!ENTITY countries.nu "Niue">
-<!ENTITY countries.nz "New Zealand">
-<!ENTITY countries.om "Oman">
-<!ENTITY countries.pa "Panama">
-<!ENTITY countries.pe "Peru">
-<!ENTITY countries.pf "French Polynesia">
-<!ENTITY countries.pg "Papua New Guinea">
-<!ENTITY countries.ph "Philippines">
-<!ENTITY countries.pk "Pakistan">
-<!ENTITY countries.pl "Poland">
-<!ENTITY countries.pm "Saint Pierre and Miquelon">
-<!ENTITY countries.pn "Pitcairn">
-<!ENTITY countries.pr "Puerto Rico">
-<!ENTITY countries.ps "Palestine">
-<!ENTITY countries.pt "Portugal">
-<!ENTITY countries.pw "Palau">
-<!ENTITY countries.py "Paraguay">
-<!ENTITY countries.qa "Qatar">
-<!ENTITY countries.re "Réunion">
-<!ENTITY countries.ro "Romania">
-<!ENTITY countries.rs "Serbia">
-<!ENTITY countries.ru "Russian Federation">
-<!ENTITY countries.rw "Rwanda">
-<!ENTITY countries.sa "Saudi Arabia">
-<!ENTITY countries.sb "Solomon Islands">
-<!ENTITY countries.sc "Seychelles">
-<!ENTITY countries.sd "Sudan">
-<!ENTITY countries.se "Sweden">
-<!ENTITY countries.sg "Singapore">
-<!ENTITY countries.sh "Saint Helena, Ascension and Tristan da Cunha">
-<!ENTITY countries.si "Slovenia">
-<!ENTITY countries.sj "Svalbard and Jan Mayen">
-<!ENTITY countries.sk "Slovakia">
-<!ENTITY countries.sl "Sierra Leone">
-<!ENTITY countries.sm "San Marino">
-<!ENTITY countries.sn "Senegal">
-<!ENTITY countries.so "Somalia">
-<!ENTITY countries.sr "Suriname">
-<!ENTITY countries.ss "South Sudan">
-<!ENTITY countries.st "Sao Tome and Principe">
-<!ENTITY countries.sv "El Salvador">
-<!ENTITY countries.sx "Sint Maarten (Dutch part)">
-<!ENTITY countries.sy "Syrian Arab Republic">
-<!ENTITY countries.sz "Eswatini">
-<!ENTITY countries.tc "Turks and Caicos Islands">
-<!ENTITY countries.td "Chad">
-<!ENTITY countries.tf "French Southern Territories">
-<!ENTITY countries.tg "Togo">
-<!ENTITY countries.th "Thailand">
-<!ENTITY countries.tj "Tajikistan">
-<!ENTITY countries.tk "Tokelau">
-<!ENTITY countries.tl "Timor-Leste">
-<!ENTITY countries.tm "Turkmenistan">
-<!ENTITY countries.tn "Tunisia">
-<!ENTITY countries.to "Tonga">
-<!ENTITY countries.tr "Turkey">
-<!ENTITY countries.tt "Trinidad and Tobago">
-<!ENTITY countries.tv "Tuvalu">
-<!ENTITY countries.tw "Taiwan">
-<!ENTITY countries.tz "Tanzania (United Republic of)">
-<!ENTITY countries.ua "Ukraine">
-<!ENTITY countries.ug "Uganda">
-<!ENTITY countries.um "United States Minor Outlying Islands">
-<!ENTITY countries.us "United States of America">
-<!ENTITY countries.uy "Uruguay">
-<!ENTITY countries.uz "Uzbekistan">
-<!ENTITY countries.va "Vatican City">
-<!ENTITY countries.vc "Saint Vincent and the Grenadines">
-<!ENTITY countries.ve "Venezuela (Bolivarian Republic of)">
-<!ENTITY countries.vg "Virgin Islands (British)">
-<!ENTITY countries.vi "Virgin Islands (U.S.)">
-<!ENTITY countries.vn "Vietnam (Socialist Republic of)">
-<!ENTITY countries.vu "Vanuatu">
-<!ENTITY countries.wf "Wallis and Futuna">
-<!ENTITY countries.ws "Samoa">
-<!ENTITY countries.ye "Yemen">
-<!ENTITY countries.yt "Mayotte">
-<!ENTITY countries.za "South Africa">
-<!ENTITY countries.zm "Zambia">
-<!ENTITY countries.zw "Zimbabwe">
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
1
0

04 Apr '22
This is an automated email from the git hooks/post-receive script.
dgoulet pushed a commit to branch main
in repository tor.
The following commit(s) were added to refs/heads/main by this push:
new 802baa8b6b ci: print test_network_log contents
new 6e36b65475 Merge branch 'tor-gitlab/mr/557'
802baa8b6b is described below
commit 802baa8b6bb70e58e8415c48ec518d4a9f5acfa8
Author: Alex Xu (Hello71) <alex_y_xu(a)yahoo.ca>
AuthorDate: Mon Mar 28 15:43:31 2022 -0400
ci: print test_network_log contents
cat will always print "cat: test_network_log: Is a directory". change it to
head -n -0, which is arguably not the perfect format but is at least somewhat
useful.
---
scripts/ci/ci-driver.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/ci/ci-driver.sh b/scripts/ci/ci-driver.sh
index 09696924ba..eea98baae7 100755
--- a/scripts/ci/ci-driver.sh
+++ b/scripts/ci/ci-driver.sh
@@ -442,7 +442,7 @@ if [[ "${CHUTNEY}" = "yes" ]]; then
runcmd "${CHUTNEY_PATH}"/tools/diagnostics.sh || true
# XXXX These next two should be part of a make target.
runcmd ls test_network_log || true
- runcmd cat test_network_log || true
+ runcmd head -n -0 test_network_log/* || true
FAILED_TESTS="${FAILED_TESTS} chutney"
fi
end_section "Chutney"
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
1
0

[Git][tpo/applications/fenix] Deleted branch tor-browser-99.0.b3-11.5-1
by aguestuser (@aguestuser) 01 Apr '22
by aguestuser (@aguestuser) 01 Apr '22
01 Apr '22
aguestuser deleted branch tor-browser-99.0.b3-11.5-1 at The Tor Project / Applications / fenix
--
You're receiving this email because of your account on gitlab.torproject.org.
1
0

[Git][tpo/applications/fenix] Pushed new branch tor-browser-99.0.b3-11.5-1
by aguestuser (@aguestuser) 01 Apr '22
by aguestuser (@aguestuser) 01 Apr '22
01 Apr '22
aguestuser pushed new branch tor-browser-99.0.b3-11.5-1 at The Tor Project / Applications / fenix
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/fenix/-/tree/tor-browser-99.…
You're receiving this email because of your account on gitlab.torproject.org.
1
0

[builders/tor-browser-build] annotated tag tbb-11.0.10-build1 created (now ebcc705)
by gitolite role 01 Apr '22
by gitolite role 01 Apr '22
01 Apr '22
This is an automated email from the git hooks/post-receive script.
richard pushed a change to annotated tag tbb-11.0.10-build1
in repository builders/tor-browser-build.
at ebcc705 (tag)
tagging 44985bd4f135c6f11618a1d307319385391c81f0 (commit)
replaces tbb-11.0.9-build1
by Richard Pospesel
on Fri Apr 1 16:32:37 2022 +0000
- Log -----------------------------------------------------------------
Tagging build1 for 11.0.10
-----BEGIN PGP SIGNATURE-----
iQJLBAABCAA1FiEEvnyRTMkiztnZPSO33kc2A2PzSywFAmJHKSUXHHJpY2hhcmRA
dG9ycHJvamVjdC5vcmcACgkQ3kc2A2PzSyyw/Q/+MQYQ3m7czWD1aKQE4dObYIIb
GPmH9X/R7bK440ViCLiXFxN7Cj0yOwRJhKUT7NHZOFUuP6d2syfzMOUJbFopxImJ
VzUElbZwWR3T/GRq6kvC5TZzdXd6OLVrEJgmk2hvkT7QZnh8VIZYs9pNT3ANSGkN
J2isnFq6QFD/j40EoggItnOKJo59x/HTtIhr+TMHFr2Sn37YYBuov5BaPKGA7fD5
ZXLhBY4VTkkuQc/wyBcZnOPDKtjnKovqemNBI/vS5WA4je17fbRvfpj2ITq2aCsj
UmS1wEQlFqUadHArCEI0YaS31VeDLE1/z/xgS0vkJNdm+lBpa452Itg4jQZlBVre
4BfpbbMdOMF8xsgKoOFmtNfsBiUhiis5Scl6IzfHdyipwK8CyvdqxbllhStTT5q+
EovQKOFnPH8hX9W+dytQD/U3dPvoC2kXsRQ6BwkRl4hFLCMCTxkEKneHgJ89F0Zv
Ri6SN/mphvzUknPEr+c5dHVUsxYxf4otS53iMCkN9peYh37CjW8OeJRQza6YwWzL
qB15sDYtt8zg+Fy/a1OzsrPspEMKCMYAk7HRUsw5XG6HiPnRSoVtLMMGQ8e5XTwP
sWAQImhQHtS9upOslUxp/Vj6wkr+n5IkravzoLhicBFeS6MwFJn7gcwAHZx2KxdZ
ADrSDxBDf0GCqnxDYCs=
=iIDH
-----END PGP SIGNATURE-----
-----------------------------------------------------------------------
No new revisions were added by this update.
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
1
0