如何在xslt中设计一个模板,根据某些条件添加强标签

时间:2012-07-10 13:15:11

标签: xslt xslt-1.0

我输入了

形式的xml
<content xml:lang="en" xmlns:w="http://www.w.com/sch/W">
 <w:firstRowHeader>true</w:firstRowHeader>
 <w:firstColumnHeader>true</w:firstColumnHeader>
 <w:customTable>
  <w:tableContent>
   <w:row>
    <w:cell>
     <w:spanInfo backgroundColor="Yellow" columnWidth="5" isRowHeader="true"/>
     <text>ghnmghmg</text>
    </w:cell>
    <w:cell>
     <w:spanInfo backgroundColor="Yellow" isRowHeader="false"/>
     <text>ghmhgmgm</text>
    </w:cell>
   </w:row>
   <w:row>
    <w:cell>
     <w:spanInfo backgroundColor="Yellow" columnWidth="5" isRowHeader="false"/>
     <text>vj</text>
    </w:cell>
    <w:cell>
     <w:spanInfo columnWidth="5" isRowHeader="true"/>
     <text>mm</text>
    </w:cell>
   </w:row>
  </w:tableContent>
 </w:customTable>
</content>

这需要转换为xml,其中:

  1. w:tableContent映射到tablecontent和
  2. 然后在tablecontent标签'table'下创建'tbody'标签
  3. w:行映射到tr标记
  4. w:单元格映射到td标记
  5. 和条件相似
    1. 如果w:row中的第一个w:cell元素的属性isRowHeader为“true”,则其各自的'tr'标记下的每个'td'元素应包含'strong'标记并忽略第二个w:cell的isRowHeader < / LI>
    2. 如果w:firstRowHeader为'true',则转换后的表格应该以粗体显示第1行文本,即第1行表格中的每个'td'标记应包含'strong'标记
    3. 如果w:firstColumnHeader为'true',则转换后的表格应该以粗体显示第一列文本,即每个tr标签的第一个'td'标签应该包含'strong'标签
  6. 已转换的xml:

    <content>
     <tablecontent>
      <table cellspacing="1" cellpadding="1" border="1" style="WIDTH: 100%" title="Title"  xmlns="http://www.w3.org/1999/xhtml">
       <tbody>
        <tr>
         <td style="BACKGROUND-COLOR: Yellow; WIDTH: 5%"><strong>ghnmghmg</strong></td>
         <td style="BACKGROUND-COLOR: Yellow"><strong>ghmhgmgm</strong></td>
        </tr>
        <tr>
         <td style="BACKGROUND-COLOR: Yellow; WIDTH: 5%">vj</td>
         <td style="WIDTH: 5%">mm</td>
        </tr>
       </tbody>
      </table>
     </tablecontent>
    </content>
    

    这是我尝试的xslt模板,但无法弄清楚如何在其中实现这些“强”标签...

    XSLT:

    <xsl:template match="w:tableContent">
    <xsl:variable name="var3" select="../w:firstRowHeader"/>
    <xsl:variable name="var4" select="../w:firstColumnHeader"/>
     <tablecontent>
      <table cellspacing="1" cellpadding="1" border="1" style="WIDTH: 100%" title="Title" xmlns="http://www.w3.org/1999/xhtml" >
       <tbody>
        <xsl:for-each select="child::*">
         <xsl:choose>
          <xsl:when test="name()='w:row'">
           <tr>
           <xsl:for-each select="child::*">
            <xsl:choose>
             <xsl:when test="name()='w:cell'">
              <td>
               <xsl:for-each select="child::*">
                <xsl:choose>
                 <xsl:when test="name()='w:spanInfo'">
                  <xsl:variable name="var8" select="@backgroundColor" />
                  <xsl:variable name="var9" select="@columnWidth" />
                  <xsl:variable name="var10" select="@isRowHeader" />
                  <xsl:if test="$var8!='' or $var9!=''">
                   <xsl:attribute name="style">
                    <xsl:if test="$var8!='' and $var9!=''">
                     <xsl:value-of select="concat('BACKGROUND-COLOR: ',$var8,'; WIDTH: ',$var9,'%')" />
                    </xsl:if>
                    <xsl:if test="$var8!='' and not($var9)">
                     <xsl:value-of select="concat('BACKGROUND-COLOR: ',$var8)" />
                    </xsl:if>
                    <xsl:if test="not($var8) and $var9!=''">
                     <xsl:value-of select="concat('WIDTH: ',$var9,'%')" />
                    </xsl:if>
                 </xsl:when>
                 <xsl:when test="name()='text'">
                  <xsl:if test="../w:spanInfo/@isRowHeader='true'">
                   <strong><xsl:value-of select="." /></strong>
                  </xsl:if>
                  <xsl:if test="../w:spanInfo/@isRowHeader!='true' or not(../w:spanInfo/@isRowHeader) ">
                   <xsl:value-of select="." />
                  </xsl:if>
                 </xsl:when>
                </xsl:choose>
               </xsl:for-each>
              </td> 
             </xsl:when>
            </xsl:choose>
           </xsl:for-each> 
          </tr>
         </xsl:when>
        </xsl:choose>
       </xsl:for-each>
      </tbody>
     </table>
     </tablecontent>
    </xsl:template>
    

    但是上面的模板为单元格添加了“强”标签,只有w:spanInfo的'isRowHeader'属性为'true'。但是我要求将“强”标记添加到第二个单元格内容中,而不管其w:spanInfo的'isRowHeader'属性值,如果第一个单元已经将'isRowHeader'属性设置为'true',则提供。

