What's the difference between XSLT and XSL-FO ?
Every resource I've read deal with them as if they were 1, or at least very closely tied..
Thanks in advance
|
|
|
I was wondering about the basis of the question because I thought it was easy to answer, however as soon as you go here: http://www.w3.org/TR/xsl/ it becomes clear that its actually a good question - because pretty much the first thing on the page is this statement: This specification defines the features and syntax for the Extensible Stylesheet Language (XSL), a language for expressing stylesheets. It consists of two parts:
However, back in the real world, XSLT (which is also what most people will assume you mean by XSL) is a means for transforming XML documents into something else - that something else more often than not being another well structured document probably also formatted as XML (though I've used XSLT to render XML to csv and plain(ish) text). XSL-FO on the other hand is about formatting - about laying out content on a page or a sequence of pages in a fairly strict fashion. Its useful because it allows you to manage content that is spread across multiple pages, its relatively straightforward to specify the format of a page (or even and odd pages) including headers, footers, borders, columns, etc and have your content flow into that. One would therefore take a load of data in, say, an XML format and then use XSLT to convert that data into a document consisting of XSL-FO that in turn is rendered using an appropriate tool in say PDF for print or other means of distribution. The use case I have is to take a pile of tabular data, export that data as XML, render that into XSL-FO and from there to PDF which goes to a printer who turns said PDF into a 500 page directory. One specifies in the XSL-FO that one wants page numbers, page breaks in specific circumstances, that there is a table of contents and an index (each based on particular elements) and the rendering process (to PDF) handles filling in the page numbers across the board. Hopefully you're a bit less confused now.. |
|||
|
|
|
Asside from the similarities in the acronyms the two technologies used to be part of the same W3C spec(in draft form). It was later decided to split XSL(XSL-fo) and XSLT out into two separate specifications.
A detailed annotation of the chronology can be found on Dave Pawson's Home page: http://www.dpawson.co.uk/xsl/sect1/history.html |
|||
|
|
|
XSLT is used for transforming, XSL (which is the same as XSL-FO) is used for formatting. |
|||||||
|
|
What about the Wikipedia definition?
|
|||||||||
|
|
XSL-FO stands for Extensible Stylesheet Language Formatting Objects and is about formatting and now is known as XSL to avoid all confusion. So do not worry about XSL-FO anymore. XSLT however is about transforming xML. So it is very clear. XSL is about formatting and XSLT is about transforming. |
|||||
|
|
This can be quite confusing as w3 tutorial site itself says
that means XSL-FO and XSL is the same thing but they are not! XSL is basically representing XML data into an HTML document XSL-FO is about formatting of the document itself. For example if you want to transform XML into a word document, you want to add page numbers, change margin or page layout, add headers and footers etc. These items can only be addressed via XSL FO tags, XSLT has no way to access the document properites. In technical field, you will most likely come across scenario where XML data is rendered in word or PDF document. It would need page numbers, layout format, header etc. These are very important part of the document. Another big difference is XSL and XSL FO has different engines. XSL can not render XSL-FO tags. This question talks about which engine to use for XSL FO Which is the Best commercial xsl fo engine? A typical XSL Fo tempate lools like this
Notice that there is no reference to XML data. It is all about formatting the document itself. This is an extremely important element when it comes to transforming XML data into legal documents. Because you need pager number, document number, layout etc if the output document is pdf or word. With out this information, it is painfully hard to implement page numbers or headers etc. The confusion comes in because this document will almost certainly contain XSL tags as we will pulling XML data. However if there is no XSL Fo engine, the document will not be rendered. So in short they are similar and work together but they are not the same thing. They are rendered by different engines. |
|||
|
|
|
XSLT is a template format that can be used to generate all sorts of documents, including plain text documnent. XSL-FO denotes the use of XSLT to produce FO documents. |
|||||||||
|