Hello again,
this problem has remained unsolved to me. Am I the only with this problem.

I have developed my jsp pages with struts template library.
In version 3.0.6 + jetty I have no problem.

When I try my app on 3.2.0rc4 templates elements are replicated!

so 4 example, in v3.2.0, my index.jsp is

//--------------------------------------------------------------------------------------------------
<%@ page
   contentType="text/html;charset=UTF-8"
  session="true"
  isThreadSafe="true"
  isErrorPage="false"
%>

<%@ taglib uri="/WEB-INF/struts-html-el.tld"
       prefix="html-el" %>
<%@ taglib uri="/WEB-INF/struts-bean-el.tld"
       prefix="bean-el" %>
<%@ taglib uri="/WEB-INF/struts-logic-el.tld"
       prefix="logic-el" %>
<%@ taglib uri="/WEB-INF/c.tld"
       prefix="c" %>
<%@ taglib uri="/WEB-INF/x.tld"
       prefix="x" %>



<html-el:html>
<head>
<html-el:base/> <title><bean-el:message key="title.index"/></title></head> <link rel="stylesheet" href="./css/links.css" TYPE="text/css"/>
</head>
<body>
<br/><br/><br/>
<p>
<c:if test='${sessionScope.goodbye != null}'>
<bean-el:message key='label.goodbye'/>
<c:remove var='goodbye' scope='session'/>
</c:if>
</p>
<p> <TABLE cellpadding='0' border='0' cellspacing='10' width='100%'>
<TBODY>
<tr><td align='CENTER'>
<html-el:link page="/main.do" styleClass="pix">
<img height='64' width='180' alt='WebAppointments 1.0 logo' border='0' hspace='0'
vspace='0' src='/webappointments/img/smalllogo.png'/>
</html-el:link>
</td></tr>
<tr><td align='CENTER'>
<html-el:link page="/main.do">
<bean-el:message key="link.book.online"/>
</html-el:link>
</td></tr>
</TBODY>
</TABLE>
</p>
</body>
</html-el:html>
//--------------------------------------------------------------------------------------------------




but the transformed code results like this one



/////-------------------------------------------------------------------------------------------











<html>
<head>
<base href="http://192.168.100.2:8080/webappointments/index.jsp";> <title>WebAppointments v1.0</title></head> <link rel="stylesheet" href="./css/links.css" TYPE="text/css"/>


</head>
<body>
<br/><br/><br/>
<p>
</p>
<p>
<table cellpadding='0' border='0' cellspacing='10' width='100%'>
<tbody>
<tr><td align='CENTER'>
<a href="/webappointments/main.do;jsessionid=1ehie49f3ahjf" class="pix"><img height='64' width='180' alt='WebAppointments 1.0 logo' border='0' hspace='0' vspace='0' src='/webappointments/img/smalllogo.png'/>
Prenotazioni Online
<img height='64' width='180' alt='WebAppointments 1.0 logo' border='0' hspace='0' vspace='0' src='/webappointments/img/smalllogo.png'/></a>


</td></tr>
<tr><td align='CENTER'>
<a href="/webappointments/main.do;jsessionid=1ehie49f3ahjf"><img height='64' width='180' alt='WebAppointments 1.0 logo' border='0' hspace='0' vspace='0' src='/webappointments/img/smalllogo.png'/>
Prenotazioni Online
<img height='64' width='180' alt='WebAppointments 1.0 logo' border='0' hspace='0' vspace='0' src='/webappointments/img/smalllogo.png'/>
Prenotazioni Online</a>
</td></tr>
</tbody>
</table>


</p>
</body>


</html>


///======================================================


What's that???






-------------------------------------------------------
This SF.net email is sponsored by:
The Definitive IT and Networking Event. Be There!
NetWorld+Interop Las Vegas 2003 -- Register today!
http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to