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

RE: my fist question; formating with xsl a xml file

Subject: RE: my fist question; formating with xsl a xml file
From: "Ivan Rubin Ayma" <Iayma@xxxxxxxxxxxx>
Date: Mon, 11 Mar 2002 14:42:30 -0300
formati 11
<title/> has no <title/> parents,

that's why the for-each ancestor::title will not work

you should (with your structure) use for-each ancestor::answer, or
ancestor::question.

> -----Mensaje original-----
> De: Carlos [mailto:linux@xxxxxxxx]
> Enviado el: lunes, 11 de marzo de 2002 14:33
> Para: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Asunto: Re:  my fist question; formating with xsl a xml file
> 
> 
> i want to make a forum and i must to format the output to that.
> 
>  title 1 1 1
>  ===title 1 1 2
>  ===title 1 1 3
>  =======title 1 1 4
>  =======title 1 1 5
>  ===title 1 1 6
>  ============title 1 1 7
>  ============title 1 1 8
> 
> with your xsl appears:
> 
> == 1
> == 11
> == 12
> == 121
> == 122
> == 1221
> == 1222
> == 12221
> == 122211
> 
> 
> and not 
> 
> == 1
> === 11
> === 12
> ==== 121
> ====122
> ==== 1221
> ==== 1222
> ===== 12221
> ====== 122211
> 
> 
> ----- Original Message ----- 
> From: "Ivan Rubin Ayma" <Iayma@xxxxxxxxxxxx>
> To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
> Sent: Monday, March 11, 2002 5:12 PM
> Subject: RE:  my fist question.
> 
> 
> > <xsl:template match="/">
> > <!-- apply all the templates named 'titulo' all over the
> > document
> > (sometimes inside a question, sometimes inside a
> > 'respuesta')-->
> > <xsl:apply-templates select="//titulo">
> > <xsl:sort/>
> > </xsl:apply-templates>
> > </xsl:tempalte>
> > 
> > <xsl:template match="titulo">
> > <!-- For each ancestor named 'titulo' -->
> > <for-each select="ancestor::titulo">
> > ===
> > </for-each>
> > <xsl:value-of select="."/>
> > </xsl:template>
> > 
> > title 1 1 1
> > ===title 1 1 2
> > ===title 1 1 3
> > =======title 1 1 4
> > =======title 1 1 5
> > ===title 1 1 6
> > ============title 1 1 7
> > ============title 1 1 8
> > 
> > But I don't fully understand your xml structure, and I 
> don't think this
> > is what you're looking for.
> > 
> > Hope it helps anyway,
> > 
> > 
> > > -----Mensaje original-----
> > > De: Carlos [mailto:linux@xxxxxxxx]
> > > Enviado el: lunes, 11 de marzo de 2002 12:44
> > > Para: XSL-List@xxxxxxxxxxxxxxxxxxxxxx
> > > Asunto:  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
> 


 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

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.