vote up 5 vote down star
1

Why aren't more webpages written using XML with an XSLT stylesheet? For separating content from presentation, this combined with CSS would be even more powerful. Right now, for things like outputting a navigation menu, people often hand-copy the navmenu code from page to page or do something like

<?php include_once('myheader.inc'); ?>

on every page, which not only puts more demand on the server, but results in duplicated data transmitted.

When I was introduced to it, I was told that all major browsers back to IE6 support XSLT 1.0... are there unresolvable bugs between implementations? Are there others showstoppers or severely lacking features that are inhibiting the spread of XML+XSLT? The only website I've seen lately that is XML+XSLT is starcraft2.com.

flag

Have you ever tried to manage variables in XSLT? – JB King Aug 12 at 19:56
1  
Its far to clunky to use plus programming in XML is painful. Academics love XML + XSLT but in business it is rarely used. – Nosrama Aug 12 at 20:22
Didn't see your question, posted a slightly different one, but the answers will probably be interesting for you: stackoverflow.com/questions/1270573/… – Benjol Aug 13 at 11:18

12 Answers

vote up 11 vote down check
  1. It is extremely verbose
  2. It is hard to trace (in a complex system) how/where/why/when a template is called
  3. Since the output must be well-formed you can't have a template that "opens" the HEAD or BODY tag that you'll then worry about closing somewhere else later. This sucks when you want to be able to queue up bits of code to go into the HEAD when you are processing what will be in the BODY.
  4. It isn't as easy to navigate the code as following method calls is
  5. Outputting something like an IE conditional comment is very confusing with all the escaping needed
  6. Building a string of HTML by appending bits just doesn't work. This can be overcome by building the HTML string bit by bit in XSL code, but it becomes quite complex.

However most of all (IMHO) it adds an extra layer to the process that doesn't "buy" you much.

e.g. typically you have:

DB > SQL > [JAVA|PHP|ASP|Python|Ruby] > HTML

but if you throw XML and XSL in, you've added steps that (can be) hard to justify

DB > SQL > [JAVA|PHP|ASP|Python|Ruby] > XML > XSL > HTML

having the data in a handy dandy universally exchangeable XML format is great-n-all, but unless you need it, all you've done is add steps.

Now I shouldn't knock XSL too much because, well I use it all the time and do appreciate some of the powerful options it provides. However to anyone deciding if they want to use it, be sure you have a need before diving in.

link|flag
I couldn't agree more with you. I don't know who thought it would be great to take markup like html or xml which is already verbose and difficult to read and embed more markup but this time with complex branching and looping. The thought scares me. – Matthew Manela Aug 12 at 23:56
+1 for extremely verbose. – liori Aug 13 at 0:05
Your point of "DB>SQL>[JAVA|PHP|ASP|Python|Ruby]>XML>XSL>HTML" is well taken. But when you DO need it, it is awesome. If you wanted to provide a web page and a web service with the same back end, only the XSL presentation code would have to change. – dacracot Aug 13 at 20:48
vote up 0 vote down

People who didn't live under a rock for the last ten years don't copy and paste header code or use PHP includes for layout anymore. They separate presentation from the actual code and use templating systems (eg. Smarty, a popular one for PHP) which have syntax that is easier to comprehend and reason about than XSLT.

link|flag
In an ideal world ... – mazin k. Aug 12 at 23:34
It's easier to convince somebody to use a templating system than XSLT, especially when it comes to designers and front-end developers. – Adam Byrtek Aug 13 at 9:01
vote up 0 vote down

XSLT was one of the few XMLish technologies that I actually liked. Especially for report generation the concept of XSLT with its set-based feel and ability to target all kinds of output formats (not just html) it deserves to be used more than it is today.

The reason I personally never used it was because at the time one of the browsers (I believe IE7) did not support rendering XSLT in the browser and we did not have the option of XSLT processing on the server side.

The second reason is that while its great for reporting and data presentation it wasn't really practical in terms of general purpose use.

link|flag
vote up 0 vote down

