michael@0: /* Any copyright is dedicated to the Public Domain. michael@0: * http://creativecommons.org/publicdomain/zero/1.0/ michael@0: */ michael@0: michael@0: function handleRequest(request, response) michael@0: { michael@0: response.setHeader("Content-Type", "text/plain", false); michael@0: response.setHeader("Cache-Control", "no-cache", false); michael@0: response.setStatusLine(request.httpVersion, 200, "OK"); michael@0: // Tells bug733553.sjs that the consumer is ready for the next part michael@0: let partName = request.queryString; michael@0: setSharedState("next-part", partName); michael@0: response.write("OK!"); michael@0: } michael@0: