You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2016/07/15 17:36:21 UTC

wicket git commit: HTTP2 docu improvements

Repository: wicket
Updated Branches:
  refs/heads/master 0006d353f -> dce16feb1


HTTP2 docu improvements


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/dce16feb
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/dce16feb
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/dce16feb

Branch: refs/heads/master
Commit: dce16feb168e86e4daa73c6ce08fec723be62220
Parents: 0006d35
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Fri Jul 15 19:34:05 2016 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Fri Jul 15 19:34:05 2016 +0200

----------------------------------------------------------------------
 .../src/docs/guide/http2push/http2push_1.gdoc      | 17 ++++++-----------
 1 file changed, 6 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/dce16feb/wicket-user-guide/src/docs/guide/http2push/http2push_1.gdoc
----------------------------------------------------------------------
diff --git a/wicket-user-guide/src/docs/guide/http2push/http2push_1.gdoc b/wicket-user-guide/src/docs/guide/http2push/http2push_1.gdoc
index e03477d..d6888fd 100644
--- a/wicket-user-guide/src/docs/guide/http2push/http2push_1.gdoc
+++ b/wicket-user-guide/src/docs/guide/http2push/http2push_1.gdoc
@@ -1,27 +1,22 @@
 Currently there are different implementations for each server to be used until the Servlet 4.0 (JSR 369) specification reaches the final state.
 
 Current supported servers are:
-* Eclipse Jetty
-* Apache Tomcat
-* redhat undertow
+* Eclipse Jetty 9.3+
+* Apache Tomcat 8.5+
+* RedHat Undertow 2+
 
 
 For the setup you need to follow those steps:
 
 1. Setup your server to use HTTP/2 and follow the instructions provided by the vendor specific documentation
 
-2. Add two dependencies to provide the push functionality - one core dependency and one for the custom server implementation.
+2. Add the respective dependency for your web server to provide the push functionality.
 {code}
 <dependency>
 	<groupId>org.apache.wicket.experimental.wicket8</groupId>
-	<artifactId>wicket-http2-core</artifactId>
-	<version>0.X-SNAPSHOT</version>
-</dependency>
-<dependency>
-	<groupId>org.apache.wicket.experimental.wicket8</groupId>
 	<artifactId>wicket-http2-jetty</artifactId>
-	<!--<artifactId>wicket-http2-tomcat</artifactId>
-	<artifactId>wicket-http2-undertow</artifactId>-->
+	<!--<artifactId>wicket-http2-tomcat</artifactId>-->
+	<!--<artifactId>wicket-http2-undertow</artifactId>-->
 	<version>0.X-SNAPSHOT</version>
 </dependency>
 {code}