1. 91b7ef2 Removed some unnecessary lines. by Richard S. Hall · 16 years ago
  2. 0686274 Applied patch (FELIX-713) to support transiently starting/stopping bundles. by Richard S. Hall · 16 years ago
  3. 3da72fb Modified the resolver so that it correctly discards exported packages from by Richard S. Hall · 16 years ago
  4. 5c9d99b Refactored the resolver to clearly distinguish between "resolved" and by Richard S. Hall · 16 years ago
  5. 752869d Do not bootdelegate in case Bundle.loadClass() has been used. (FELIX-712) by Karl Pauls · 16 years ago
  6. d8048e9 Remove extraneous import. by Richard S. Hall · 16 years ago
  7. f277412 Applied patch to decode reference URLs. (FELIX-731) by Richard S. Hall · 16 years ago
  8. e66610c Applied patch (FELIX-728) to fix an issue where requests to Start Level by Richard S. Hall · 16 years ago
  9. 928a35b The class loader delegation in wires was not correctly working when a module by Richard S. Hall · 16 years ago
  10. ac40196 Fixed a bug where class loader delegation for dynamic imports was happening by Richard S. Hall · 16 years ago
  11. 1b6147c Added a comment to remind us to clean up when fragments are done. by Richard S. Hall · 16 years ago
  12. 41870d4 Added a configuration property to determine whether installing a fragment by Richard S. Hall · 16 years ago
  13. 3d1049e Rollback an unintended commit from my previous commit. by Richard S. Hall · 16 years ago
  14. fc0fc12 Removed some experimental code for "implicit requirements" that was added by Richard S. Hall · 16 years ago
  15. 0861a4e Fix an issue with FilterImpl.toString which could throw a NullPointerException when several Threads where doing a toString at the same time. The fix is making the children member of Operator volatile and assign it optimistic. (FELIX-721) by Karl Pauls · 16 years ago
  16. 219b0a2 Fixed a performance regression that was caused by uncached access to the by Richard S. Hall · 16 years ago
  17. df6ee41 Fixed a bug in calculating the system bundle's exported packages; it was by Richard S. Hall · 16 years ago
  18. 95d97de Support JAR-wide manifest package metadata. (FELIX-682) by Richard S. Hall · 16 years ago
  19. 8047aa0 Throw an exception when installing a fragment that uses features that we by Richard S. Hall · 16 years ago
  20. 4331be8 There was a bug when calculating a bundle's class path for fragments, it by Richard S. Hall · 16 years ago
  21. b6ad992 Better error reporting when loading bundle classes using Bundle.loadClass. We now let the exception from ModuleImpl.loadClass bubble up instead of swallowing it. (FELIX-674). by Karl Pauls · 16 years ago
  22. 492fd28 More modifications for fragment support. Properly manages fragment by Richard S. Hall · 16 years ago
  23. b8b1dfe We were not correctly checking attributes when resolving dynamic imports. by Richard S. Hall · 16 years ago
  24. 7c57d63 Implements singleton support, but we still need to test it more and perhaps by Richard S. Hall · 16 years ago
  25. 118c916 Subject.doAs is not considered by the spec and doesn't work well with the current approach we have inside the framework. This commit makes it work based on the current security policy installed. Furthermore, it is now possible (and needed) to assign permissions to bundles via the security policy (based on the bundle location - not certificates). In other words, as of now, correct permissions have to be assigned to the framework and bundles using the java security policy based on either the codesource or the subject, if subject.doAs is used. This is possible because bundles do have a codesource now and the bundle protection domain asks the installed policy for permissions in case no security provider is installed. (FELIX-654) by Karl Pauls · 16 years ago
  26. a5ca6db Applied patch (FELIX-582) to return Bundle.getLastModified() for bundle by Richard S. Hall · 16 years ago
  27. 491e69a Applied patch (FELIX-577) to improve handling of improper resource URLs. by Richard S. Hall · 16 years ago
  28. 23311f2 Add necessary stub methods to implement new R4.1 methods. (FELIX-595) by Richard S. Hall · 16 years ago
  29. c7da25d Applied patch (FELIX-650) to properly return symbolic name when it has by Richard S. Hall · 16 years ago
  30. 1880bac Fixed a bug where the m_revisions array was not being correctly rolled back by Richard S. Hall · 16 years ago
  31. 1de7c95 Modified manifest parser to be more lenient when reading the manifest version; by Richard S. Hall · 16 years ago
  32. 9802e3f Adds support for the standard symbolic name for the system bundle; however, by Richard S. Hall · 16 years ago
  33. 2aca414 Applied patch to fix a type error when creating dynamic wires. (FELIX-606) by Richard S. Hall · 16 years ago
  34. 3875d69 Modified some comments. by Richard S. Hall · 16 years ago
  35. 2846a2b Initial patch to address fragment support. The included patch is only the by Richard S. Hall · 16 years ago
  36. fc8029a Minor code optimization: remove unnecessary null assignments. by Carsten Ziegeler · 16 years ago
  37. 62225f7 Applied patch (FELIX-542) to give an error message when installing fragment by Richard S. Hall · 16 years ago
  38. ecf4cc8 Update NOTICE file to new layout, update documentation to match new style, delete redundant NOTICE and LICENSE files, prepare changelog for 1.0.4 release, and update dependencies to 1.1.0-SNAPSHOT. by Karl Pauls · 16 years ago
  39. 2b5b927 Check that the returned object from a service factory is an instance of all classes named when the service was registered (FELIX-540). by Karl Pauls · 16 years ago
  40. e61a998 Reorder some instructions to speed up things a bit more. by Karl Pauls · 16 years ago
  41. 96a4a40 The issue is that we log messages while holding framework internal locks -- hence, when a log service calls back into the framework (e.g., by loading a class) we might deadlock. For now we just disable logging to log services inside the framework. (FELIX-536) by Karl Pauls · 16 years ago
  42. c7b799d Cache filters and create an index for objectclass to improve service lookup performance. by Karl Pauls · 16 years ago
  43. a7e36b8 Don't use the info to get the bundle id but the bundle. Furthermore, add an index to get bundles by id. The reason is to speed up bundle lookup. by Karl Pauls · 16 years ago
  44. 96637e1 Reorder some statements to improve service lookup performance. by Karl Pauls · 16 years ago
  45. dd13c2b Fix a spelling mistake. by Karl Pauls · 16 years ago
  46. 754222a Cache the bundle id in the BundleImpl class to improve performance. by Karl Pauls · 16 years ago
  47. 4e26913 Fix a spelling mistake by Karl Pauls · 16 years ago
  48. 61d0596 Make sure to catch NoClassDefFoundError when trying to query the framework classloader for whether a class is available or not. Previously, it was possible that this query was leaked to bundles because of the error propagate all the way to the bundle that instigated the classload. by Karl Pauls · 16 years ago
  49. ebce084 Don't try to resolve extension bundles because they are resolved at install time - this fixes an exception that could get thrown under certain conditions. by Karl Pauls · 16 years ago
  50. 5fbac03 Bundle.getResource does not check for AdminPermission, like getResources does. This adds the permission check. (FELIX-150) by Karl Pauls · 16 years ago
  51. 41db639 Make urlhandlers work when a handler factory is already set. Furthermore, it is now possible to have more then one framework running in more then one classloader. It is still possible to disable urlhandlers per framework. If no framework has urlhandlers enabled the factory will not be set. (FELIX-38). by Karl Pauls · 16 years ago
  52. 3a7f747 Add some more methods to SecureAction that allow for reflection and unsetting URLStreamHandlerFractory. by Karl Pauls · 16 years ago
  53. 08b2ee6 Make extension manager use internal api to minimize overhead. by Karl Pauls · 16 years ago
  54. 020dc14 Make the framework check for valid bundles on install as per spec. by Karl Pauls · 16 years ago
  55. 758c2be Make the framework check for valid bundles on install as per spec. by Karl Pauls · 16 years ago
  56. 2e34f03 Use a new method on pd to check for allowed exports. by Karl Pauls · 16 years ago
  57. d1e209b The extensionmanager creates a classcastexception if more then framework is around and both have extensions installed. This fixes the issue. by Karl Pauls · 16 years ago
  58. ed61fa5 Add a method to the external interface and fix hashcode, equals, and hashcode. by Karl Pauls · 16 years ago
  59. 9794cc2 Turns out our LDAP filter is not reentrant - but it is easy to fix - so this patch should make it work. It is needed because filter evaluations can call out to keys being compared which might in turn use the given thread to evaluate their own filter. by Karl Pauls · 16 years ago
  60. 9b2a329 Null a local variable to help speed garbage collection. by Richard S. Hall · 16 years ago
  61. 5eda19c Refactored the IContent abstraction from the module loader layer to provide by Richard S. Hall · 16 years ago
  62. 8c0e750 Applied patch (FELIX-500) to disable the class loading diagnostic message by Richard S. Hall · 16 years ago
  63. 71ca406 Modified the service registry to use more fine-grained locking to avoid by Richard S. Hall · 16 years ago
  64. d577826 Add missing license headers. by Karl Pauls · 16 years ago
  65. 28636dc Make extension bundles use the system bundle context and clean-up some of the code around extension bundles. Furthermore, refactor the protection domain assignment to make it possible to hook into it via an extension bundle. (FELIX-30) by Karl Pauls · 16 years ago
  66. b4cdad3 Remove an unneccessary object creation. by Karl Pauls · 16 years ago
  67. 90ac14c Make iterator member final to prevent visibility issues. by Karl Pauls · 16 years ago
  68. 7db0d88 Prepare 1.0.2 release by Karl Pauls · 16 years ago
  69. 4a591ba Now that compendium has been released, we no longer need to embed service by Richard S. Hall · 16 years ago
  70. 9e6c603 Applied patches (FELIX-466 and FELIX-467) to improve how Felix finds resources by Richard S. Hall · 16 years ago
  71. 7d28c1d Make FilterImpl.toString() add escape characters where needed (FELIX-471). by Karl Pauls · 17 years ago
  72. 74d48dc Fix a NPE on framework restart when extension bundles are installed. by Karl Pauls · 17 years ago
  73. 602fb43 Try to fix a potential visibility issue on loading a class form a bundle where it seems to be possible that we create two classloaders instead of one. by Karl Pauls · 17 years ago
  74. 5bb086c Modified boot delegation to not terminate when delegating to parent class by Richard S. Hall · 17 years ago
  75. ecaf8d4 Applied patch (FELIX-426) to fix some issues related to directories on by Richard S. Hall · 17 years ago
  76. cc5cac4 Logger should have all of its public methods be final to avoid it from by Richard S. Hall · 17 years ago
  77. fc87341 The TCK has changed to verify that bundles do not depend on themselves, by Richard S. Hall · 17 years ago
  78. 044cda8 Applied patch (FELIX-441) from Guillaume Nodet to properly fire a framework by Richard S. Hall · 17 years ago
  79. c7a576d Modified framework to accept a Logger instance so that host applications by Richard S. Hall · 17 years ago
  80. 7053bf8 Add support for loading bundles on Google Android (FELIX-440). by Karl Pauls · 17 years ago
  81. fb846a4 Improve native code loading - bundle installation will now fail in case a native library is not in the jar and we only use the first library of a given name. Furthermore, we now support .dylib extensions on the mac as well as others (should make it possible to use .netmodules as well) FELIX-439. by Karl Pauls · 17 years ago
  82. d5e0c26 Make the win32 alias match any version of windows for native clauses (FELIX-438). by Karl Pauls · 17 years ago
  83. 7adef03 Removed auto-property processing out of the framework and into the default by Richard S. Hall · 17 years ago
  84. 0d2544e Fix a StackOverflowError in URLHandlers.createStreamHandler() when creating URL on jamvm and Mika. This patch resolves an unfortunate interaction between our ExtensionManager and the URLHandlers by making the URLHandlers aware of the extension protocol. Pretty much like we do already for the bundle protocol. (FELIX-435) by Karl Pauls · 17 years ago
  85. b8de209 Fix a small oversight in the extension manager that could lead to a null pointer exception and save some memory by creating less objects. by Karl Pauls · 17 years ago
  86. 8da2c20 Degrate to version 0.0.0 if we can not find the Felix.properties for some reason and avoid a null pointer in this case. by Karl Pauls · 17 years ago
  87. 2b107e9 Added a few more comments to the usage count methods. by Richard S. Hall · 17 years ago
  88. d8a604a Reorganized usage count methods to better handle null reference checking by Richard S. Hall · 17 years ago
  89. 4eab576 Avoid creating an unnecessary inner class by reusing an existing one and fix some thread safety issue in URLHandlersBundleURLConnection. by Karl Pauls · 17 years ago
  90. 5824871 Added a simple check to detect and work around a bug in J9 (FELIX-416) by Karl Pauls · 17 years ago
  91. 8ab1f64 Change how the extension manager url stream handler handles request to the root path in order to make some tomcat issue go away (FELIX-414). by Karl Pauls · 17 years ago
  92. 26d3143 Removed some whitespace. by Richard S. Hall · 17 years ago
  93. 82a81b5 Added support for "/" bundle resources as requested in FELIX-383. Not by Richard S. Hall · 17 years ago
  94. faa3d61 Use system bundle when firing a framework error event when an install error by Richard S. Hall · 17 years ago
  95. e7b2cb8 Fix a NPE when getEntryPaths is called on the system bundle (FELIX-394). by Karl Pauls · 17 years ago
  96. fa8b777 Modifies bundle resource URL handling such that if a resource URL points by Richard S. Hall · 17 years ago
  97. 455b082 Auto-property handling now installs bundles into the default bundle start by Richard S. Hall · 17 years ago
  98. 0e95885 Overwrite the URLStreamHandler.getHostAddress(URL) in the ExtensionManager to immediately return null to prevent DNS lookup (FELIX-388). by Karl Pauls · 17 years ago
  99. 682e33f Resolved a concurrency issue that could result in the same bundle being by Richard S. Hall · 17 years ago
  100. ad142d2 Fix a few issues with exporting the same package more then once and handle modified module definitions to make extension bundle exports work again (FELIX-30, FELIX-101). by Karl Pauls · 17 years ago