Advertisement
Guest User

Untitled

a guest
May 26th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet version="2.0"
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fn="http://www.w3.org/2005/02/xpath-functions"
  4. xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:p="http://www.dei.isep.ipp.pt/lprog">
  5.  
  6.  
  7. <xsl:output method="text" indent="yes" />
  8. <xsl:template match="/">
  9.  
  10. <head>
  11. <title>Gestão de Máquinas de Venda automática</title>
  12. </head>
  13.  
  14. <body>
  15. <div>
  16. <xsl:apply-templates select="Maquina" />
  17. </div>
  18. </body>
  19.  
  20. </xsl:template>
  21.  
  22. <xsl:template match="Maquina">
  23. <xsl:apply-templates select="Maquina" />
  24. </xsl:template>
  25.  
  26. <xsl:template match="Maquina" >
  27. <div>
  28. Maquina - <xsl:value-of select="@IDMaquina"/>
  29. <xsl:apply-templates select="LocalizacaoMaquina"/>
  30. <xsl:apply-templates select="CalendarioReposicao"/>
  31. </div>
  32. </xsl:template>
  33.  
  34. <xsl:template match="caixa">
  35. LocalizacaoMaquina<br/>
  36.  
  37. <xsl:value-of select="LocalizacaoMaquina"/><br/>
  38.  
  39. Produtos-<xsl:value-of select="produto"/><br/>
  40. Preço-<xsl:value-of select="preco"/><br/>
  41.  
  42. </xsl:template>
  43.  
  44. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement