xsl-list
[Top] [All Lists]

More on count doesnt get incremented

2003-11-10 02:11:26
Hi,
   As said by Michael as nonsense. I knew that its not
the correct way of outputting but then I was doing
this way because I had to output the non-well formed
elements .. like <form>
So there was an error saying that I cannot output
something which is not well formed .. please tell me
the correct method of outputting.
 
Some more questions regarding this is.

How to output the new line in the resultant tree??

Another question is about numbering when I match 
<mo>(</mo> or <mo>)</mo> 

 I shouldnt number when there is no other tag except
<mrow> between the consecutive <mo>(</mo> or
<mo>)</mo>
There may be more than one <mrow> in between the
cosecutive occurrence of <mo>(</mo> or <mo>)</mo>

Kindly help is appreciated
Thank you
suresh
  
--- Michael Kay <mhk(_at_)mhk(_dot_)me(_dot_)uk> wrote:
Since you are matching an mml:mo element, my guess
would be that you
need to count mml:mo elements - change preceding::mo
to
preceding::mml:mo.

But then what's this nonsense:

<xsl:text>&lt;form name = "</xsl:text><xsl:value-of
select ="$moWithParen"/><xsl:text>"&gt;</xsl:text>

This isn't the way to output an element to the
result tree! 

Michael Kay

-----Original Message-----
From: owner-xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com 
[mailto:owner-xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com] On
Behalf Of 
suresh reddy
Sent: 10 November 2003 00:01
To: xsl_mulberry
Subject: [xsl] count doesnt get incremented


Hi,
  Here's my template which is not incrementing the
count value whenever <mo>(</mo> is matched in the
document.
 
<xsl:template match ="mml:mo[.='(']">
<xsl:variable name ="moWithParen"
select="count(preceding::mo[text()='('])"/>
<xsl:text>&lt;form name =
"</xsl:text><xsl:value-of
select ="$moWithParen"/><xsl:text>"&gt;</xsl:text>
</xsl:template>


Always the output is  <form name ="0"> it is not
getting incremented.

kindly help is appreciated

Thank you
suresh 

__________________________________
Do you Yahoo!?
Protect your identity with Yahoo! Mail
AddressGuard
http://antispam.yahoo.com/whatsnewfree

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



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



__________________________________
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard
http://antispam.yahoo.com/whatsnewfree

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



<Prev in Thread] Current Thread [Next in Thread>