[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: Another newbie question

Subject: RE: Another newbie question
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Thu, 9 Dec 1999 09:53:24 -0000
1
>-----Original Message-----
>From: Sanjay Saxena [mailto:ssaxena@xxxxxxxxxxxxx]
  
>Thanks a lot. However, this does not work. 

The following, which is essentially equivalent to Sanjay's posting, does
work with SAXON.
Mike Kay

Stylesheet:
=============================================================
<xsl:transform
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 version="1.0"
>
<xsl:template match="/">
    <xsl:apply-templates select="/FORMS/CONTAINERS"/>
</xsl:template>
<xsl:template match="/FORMS/CONTAINERS"> 
    <xsl:for-each select="CONTAINER"> 

        <xsl:copy-of select="//*[name(.)=current()/PRE_HTML]" /> 
        <xsl:value-of select="TITLE"/>
        <xsl:comment>Do some more things here</xsl:comment>

        <xsl:copy-of select="//*[name(.)=current()/POST_HTML]" /> 

    </xsl:for-each> 
</xsl:template> 
</xsl:transform>
================================================================
Source document:
================================================================
<FORMS> 
    <CONTAINERS> 
        <CONTAINER> 
            <PRE_HTML>DEPT_PREHTML</PRE_HTML> 
            <TITLE>Departments</TITLE> 
            <POST_HTML>DEPT_POSTHTML</POST_HTML> 
        </CONTAINER> 

        <CONTAINER> 
            <PRE_HTML>EMP_PREHTML</PRE_HTML> 
            <TITLE>Employees</TITLE> 
            <POST_HTML>EMP_POSTHTML</POST_HTML> 
        </CONTAINER> 
    </CONTAINERS> 

    <DEPT_PREHTML> 
        <!-- Well-formed HTML. --> 
        <DIV id="Layer1" style="position: absolute"> 
            <IMG src="/images/edu.gif" width="917" 
                 height="104"/> 
        </DIV> 
    </DEPT_PREHTML> 

    <DEPT_POSTHTML> 
        <P>DEPT_POSTHTML: Some more well-formed HTML. </P>
    </DEPT_POSTHTML> 

    <EMP_PREHTML> 
        <P>EMP_PREHTML: Some more well-formed HTML. </P>
    </EMP_PREHTML> 

    <EMP_POSTHTML> 
        <P>EMP_POSTHTML: Some more well-formed HTML. </P>
    </EMP_POSTHTML> 
</FORMS> 
==============================================================
Output:
===============================================================
<?xml version="1.0" encoding="utf-8" ?>
<DEPT_PREHTML> 
        <!-- Well-formed HTML. --> 
        <DIV id="Layer1" style="position: absolute"> 
            <IMG src="/images/edu.gif" width="917" height="104"></IMG> 
        </DIV> 
    </DEPT_PREHTML>Departments<!--Do some more things here--><DEPT_POSTHTML>

        <P>DEPT_POSTHTML: Some more well-formed HTML. </P>
    </DEPT_POSTHTML><EMP_PREHTML> 
        <P>EMP_PREHTML: Some more well-formed HTML. </P>
    </EMP_PREHTML>Employees<!--Do some more things here--><EMP_POSTHTML> 
        <P>EMP_POSTHTML: Some more well-formed HTML. </P>
    </EMP_POSTHTML>
=================================================================


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.