diff options
author | Mike Gerwitz <gerwitm@lovullo.com> | 2016-08-24 09:43:05 -0400 |
---|---|---|
committer | Mike Gerwitz <gerwitm@lovullo.com> | 2016-08-24 12:38:00 -0400 |
commit | ff01f39c1e8c9b9549d884a0db1f9a74799cf37e (patch) | |
tree | 35978db88a8d385250b1b47ad05966e19516373d /src/current/c1map/transform.xsl | |
parent | 6c0aa54bd1b7b49d736f0db3a8f48b7aa90b3b65 (diff) | |
download | tame-ff01f39c1e8c9b9549d884a0db1f9a74799cf37e.tar.gz tame-ff01f39c1e8c9b9549d884a0db1f9a74799cf37e.tar.bz2 tame-ff01f39c1e8c9b9549d884a0db1f9a74799cf37e.zip |
Liberate current implementation of "Calc DSL"
(Copyright headers will be added in the next commit; these are the
original files, unaltered in any way.)
The internal project name at LoVullo is simply "Calc DSL". This
liberates the entire thing. If anything was missed, I'll be added
later.
To continue building at LoVullo with this move, symlinks are used for
the transition; this is the exact code that is used in production.
There is a lot here---over 25,000 lines. Much of it is in disarray from
the environment surrounding its development, but it does work well for
what it was intended to do.
(LoVullo folks: fork point is 65723a0 in calcdsl.git.)
Diffstat (limited to 'src/current/c1map/transform.xsl')
-rw-r--r-- | src/current/c1map/transform.xsl | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/current/c1map/transform.xsl b/src/current/c1map/transform.xsl new file mode 100644 index 0000000..8793648 --- /dev/null +++ b/src/current/c1map/transform.xsl @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + Transforms values +--> +<xsl:stylesheet version="2.0" + xmlns:c1="http://www.epic-premier.com/XMLSchema" + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:lvm="http://www.lovullo.com/rater/map/c1" + xmlns:lvmp="http://www.lovullo.com/rater/map/c1/pp"> + + +<xsl:template match="lvmp:var[ @transform='proper-case' ]" priority="5" + mode="lvmp:transform"> + + <xsl:param name="value" /> + + <xsl:text>ucwords(strtolower(</xsl:text> + <xsl:copy-of select="$value" /> + <xsl:text>))</xsl:text> +</xsl:template> + + + +<xsl:template match="lvmp:var[ not( @transform ) or @transform='' ]" + mode="lvmp:transform" priority="3"> + + <xsl:param name="value" /> + + <!-- no transformation; do nothing --> + <xsl:copy-of select="$value" /> +</xsl:template> + + +<xsl:template match="lvmp:var" mode="lvmp:transform" priority="2"> + <xsl:message terminate="yes"> + <xsl:text>error: unknown transformation `</xsl:text> + <xsl:value-of select="@transform" /> + <xsl:text>' for `</xsl:text> + <xsl:value-of select="@name" /> + <xsl:text>'</xsl:text> + </xsl:message> +</xsl:template> + + +<xsl:template match="lvmp:*" mode="lvmp:transform" priority="1"> + <xsl:message terminate="yes"> + <xsl:text>internal error: unexpected node for transformation: </xsl:text> + <xsl:copy-of select="." /> + </xsl:message> +</xsl:template> + +</xsl:stylesheet> + |