From a372152654613fd8479ed4687b987ae2a513adf6 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Sat, 6 Oct 2018 18:10:57 -0600 Subject: [PATCH] altos-map: Fix altos-map HTTP syntax Add blank line between header and content. Make error pages have actual HTML content. Signed-off-by: Keith Packard --- map-server/altos-map/AltosMap.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/map-server/altos-map/AltosMap.java b/map-server/altos-map/AltosMap.java index 83bc7cea..380556f4 100644 --- a/map-server/altos-map/AltosMap.java +++ b/map-server/altos-map/AltosMap.java @@ -56,7 +56,11 @@ public class AltosMap { public void fail(int status, String reason) { write_status(status); write_type("text/html"); + System.out.printf("\n"); + System.out.printf("\n"); + System.out.printf("Map Fetch Failure\n"); System.out.printf("%s\n", reason); + System.out.printf("\n"); System.exit(1); } @@ -133,6 +137,7 @@ public class AltosMap { String content_type = reply.get_string("content_type", null); System.out.printf("Content-Type: %s\n", content_type); System.out.printf("Content-Length: %d\n", file.length()); + System.out.printf("\n"); byte[] buf = new byte[4096]; int bytes_read; while ((bytes_read = in.read(buf)) > 0) -- 2.30.2