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: ext func


Shruti, I don't know if this will be of much help, or if it's what you're 
looking for but this is how we used a Java extension ...

At the beginning of the XSL:

<?xml version="1.0"?>
<xsl:stylesheet
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
	xmlns:lxslt="http://xml.apache.org/xslt";
	xmlns:testIndent="testExtensions"
	extension-element-prefixes="testIndent"
	version="1.0">
<lxslt:component prefix="testIndent" elements="init" functions="setIndent">
	 <lxslt:script lang="javaclass" src="testExtensions"/>
</lxslt:component>

<!--removed coding-->

<xsl:template match="poetry-line">
	<div class="poetry-line">
	<xsl:if test="@indent">
		<xsl:value-of disable-output-escaping="yes" 
select="testIndent:setIndent(string(@indent))" />
	</xsl:if>
	<xsl:apply-templates /></div>
</xsl:template>

<!--removed coding-->

Hope this helps.
Mattio

>From: "shruti" <shruti@noida.hcltech.com>
>Reply-To: xsl-list@lists.mulberrytech.com
>To: <xsl-list@lists.mulberrytech.com>
>Subject: [xsl] ext func
>Date: Mon, 18 Jun 2001 15:56:17 +0530
>
>can somebody help me in using extension functions in xpath expressions.
>it would be really helpful if i can get some examples on how to use
>extension functions like tokenize, distinct  in xpath expressions...
>
>
>thanx..
>shruti
>
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>

_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com


 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]