RE: strange markup being injected

2013-05-10 Thread nhhockeyplayer nashua
Well thanks guys... I appreciate the attention. I will see what the weekend gives.

Re: strange markup being injected

2013-05-10 Thread Thiago H de Paula Figueiredo
On Thu, 09 May 2013 23:09:16 -0300, nhhockeyplayer nashua wrote: Hi Thiago... Hi! sorry about half answers... just trying to do things concurrently. No problem. :) I couldn't find anything wrong or that could cause this weird issue you're having and I'm running out of ideas. :( -- T

Re: strange markup being injected

2013-05-10 Thread Lance Java
Have you configured a non-standard XMLReader? Take a look at the docs here http://www.saxproject.org/apidoc/org/xml/sax/helpers/XMLReaderFactory.html#createXMLReader() Tapestry's template parsing is done by SaxTemplateParser / XMLtokenStream which ultimately delegates to an XMLReader created via

RE: strange markup being injected

2013-05-09 Thread nhhockeyplayer nashua
Hi Thiago... sorry about half answers... just trying to do things concurrently. Ok here i s my web.xml really not doing anything else http://java.sun.com/dtd/web-app_2_3.dtd";> pphl tapestry.app-package org.tynamo.examples.pphl

RE: strange markup being injected

2013-05-09 Thread nhhockeyplayer nashua
Hi Thiago... sorry for delay...been coding all day. ok here is sendBroadcast... it just rifles out a broadcast to a mailing list using javamail I hid the port 3's for safety but it works beautiful just have to fix the rendering private void sendBroadcast() throws Exception {

Re: strange markup being injected

2013-05-09 Thread Thiago H de Paula Figueiredo
On Thu, 09 May 2013 17:54:16 -0300, nhhockeyplayer nashua wrote: I had hoped that was it... but not... even though it made it into dozen or more of my templates... Tapestry does catch this kind of error because its templates must be valid XML and your template, before the correction, was

RE: strange markup being injected

2013-05-09 Thread nhhockeyplayer nashua
I had hoped that was it... but not... even though it made it into dozen or more of my templates... the problem still persists. half a comment.

RE: strange markup being injected

2013-05-09 Thread nhhockeyplayer nashua
yikes... MESSAGE --> notice the "-->" on the right hand side of my property override? i got a hunch... but testing it out now. that might be it sne

Re: strange markup being injected

2013-05-09 Thread Thiago H de Paula Figueiredo
On Thu, 09 May 2013 15:21:20 -0300, nhhockeyplayer nashua wrote: @Log @CommitAfter @OnEvent(EventConstants.SUCCESS) Link success() { try { sendBroadcast(); } catch (Exception ex) { System.out.println(ex); }

RE: strange markup being injected

2013-05-09 Thread nhhockeyplayer nashua
Basically... on SUBMIT all i want the BroadCastAdd.tml to do is fabricate and send the broadcast (which it does successfully). but I want it to go back to show the broadcast entity or the list of broadcasts using the grid. What I see on the screen is ... a jquery carousel showing all the images

RE: strange markup being injected

2013-05-09 Thread nhhockeyplayer nashua
I modeled a thing called BROADCAST. And my page for BROADCAST is as follows... BroadcastAdd.tml Here that is..,. http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> http://tapestry.apache.org/schema/tapestry_5_3.xsd"; xmlns:p="tapestry:parameter">

RE: strange markup being injected

2013-05-09 Thread nhhockeyplayer nashua
Thanks Thiago for the generous attention. just waking up... been coding all night and listening to david sereda on astrophysics. ' Ok here is the tml... This one is from the framework... SHOW.TML (i believe this is the guy geting injected somehow...this is reproducable everytime) http://www.w

Re: strange markup being injected

2013-05-09 Thread Thiago H de Paula Figueiredo
On Thu, 09 May 2013 02:08:09 -0300, nhhockeyplayer nashua wrote: Hi Guys, Hi! Sorry if I prompted any buzz... Here is the source code... That's quite weird. One template is inserted commented out and a little modified in the output of another. Is there anything else you're running?

Re: strange markup being injected

2013-05-08 Thread Thiago H de Paula Figueiredo
On Wed, 08 May 2013 20:51:27 -0300, nhhockeyplayer nashua wrote: Hi Folks, Hi! On EDIT page... I have a problem... the whole page markup becomes corrupted. Please get the source code of the page from the browser (usually Control-U) and post it here as a whole. web.xml please too, as

Re: strange markup being injected

2013-05-08 Thread Howard Lewis Ship
There's a lot going on there far from vanilla Tapestry 5. I'd start looking to see if something else in the mix is involved, such as odd client-side code. I'd also use the developer tools to verify what is coming over the wire, and when. On Wed, May 8, 2013 at 4:51 PM, nhhockeyplayer nashua < nh