Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 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. version="1.0">
  4.  
  5. <xsl:template match="/">
  6. <h1>Zespoly</h1>
  7. <xsl:apply-templates select="./ZESPOLY/ROW"/>
  8. <xsl:call-template name="cos"/>
  9. </xsl:template>
  10.  
  11. <xsl:template match="ROW">
  12. <p>
  13. <xsl:value-of select="position()"/>
  14. .
  15. <xsl:value-of select=".//NAZWA"/>
  16. </p>
  17. </xsl:template>
  18.  
  19. <xsl:template name="cos">
  20. <xsl:for-each select="//ROW">
  21. <p>
  22. <h2><xsl:value-of select=".//NAZWA"/></h2>
  23. <h2><xsl:value-of select=".//ADRES"/></h2>
  24. </p>
  25. </xsl:for-each>
  26. </xsl:template>
  27.  
  28. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement