aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/doc/xsl
diff options
context:
space:
mode:
authorBenjamin Kosnik <bkoz@redhat.com>2012-08-29 01:37:16 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2012-08-29 01:37:16 +0000
commit8d24c9756597c337feb94cf9401fe0f9d2780616 (patch)
tree8e04e4c1238f8d25788e626abbb2fafb77ff47cb /libstdc++-v3/doc/xsl
parentfabfa16b371e9354e2a62d88e80a698ba161ee3c (diff)
downloadgcc-8d24c9756597c337feb94cf9401fe0f9d2780616.zip
gcc-8d24c9756597c337feb94cf9401fe0f9d2780616.tar.gz
gcc-8d24c9756597c337feb94cf9401fe0f9d2780616.tar.bz2
re PR libstdc++/54102 (generated html vs. utf8)
2012-08-28 Benjamin Kosnik <bkoz@redhat.com> PR libstdc++/54102 * doc/xsl/customization.xsl.in: New. * configure.ac: Output local copy of customization xsl. * doc/Makefile.am (stamp-html-single-docbook): Use XSL_LOCAL_STYLE. (stamp-html-docbook): Set stringparam to UTF-8. * Makefile.in: Regenerated. * configure: Same. * doc/Makefile.in: Same. From-SVN: r190768
Diffstat (limited to 'libstdc++-v3/doc/xsl')
-rw-r--r--libstdc++-v3/doc/xsl/customization.xsl.in16
1 files changed, 16 insertions, 0 deletions
diff --git a/libstdc++-v3/doc/xsl/customization.xsl.in b/libstdc++-v3/doc/xsl/customization.xsl.in
new file mode 100644
index 0000000..9db621c
--- /dev/null
+++ b/libstdc++-v3/doc/xsl/customization.xsl.in
@@ -0,0 +1,16 @@
+<?xml version='1.0'?>
+
+<!--
+ Specialization/customization layer for libstdc++.
+ To output both chunked/single page HTML in UTF-8 charset
+
+ XSL_STYLE_DIR is set in acinclude.m4
+
+<xsl:import html="@XSL_STYLE_DIR@/html/docbook.xsl"/>
+-->
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ version="1.0">
+<xsl:import href="@XSL_STYLE_DIR@/html/docbook.xsl"/>
+<xsl:output method="html" encoding="UTF-8" indent="no"/>
+</xsl:stylesheet>