Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2014-07-23Fixing groupIdJoakim Erdfelt1-1/+1
2014-07-23Fixing quickstart dependency loopJoakim Erdfelt3-3/+17
2014-07-23Fixing buildJoakim Erdfelt5-71/+173
+ Quick start example is now in /examples/quickstart/ to avoid dependency loop + Forgotten tests are now versioned correctly at 9.3.0
2014-07-23Bumping up release plugin versionJoakim Erdfelt1-0/+1
2014-07-23Updating VERSION.txt top sectionJoakim Erdfelt1-1/+56
2014-07-23Merge branch 'master' into release-9Joakim Erdfelt463-4765/+11633
2014-07-23Replaced usage of Continuation with AsyncContext.Simone Bordet1-51/+64
2014-07-23411323 - DosFilter/QoSFilter should use AsyncContext rather than Continuations.Simone Bordet4-81/+133
2014-07-23Guarded calls to LOG.debug() with if (LOG.isDebugEnabled()) to reduce ↵Simone Bordet4-31/+54
allocation of varargs Object[].
2014-07-23expanded tabs in indentsGreg Wilkins50-616/+616
2014-07-23440020 Abort bad proxy responses with sendError(-1)Greg Wilkins5-26/+32
2014-07-23440114 ContextHandlerCollection does not skip context wrappersGreg Wilkins5-99/+386
2014-07-23ignore failing testsGreg Wilkins1-1/+6
2014-07-23439809 mvn jetty:jspc cannot find taglibs in dependency jarsJan Bartel1-6/+24
2014-07-22Reorganized GZIP tests.Simone Bordet2-55/+65
2014-07-22Restored IteratingCallback APIs (in particular the completed()Simone Bordet2-24/+47
method) to keep compatibility over micro versions of Jetty. Removed getState() - can't return a private class from a protected method, plus it was only used in a toString() with the wrong formatting string, that was already printing the state. Removed also final modifiers to keep compatibility.
2014-07-22440122 - Remove usages of ForkInvoker.Simone Bordet2-193/+57
2014-07-22411323 - DosFilter/QoSFilter should use AsyncContext rather than Continuations.Simone Bordet3-169/+186
2014-07-21439788 - CORS filter headers gone between 9.2.0.M0 and 9.2.1 .v20140609 for ↵Simone Bordet2-6/+49
ProxyServlet requests. Removed the offending code that was added only to avoid duplicate Date headers, but sending of those headers is configurable from HttpConfiguration.
2014-07-21440038 - Content decoding may fail.Simone Bordet5-61/+197
Properly looping around the decoding step to ensure that the encoded content is fully consumed.
2014-07-21440020 - ProxyServlet does not handle correctly failure after committed ↵Simone Bordet4-5/+185
response to client. Fixed by introducing a request attribute "org.eclipse.jetty.server .Response.failure" used by HttpChannel to immediately close the connection when it sees it.
2014-07-21439895 - No event callback should be invoked after the "failure" callback.Simone Bordet5-98/+384
Fixed HttpSender and HttpReceiver to use a non-blocking collaborative mechanism to notify callbacks. Only the "failed" callback can run concurrently with other callbacks. No other callback can run after the "complete" callback: a failure concurrent with another callback will notify the "failed" callback, finish the running callback and only then invoke the "complete" callback.
2014-07-19435653 encode async dispatched requestURIGreg Wilkins2-4/+11
2014-07-18439067 Improved graceful stop timeout handlingGreg Wilkins3-4/+7
2014-07-18 Make LoginService tests use single database and drop and recreate tablesJan Bartel5-40/+72
2014-07-18Work with derby internal caching of "derby.system.home" system property.Joakim Erdfelt3-15/+19
+ Turns out, changing "derby.system.home" is unreliable. + Using 'directory' based jdbc urls for derby to avoid finding content in the classloader too. + Use a common derby "System Home" for all tests. + Segregate all database creation into own, test-specific, database.
2014-07-18Better cleanup of LoginService testsJoakim Erdfelt2-17/+10
2014-07-18Adding dstest manual creation, not letting derby create itJoakim Erdfelt1-0/+3
2014-07-18434536 Improved Customizer javadocGreg Wilkins1-3/+3
2014-07-18432815 Fixed selector stop raceGreg Wilkins1-1/+2
2014-07-18439507 - Possible timing side-channel when comparing MD5-CredentialsJoakim Erdfelt5-66/+60
+ Using correct digestMismatch logic + Fixing test cases: + No longer reuses / shares directories + Is now Windows build/test compatible + No longer deleteOnExit() the test data (let maven clean and/or test init do that) + Empty directories are now verified + Using server.getURI() instead of URL string manipulation
2014-07-17439672 support using Apache commons daemon for managing JettyJoakim Erdfelt1-13/+51
Signed-off-by: marko asplund <marko.asplund@gmail.com>
2014-07-17Updated NPN and ALPN to JDK 7u65 and 8u11.Simone Bordet4-0/+49
2014-07-17439369 Deprecate CrossContextPseudoSessionJan Bartel3-0/+5
2014-07-17439753 ConstraintSecurityHandler has dead code for processing constraintsJan Bartel2-16/+1
2014-07-17434536 Improved Customizer javadocGreg Wilkins2-5/+27
2014-07-17435653 encode async dispatched requestURIGreg Wilkins2-50/+71
2014-07-17436987 limited range of default acceptors and selectorsGreg Wilkins3-7/+28
2014-07-17438327 Remove hard coded Allow from OPTIONS *Greg Wilkins3-3/+0
2014-07-17439066 javadoc setStopAtShutdownGreg Wilkins1-0/+7
2014-07-17439067 Javadoc for graceful server stopGreg Wilkins2-0/+44
2014-07-17439438 DataSourceLoginService does not refresh passwords when changed in ↵Jan Bartel5-276/+551
database
2014-07-17439507 Avoid timing leak in MD5 compareGreg Wilkins1-4/+6
Also-by: Benny Baumann<BenBE@cacert.org>
2014-07-17Making ShutdownThread actually stopGreg Wilkins2-80/+43
2014-07-17[FindBugs] Include explicit typing whereever possibleGreg Wilkins20-68/+106
+ No cleanup regarding unchecked types (yet)
2014-07-17[FindBugs] Ensure resources are closed/freed properlyGreg Wilkins5-122/+127
Removing dumb connector.close during server.getURI()
2014-07-16Fixes to Hash Sessions for 'Stream Closed' errorsGreg Wilkins3-46/+34
2014-07-16Ensure everything is finalized properly, especially that the lock is unlockedGreg Wilkins1-3/+9
The issue here was that due to the method call there was no guarantee that the unlock was reached in case of an exception. Restructuring the code like this provides this guarantee
2014-07-16[FindBugs] Ensure proper lazy-initialization even if this costs some performanceGreg Wilkins3-8/+8
2014-07-16Minor typo fixJoakim Erdfelt1-1/+1

Back to the top