File: 0004-Remove-external-favicon-css-from-documentation.patch

package info (click to toggle)
cairocffi 1.7.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 748 kB
  • sloc: python: 2,989; makefile: 20
file content (33 lines) | stat: -rw-r--r-- 1,055 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
From: Hilko Bengen <bengen@debian.org>
Date: Mon, 10 Nov 2025 14:19:08 +0100
Subject: Remove external favicon, css from documentation

---
 docs/conf.py | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/docs/conf.py b/docs/conf.py
index 869fca4..c5824e0 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -46,9 +46,6 @@ html_theme_options = {
     'collapse_navigation': False,
 }
 
-# Favicon URL
-html_favicon = 'https://www.courtbouillon.org/static/images/favicon.png'
-
 # Add any paths that contain custom static files (such as style sheets) here,
 # relative to this directory. They are copied after the builtin static files,
 # so a file named "default.css" will overwrite the builtin "default.css".
@@ -56,9 +53,7 @@ html_static_path = []
 
 # These paths are either relative to html_static_path
 # or fully qualified paths (eg. https://...)
-html_css_files = [
-    'https://www.courtbouillon.org/static/docs.css',
-]
+html_css_files = []
 
 # Output file base name for HTML help builder.
 htmlhelp_basename = 'cairocffidoc'