How do you feel about requiring JRE 1.6 for Tapestry 5.4?

2012-05-01 Thread Kalle Korhonen
When in doubt, let's ask the community: would you object to requiring JRE 1.6 for running Tapestry 5.4? So far, T5 has run on JRE 1.5 but the time for requiring 1.6 will come at some point. Not necessarily yet - we can likely work around this - but current Hibernate 4.x releases are built with 1.6.

Re: Issues in a page having multiple forms in tapestry 4

2012-05-01 Thread nazarhussain_s
Hi Howard, Previously we had a page wherein the data fields in one form were way too many around 100 to 1100 so while submitting the page we were getting the below exception so can you please suggest what I need to change If I am to submit that many fields in Tapestry. Currently I am ge

Re: tapestry-security w/ Remote Login

2012-05-01 Thread George Christman
Thanks so much Kalle. I've come up with some free time outside of work, so I'm going to take advantage of it and start playing with the facebook integration using the federate project. Hopefully that goes much smoother than my work related stuff. :) -- View this message in context: http://tapestr

Re: Hooking a custom InjectionProvider into the IoC container

2012-05-01 Thread Pavel Vodenski
After some more experimentation, I've corrected an error in my original contribution method. It should've read: public static void contributeInjectionProvider( OrderedConfiguration configuration, MasterObjectProvider masterObjectProvider, ObjectLocator loca

Re: Tapestry and inline Handlebars.js

2012-05-01 Thread Chris Mylonas
fyi, on a similar topic In this month's "linux journal" digital magazine there's a wanky write up about blueprint, cass, scss - it's a poor write up, i wouldn't recommend buying the one issue for it. there will be a write up in that series next month on bootstrap - hopefully it is more enlighte

Re: tapestry-security w/ Remote Login

2012-05-01 Thread Kalle Korhonen
On Tue, May 1, 2012 at 10:12 AM, George Christman wrote: > Hello Kalle, I've finally got this to work :) Our other developer ended up > rewriting his code to be much friendlier to work with. Anyhow I have one > last question, he's returning a list of roles to me which I need to populate > SimpleAu

Re: Hooking a custom InjectionProvider into the IoC container

2012-05-01 Thread Pavel Vodenski
> The error message says you're trying to contribute configuration for a service that doesn't exist. Are you trying to run this without tapestry-core (the web framework)? I am using tapestry-core. The snippet I posted came out of our tapestry project's AppModule class. On Tue, May 1, 2012 at 5:59

Re: T5.3 Component with AJAX Form?

2012-05-01 Thread Thiago H. de Paula Figueiredo
On Tue, 01 May 2012 15:58:36 -0300, Lenny Primak wrote: Don't all Ajax responses at least have a zone association? This is not correct. The Autocomplete mixin for example, doesn't, and so does any AJAX code that receives a JSON object as a response. -- Thiago H. de Paula Figueiredo Inde

Re: T5.3 Component with AJAX Form?

2012-05-01 Thread Lenny Primak
Perhaps an @Environmental object? Don't all Ajax responses at least have a zone association? Can't that be used to deduce all the other client IDs? On May 1, 2012, at 2:43 PM, Norman Franke wrote: > Thanks, that's a step in the right direction. Under Tapestry 5.3.3, at least, > that code t

Re: T5.3 Component with AJAX Form?

2012-05-01 Thread Norman Franke
Thanks, that's a step in the right direction. Under Tapestry 5.3.3, at least, that code throws a JavaScript exception because form.onsubmit() wants an event as a parameter and operates upon it. (Run it in Firebug.) I have an event, so I just passed that in. The other issues is that all of the c

Re: Tapestry and inline Handlebars.js

2012-05-01 Thread Kalle Korhonen
Agree that micro templating is getting more popular but the space is also evolving rapidly which makes it difficult to pick winners at the moment. Check out LinkedIn's take on this: http://engineering.linkedin.com/frontend/client-side-templating-throwdown-mustache-handlebars-dustjs-and-more and a v

Re: Tapestry and inline Handlebars.js

2012-05-01 Thread yazdog8
Thanks for the info on the parser. I'd be thrilled with that element for 5.4, because Client Side Templating is becoming more prevalent and I think it's something client developers will run into consistently. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-and-inli

Re: tapestry-security w/ Remote Login

2012-05-01 Thread George Christman
Hello Kalle, I've finally got this to work :) Our other developer ended up rewriting his code to be much friendlier to work with. Anyhow I have one last question, he's returning a list of roles to me which I need to populate SimpleAuthorizationInfo with. Could you explain how I would get the list o

Re: Hooking a custom InjectionProvider into the IoC container

2012-05-01 Thread Thiago H. de Paula Figueiredo
On Mon, 30 Apr 2012 23:04:13 -0300, Pavel Vodenski wrote: But that gives me the following error: java.lang.IllegalArgumentException: Contribution com.beckon.app.services.AppModule.contributeInjectionProvider2(OrderedConfiguration, MasterObjectProvider, ObjectLocator, SymbolSource, AssetSource

Re: Lightweight TapestryTools update site

2012-05-01 Thread Gavin Lei
Hi all, I have finished Tapestry class attributes/methods support in content assist of TML editor, It means: If there is a parameter bound using the @Component annotation inside the class: @Property private String name; Or such a method in Test.java: public String getName(){ return "Gavin Lei"