Skip to content

Commit

Permalink
Rename writeHeader to writeHead
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Thomas authored and ry committed Feb 25, 2010
1 parent b08f2af commit b1b8496
Show file tree
Hide file tree
Showing 19 changed files with 29 additions and 28 deletions.
2 changes: 1 addition & 1 deletion benchmark/http_simple.js
Expand Up @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion benchmark/static_http_server.js
Expand Up @@ -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
});
Expand Down
12 changes: 6 additions & 6 deletions doc/api.txt
Expand Up @@ -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);
Expand Down Expand Up @@ -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.
Expand All @@ -962,7 +962,7 @@ Example:
+
----------------------------------------
var body = "hello world";
response.writeHeader(200, {
response.writeHead(200, {
"Content-Length": body.length,
"Content-Type": "text/plain"
});
Expand All @@ -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.
+
Expand Down Expand Up @@ -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();
});
Expand All @@ -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
});
Expand Down
2 changes: 1 addition & 1 deletion doc/index.html
Expand Up @@ -48,7 +48,7 @@
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);
Expand Down
7 changes: 4 additions & 3 deletions lib/http.js
Expand Up @@ -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') {
Expand All @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion test/pummel/test-keep-alive.js
Expand Up @@ -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",
});
Expand Down
4 changes: 2 additions & 2 deletions test/pummel/test-multipart.js
Expand Up @@ -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();
});
Expand Down
2 changes: 1 addition & 1 deletion test/simple/test-http-1.0.js
Expand Up @@ -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();
})
Expand Down
2 changes: 1 addition & 1 deletion test/simple/test-http-cat.js
Expand Up @@ -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"]
]);
Expand Down
2 changes: 1 addition & 1 deletion test/simple/test-http-chunked.js
Expand Up @@ -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();
});
Expand Down
2 changes: 1 addition & 1 deletion test/simple/test-http-client-race.js
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion test/simple/test-http-client-upload.js
Expand Up @@ -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();
});
Expand Down
2 changes: 1 addition & 1 deletion test/simple/test-http-malformed-request.js
Expand Up @@ -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();

Expand Down
4 changes: 2 additions & 2 deletions test/simple/test-http-proxy.js
Expand Up @@ -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();
});
Expand All @@ -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);
});
Expand Down
2 changes: 1 addition & 1 deletion test/simple/test-http-server.js
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion test/simple/test-http-tls.js
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion test/simple/test-http-wget.js
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion test/simple/test-http.js
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion test/simple/test-remote-module-loading.js
Expand Up @@ -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();
});
Expand Down

0 comments on commit b1b8496

Please sign in to comment.