Advertisement
Guest User

Untitled

a guest
Jan 17th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.49 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" xmlns:foo="http://www.foo.org/" xmlns:bar="http://www.bar.org">
  3. <xsl:template match="/sss">
  4. <xsl:apply-templates select="survey/record/variable">
  5. <xsl:sort select="position/@start" data-type="number"/>
  6. </xsl:apply-templates>
  7. </xsl:template>
  8. <xsl:template match="survey/record/variable">
  9. <xsl:value-of select="name"/><xsl:text>,</xsl:text>
  10. </xsl:template>
  11. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement