Hello again.

New problem.. Now I'm trying to change the look & feel of the
side menu..

I went this way:
# cd /usr/local/src
# cp -p apache-lenya-1.2.4-src/build/lenya/webapp/lenya/xslt/navigation/menu.xsl publications/DTI/lenya/xslt/navigation/menu.xsl

and then modified publications/DTI/lenya/xslt/navigation/menu.xsl this way:

<xsl:template match="nav:site">
  <div id="menu">
    <div class="menuitem-a">Ciao</div>
    <xsl:apply-templates select="nav:node"/>
  </div>
</xsl:template>

and as I was expecting it did show a "Ciao" string as the
first menu item, but as I try to go on and add a table and
a image as follows:

<xsl:template match="nav:site">
  <div id="menu">
    <div class="menuitem-a">Ciao</div>
    <table width="192" border="0" cellspacing="0" cellpadding="0">
      <tr align="left" valign="top">
<td colspan="4"><img src="{$root}/images/organizzazione.gif" width="192" height="24" alt="Organizzazione"/></td>
      </tr>
    </table>
    <xsl:apply-templates select="nav:node"/>
  </div>
</xsl:template>

it blows up and show this error:

org.apache.excalibur.xml.xslt.XSLTProcessorException: Exception in creating Transform Handler

org.apache.cocoon.ProcessingException: Error executing pipeline.: org.apache.cocoon.ProcessingException: Error executing pipeline.: java.lang.RuntimeException: org.apache.excalibur.xml.xslt.XSLTProcessorException: Exception in creating Transform Handler

again, any hints?
--
               Roberto Nunnari -software engineer-
                    mailto:[EMAIL PROTECTED]
                    http://www.nunnisoft.ch
  Residenza Boschetto 12           tel/fax: +41-91-6046511
  6935 Bosco Luganese        """    mobile: +41-76-3208561
  Switzerland               (o o)
========================oOO==(_)==OOo========================



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to