脚本标记的XSL转换

时间:2012-08-08 14:48:41

标签: xslt

我有一个xsl文件,它将html嵌入到xml中并将其转换为html。我没有写这个,我不知道舔xsl但我必须做这个工作因为它是我工作项目的一小部分。

我发现了一个错误,它会使用直接位于其下方的标记呈现任何空的<script>标记。这是一个例子......

此:

<script type=”text/javascript” src=”…”></script>
<p>…</p>

渲染为......

<script type=”text/javascript” src=”…”><p>…</p></script>

这是现有的xsl ...

<xsl:template match="script">
    <script>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates /> 
    </script>
</xsl:template>

这是整个xsl文件。 注意:我在尝试修复时更改了脚本转换。仍然得到同样的错误...

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="p">
    <p>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates /> 
    </p>
</xsl:template>

<xsl:template match="script">
    <xsl:element name="script">
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:value-of select="." />
    </xsl:element>
</xsl:template>


    <xsl:template match="option">
    <option>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates /> 
    </option>
</xsl:template>

<xsl:template match="select">
    <select>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates /> 
    </select>
</xsl:template>

<xsl:template match="object">
    <object>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}">
                <xsl:value-of select="." />
            </xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </object>
</xsl:template>

<xsl:template match="param">
    <param>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}">
                <xsl:value-of select="." />
            </xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </param>
</xsl:template>

<xsl:template match="label">
    <label>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates /> 
    </label>
</xsl:template>

<xsl:template match="input">
    <input>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates /> 
    </input>
</xsl:template>

<xsl:template match="textarea">
    <textarea>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates /> 
    </textarea>
</xsl:template>


<xsl:template match="nbsp">
&#160;
</xsl:template>

<xsl:template match="noscript">
    <xsl:element name="noscript">
      <xsl:apply-templates />
  </xsl:element>
</xsl:template>

<xsl:template match="a">
    <a>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:for-each select="href">
            <xsl:attribute name="href"><xsl:apply-templates select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:for-each select="title">
            <xsl:attribute name="title"><xsl:apply-templates select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:for-each select="onclick">
            <xsl:attribute name="onclick"><xsl:apply-templates select="." /></xsl:attribute>
        </xsl:for-each>

        <xsl:apply-templates />

    </a>
</xsl:template>


<xsl:template match="strong">
    <strong>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </strong>
</xsl:template>

    <xsl:template match="span">
        <span>
            <xsl:for-each select="@*">
                <xsl:attribute name="{name()}">
                    <xsl:value-of select="." />
                </xsl:attribute>

                <xsl:attribute name="style">
                    <xsl:text>&#160;</xsl:text>
                </xsl:attribute>
            </xsl:for-each>

        <xsl:choose>
            <xsl:when test="string-length(.) > 0">
                <xsl:apply-templates />
            </xsl:when>
            <xsl:otherwise>
                <xsl:text>&#160;</xsl:text>
            </xsl:otherwise>
        </xsl:choose>
        </span>
    </xsl:template>

<xsl:template match="ul">
    <ul>
      <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </ul>
</xsl:template>

<xsl:template match="u">
    <u><xsl:apply-templates /></u>
</xsl:template>

<xsl:template match="ol">
    <ol><xsl:apply-templates /></ol>
</xsl:template>

<xsl:template match="li">
    <li>
      <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
  </li>
</xsl:template>

<xsl:template match="br">
  <br>  
    <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
  </br>
</xsl:template>

<xsl:template match="h1">
    <h1>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </h1>
</xsl:template>

<xsl:template match="h2">
    <h2>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </h2>
</xsl:template>

<xsl:template match="h3">
    <h3><xsl:apply-templates /></h3>
</xsl:template>

<xsl:template match="h4">
    <h4><xsl:apply-templates /></h4>
</xsl:template>

<xsl:template match="h5">
    <h5><xsl:apply-templates /></h5>
</xsl:template>

<xsl:template match="blockquote">
    <blockquote>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
  </blockquote>
</xsl:template>

<xsl:template match="img">
    <img>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
    </img>
</xsl:template>

<xsl:template match="i">
    <xsl:element name="i">
        <xsl:choose>
            <xsl:when test="string-length(.) > 0">
                <xsl:apply-templates />
            </xsl:when>
            <xsl:otherwise>
                <xsl:text>&#160;</xsl:text>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:element>
</xsl:template>

<xsl:template match="em">
    <xsl:element name="em">
        <xsl:choose>
            <xsl:when test="string-length(.) > 0 or node()">
                <xsl:apply-templates />
            </xsl:when>
            <xsl:otherwise>
                <xsl:text>&#160;</xsl:text>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:element>
</xsl:template>


<xsl:template match="div">

    <xsl:if test="@class or @id or @style or string-length(.) > 0 or node()">

        <xsl:element name="div">
            <xsl:for-each select="@*">
                <xsl:attribute name="{name()}">
                    <xsl:value-of select="." />
                </xsl:attribute>

                <xsl:attribute name="style">
                    <xsl:value-of select="." />             
                </xsl:attribute>
            </xsl:for-each>         

            <xsl:choose>
                <xsl:when test="string-length(.) > 0 or node()">
                    <xsl:apply-templates />
                </xsl:when>
                <xsl:otherwise>
                    <xsl:text>&#160;</xsl:text>
                </xsl:otherwise>
            </xsl:choose>

        </xsl:element>

    </xsl:if>

