mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-26 10:51:09 -06:00
25 lines
506 B
HTML
25 lines
506 B
HTML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
||
|
<!DOCTYPE xsl:stylesheet [
|
||
|
<!ENTITY tab "	">
|
||
|
<!ENTITY newl " ">
|
||
|
<!ENTITY space " ">
|
||
|
]>
|
||
|
|
||
|
<xsl:stylesheet
|
||
|
version="1.0"
|
||
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||
|
>
|
||
|
|
||
|
<xsl:output
|
||
|
method="text"
|
||
|
encoding="utf-8"
|
||
|
media-type="text/plain"
|
||
|
omit-xml-declaration="yes"
|
||
|
standalone="yes"
|
||
|
indent="no" />
|
||
|
|
||
|
<xsl:template match="/">
|
||
|
<xsl:value-of select="info/entry/commit/attribute::revision" />
|
||
|
</xsl:template>
|
||
|
</xsl:stylesheet>
|