diff options
author | pdanner <pdanner@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2007-09-04 10:29:42 +0000 |
---|---|---|
committer | pdanner <pdanner@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2007-09-04 10:29:42 +0000 |
commit | 9e71760a80a7b2cc25ac4700a5d6b6c4d5582eb8 (patch) | |
tree | 1970625f2c58a3a88be236fac129cef3cfd17659 /spss/handbook/clients/referencedData/XMLDocument.xsl | |
parent | 29866bdc9e8b2cab619cd151f32b036c35debbfe (diff) | |
download | moa-id-spss-9e71760a80a7b2cc25ac4700a5d6b6c4d5582eb8.tar.gz moa-id-spss-9e71760a80a7b2cc25ac4700a5d6b6c4d5582eb8.tar.bz2 moa-id-spss-9e71760a80a7b2cc25ac4700a5d6b6c4d5582eb8.zip |
re-arranged handbook project step1
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@980 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'spss/handbook/clients/referencedData/XMLDocument.xsl')
-rw-r--r-- | spss/handbook/clients/referencedData/XMLDocument.xsl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/spss/handbook/clients/referencedData/XMLDocument.xsl b/spss/handbook/clients/referencedData/XMLDocument.xsl new file mode 100644 index 000000000..85755c2e6 --- /dev/null +++ b/spss/handbook/clients/referencedData/XMLDocument.xsl @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:doc="urn:document"> + <xsl:output encoding="UTF-8" method="xml" indent="yes"/> + <xsl:template match="/doc:XMLDocument"> + <html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>HTML-Dokument</title> + </head> + <body> + <xsl:for-each select="doc:Paragraph"> + <p> + <xsl:value-of select="child::text()"/> + </p> + </xsl:for-each> + </body> + </html> + </xsl:template> +</xsl:stylesheet> |