diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-04 19:50:15 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-04 19:51:21 +1100 |
commit | e2a6b1378f04e6349eae678028022dd48e6959de (patch) | |
tree | 771cbfa55fc38b2acc79bcda4b5aa1f506d7b607 /solenv | |
parent | e1acc9f0438dcfbc739bea019acb68614cc8cff3 (diff) |
accessibility: fix rest of doxygen errors
I've changed the doxygen generation script to generate an xhtml
page, and it uses SVG diagrams now.
Change-Id: I876795675ae9ebcfec6f7fe5edc43c9d2e4964d3
Diffstat (limited to 'solenv')
-rwxr-xr-x | solenv/bin/mkdocs.sh | 2 | ||||
-rw-r--r-- | solenv/inc/doxygen.cfg | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/solenv/bin/mkdocs.sh b/solenv/bin/mkdocs.sh index c5231feced77..54741fea9e57 100755 --- a/solenv/bin/mkdocs.sh +++ b/solenv/bin/mkdocs.sh @@ -221,7 +221,7 @@ for module_name in *; do text="<p><b>View module in:</b>" text="${text} <a href=\"http://cgit.freedesktop.org/libreoffice/core/tree/${module_name}\">cgit</a>" if $(echo $INPUT_PROJECTS | grep -q $module_name); then - text="${text} <a href=\"${module_name}/html/classes.html\">Doxygen</a>" + text="${text} <a href=\"${module_name}/html/classes.xhtml\">Doxygen</a>" fi text="${text} </p><p> </p>" echo -e $text >> "$BASE_OUTPUT/${module_name}.html" diff --git a/solenv/inc/doxygen.cfg b/solenv/inc/doxygen.cfg index 4468e593ffa1..11fbf2ad6cbf 100644 --- a/solenv/inc/doxygen.cfg +++ b/solenv/inc/doxygen.cfg @@ -1052,7 +1052,7 @@ HTML_OUTPUT = # The default value is: .html. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_FILE_EXTENSION = .html +HTML_FILE_EXTENSION = .xhtml # The HTML_HEADER tag can be used to specify a user-defined HTML header file for # each generated HTML page. If the tag is left blank doxygen will generate a @@ -2292,7 +2292,7 @@ DIRECTORY_GRAPH = YES # The default value is: png. # This tag requires that the tag HAVE_DOT is set to YES. -DOT_IMAGE_FORMAT = gif +DOT_IMAGE_FORMAT = svg # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to # enable generation of interactive SVG images that allow zooming and panning. @@ -2304,7 +2304,7 @@ DOT_IMAGE_FORMAT = gif # The default value is: NO. # This tag requires that the tag HAVE_DOT is set to YES. -INTERACTIVE_SVG = NO +INTERACTIVE_SVG = YES # The DOT_PATH tag can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. |