87.2.3
by Torsten Spindler
Added new stylesheets, corrected lesson 1 |
1 |
<?xml version='1.0'?>
|
92
by Torsten Spindler
Fixes and new stylesheet for instructor notes and answers, updated makefile |
2 |
|
87.2.3
by Torsten Spindler
Added new stylesheets, corrected lesson 1 |
3 |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> |
92
by Torsten Spindler
Fixes and new stylesheet for instructor notes and answers, updated makefile |
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 |
||
112.1.1
by Torsten Spindler
Transformed Introduction to be like a real chapter with sections, added instructorsect tag |
9 |
<xsl:template match="instructorsect"> |
10 |
<xsl:apply-templates/> |
|
11 |
</xsl:template>
|
|
12 |
||
87.2.3
by Torsten Spindler
Added new stylesheets, corrected lesson 1 |
13 |
<xsl:template match="instructornote"> |
92
by Torsten Spindler
Fixes and new stylesheet for instructor notes and answers, updated makefile |
14 |
<note>
|
15 |
<xsl:apply-templates/> |
|
16 |
</note>
|
|
17 |
</xsl:template>
|
|
18 |
||
86.2.7
by Torsten Spindler
Updte to styles |
19 |
<xsl:template match="questions"> |
20 |
<xsl:apply-templates /> |
|
21 |
</xsl:template>
|
|
22 |
||
92
by Torsten Spindler
Fixes and new stylesheet for instructor notes and answers, updated makefile |
23 |
<xsl:template match="answer"> |
24 |
<para>
|
|
25 |
<xsl:apply-templates/> |
|
26 |
</para>
|
|
27 |
</xsl:template>
|
|
28 |
||
29 |
<xsl:template match="node()|@*"> |
|
30 |
<xsl:copy> |
|
31 |
<xsl:apply-templates select="@*|node()" /> |
|
32 |
</xsl:copy>
|
|
33 |
</xsl:template>
|
|
34 |
||
87.2.3
by Torsten Spindler
Added new stylesheets, corrected lesson 1 |
35 |
</xsl:stylesheet>
|