hi,
i using sablot 1.0 under debian linux.
the following skript works fine with sablot 0.9x but with sablot 1.x not.
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE xsl:stylesheet [
<!ENTITY nbsp " ">
<!ENTITY copy "©">
<!ENTITY bull "•">
<!ENTITY raquo "»">
<!ENTITY middot "·">
]>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="html" encoding="iso-8859-1" version="1.0" indent="yes"/> <xsl:param name="login"/> <xsl:param name="module_id"/> <xsl:param name="module_id2"/>
<xsl:template match="navigation">
<script language="javascript">
function changeMenue(target1)
{
top.parent.menue.location.replace(target1);
}
function built_menue() {
<xsl:for-each select=".navlayer1[(@active='yes') or (@active='no')]"> </xsl:for-each> } </script> </xsl:template> </xsl:stylesheet>
---------------------
There seems to be an error at:
<xsl:for-each select=".navlayer1[(@active='yes') or (@active='no')]">
</xsl:for-each>
Whats new or changed in the new sablot versions?
Thanks for help.