vote up 24 vote down star
11

A while ago, I started on a project where I designed a html-esque XML schema so that authors could write their content (educational course material) in a simplified format which would then be transformed into HTML via XSLT. I played around (struggled) with it for a while and got it to a very basic level but then was too annoyed by the limitations I was encountering (which may well have been limitations of my knowledge) and when I read a blog suggesting to ditch XSLT and just write your own XML-to-whatever parser in your language of choice, I eagerly jumped onto that and it's worked out brilliantly.

I'm still working on it to this day (I'm actually supposed to be working on it right now, instead of playing on SO), and I am seeing more and more things which make me think that the decision to ditch XSLT was a good one.

I know that XSLT has its place, in that it is an accepted standard, and that if everyone is writing their own interpreters, 90% of them will end up on DailyWTF. But given that it is a functional style language instead of the procedural style which most programmers are familiar with, for someone embarking on a project such as my own, would you recommend they go down the path that I did, or stick it out with XSLT?

flag
3  
I think XSLT hast reached the plateau of productivity within the hype cycle (en.wikipedia.org/wiki/Hype_cycle). – divo Aug 13 at 8:30
show 10 more comments

40 Answers

prev 1 2
vote up 0 vote down

I need to work with XSLT here because some one thought it is a good idea to solve a given problem: We need to extract some data from multiple XML-Files and join it together to different output formats for different tools that do further processing.

Fisrt I thought XSLT is a very nice idea, because it is a standard you can rely on. This is true for simple formating tasks where you do not need to much programming logic or algorithms in your code.

But: It is quite a step learning curve, as it is not procedural. If you got used to procedural programming (C,Java,Perl,PHP, etc) you are going to miss a lot of common structs or you will wonder about things that just luck cubersome and sometimes not really readable by an untrained eye. For example writing "resuseable" code: If you need to do something over and over again in different places, in procedural programming, you would define a function to do so. You may achive such things in XSLT as well, but its for more code to write and is not as readable/understandable as a normal function would be.

The main problem I have, is that many people comming from a procedural background worked on the XSLT-Files by now, and almost everyone just "emulated" what he needed.

So as a conclusion: I don't see XSLT as "the ultimate" solution anymore. In fact it is pain to read or write some constructs in XSLT. For most cases you will have to think about the application: For simple transformation I will probably use XSLT again. But for more complex software I will not use it again.

link|flag
vote up 0 vote down

I'm currently tasked with scraping data from a public site (yeah, i know). Thankfully it conforms to xhtml so I'm able to use xslt to gather the data I need. The resulting solution is readable, clean and easy to change if need occurs. Perfect!

link|flag
vote up 0 vote down

Talking about interoprability, XML is a standard for information storage. A whole lot of tools produce output in XML, and what better(or easier) way to present it than embed a browser in your app and format the XML and put it into the browser.

link|flag
show 2 more comments
vote up 0 vote down

In my opinion Yes.

For a great example of a really cool use of XSLT, check out blizzard's world of warcraft armory.

http://www.wowarmory.com

link|flag
show 1 more comment
vote up 0 vote down

No I don't use XSLT.

No I'd never advise anyone to use it.

No I don't consider it useful.

Yes I'd be happy to never see it, or most forms of XML, again.

link|flag
1  
+1 Enough said! – Breadtruck Aug 13 at 7:42
3  
In general it can't be said like this. There are a lot of use cases where xml comes handy and in those cases xslt becomes usefult to. But probably not for doing the complete web job. – Totonga Aug 13 at 8:10
4  
You know how some questions get closed as "Subjective and argumentative"? This answer is like that. If you provide some details as to why you don't consider XSLT useful and you don't like it so much it might actually become a useful answer. – Adam Batkin Aug 13 at 8:15
4  
Could you explain why? Or is it just some "I didn't understand it so I don't like this strange thing"? – divo Aug 13 at 8:34
vote up 0 vote down

I did use XSLT extensively ... for a couple of hours. It's cool for things like changing element names or filtering an input document (stripping stuff away that you don't need).

Anything else gets complex very quickly. This inherit complexity plus the lack of most things you're used from any other programming languages (like variables) and the easy ways to make XPath expressions unreadable, really hurt.

In the end, XSLT suffers from a schisma: Programmers don't like it because of the limitations and everyone else can't use it at all (say, web designers or any other non-programmer type).

If XSLT had been promoted as some kind of SQL for XML, things would be a bit different. First, people wouldn't have even bothered to look at it. And those who did wouldn't have been surprised by the pain.

link|flag
show 1 more comment
vote up 0 vote down

I use XSLT to correct errors in very complexe xml files. So instead of handling the errors in the xml I use xslt to correct them.

This is great. Because the language is so powerful and it fits the xml use case. To do the same things in an ususal programming language it would took me real long time to adapt my code every time a new flavour arises.

Its also usefult to migrate visual studio solutions without letting microsoft decide which things to change. So convert one solution. Check what changed. Revert the things you do not want to change and run the xslt script doing the job on all files.

So I never used it to do web presentations or something like this but it helps me in my xml based problems. And to solve these issues its really really powerful and really worth having a look on it.

link|flag
vote up 0 vote down

One place where xslt really shines is in generating reports. I've found that a 2 step process, with the first step exporting the report data as an xml file, and the second step generating the visual report from the xml using xslt. This allows for nice visual reports while still keeping the raw data around as a validation mechanism if needs be.

link|flag
vote up 0 vote down

In terms of sheer productivity you would be better off using one of the jQuery-style libraries - pyQuery, phpQuery etc. Most XML libraries suck and XSLT is essentially just another XML library packaged as a full-fledged language but without a decent set of tools. jQuery makes it insanely easy to traverse and manipulate XML style data in your language of choice.

link|flag
vote up 0 vote down

I think the concept is sound, perhaps the execution is not as 'clean' as it could be.

However I think it should be treated as a tool, it may not be wise to use it in every instance, however one should never ignore a tool when solving solutions.

I have seen very good XSLT, and also very bad use of XSLT, and I conclude some of it may be down to the skill of the developer. I think its one that requires for the developer to think in multiple domains at the same time.

Is it the future? maybe not, maybe there are better solutions..

I don't know what new technology is going to come along, but at least its best to learn it, increasing ones own tool set can't be a bad thing surely?

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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