mirror of
https://github.com/textmate/textmate.git
synced 2026-01-21 04:38:13 -05:00
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:
committed by
Allan Odgaard
parent
df3da106e0
commit
52d321b510
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user