Re: Loading templates at run-time in Tapestry 5.4

2016-02-29 Thread Andreas Fink
Hi David. If you like the style of templating Tapestry offers i can only recommend using the Thymeleaf template engine over Freemarker. http://www.thymeleaf.org/ >> early 80ies jsp tag libs Haha, not bad :-) Cheers, Andi. On 01 Mar 2016, at 2:25 , David Diaz wrote: > Hi

Re: Tapestry is a sinking Ship

2016-02-13 Thread Andreas Fink
I would rephrase it to: Everybody should be allowed to raise his voice but let me choose if i want to listen... There are filter rules for 'He-Who-Must-Not-Be-Named in my mail client ;-) Cheers, Andi. On 13 Feb 2016, at 13:17 , JT wrote: > Shitty idea. All voice should be

Re: T5.3.8 ClassNotFound error ONLY when running on a virtualized server?!

2016-01-18 Thread Andreas Fink
Hi George. Are you sure the specific directory and its content is readable by Tomcat? Maybe some File-specific exceptions get silently catched on the way and substituted with 'null' instead of empty array. Just my 2c. Cheers, Andi. On 18 Jan 2016, at 2:06 , George Ludwig

Re: Using Codes in Message Catalog

2015-09-11 Thread Andreas Fink
Tapestry handles properties files as UTF-8 ( https://tapestry.apache.org/localization.html ). As long as you make sure that your ide saves those properties files as UTF-8 instead of ISO 8859-1 which the Java API dictates you can just use the plain copyright glyph. Cheers, Andi. On 11 Sep

Re: Tapestry + Wro4j

2014-09-30 Thread Andreas Fink
Hi John On 29 Sep 2014, at 9:52 , John j...@quivinco.com wrote: Is there any documentation+examples for using Wro4j or other web resource compiler technologies with Tapestry please? That project here should give you some pointers on how to integrate these technologies:

Re: tapestry-offline maven problem

2014-08-15 Thread Andreas Fink
Thanks Lance! On 15 Aug 2014, at 15:35 , Lance Java lance.j...@googlemail.com wrote: I figured out a workaround for the moment, the functionality seems to have been altered on github but luckily a third party has a usable service. Try: repositories repository idlazan-releases/id

Re: tapestry-offline maven problem

2014-08-13 Thread Andreas Fink
Hi Nathan. I had the same problem, recently. In contrast to the provided README, there does not seem to exist a repo (poke @Lance). I had to build the jar myself (0.0.2-SNAPSHOT). Cheers, Andi. On 13 Aug 2014, at 11:48 , Nathan Quirynen nat...@pensionarchitects.be wrote: Hi, I was

Re: QName::=(NCName':')?NCName error when tml is parsed

2014-05-16 Thread Andreas Fink
Can you post DataManaging.tml Caused by: org.xml.sax.SAXParseException: Element or attribute do not match QName production: QName::=(NCName':')?NCName. The 'production' part seems odd. Cheers, Andi. - To unsubscribe,

Re: tapestry-wro4j errors

2014-03-28 Thread Andreas Fink
Hi. This is probably just a missing dependency to commons-io http://search.maven.org/#artifactdetails|org.apache.commons|commons-io|1.3.2|jar I used tapestry-wro4j before, just for combining and minifying, without issues. Cheers, Andi. On 28 Mar 2014, at 15:59 , Nathan Quirynen

Re: IndieGogo campaign: a month of Apache Tapestry 5

2013-11-25 Thread Andreas Fink
Hi Thiago. What an interesting idea about filling the gap. I hope you can raise enough and that you get a gig in exactly 6 weeks :-) Thanks for the relentless battle against/with the ML! On Nov 25, 2013, at 22:08 , Thiago H de Paula Figueiredo wrote: Hi! I've just went live with an

Re: onActivate not called / Ajax / Shiro

2013-10-30 Thread Andreas Fink
Hi Jens On Oct 28, 2013, at 19:44 , Lenny Primak wrote: ... The statement above would make me think that Tapestry-Security does work for AJAX requests too, as onActivate() is invoked for every request for the page, render or action. The way Tapestry-Securitiy filter is set up is that it

Re: Configuring Tapestry to use TestNG, Selenium, and Cucumber Step Definitions.

