Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/sphinxbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
shell: bash
run: tar czf /tmp/documentation.tar.gz -C user_manual/_build/html .
- name: Upload static documentation
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.6.2
with:
name: User manual.zip
path: "/tmp/documentation.tar.gz"
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
shell: bash
run: tar czf /tmp/documentation.tar.gz -C developer_manual/_build/html/com .
- name: Upload static documentation
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.6.2
with:
name: Developer manual.zip
path: "/tmp/documentation.tar.gz"
Expand All @@ -75,7 +75,7 @@ jobs:
shell: bash
run: tar czf /tmp/documentation.tar.gz -C admin_manual/_build/html/com .
- name: Upload static documentation
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.6.2
with:
name: Administration manual.zip
path: "/tmp/documentation.tar.gz"
13 changes: 13 additions & 0 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,19 @@ def generateVersionsDocs(current_docs):
edit_on_github_project = 'nextcloud/documentation'
edit_on_github_branch = 'master'

# Automatically add EoL warning banner to docs for unsupported releases
if (version.isdigit() and version < version_start):
rst_prolog = """.. danger::
**OUTDATED DOCUMENTATION**

*You are viewing documentation for a retired version of Nextcloud.
Do not follow these instructions for current releases.*

**To ensure you have the most reliable and up-to-date guidance,
please visit the** `Nextcloud Documentation homepage
<https://docs.nextcloud.com/>`_.
"""

# user starts in light mode
default_dark_mode = False

Expand Down
Loading