From a1b46befeb35cb4646ff82e103542de0191f32c9 Mon Sep 17 00:00:00 2001 From: Tobias Frisch <tfrisch@uni-koblenz.de> Date: Sun, 12 Jun 2022 16:01:42 +0200 Subject: [PATCH] Added method to easily upload new doxygen output Signed-off-by: Tobias Frisch <tfrisch@uni-koblenz.de> --- Doxyfile | 6 +++--- scripts/upload_docs.sh | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) create mode 100755 scripts/upload_docs.sh diff --git a/Doxyfile b/Doxyfile index 05d73d3c..77eff3be 100644 --- a/Doxyfile +++ b/Doxyfile @@ -357,7 +357,7 @@ AUTOLINK_SUPPORT = YES # diagrams that involve STL classes more complete and accurate. # The default value is: NO. -BUILTIN_STL_SUPPORT = NO +BUILTIN_STL_SUPPORT = YES # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. @@ -1278,7 +1278,7 @@ HTML_EXTRA_FILES = # Minimum value: 0, maximum value: 359, default value: 220. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_COLORSTYLE_HUE = 220 +HTML_COLORSTYLE_HUE = 0 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors # in the HTML output. For a value of 0 the output will use gray-scales only. A @@ -1297,7 +1297,7 @@ HTML_COLORSTYLE_SAT = 100 # Minimum value: 40, maximum value: 240, default value: 80. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_COLORSTYLE_GAMMA = 80 +HTML_COLORSTYLE_GAMMA = 220 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML # page will contain the date and time when the page was generated. Setting this diff --git a/scripts/upload_docs.sh b/scripts/upload_docs.sh new file mode 100755 index 00000000..cc63cbf5 --- /dev/null +++ b/scripts/upload_docs.sh @@ -0,0 +1,3 @@ +#!/bin/sh +doxygen Doxyfile +rsync -r doc/html/ vkcv@penguin2.uni-koblenz.de:/home/vkcv/public_html/doc/ -- GitLab