[equinox-dev] Support for launching with just (Conditional) Permission Admin?

2008-02-07 Thread Marcel Offermans
The OSGi security model started out with the Permission Admin service. Lateron, the Conditional Permission Admin was added. Frameworks are allowed to publish: - none of these services (the default, no security is active); - just Permission Admin (the "older" model); - just Conditional Permi

Re: [equinox-dev] Signed bundles

2008-02-07 Thread Marcel Offermans
Hello Thomas, I'm trying your suggestions: java -Dosgi.signedcontent.support=true -Djava.security.policy="" -jar org.eclipse.osgi_3.4.0.v20071207.jar -console From what I understand that should give me a framework with security and signed bundle support, but when I try that and type "servi

[equinox-dev] [prov] I20080207-0010 metadata not usable

2008-02-07 Thread Pascal Rapicault
Because of PDE bu https://bugs.eclipse.org/bugs/show_bug.cgi?id=208143, it is not possible to install I20080207-0010. PaScaL ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

Re: [equinox-dev] [launcher] Showsplash

2008-02-07 Thread Stefan Liebig
I am using a freeware tool (http://www.angusj.com/resourcehacker/) to modify our win32 NL for smartup so that is possible to change (branding) the splash screen and string resources without the need of recompiling our NL. However, this is not done at install time, although it might be possible,

Re: [equinox-dev] Signed bundles

2008-02-07 Thread Marcel Offermans
Hello Thomas, On Feb 7, 2008, at 15:18 , Thomas Watson wrote: Seem that we keep giving you the wrong options!!! :) Please try this on the latest I-Build of 3.4. The v20071207 version of org.eclipse.osgi was before we released some of the new signed bundle support. Thanks, that works f

[equinox-dev] p2 projects tagged for build

2008-02-07 Thread John Arthorne
The map file has been updated for the following Bug changes: + Bug 217739. [prov] Silent error on agent startup (FIXED) The following projects have changed: org.eclipse.equinox.p2.engine ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.ec

Re: [equinox-dev] [launcher] Showsplash

2008-02-07 Thread James D Miles
Yes we could do something like that but we need it to change it based on nl. We currently have about 600K bmp for each language specific splash screen that we provide. So what would be better is if we could write the actual text in the SWTsplash window with the progress monitor. Then we would

Re: [equinox-dev] [launcher] Showsplash

2008-02-07 Thread Andrew Niefer
In the case of the splash screen, it is a simple line in the eclipse.ini file which indicates the splash bitmap to use. The difference between an english and a german splash screen could be as simple as -showsplash org.foo.branding/en/splash.bmp -showsplash org.foo.branding/de/splash.bmp I expe

Re: [equinox-dev] [launcher] Showsplash

2008-02-07 Thread Jeff McAffer
alternatively is it possible to have the installer configure the launcher with the right splash? of course that assumes that the NL is fixed from install time. Just a thought Jeff Andrew Niefer wrote: James, The native code that is showing the early splash screen does not have support to

Re: [equinox-dev] Support for launching with just (Conditional) Permission Admin?

2008-02-07 Thread Thomas Watson
I think your interpretation of the specification is correct according to 9.10. But I think it poses quite a dilemma for boot strapping the Framework with permissions. Imagine a framework that has ConditionalPermissionAdmin with no ConditionalPermissionInfo object. If the "default default" pemis

Re: [equinox-dev] Support for launching with just (Conditional) Permission Admin?

2008-02-07 Thread Marcel Offermans
The spec, in 9.10, explains the relation between CPA and PA, and states "The default conditions of Permission Admin are therefore never used when Conditional Permission Admin is present." (last sentence of next to last paragraph). From your explanation below I get the impression that defaul

Re: [equinox-dev] Support for launching with just (Conditional) Permission Admin?

2008-02-07 Thread Thomas Watson
Equinox does not have a way to run with ConditionalPermissionAdmin but without PermissionAdmin. But you can get equivalent behavior by setting the default permissions in PermissionAdmin to an empty array (i.e. permAdmin.setDefaultPermissions(new PermissionInfo[0])). If you don't do this then the

Re: [equinox-dev] Signed bundles

2008-02-07 Thread Thomas Watson
Marcel, Seem that we keep giving you the wrong options!!! java -Djava.security.manager="" -Djava.security.policy=policy -Dosgi.framework.keystore=file:keystore -Dosgi.signedcontent.support=true -jar org.eclipse.osgi_3.4.0..jar -console -consoleLog Please try this on the latest I-

Re: [equinox-dev] [prov] I20080207-0010 metadata not usable

2008-02-07 Thread Andrew Niefer
The problem here comes down to the feature versions not incrementing when one of their contained plug-ins increases it version. The root cause of this is the generated feature version suffixes which are supposed to account for the changes in the nested plugins. These suffixes were turning out t

Re: [equinox-dev] [launcher] Showsplash

2008-02-07 Thread Jeff McAffer
Sure then you can do it the way that Andrew suggested. Essentially come up with a non-localised splash and write in localized info when SWT is up. Or you can tell the launcher to not show the splash and put it up the old way after some delay while Java starts. Jeff James D Miles wrote: Ye