Difference between revisions of "XSLT"

From Dietrich Blog (Strato)
Jump to: navigation, search
(Xalan)
(XSL Namespace)
Line 8: Line 8:
  
 
== XSL Namespace ==
 
== XSL Namespace ==
 +
Das XSL-Stylesheet sollte anfangen mit:
 +
 
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0" >
 
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0" >
  

Revision as of 17:36, 12 April 2009

Siehe auch: XSLT

Mithilfe von XSL-Stylesheets kann man XML-Dokumente in verschiedenen Output-Formate transformieren.

Web Links

XSL Namespace

Das XSL-Stylesheet sollte anfangen mit:

<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0" >

XSL Output Methods

  • <xsl:output method = "text" />
  • <xsl:output method = "html" />
  • <xsl:output method = "xml" />

Beispiele

Xalan

XSLT-Prozessor Xalan...


-- Dkracht 13:07, 12 April 2009 (CEST)