2013-08-04 Thread Andreas Fink
Testify ( http://tapestrytestify.sourceforge.net/ ) has support for TestNG and i have used it successfully in the past. As for the cucumber part i cannot help you but if you look on stackoverflow or github for Cucumber-TestNG integration you will find some integration projects like this one:

Re: Tapestry template encoding and GAE

2013-05-23 Thread Andreas Fink
Hi Lance. Unfortunately this is not the case. Property files are treated ISO 8859-1 while reading/writing. If you want to have special chars, you have to run the file through native2ascii first. http://docs.oracle.com/javase/6/docs/api/java/util/Properties.html On May 22, 2013, at 9:49 ,

Re: Tapestry template encoding and GAE

2013-05-23 Thread Andreas Fink
wow, i didn't know that! i had problems with encoding of properties in recent t5 projects but maybe maven got in the way or this service did not get used. cheers, andi. On May 23, 2013, at 10:26 , Lance Java wrote: You underestimate tapestry :) Tapestry's PropertiesFileParserImpl assumes

Re: onActivate UnknownValueException

2013-05-06 Thread Andreas Fink
Hi Jens. I think it depends on what you want to do after finding out that you cannot coerce the parameter. If you want to redirect to another page the logic should still be in the page class or maybe a T5-RequestFilter where you can move that logic/redirection code to. If you want to rewrite

Re: non blocking code in T5?

2012-06-13 Thread Andreas Fink
If you do not want to go down the JEE route, try Hazelcast. I have had good experiences with it in the past. Apart from shared maps, it also provides topics and queues like JMS. The most basic setup can look like this: public HazelcastInstance buildHazelcastInstance() { final Config cfg =

Re: Tapestry and JPA

2012-03-01 Thread Andreas Fink
. Thanks again. 2012/3/1 Andreas Fink fink.a...@googlemail.com Hi. Did you specify a jndi datasource? T5-jpa relies on it. Because i do not enable jndi in my container, i do it directly in my PersistenceModule with simplejndi like this: public class PersistenceModule

Re: Tapestry and JPA

2012-02-29 Thread Andreas Fink
Hi. Did you specify a jndi datasource? T5-jpa relies on it. Because i do not enable jndi in my container, i do it directly in my PersistenceModule with simplejndi like this: public class PersistenceModule { /** * Eeagerly loaded for {@link TapestryPersistenceUnitInfo}

Re: Using Tapestry-IoC libraries in non-Tapestry application

2012-01-31 Thread Andreas Fink
Hi Erik. Be aware of the fact that many classes you will use through T5 will be rewritten. So if your wrapping application needs to work on annotations, make sure those are on interfaces, not implementing classes. Cheers, Andi. On Jan 30, 2012, at 16:56 , Erik Fäßler wrote: Hello all, I

Re: smarter css

2011-12-08 Thread Andreas Fink
/2 cents worth. C On Dec 7, 2011, at 4:57 PM, Andreas Fink wrote: Please do not include this kind of technologies in the core. It took us long enough to get rid of prototype.js. Sure, it can be overridden but why not just offer it as part of an external CoolKidsJavascriptStack. Just my

Re: smarter css

2011-12-08 Thread Andreas Fink
on this. On Thu, Dec 8, 2011 at 8:13 AM, Thiago H. de Paula Figueiredo thiag...@gmail.com wrote: On Thu, 08 Dec 2011 12:31:35 -0200, Andreas Fink fink.a...@googlemail.com wrote: Sorry for my hasty and not well formulated rant. I was just thinking about the announcment of the Rails-team to switch

Re: smarter css

2011-12-07 Thread Andreas Fink
Please do not include this kind of technologies in the core. It took us long enough to get rid of prototype.js. Sure, it can be overridden but why not just offer it as part of an external CoolKidsJavascriptStack. Just my 2c. Andi. On Dec 8, 2011, at 1:15 , Howard Lewis Ship wrote: Less or

Re: Who can recommend a hosting plan with jdk1.6, resin, dedicated IP addy, 6 domains, web admin interface shell access?

2011-09-28 Thread Andreas Fink
Hi Jon. If it really has to be resin, i would as the directly ask the caucho folks. They are quite a friendly bunch. Cheers, Andi. On Sep 28, 2011, at 21:12 , Jon Williams wrote: Hi y'all, Who can recommend a hosting plan with jdk1.6, resin, dedicated IP addy, 6 domains, web admin

Re: Error in T5.3 openJDK = java.lang.reflect.GenericSignatureFormatError

2011-09-27 Thread Andreas Fink
On Sep 27, 2011, at 17:12 , Ernesto Arroyo wrote: in fact we should use sun jdk, not openjdk, why do you think so? now that openjdk is the standard on linux and soon on osx... btw., if i remember correctly it was this issue: https://issues.apache.org/jira/browse/TAP5-1554 cheers, andi.

Re: generating secure files

2011-08-29 Thread Andreas Fink
In eclipse i have to refresh very often. External git/subversion actions, generating eclipse stuff from maven... This is just how it works. If this really annoys you, netbeans might be a better choice. It refreshes automatically but in return artifacs are not indexed so well. Cheers, Andi. On

Re: Upgrading from old Tomcat and Tapestry versions

2011-08-23 Thread Andreas Fink
Hi Chris. The current Versions (5.x) of Tapestry has only concepts in common with 3.x. If your machine is beefy enugh i would recommend running the existing app in a 32bit VM. Just my 2 cents. Cheers, Andi. The On Aug 23, 2011, at 4:59 PM, Parker, Chris@CDCR wrote: Greetings all: I