Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2016-02-10Updating to version 9.2.16-SNAPSHOTrelease-9.2.15Joakim Erdfelt100-99/+101
2016-02-10Updating to version 9.2.15.v20160210jetty-9.2.15.v20160210Joakim Erdfelt100-100/+117
2016-02-09487511 - Jetty HTTP won't work on turkish systems.jetty-9.2.xSimone Bordet8-109/+130
Fixed usages of toLowerCase() and toUpperCase() to use Locale.ENGLISH.
2016-02-08Updated ALPN version for JDK 8u73 and 8u74.Simone Bordet5-0/+56
2016-01-21Updated ALPN version for JDK 8u71 and 8u72.Simone Bordet5-0/+56
2016-01-05Fixed copyright blurbs.Simone Bordet3-35/+5
2016-01-05484621 - Client hangs till timeout when Authentication.authenticate() throws ↵Simone Bordet2-17/+72
exception. Fixed by surrounding the call to Authentication.authenticate() with a try/catch and acting appropriately in case of exceptions.
2016-01-04Happy New Year 2016Joakim Erdfelt2392-2392/+2392
2015-12-18484603 HashLoginService does not stop its PropertyUserStoreJan Bartel1-4/+3
2015-12-17484612 - Restore WebSocket Session.close() sending 1000/Normal status codeJoakim Erdfelt1-1/+2
2015-12-17484397 - Unavoidable NullPointerException in onMessage-Handler for PongMessagesJoakim Erdfelt1-0/+6
2015-12-16484349 - Promote WebSocket PathMappings / PathSpec to Jetty HttpJoakim Erdfelt7-82/+57
+ More testing, more improvements
2015-12-16Revert "482042 - New API, Allow customization of ServletHandler path mapping"Joakim Erdfelt10-80/+98
This reverts commit 77d4b54082f6789168ea7ef1523e8e1b924bb560.
2015-12-15484350 - Allow GzipHandler path include/exclude to use regexJoakim Erdfelt8-36/+378
+ Overhauled IncludeExclude to use java 8 predicate + Introduced PathSpecSet to standardize path IncludeExclude + GzipHandler now uses PathSpecSet for paths Conflicts: jetty-http/src/main/java/org/eclipse/jetty/http/PathMap.java jetty-servlets/src/main/java/org/eclipse/jetty/servlets/gzip/GzipHandler.java jetty-util/src/main/java/org/eclipse/jetty/util/IncludeExclude.java jetty-util/src/main/java/org/eclipse/jetty/util/RegexSet.java
2015-12-15482042 - New API, Allow customization of ServletHandler path mappingJoakim Erdfelt10-98/+80
+ Swapping out PathMap for PathMappings in ServletHandler Conflicts: jetty-servlet/src/main/java/org/eclipse/jetty/servlet/DefaultServlet.java jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletHandler.java
2015-12-15484349 - Promote WebSocket PathMappings / PathSpec to Jetty HttpJoakim Erdfelt15-0/+2547
+ Moving PathMappings from jetty-websocket to jetty-http + Renaming WebSocketPathSpec to UriTemplatePathSpec + Improving implementation with knowledge gained from PathMap and PathMapTest cases.
2015-12-09GzipHandler Deprecations and User-AgentJoakim Erdfelt1-3/+13
+ Adding javadoc @deprecated for deprecated methods + Adding exclude support for user-agent
2015-12-08Backporting GzipHandler's IncludeExclude configsJoakim Erdfelt8-110/+843
2015-12-08Merge branch 'jetty-9.2.x' into feature/gziphandler-configJoakim Erdfelt6-40/+96
2015-12-08Using Map interface to get around ConcurrentHashMap.keySet() bug with Java 8Joakim Erdfelt1-1/+2
See https://gist.github.com/AlainODea/1375759b8720a3f9f094 for details Conflicts: jetty-servlet/src/main/java/org/eclipse/jetty/servlet/listener/ELContextCleaner.java
2015-12-08StringUtil.csvSplit(String)Greg Wilkins19-31/+262
Conflicts: jetty-maven-plugin/src/main/java/org/eclipse/jetty/maven/plugin/AbstractJettyMojo.java jetty-security/src/main/java/org/eclipse/jetty/security/PropertyUserStore.java jetty-server/src/main/java/org/eclipse/jetty/server/handler/ContextHandler.java jetty-servlets/src/main/java/org/eclipse/jetty/servlets/PushCacheFilter.java jetty-util/src/main/java/org/eclipse/jetty/util/StringUtil.java jetty-xml/src/main/java/org/eclipse/jetty/xml/XmlConfiguration.java
2015-12-08483857 - jetty-client onComplete isn't called in case of exception in ↵Simone Bordet5-31/+82
GZIPContentDecoder. Fixed by catching the exceptions and failing the callbacks. Also using return values from HttpReceiver to compute what to return to the parser.
2015-12-08482243 Fixed GzipHandler for Include.Simone Bordet1-9/+14
Because AbstractCompressedStream is a jetty-servlets class that can be included in web applications, it cannot reference server classes such as Response. The check for inclusion is now done by looking at the dispatcher type.
2015-12-08482270 - Expose upgrade request locales.Simone Bordet1-4/+9
Exposed as a user property.
2015-12-04483620 Servlet annotation mapping to "/" should override webdefault.xml mappingJan Bartel3-39/+312
2015-11-25482855 - Content-Length omitted for POST requests with empty bodyGreg Wilkins2-9/+54
An ineligant fix. Will improve in 9.3.x/9.4.x without HTTP 0.9 support.
2015-11-18Merge branch 'release-9.2.14' into jetty-9.2.xJoakim Erdfelt100-100/+120
2015-11-18482243 Fixed GzipHandler for IncludeGreg Wilkins2-20/+105
2015-11-06Updating to version 9.2.15-SNAPSHOTJoakim Erdfelt100-99/+101
2015-11-06Updating to version 9.2.14.v20151106jetty-9.2.14.v20151106Joakim Erdfelt100-100/+118
2015-11-05481236 - Make ShutdownMonitor java security manager friendlyJoakim Erdfelt1-6/+4
+ Limit access to specific System properties
2015-11-05Updated ALPN version for JDK 8u65 and 8u66.Simone Bordet5-0/+56
2015-11-04481437 - Port ConnectHandler connect and context functionality from Jetty 8.Simone Bordet2-68/+162
Restored connect and context functionalities.
2015-11-04Fixed typo in logging statement.Simone Bordet1-12/+12
2015-11-04481006 - SSL requests intermittently fail with EOFException when SSL ↵Simone Bordet1-0/+4
renegotiation is disallowed. Deprecated HttpConnectionOverFCGI constructor just in case someone uses it.
2015-11-04481006 - SSL requests intermittently fail with EOFException when SSL ↵Simone Bordet10-28/+132
renegotiation is disallowed. Fixed by notifying the Connection promise from onOpen() rather than just after the creation of the connection.
2015-10-13Renaming old 'SelectChannel*' test for new naming schemeJoakim Erdfelt5-6/+6
2015-10-07Ensure ServletHolder new initialization state is reset after doStopJan Bartel1-3/+4
2015-10-07Add initialized boolean to ServletHolderWouter Bancken1-14/+17
Signed-off-by: wouter.bancken@aca-it.be
2015-09-28Improved toString().Simone Bordet5-110/+142
2015-09-21Updated ALPN version for JDK 8u60.Simone Bordet3-0/+28
2015-09-21477817 Fixed memory leak in QueuedThreadPoolGreg Wilkins1-2/+2
Conflicts: jetty-util/src/main/java/org/eclipse/jetty/util/thread/QueuedThreadPool.java
2015-09-15477385 - Problem in MANIFEST.MF with version 9.2.10 / 9.2.13.Simone Bordet1-0/+82
Reintroduced class SpinLock, for compatibility sake when working with mixed versions of Jetty.
2015-08-27428474 - Expose batch mode in the Jetty WebSocket APIJoakim Erdfelt7-8/+54
2015-08-27472082 - isOpen returns true on CLOSING ConnectionJoakim Erdfelt1-4/+2
+ Minor tweak to test for isOutputAvailable() instead of connection state.
2015-08-27476023 - Incorrect trimming of WebSocket close reasonJoakim Erdfelt4-52/+68
+ Fixed CloseStatus.trimMaxReasonLength() to perform trim correctly + Deprecated CloseStatus.trimMaxReasonLength() because it creates to many objects + Removed use of CloseStatus.trimMaxReasonLength() in implementation code + Improved CloseInfo ... + tracks reason via utf8 byte array (not String object) + trims utf8 byte array as-needed + All non-jsr implementations use CloseInfo logic
2015-08-27476049 - When using WebSocket Session.close() there should be no status code ↵Joakim Erdfelt2-2/+6
or reason sent
2015-08-27474936 - WebSocketSessions are not always cleaned out from openSessionsJoakim Erdfelt2-13/+189
+ Adding testcase + Enabling Connection.onClose() -> ioState.onDisconnected() Conflicts: jetty-websocket/websocket-server/src/test/java/org/eclipse/jetty/websocket/server/WebSocketCloseTest.java
2015-08-13Adding testcase for reported 400 Bad request error in jetty-user mailing listJoakim Erdfelt1-0/+13
2015-08-12Fixing javadocJoakim Erdfelt2-2/+1

Back to the top