aboutsummaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-08-05 09:30:40 -0700
committerGerald Combs <gerald@wireshark.org>2015-08-05 16:42:03 +0000
commit53a80334bcb3ca40a5aaef504e2aca0f04bcc9f3 (patch)
treeeba0fded1321b2ebf10d67e8391f52aaf6f4cdff /cmake
parent2221153a9cc083a50248a72a4b4009908d84e38b (diff)
Generate XHTML5 documentation.
When converting from DocBook to HTML, use DocBook's xhtml5 XSL stylesheets. Change-Id: I7a49d60c46a17e1e639b78ee10c4b9fa832d4a77 Reviewed-on: https://code.wireshark.org/review/9878 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/FindXSLTPROC.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/modules/FindXSLTPROC.cmake b/cmake/modules/FindXSLTPROC.cmake
index 8a7ac7a15b..4c6f958200 100644
--- a/cmake/modules/FindXSLTPROC.cmake
+++ b/cmake/modules/FindXSLTPROC.cmake
@@ -77,11 +77,11 @@ MACRO(XML2HTML _guide _mode _xmlsources _gfxsources)
IF(${_mode} STREQUAL "chunked")
SET(_basedir ${_guide}_html_chunked)
- SET(_STYLESHEET "http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl")
+ SET(_STYLESHEET "http://docbook.sourceforge.net/release/xsl/current/xhtml5/chunk.xsl")
SET(_modeparams --noout)
ELSE() # single-page
SET(_basedir ${_guide}_html)
- SET(_STYLESHEET "http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl")
+ SET(_STYLESHEET "http://docbook.sourceforge.net/release/xsl/current/xhtml5/docbook.xsl")
SET(_modeparams --output ${_basedir}/index.html)
ENDIF()