2011-08-05 04:25:34 -05:00
|
|
|
X:stylesheet {
|
2011-09-05 04:32:00 -05:00
|
|
|
|
|
|
|
X:template = "directive" {
|
|
|
|
<hr/>
|
|
|
|
<a name="{@name}"/>
|
|
|
|
<!-- <center><h4> !{@name} </h4></center> -->
|
|
|
|
!! "syntax";
|
|
|
|
!! "default";
|
|
|
|
!! "context";
|
|
|
|
X:if "(@appeared-in)" {
|
|
|
|
<strong>appeared in version</strong>: !{@appeared-in}
|
|
|
|
}
|
|
|
|
!! "para";
|
|
|
|
}
|
|
|
|
|
|
|
|
X:template = "syntax" {
|
|
|
|
X:if "position() = 1" {
|
|
|
|
<strong>syntax</strong>:
|
|
|
|
} else {
|
|
|
|
<code>       </code>
|
|
|
|
}
|
|
|
|
<code> !!; </code> <br/>
|
|
|
|
}
|
|
|
|
|
|
|
|
X:template = "default" {
|
|
|
|
<strong>default</strong>:
|
|
|
|
X:if "count(text()) = 0" {
|
|
|
|
<strong>none</strong>
|
|
|
|
} else {
|
|
|
|
<code> !!; </code>
|
|
|
|
}
|
|
|
|
<br/>
|
|
|
|
}
|
|
|
|
|
|
|
|
X:template = "context" {
|
|
|
|
X:if "position() = 1" {
|
|
|
|
<strong>context</strong>:
|
|
|
|
}
|
|
|
|
X:if "count(text()) = 0" {
|
|
|
|
<strong>any</strong>
|
|
|
|
} else {
|
|
|
|
<code> !!; </code>
|
|
|
|
}
|
|
|
|
X:if "position() != last()" {
|
|
|
|
X:text{, }
|
|
|
|
} else {
|
|
|
|
<br/>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-05 04:25:34 -05:00
|
|
|
}
|