1. 545cee1 Core javadoc build target. by limpbizkit · 15 years ago
  2. c1c9530 Fixing tests for InjectionPoint and Dependency serialization by limpbizkit · 15 years ago
  3. e05f254 Moving JNDI and JMX out to extensions/ by limpbizkit · 15 years ago
  4. 6caa8dc Stripping serializability from Key, InjectionPoint and Dependency for the release. by limpbizkit · 15 years ago
  5. 558521e The new Guice 2.0 Javadoc. by limpbizkit · 15 years ago
  6. bd3f704 Updating the Javadoc to v2. by limpbizkit · 15 years ago
  7. 61584c4 Fixing {@link} warning by limpbizkit · 15 years ago
  8. 050d1f8 Missing @since tags by limpbizkit · 15 years ago
  9. 9b584e3 Added a note on Nullable to assistedinject by limpbizkit · 15 years ago
  10. aa07ab0 Killing ModuleWriter in favour of Element.applyTo() by limpbizkit · 15 years ago
  11. 1c22955 Applying the servlet fixes from r840 (on the snapshot) to trunk. by limpbizkit · 15 years ago
  12. a2b241d additional doc for TypeLiteral, helping to make it easier to find wildcard types. by limpbizkit · 15 years ago
  13. 833265f patch from mcculls: by limpbizkit · 15 years ago
  14. e89c49e Some low-hanging fruit optimizations. by limpbizkit · 15 years ago
  15. cd54a60 Removing a broken test. I was prototyping this and it didn't go anywhere. by limpbizkit · 15 years ago
  16. 8166e4c Updating MapMaker to 1.0RC1. Also changing StrictContainerTestSuite to match Google App Engine/Java's constraints on starting threads. by limpbizkit · 15 years ago
  17. 759662b Tests and fix for issue 340. by limpbizkit · 15 years ago
  18. f4822fb User reported testcase for bug 349. by limpbizkit · 15 years ago
  19. 50581d1 Greg Kick's fix to use UniqueAnnotations in the servlets module by limpbizkit · 15 years ago
  20. eb40513 Overdue update to fix the no-AOP build of Guice to compile. by limpbizkit · 15 years ago
  21. 391eaec Integrated David You's patch for reading pathInfo better from regex mapped servlets. Tests passing. by dhanji · 15 years ago
  22. 111291f Added updated Javadocs. by limpbizkit · 15 years ago
  23. 4faaeb5 Removed old Javadocs. by limpbizkit · 15 years ago
  24. ee79246 More listener changes: by limpbizkit · 15 years ago
  25. a843a95 Simplifying listeners: by limpbizkit · 15 years ago
  26. 59a6042 Fix for bug 352: WildcardTypeImpl constructor argument check fails by limpbizkit · 15 years ago
  27. ccb15e4 Fixing a bug reported by James Strachan. The Encounter isn't being invalidated, which is leading to problems since its methods don't work after the hear() method returns. by limpbizkit · 15 years ago
  28. 59d178e A couple of test changes: by limpbizkit · 15 years ago
  29. 8d62075 Support deferred lookups of providers and members injectors from the Encounter. by limpbizkit · 15 years ago
  30. d31578a Adding test coverage for calling 'initialize' on ProviderLookups and MembersInjectorLookups, and fixing the bugs the tests show in their applyTo() methods. by limpbizkit · 15 years ago
  31. 028815a A new test to verify that our new Element.applyTo() API is repeatable. This currently includes one failing test for private modules... by limpbizkit · 15 years ago
  32. 70685b9 InjectableTypeListenerBinding elements now participate in module rewriting. This is necessary to use 'em in Modules.override(). by limpbizkit · 15 years ago
  33. 63a9605 Test cases that prove we have reliable iteration order for Multibinder and MapBinder by limpbizkit · 15 years ago
  34. e8fdeb8 Added updated Javadocs. by limpbizkit · 15 years ago
  35. ca4363d Removed old Javadocs. by limpbizkit · 15 years ago
  36. 7cef5b0 We now fire InjectionListeners on member injectors. by limpbizkit · 15 years ago
  37. 0ca7f91 It is now possible to inject a MembersInjector<T> anywhere, just like how we already support injecting a Provider<T> and a TypeLiteral<T> anywhere. by limpbizkit · 15 years ago
  38. 97eac0f Injector.getMembersInjector() and Binder.getMembersInjector() APIs both implemented and tested. by limpbizkit · 15 years ago
  39. 315ee3f Make ServletContext available even a bit earlier than it already was. by dhanji · 15 years ago
  40. 516e2ab Error handling. Now if InjectionListeners or InjectableTypeListeners fail, we include those errors in our pretty error report. by limpbizkit · 15 years ago
  41. efd4852 Added support for early access to the Servlet conteext. See issue 348 by dhanji · 15 years ago
  42. 5973b1b Added updated Javadocs. by limpbizkit · 15 years ago
  43. 50faaea Removed old Javadocs. by limpbizkit · 15 years ago
  44. 03b81a6 Early draft of InjectionListeners. by limpbizkit · 15 years ago
  45. 3697a67 Changing BytecodeGen to be sensitive to restrictions on calls to ClassLoader.getSystemClassLoader(). This is necessary for some constrained JVMs. by limpbizkit · 15 years ago
  46. 5b25734 Misc small changes. Fix for bug 341, and tweaking assisted inject Javadoc. by limpbizkit · 15 years ago
  47. 9d6b656 Applying ilya.firman's patch for issue 218. I tweaked the patch to use TypeLiteral's new type resolution methods like TypeLiteral.getReturnType(Method) etc., which makes it so we always just do-the-right-thing for matching type variables. by limpbizkit · 15 years ago
  48. b1ebb1b Installing a null module currently gives a lame error message; this one's better by limpbizkit · 15 years ago
  49. 8bda412 Fixed some doc pointing at an old version by limpbizkit · 15 years ago
  50. 53664a7 Regrettably replacing jarjar'd Google Collections with minimal copies of the parts that we use. by limpbizkit · 15 years ago
  51. 4f6274a Removing all ASM and cglib dependencies from the no_aop build of Guice. by limpbizkit · 15 years ago
  52. bf0d876 Removing all references to method interceptors from the non-AOPified Guice. This passes the full Guice test suite (other than the interceptor tests that are removed, and the tests that fail in the normal Guice build). by limpbizkit · 15 years ago
  53. 7c508c2 Initial support for building an AOP-free copy of the Guice source tree from the standard source tree. by limpbizkit · 15 years ago
  54. ca16de9 Removes unnecessary and invalid align="left" attributes from grapher's by phopkins · 15 years ago
  55. 387abc0 Critical bug fix for issue: http://code.google.com/p/google-guice/issues/detail?id=335 by dhanji · 15 years ago
  56. 36e6d8d Javadoc fix, servlet scopes as singleton. by dhanji · 15 years ago
  57. 4957f9a Some small changes I ran into while upgrading the internal snapshot: by limpbizkit · 15 years ago
  58. 9119370 Moved PrivateBinder to inject package. Modified PrivateModule to use configure() instead of configurePrivateBindings(). by crazyboblee · 15 years ago
  59. c112063 Added XML example. by crazyboblee · 15 years ago
  60. 210bf43 Replace ReferenceCache w/ MapMaker. by crazyboblee · 15 years ago
  61. 2473de5 Improves Grapher's display of names: by phopkins · 15 years ago
  62. c60b665 Fixed NPE on destroy of invalid Servlet error. This is a weird corner case caused by shutdown hook from the servlet container destroying GuiceFilter when one of its filters or servlets was "out of service", i.e. bound incorrectly. by dhanji · 15 years ago
  63. a56b012 Guice Servlet now uses findBindingsByType. Should improve startup performance. by dhanji · 15 years ago
  64. 0aade0c Restoring some runtime compatibility for issue 315. by limpbizkit · 15 years ago
  65. b8a6552 Multilbinder now uses findBindingsByType. Should improve startup performance. by dhanji · 15 years ago
  66. 29ccacf Test to demonstrate issue 317 and how it's implemented. by limpbizkit · 15 years ago
  67. 9c65cc2 update to cglib snapshot that should have fix for duplicated classname issue by chris.nokleberg · 15 years ago
  68. 714df3c bstoler's changes for issue 305... by limpbizkit · 15 years ago
  69. 87dfe5b Error checking for duplicate URI pattern mapping (servlets only). by dhanji · 15 years ago
  70. 1bedfac Added invalid scope (non-singleton) error checking and tests. Should pretty much be the last Guice Servlet 2.0 feature needed before release. by dhanji · 15 years ago
  71. 5c1ab7f Multiple modules support. Also weakened exception in Stage.DEVELOPMENT for multiple injectors with their own pipelines. This allows tests to work in the same VM. by dhanji · 15 years ago
  72. b4cd3ae Added updated Javadocs. by limpbizkit · 15 years ago
  73. 1623bc5 Removed old Javadocs. by limpbizkit · 15 years ago
  74. f04bba8 Fixing broken {@link by limpbizkit · 15 years ago
  75. ce2c7b0 Fixing broken {@link by limpbizkit · 15 years ago
  76. a89b84d Added updated API diffs. by limpbizkit · 15 years ago
  77. a35a329 I mistakenly committed this when I removed the old API diffs. by limpbizkit · 15 years ago
  78. b92a84e Removed old API diffs. by limpbizkit · 15 years ago
  79. b52a7fd Fixes HasDependency instance cases in the Grapher by phopkins · 15 years ago
  80. 7096280 Using a private monitor rather than a public one for building singletons. It's still global... by limpbizkit · 15 years ago
  81. aff72e0 Adds Graphviz-based grapher extension by phopkins · 15 years ago
  82. 696c5cd Exposing the effective interceptors in ConstructorBinding by limpbizkit · 15 years ago
  83. c3f9284 Renaming PrivateEnvironment to PrivateElements. I don't love this name 'cause I don't like plural names for classes; it reminds me of Collections, which is a utility class rather than an instantiable type. by limpbizkit · 15 years ago
  84. b7ed1bb Some cleanups from Jesse's last comments. Performance improvements (minor). Next CL handles more cleanups, multiple modules, and better error checking. by dhanji · 15 years ago
  85. 6fd7e4f Removing the obsolete commands extension. Almost all of it has been rolled into the Guice SPI. by limpbizkit · 15 years ago
  86. ddb3862 Supporting HasDependencies for Multibinder, MapBinder and AssistedInject v1. by limpbizkit · 15 years ago
  87. 9fcc807 Tests for bug 281. We didn't have coverage for getThis(). by limpbizkit · 15 years ago
  88. 8996e80 phopkins' changes to BindingTargetVisitor so it accepts wildcard types. Original patch submitted with issue 290. by limpbizkit · 15 years ago
  89. 5008e3a Fixed type conversion Javadoc as recommended by phopkins. See issue 287. by limpbizkit · 15 years ago
  90. c45600e InjectionRequests now expose their injection points (or throw an exception upon request) by limpbizkit · 15 years ago
  91. 4994bf6 Mikeward's Javadoc fixes. Mike read through all of our Javadoc (thank you!) and found a few typos and simplifications by limpbizkit · 15 years ago
  92. eec6511 Added updated Javadocs. by limpbizkit · 15 years ago
  93. 8d7fcaa Removed old Javadocs. by limpbizkit · 15 years ago
  94. 76c24b1 This should be the last big refactoring before Guice 2 final... by limpbizkit · 15 years ago
  95. ae3de7d Added varargs mapping for filters and servlets. And added a bunch of tests that verify the dispatch pipeline, servlet spec compliance, and so forth. by dhanji · 15 years ago
  96. bb80789 Kindof important minor bug fix... ;) Tested in container and working properly. More tests and varargs binding coming in next CL. by dhanji · 15 years ago
  97. 6634fe1 Review v733 fixes. And additional tests (all passing). by dhanji · 15 years ago
  98. 52ce321 First cut of Guice Servlet 2.0. Contains regex dispatching, improved binding DSL, and almost the full gamut of features short of per-servlet filtering. by dhanji · 15 years ago
  99. 9b89470 I compiled all of our Javadoc examples and fixed some problems. by limpbizkit · 16 years ago
  100. aa3cd30 mcculls' changes from issue 280. by limpbizkit · 16 years ago