Re: Standalone plugins

2006-12-21 Thread Norbert Sándor
I hope it will be better :D Pedro Abelleira Seco írta: Oh! good to hear that. I was trying to replace the service tapestry.init.ApplicationSpecificationInitializer with a simple class that adds the id and path to the libraries. It should work, but I will better wait and try to use your better

Re: Standalone plugins

2006-12-20 Thread Pedro Abelleira Seco
Oh! good to hear that. I was trying to replace the service tapestry.init.ApplicationSpecificationInitializer with a simple class that adds the id and path to the libraries. It should work, but I will better wait and try to use your better library. Thanks Pedro --- Norbert Sándor <[EMAIL PROTEC

Re: Standalone plugins

2006-12-20 Thread Norbert Sándor
I'm working on a library which can: - inject library references into other libraries using hivemind configurations - implements global namespace for tapestry components - supports dynamic rendering of components by name (not perfect solution but it works in most cases) The code is already fin

Re: Standalone plugins

2006-12-20 Thread Pedro Abelleira Seco
Thank you. I will look into this if I get the time. --- Ron Piterman <[EMAIL PROTECTED]> escribió: > again, the trick is adding references to a library > without coding it. > Tapestry defines in the hivemind registry the > service point : > > tapestry.parse.SpecificationSource > > which is resp

Re: Standalone plugins

2006-12-20 Thread Ron Piterman
again, the trick is adding references to a library without coding it. Tapestry defines in the hivemind registry the service point : tapestry.parse.SpecificationSource which is responsible for reading the specification from files - I would think that to make dynamic libraries load, you need to imp

Re: Standalone plugins

2006-12-20 Thread Pedro Abelleira Seco
Thanks for your response. What I have in mind is to be in the situation of having a general web application with a common set of services and components (including the a general Border, etc.) and getting different contractors to develop different parts of the app in parallel without having to touc

Re: Standalone plugins

2006-12-20 Thread Ron Piterman
It could be done, but above all needs restarting of the servlet container for every change- Since hivemind lets you peekup configuration from every jar on the classpath, configuration isn't an issue. However, adding a library without making an explicit reference to it should be quite difficult -

Standalone plugins

2006-12-19 Thread Pedro Abelleira Seco
Hello all, I has been a happy user of Tapestry 3 and since then stepped out of web development for a while. But I have to return there at some point. I would like to be able to do in a web application the same kind of things that are possible in client applications with respect to plugins. The i