You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by se...@us.ibm.com on 2000/08/01 14:47:05 UTC

ElemCallTemplate and Internationalization Support


Scott:

The ElemCallTemplate class has a non-public constructor, so I can't create
an instance in an extension.  I made it public on my machine and it seemed
to work OK.  Can that be fixed please?

Also, in your 7/16/2000 note about Internationalization support, you had in
test.xsl:

<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version
="1.0">
  <xsl:param name="lang" select="english"/>
      ....

I think to get the lang parameter to default correctly, that last line
should have been:
<xsl:param name="lang" select="'english'"/>

At least that's what it took for me to get it to work without passing in
the lang parameter.

Thanks

Chris Seekamp