[equinox-dev] deployment admin service

2008-06-23 Thread Laura Lozano
Does it exist any implementation of org.osgi.service.deploymentadmin service in equinox? Thank you ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

Re: [equinox-dev] deployment admin service

2008-06-23 Thread Stuart McCulloch
2008/6/23 Laura Lozano [EMAIL PROTECTED]: Does it exist any implementation of org.osgi.service.deploymentadmin service in equinox? I can't see it listed here: http://www.eclipse.org/equinox/bundles/ but an implementation is being developed over here:

[equinox-dev] Aspects: problem weaving same class file in different bundles

2008-06-23 Thread sorbus
I suspect I can't do what I want to, but here goes anyway I have two 'applications' as bundles in equinox. Each use the same code, they only differ in configuration and Bundle-SymbolicName. By same code I mean they have identical copies, not shared code/services or anything. Like this:

Re: [equinox-dev] P2 touchpoint instructions doc

2008-06-23 Thread Henrik Lindberg
Simon, thanks for the review and update of the Touchpoint instruction page. It is now starting to make sense :) A couple of notes and questions: - With the current encoding (a map of instructions), it is not possible to use the same instruction type more than once. Is this intentional?

Re: [equinox-dev] P2 touchpoint instructions doc

2008-06-23 Thread Simon Kaegi
A couple of notes and questions: - With the current encoding (a map of instructions), it is not possible to use the same instruction type more than once. Is this intentional? What if the author needs to create two directories etc? (I am asking because if this will be changed in the future I

Re: [equinox-dev] How to build a product without distribute eclipse features in the repository?

2008-06-23 Thread Pascal Rapicault
Answers embedded. PaScaL Note 2: My -installIU parameter is pointing to my product. The output product worked fine and the Help-Software Updates opened correctly, but the launcher icon was not updated as expected. In addition, I verified that the tab Installed Softwares only list one

Re: [equinox-dev] P2 touchpoint instructions doc

2008-06-23 Thread Henrik Lindberg
Thanks Simon, Hm, seems that my understanding of this is still unclear. I understand touchpoint type - one IU can affect one touchpoint only, but I have trouble with Touchpoint Data. The IU has a list of Touchpoint Data. What exactly is one such Touchpoint Data instance describing? I

Re: [equinox-dev] Aspects: problem weaving same class file in different bundles

2008-06-23 Thread Martin Lippert
Hi Rowan, I assume the problem is that the aspect should weave the same class from different bundles. For the aspect both Widget classes are visible (because both should be woven) and the weaver does not know which one to use for type resolution. But this is just a first guess on the

Re: [equinox-dev] P2 touchpoint instructions doc

2008-06-23 Thread Henrik Lindberg
Hm, I think may able to answer this myself. The format is actually documented :) The touchpoint data has a map, the keys in this map are the phases like install, and the value is the format described on the wiki page - i.e. a string that needs to be parsed to understand the actions and

Re: [equinox-dev] P2 touchpoint instructions doc

2008-06-23 Thread Simon Kaegi
Hm, I think may able to answer this myself. The format is actually documented :) The touchpoint data has a map, the keys in this map are the phases like install, and the value is the format described on the wiki page - i.e. a string that needs to be parsed to understand the actions and

Re: [equinox-dev] P2 touchpoint instructions doc

2008-06-23 Thread Henrik Lindberg
:) That means that it is not possible to have a parameter value that includes a comma ',' - the parser will then think it delimits the value. Which is fine for now for paths, filenames, artifact keys and such, but perhaps not for some future touchpoints and actions. Is there some