1 个答案:

答案 0 :(得分:1)

这个XSLT 1.0样式表...

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:w="http://www.w.com/sch/W">
<xsl:output method="xml" indent="yes"/>

<xsl:template match="/">
 <content>
   <xsl:apply-templates select="*/*/w:tableContent"/>
 </content>
</xsl:template>

<xsl:template match="w:tableContent">
 <table cellspacing="1" cellpadding="1" border="1" style="WIDTH: 100%" title="Title"  xmlns="http://www.w3.org/1999/xhtml">
  <tbody>
   <xsl:apply-templates select="w:row" /> 
  </tbody>
 </table>  
</xsl:template>

<xsl:template match="w:row">
 <tr>
  <xsl:apply-templates select="w:cell" /> 
 </tr>  
</xsl:template>

<xsl:template match="w:cell">
 <xsl:variable name="style">
  <xsl:if test="w:spanInfo/@backgroundColor">
   <xsl:value-of select="concat('BACKGROUND-COLOR: ',w:spanInfo/@backgroundColor)" /> 
  </xsl:if>
  <xsl:if test="w:spanInfo/@columnWidth">
   <xsl:if test="w:spanInfo/@backgroundColor">
    <xsl:value-of select="'; '" /> 
   </xsl:if>
   <xsl:value-of select="concat('WIDTH: ',w:spanInfo/@columnWidth,'%')" /> 
  </xsl:if>
 </xsl:variable>  
 <td>
  <xsl:if test="$style">
   <xsl:attribute name="style"><xsl:value-of select="$style" /></xsl:attribute> 
  </xsl:if>  
  <xsl:apply-templates select="text" />
 </td>
</xsl:template>

<xsl:template match="w:cell/text[
    not( ../../preceding-sibling::w:row) and (/*/w:firstRowHeader='true')
               or
    not( ../preceding-sibling::w:cell) and (/*/w:firstColumnHeader='true')
               or
    (../preceding-sibling::w:cell[last()]/w:spaninfo/@isRowHeader='true')
    ]">
 <strong><xsl:call-template name="default-rendering-of-text" /></strong>     
</xsl:template>

<xsl:template match="text" name="default-rendering-of-text">
 <xsl:value-of select="." />    
</xsl:template>

</xsl:stylesheet>

......应该符合你的规则。您为粗体/强渲染设置的3个条件通过文本元素的匹配条件的谓词(在样式表的末尾附近)明显地显而易见。通过避免不必要的xsl:for-each,我们可以使用更简单,更模块化和更易读的模板解决方案。