Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  2. <xsl:output indent="yes" encoding="UTF-8"/>
  3. <xsl:template match="/">
  4. <lista>
  5. <xsl:for-each select="lista/osoba">
  6. <xsl:element name="osoba">
  7. <xsl:attribute name="grupa">
  8. <xsl:value-of select="grupa/text()" />
  9. </xsl:attribute>
  10. <imie>
  11. <xsl:value-of select="imie/text()" />
  12. </imie>
  13. <nazwisko>
  14. <xsl:value-of select="nazwisko/text()" />
  15. </nazwisko>
  16. </xsl:element>
  17. </xsl:for-each>
  18. </lista>
  19. </xsl:template>
  20. <!-- definicje -->
  21. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement