diff --git a/templates/switchers.js b/templates/switchers.js index 29204ae..babac8e 100644 --- a/templates/switchers.js +++ b/templates/switchers.js @@ -1,4 +1,4 @@ -(function() { +(async function() { 'use strict'; if (!String.prototype.startsWith) { @@ -18,7 +18,19 @@ '(?:dev)', '(?:release/\\d.\\d[\\x\\d\\.]*)']; - const all_versions = $VERSIONS; + // Fetch all available documentation versions from `release-cycle.json` + const releaseCycleURL = "https://raw.githubusercontent.com/python/devguide/main/include/release-cycle.json"; + const releaseCycleResponse = await fetch(releaseCycleURL, { method: "GET"}); + if (!releaseCycleResponse.ok) { + throw new Error("Error downloading release-cycle.json file."); + } + const releaseCycleData = await releaseCycleResponse.json(); + + const all_versions = new Array(); + for (const version of releaseCycleData ) { + all_versions.push(version); + } + // TODO: fetch available languges from an external JSON file const all_languages = $LANGUAGES; function quote_attr(str) { pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy