RE: [xsl] Suppress and test

Subject: RE: [xsl] Suppress and test
From: "Pankaj Chaturvedi" <pankaj.chaturvedi@xxxxxxxxx>
Date: Mon, 7 Apr 2008 15:35:21 +0530
Hi Michael,

The element simply looks like

<journalcode>CIJB</journalcode>

wherein string "CIJB" can be anything (CIJB, CEDE or XXX etc). All I am
trying to apply different modes depending upon <journalcode> string value
and secondly trying suppress the string <journalcode dummy="whatever"/>.

Ronan suggestion does the trick but may there is another way doing that.

Hope it makes clear.

Pankaj



-----Original Message-----
From: Michael Kay [mailto:mike@xxxxxxxxxxxx]
Sent: Monday, April 07, 2008 2:16 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: RE: [xsl] Suppress and test



Please show what your input looks like and what your desired output looks
like. It's impossible to work out what you want to achieve simply by
studying code that does something different.

Michael Kay
http://www.saxonica.com/


> -----Original Message-----
> From: Pankaj Chaturvedi [mailto:pankaj.chaturvedi@xxxxxxxxx]
> Sent: 07 April 2008 09:27
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: [xsl] Suppress and test
>
> Hi,
>
> I've an element <journalcode>CIJB</journalcode>, which I want
> to suppress (make an empty element) in my output while also
> testing its string value to apply different modes.
>
> I've defined the following but ending up with result
> <journalcode dummy="CIJB"/>CIJB<issn ............... (though
> getting fair result with testing). I've tried different way
> around to get the desired output (<journalcode
> dummy="CIJB"/>) but doesn't seems to be working. Can I've any
> suggestions in this regard. I think I am doing something
> wrong with <xsl:apply-templates> here, but not sure.
>
>
>
>
> <xsl:template match="article/meta/journalcode"> <xsl:element
> name="journalcode">
> 	<xsl:attribute name="dummy">
> 		<xsl:value-of select="string(.)"/>
> 	</xsl:attribute>
> 	<xsl:copy-of select="@*"/>
> 	</xsl:element>
> 	<xsl:if test="string(.)='CEDE'">
> 			<xsl:apply-templates mode="CEDE"/>
> 	</xsl:if>
> 	<xsl:if test="string(.)='CIJB'">
> 			<xsl:apply-templates mode="F-chic-auth-date"/>
> 	</xsl:if>
> </xsl:template>
>
>
> Best,
>
> Pankaj Chaturvedi
>
> ==============================================================
> ==============
> ================
>
>
> Confidentiality Notice:" This message and any attachment(s)
> contained here are information that is confidential,
> proprietary to IDS Infotech Ltd. and its customers.
> Contents may be privileged or otherwise protected by law. The
> information is solely intended for the individual or the
> entity it is addressed to. If you are not the intended
> recipient of this message, you are not authorized to read,
> forward, print, retain, copy or disseminate this message or
> any part of it. If you have received this e-mail in error,
> please notify the sender immediately by return e-mail and
> delete it from your computer."

Current Thread