You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by va...@apache.org on 2022/09/24 05:13:47 UTC

[couchdb] 01/01: Fix the documentation download links

This is an automated email from the ASF dual-hosted git repository.

vatamane pushed a commit to branch fix-doc-download-link
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 5e43eac862aaa4e4edbd7723975d92fb0fc9b177
Author: Nick Vatamaniuc <va...@apache.org>
AuthorDate: Sat Sep 24 00:57:05 2022 -0400

    Fix the documentation download links
    
    The download page was missing the version part of the template.
    
    Use the RTD version environment variable
    
    [1] https://docs.readthedocs.io/en/stable/environment-variables.html?highlight=github_version#envvar-READTHEDOCS_VERSION
---
 src/docs/src/conf.py                   | 1 +
 src/docs/templates/pages/download.html | 5 -----
 2 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/src/docs/src/conf.py b/src/docs/src/conf.py
index 01f197b1a..2c84f615f 100644
--- a/src/docs/src/conf.py
+++ b/src/docs/src/conf.py
@@ -74,6 +74,7 @@ html_context = {
     "conf_py_path": "/src/docs/src/",
     "github_user": "apache",
     "github_repo": "couchdb",
+    "rtd_ver": os.environ.get("READTHEDOCS_VERSION_NAME") or "latest",
 }
 
 text_newlines = "native"
diff --git a/src/docs/templates/pages/download.html b/src/docs/templates/pages/download.html
index 481ec9fac..b78f479fb 100644
--- a/src/docs/templates/pages/download.html
+++ b/src/docs/templates/pages/download.html
@@ -16,11 +16,6 @@ specific language governing permissions and limitations under the License.
 {% extends "layout.html" %}
 {% set title = 'Download' %}
 {% set url = 'https://media.readthedocs.org/%s/couchdb/%s/couchdb.%s' %}
-{% if git_branch == 'main' %}
-  {% set rtd_ver = 'latest' %}
-{% else %}
-  {% set rtd_ver = git_branch %}
-{% endif %}
 
 {% block body %}
 <h1>Download Apache CouchDB™ {{ release }} Documentation</h1>