michael@0: michael@0: function handleRequest(request, response) michael@0: { michael@0: // avoid confusing cache behaviors michael@0: response.setHeader("Cache-Control", "no-cache", false); michael@0: response.setHeader("Content-Type", "application/json", false); michael@0: michael@0: // used by test_user_agent_updates test michael@0: response.write(decodeURIComponent(request.queryString)); michael@0: } michael@0: