- we now use only one step of XSL transformation

svn path=/trunk/; revision=25171
This commit is contained in:
nicoulas
2013-01-17 23:13:14 +00:00
parent c12d2acbf9
commit fc5838b0f2
171 changed files with 2149 additions and 3383 deletions
+2 -12
View File
@@ -6,7 +6,8 @@
<xsl:import href="../tools/xsltsl/date-time.xsl" />
<xsl:import href="../tools/xsltsl/tagging.xsl" />
<xsl:output method="xml" encoding="UTF-8" indent="yes" />
<xsl:import href="../fsfe.xsl" />
<xsl:output method="html" encoding="utf-8" indent="yes" doctype-system="about:legacy-compat" />
<!--
For documentation on tagging (e.g. fetching news and events), take a
@@ -34,16 +35,5 @@
<xsl:call-template name="all-tags-events"/>
</xsl:template>
<!-- Do not copy <set> or <text> to output at all -->
<xsl:template match="set | tags"/>
<!-- For all other nodes, copy verbatim -->
<xsl:template match="@*|node()" priority="-1">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>