diff options
author | Mike Gerwitz <gerwitm@lovullo.com> | 2016-08-23 11:23:04 -0400 |
---|---|---|
committer | Mike Gerwitz <gerwitm@lovullo.com> | 2016-08-23 11:23:04 -0400 |
commit | a6984c990912d57d980c8f955d77f2701510ffe7 (patch) | |
tree | 8449bb1a6191a91b2398e9ee7a4b64d30ab4399f /conf.xsl.in | |
parent | 183fed3ae10b9e68b5d50fb4ce3fc41877aed01f (diff) | |
download | tame-a6984c990912d57d980c8f955d77f2701510ffe7.tar.gz tame-a6984c990912d57d980c8f955d77f2701510ffe7.tar.bz2 tame-a6984c990912d57d980c8f955d77f2701510ffe7.zip |
Add TAME version output to conf.xsl
* conf.xsl.in (tame:version{,-major,-minor,-rev,-suffix}: Added.
* configure.ac (VERSION, MAJOR, MINOR, REV, SUFFIX): Added.
Diffstat (limited to 'conf.xsl.in')
-rw-r--r-- | conf.xsl.in | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/conf.xsl.in b/conf.xsl.in index 22ed9d8..c5fcde5 100644 --- a/conf.xsl.in +++ b/conf.xsl.in @@ -1,8 +1,8 @@ <?xml version="1.0"?> <!-- - General configuration + General configuration and version information - Copyright (C) 2015 LoVullo Associates, Inc. + Copyright (C) 2015, 2016 LoVullo Associates, Inc. This file is part of TAME. @@ -21,9 +21,23 @@ <http://www.gnu.org/licenses/>. --> <stylesheet version="2.0" - xmlns="http://www.w3.org/1999/XSL/Transform"> + xmlns="http://www.w3.org/1999/XSL/Transform" + xmlns:xs="http://www.w3.org/2001/XMLSchema" + xmlns:tame="http://www.lovullo.com/tame"> -<!-- hoxsl path is configured at build time --> -<import href="@HOXSL@/apply/thrush.xsl" /> + <variable name="tame:version" as="xs:string" + select="@VERSION@" /> + + <variable name="tame:version-major" as="xs:string" + select="@MAJOR@" /> + <variable name="tame:version-minor" as="xs:string" + select="@MINOR@" /> + <variable name="tame:version-rev" as="xs:string" + select="@REV@" /> + <variable name="tame:version-suffix" as="xs:string" + select="@SUFFIX@" /> + + <!-- hoxsl path is configured at build time --> + <import href="@HOXSL@/apply/thrush.xsl" /> </stylesheet> |