[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

from one node get the next node value with the same na

Subject: from one node get the next node value with the same name
From: Dionisio Ruiz de Zárate <dionisio@xxxxxxxxxxxxx>
Date: Thu, 26 Aug 2004 03:49:26 +0200
xsl next node
hello i have the next xml file and from one node i want to load the next
node with the same name.

but it doesn't show me the next node value.

the xml file is:
<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>
<sn_servicioproyecto>
<masterinformaciones>
<sn_masterinformacion>
<composicioninformacion>
<sn_composicioninformacion>
<composicioninformacion_aliasnvolucion><![CDATA[titulo]]></composicioninform
acion_cc>
<metadatosinformacion_texto><![CDATA[Negorta (Zuhatza) -
2004]]></metadatosinformacion_texto>
</sn_composicioninformacion>
<sn_composicioninformacion>
<composicioninformacion_aliasnvolucion><![CDATA[titulo_secundario]]></compos
icioninformacion_cc>
<metadatosinformacion_texto><![CDATA[AIARAKO V. JARDUNALDI
HISTORIKOAK]]></metadatosinformacion_texto>
</sn_composicioninformacion>
</composicioninformacion>
</sn_masterinformacion>
</masterinformaciones>
</sn_servicioproyecto>

i want to load, to show this:

a.. Negorta (Zuhatza) - 2004 (AIARAKO V. JARDUNALDI HISTORIKOAK)


for this i have the next xslt file:

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" version="1.0" encoding="ISO-8859-1" indent="yes"
omit-xml-declaration="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/sn_servicioproyecto">
Hauexek dira dituzun <xsl:value-of
select="sn_servicioproyectodetalles/servicioproyectodetalle_titulo"
disable-output-escaping="yes"/><br/>
<ul>
<xsl:for-each select="masterinformaciones/sn_masterinformacion">
<xsl:choose>
<xsl:when
test="composicioninformacion/sn_composicioninformacion/composicioninformacio
n_cc='titulo'">
<li><xsl:value-of
select="composicioninformacion/sn_composicioninformacion/metadatosinformacio
n_texto" disable-output-escaping="yes"/> (<xsl:value-of
select="normalize-space(following-sibling::composicioninformacion/sn_composi
cioninformacion/metadatosinformacion_texto)"
disable-output-escaping="yes"/>)</li>
</xsl:when>
</xsl:choose>
</xsl:for-each>
</ul>
</xsl:template>
</xsl:stylesheet>



can you help me please?

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.