VS: tapestry + maven + jboss tools + hot deploying ?

2014-03-14 Thread Ville Virtanen
Live class reloading works in JBoss too, at least the last time I used it. (7.x.x) You have to make your IDE to compile directly to the web container exploded directory structure. This is specific to your IDE / web container, and not really Tapestry. First of all read this:

working with DOM and text for implementing realtime chat

2014-03-14 Thread John
Hi, I'm trying to emulate something like Facebooks chat facility. I need to display a list of messages that make up a conversation. Every so often I want to append any new messages to the end of the list. I also need all of the output text fully escaped so that \n becomes br/ and so forth.

Re: working with DOM and text for implementing realtime chat

2014-03-14 Thread Lance Java
You could use tapestry-atmosphere https://github.com/uklance/tapestry-atmosphere https://github.com/uklance/tapestry-atmosphere/wiki/PushTarget-Component http://tapestry-atmosphere.uklance.cloudbees.net/chatdemo (live chat demo) Or tapestry-cometd https://github.com/uklance/tapestry-cometd

Re: VS: tapestry + maven + jboss tools + hot deploying ?

2014-03-14 Thread Thiago H de Paula Figueiredo
On Fri, 14 Mar 2014 04:06:04 -0300, Ville Virtanen ville.virta...@orientimport.fi wrote: on the fly that it manages, but not the others. I've seen that Tapestry's offering is enough for most setups, but I've always struggled a bit with large multiproject setups, as only the main project is

Show and tell / New 5.4 app live.

2014-03-14 Thread George Christman
I'd like to first say thanks to all who have contributed to the on going evolution of Tapestry and it's support. I'm a long time user of Tapestry starting with version 3 in 2005 and I must say leaps and bounds have been made since then. I'd also like to say thanks to all who have continued to

Caching of assets (js libraries, css etc.)

2014-03-14 Thread Luke Wilson-Mawer
In previous version the asset URLs contained the version, so they would change each time the version changed. In 5.4 this doesn't seem to be the case. Am I mistaken? If not, is this by design? And what's to stop assets being cached between releases of different versions of the software? Kind

Re: Caching of assets (js libraries, css etc.)

2014-03-14 Thread Howard Lewis Ship
For normal assets, the URL directly includes a content hash value. This covers stylesheets, images, fonts, and JavaScript libraries. In addition, assets provide both far-future expires headers and ETags, to assist with caching in the client or intermediate servers. Modules are a bit different

Re: VS: tapestry + maven + jboss tools + hot deploying ?

2014-03-14 Thread leandroaispuru
Thanks for your answers. I found the solution in jboss forum. In case someone faces the same problem here is the link with the correct answer by Snjezana Peco:

Re: working with DOM and text for implementing realtime chat

2014-03-14 Thread Boris Horvat
Lance did you had any issues running it with 5.4. I plan to update my stuff in a month from now so just wondering is there is something to look out for On 14 Mar 2014 09:34, Lance Java lance.j...@googlemail.com wrote: You could use tapestry-atmosphere

Re: working with DOM and text for implementing realtime chat

2014-03-14 Thread Lance Java
Hi Boris, I haven't had either running under 5.4. I'm guessing by 5.4 you really mean 5.4/jquery? Im guessing tapestry-atmosphere would work with 5.4/prototype. I think there's a single line of js that relies on prototype's json utils which will need to be tweaked to the jquery equivalent.

Re: 5.4-beta3 JavaScript backward compatibility issue? - Tynamo CKEditor 0.0.1 with tapestry 5.4-beta3 does not seem to work

2014-03-14 Thread Dragan Sahpaski
Hi Balázs, You're right and it is a bug in tapestry. JavaScriptSupport.addInitializerCall is not backwards compatible when using a JSONArray. I filled a JIRA with a patch https://issues.apache.org/jira/browse/TAP5-2300 so please follow. I hope it get's resolved soon. If not I'll probably release a

Re: Caching of assets (js libraries, css etc.)

2014-03-14 Thread Luke Wilson-Mawer
OK, thanks for this. Seems like we're probably safe. Thanks, Luke On Fri, Mar 14, 2014 at 5:32 PM, Howard Lewis Ship hls...@gmail.com wrote: For normal assets, the URL directly includes a content hash value. This covers stylesheets, images, fonts, and JavaScript libraries. In addition,

Re: working with DOM and text for implementing realtime chat

2014-03-14 Thread Boris Horvat
yea I am using tapestry-cometd with jquery currently so once I do the migration I will use 5.4/jquery. Thanks. I will try this in couple of weeks and see what happens :) Cheers On Fri, Mar 14, 2014 at 7:55 PM, Lance Java lance.j...@googlemail.comwrote: Hi Boris, I haven't had either running

object based security (owner)

2014-03-14 Thread Ken in Nashua
Hi Folks, I want to create a web site data model whereby... whatever a user creates... they own. And when they come back to the website to operate again... they will see only what they own. Its not as much as page based security as it is object based security... as in model object. Are