langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
4
Task/Compound-data-type/XSLT/compound-data-type-1.xslt
Normal file
4
Task/Compound-data-type/XSLT/compound-data-type-1.xslt
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<point x="20" y="30"/>
|
||||
|
||||
<!-- context is a point node. The '@' prefix selects named attributes of the current node. -->
|
||||
<fo:block>Point = <xsl:value-of select="@x"/>, <xsl:value-of select="@y"/></fo:block>
|
||||
9
Task/Compound-data-type/XSLT/compound-data-type-2.xslt
Normal file
9
Task/Compound-data-type/XSLT/compound-data-type-2.xslt
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<circle>
|
||||
<point>
|
||||
<x>20</x>
|
||||
<y>30</y>
|
||||
</point>
|
||||
<radius>10</radius>
|
||||
</circle>
|
||||
|
||||
<!-- context is a circle node. Children are accessed using a path-like notation (hence the name "XPath"). -->
|
||||
Loading…
Add table
Add a link
Reference in a new issue