aboutsummaryrefslogtreecommitdiff
path: root/spss.slinterface/test/stylesheet.xsl
diff options
context:
space:
mode:
authorgregor <gregor@d688527b-c9ab-4aba-bd8d-4036d912da1d>2006-06-26 15:07:02 +0000
committergregor <gregor@d688527b-c9ab-4aba-bd8d-4036d912da1d>2006-06-26 15:07:02 +0000
commit8c2ceab55fa7c647cd835b9902d351c2b829d0a3 (patch)
tree652e647696ddbd0df505fe4134e5210903b69c39 /spss.slinterface/test/stylesheet.xsl
parente8dacd9cca968d40fae820b08488c7118f01583f (diff)
downloadmoa-id-spss-8c2ceab55fa7c647cd835b9902d351c2b829d0a3.tar.gz
moa-id-spss-8c2ceab55fa7c647cd835b9902d351c2b829d0a3.tar.bz2
moa-id-spss-8c2ceab55fa7c647cd835b9902d351c2b829d0a3.zip
Testanwendung überarbeitet (übersichtlicheres Layout, dynamische Generierung der enthaltenen Links).
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@723 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>