Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1329 → Rev 1330

/mozilla/common/deploy/meta.xsl
0,0 → 1,14
<?xml version="1.0"?>
 
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" />
 
<xsl:template match="/meta/*">
<xsl:text>export META_</xsl:text>
<xsl:copy-of select="local-name(.)" />
<xsl:text>=</xsl:text>
<xsl:value-of select="." />
<xsl:text>&#10;</xsl:text>
</xsl:template>
<xsl:template match="text()|@*" />
</xsl:stylesheet>