mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-26 02:40:43 -06:00
9e1e1bea8a
It makes more sense in util as it is by and for the devs, not contributed by an external user for external use. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18627 57a11ea4-9604-0410-9ed3-97b8803252fd
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> |