Bug 503505: Update info should allow more html tags through. r=robstrong

This commit is contained in:
Dave Townsend 2010-02-25 21:16:25 -08:00
parent aa5a345997
commit 9da0aa2d23

View File

@ -2,35 +2,34 @@
<xsl:stylesheet version="1.0" xmlns:xhtml="http://www.w3.org/1999/xhtml"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="text()">
</xsl:template>
<xsl:template match="text()" mode="list">
</xsl:template>
<xsl:template match="text()" mode="text">
<xsl:value-of select="."/>
</xsl:template>
<xsl:template match="xhtml:script" mode="text">
</xsl:template>
<xsl:template match="xhtml:b|xhtml:i|xhtml:em|xhtml:strong" mode="text">
<xsl:copy><xsl:apply-templates mode="text"/></xsl:copy>
</xsl:template>
<xsl:template match="xhtml:h1|xhtml:h2|xhtml:h3|xhtml:p">
<xsl:copy><xsl:apply-templates mode="text"/></xsl:copy>
<!-- Any elements not otherwise specified will be stripped but the contents
will be displayed. All attributes are stripped from copied elements. -->
<!-- Block these elements and their contents -->
<xsl:template match="xhtml:head|xhtml:script|xhtml:style">
</xsl:template>
<xsl:template match="xhtml:li" mode="list">
<xsl:copy><xsl:apply-templates mode="text"/></xsl:copy>
<!-- Allowable styling elements -->
<xsl:template match="xhtml:b|xhtml:i|xhtml:em|xhtml:strong|xhtml:u|xhtml:q|xhtml:sub|xhtml:sup|xhtml:code">
<xsl:copy><xsl:apply-templates/></xsl:copy>
</xsl:template>
<xsl:template match="xhtml:ul|xhtml:ol">
<xsl:copy><xsl:apply-templates mode="list"/></xsl:copy>
<!-- Allowable block formatting elements -->
<xsl:template match="xhtml:h1|xhtml:h2|xhtml:h3|xhtml:p|xhtml:div|xhtml:blockquote|xhtml:pre">
<xsl:copy><xsl:apply-templates/></xsl:copy>
</xsl:template>
<!-- Allowable list formatting elements -->
<xsl:template match="xhtml:ul|xhtml:ol|xhtml:li|xhtml:dl|xhtml:dt|xhtml:dd">
<xsl:copy><xsl:apply-templates/></xsl:copy>
</xsl:template>
<!-- These elements are copied and their contents dropped -->
<xsl:template match="xhtml:br|xhtml:hr">
<xsl:copy/>
</xsl:template>
<!-- The root document -->
<xsl:template match="/">
<xhtml:body><xsl:apply-templates/></xhtml:body>
</xsl:template>