Re: [xsl] OR in test

Subject: Re: [xsl] OR in test
From: "Vasu Chakkera" <vasucv@xxxxxxxxxxx>
Date: Thu, 04 Jul 2002 13:11:35 +0000
but it is not working .i want to know that is it wrong to use
or(|) in test.if yes then what should be the right way. and what

there are two things which i wud like to mention.
first : use 'or' instead of '|' . becoz both doesnt mean the same.
second:if you are tryin to get to the input element , irrespective of where it is found,
then you may aswell write
<xsl:template match = "input">
than writing
<xsl:template match="a/input | div/input | center/input | p/input
| ul/input | li/input | tr/input | td/input | th/input |
table/input | font/input">



Vasu


From: "ashu  t" <aashut@xxxxxxxxxxxxxx>
Reply-To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: [xsl] OR in test
Date: 4 Jul 2002 12:34:27 -0000

in conversion of html to wml i am using this template match for
<input>tag.
<xsl:template match="a/input | div/input | center/input | p/input
| ul/input | li/input | tr/input | td/input | th/input |
table/input | font/input">
         <xsl:variable name="type">
  	   <xsl:value-of select="@type"/>
         </xsl:variable>
         <xsl:if test="$type='text'| $type='password'">
           <xsl:choose>
            <xsl:when test="$type='text'">
              <xsl:element name="input">
                  <xsl:attribute name="name">
                  <xsl:value-of select="@name"/>
                  </xsl:attribute>
                  <xsl:attribute name="type">
                  <xsl:value-of select="@type"/>
                  </xsl:attribute>
                  <xsl:apply-templates/>
               </xsl:element>
             </xsl:when>
             <xsl:otherwise>
               <xsl:element name="input">
	          <xsl:attribute name="name">
	          <xsl:value-of select="@name"/>
	          </xsl:attribute>
	           <xsl:attribute name="type">
	           <xsl:value-of select="@type"/>
	           </xsl:attribute>
	           <xsl:apply-templates/>
	        </xsl:element>
	       </xsl:otherwise>
	       </xsl:choose>
          </xsl:if>
   </xsl:template>

but it is not working .i want to know that is it wrong to use
or(|) in test.if yes then what should be the right way. and what
if in html text is written as TEXT(in capitals).
as in wml only two (text and password) input types are allowed
ashu

_________________________________________________________
There is always a better job for you at Monsterindia.com.
Go now http://monsterindia.rediff.com/jobs


XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list






_________________________________________________________________
MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx



XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list



Current Thread