diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-08-24 08:56:16 +0200 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-08-24 08:56:16 +0200 |
commit | 4a2ec37a6aa778ebfaa091b34bd54393980f95d9 (patch) | |
tree | d6d39b6bf34e06e462212412ff32a720d089d74d | |
parent | 98c4a1d2884883e5c8e1986d6ead6eb04fdb425c (diff) | |
download | mutti-web-4a2ec37a6aa778ebfaa091b34bd54393980f95d9.tar.gz mutti-web-4a2ec37a6aa778ebfaa091b34bd54393980f95d9.tar.bz2 mutti-web-4a2ec37a6aa778ebfaa091b34bd54393980f95d9.zip |
common.xsl: remove non-standard (xsl 1.0) attributes
-rw-r--r-- | xsl/common.xsl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xsl/common.xsl b/xsl/common.xsl index f1c4e6d..30eb522 100644 --- a/xsl/common.xsl +++ b/xsl/common.xsl @@ -16,7 +16,7 @@ <xsl:variable name="title" select="document('../main.xml')/s:site/s:page[@filename = $filename]/@title" /> <xsl:variable name="suffix" select="'.xhtml'" /> - <xsl:output method="xml" indent="yes" name="html" + <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" cdata-section-elements="script style" @@ -25,7 +25,7 @@ /> <xsl:template match="html:*" mode="html"> - <xsl:copy copy-namespaces="no"> + <xsl:copy> <!--<xsl:element name="{local-name()}">--> <xsl:copy-of select="@*"/> <xsl:apply-templates mode="html"/> |