Replaced contents of skeleton svn_status.xsl with real content.

* Note: Column delimiter is back to four spaces due to XML/XSL not allowing control characters
This commit is contained in:
Jeremy Whitlock
2012-09-01 09:39:17 -06:00
committed by Allan Odgaard
parent df3da106e0
commit 52d321b510

View File

@@ -1 +1,20 @@
Hello world
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:template match="/">
<xsl:apply-templates select="/status/target"/>
</xsl:template>
<xsl:template match="/status/target/entry">
<xsl:value-of select="@path" />
</xsl:template>
<!-- Write out parseable format: FILE_PATH FILE_STATUS FILE_PROPS_STATUS -->
<xsl:template match="/status/target/entry">
<xsl:value-of select="@path"/>
<xsl:value-of select="' '"/>
<xsl:value-of select="wc-status/@item"/>
<xsl:value-of select="' '"/>
<xsl:value-of select="wc-status/@props"/>
</xsl:template>
</xsl:stylesheet>