formatting attributes

2014-05-13 Thread Aristedes Maniatis
I understand that I can do this in the tml: But I want to put the value into an attribute to suit a Google schema microformat, like this: This does not work. What am I missing here? Ari Maniatis -- --> Aristedes Maniatis ish http://www.ish.com.au Level 1, 3

Re: Tapestry 5.4 Select: Can't stop tapestry generating it's own clientId

2014-05-13 Thread Thiago H de Paula Figueiredo
On Mon, 12 May 2014 15:00:34 -0300, Lance Java wrote: Note: Under the hood, AbstractField is calling allocatedClientId = javaScriptSupport.allocateClientId(clientId); Yeah, this doesn't match the corresponding behavior in Zone, which uses the clientId as is if provided: clientId = resourc

Re: WebSocket for tapestry

2014-05-13 Thread Lance Java
In it's current state, it won't work with jquery as there's a tiny dependency on prototype's json support. There's possibly two lines of javascript that need to switch to jquery's json support. https://github.com/uklance/tapestry-atmosphere/blob/master/tapestry-atmosphere/src/main/resources/org/la

Re: WebSocket for tapestry

2014-05-13 Thread Bogdan Ivascu
Hi Lance, I did see numerous discussions around your implementation. My goal here is to try and get a better understanding of where and how this framework can be extended. I am however pressed for time and if I cannot get it to work, I will most likely end up using your implementation. Thanks, B

Re: WebSocket for tapestry

2014-05-13 Thread Lance Java
In particular, you'll be interested in the usage of HttpServletHttpServletRequestFilter. https://github.com/uklance/tapestry-atmosphere/blob/master/tapestry-atmosphere/src/main/java/org/lazan/t5/atmosphere/services/internal/HttpServletHttpServletRequestFilter.java https://github.com/uklance/tapest

Re: Invalidating a session

2014-05-13 Thread Thiago H de Paula Figueiredo
On Mon, 12 May 2014 11:04:40 -0300, Michael Gentry wrote: Hi Sanket, We use: @Inject private HttpServletRequest request; ... if (request.getSession(false) != null) request.getSession(false).invalidate(); However, since we also use an SSO, we have to remove all cookies

Asset placement t5.4

2014-05-13 Thread George Christman
Hi everyone, I'm getting the following error, (AssetSourceImpl.java:188) - Packaging of classpath assets has changed in release 5.4; Assets should no longer be on the main classpath, but should be moved to 'META-INF/assets/' or a sub-folder. Future releases of Tapestry may no longer support assets

Re: WebSocket for tapestry

2014-05-13 Thread Michael Dukaczewski
Is tapestry-atmosphere compatible with Tapestry 5.4? Am 13.05.14 10:27, schrieb Lance Java: In particular, you'll be interested in the usage of HttpServletHttpServletRequestFilter. https://github.com/uklance/tapestry-atmosphere/blob/master/tapestry-atmosphere/src/main/java/org/lazan/t5/atmosp

onValueChangedFrom in loop

2014-05-13 Thread Erich Gormann
Dear all, following situation: I coded a zone, inside the zone there is a loop and the loop renders rows containing form fields. One of the form fields is a select and every time the user changes the selection in it, the zone should be updated via an "onValueChangedFrom" event handler method.

Re: Possible to use a tapestry application for webservice and web front end development

2014-05-13 Thread Anbazhagan.G
Hi All, Thanks for your valuable suggestions. I will try and let you know. Regards, G.Anbazhagan On Saturday 03 May 2014 04:05 PM, Taha Siddiqi wrote: Hi If you are still looking at things , you can give http://facebook.github.io/react/ a try. And if you like functional programming try https

Re: WebSocket for tapestry

2014-05-13 Thread Lance Java
Take a look at tapestry-atmosphere [1] and tapestry-cometd [2] [1] https://github.com/uklance/tapestry-atmosphere [2] https://github.com/uklance/tapestry-cometd On 13 May 2014 02:10, "Bogdan Ivascu" wrote: > Hi everyone, > I want to add webSocket support for my tapestry project and need a few