Browse Source

Rename writeHeader to writeHead

v0.7.4-release
Benjamin Thomas 15 years ago
committed by Ryan Dahl
parent
commit
b1b84960ce
  1. 2
      benchmark/http_simple.js
  2. 2
      benchmark/static_http_server.js
  3. 12
      doc/api.txt
  4. 2
      doc/index.html
  5. 7
      lib/http.js
  6. 2
      test/pummel/test-keep-alive.js
  7. 4
      test/pummel/test-multipart.js
  8. 2
      test/simple/test-http-1.0.js
  9. 2
      test/simple/test-http-cat.js
  10. 2
      test/simple/test-http-chunked.js
  11. 2
      test/simple/test-http-client-race.js
  12. 2
      test/simple/test-http-client-upload.js
  13. 2
      test/simple/test-http-malformed-request.js
  14. 4
      test/simple/test-http-proxy.js
  15. 2
      test/simple/test-http-server.js
  16. 2
      test/simple/test-http-tls.js
  17. 2
      test/simple/test-http-wget.js
  18. 2
      test/simple/test-http.js
  19. 2
      test/simple/test-remote-module-loading.js

2
benchmark/http_simple.js

@ -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
}

2
benchmark/static_http_server.js

@ -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
});

12
doc/api.txt

@ -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
});

2
doc/index.html

@ -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);

7
lib/http.js

@ -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);

2
test/pummel/test-keep-alive.js

@ -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",
});

4
test/pummel/test-multipart.js

@ -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();
});

2
test/simple/test-http-1.0.js

@ -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();
})

2
test/simple/test-http-cat.js

@ -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"]
]);

2
test/simple/test-http-chunked.js

@ -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();
});

2
test/simple/test-http-client-race.js

@ -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);

2
test/simple/test-http-client-upload.js

@ -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();
});

2
test/simple/test-http-malformed-request.js

@ -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();

4
test/simple/test-http-proxy.js

@ -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);
});

2
test/simple/test-http-server.js

@ -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);

2
test/simple/test-http-tls.js

@ -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;

2
test/simple/test-http-wget.js

@ -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();

2
test/simple/test-http.js

@ -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;

2
test/simple/test-remote-module-loading.js

@ -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();
});

Loading…
Cancel
Save