What Is XSLT (XSL Transformations)

This section describes XSLT (XSL Transformations) - a language that allows you to write a stylesheet to describe rules for transformation a source XML document into a result text document. 'stylesheet', 'template' and 'apply-templates' are 3 basic XSLT statements.

What Is XSLT (XSL Transformations)? XSLT is a language that allows you to write a stylesheet to describe rules for transformation a source XML document into a result text document.

XSLT is a language based on XML, so a transformation stylesheet written in XSLT is also an XML document. XSLT statements are expressed as XML elements.

There are 3 basic elements in an XSLT stylesheet:

Here is a simple XSLT stylesheet with 3 XSLT elements:

<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:template match="class">
  Start of student list
  <xsl:apply-templates select="student"/>
  End of student list
 </xsl:template>
</xsl:stylesheet>

Note that:

Table of Contents

 About This Book

 Introduction of XML (eXtensible Markup Language)

 XML File Syntax

 XML File Browsers

 XML-JSON Document Conversion

 DOM (Document Object Model) Programming Interface

 SAX (Simple API for XML) Programming Interface

 DTD (Document Type Definition) Introduction

 Syntaxes of DTD Statements

 Validating an XML Document against the Specified DTD Document Type

 XSD (XML Schema Definition) Introduction

 Syntaxes of XSD Statements

 Validating XML Documents Against Specified XML Schemas

 XSL (Extensible Stylesheet Language) Introduction

 Java Implementation of XSLT

XSLT (XSL Transformations) Introduction

What Is XSLT (XSL Transformations)

 "stylesheet" - The Stylesheet Declaration Element

 "template" - The Template Declaration Element

 Including Literal XML Elements in Templates

 "apply-templates" - The Child Transformation Call Element

 How the Transformation Process Gets Started

 Default Transformation Template

 XML Element Transformation Chains

 XML Element Transformation Chains - Complex Example

 XPath (XML Path) Language

 XSLT Elements as Programming Statements

 Control and Generate XML Element in the Result

 PHP Extensions for XML Manipulation

 Processing XML with Python Scripts

 XML Notepad - XML Editor

 XML Tools Plugin for Notepad++

 XML Plugin Packages for Atom Editor

 XML 1.1 Changes and Parsing Examples

 Archived Tutorials

 References

 Full Version in PDF/EPUB