RE: how to disable html tag checking

2012-11-08 Thread nhhockeyplayer nashua
My solution being... ${someThingSpecial} ${someThingEvenMoreSpecial} or actually... with twisted logic omitted

RE: how to disable html tag checking

2012-11-08 Thread nhhockeyplayer nashua
Guys, Thanks for all the wonderful help. I was able to get past this from my last message and sneak past the married tag parser. Ken

Re: how to disable html tag checking

2012-11-08 Thread Geoff Callender
Have you tried using If and/or Loop? The following are all valid XHTML. eg. controlling rows... eg. controlling columns... eg. looping for extra columns...

Re: how to disable html tag checking

2012-11-08 Thread Peter Wendorff
Am 08.11.2012 04:17, schrieb nhhockeyplayer nashua: Hi Folks, Tapestry is validating html markup in the templates. If I specify something like this... ${someThingSpecial} It flags the error... which can be nice to have. But i

Re: how to disable html tag checking

2012-11-08 Thread Thiago H de Paula Figueiredo
On Thu, 08 Nov 2012 01:17:37 -0200, nhhockeyplayer nashua wrote: Hi Folks, Hi! Tapestry is validating html markup in the templates. This isn't correct. Tapestry won't complain about a inside a , which is invalid HTML. Tapestry just parses templates as XML.

RE: how to disable html tag checking

2012-11-07 Thread nhhockeyplayer nashua
@tapestry.apache.org Subject: RE: how to disable html tag checking Date: Wed, 7 Nov 2012 22:55:17 -0500 this is the error I am trying to avoid... An unexpected application exception has occurred.java.lang.RuntimeExceptionException assembling root component of page Home: Failure parsing

Re: how to disable html tag checking

2012-11-07 Thread Andreas Andreou
why not them remove and replace that with some code? On Thu, Nov 8, 2012 at 5:55 AM, nhhockeyplayer nashua < nhhockeypla...@hotmail.com> wrote: > > this is the error I am trying to avoid... > > An unexpected application exception has > occurred.java.lang.RuntimeExceptionException > assembling

RE: how to disable html tag checking

2012-11-07 Thread nhhockeyplayer nashua
this is the error I am trying to avoid... An unexpected application exception has occurred.java.lang.RuntimeExceptionException assembling root component of page Home: Failure parsing template classpath:org/tynamo/examples/hibernatesecurity/components/Gallery.tml: The element type "tr" must be

RE: how to disable html tag checking

2012-11-07 Thread nhhockeyplayer nashua
This is where it talks about well-formed-ness http://tapestry.apache.org/component-templates.html I have a very special case where I need to turn off the closing tag logic so I can do something programmable. I am a qualified developer and mature enough to track my own markup. And plus I have g