</xsl:template>

<xsl:template match="fieldset">

    <xsl:if test="@class or @id or @style or string-length(.) > 0 or node()">

        <xsl:element name="div">
            <xsl:for-each select="@*">
                <xsl:attribute name="{name()}">
                    <xsl:value-of select="." />
                </xsl:attribute>

                <xsl:attribute name="style">
                    <xsl:value-of select="." />
                </xsl:attribute>
            </xsl:for-each>

            <xsl:choose>
                <xsl:when test="string-length(.) > 0 or node()">
                    <xsl:apply-templates />
                </xsl:when>
                <xsl:otherwise>
                    <xsl:text>&#160;</xsl:text>
                </xsl:otherwise>
            </xsl:choose>

        </xsl:element>

    </xsl:if>

</xsl:template>

<xsl:template match="legend">

    <xsl:if test="@class or @id or @style or string-length(.) > 0 or node()">

        <xsl:element name="div">
            <xsl:for-each select="@*">
                <xsl:attribute name="{name()}">
                    <xsl:value-of select="." />
                </xsl:attribute>

                <xsl:attribute name="style">
                    <xsl:value-of select="." />
                </xsl:attribute>
            </xsl:for-each>

            <xsl:choose>
                <xsl:when test="string-length(.) > 0 or node()">
                    <xsl:apply-templates />
                </xsl:when>
                <xsl:otherwise>
                    <xsl:text>&#160;</xsl:text>
                </xsl:otherwise>
            </xsl:choose>

        </xsl:element>

    </xsl:if>

</xsl:template>

<xsl:template match="sup">
    <sup>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </sup>
</xsl:template>

<xsl:template match="font">
    <font>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}">
                <xsl:value-of select="." />
            </xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </font>
</xsl:template>

<xsl:template match="table">
    <table>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}">
                <xsl:value-of select="." />
            </xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </table>
</xsl:template>

<xsl:template match="tbody">
    <tbody>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}">
                <xsl:value-of select="." />
            </xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </tbody>
</xsl:template>

<xsl:template match="tr">
    <tr>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}">
                <xsl:value-of select="." />
            </xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </tr>
</xsl:template>

<xsl:template match="td">
    <td>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}">
                <xsl:value-of select="." />
            </xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </td>
</xsl:template>

<xsl:template match="b">
    <b>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}">
                <xsl:value-of select="." />
            </xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </b>
</xsl:template>

<xsl:template match="hr">
    <hr>
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}">
                <xsl:value-of select="." />
            </xsl:attribute>
        </xsl:for-each>
        <xsl:apply-templates />
    </hr>
</xsl:template>

</xsl:stylesheet>

2 个答案:

答案 0 :(得分:0)

这实际上并不能解决你的问题(我认为),但我会给它一个答案,因为它太长而不适合评论....

XSLT中存在相当多的重复。许多模板似乎遵循相同的模式。例如

<xsl:template match="h1"> 
    <h1> 
        <xsl:for-each select="@*"> 
            <xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute> 
        </xsl:for-each> 
        <xsl:apply-templates /> 
    </h1> 
</xsl:template> 

所有这一切都是在这种情况下复制 h1 元素,包括其属性,然后是子元素。

在这种情况下,没有必要有这么多单独的模板。可以有一个通用模板来处理这种情况。实际上,需要的是常见的XSLT设计模式,称为“身份转换”

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <xsl:output method="xml" indent="yes"/>

   <xsl:template match="@*|node()">
      <xsl:copy>
         <xsl:apply-templates select="@*|node()"/>
      </xsl:copy>
   </xsl:template>
</xsl:stylesheet>

就其本身而言,它会按原样复制您的XML,而不会进行任何更改。您只需要将其扩展到需要进行其他处理的其他模板,而不是仅仅输出一个未更改的元素(例如,在 span 的模板中,有额外的处理来添加样式属性)。 XSLT将优先考虑更具体的模板匹配(一个匹配特定名称的匹配),而不是上面显示的通用匹配。

所以,我建议删除XSLT中的大多数特定模板,包括匹配脚本 p 的模板,只需添加标识转换的通用模板匹配代替。实际上,您可能希望从基本身份转换开始,检查是否有效,并为每个需要进行额外处理的情况一次添加一个模板。

答案 1 :(得分:0)

首先,我确保script模板是产生输出的模板。要进行检查,您可以在开始class代码中添加虚拟<script>属性。

还尝试从模板中删除<xsl:apply-templates />,使其看起来像这样;

<xsl:template match="script">
    <script class="dummy">
        <xsl:for-each select="@*">
            <xsl:attribute name="{name()}">
                <xsl:value-of select="."/>
            </xsl:attribute>
        </xsl:for-each>
    </script>
</xsl:template>