diff options
author | tlenz <thomas.lenz@egiz.gv.at> | 2017-06-27 10:38:31 +0200 |
---|---|---|
committer | tlenz <thomas.lenz@egiz.gv.at> | 2017-06-27 10:38:31 +0200 |
commit | d69e3b6fb1dec68c0142eda193d1302f5a1ea383 (patch) | |
tree | faa7d6422210f3320503ddf3d3b24152e049e80c /release-infos/handbook/clients/referencedData/src/main/webapp/XMLDocument.Para.xsl | |
parent | 997b70350b176d8e01ede2653785346555b6aca0 (diff) | |
parent | 25f28669519773054184d6695114f38c5da4e177 (diff) | |
download | moa-sig-d69e3b6fb1dec68c0142eda193d1302f5a1ea383.tar.gz moa-sig-d69e3b6fb1dec68c0142eda193d1302f5a1ea383.tar.bz2 moa-sig-d69e3b6fb1dec68c0142eda193d1302f5a1ea383.zip |
lokal merge
Merge branch 'nightlybuild' of https://gitlab.iaik.tugraz.at/egiz/moa-sig into nightlybuild
Diffstat (limited to 'release-infos/handbook/clients/referencedData/src/main/webapp/XMLDocument.Para.xsl')
-rw-r--r-- | release-infos/handbook/clients/referencedData/src/main/webapp/XMLDocument.Para.xsl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/release-infos/handbook/clients/referencedData/src/main/webapp/XMLDocument.Para.xsl b/release-infos/handbook/clients/referencedData/src/main/webapp/XMLDocument.Para.xsl new file mode 100644 index 0000000..11d6dd6 --- /dev/null +++ b/release-infos/handbook/clients/referencedData/src/main/webapp/XMLDocument.Para.xsl @@ -0,0 +1,19 @@ +<?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" xmlns="http://www.w3.org/1999/xhtml"> + <xsl:output encoding="UTF-8" method="xml" indent="yes"/> + <xsl:template match="/"> + <html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>HTML-Dokument</title> + </head> + <body> + <xsl:apply-templates/> + </body> + </html> + </xsl:template> + <xsl:template match="doc:Paragraph"> + <p> + <xsl:value-of select="child::text()"/> + </p> + </xsl:template> +</xsl:stylesheet> |