Re: SeeSaw interesting news

2011-01-30 Thread Ben Gidley
It has a little to do with it - but not much! We generate out an MRSS feed which Boxee consume. The MRSS feed is implemented as a T5 template. The rest of the integration just uses boxee's browser to point at the (normal) web site. On Sat, Jan 29, 2011 at 9:20 PM, Alex Kotchnev wrote: > I just

Re: Struggling with Ajax in T5 ...

2011-01-30 Thread Inge Solvoll
Hi! I haven't read all of this thread, but I have one suggestion: You should "hijack" your onclick handlers with javascript to do additional work before or after calling the original onclick. Don't know how experienced you are with javascript, but it will look something like this: var oldOnclick

Re: [ANNOUNCEMENT] upcoming module: tynamo-federatedaccounts

2011-01-30 Thread Angelo C.
with this, I should take a look at tapestry-security. -- View this message in context: http://tapestry.1045711.n5.nabble.com/ANNOUNCEMENT-upcoming-module-tynamo-federatedaccounts-tp3363245p3364082.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Re: [ANNOUNCEMENT] upcoming module: tynamo-federatedaccounts

2011-01-30 Thread Alex Kotchnev
Kalle, very cool - I've been looking for a good reason to finally dump Spring from my app and Tynamo seems to be pretty close to being that reason. So far, I've been using it to handle some transaction management, and to support Spring Security (for the T-S-S module). I poked through T5's own Hi

Re: t:select enum conflict

2011-01-30 Thread Paul Stanton
Sorry, I realise I'm not being very easy to understand, i'll clarify: 1. Yes thiago, I tried that and it doesn't work. It doesn't resolve the message entry. Which makes sense given the source code for EnumSelectModel and TapestryInternalUtils (I have checked 5.1 and 5.2) using enumClass.getSim

Re: t:select enum conflict

2011-01-30 Thread Paul Stanton
Also, There's a bug in that class if you're using an inline enum: public static String getLabelForEnum(Messages messages, Enum value) { String prefix = lastTerm(value.getClass().getName()); return getLabelForEnum(messages, prefix, value); } lastTerm will return Class

Re: t:select enum conflict

2011-01-30 Thread Paul Stanton
yes thiago, tried that (t5.1) is that maybe a 5.2 thing? org.apache.tapestry5.internal.TapestryInternalUtils.java: public static String getLabelForEnum(Messages messages, String prefix, Enum value) { String name = value.name(); String key = prefix + "." + name;

Re: t:select enum conflict

2011-01-30 Thread Thiago H. de Paula Figueiredo
On Sun, 30 Jan 2011 21:21:37 -0200, Paul Stanton wrote: Hi all, Hi! A hypothetical: I have 2 separate entities, each with a 'Type' enum with different options. Both of these are used in multiple components by t:select input fields. How do I provide my 'translations' in my 'application

t:select enum conflict

2011-01-30 Thread Paul Stanton
Hi all, A hypothetical: I have 2 separate entities, each with a 'Type' enum with different options. Both of these are used in multiple components by t:select input fields. How do I provide my 'translations' in my 'application message catalog' so that they do not conflict? --

Re: What does zone="^" mean?

2011-01-30 Thread Paul Stanton
does that surprise you? eastereggs for the tapestry elite haha On 16/01/2011 6:08 AM, Alex Kotchnev wrote: Clever.. although I don't think I've seen this in the docs.. Cheers, Alex K On Fri, Jan 14, 2011 at 8:06 PM, Howard Lewis Ship wrote: It's new in 5.2. The "^" is evaluated on the cl