home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 October
/
Chip_2002-10_cd1.bin
/
firmy
/
Pohoda
/
Start
/
data1.cab
/
Pohoda_Files
/
Info
/
order.xsl
< prev
next >
Wrap
Extensible Markup Language
|
2002-05-27
|
954b
|
30 lines
<?xml version="1.0" encoding="Windows-1250"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
<xsl:apply-templates select="order"/>
</xsl:template>
<xsl:template match="@* | node()"><xsl:copy><xsl:apply-templates select="@* | node()"/></xsl:copy></xsl:template>
<xsl:template match="order">
<eform version="1.0">
<order version="1.1">
<xsl:apply-templates select="document"/>
<xsl:apply-templates select="orderItem"/>
<xsl:apply-templates select="supplier"/>
<xsl:apply-templates select="customer"/>
<xsl:apply-templates select="payment"/>
<xsl:apply-templates select="eformInfo"/>
</order>
</eform>
</xsl:template>
<xsl:template match="orderItem">
<xsl:copy><xsl:apply-templates select="@*"/><xsl:value-of/></xsl:copy>
</xsl:template>
<xsl:template match="@refIDS"><xsl:attribute name="code"><xsl:value-of/></xsl:attribute></xsl:template>
</xsl:stylesheet>