6
6
doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
7
7
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" />
9
<xsl:template match="questions">
10
<xsl:apply-templates />
13
9
<xsl:template match="node()|@*">
15
11
<xsl:apply-templates select="@*|node()" />
19
<!-- Remove instructor notes -->
21
<xsl:template match="instructornote" />
23
<!-- Remove instructor sections -->
24
<xsl:template match="instructorsect" />
26
15
<!-- Remove answers -->
28
17
<xsl:template match="answer" />
19
<!-- Remove instructor notes -->
21
<xsl:template match="note">
22
<xsl:if test="@userlevel='instructor'">
24
<xsl:if test="not(@userlevel='instructor')">
25
<xsl:apply-templates/>
29
<xsl:template match="sect1">
30
<xsl:if test="@userlevel='instructor'">
32
<xsl:if test="not(@userlevel='instructor')">
34
<xsl:apply-templates />
39
<xsl:template match="subtitle">
41
<xsl:apply-templates select="@*|node()" />
45
<!-- Question and Answers -->
47
<xsl:template match="qandaset">
48
<xsl:apply-templates />
51
<xsl:template match="qandaentry">
52
<xsl:apply-templates />
55
<xsl:template match="question">
56
<formalpara><title>Question:</title>
57
<xsl:apply-templates />
61
<xsl:template match="answer">
62
<formalpara><title>Answer:</title></formalpara>