Advertisement
Guest User

Untitled

a guest
Nov 30th, 2015
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.48 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  3.  
  4.     <xsl:param name="styles" select="'../temp/style_step4.xml'" />
  5.  
  6.     <xsl:template match="/*">
  7.         <xsl:copy>
  8.             <xsl:copy-of select="@*"/>
  9.             <xsl:copy-of select="node()"/>
  10.             <xsl:copy-of select="(document($styles)//*[name() = 'Format' or name() = 'Strings'])[1]"/>
  11.         </xsl:copy>
  12.     </xsl:template>
  13.  
  14. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement