Re: Tapestry 5.3.8 Maven repository

2014-10-18 Thread Michael Leuthold
Are there any thoughts to release 5.3.8 soon? I think it would be favorable if there was a version of Tapestry5 that supported the latest JVM. It's all patched and the 5.3 branch hasn't seen any changes since June. Though all focus lies on 5.4 it would send a good signal to push 5.3.8 out of the d

Re: IoC / Multiple Implementations

2014-06-17 Thread Michael Leuthold
private final List foos; >public FooProviderImpl(List foos) { this.foos = foos; } >public List getFoos() { return foos; } > } > > Then you can @Contribute to the FooProvider to add to the list and @Inject > the FooProvider wherever you need the list. > > > > On

Re: Multi file upload

2014-06-17 Thread Michael Leuthold
We integrated jQuery-File-Upload as well but the Request to upload files is posted to a EventLink-URL that is provided upon initialization of the File-Upload-Plugin. The event is then handled by the component and files are extracted using org.apache.commons.fileupload.servlet.ServletFileUpload fro

IoC / Multiple Implementations

2014-06-17 Thread Michael Leuthold
Hello, I am currently stuck with the following problem: I try to inject a list of implementations of a certain interface but it seems it does not work using the straight approach of injecting a "List impls" Though implementations exist and a list is injected but it's just empty. Does anyone have