Hi Antonio, thanks for catching this. While at it, I tagged your patch, and... - fix sphinx theme fallback condition - apply patch to fall back to a sphinx default theme for older distributions, that haven't python3-guzzle_sphinx_theme available OBS-URL: https://build.opensuse.org/request/show/582655 OBS-URL: https://build.opensuse.org/package/show/Archiving:Backup/borgbackup?expand=0&rev=32
28 lines
1.1 KiB
Diff
28 lines
1.1 KiB
Diff
diff -up -r borgbackup-1.1.4/docs/conf.py borgbackup.1.1.4.new/docs/conf.py
|
|
--- borgbackup-1.1.4/docs/conf.py 2017-12-30 10:14:25.000000000 +0100
|
|
+++ borgbackup.1.1.4/docs/conf.py 2018-03-04 14:15:42.439486356 +0100
|
|
@@ -99,10 +99,11 @@ pygments_style = 'sphinx'
|
|
|
|
# The theme to use for HTML and HTML Help pages. See the documentation for
|
|
# a list of builtin themes.
|
|
-import guzzle_sphinx_theme
|
|
+#import guzzle_sphinx_theme
|
|
|
|
-html_theme_path = guzzle_sphinx_theme.html_theme_path()
|
|
-html_theme = 'guzzle_sphinx_theme'
|
|
+#html_theme_path = guzzle_sphinx_theme.html_theme_path()
|
|
+#html_theme = 'guzzle_sphinx_theme'
|
|
+html_theme = 'classic'
|
|
|
|
|
|
def set_rst_settings(app):
|
|
diff -up -r borgbackup-1.1.4/docs/_templates/logo-text.html borgbackup.1.1.4.new/docs/_templates/logo-text.html
|
|
--- borgbackup-1.1.4/docs/_templates/logo-text.html 2017-12-30 10:14:25.000000000 +0100
|
|
+++ borgbackup.1.1.4/docs/_templates/logo-text.html 2018-03-04 14:12:18.749419915 +0100
|
|
@@ -1,5 +0,0 @@
|
|
-<a href="{{ homepage() }}" class="text-logo">
|
|
- <img src='{{ pathto('_static/logo.svg', 1) }}' width='100%'>
|
|
-
|
|
- {{ theme_project_nav_name or shorttitle }}
|
|
-</a>
|