[
Lists Home |
Date Index |
Thread Index
]
- From: Mallikarjuna Sangappa <malliks@rocketmail.com>
- To: xml-dev@ic.ac.uk
- Date: Fri, 9 Jul 1999 08:50:28 -0700 (PDT)
Hi,
I'm using XT to create a flat file from an XML
Document and XSLT stylesheet. Could anyone explain
the difference between the two implementations in a
XSLT stylesheet. Second implementation was writing to
flat file whereas the first was not. Both of them are
using internally a Java method which is not important
in the query.
First Implementation :
<!-- ASSIGNMENT_TYPE -->
<xsl:param-variable name='varASSIGNMENT_TYPE' expr =
'ASSIGNMENT_TYPE/@ASSIGNMENT_TYPE_VALUE'/>
<xsl:value-of select="varASSIGNMENT_TYPE"/>
<xsl:choose>
<xsl:when test="varASSIGNMENT_TYPE='Internal'">
<xsl:value-of
select="sample:padLeftjWithSpaces(' ', '1')"/>
</xsl:when>
<xsl:when test="varASSIGNMENT_TYPE='External'">
<xsl:value-of
select="sample:padLeftjWithSpaces('E', '1')"/>
</xsl:when>
</xsl:choose>
Second Implementation :
<!-- ASSIGNMENT_TYPE -->
<xsl:param-variable name='varASSIGNMENT_TYPE' expr
= 'ASSIGNMENT_TYPE/@ASSIGNMENT_TYPE_VALUE'/>
<xsl:choose>
<xsl:when test="$varASSIGNMENT_TYPE='Internal'">
<xsl:value-of
select="sample:padLeftjWithSpaces(' ', '1')"/>
</xsl:when>
<xsl:when test="$varASSIGNMENT_TYPE='External'">
<xsl:value-of
select="sample:padLeftjWithSpaces('E', '1')"/>
</xsl:when>
</xsl:choose>
Thanks in advance.
CU,
Malliks
_________________________________________________________
DO YOU YAHOO!?
Get your free @yahoo.com address at http://mail.yahoo.com
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
|