aboutsummaryrefslogtreecommitdiff
path: root/spss.slinterface/test/stylesheet.xsl
diff options
context:
space:
mode:
author(no author) <(no author)@d688527b-c9ab-4aba-bd8d-4036d912da1d>2006-04-10 08:46:26 +0000
committer(no author) <(no author)@d688527b-c9ab-4aba-bd8d-4036d912da1d>2006-04-10 08:46:26 +0000
commit8c769bae2d6d71677ce71a299d618957029ab4ac (patch)
treeb1968d4c980101a6e07ce9db37c962d8ad86d0eb /spss.slinterface/test/stylesheet.xsl
parent046acaa65129860b54d2ce782bdf174a0ebc9f6c (diff)
downloadmoa-id-spss-tags/Build.ID-1.3.1.tar.gz
moa-id-spss-tags/Build.ID-1.3.1.tar.bz2
moa-id-spss-tags/Build.ID-1.3.1.zip
This commit was manufactured by cvs2svn to create tagtags/Build.ID-1.3.1
'Build_ID-1_3_1'. git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/tags/Build_ID-1_3_1@704 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'spss.slinterface/test/stylesheet.xsl')
-rw-r--r--spss.slinterface/test/stylesheet.xsl29
1 files changed, 0 insertions, 29 deletions
diff --git a/spss.slinterface/test/stylesheet.xsl b/spss.slinterface/test/stylesheet.xsl
deleted file mode 100644
index 9af3e3cc6..000000000
--- a/spss.slinterface/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>