This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: my fist question.


try:

<xsl:output method="text"/>

<xsl:template match="TITLE">
  <xsl:text>&#xa;</xsl:text>
  <xsl:for-each select="ancestor::node()">  </xsl:for-each>
  <xsl:value-of select="."/>
</xsl:template>

<xsl:template match="text()"/>

(untested)

Michael Kay
Software AG
home: Michael.H.Kay@ntlworld.com
work: Michael.Kay@softwareag.com 

> -----Original Message-----
> From: owner-xsl-list@lists.mulberrytech.com
> [mailto:owner-xsl-list@lists.mulberrytech.com]On Behalf Of Carlos
> Sent: 11 March 2002 15:44
> To: XSL-List@lists.mulberrytech.com
> Subject: [xsl] my fist question.
> 
> 
> Hello this is my first question to this list.
> 
> i i have this xml file:
> 
> <?xml version="1.0" encoding="UTF-8"?>
> 
> <?xml version="1.0" encoding="UTF-8"?>
> 
> <FOROS>
>     <FORO>
>     <TITLE>TITLE 1</TITLE>
>         <QUESTIONS>
>             <QUESTION>
>                 <TITLE>TITLE 1 1</TITLE>
>                 <TEXT>TEXT 1 1</TEXT>
>             </QUESTION>
>             <QUESTION>
>                 <TITLE>TITLE 1 2</TITLE>
>                 <TEXT> TEXT 1 2QUESTION</TEXT>
>                     <RESPUESTA>
>                         <TITLE>TITLE 1 2 1</TITLE>
>                         <TEXT>TEXT 1 2 1</TEXT>
>                     </RESPUESTA>
>                     <RESPUESTA>
>                         <TITLE>TITLE 1 2 2</TITLE>
>                         <TEXT>TEXT 1 2 2</TEXT>
>                     </RESPUESTA>
>                     <RESPUESTA>
>                         <TITLE>TITLE 1 2 3</TITLE>
>                         <TEXT> TEXT 1 2 3</TEXT>
>                         <RESPUESTA>
>                             <TITLE>TITLE 1 2 3 1</TITLE>
>                             <TEXT> TEXT 1 2 3 1</TEXT>
>                         </RESPUESTA>
>                         <RESPUESTA>
>                             <TITLE>TITLE 1 2 3 2</TITLE>
>                             <TEXT> TEXT 1 2 3 2</TEXT>
>                         </RESPUESTA>
>                             <RESPUESTA>
>                                 <TITLE>TITLE 1 2 3 3</TITLE>
>                                 <TEXT>TEXT 1 2 3 2</TEXT>
>                             </RESPUESTA>
>                     </RESPUESTA>
>             </QUESTION>
>         </QUESTIONS>
>     </FORO>
> </FOROS>
> 
> 
> how can i, with xsl file, format the output in this form:
> 
> 
> 
> TITLE 1
>    TITLE 1 1
>    TITLE 1 2
>        TITLE 1 2 1
>        TITLE 1 2 2
>        TITLE 1 2 3
>            TITLE 1 2 3 1
>            TITLE 1 2 3 2
> 
> 
> Using the xsl fiel, how can i format in that form? hoiw is 
> the xsl syntax
> for sorting that?
> the xml file can be a big xml and it can have TITLE 1 X X X trees
> 
> Thanks
> Carlos
> 
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]