Advertisement
Guest User

Untitled

a guest
Apr 21st, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  3. <xsl:template match='/ciclo'>
  4. <html>
  5. <head>
  6. <title>Actividad 6_1</title>
  7. </head>
  8. <body>
  9. <h2><xsl:value-of select='titulo'/></h2>
  10.  
  11. <h2><xsl:value-of select='subtitulo'/></h2>
  12. <h2>Solución:</h2>
  13. <xsl:apply-templates select='alumnos' />
  14. </body>
  15. </html>
  16. </xsl:template>
  17. <xsl:template match='alumnos'>
  18.  
  19. <xsl:apply-templates select='alumno'>
  20. <xsl:sort select='procedencia' data-type='text' order='descending' />
  21. </xsl:apply-templates>
  22.  
  23. </xsl:template>
  24. <xsl:template match='alumno'>
  25.  
  26. <xsl:choose>
  27.  
  28. <xsl:when test="procedencia = 'Universidad'">
  29. <h3>Universidad</h3>
  30. <b><xsl:value-of select='nombre' /></b>
  31. <i><xsl:value-of select='apellidos' /></i>
  32. <br/>
  33. </xsl:when>
  34.  
  35.  
  36.  
  37. </xsl:choose>
  38. </xsl:template>
  39. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement