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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
From: Nicolas Schodet <nico@ni.fr.eu.org>
Date: Tue, 25 Mar 2025 18:43:01 +0100
Subject: Disable doxygen customization, not working with current version
This disables custom header, footer and style.
Forwarded: no
---
Doxyfile | 6 +++---
Doxyfile-c | 6 +++---
Doxyfile-c++ | 6 +++---
3 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/Doxyfile b/Doxyfile
index 31d0ef6..2cdd36a 100644
--- a/Doxyfile
+++ b/Doxyfile
@@ -628,13 +628,13 @@ HTML_FILE_EXTENSION = .html
# each generated HTML page. If it is left blank doxygen will generate a
# standard header.
-HTML_HEADER = doc/html/header.htm
+HTML_HEADER =
# The HTML_FOOTER tag can be used to specify a personal HTML footer for
# each generated HTML page. If it is left blank doxygen will generate a
# standard footer.
-HTML_FOOTER = doc/html/footer-no-sf.htm
+HTML_FOOTER =
# The HTML_STYLESHEET tag can be used to specify a user-defined cascading
# style sheet that is used by each HTML page. It can be used to
@@ -643,7 +643,7 @@ HTML_FOOTER = doc/html/footer-no-sf.htm
# the style sheet file to the HTML output directory, so don't put your own
# stylesheet in the HTML output directory as well, or it will be erased!
-HTML_STYLESHEET = doc/html/doxygen.css
+HTML_STYLESHEET =
# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
# files or namespaces will be aligned in HTML using tables. If set to
diff --git a/Doxyfile-c b/Doxyfile-c
index 73f0674..6698355 100644
--- a/Doxyfile-c
+++ b/Doxyfile-c
@@ -624,13 +624,13 @@ HTML_FILE_EXTENSION = .html
# each generated HTML page. If it is left blank doxygen will generate a
# standard header.
-HTML_HEADER = doc/html/header.htm
+HTML_HEADER =
# The HTML_FOOTER tag can be used to specify a personal HTML footer for
# each generated HTML page. If it is left blank doxygen will generate a
# standard footer.
-HTML_FOOTER = doc/html/footer-no-sf.htm
+HTML_FOOTER =
# The HTML_STYLESHEET tag can be used to specify a user-defined cascading
# style sheet that is used by each HTML page. It can be used to
@@ -639,7 +639,7 @@ HTML_FOOTER = doc/html/footer-no-sf.htm
# the style sheet file to the HTML output directory, so don't put your own
# stylesheet in the HTML output directory as well, or it will be erased!
-HTML_STYLESHEET = doc/html/doxygen.css
+HTML_STYLESHEET =
# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
# files or namespaces will be aligned in HTML using tables. If set to
diff --git a/Doxyfile-c++ b/Doxyfile-c++
index 3011674..e7a71fe 100644
--- a/Doxyfile-c++
+++ b/Doxyfile-c++
@@ -628,13 +628,13 @@ HTML_FILE_EXTENSION = .html
# each generated HTML page. If it is left blank doxygen will generate a
# standard header.
-HTML_HEADER = doc/html/header.htm
+HTML_HEADER =
# The HTML_FOOTER tag can be used to specify a personal HTML footer for
# each generated HTML page. If it is left blank doxygen will generate a
# standard footer.
-HTML_FOOTER = doc/html/footer-no-sf.htm
+HTML_FOOTER =
# The HTML_STYLESHEET tag can be used to specify a user-defined cascading
# style sheet that is used by each HTML page. It can be used to
@@ -643,7 +643,7 @@ HTML_FOOTER = doc/html/footer-no-sf.htm
# the style sheet file to the HTML output directory, so don't put your own
# stylesheet in the HTML output directory as well, or it will be erased!
-HTML_STYLESHEET = doc/html/doxygen.css
+HTML_STYLESHEET =
# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
# files or namespaces will be aligned in HTML using tables. If set to
|