aboutsummaryrefslogtreecommitdiff
path: root/spss.slinterface/pages/test/stylesheet.xsl
diff options
context:
space:
mode:
author(no author) <(no author)@d688527b-c9ab-4aba-bd8d-4036d912da1d>2007-08-02 14:35:31 +0000
committer(no author) <(no author)@d688527b-c9ab-4aba-bd8d-4036d912da1d>2007-08-02 14:35:31 +0000
commit33e7890166717f636014aa2c883083d8fc1b4ee8 (patch)
treeaa2295bd6540a04ea24915958e0260e5c0bd9d65 /spss.slinterface/pages/test/stylesheet.xsl
parent86c1bd9b1a07d8c875b5304e78a5c75e9edecde7 (diff)
downloadmoa-id-spss-33e7890166717f636014aa2c883083d8fc1b4ee8.tar.gz
moa-id-spss-33e7890166717f636014aa2c883083d8fc1b4ee8.tar.bz2
moa-id-spss-33e7890166717f636014aa2c883083d8fc1b4ee8.zip
This commit was manufactured by cvs2svn to create tagtags/Build-SPSS-1_4_0
'Build-SPSS-1_4_0'. git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/tags/Build-SPSS-1_4_0@898 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'spss.slinterface/pages/test/stylesheet.xsl')
-rw-r--r--spss.slinterface/pages/test/stylesheet.xsl29
1 files changed, 0 insertions, 29 deletions
diff --git a/spss.slinterface/pages/test/stylesheet.xsl b/spss.slinterface/pages/test/stylesheet.xsl
deleted file mode 100644
index 9af3e3cc6..000000000
--- a/spss.slinterface/pages/test/stylesheet.xsl
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?xmlspysamplexml e:\cio\projekte\erecht\beispiele\xmlDokument.xml?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:inst="urn:instance">
- <xsl:output encoding="UTF-8" method="xml" indent="yes"/>
- <xsl:template match="/inst:XMLDarstellung">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>HTML-Darstellung</title>
- </head>
- <body>
- <p>
- <xsl:for-each select="child::node()">
- <xsl:choose>
- <xsl:when test="./self::text()">
- <xsl:value-of select="."/>
- </xsl:when>
- <xsl:when test="./self::inst:Bild">
- <img>
- <xsl:attribute name="src"><xsl:value-of select="./@Reference"/></xsl:attribute>
- <xsl:attribute name="alt">alternative text</xsl:attribute>
- </img>
- </xsl:when>
- </xsl:choose>
- </xsl:for-each>
- </p>
- </body>
- </html>
- </xsl:template>
-</xsl:stylesheet>