Multi-Language Concept in Tapestry5

2014-06-12 Thread Anbazhagan.G
Hi all, I am developing web application using Tapestry5. In my application I want to integrate multilanguage concept. I have two properties files are app_it.properties and app_fr.properties. But without value, only key. app_it.properties aboutus= termsandcondns= privacyy= app_fr.properties

Re: Using tapestry tml as a mail template

2014-06-12 Thread Ilya Obshadko
On Wed, Jun 11, 2014 at 6:32 PM, Dmitry Gusev wrote: I agree with Ilya, > it may be easier to use some template engine for this. > > For example, we're using StringTemplate. > > The only issue when using external template engine is creating URLs to the > application, because you may be sending em

Re: [5.4-beta-10] providedChecksum is always different from the actualChecksum for a specific asset

2014-06-12 Thread Kristian Marinkovic
how are you running your app? i'm using run-jetty-run in Eclipse and never experienced the problem you describe. the etag is based on the content of the file. maybe there is another eclipse plugin changing your resources g, Kris On Tue, Jun 10, 2014 at 11:12 AM, Muhammad Gelbana wrote: > I pla

Re: [5.4-beta-10] providedChecksum is always different from the actualChecksum for a specific asset

2014-06-12 Thread Muhammad Gelbana
I'm using run-jetty-run (Eclipse plugin). I suppose you mean run-jetty (Maven plugin). I'll try it when I reach my machine again. *-* *Muhammad Gelbana* http://www.linkedin.com/in/mgelbana On Thu, Jun 12, 2014 at 10:56 AM, Kristian Marinkovic < kristian.marinko...@gmail.com>

Tapestry 5.3 + java 8

2014-06-12 Thread Juan E. Maya
Hello All, I have been following: https://issues.apache.org/jira/browse/TAP5-2321 https://issues.apache.org/jira/browse/TAP5-2214 do you know is there is any plan to release a new 5.3 version that would make it compatible with java8 ? Thanks for the help Juan

Re: Multi-Language Concept in Tapestry5

2014-06-12 Thread Juan E. Maya
Hello, if i understood correctly, what you need to do is get the translation from an external resource, probably a database. You shoulndt be changing the property files on runtime, that will introduce some problems ex: if your app is clustered. (you would need to replicate a change in all the serv

Re: Tapestry 5.3 + java 8

2014-06-12 Thread Thiago H de Paula Figueiredo
On Thu, 12 Jun 2014 06:48:19 -0300, Juan E. Maya wrote: Hello All, Hi! I have been following: https://issues.apache.org/jira/browse/TAP5-2321 https://issues.apache.org/jira/browse/TAP5-2214 do you know is there is any plan to release a new 5.3 version that would make it compatible with

Re: Tapestry 5.3 + java 8

2014-06-12 Thread Juan E. Maya
Thanks a lot thiago! Good luck on the match today, although i don't think you need any look ;) On Thu, Jun 12, 2014 at 2:14 PM, Thiago H de Paula Figueiredo < thiag...@gmail.com> wrote: > On Thu, 12 Jun 2014 06:48:19 -0300, Juan E. Maya > wrote: > > Hello All, >> > > Hi! > > > I have been fo

Section 508 Compliance

2014-06-12 Thread Barry Books
I need to make a Tapestry 5.4 site 508 compliant. I've looked thru the requirements and what HTML is generated now and I don't see anything that looks to difficult but I'd like to get Tapestry to do most/all the work. My plan is to write mixins to handle thinks like access keys. For example Wou

Re: Section 508 Compliance

2014-06-12 Thread Lance Java
Sounds like this issue would help you here https://issues.apache.org/jira/browse/TAP5-1611 BTW I had no idea what section 508 was. A link / description might help. On 12 Jun 2014 13:31, "Barry Books" wrote: > I need to make a Tapestry 5.4 site 508 compliant. I've looked thru the > requirements

Re: Section 508 Compliance

2014-06-12 Thread Thiago H de Paula Figueiredo
On Thu, 12 Jun 2014 10:41:10 -0300, Lance Java wrote: Sounds like this issue would help you here https://issues.apache.org/jira/browse/TAP5-1611 In Barry's case, I think creating a ComponentCclassTransformerWorker to apply a mixin to all PageLink, ActionLink and EventLink instances is the

Re: Section 508 Compliance

2014-06-12 Thread Thiago H de Paula Figueiredo
On Thu, 12 Jun 2014 09:31:04 -0300, Barry Books wrote: Lastly some things might be better (like grid sort link titles) if they were included in the base code. Would someone be willing to accept patches Of course! :) and if so should they be enabled all the time or should 508 be a feature

live class reloading for custom package

2014-06-12 Thread Ilya Obshadko
Hey guys, Could anyone explain - is that possible to enable live class reloading for user-defined packages? For example, I would like to implement live reloading for Hibernate entities and enum classes that I use in my application (the former probably requires Hibernate re-initialization, while t

Re: live class reloading for custom package

2014-06-12 Thread Lance Java
I think you'll have troubles getting that to work. Tapestry's been built from the ground up to support live class reloading. Have you seen jrebel? It's a java agent that will do what you want. Nb it's not free http://zeroturnaround.com/software/jrebel/ On 12 Jun 2014 20:33, "Ilya Obshadko" wrote

Re: Section 508 Compliance

2014-06-12 Thread Lance Java
Mixins are always a bit harder since you're usually manipulating the dom after the default impl. For something a trivial as pagelink, I'd argue that starting from scratch would be easier. On 12 Jun 2014 16:02, "Thiago H de Paula Figueiredo" wrote: > On Thu, 12 Jun 2014 10:41:10 -0300, Lance Jav

Re: Section 508 Compliance

2014-06-12 Thread Basile Chandesris
It seems that Kawwa Components tries to support W3C/WAI (Web Accessibility Initiative): https://kawwa.atosworldline.com/accessibility https://kawwa.atosworldline.com/componentapproach https://kawwa.atosworldline.com/components -- http://www.jimthatcher.com/sidebyside.htm http://www.jimthatcher.

Re: live class reloading for custom package

2014-06-12 Thread Ilya Obshadko
Thanks Lance! I was supposing something like this. JRebel looks very promising, but well, I don't need this feature that much; it might be just a convenient addition, but introducing another framework to achieve the result looks like an overkill. On Fri, Jun 13, 2014 at 1:24 AM, Lance Java wro