在XSLT 2.0中对表进行排序

时间:2014-05-22 09:09:29

标签: sorting xslt xslt-2.0

我有一个索引文件,其中包含要处理的xml文件列表:

<?xml version="1.0" encoding="UTF-8"?>
<list>
<part>
      <numberGroup format="1" start="1">
    <entry>
      <file>04.xml</file>
          <title>first file</title>
          <css>stylesheet.css</css>
    </entry>
    <entry>
        <file>05.xml</file>
            <title>second file</title>
            <css>stylesheet.css</css>
    </entry>
    <entry>
    <file>06.xml</file>
            <title>third file</title>
            <css>stylesheet.css</css>
        </entry>
        .... more files
    </numberGroup>
    .... more NumberGroups
  </part>
  ....more parts
</list>

每个文件01.xml等都有一个HTML样式的表,如下所示:

<table class='wl'>
<tr class='header'>
   <td><p>English</p></td>
   <td><p>French</p></td>
</tr>
<tr>
   <td><p>belly</p></td>
   <td><p>ventre</p></td>
</tr>
<tr>
   <td><p>leg</p></td>
   <td><p>jambe</p>/td>
</tr>
... etc
</table>

我想将所有表格(本例中为3个)合并为一个,所以我得到了一个竞争词汇。

到目前为止,我有这个样式表:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
   <xsl:result-document href="wl.xml">
       <xsl:text disable-output-escaping="yes">
&lt;!DOCTYPE html&gt;
       </xsl:text>
       <html xmlns:epub="http://www.idpf.org/2007/ops" lang="nl" xml:lang="nl">
    <head>
      <title>
        <xsl:value-of select="./title"/>
      </title>
      <xsl:apply-templates select="css"/>
        </head>
    <body>
    <table>
       <xsl:apply-templates select="//numberGroup[1]/entry">
       </xsl:apply-templates>
    </table>
    </body>
    </html>
  </xsl:result-document>
  </xsl:template>
  <xsl:template match="entry">
<xsl:apply-templates select="document(file)//table[@class='wl']/tr[not(contains(@class, 'header'))]"/>
</xsl:template>
<xsl:template match="tr">
     <xsl:copy-of select="."/>
</xsl:template>
</xsl:stylesheet>
除了排序之外,

根据需要合并。 如何在第一列上按字母顺序对生成的表进行排序?

1 个答案:

答案 0 :(得分:2)

替换

<xsl:apply-templates select="//numberGroup[1]/entry">
       </xsl:apply-templates>

<xsl:apply-templates select="document(//numberGroup[1]/entry/file)//table[@class='wl']/tr[not(contains(@class, 'header'))]">
  <xsl:sort select="td[1]" data-type="text"/>
       </xsl:apply-templates>

然后您可以删除entry元素的模板。