diff options
author | gregor <gregor@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2006-06-26 15:05:13 +0000 |
---|---|---|
committer | gregor <gregor@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2006-06-26 15:05:13 +0000 |
commit | a005df66c1a057ebac5ef1259ef8cde032fe61a5 (patch) | |
tree | fd87ce2ba94a07cf030c3e6363c3cd58cb53ba56 /spss.slinterface/res/resources/test/test.xsl | |
parent | fd2afe1d02a4e7a906f1ce441fe3ad20d7302ab9 (diff) | |
download | moa-id-spss-a005df66c1a057ebac5ef1259ef8cde032fe61a5.tar.gz moa-id-spss-a005df66c1a057ebac5ef1259ef8cde032fe61a5.tar.bz2 moa-id-spss-a005df66c1a057ebac5ef1259ef8cde032fe61a5.zip |
Verschoben von /res/resources bzw. /res/resources/stylesheets
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@721 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'spss.slinterface/res/resources/test/test.xsl')
-rw-r--r-- | spss.slinterface/res/resources/test/test.xsl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/spss.slinterface/res/resources/test/test.xsl b/spss.slinterface/res/resources/test/test.xsl new file mode 100644 index 000000000..6bb618072 --- /dev/null +++ b/spss.slinterface/res/resources/test/test.xsl @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xmlspysamplexml e:\cio\projekte\basismodule\slinterface\res\resources\test.xml?> +<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/> + <xsl:template match="/"> + <xsl:call-template name="test"> + <xsl:with-param name="param1">hugo</xsl:with-param> + </xsl:call-template> + </xsl:template> + <xsl:template name="test"> + <xsl:param name="param1">ursl</xsl:param> + <Ergebnis attri="{$param1}"></Ergebnis> + </xsl:template> +</xsl:stylesheet> |