False you dont use XML->PDF, XML->PS, XML->SVG

 you're using XML+XSL->FO->PDF, XML+XSL->FO->PS..

for HTML you need XML+XSL->FO where FO is your friend.

your xsl stylesheet can contain:
<table>
        <tr>
                <td><xsl:value-of select="something_in_your_xml"/></td>
        </tr>
<table>

the resultig FO is:
<table>
        <tr>
                <td>ThatsTheDataFromXML</td>
        </tr>
<table>

DONE

hope that helps

> -----Original Message-----
> From: Christian Neuroth [mailto:[EMAIL PROTECTED]
> Sent: Freitag, 25. April 2003 13:40
> To: [EMAIL PROTECTED]
> Subject: Re: HTML render class available?
> 
> 
> Hi!
> 
> Thanks for your fast reply, Amit. However, what I was looking 
> for was a way
> to transform XML into HTML with the help of FOP.
> 
> Until now, I can do XML->PDF, XML->PS, XML->SVG, because 
> there are render
> classes for those document types... I am looking for a subclass of
> org.apache.fop.render.AbstractRenderer, which supports the 
> transformation of
> XML into HTML. This would be great because I would then only 
> have one XSL-FO
> sheet, which is used for all desired document formats.
> 
> Thanks,
> 
> Christian
> 
> > here is a XSL to render XML in to FO.
> >
> http://www-106.ibm.com/developerworks/library/x-xslfo2app/xhtm
> l-to-xslfo.xsl
> >
> > i hope this will help you.
> >
> > Amit Kaushik
> >
> >
> > ----- Original Message -----
> > From: "Christian Neuroth" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Friday, April 25, 2003 3:20 PM
> > Subject: HTML render class available?
> >
> >
> > > Hi!
> > >
> > > As I am a newbie to FOP, I am not sure whether my post 
> makes sense or
> not.
> > >
> > > I really enjoy working with FOP: I use one XSL-FO sheet 
> to generate
> plain
> > > text,
> > > PDF and even SVG documents. The resulting docs have the 
> same layout.
> Since
> > > the layout is very complex, we require that the layout is 
> configured in
> > only
> > > one
> > > XSL-FO stylesheet.
> > >
> > > The only thing that I am missing, is a render class for 
> HTML as we are
> > also
> > > in need of a HTML doc. Does anyone have a solution for this?
> > >
> > > Regards + Thanks!
> > >
> > > Christian
> > >
> > >
> > > 
> ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> >
> >
> > 
> ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to