tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 71fcafef850c26e61d316ded17f30cf5902900ff
parent 3dcf89739daf0e26532d06c3c8a9be37c22f7cfa
Author: Gijs Kruitbosch <gijskruitbosch@gmail.com>
Date:   Fri,  5 Dec 2025 14:05:40 +0000

Bug 2004023 - update searchfox repos in source docs searchfox roles, r=sylvestre

Differential Revision: https://phabricator.services.mozilla.com/D275062

Diffstat:
Mpython/mozbuild/mozbuild/sphinx.py | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/python/mozbuild/mozbuild/sphinx.py b/python/mozbuild/mozbuild/sphinx.py @@ -238,7 +238,7 @@ class Searchfox(ReferenceRole): See :searchfox:`browser/base/content/browser-places.js` for more details. Will generate a link to - ``https://searchfox.org/mozilla-central/source/browser/base/content/browser-places.js`` + ``https://searchfox.org/firefox-main/source/browser/base/content/browser-places.js`` The example above will use the path as the text, to use custom text: @@ -247,7 +247,7 @@ class Searchfox(ReferenceRole): To specify a different source tree: - See :searchfox:`mozilla-beta:browser/base/content/browser-places.js` + See :searchfox:`firefox-beta:browser/base/content/browser-places.js` for more details. """ @@ -257,7 +257,7 @@ class Searchfox(ReferenceRole): if ":" in self.target: source, path = self.target.split(":", 1) else: - source = "mozilla-central" + source = "firefox-main" path = self.target url = base.format(source=source, path=path)