Re: Tapestry 5.3.5

2012-08-30 Thread robert baker
Tapestry Team, It should be explicitly said: Thanks for the continued development on Tapestry 5. Les Baker On Thu, Aug 30, 2012 at 2:42 PM, Christian Riedel wrote: > Yay, that would make 2 more releases before christmas! > > > Am 30.08.2012 um 19:47 schrieb Howard Lewis Ship: > >> Catch it whil

Hidden component semantics changed (was Re: [5.3.4] Ordering of Actions...)

2012-08-05 Thread robert baker
ight affect the ordering if the >> Hidden and the TextField were in different fragments (as each fragment >> has its own t:formdata, and order of operations is not well defined). >> >> On Fri, Aug 3, 2012 at 1:27 AM, robert baker wrote: >>> It occurred to me a

Re: [5.3.4] Ordering of Actions between the TextField and Hidden components

2012-08-03 Thread robert baker
It occurred to me after I typed this that my assumptions were probably wrong, so please disregard. Apologies, Les Baker On Fri, Aug 3, 2012 at 4:04 AM, robert baker wrote: > Hi, > > I've stumbled on an interesting problem in trying to upgrade to 5.3.4 > that I am stumped. I a

[5.3.4] Ordering of Actions between the TextField and Hidden components

2012-08-03 Thread robert baker
Hi, I've stumbled on an interesting problem in trying to upgrade to 5.3.4 that I am stumped. I am getting a "null term in property expression" exception with some template markup that looks like the following: ... ... Just to be clear: the "primaryCode" object is wired up in the page class and

Re: [T5.2.6] Component class transformation on initialized private instance fields

2012-01-09 Thread robert baker
ker On Thu, Jan 5, 2012 at 5:53 AM, Thiago H. de Paula Figueiredo wrote: > On Thu, 05 Jan 2012 03:35:53 -0200, robert baker > wrote: > >> Hi all, > > > Hi! > > >> When a page/component is transformed (in version 5.2.6) and there is a >> field like the foll

Re: The best way to use Stacks to combine css and javascript?

2012-01-04 Thread robert baker
Would it be possible to put all three in one stack, or does 1.css and 3.css have conflicting rules? I think the intended use of the stack functionality was to make an all (or mostly) inclusive one for your entire app/library and re-use it in many places; the rationale being that the savings in num

[T5.2.6] Component class transformation on initialized private instance fields

2012-01-04 Thread robert baker
Hi all, When a page/component is transformed (in version 5.2.6) and there is a field like the following: private List aList = new ArrayList(); Does the inline initialization claim the field at transformation-time so that it is not cleared during request detachment? ("Claim" as in what the @Reta

Re: ajax improvements in 5.3

2012-01-02 Thread robert baker
Hi, Here's what I do to do to raise an arbitrary AJAX event on a component: 1. Inject ComponentResources into the component (let's say the variable is named "resources"). 2. In the component's setupRender handler, call resources.createEventLink and store the returned Link in a field. You can bake

Re: Show your Tapestry support!

2011-12-01 Thread robert baker
For what it's worth, I registered and put in my $(1/50). Thanks Howard for letting us know about the announcement. Les Baker On Thu, Dec 1, 2011 at 4:21 PM, Howard Lewis Ship wrote: > Ok folks, time to strike while the iron's hot.  Major release > announcements are a great way to get people int

Re: [T5.2.6] Setting up IoC to allow ordered configuration of a pub/sub system

2011-11-29 Thread robert baker
called by clients. I didn't really want to do that. I appreciate knowing that autobuild always makes a new instance, though; that clarifies a few things. Thanks again, Les Baker On Tue, Nov 29, 2011 at 3:09 PM, Thiago H. de Paula Figueiredo wrote: > On Tue, 29 Nov 2011 18:04:33 -

[T5.2.6] Setting up IoC to allow ordered configuration of a pub/sub system

2011-11-29 Thread robert baker
Hi all, I set up a service, UserEventHub, to send notifications of logon and logoff application wide in our app. Right now, one listener is wired up to it, SessionTrackerImpl, an implementation class of another service in my app, SessionTracker. (SessionTrackerImpl also implements UserEventListen

Re: @Property and @Parameter

2011-08-29 Thread robert baker
Maybe I'm confused here, but @Parameter and @Property seem to be orthogonal and not mutually exclusive. (from the point-of-view of the component) @Parameter : data flows from container to this field (and vice versa) @Property : data flows from contained components to this field (and vice versa) I

Does message catalog retrieval look at containing component/page catalogs?

2011-08-10 Thread robert baker
Hi all, When you supply a message key, does Tapestry 5.1 scan the catalogs of containing components and/or pages? For example, if Index.tml contained component Foobar, and Foobar.tml had a TextField with a t:id="xyzzy", would Index.properties get hit for "xyzzy-label" after Foobar.properties gets

Tapestry principles/tips learned during training session

2011-08-06 Thread robert baker
Hi, I've been in Tapestry training for the past week, have really enjoyed it, and picked up some useful stuff along the way (if you've been seeing "Clemson University" run across the tweet box, that was connected with us). Mr. Lewis-Ship really gave a broad and deep overview of how Tapestry works