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]

RE: Some Questions (2nd try)


Or use MS Word98/2000
HTMLtoRTF.js
----------------------------------------------------
var word =    new ActiveXObject("word.Application");
var doc =     word.Documents.Open("infile.html");
word.Documents("infile.html").saveAs("outfile.rtf", 6);
doc.close();
----------------------------------------------------
Then you only need one stylesheet ;-))

Ciao Chris


>-----Original Message-----
>From: owner-xsl-list@mulberrytech.com
>[mailto:owner-xsl-list@mulberrytech.com]On Behalf Of Omar Lopez Ruiz
>Sent: 29 February 2000 11:24
>To: xsl-list@mulberrytech.com
>Subject: Some Questions (2nd try)
>
>
>
>    Hi all,
>
>    I have some conceptual questions about some issues of XML/XSL-T,
>please I'd be very grateful if anyone can answer them.
>
>    1.- What about the output of the XSL Transformation? The ouput could
>
>be an .rtf or .biff file with binary data and not a well-formed
>document?
>I mean, I want to transform some XML data in a Word document (or
>something that MSWord could understand) it's that possible?, or I have
>to use formatting objects and some kind of parser?
>
>    2.- Imagine the ouput of an SQL query with a 'group by' sentence,
>and maybe, with total fileds for each group of rows. For each group, I
>don't want to repeat the fileds with the same values (the fields that
>define the group). Can XSL-T do something like that?:
>        a) To control when some values changing and
>        b) Do the totals of some fields, the totals for each group of
>rows.
>
>        Should be <xsl:variable> the solution in order to do something
>like that?
>
>    3.- Imagine I have some data, from the DB via JDBC, in some Java
>Classes, in my own object model (with this data stored in). And I want
>to serialize this data, or a subset of it, in an XML document. Can I use
>
>a SAX parser?, or have I to do it myself. I mean, Can I pass my object
>model to the SAX parser?
>
>    Sorry if some are silly or very basic questions, I'm defining my
>carreer final project and I want to use the XML-JAVA-SQL technology in
>the best way.
>
>    Thanks a lot, any inputs will be wellcome.
>
>    Omar Lopez.
>
>
>
>
> 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]