mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-25 02:10:36 -06:00
31a79474df
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@21214 57a11ea4-9604-0410-9ed3-97b8803252fd
98 lines
3.8 KiB
XML
98 lines
3.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
gnc2xea.xsl: an XSLT style sheet to create an account
|
|
hierarchy template from an (uncompressed) GnuCash file.
|
|
|
|
Copyright (C) 2011 Florian Haas <f.g.haas@gmx.net>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2 of
|
|
the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, contact:
|
|
|
|
Free Software Foundation Voice: +1-617-542-5942
|
|
51 Franklin Street, Fifth Floor Fax: +1-617-542-2652
|
|
Boston, MA 02110-1301, USA gnu@gnu.org
|
|
-->
|
|
<xsl:stylesheet version="1.0"
|
|
xmlns="http://www.gnucash.org/XML/"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:act="http://www.gnucash.org/XML/act"
|
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
|
xmlns:book="http://www.gnucash.org/XML/book"
|
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
|
xmlns:job="http://www.gnucash.org/XML/job"
|
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
|
xmlns:order="http://www.gnucash.org/XML/order"
|
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
|
xmlns:price="http://www.gnucash.org/XML/price"
|
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
|
xmlns:split="http://www.gnucash.org/XML/split"
|
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
|
<xsl:output method="xml" encoding="utf-8" indent="yes"/>
|
|
|
|
<xsl:param name="title">
|
|
<xsl:message>Please set a title for your account hierarchy by passing in the "title" parameter.</xsl:message>
|
|
</xsl:param>
|
|
<xsl:param name="short-description">
|
|
<xsl:message>Please set a short description for your account hierarchy by passing in the "short-description" parameter.</xsl:message>
|
|
</xsl:param>
|
|
|
|
<xsl:param name="long-description">
|
|
<xsl:message>Please set a long description for your account hierarchy by passing in the "long-description" parameter.</xsl:message>
|
|
</xsl:param>
|
|
|
|
<xsl:template match="/">
|
|
<gnc-account-example>
|
|
<gnc-act:title>
|
|
<xsl:value-of select="$title"/>
|
|
</gnc-act:title>
|
|
<gnc-act:short-description>
|
|
<xsl:value-of select="$short-description"/>
|
|
</gnc-act:short-description>
|
|
<gnc-act:long-description>
|
|
<xsl:value-of select="$long-description"/>
|
|
</gnc-act:long-description>
|
|
<gnc-act:exclude-from-select-all>1</gnc-act:exclude-from-select-all>
|
|
<xsl:apply-templates/>
|
|
</gnc-account-example>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="gnc-v2|gnc:book">
|
|
<xsl:apply-templates/>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="gnc:account">
|
|
<xsl:copy-of select="."/>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="*"/>
|
|
|
|
</xsl:stylesheet>
|