1. d9c913a switch Guice from manually repackaging Guava to depending on Guava. it's still jarjar'd right now, which is causing a ~400k increase in guice-snapshot.jar. next step is to switch to ProGuard to remove the unnecessary code and cut it back down (even further?!). this will let people build from Guice source and depend directly on Guava code without having to worry about hiding internal/util. by sberlin · 13 years ago
  2. 845fc0e fix @since version. by sberlin · 14 years ago
  3. c13b545 adding more missing @since 3.0 tags. by sberlin · 14 years ago
  4. 2a031c0 fix issue 544 -- allow ServletModules to be reused w/o reconstructing new ones. also fixes a bug where a ServletModule that contained only filters would have run each filter twice if the module was being reused (or three times if it was being used a third time, etc..). thanks to mathiue.carbou for pointing out the problem. by sberlin · 14 years ago
  5. 99ca2d6 update parameter names to reflect what they are. by sberlin · 14 years ago
  6. f8537ea move extensions that weren't under extensions/ into that directory. simplify paths so everything is uniform for extensions. by sberlin · 14 years ago[Renamed from servlet/src/com/google/inject/servlet/ServletModule.java]
  7. 9a227be Move internal utility code to separate package. by limpbizkit@gmail.com · 14 years ago
  8. 6a8523c Fix for issue #455 where path info was a memoized provided incorrectly to request-dispatcher produced requests. by dhanji · 15 years ago
  9. e477c78 with(instance) api for servlet module. Thanks to isaac.shum by dhanji · 15 years ago
  10. 53664a7 Regrettably replacing jarjar'd Google Collections with minimal copies of the parts that we use. by limpbizkit · 16 years ago
  11. 36e6d8d Javadoc fix, servlet scopes as singleton. by dhanji · 16 years ago
  12. 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 · 16 years ago
  13. b92a84e Removed old API diffs. by limpbizkit · 16 years ago
  14. b7ed1bb Some cleanups from Jesse's last comments. Performance improvements (minor). Next CL handles more cleanups, multiple modules, and better error checking. by dhanji · 16 years ago
  15. 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 · 16 years ago
  16. bb80789 Kindof important minor bug fix... ;) Tested in container and working properly. More tests and varargs binding coming in next CL. by dhanji · 16 years ago
  17. 6634fe1 Review v733 fixes. And additional tests (all passing). by dhanji · 16 years ago
  18. 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 · 16 years ago
  19. 2394ca6 Issue 93: run an optimize-imports over all the source. by kevinb9n · 17 years ago
  20. 63e9a82 Simplified source directory structure. Forget Maven. by crazyboblee · 18 years ago[Renamed from servlet/src/main/java/com/google/inject/servlet/ServletModule.java]
  21. 59959ad Moved servlet source directories. by crazyboblee · 18 years ago[Renamed from servlet/src/com/google/inject/servlet/ServletModule.java]
  22. 0dfec97 Moved servlet package into its own module. by crazyboblee · 18 years ago[Renamed from src/com/google/inject/servlet/ServletModule.java]
  23. 589b57d Replace Factory with Provider. Hid Context from public API. by crazyboblee · 18 years ago
  24. 0bfdbc6 Removed convenience methods from Container. Broke down BindingBuilder into multiple interfaces to limit which methods can be called at which times. Filled in missing Javadocs. Synced AbstractModule with Binder. Added code to detect optional=true on constructors. Created Struts 2 modules and got that code working again. Modified CreationException to record stack trace. by crazyboblee · 18 years ago
  25. 0786a7b Renamed generate() to get(). by crazyboblee · 18 years ago
  26. 69b36f8 Renamed Generator to Factory. by crazyboblee · 18 years ago
  27. 5746d5d Renamed ContainerCreationException to CreationException (shorter). Renamed Factory to Locator. by crazyboblee · 18 years ago
  28. 85d17c5 Renamed ContextualFactory to Generator. Disabed users from passing in Factory implementations. by crazyboblee · 18 years ago
  29. d7908e8 Added a JMX interface to aid debugging. by crazyboblee · 18 years ago
  30. bc9a5b8 Removed broken imports. by crazyboblee · 18 years ago
  31. b1f2e68 Modified scope binding to bind to scope annotations directly. No more strings. by crazyboblee · 18 years ago
  32. 1c4d3e3 Moved name-related logic into a subpackage. by crazyboblee · 18 years ago
  33. 10a3b02 Added intercept() to ContainerBuilder. Hid ConstructionProxy, ProxyFactory, etc. Removed intercept package. Added query package. Started Struts 2 plugin and example. by crazyboblee · 18 years ago
  34. 3a09e29 Added servlet scopes. by crazyboblee · 18 years ago