Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  4. xmlns:functx="http://www.functx.com"
  5. xmlns:xs="http://www.w3.org/2001/XMLSchema"
  6. version="2.0">
  7.  
  8. <xsl:output method="xml" indent="yes" />
  9.  
  10. <xsl:template match="legi2">
  11. <xsl:copy>
  12. <xsl:apply-templates select="utas" />
  13. </xsl:copy>
  14. </xsl:template>
  15.  
  16. <xsl:template match="utas">
  17. <xsl:copy>
  18. <xsl:copy-of select="record" />
  19. </xsl:copy>
  20. </xsl:template>
  21. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement