xsl-list
[Top] [All Lists]

RE: Apply templates question

2003-05-13 18:04:05
Try using modes, eg

<xsl:template match="toc/*" mode="toc">
        ...whatever...
</xsl:template>
<xsl:template match="toc/*" />

Then use <xsl:apply-templates select="//toc/*" mode="toc" /> for your table of 
contents and <xsl:apply-templates select="*" /> for the body.

HTH,

Ken Ross
Ph: +61 7 32359370
Mob: +61 (0)419 772299
Email: Ken(_dot_)Ross(_at_)iie(_dot_)qld(_dot_)gov(_dot_)au


-----Original Message-----
From: waldron(_dot_)Navix(_at_)canon(_dot_)co(_dot_)jp 
[mailto:waldron(_dot_)Navix(_at_)canon(_dot_)co(_dot_)jp]
Sent: Wednesday, 14 May 2003 10:47 AM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] Apply templates question


Hi,

Using the Saxon Lite processor and specifing xsl version 1.1, I am using
xsl:document to transform my xml file into a html frames document. I am close to
 the finish line with this project, but I have one last problem to solve.

So basically, inside my first xsl:document I am specifing the navigation frame
and I am using: <xsl:apply-templates select="//toc/*" />
This puts my Table of Contents container with all of its kids into the
navigation frame. Works wonderful.

Next, inside my second xsl:document I specify what I want in the main body
frame. At the moment I'm using: <xsl:apply-templates select="*" />
This of course puts everything in the xml file into the main body frame. What I
really want is to put everything EXCEPT the toc container.

Can anyone offer a solution?
Thanks!
Dee Waldron
Tokyo Japan



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

--------------------------------------------------------------------------------------------------------------------------
IMPORTANT: This email (including any attachments) may contain confidential,
private or legally privileged information and may be protected by copyright. 
You may
only use it if you are the person(s) it was intended to be sent to and if you 
use it in an
authorised way. No one is allowed to use, review, alter, transmit, disclose, 
distribute,
print or copy this e-mail without appropriate authority.
 
If this e-mail was not intended for you and was sent to you by mistake, please
telephone or e-mail me immediately, destroy any hard copies of this e-mail and 
delete
it and any copies of it from your computer system. Any legal privilege and 
confidentiality attached to this e-mail is not waived or destroyed by that 
mistake.
 
It is your responsibility to ensure that this e-mail does not contain and is 
not affected
by computer viruses, defects or interference by third parties or replication 
problems
(including incompatibility with your computer system).




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



<Prev in Thread] Current Thread [Next in Thread>