XSL以XHTML中的预定义顺序排列节点

时间:2011-05-17 19:41:41

标签: xslt xhtml

我需要使用XSL以特定的预定义顺序排列XHTML中的节点,保留节点内的所有其他转换。输入文件是:

<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
  <head> 
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> 
  </head> 

  <body class="hresume">

    <div id="sec 1">
      <div>
    text 1
    <span class="summary">position 1</span>
      </div>
    </div>

    <div id="sec 2">
      <div>
    text 2
    <span class="summary">position 2</span>
      </div>
    </div>

  </body> 
</html> 

XML转换:

<?xml version="1.0"?>

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

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

<!-- remove summary -->
<xsl:template match="xhtml:span[@class='summary']"/>

<!-- arrange nodes -->
<do-something match="id('sec 2')"/>
<do-something match="id('sec 1')"/>

</xsl:stylesheet>

预期结果只是交换“sec 1”和“sec 2”节点并删除“summary”位置。应该使用什么代替do-something

2 个答案:

答案 0 :(得分:3)

此转化

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 xmlns:x="http://www.w3.org/1999/xhtml"
 >
 <xsl:output omit-xml-declaration="yes" indent="yes"/>
 <xsl:strip-space elements="*"/>

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

 <xsl:template match=
  "*[x:div[@id='sec 1'] and x:div[@id='sec 2']]">
  <xsl:copy>
   <xsl:apply-templates select="@*"/>

   <xsl:variable name="vDivs" select="x:div"/>

   <xsl:apply-templates select="$vDivs[2]"/>
   <xsl:apply-templates select="$vDivs[1]"/>
  </xsl:copy>
 </xsl:template>
 <xsl:template match="x:span[@class='summary']"/>
</xsl:stylesheet>

应用于提供的XML文档

<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    </head>
    <body class="hresume">
        <div id="sec 1">
            <div>     text 1     
                <span class="summary">position 1</span>
            </div>
        </div>
        <div id="sec 2">
            <div>     text 2     
                <span class="summary">position 2</span>
            </div>
        </div>
    </body>
</html>

产生完全正确的结果

<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
   </head>
   <body class="hresume">
      <div id="sec 2">
         <div>     text 2     
        </div>
      </div>
      <div id="sec 1">
         <div>     text 1     
        </div>
      </div>
   </body>
</html>

请注意

  1. 通过按所需顺序指定两个单独的<xsl:apply-templates>指令来实现所需的特殊效果。

  2. 即使第二个元素位于第一个元素之前,也可以实现两个div元素之间的所需位置切换 - 结果始终是文档中第二个元素的位置订单现在是文件顺序中的第一个(两个)。

答案 1 :(得分:0)

此解决方案使用xsl:key并切换div,提供它们的任何顺序:

<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:x="http://www.w3.org/1999/xhtml"
    >
    <xsl:output omit-xml-declaration="yes" indent="yes"/>
    <xsl:strip-space elements="*"/>

    <xsl:key name="sec" match="x:body/x:div[@id]" use="@id"/>

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

    <xsl:template match="x:div[@id='sec 1']">
        <xsl:element name="{local-name()}" xmlns="http://www.w3.org/1999/xhtml">         
            <xsl:apply-templates select="key('sec','sec 2')/*|key('sec','sec 2')/@*"/>
        </xsl:element>
    </xsl:template>

    <xsl:template match="x:div[@id='sec 2']">
        <xsl:element name="{local-name()}" xmlns="http://www.w3.org/1999/xhtml">
            <xsl:apply-templates select="key('sec','sec 1')/*|key('sec','sec 1')/@*"/>
        </xsl:element>
    </xsl:template>

    <xsl:template match="x:div[@id='sec 2']/*">
        <xsl:element name="{local-name()}" xmlns="http://www.w3.org/1999/xhtml">
            <xsl:apply-templates select="node()|@*"/>
        </xsl:element>  
    </xsl:template>

    <xsl:template match="x:div[@id='sec 1']/*">
        <xsl:element name="{local-name()}" xmlns="http://www.w3.org/1999/xhtml">
            <xsl:apply-templates select="node()|@*"/>
        </xsl:element>  
    </xsl:template>

    <xsl:template match="x:span[@class='summary']"/>

</xsl:stylesheet>