user_agent_update.sjs 309 B

1234567891011
  1. function handleRequest(request, response)
  2. {
  3. // avoid confusing cache behaviors
  4. response.setHeader("Cache-Control", "no-cache", false);
  5. response.setHeader("Content-Type", "application/json", false);
  6. // used by test_user_agent_updates test
  7. response.write(decodeURIComponent(request.queryString));
  8. }