0

xml に埋め込まれた html を取り、それを html に変換する xsl ファイルがあります。私はこれを書いていませんし、xsl についても詳しく知りませんが、これは私の作業項目の小さな部分であるため、これを機能させる必要があります。

<script>空のタグをそのすぐ下にあるタグでレンダリングするバグを発見しました。ここに例があります...

これ:

<script type=”text/javascript” src=”…”&gt;</script>
<p>…&lt;/p>

このようにレンダリングします...

<script type=”text/javascript” src=”…”&gt;<p>…&lt;/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>
4

2 に答える 2

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は、上記の一般的なテンプレートよりも、より具体的なテンプレートの一致(特定の名前に一致するもの)を優先します。

したがって、スクリプトpに一致するものを含め、XSLT内の特定のテンプレートの大部分を削除し、代わりにID変換の一般的なテンプレート一致を追加することをお勧めします。実際、基本的なID変換から始めて、それが機能することを確認し、追加の処理が必要な場合ごとに、一度に1つのテンプレートを追加することをお勧めします。

于 2012-08-08T22:30:22.383 に答える