Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,11 @@
|
|||
<xsl:if test="@attrib = 'foo'">...</xsl:if>
|
||||
<xsl:if test="position() != last()">...</xsl:if>
|
||||
<xsl:if test="not(false())">...</xsl:if>
|
||||
|
||||
<!-- Some XPath expressions must be escaped. -->
|
||||
<xsl:if test='contains(node, "stuff") and (position() > first())'>...</xsl:if>
|
||||
|
||||
<!-- The following two examples are synonymous because the test attribute is
|
||||
implicitly converted to boolean. -->
|
||||
<xsl:if test="boolean($expr)">...</xsl:if>
|
||||
<xsl:if test="$expr">...</xsl:if>
|
||||
Loading…
Add table
Add a link
Reference in a new issue