Re: (newbie) Tapestry generated

2008-11-25 Thread Howard Lewis Ship
I'm thinking that the current fix is broken, and the right solution may be that for HTML markup, always use EndTagStyle.REQUIRE. That means a in a template will render a , but other than than those minor quibbles, it will work more in line with how SGML/HTML treats empty elements. On Tue, Nov 25,

Re: (newbie) Tapestry generated

2008-11-25 Thread akira
mber 25, 2008 4:12:41 PM JST To: Tapestry users Subject: Re: (newbie) Tapestry generated Tapestry is meant to generate valid XHTML, which means the tag should be closed, but due to a bug introduced recently it appears not to with certain tags see: https://issues.apache.org/jira/browse/TAP5-3

Re: (newbie) Tapestry generated

2008-11-25 Thread Nicolas Charles
You could override the MarkupWriterFactory to prevent the abreviation of the tag It should look like this public class XhtmlMarkupWriterFactoryImpl implements MarkupWriterFactory { private final String applicationCharset; private final MarkupModel xmlModel = new DefaultMarkupModel()

Re: (newbie) Tapestry generated

2008-11-24 Thread Peter Stavrinides
Tapestry is meant to generate valid XHTML, which means the tag should be closed, but due to a bug introduced recently it appears not to with certain tags see: https://issues.apache.org/jira/browse/TAP5-333 and vote for it to be fixed, in the meantime use a instead, it will work... I use the sam

Re: Newbie Tapestry

2008-03-11 Thread Patrick Moore
Why don't we just move T5 up to T7 just so that we can say that T6 is the "old" version :-) -Pat

Re: Newbie Tapestry

2008-03-07 Thread David Marquis
AND, not to forget references to Tapestry 'Six' : Rob Smeets (?) quoted: > I googled and also learnt there is Tapestry -Six- in the works which would also be a whole new beast not compatible with all previous Tapestry versions. WTheck ? Come on, give us a break. -- David On 7-Mar-08, at 6:2

Re: Newbie Tapestry

2008-03-07 Thread Davor Hrg
I really hope there are no Tapestry trolls on wicket mailing list, like you are one here. I'd like not to feed the troll, but I feel the need to mark you as troll, so that new users don't get alarmed too much by your fud. Like for chain letters and spam, it takes a moment to recognize the pattern

Re: Newbie Tapestry

2008-03-07 Thread Angelo Turetta
Rob Smeets wrote: Hi Gabriel, I dug into this list and found a routine that when someone dare to ask a legitimate question that probably may sound "politically incorrect" to some members, he gets the troll label. Why? I think that's too easy to do. Please answer my questions, if you have one.

Re: Newbie Tapestry

2008-03-07 Thread Rob Smeets
Hi Gabriel, I dug into this list and found a routine that when someone dare to ask a legitimate question that probably may sound "politically incorrect" to some members, he gets the troll label. Why? I think that's too easy to do. Please answer my questions, if you have one. Rob On Fri, Mar 7, 2

Re: Newbie Tapestry

2008-03-07 Thread Gabriel Landais
Rob Smeets a écrit : Hi, [...] Rob Don't feed the troll Gabriel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Newbie - Tapestry and Databases

2007-03-02 Thread Hernâni Cerqueira
You could try torque from apache, it's easy to use and set up, and anyone who knows how to use an import staement knows how to integrate torque with tapestry. If you want some more info feel free to ask... Hernâni Damian Sobieralski escreveu: I am wondering if anyone could assist me in resour

Re: Newbie - Tapestry and Databases

2007-03-02 Thread Olivier Jacquet
For Tapestry 4 there is the excellent book by Tong Ka Iok which covers database access and hibernate in detail. http://www.agileskills2.org/EWDT/ Damian Sobieralski wrote: I am wondering if anyone could assist me in resources for working with databases? As a newbie, I've went through bo

Re: [newbie] Tapestry-Spring

2006-11-22 Thread Daniel Tabuenca
That's correct. I use @Connfigurable to inject spring objects into tapestry pages. The downside is the need to include an xml bean configuraion in spring for each page I want to inject to, although I've been using the spring-annotation project to define the beans using annotations rather than xml.

Re: [newbie] Tapestry-Spring

2006-11-22 Thread Cyrille37
Daniel Tabuenca a écrit : I think what you read there is not necessarily true. If you are using Spring 2.0 and bean scopes or target sources then spring will give you a proxy and automatically manage the lifecycle for you. Also keep in mind that you can easily use spring itself to inject the bean

Re: [newbie] Tapestry-Spring

2006-11-22 Thread Daniel Tabuenca
I think what you read there is not necessarily true. If you are using Spring 2.0 and bean scopes or target sources then spring will give you a proxy and automatically manage the lifecycle for you. Also keep in mind that you can easily use spring itself to inject the beans into a tapestry page by u