Rename writeHeader to writeHead
authorBenjamin Thomas <benjamin@benjaminthomas.org>
Thu, 25 Feb 2010 20:54:48 +0000 (20:54 +0000)
committerRyan Dahl <ry@tinyclouds.org>
Thu, 25 Feb 2010 21:01:21 +0000 (13:01 -0800)
19 files changed:
benchmark/http_simple.js
benchmark/static_http_server.js
doc/api.txt
doc/index.html
lib/http.js
test/pummel/test-keep-alive.js
test/pummel/test-multipart.js
test/simple/test-http-1.0.js
test/simple/test-http-cat.js
test/simple/test-http-chunked.js
test/simple/test-http-client-race.js
test/simple/test-http-client-upload.js
test/simple/test-http-malformed-request.js
test/simple/test-http-proxy.js
test/simple/test-http-server.js
test/simple/test-http-tls.js
test/simple/test-http-wget.js
test/simple/test-http.js
test/simple/test-remote-module-loading.js

index 1d758b0..8bfc097 100644 (file)
@@ -47,7 +47,7 @@ http.createServer(function (req, res) {
 
   var content_length = body.length.toString();
 
-  res.writeHeader( status 
+  res.writeHead( status 
                 , { "Content-Type": "text/plain"
                   , "Content-Length": content_length
                   }
index 5bc4812..5b4f220 100644 (file)
@@ -16,7 +16,7 @@ for (var i = 0; i < bytes; i++) {
 }
 
 var server = http.createServer(function (req, res) {
-  res.writeHeader(200, {
+  res.writeHead(200, {
     "Content-Type": "text/plain",
     "Content-Length": body.length
   });
index 23a697a..13e70f4 100644 (file)
@@ -19,7 +19,7 @@ World":
 var sys = require("sys"), 
    http = require("http");
 http.createServer(function (request, response) {
-  response.writeHeader(200, {"Content-Type": "text/plain"});
+  response.writeHead(200, {"Content-Type": "text/plain"});
   response.write("Hello World\n");
   response.close();
 }).listen(8000);
@@ -951,7 +951,7 @@ The +http.Connection+ object.
 This object is created internally by a HTTP server--not by the user. It is
 passed as the second parameter to the +"request"+ event.
 
-+response.writeHeader(statusCode[, reasonPhrase] , headers)+ ::
++response.writeHead(statusCode[, reasonPhrase] , headers)+ ::
 
 Sends a response header to the request. The status code is a 3-digit HTTP
 status code, like +404+. The last argument, +headers+, are the response headers.
@@ -962,7 +962,7 @@ Example:
 +
 ----------------------------------------
 var body = "hello world";
-response.writeHeader(200, {
+response.writeHead(200, {
   "Content-Length": body.length,
   "Content-Type": "text/plain"
 });
@@ -973,7 +973,7 @@ be called before +response.close()+ is called.
 
 +response.write(chunk, encoding="ascii")+ ::
 
-This method must be called after +writeHeader+ was
+This method must be called after +writeHead+ was
 called. It sends a chunk of the response body. This method may
 be called multiple times to provide successive parts of the body.
 +
@@ -1297,7 +1297,7 @@ http.createServer(function (req, res) {
     fields = {},
     name, filename;
   mp.addListener("error", function (er) {
-    res.writeHeader(400, {"content-type":"text/plain"});
+    res.writeHead(400, {"content-type":"text/plain"});
     res.write("You sent a bad message!\n"+er.message);
     res.close();
   });
@@ -1317,7 +1317,7 @@ http.createServer(function (req, res) {
   });
   mp.addListener("complete", function () {
     var response = "You posted: \n" + sys.inspect(fields);
-    res.writeHeader(200, {
+    res.writeHead(200, {
       "content-type" : "text/plain",
       "content-length" : response.length
     });
index b471e8c..d5f3661 100644 (file)
@@ -48,7 +48,7 @@ var sys = require('sys'),
    http = require('http');
 http.createServer(function (req, res) {
   setTimeout(function () {
-    res.writeHeader(200, {'Content-Type': 'text/plain'});
+    res.writeHead(200, {'Content-Type': 'text/plain'});
     res.write('Hello World');
     res.close();
   }, 2000);
index 6278b71..5e514e4 100644 (file)
@@ -257,7 +257,7 @@ sys.inherits(ServerResponse, OutgoingMessage);
 exports.ServerResponse = ServerResponse;
 
 
-ServerResponse.prototype.writeHeader = function (statusCode) {
+ServerResponse.prototype.writeHead = function (statusCode) {
   var reasonPhrase, headers, headerIndex;
 
   if (typeof arguments[1] == 'string') {
@@ -279,8 +279,9 @@ ServerResponse.prototype.writeHeader = function (statusCode) {
   this.sendHeaderLines(status_line, headers);
 };
 
-// TODO eventually remove sendHeader()
-ServerResponse.prototype.sendHeader = ServerResponse.prototype.writeHeader;
+// TODO eventually remove sendHeader(), writeHeader()
+ServerResponse.prototype.sendHeader = ServerResponse.prototype.writeHead;
+ServerResponse.prototype.writeHeader = ServerResponse.prototype.writeHead;
 
 function ClientRequest (method, url, headers) {
   OutgoingMessage.call(this);
index 4b8dc93..d9d444d 100644 (file)
@@ -6,7 +6,7 @@ PORT = 8891;
 
 body = "hello world\n";
 server = http.createServer(function (req, res) {
-  res.writeHeader(200, { 
+  res.writeHead(200, { 
     "Content-Length": body.length, 
     "Content-Type": "text/plain", 
   });
index b542e99..4ba19e2 100644 (file)
@@ -77,12 +77,12 @@ var server = http.createServer(function (req, res) {
     }
     mp.addListener("error", function (er) {
       sys.puts("!! error occurred");
-      res.writeHeader(400, {});
+      res.writeHead(400, {});
       res.write("bad");
       res.close();
     });
     mp.addListener("complete", function () {
-      res.writeHeader(200, {});
+      res.writeHead(200, {});
       res.write("ok");
       res.close();
     });
index 801972c..455b9e2 100644 (file)
@@ -9,7 +9,7 @@ var server_response = "";
 var client_got_eof = false;
 
 var server = http.createServer(function (req, res) {
-  res.writeHeader(200, {"Content-Type": "text/plain"});
+  res.writeHead(200, {"Content-Type": "text/plain"});
   res.write(body);
   res.close();
 })
index 9e26b4b..c6c2de8 100644 (file)
@@ -5,7 +5,7 @@ PORT = 8888;
 var body = "exports.A = function() { return 'A';}";
 var server = http.createServer(function (req, res) {
   puts("got request");
-  res.writeHeader(200, [
+  res.writeHead(200, [
     ["Content-Length", body.length],
     ["Content-Type", "text/plain"]
   ]);
index f189573..2ff677c 100644 (file)
@@ -5,7 +5,7 @@ var PORT = 8888;
 var UTF8_STRING = "Il était tué";
 
 var server = http.createServer(function(req, res) {
-  res.writeHeader(200, {"Content-Type": "text/plain; charset=utf8"});
+  res.writeHead(200, {"Content-Type": "text/plain; charset=utf8"});
   res.write(UTF8_STRING, 'utf8');
   res.close();
 });
index 3541830..2ae92bc 100644 (file)
@@ -8,7 +8,7 @@ var body2_s = "22222";
 
 var server = http.createServer(function (req, res) {
   var body = url.parse(req.url).pathname === "/1" ? body1_s : body2_s;
-  res.writeHeader(200, { "Content-Type": "text/plain"
+  res.writeHead(200, { "Content-Type": "text/plain"
                       , "Content-Length": body.length
                       });
   res.write(body);
index 880b229..91fc660 100644 (file)
@@ -18,7 +18,7 @@ var server = http.createServer(function(req, res) {
   req.addListener('end', function () {
     server_req_complete = true;
     puts("request complete from server");
-    res.writeHeader(200, {'Content-Type': 'text/plain'});
+    res.writeHead(200, {'Content-Type': 'text/plain'});
     res.write('hello\n');
     res.close();
   });
index 5d2efc1..27b6e80 100644 (file)
@@ -13,7 +13,7 @@ nrequests_expected = 1;
 var s = http.createServer(function (req, res) {
   puts("req: " + JSON.stringify(url.parse(req.url)));
 
-  res.writeHeader(200, {"Content-Type": "text/plain"});
+  res.writeHead(200, {"Content-Type": "text/plain"});
   res.write("Hello World");
   res.close();
 
index 5f7bac5..f3bd0a8 100644 (file)
@@ -7,7 +7,7 @@ var BACKEND_PORT = 8870;
 
 var backend = http.createServer(function (req, res) {
   // debug("backend");
-  res.writeHeader(200, {"content-type": "text/plain"});
+  res.writeHead(200, {"content-type": "text/plain"});
   res.write("hello world\n");
   res.close();
 });
@@ -19,7 +19,7 @@ var proxy = http.createServer(function (req, res) {
   debug("proxy req headers: " + JSON.stringify(req.headers));
   var proxy_req = proxy_client.request(url.parse(req.url).pathname);
   proxy_req.addListener('response', function(proxy_res) {
-    res.writeHeader(proxy_res.statusCode, proxy_res.headers);
+    res.writeHead(proxy_res.statusCode, proxy_res.headers);
     proxy_res.addListener("data", function(chunk) {
       res.write(chunk);
     });
index b9f4800..307256b 100644 (file)
@@ -38,7 +38,7 @@ http.createServer(function (req, res) {
   }
 
   setTimeout(function () {
-    res.writeHeader(200, {"Content-Type": "text/plain"});
+    res.writeHead(200, {"Content-Type": "text/plain"});
     res.write(url.parse(req.url).pathname);
     res.close();
   }, 1);
index 9931982..c250adf 100644 (file)
@@ -52,7 +52,7 @@ var http_server=http.createServer(function (req, res) {
   }
 
   req.addListener('end', function () {
-    res.writeHeader(200, {"Content-Type": "text/plain"});
+    res.writeHead(200, {"Content-Type": "text/plain"});
     res.write("The path was " + url.parse(req.url).pathname);
     res.close();
     responses_sent += 1;
index 5563a3d..1184c46 100644 (file)
@@ -24,7 +24,7 @@ var client_got_eof = false;
 var connection_was_closed = false;
 
 var server = http.createServer(function (req, res) {
-  res.writeHeader(200, {"Content-Type": "text/plain"});
+  res.writeHead(200, {"Content-Type": "text/plain"});
   res.write("hello ");
   res.write("world\n");
   res.close();
index b5ecdbe..815ebf9 100644 (file)
@@ -28,7 +28,7 @@ http.createServer(function (req, res) {
   }
 
   req.addListener('end', function () {
-    res.writeHeader(200, {"Content-Type": "text/plain"});
+    res.writeHead(200, {"Content-Type": "text/plain"});
     res.write("The path was " + url.parse(req.url).pathname);
     res.close();
     responses_sent += 1;
index 350e78e..3b99ea6 100644 (file)
@@ -11,7 +11,7 @@ var server = http.createServer(function(req, res) {
              'return '+JSON.stringify(url.parse(req.url).pathname)+';'+
              '};';
 
-  res.writeHeader(200, {'Content-Type': 'text/javascript'});
+  res.writeHead(200, {'Content-Type': 'text/javascript'});
   res.write(body);
   res.close();
 });