RE: [xsl] Get all the node as text

Subject: RE: [xsl] Get all the node as text
From: "Kenny Akridge" <kakridge@xxxxxxxxxxxxx>
Date: Wed, 4 Feb 2004 10:20:49 -0500
Try this:

<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

	

<xsl:template match="ttexte">
   <span style="font-weight:bold;font-size:10;font-family:Verdana">
Titre :
</span>
   <span style="font-size:10;font-family:Verdana">
<xsl:value-of select="."/>
</span>
   <br/>
</xsl:template>


</xsl:stylesheet>

-----Original Message-----
From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of Lionel Crine
Sent: Wednesday, February 04, 2004 9:38 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: [xsl] Get all the node as text

Hello,

I have this node :
  <ttexte daten="20040203" id="RL170-0AAAAA" no="512-22" 
type="ARRANGEMENTADMINISTRATIF">
   Arrangement administratif n
   <sp>o</sp>
   512-22 du
   <tdate daten="20040203">3 février 2004</tdate>
   </ttexte>

And I want to get :

-> Arrangement administratif n o 512-22 du 3 février 2004


as a result. So i want all the text before the tdate and the tdate
itself.

I'm trying to make this apply-templates but it doesn't work.


<xsl:template match="ttexte">
   <span style="font-weight:bold;font-size:10;font-family:Verdana">
Titre : 
</span>
   <span style="font-size:10;font-family:Verdana">
<xsl:apply-templates select="*[not(self::hist or self::fnref or 
self::fnote)]"/>
</span>
   <br/>
</xsl:template>


hist, fnref and fnote and nodes placed after the tdate node.

Thanks for your help.

Lionel CRINE
Ingénieur Systèmes documentaires
Société : 4DConcept
22 rue Etienne de Jouy 78353 JOUY EN JOSAS
Tel : 01.34.58.70.70 Fax : 01.39.58.70.70


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


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


Current Thread