summaryrefslogtreecommitdiff
path: root/xsl/common.xsl
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2011-12-27 11:23:26 +0100
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2011-12-27 11:23:26 +0100
commit531a9cc4a4aa58995218bc882021adaf0629113d (patch)
tree91e4f66d3b8238f10e727949e5fc8caa1e80701c /xsl/common.xsl
parent1674ef3493c1f83fb607e4dd0e0bb51df5b56fef (diff)
downloadmutti-web-531a9cc4a4aa58995218bc882021adaf0629113d.tar.gz
mutti-web-531a9cc4a4aa58995218bc882021adaf0629113d.tar.bz2
mutti-web-531a9cc4a4aa58995218bc882021adaf0629113d.zip
common.xsl: Use xhtml 1.0 strict instead of 1.1
This is for xsltproc to trigger the xhtml output method.
Diffstat (limited to 'xsl/common.xsl')
-rw-r--r--xsl/common.xsl4
1 files changed, 2 insertions, 2 deletions
diff --git a/xsl/common.xsl b/xsl/common.xsl
index d3cc654..17bb576 100644
--- a/xsl/common.xsl
+++ b/xsl/common.xsl
@@ -17,8 +17,8 @@
<xsl:param name="suffix" select="'.xml'" />
<xsl:output method="xml" indent="yes"
- doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"
- doctype-public="-//W3C//DTD XHTML 1.1//EN"
+ doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
+ doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
cdata-section-elements="script style"
media-type="application/xhtml+xml"
encoding="UTF-8"