blob: 7b69df65f84606baa8d17d588e8777c2223e603a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fo="http://www.w3.org/1999/XSL/Format"
version="1.1">
<!-- $Id$ -->
<!--
<xsl:template match="comment()">
<xsl:if test="contains(., '$Id: root.xsl')">
<xsl:text>Root
</xsl:text>
<xsl:text>=====
</xsl:text>
<xsl:text>
</xsl:text>
<xsl:text>The attribue sets for the root elements, inlcuding document. These 
</xsl:text>
<xsl:text>attributes control the page sequences.
</xsl:text>
<xsl:text>
</xsl:text>
</xsl:if>
<xsl:if test="contains(., '$Id: option_list.xsl')">
<xsl:text>
option list as list
======================
Since an option list can be rendered as either a traditonal list, or a
definition list, there are two sets of attribute sets. These attribute sets
are used for the options list when it is rendered as a list.
</xsl:text>
</xsl:if>
</xsl:template>
-->
</xsl:stylesheet>
|