[jira] Commented: (FELIX-1221) Display the alias ID created by Karaf Features when showing service details

2009-09-03 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-1221?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12750887#action_12750887 ] Guillaume Nodet commented on FELIX-1221: The problem is that I don't really see in

Re: Packages exported by fileinstall

2009-09-03 Thread Guillaume Nodet
Btw, I also wonder about the need to export the org.apache.felix.fileinstall package, as this one only contains implementation classes and should be private imho. Have anyone seen a need to really export this package ? On Thu, Sep 3, 2009 at 10:29, Guillaume Nodet gno...@gmail.com wrote:

[jira] Commented: (FELIX-1461) Corrupted repository.xml when maven is run in parallel

2009-09-03 Thread Stuart McCulloch (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-1461?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12751001#action_12751001 ] Stuart McCulloch commented on FELIX-1461: - Exactly - before this fix it was

[jira] Commented: (FELIX-1461) Corrupted repository.xml when maven is run in parallel

2009-09-03 Thread JIRA
[ https://issues.apache.org/jira/browse/FELIX-1461?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12750985#action_12750985 ] Holger Hoffstätte commented on FELIX-1461: -- But now you've traded corruption for

Re: Packages exported by fileinstall

2009-09-03 Thread Guillaume Nodet
On Thu, Sep 3, 2009 at 16:06, Stuart McCulloch mccu...@gmail.com wrote: 2009/9/3 Guillaume Nodet gno...@gmail.com Fileinstall exports the org.osgi.service.cm and org.osgi.service.log packages. I wonder if this would make more sense to make them optional import and make sure the code

Bundle.getResources returns empty enumeration as opposed to null for non-existent resource

2009-09-03 Thread Sahoo
I am using Felix 1.8.1. It appears that Bundle.getResources() is now returning an empty enumeration instead of null when there is no resource. The javadoc of the method says null has to be returned in this case. Can anyone familiar with the implementation comment? I have not looked at the

Re: Packages exported by fileinstall

2009-09-03 Thread Stuart McCulloch
2009/9/3 Guillaume Nodet gno...@gmail.com On Thu, Sep 3, 2009 at 16:06, Stuart McCulloch mccu...@gmail.com wrote: 2009/9/3 Guillaume Nodet gno...@gmail.com Fileinstall exports the org.osgi.service.cm and org.osgi.service.log packages. I wonder if this would make more sense to make

Re: Bundle.getResources returns empty enumeration as opposed to null for non-existent resource

2009-09-03 Thread Richard S. Hall
The implementation for this method in trunk calls IModule.getResourcesByDelegation() which has this code: return (urls.hasMoreElements()) ? urls : null; So, it looks like it is doing the right thing. I believe this was changed from 1.8.1 in the various refactoring that has

[jira] Created: (FELIX-1555) The osgi:list command should print spring-dm bundle state if spring-dm has been deployed

2009-09-03 Thread Guillaume Nodet (JIRA)
The osgi:list command should print spring-dm bundle state if spring-dm has been deployed Key: FELIX-1555 URL: https://issues.apache.org/jira/browse/FELIX-1555

[jira] Resolved: (FELIX-1554) fileinstall should not export org.apache.felix.fileinstall and org.apache.felix.fileinstall.utils packages

2009-09-03 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-1554?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet resolved FELIX-1554. Resolution: Fixed URL: http://svn.apache.org/viewvc?rev=810999view=rev Log: FELIX-1554:

Re: Packages exported by fileinstall

2009-09-03 Thread Guillaume Nodet
But this means the code has to dynamically load the class, right ? Or at least try to load it each time it will log something. Wouldn't that hurt performance ? I like the idea of being able to automatically detect the log api when installed though. On Thu, Sep 3, 2009 at 16:43, Stuart McCulloch

Change version of fileinstall to 1.9.0-SNASPHOT (was Re: Packages exported by fileinstall)

2009-09-03 Thread Guillaume Nodet
Given the major changes that have occured in fileinstall recently, I wonder if we should change the version to 1.9.0-SNAPSHOT in order to release it as 2.0.0. Thoughts ? On Thu, Sep 3, 2009 at 10:29, Guillaume Nodet gno...@gmail.com wrote: Fileinstall exports the org.osgi.service.cm and

Re: Bundle.getResources returns empty enumeration as opposed to null for non-existent resource

2009-09-03 Thread Sahoo
Yes, I just tried with a trunk build and see the expected behavior. I kind of remember that it was working in some previous versions of Felix. So, it's just a bug in 1.8.1 and possibly some older versions. Given that it is fixed in trunk, I am not worried. Thanks, Sahoo Richard S. Hall

Re: Packages exported by fileinstall

2009-09-03 Thread Richard S. Hall
On 9/3/09 11:56, Guillaume Nodet wrote: But this means the code has to dynamically load the class, right ? Or at least try to load it each time it will log something. Wouldn't that hurt performance ? I like the idea of being able to automatically detect the log api when installed though.

[jira] Created: (FELIX-1556) Bundle.getResource/s is not able to find resources if the package is not alraedy wired when I use DynamicImport-Package: *

2009-09-03 Thread Sahoo (JIRA)
Bundle.getResource/s is not able to find resources if the package is not alraedy wired when I use DynamicImport-Package: * -- Key: FELIX-1556

[jira] Commented: (FELIX-1556) Bundle.getResource/s is not able to find resources if the package is not alraedy wired when I use DynamicImport-Package: *

2009-09-03 Thread Richard S. Hall (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-1556?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12751081#action_12751081 ] Richard S. Hall commented on FELIX-1556: The code appears to try to search dynamic

[jira] Assigned: (FELIX-1556) Bundle.getResource/s is not able to find resources if the package is not alraedy wired when I use DynamicImport-Package: *

2009-09-03 Thread Richard S. Hall (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-1556?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Richard S. Hall reassigned FELIX-1556: -- Assignee: Richard S. Hall Bundle.getResource/s is not able to find resources if the

[jira] Commented: (FELIX-1556) Bundle.getResource/s is not able to find resources if the package is not alraedy wired when I use DynamicImport-Package: *

2009-09-03 Thread Richard S. Hall (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-1556?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12751086#action_12751086 ] Richard S. Hall commented on FELIX-1556: This appears to be a variant of the issue

Re: Change version of fileinstall to 1.9.0-SNASPHOT (was Re: Packages exported by fileinstall)

2009-09-03 Thread Richard S. Hall
I have no issue with it. - richard On 9/3/09 11:58, Guillaume Nodet wrote: Given the major changes that have occured in fileinstall recently, I wonder if we should change the version to 1.9.0-SNAPSHOT in order to release it as 2.0.0. Thoughts ? On Thu, Sep 3, 2009 at 10:29, Guillaume

[jira] Resolved: (FELIX-1556) Bundle.getResource/s is not able to find resources if the package is not alraedy wired when I use DynamicImport-Package: *

2009-09-03 Thread Richard S. Hall (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-1556?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Richard S. Hall resolved FELIX-1556. Resolution: Fixed I have committed a fix. If you could confirm that trunk resolves the

[jira] Closed: (FELIX-1556) Bundle.getResource/s is not able to find resources if the package is not alraedy wired when I use DynamicImport-Package: *

2009-09-03 Thread Sahoo (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-1556?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sahoo closed FELIX-1556. Yes, I tried with your fix and it works. Closing the issue. I am glad we discovered and fixed before 2.0 is out.

Re: bundleplugin 2.0.1-SNAPSHOT deployed for testing purposes

2009-09-03 Thread Kristian Köhler
Hi ok, I have to wait ;-) Thanks for your work with the plugin! Kristian Stuart McCulloch schrieb: 2009/9/3 Kristian Köhler kristian.koeh...@googlemail.com Hi is there a chance to get FELIX-974 integrated in the release? (https://issues.apache.org/jira/browse/FELIX-974) Unfortunately

[jira] Created: (FELIX-1557) Cosmetic change of the Bundle-Name and Bundle-SymbolicName in iPOJO annotations.

2009-09-03 Thread Pierre Bourret (JIRA)
Cosmetic change of the Bundle-Name and Bundle-SymbolicName in iPOJO annotations. Key: FELIX-1557 URL: https://issues.apache.org/jira/browse/FELIX-1557 Project: Felix

Re: Change version of fileinstall to 1.9.0-SNASPHOT (was Re: Packages exported by fileinstall)

2009-09-03 Thread Felix Meschberger
Hi, Richard S. Hall schrieb: I have no issue with it. Me neither. On the other hand, I generally keep the snapshot version as it is until release, when I decide whether to increase just the minor version or the micro version. Maybe it is a matter of taste ... Just my €0.02. Regards Felix

[jira] Assigned: (FELIX-1557) Cosmetic change of the Bundle-Name and Bundle-SymbolicName in iPOJO annotations.

2009-09-03 Thread Clement Escoffier (JIRA)
[ https://issues.apache.org/jira/browse/FELIX-1557?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Clement Escoffier reassigned FELIX-1557: Assignee: Clement Escoffier Cosmetic change of the Bundle-Name and