/hg/icedtea-web: Support HEAD requests in reproducer system HTTP...

adomurad at icedtea.classpath.org adomurad at icedtea.classpath.org
Thu Feb 14 12:29:56 PST 2013


changeset 2870a099b89f in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=2870a099b89f
author: Adam Domurad <adomurad at redhat.com>
date: Thu Feb 14 15:29:34 2013 -0500

	Support HEAD requests in reproducer system HTTP implementation


diffstat:

 ChangeLog                                                     |   5 +++++
 tests/test-extensions/net/sourceforge/jnlp/TinyHttpdImpl.java |  11 ++++++++++-
 2 files changed, 15 insertions(+), 1 deletions(-)

diffs (40 lines):

diff -r 956699e3815f -r 2870a099b89f ChangeLog
--- a/ChangeLog	Wed Feb 13 11:50:12 2013 -0500
+++ b/ChangeLog	Thu Feb 14 15:29:34 2013 -0500
@@ -1,3 +1,8 @@
+2013-02-14  Adam Domurad  <adomurad at redhat.com>
+
+	* tests/test-extensions/net/sourceforge/jnlp/TinyHttpdImpl.java:
+	Support HEAD requests.
+
 2013-02-13  Adam Domurad  <adomurad at redhat.com>
 
 	Fix PR580: http://www.horaoficial.cl/ loads improperly. Applets that
diff -r 956699e3815f -r 2870a099b89f tests/test-extensions/net/sourceforge/jnlp/TinyHttpdImpl.java
--- a/tests/test-extensions/net/sourceforge/jnlp/TinyHttpdImpl.java	Wed Feb 13 11:50:12 2013 -0500
+++ b/tests/test-extensions/net/sourceforge/jnlp/TinyHttpdImpl.java	Thu Feb 14 15:29:34 2013 -0500
@@ -89,7 +89,11 @@
                     if (s.length() < 1) {
                         break;
                     }
-                    if (s.startsWith("GET")) {
+
+                    boolean isGetRequest = s.startsWith("GET");
+                    boolean isHeadRequest = s.startsWith("HEAD");
+
+                    if (isGetRequest || isHeadRequest ) {
                         StringTokenizer t = new StringTokenizer(s, " ");
                         t.nextToken();
                         String op = t.nextToken();
@@ -117,6 +121,11 @@
                             content = ct + "application/x-jar\n";
                         }
                         o.writeBytes("HTTP/1.0 200 OK\nContent-Length:" + l + "\n" + content + "\n");
+
+                        if (isHeadRequest) {
+                            continue; // Skip sending body
+                        }
+
                         if (op.startsWith(XSX)) {
                             byte[][] bb = splitArray(b, 10);
                             for (int j = 0; j < bb.length; j++) {



More information about the distro-pkg-dev mailing list