Embedded style sheet into xml document : stylesheet « XSLT stylesheet « XML

XML
1. CSS Style
2. SVG
3. XML Schema
4. XQuery
5. XSLT stylesheet
Java
XML Tutorial
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
XML » XSLT stylesheet » stylesheet 
Embedded style sheet into xml document


<?xml version="1.0" standalone="no" ?>
<?xml-stylesheet type="text/xsl" href="#id(transcriptstyle)"?>

<transcript>
  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    id="transcriptstyle">

    <xsl:template match="/">
      <html>
        <xsl:apply-templates />
      </html>
    </xsl:template>

    <xsl:template match="report">
      <xsl:apply-templates />
    </xsl:template>

    <xsl:template match="order">
      <P>
        <xsl:value-of select="." />
      </P>
    </xsl:template>
  </xsl:stylesheet>

  <student id="STU12345" name="name 1" status="active">
    <home_address>35 Wall Street, Wonderland, NJ</home_address>
    <interests>
      <interest>interest 1</interest>
      <interest>interest 2</interest>
      <interest>interest 3</interest>
    </interests>
  </student>
  <term>
    <heading name="Winter 1999" />
    <course>
      <course-name>course 1</course-name>
      <grade>A-</grade>
      <credits>4</credits>
    </course>
    <course>
      <course-name>course 2</course-name>
      <grade>B+</grade>
      <credits>3</credits>
    </course>
  </term>
  <summary>summary</summary>
  <comments>
     
    comments
  </comments>
</transcript>

 
Related examples in the same category
1. Empty transform
2. Transform another style sheet
3. Generate Java code
4. Generate SVG document
5. Generate html tags
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.