Skip to main content
summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2014-09-24[maven-release-plugin] prepare release jetty-9.3.0.M0jetty-9.3.0.M0Jesse McConnell104-111/+110
2014-09-24set for releaseJesse McConnell1-4/+36
2014-09-24Merge branch 'master' into release-9Jesse McConnell46-437/+1773
2014-09-23Merged branch 'jetty-9.2.x' into 'master'.Simone Bordet3-6/+69
2014-09-23444863 - ProxyServlet does not filter headers listed by the Connection header.Simone Bordet2-5/+63
2014-09-23438387 - NullPointerException after ServletUpgradeResponse.sendForbiddenJoakim Erdfelt1-1/+6
is called during WebSocketCreator.createWebSocket + Adding NPE guard for error/forbidden/complete flows
2014-09-23Merged branch 'jetty-9.2.x' into 'master'.Simone Bordet0-0/+0
2014-09-23442495 - Bad Context ClassLoader in JSR356 WebSocket onOpen Joakim Erdfelt4-83/+112
+ Fixing onOpen context classloader to be that of the context that started the WebSocketUpgradeFilter (which will be the same as the WebAppContext in most cases)
2014-09-23444617 - Expose local and remote socket address to applications Joakim Erdfelt3-0/+104
+ Exposing 2 new automatically added userProperties * "javax.websocket.endpoint.localAddress" * "javax.websocket.endpoint.remoteAddress" these are both java.net.InetSocketAddress objects
2014-09-23444771 - JSR356 / EndPointConfig.userProperties are not unique perJoakim Erdfelt3-8/+98
endpoint upgrade + Adding testcase & implementation which honors the ServerEndpointConfig.userProperties copy at an earlier point.
2014-09-23444748 - WebSocketClient.stop() does not unregister from ShutdownThread Joakim Erdfelt1-1/+9
+ Making (de)register smart about if wsclient is registered or not
2014-09-23444416 - AsyncProxyServlet recursion.Simone Bordet2-95/+72
Implemented reading of content using IteratingCallback to avoid recursion.
2014-09-23444764 - HttpClient notifies callbacks for last chunk of content twice.Simone Bordet2-0/+50
Fixed by filtering out notification of the callbacks in case the HttpContent is already consumed.
2014-09-23added TLD to quickstart exampleGreg Wilkins1-0/+6
2014-09-23444547 Format exception in ResourceCache.Content.toString()Jan Bartel1-1/+1
2014-09-23444222 replace CRLF in header values with whitespace rather than ?Greg Wilkins3-4/+84
2014-09-23Restoring ErrorHandler / ErrorPageErrorHandler logicJoakim Erdfelt1-4/+0
2014-09-23444517 - Ensure WebSocketUpgradeFilter is always first in filter chainJoakim Erdfelt2-10/+66
* Using Servlet 3.1's ServletContext.addFilter() mechanisms with its FilterRegistration to encourage the WebSocketUpgradeFilter to be first in the filter chain. Note: this is possible, but can be overridden by another call to the same ServletContext.addFilter() using the same techniques to put something in front of the WebSocketUpgradeFilter.
2014-09-23444124 JSP include with <servlet><jsp-file> can cause infinite recursionJan Bartel1-9/+67
2014-09-23444416 Interative Callback pattern in AsyncProxyServletGreg Wilkins1-11/+69
2014-09-23Made methods return boolean to indicate whether the update wasSimone Bordet1-8/+12
successful or not.
2014-09-22442495 - Bad Context ClassLoader in JSR356 WebSocket onOpen Joakim Erdfelt4-83/+112
+ Fixing onOpen context classloader to be that of the context that started the WebSocketUpgradeFilter (which will be the same as the WebAppContext in most cases)
2014-09-22444617 - Expose local and remote socket address to applications Joakim Erdfelt3-0/+104
+ Exposing 2 new automatically added userProperties * "javax.websocket.endpoint.localAddress" * "javax.websocket.endpoint.remoteAddress" these are both java.net.InetSocketAddress objects
2014-09-22444771 - JSR356 / EndPointConfig.userProperties are not unique perJoakim Erdfelt3-8/+98
endpoint upgrade + Adding testcase & implementation which honors the ServerEndpointConfig.userProperties copy at an earlier point.
2014-09-22444748 - WebSocketClient.stop() does not unregister from ShutdownThread Joakim Erdfelt1-1/+9
+ Making (de)register smart about if wsclient is registered or not
2014-09-22444416 - AsyncProxyServlet recursion.Simone Bordet2-95/+72
Implemented reading of content using IteratingCallback to avoid recursion.
2014-09-22444764 - HttpClient notifies callbacks for last chunk of content twice.Simone Bordet2-0/+50
Fixed by filtering out notification of the callbacks in case the HttpContent is already consumed.
2014-09-22added TLD to quickstart exampleGreg Wilkins1-0/+6
2014-09-22PushCacheFilter handles multiple hosts and portsGreg Wilkins2-5/+45
2014-09-21improved debug loggingGreg Wilkins4-9/+40
2014-09-21Enhanced PushCacheFilterGreg Wilkins1-41/+56
Can learn associations from if-modified-since requests has __renewPushCache__ special URI to renew associations HACK!
2014-09-19Made the test more robust, avoiding WritePendingExceptions.Simone Bordet1-4/+25
2014-09-19444485 - Client resets stream, pending server data is failed, write hangs.Greg Wilkins1-10/+10
renamed terminate to abort
2014-09-19444547 Format exception in ResourceCache.Content.toString()Jan Bartel1-1/+1
2014-09-18Merge branch 'jetty-9.2.x' of ↵Greg Wilkins3-19/+129
ssh://git.eclipse.org/gitroot/jetty/org.eclipse.jetty.project into jetty-9.2.x
2014-09-18444222 replace CRLF in header values with whitespace rather than ?Greg Wilkins3-4/+84
2014-09-18Restoring ErrorHandler / ErrorPageErrorHandler logicJoakim Erdfelt1-4/+0
2014-09-18444517 - Ensure WebSocketUpgradeFilter is always first in filter chainJoakim Erdfelt2-10/+66
* Using Servlet 3.1's ServletContext.addFilter() mechanisms with its FilterRegistration to encourage the WebSocketUpgradeFilter to be first in the filter chain. Note: this is possible, but can be overridden by another call to the same ServletContext.addFilter() using the same techniques to put something in front of the WebSocketUpgradeFilter.
2014-09-18444485 - Client resets stream, pending server data is failed, write hangs.Simone Bordet2-110/+303
Fixed by ensuring that when a failure happens, either by catching an exception or by failing a callback, we always call completed() and abort the channel (via new method terminate()).
2014-09-18Using method superWrite() instead of super.write().Simone Bordet1-6/+6
2014-09-18More simplifications for the send() implementation.Simone Bordet1-3/+2
2014-09-18minor cleanups of exceptionsGreg Wilkins6-2/+22
2014-09-18444124 JSP include with <servlet><jsp-file> can cause infinite recursionJan Bartel1-9/+67
2014-09-18Merge remote-tracking branch 'origin/jetty-9.2.x'Greg Wilkins4-30/+195
Conflicts: jetty-io/src/main/java/org/eclipse/jetty/io/ssl/SslConnection.java
2014-09-18444416 Interative Callback pattern in AsyncProxyServletGreg Wilkins1-11/+69
2014-09-18444415 iterative WriteFlusherGreg Wilkins3-30/+175
2014-09-18444222 added explicit folded header testGreg Wilkins1-0/+30
2014-09-17Merge branch 'master' of ↵Greg Wilkins4-25/+28
ssh://git.eclipse.org/gitroot/jetty/org.eclipse.jetty.project
2014-09-17Made the test more reliable.Simone Bordet1-0/+5
2014-09-17Improved send() implementation to be more clear, and covered also aSimone Bordet1-5/+18
missing case where the callback may have not been notified.

Back to the top