mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-11 01:41:57 -04:00
Merge pull request #9739 from ThomasWaldmann/pdf-docs-master
Some checks are pending
Lint / lint (push) Waiting to run
CI / lint (push) Waiting to run
CI / security (push) Waiting to run
CI / asan_ubsan (push) Blocked by required conditions
CI / native_tests (push) Blocked by required conditions
CI / vm_tests (NetBSD, false, netbsd, 10.1) (push) Blocked by required conditions
CI / vm_tests (OmniOS, false, omnios, r151056) (push) Blocked by required conditions
CI / vm_tests (OpenBSD, false, openbsd, 7.8) (push) Blocked by required conditions
CI / vm_tests (borg-freebsd-14-x86_64-gh, FreeBSD, true, freebsd, 14.3) (push) Blocked by required conditions
CI / windows_tests (push) Blocked by required conditions
CodeQL / Analyze (push) Waiting to run
Some checks are pending
Lint / lint (push) Waiting to run
CI / lint (push) Waiting to run
CI / security (push) Waiting to run
CI / asan_ubsan (push) Blocked by required conditions
CI / native_tests (push) Blocked by required conditions
CI / vm_tests (NetBSD, false, netbsd, 10.1) (push) Blocked by required conditions
CI / vm_tests (OmniOS, false, omnios, r151056) (push) Blocked by required conditions
CI / vm_tests (OpenBSD, false, openbsd, 7.8) (push) Blocked by required conditions
CI / vm_tests (borg-freebsd-14-x86_64-gh, FreeBSD, true, freebsd, 14.3) (push) Blocked by required conditions
CI / windows_tests (push) Blocked by required conditions
CodeQL / Analyze (push) Waiting to run
docs: offer a PDF download and link offline formats in the sidebar
This commit is contained in:
commit
e46b4bf5d1
4 changed files with 44 additions and 2 deletions
|
|
@ -29,3 +29,4 @@ sphinx:
|
|||
|
||||
formats:
|
||||
- htmlzip
|
||||
- pdf
|
||||
|
|
|
|||
27
docs/_templates/downloads.html
vendored
Normal file
27
docs/_templates/downloads.html
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<p class="borg-downloads" id="borg-downloads" style="display:none;">Downloads: <span id="borg-downloads-list"></span></p>
|
||||
<script type="text/javascript">
|
||||
// Populate offline download links (PDF, HTMLzip, ...) on a single line using ReadTheDocs data if available.
|
||||
function borgInitDownloads(data) {
|
||||
var downloads = data && data.versions && data.versions.current && data.versions.current.downloads;
|
||||
if (!downloads) return;
|
||||
var labels = {pdf: "PDF", htmlzip: "HTML", epub: "ePub"};
|
||||
var span = document.getElementById("borg-downloads-list");
|
||||
if (!span) return;
|
||||
var first = true;
|
||||
Object.keys(downloads).forEach(function(fmt) {
|
||||
var url = downloads[fmt];
|
||||
if (!url) return;
|
||||
if (!first) span.appendChild(document.createTextNode(" | "));
|
||||
var a = document.createElement("a");
|
||||
a.href = url;
|
||||
a.textContent = labels[fmt] || fmt;
|
||||
span.appendChild(a);
|
||||
first = false;
|
||||
});
|
||||
if (!first) document.getElementById("borg-downloads").style.display = "";
|
||||
}
|
||||
|
||||
document.addEventListener("readthedocs-addons-data-ready", function(event) {
|
||||
borgInitDownloads(event.detail.data());
|
||||
});
|
||||
</script>
|
||||
|
|
@ -221,3 +221,17 @@ readthedocs-flyout {
|
|||
.sphinxsidebar > .sidebar-block:has(#main-search):after {
|
||||
margin: 7px 22px 0 22px;
|
||||
}
|
||||
/* Downloads line in the sidebar: a single line, left-aligned with the boxes
|
||||
above it and the table of contents below it. */
|
||||
.borg-downloads {
|
||||
padding: 0 22px;
|
||||
margin: 7px 0 7px 0;
|
||||
font-size: 14px;
|
||||
color: #000;
|
||||
}
|
||||
.borg-downloads:after {
|
||||
content: '';
|
||||
display: block;
|
||||
border-top: 1px solid #ccc;
|
||||
margin: 7px 0 0 0;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -156,7 +156,7 @@ html_use_smartypants = True
|
|||
smartquotes_action = "qe" # no D in there means "do not transform -- and ---"
|
||||
|
||||
# Custom sidebar templates, maps document names to template names.
|
||||
html_sidebars = {"**": ["logo-text.html", "versionselector.html", "searchbox.html", "globaltoc.html"]}
|
||||
html_sidebars = {"**": ["logo-text.html", "versionselector.html", "searchbox.html", "downloads.html", "globaltoc.html"]}
|
||||
|
||||
# Additional templates that should be rendered to pages, maps page names to
|
||||
# template names.
|
||||
|
|
@ -218,7 +218,7 @@ latex_show_urls = "footnote"
|
|||
# latex_preamble = ''
|
||||
|
||||
# Documents to append as an appendix to all manuals.
|
||||
latex_appendices = ["support", "resources", "changes", "authors"]
|
||||
latex_appendices = ["support", "changes", "authors"]
|
||||
|
||||
# If false, no module index is generated.
|
||||
# latex_domain_indices = True
|
||||
|
|
|
|||
Loading…
Reference in a new issue