XSLT is an ugly, ugly template language. It has some advantages, but is also missing some critical features. Django features a template language for designers to give them simple access to data elements. They have considered XLST before, but consider it simple to change out. PHP users may prefer something like Smarty.

Obviously your question focuses on moving this to the browser, where the choices are basically XSLT, CSS or Javascript. I'm guessing the people who are in charge of CSS are not the same as those in charge of Javascripting.

link|flag
XSLT is anything but a "template language". It bears no resemblance it "something like Smarty" whatsoever. If you think that's what XSLT is for then you are completely on the wrong track. – Tomalak Aug 13 at 8:58
XSLT is for writing templates and placing data from XML in it. The difference between smarty and XSLT is that XSLT requires XML input, and requires that XSLT itself be XML compliant. – jldugger Sep 3 at 23:12
vote up 0 vote down

Blizzard Entertainment seems to like XSLT. Their World of Warcraft Armory site is completely implemented using it. Look around the site using view source.

link|flag
Why was this voted down? It's a very good example of one of the very few sites that use XSTL extensively for their website – JB Sep 29 at 7:48
Because it is WoW. People can't seem to separate their emotions about the game and its tech. – dacracot Sep 29 at 15:42
vote up 0 vote down

XSLT in the browser is right out because the smallest mistake in generating valid XML input could cause your page to show up blank, but there's a product called deliverance that runs on the server to make different web applications in a site share the same theme.

XSLT is surprisingly fast. It will be much faster than a typical interpreted templating language on the backend.

link|flag
vote up 0 vote down

Simple, XSLT is far too complicated.

link|flag
1  
Too hard... sorry but that doesn't cut it. – dacracot Aug 12 at 20:49
3  
@dacracot: When it comes to widespread adoption it does – Adam Byrtek Aug 12 at 21:55
vote up 0 vote down

Browsers do a piss poor job of rendering XSLT... meaning that to get it to render properly across browser, you need to render it on the server, negating any advantage you had for using it in the first place.

This means that you end up doing two conversions on the server side instead of one: data -> XML -> HTML instead of data -> HTML.

link|flag
Actually, no, Electro did NOT point out that browsers do a poor job rendering XSLT. He only said that security is strictly enforced. – mazin k. Aug 12 at 20:28
vote up 2 vote down

XSLT isn't easy.

link|flag
1  
Too hard... sorry but that doesn't cut it. – dacracot Aug 12 at 20:49
I'm just a simple man in a high tech digital world, see youtube.com/watch?v=wY5bLLXMUgQ – tuinstoel Aug 12 at 21:05
vote up 1 vote down

There are a few issues regarding the adoption of XSLT, browser issues among others. For instance, the Firefox plugin NoScript, designed for blocking malicious JavaScript, also blocks XSLT on unknown pages. Don't forget that switching to a subdomain or different protocol will make IE respond to it as a violation of the same origin policy. Still, XML+XSLT, even though it's just for a limited number of cases, is quite useful. See WoW's website as an example of well-implemented XML+XSLT.

link|flag
Starcraft2 and WoW both being Blizzard properties, we've come up with a grand total of 1 company that uses it. :( – mazin k. Aug 12 at 20:24
vote up 4 vote down

I think part of the issue is that programming in XSLT has some of the attributes of a functional language (see this answer for why it's not fully functional).

As such it requires a different approach from the 'usual' imperative mindset, and that will deter some people from fully investigating it (I'm not dismissing functional programming, btw, but in the web client/server world it's not the most common paradigm).

In the Java world it used to be perceived as being slow and memory hungry. I'm sure some of that was anecdotal, and perhaps partly the effect of early VMs. I note, however, that hardware XML accelerators are available and sit behind the JAXP interface, so perhaps there's still a speed issue ?

link|flag
6  
+1 Put simply, XSLT is a pain in the ass to use for all but certain narrow tasks. – skaffman Aug 12 at 19:57
I wouldn't be so rude :-), but after being told that the way to manipulate XML in Ant was to use XSLT, I developed XMLTask (Google it) to do XML in Ant. Horses for courses, etc.! – Brian Agnew Aug 12 at 20:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.