Got it guys !!!!
Thanks to Askild & Grek ...
Heres what I had to change,
<xsl:template match="results">
<frag>
<xsl:apply-templates select="sql:rowset/sql:row/sql:uri"/>
</frag>
</xsl:template>
<xsl:template match="sql:uri">
<cinclude:include src="{.}"/>
</xsl:template>
</xsl:stylesheet>
=======================================================
Nothing much but just that I was not sure of things.
And Thorsten, to let you know builddocument.xsl was following buildsearch.xsl in my
pipeline ....Have a look !!!
<map:match pattern="adh/user/search">
<map:generate src="adh/resources/search.xml"/>
<map:transform src="adh/styles/buildsearch.xsl">
<map:parameter name="use-request-parameters" value="true"/>
</map:transform>
<map:transform type="sql">
<map:parameter name="use-connection" value="portal"/>
</map:transform>
<map:transform src="adh/styles/builddocument.xsl"/>
<map:transform type="cinclude"/>
<map:serialize type="html"/>
</map:match>
Now I have more to do !!!!
Thanks anyways, I might need you help again guys.
Regards
Sam
On Tue, 11 May 2004 Askild Aaberg Olsen wrote :
>Sam wrote:
> > <xsl:for-each select="sql:rowset/sql:row/sql:uri">
> > <xsl:apply-templates select="sql:uri"/>
> > </xsl:for-each>
>
>This is the same as:
>
><xsl:apply-templates select="sql:rowset/sql:row/sql:uri/sql:uri"/>
>
>What you need is:
>
><xsl:apply-templates select="sql:rowset/sql:row/sql:uri"/>
>
>You don't need the <xsl:for-each/> then.
>
>Askild
>-
>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>