Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/toolkit/components/passwordmgr/test/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 970 B image not shown  

Quelle  formsubmit.sjs   Sprache: unbekannt

 
function handleRequest(request, response) {
  try {
    reallyHandleRequest(request, response);
  } catch (e) {
    response.setStatusLine("1.0", 200, "AlmostOK");
    response.write("Error handling request: " + e);
  }
}

function reallyHandleRequest(request, response) {
  let match;

  // XXX I bet this doesn't work for POST requests.
  let query = request.queryString;

  let user = null,
    pass = null;
  // user=xxx
  match = /user(?:name)?=([^&]*)/.exec(query);
  if (match) {
    user = match[1];
  }

  // pass=xxx
  match = /pass(?:word)?=([^&]*)/.exec(query);
  if (match) {
    pass = match[1];
  }

  response.setStatusLine("1.0", 200, "OK");

  response.setHeader("Content-Type", "application/xhtml+xml", false);
  response.write("<html xmlns='http://www.w3.org/1999/xhtml'>");
  response.write("<p>User: <span id='user'>" + user + "</span></p>\n");
  response.write("<p>Pass: <span id='pass'>" + pass + "</span></p>\n");
  response.write("</html>");
}

[ Dauer der Verarbeitung: 0.19 Sekunden  (vorverarbeitet)  ]