Query on XT

Mallikarjuna Sangappa malliks at rocketmail.com
Fri Jul 9 17:55:37 BST 1999


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 at 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 at ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo at ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa at ic.ac.uk)





More information about the Xml-dev mailing list