Advertisement
Guest User

obrazek-obok-obrazka.xslt

a guest
Jan 19th, 2013
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  3.  
  4. <xsl:template match="/eQSL">
  5.  
  6. <xsl:for-each select="CallSign">
  7.  
  8. <xsl:for-each select="Band">
  9.  
  10. <xsl:for-each select="QSO">
  11.  
  12. <img>
  13. <xsl:attribute name="src">
  14. <xsl:value-of select="filename"/>
  15. </xsl:attribute>
  16. <xsl:attribute name="alt"><xsl:value-of select="callsign"/> ( <xsl:value-of select="qsodate"/> / <xsl:value-of select="mode"/> / <xsl:value-of select="band"/>)</xsl:attribute>
  17. </img>
  18.  
  19. </xsl:for-each>
  20. </xsl:for-each>
  21. </xsl:for-each>
  22.  
  23. <div>
  24. eQSL count : <xsl:value-of select="count(//QSO)"/>
  25. </div>
  26.  
  27. </xsl:template>
  28. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement