~gumara/ubuntu-desktop-course/ubuntu-desktop-course-th-gumara

113 by Torsten Spindler
Adding missing questions.xsl
1
<?xml version='1.0'?>
2
3
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
4
5
    <xsl:output method="xml" indent="yes" encoding="utf-8"
6
   doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
7
   doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" />
8
9
    <xsl:template match="sect1">
10
	<chapter>
11
	<xsl:apply-templates/> 
12
	</chapter>
13
    </xsl:template>
14
15
    <xsl:template match="node()|@*">
16
        <xsl:copy>
17
           <xsl:apply-templates select="@*|node()" />
18
        </xsl:copy>
19
    </xsl:template>
20
21
</xsl:stylesheet>