diff options
author | gregor <gregor@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2004-08-09 14:37:19 +0000 |
---|---|---|
committer | gregor <gregor@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2004-08-09 14:37:19 +0000 |
commit | 888ee665c0a6b02124344fcd40889c0caebe3ce6 (patch) | |
tree | 0d852512fec9ac6dc0c57f9c23514bc2365a81cf /spss.handbook | |
parent | eb03228d316d9b19e870f761a72c524f2ed3369f (diff) | |
download | moa-id-spss-888ee665c0a6b02124344fcd40889c0caebe3ce6.tar.gz moa-id-spss-888ee665c0a6b02124344fcd40889c0caebe3ce6.tar.bz2 moa-id-spss-888ee665c0a6b02124344fcd40889c0caebe3ce6.zip |
Referenzierte Daten der Beispielrequests des Handbuchs erstellt.
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@168 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'spss.handbook')
6 files changed, 45 insertions, 0 deletions
diff --git a/spss.handbook/clients/common/referencedData/Text.b64 b/spss.handbook/clients/common/referencedData/Text.b64 new file mode 100644 index 000000000..0f4636b9a --- /dev/null +++ b/spss.handbook/clients/common/referencedData/Text.b64 @@ -0,0 +1 @@ +RGllc2UgRGF0ZW4gd2FyZW4gYmFzZTY0IGtvZGllcnQu
\ No newline at end of file diff --git a/spss.handbook/clients/common/referencedData/Text.txt b/spss.handbook/clients/common/referencedData/Text.txt new file mode 100644 index 000000000..3a75c06b3 --- /dev/null +++ b/spss.handbook/clients/common/referencedData/Text.txt @@ -0,0 +1 @@ +Diese Daten sind reiner Text.
\ No newline at end of file diff --git a/spss.handbook/clients/common/referencedData/XMLDocument.xml b/spss.handbook/clients/common/referencedData/XMLDocument.xml new file mode 100644 index 000000000..1c48dce36 --- /dev/null +++ b/spss.handbook/clients/common/referencedData/XMLDocument.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<doc:XMLDocument xmlns:doc="urn:document"> + <doc:Paragraph>Ich bin der erste Absatz in diesem Dokument.</doc:Paragraph> + <doc:Paragraph ParaId="Para2">Und ich bin der zweite Absatz in diesem Dokument. +Ich habe weiters ein eigenens ID-Attribut bekommen.</doc:Paragraph> +</doc:XMLDocument> diff --git a/spss.handbook/clients/common/referencedData/XMLDocument.xsd b/spss.handbook/clients/common/referencedData/XMLDocument.xsd new file mode 100644 index 000000000..186473676 --- /dev/null +++ b/spss.handbook/clients/common/referencedData/XMLDocument.xsd @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<xs:schema targetNamespace="urn:document" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="urn:document" elementFormDefault="qualified" attributeFormDefault="unqualified">
+ <xs:element name="XMLDocument">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element name="Paragraph" maxOccurs="unbounded">
+ <xs:complexType mixed="true">
+ <xs:attribute name="ParaId" type="xs:ID" use="optional"/>
+ </xs:complexType>
+ </xs:element>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+</xs:schema>
diff --git a/spss.handbook/clients/common/referencedData/XMLDocument.xsl b/spss.handbook/clients/common/referencedData/XMLDocument.xsl new file mode 100644 index 000000000..2de3d3fde --- /dev/null +++ b/spss.handbook/clients/common/referencedData/XMLDocument.xsl @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<?xmlspysamplexml e:\cio\projekte\basismodule\wartung\projekt\spss.handbook\clients\common\referencedData\XMLDocument.xml?> +<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> diff --git a/spss.handbook/clients/common/referencedData/XMLDocumentRef.xsl b/spss.handbook/clients/common/referencedData/XMLDocumentRef.xsl new file mode 100644 index 000000000..c70d06e7d --- /dev/null +++ b/spss.handbook/clients/common/referencedData/XMLDocumentRef.xsl @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> + <xsl:include href="http://localhost:8080/referencedData/XMLDocument.xsl"/> +</xsl:stylesheet> |