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

First experiences with XSL

  • From: "Michael Kay" <M.H.Kay@e...>
  • To: <xml-dev@i...>
  • Date: Fri, 30 Jan 1998 15:05:24 -0000

first experiences
I've downloaded MSXSL and used it to generate HTML for a couple of document
types, successfully but with a certain amount of frustration caused by (a)
lack of diagnostics when I got things wrong, and (b) limited functionality.

I've now implemented the same thing without XSL: I wrote an MSXML
application in Java that does a recursive walk down the document tree and
calls a registered "handler" class to process each element type. I added a
number of helper methods such as isFirstOfType() to allow the handlers to
get information about their context more easily.

Here is an example of one of the handlers (for the XML element tagged
SPEECH):

class SPEECHHandler extends HTMLNodeWriter {
    public void handleElement(ElemNode e) {
        if (e.isFirstOfType())
            System.out.println("<HR>");
        e.walkChildren();
        System.out.println("<BR>");
        if (e.isLastOfType())
            System.out.println("<HR>");
    }
}

I have to report:
- the element handlers looked very similar to the XSL rules
- the number of DTD-specific lines of code was identical (106 in each case!)
- it was far easier to debug
- you can do very many things that you can't do in XSL, like sorting the
children of a node according to some attribute value, or getting information
about user preferences from an external database.

I have yet to spot any disadvantages. I haven't looked at performance or
footprint, but I can't see any intrinsic reason why XSL should be smaller or
faster. (Currently some of the methods like isLastOfType() are very
inefficient due to the limited navigation capabilities in MSXML. I could
speed it up if I built my own tree!).

Any XSL enthusiasts want to prove me wrong?

Regards, Mike Kay


xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@i...
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo@i... the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@i... the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@i...)


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
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

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.