XML
  Home arrow XML arrow Page 2 - Understanding XSLT Transformations: Matchi...
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
Sun Developer Network 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
XML

Understanding XSLT Transformations: Matching and Selecting with Templates
By: Jagadish Chaterjee
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 4
    2006-01-04

    Table of Contents:
  • Understanding XSLT Transformations: Matching and Selecting with Templates
  • Matching with the particular node and selecting with "current context"
  • Matching with “root”, “particular node” and selecting in different ways
  • What are the default templates?

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Understanding XSLT Transformations: Matching and Selecting with Templates - Matching with the particular node and selecting with "current context"


    (Page 2 of 4 )

    This example mainly contains two files.  The first would be an XML file (Sample2.xml), which is same as above, and the second would be an XSL file (Sample2_2.xsl).  Now, let us now look at “Sample2_2.xsl”:

    <?xml version="1.0" encoding="utf-8"?>
    <xsl:stylesheet version="1.0"
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
                <xsl:output method="html"/>
     
                <xsl:template match="Names">
                  <html>
                    <body>
                      <b>
                        <xsl:value-of select="."/>
                      </b>
                    </body>
                  </html>
                </xsl:template>
    </xsl:stylesheet>

    The most important statements of the whole XSL are the following:

                <xsl:template match="Names">
                            …
                            <xsl:value-of select="."/>
                            …
                </xsl:template>

    The matching is based on the “Names” node.  The selection is based on “.”.  The “dot” refers to the current context, which finds all the elements from the node “Names”.  It finally retrieves all the text of the current node as well as all nested nodes of the same. 

    Before execution, make sure that you modify the XSL file name (to “Sample2_2.xsl”) within the XML document.  When you execute the above you will get an exact output as shown in the previous section.  This is because all of the text in all of the elements related to the “Names” node is the same!

    Matching with “root” and selecting with “element path”

    This example mainly contains two files.  The first would be an XML file (Sample2.xml), which is the same as above, and the second would be an XSL file (Sample2_3.xsl).  Now, let us look at “Sample2_3.xsl”:

    <?xml version="1.0" encoding="utf-8"?>
    <xsl:stylesheet version="1.0"
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
                <xsl:output method="html"/>
                <xsl:template match="/">
                            <html>
                              <body>
                                <b>
                                  <xsl:value-of select="Names"/>
                                </b>
                              </body>
                            </html>
                </xsl:template>
    </xsl:stylesheet>

    The most important statements of the whole XSL are the following:

                <xsl:template match="/">
                            …
                            <xsl:value-of select="Names"/>
                            …
                </xsl:template>

    Now, the matching is again based on the “root” node.  The selection is based on “Names”.  The “Names” refers to all “Names” elements under the “root” node.  It finally retrieves all the text of the current element “Names” as well as all nested nodes of the same. 

    Before execution, make sure that you modify the XSL file name (to “Sample2_3.xsl”) within the XML document.  When you execute the above you will get an exact output as shown in first section.  This is because all of the text in all of the nested elements related to “Names” element (along with its own text) is the same!

    More XML Articles
    More By Jagadish Chaterjee


       · We hope you found this article educational and useful. Please feel free to let the...
       · Hello guys! Feel free to give any suggestions or comments or new requirements...
     

    XML ARTICLES

    - Datatypes and More in RELAX NG
    - Providing Options in RELAX NG
    - An Introduction to RELAX NG
    - Path, Predicates, and XQuery
    - Using Predicates with XQuery
    - Navigating Input Documents Using Paths
    - XML Basics
    - Introduction to XPath
    - Simple Web Syndication with RSS 2.0
    - Java UI Design with an IDE
    - UI Design with Java and XML Toolkits
    - Displaying ADO Retrieved Data with XML Islan...
    - Widget Walkthrough
    - Introduction to Widgets
    - The Why and How of XML Data Islands






    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway
    Stay green...Green IT