|
Hi all, I have this snippet in an XSP file: <xsp:logic> for
(java.util.Iterator it = ajs.getMods().iterator(); it.hasNext(); ) { String mod = it.next().toString(); <xsp:expr>mod</xsp:expr><br/> } </xsp:logic> and the following code is generated: for
(java.util.Iterator it = ajs.getMods().iterator(); it.hasNext(); ) { String
mod = it.next().toString(); (mod) this.contentHandler.startElement("", "br", "br",
xspAttr); xspAttr.clear(); } I think that the right code would
be: for
(java.util.Iterator it = ajs.getMods().iterator(); it.hasNext(); ) { String
mod = it.next().toString(); this.characters(mod); <------------------------ this.contentHandler.startElement("", "br", "br",
xspAttr); xspAttr.clear(); } Is this really a bug of the XSP generator? -------- David |
- Re: Possible bug in XSP generator Carmona Perez, David
- Re: Possible bug in XSP generator Antonio Gallardo
- Re: Possible bug in XSP generator Joerg Heinicke
- Re: Possible bug in XSP generator Olivier Billard
- RE: Possible bug in XSP generator Carmona Perez, David
- RE: Possible bug in XSP generator Carmona Perez, David
- RE: Possible bug in XSP generator Antonio Gallardo
- RE: Possible bug in XSP generator Carmona Perez, David
- RE: Possible bug in XSP generator Carmona Perez, David
- Re: Possible bug in XSP generator Joerg Heinicke
- Re: Possible bug in XSP generator Geoff Howard
