jcramalho

tps.xsl

Oct 6th, 2014
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.93 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3.    xmlns:xs="http://www.w3.org/2001/XMLSchema"
  4.    xmlns:xd="http://www.oxygenxml.com/ns/doc/xsl"
  5.    exclude-result-prefixes="xs xd"
  6.    version="1.0">
  7.    
  8.     <xsl:template match="trabalhos">
  9.         <table border="1">
  10.             <xsl:apply-templates/>
  11.         </table>
  12.     </xsl:template>
  13.    
  14.     <xsl:template match="grupo">
  15.         <tr>
  16.             <td>
  17.                 Grupo <xsl:number/>
  18.             </td>
  19.             <td>
  20.                 <table>
  21.                     <xsl:apply-templates select="aluno1|aluno2|aluno3"/>
  22.                 </table>  
  23.             </td>
  24.         </tr>
  25.     </xsl:template>
  26.    
  27.     <xsl:template match="aluno1|aluno2|aluno3">
  28.         <tr>
  29.             <td>
  30.                 <xsl:value-of select="."/>
  31.             </td>
  32.         </tr>
  33.     </xsl:template>
  34.    
  35. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment