On Thu, 12 Dec 2002, Yves Vindevogel wrote:
> Not 100% sure, but in my (humble) opinion, you can only call included
> templates and no longer use apply.
>
> Instead of <apply-template> you will need
>
> <xsl:for-each ...>
>       <xsl:call-template select="mytemplate">
>               <xsl:with-param name="myparamtopass" value="."/>
>       </xsl:call-template>
> </xsl:for-each>
>
> in the included file:
> <xsl:template name="mytemplate">
>       <xsl:param name="myparamtopass">
> ....
> </xsl:template>

I have no <apply-template> nor parameters.  All I'm doing is taking the
documentation at face value in assuming that an xsl:include does a simple
insert of another file in place.  Is that not the case?

I literally cut and paste a templete into a tiny file, and include it, but
the template does not get applied.


> > This should be simple, but I'm not able to make it work.
> >
> > Here's an xsl file, working fine:
> >
> > <?xml version="1.0"?>
> > <xsl:stylesheet version="1.0"
> > xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
> >
> >   <xsl:template match="Now">
> >     <b>Date/Time:</b><xsl:apply-templates/>
> >   </xsl:template>
> >
> >   ... More templates ...
> >
> > </xsl:stylesheet>
> >
> > So what I do is take the "Now" template and put it in a separate file
> > called "other.xsl" and add an include like this:
> >
> > <?xml version="1.0"?>
> > <xsl:stylesheet version="1.0"
> > xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
> >
> >  <xsl:include href="stylesheets/other.xsl"/>
> >
> >   ... More templates ...
> >
> > </xsl:stylesheet>
> >
> > Here's other.xsl:
> >
> > <xsl:stylesheet version="1.0"
> > xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
> >
> >   <xsl:template match="Now">
> >     <b>Date/Time:</b><xsl:apply-templates/>
> >   </xsl:template>
> >
> > </xsl:stylesheet>
> >
> > I know it's finding the other.xsl file because I get an exception if I use
> > an incorrect href.  However, when using an include cocoon no longer
> > applies the "Now" template.  This must be simple.  What am I doing wrong?
> > Thanks for any and all tips!
> >
> >
> >
> >
> > ---------------------------------------------------------------------
> > Please check that your question  has not already been answered in the
> > FAQ before posting.     <http://xml.apache.org/cocoon/faq/index.html>
> >
> > To unsubscribe, e-mail:     <[EMAIL PROTECTED]>
> > For additional commands, e-mail:   <[EMAIL PROTECTED]>
>
> --
> Kind regards,
> Yves Vindevogel
>
> Implements
> Kortrijkstraat 2 bus 1  --  9700 Oudenaarde  --  Belgium
> Phone/Fax: +32 (55) 45.74.73  --  Mobile: +32 (478) 80.82.91
> Mail: [EMAIL PROTECTED]  --  www.implements.be
>
> Quote: The winner never says participating is more important than winning.
>
> ---------------------------------------------------------------------
> Please check that your question  has not already been answered in the
> FAQ before posting.     <http://xml.apache.org/cocoon/faq/index.html>
>
> To unsubscribe, e-mail:     <[EMAIL PROTECTED]>
> For additional commands, e-mail:   <[EMAIL PROTECTED]>
>


---------------------------------------------------------------------
Please check that your question  has not already been answered in the
FAQ before posting.     <http://xml.apache.org/cocoon/faq/index.html>

To unsubscribe, e-mail:     <[EMAIL PROTECTED]>
For additional commands, e-mail:   <[EMAIL PROTECTED]>

Reply via email to