Tapestry Security Federate Facebook Exception

2012-07-28 Thread George Christman
Hello, I'm trying to authenticate with a third party using Tapestry Security Federate. I'm receiving the following error, however I don't know how to correct it. facebook account error A Facebook federated user cannot be signed in, report this to support. No account information found for authen

Re: json support in template

2012-07-28 Thread Christian Riedel
I created a github repo with a complete binding module: https://github.com/criedel/tapestry-json-binding I tried to get all the syntax features inside that we were talking about: ${json:json.inner.inner2} ${json:jarr[1].inner.inner2} ${json:json.inner[0].inner2} …and also with guarding '?' ${js

Re: Test if production or test mode..

2012-07-28 Thread Chris Mylonas
Hi - I took the liberty in creating a JIRA for adding this example to the symbols page. Handy example for someone getting into symbolic stuff (excuse my pun-tiness) https://issues.apache.org/jira/browse/TAP5-1982 Here is the documentation I reckon could do with some more http://tapestry.apache.o

Re: Rendering cache

2012-07-28 Thread Jens Breitenstein
Hi Christian! Many thanks for your answer. Unfortunately, rendering is the expensive part, as we already rely on cached data. Jens Am 28.07.12 13:49, schrieb Christian Riedel: Hi, I think theres no easy way to intercept the rendered result of a single component (that contains a lot of ot

Re: Rendering cache

2012-07-28 Thread Christian Riedel
Hi, I think theres no easy way to intercept the rendered result of a single component (that contains a lot of other components). But you could put this component inside some kind of dummy-page, asynchronously call its url from an internal caching-service and store the output using simple I/O st

Rendering cache

2012-07-28 Thread Jens Breitenstein
Hi T5'ers we have some performance issues and started thinking about caching our pages (lets say parts of them to be precise). Due to the fact we are showing user related information along with "public information" on a page, we can not make use of a simple web proxy caching. Therefore we ar

Re: how to clear the textarea after submit

2012-07-28 Thread Anbazhagan
This is my tml page. ${submitData} My java page @Persist private String returnData ; void onSelectedFromData() { if(feedback.length()!=0) { System.out.println("successfully

Re: Test if production or test mode..

2012-07-28 Thread sommeralex
thank you very much, it works! 2012/7/28 Taha Hafeez [via Tapestry] < ml-node+s1045711n5714850...@n5.nabble.com> > With @Symbol you must use @Inject too > > @Proeprty > @Inject > @Symbol(SymbolConstants.PRODUCTION_MODE) > private boolean productionMode > > BTW you can also use :- > > >${symb

Re: Test if production or test mode..

2012-07-28 Thread Taha Siddiqi
With @Symbol you must use @Inject too @Proeprty @Inject @Symbol(SymbolConstants.PRODUCTION_MODE) private boolean productionMode BTW you can also use :- ${symbol:tapestry.production-mode} regards Taha On Jul 28, 2012, at 2:19 PM, sommeralex wrote: > Thank you all for your answers. > >

Re: Test if production or test mode..

2012-07-28 Thread sommeralex
Thank you all for your answers. What I now did is just this in one of my pages: JAVA @Property @Symbol("tapestry.production-mode") private boolean productionMode; TML productionMode! My FrontendModule public static void contributeApplicationDefaults(MappedConfigu

Re: how to clear the textarea after submit

2012-07-28 Thread Joost Schouten (mailing lists)
You are probably @Persist'ing the value. Don't use persist or clear the persisted data on SUCCES and your TEXTAREA will show up cleared. If that does not help you, please share your code with us. Cheers, Joost On Jul 28, 2012, at 9:42 AM, Anbazhagan wrote: > Hi > > I am using textarea compon

how to clear the textarea after submit

2012-07-28 Thread Anbazhagan
Hi I am using textarea component for feedback submit in application. After enter the value how to clear the textarea field. Thank u -- View this message in context: http://tapestry.1045711.n5.nabble.com/how-to-clear-the-textarea-after-submit-tp5714847.html Sent from the Tapestry - User mail