Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/python/mozrelease/mozrelease/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 2 kB image not shown  

Quelle  paths.py   Sprache: Python

 
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

from urllib.parse import urlunsplit

from .versions import MozillaVersion

product_ftp_map = {
    "fennec""mobile",
}


def product2ftp(product):
    return product_ftp_map.get(product, product)


def getCandidatesDir(product, version, buildNumber, protocol=None, server=None):
    if protocol:
        assert server is not None"server is required with protocol"

    product = product2ftp(product)
    directory = "/{}/candidates/{}-candidates/build{}".format(
        product,
        str(version),
        str(buildNumber),
    )

    if protocol:
        return urlunsplit((protocol, server, directory, NoneNone))
    else:
        return directory


def getReleasesDir(product, version=None, protocol=None, server=None):
    if protocol:
        assert server is not None"server is required with protocol"

    directory = "/{}/releases".format(product)
    if version:
        directory = "{}/{}".format(directory, version)

    if protocol:
        return urlunsplit((protocol, server, directory, NoneNone))
    else:
        return directory


def getReleaseInstallerPath(
    productName,
    brandName,
    version,
    platform,
    locale="en-US",
    last_linux_bz2_version=None,
):
    if productName not in ("fennec",):
        if platform.startswith("linux"):
            compression = "bz2"
            if last_linux_bz2_version and (
                MozillaVersion(version) > MozillaVersion(last_linux_bz2_version)
            ):
                compression = "xz"
            return "/".join(
                [
                    p.strip("/")
                    for p in [
                        platform,
                        locale,
                        "%s-%s.tar.%s" % (productName, version, compression),
                    ]
                ]
            )
        elif "mac" in platform:
            return "/".join(
                [
                    p.strip("/")
                    for p in [platform, locale, "%s %s.dmg" % (brandName, version)]
                ]
            )
        elif platform.startswith("win"):
            return "/".join(
                [
                    p.strip("/")
                    for p in [
                        platform,
                        locale,
                        "%s Setup %s.exe" % (brandName, version),
                    ]
                ]
            )
        else:
            raise "Unsupported platform"
    elif platform.startswith("android"):
        filename = "%s-%s.%s.android-arm.apk" % (productName, version, locale)
        return "/".join([p.strip("/"for p in [platform, locale, filename]])
    else:
        raise "Unsupported platform"

94%


¤ Dauer der Verarbeitung: 0.1 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung ist noch experimentell.