This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: document() revisited


Marc, below is an excerpt of XSLT I used with XT to generate multiple files
using the xt:document. I haven't tested the bit below, but conceptually (I
hope) it works.

<!-- match parent -->
<xsl:template match="mother">
<!-- declare path parameter based on value-of file -->
<xsl:param name="path" select="file"/>
	<!-- call output template and pass %path% as parameter-->
	<xsl:call-template name="output">
	<xsl:with-param name="path"><xsl:value-of
select="$path"/></xsl:with-param>
	</xsl:call-template>
</xsl:template>


<xsl:template name="output">
<xsl:param name="path">files\default.htm</xsl:param>
<xt:document method="html" href="{$path}">
	<xsl:apply-templates/>
</xt:document>
</xsl:template>

> -----Original Message-----
> From:	Beckers, Marc [SMTP:Marc.Beckers@softwareag.com]
> Sent:	Wednesday, February 16, 2000 1:33 PM
> To:	'xsl-list@mulberrytech.com'
> Subject:	RE: document() revisited
> 
> 
> > I don't know what you mean by copying the result onto itself. 
> 
> I mean overwriting each file with an output file of the same name.
> 
> > Do you want
> > the result to be available for further processing? Then you 
> > need to store it
> > in a variable as a result tree fragment using copy-of and access the
> > variable with an extension function such as XT and Saxon 
> > have. It's not
> > possible in standard XSLT. 
> >
> 
> I'm using XT with the xt:document extension and am stuck on the
> href expression:
> 
> <xsl:template match="html">
>  <!-- find me the path and put in a variable: for each html 
>       instance, it is the text in the corresponding file element 
>       in the "mother" xml document -->
>   <xt:document method="html" href="{$path}">
>  <!-- copy-of result or apply-templates or whatever -->        
>    </xt:document>
> </xsl:template>
> 
> Any ideas on filling the href?
> 
> Thanks,
> Marc
> 
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]