removed obsolete call on WSF_RESPONSE.write_..' by using the up-to-date WSF_RESPONSE.put_..'

This commit is contained in:
Jocelyn Fiat
2012-01-09 10:21:35 +01:00
parent 20281bc922
commit d90ecbd5fe
3 changed files with 21 additions and 21 deletions

View File

@@ -177,8 +177,8 @@ feature -- Handle responses
h.put_content_length (a_description.count)
h.put_current_date
res.set_status_code ({HTTP_STATUS_CODE}.bad_request)
res.write_header_text (h.string)
res.write_string (a_description)
res.put_header_text (h.string)
res.put_string (a_description)
end
@@ -192,8 +192,8 @@ feature -- Handle responses
h.put_content_length (a_description.count)
h.put_current_date
res.set_status_code ({HTTP_STATUS_CODE}.precondition_failed)
res.write_header_text (h.string)
res.write_string (a_description)
res.put_header_text (h.string)
res.put_string (a_description)
end
handle_internal_server_error (a_description: STRING; ctx: C; req: WSF_REQUEST; res: WSF_RESPONSE )
@@ -206,8 +206,8 @@ feature -- Handle responses
h.put_content_length (a_description.count)
h.put_current_date
res.set_status_code ({HTTP_STATUS_CODE}.internal_server_error)
res.write_header_text (h.string)
res.write_string (a_description)
res.put_header_text (h.string)
res.put_string (a_description)
end
handle_not_implemented (a_description: STRING; ctx: C; req: WSF_REQUEST; res: WSF_RESPONSE )
@@ -220,8 +220,8 @@ feature -- Handle responses
h.put_content_length (a_description.count)
h.put_current_date
res.set_status_code ({HTTP_STATUS_CODE}.not_implemented)
res.write_header_text (h.string)
res.write_string (a_description)
res.put_header_text (h.string)
res.put_string (a_description)
end
handle_method_not_allowed_response (a_description: STRING; ctx: C; req: WSF_REQUEST; res: WSF_RESPONSE)
@@ -234,8 +234,8 @@ feature -- Handle responses
h.put_content_length (a_description.count)
h.put_current_date
res.set_status_code ({HTTP_STATUS_CODE}.method_not_allowed)
res.write_header_text (h.string)
res.write_string (a_description)
res.put_header_text (h.string)
res.put_string (a_description)
end
handle_resource_not_found_response (a_description: STRING; ctx: C; req: WSF_REQUEST; res: WSF_RESPONSE)
@@ -248,8 +248,8 @@ feature -- Handle responses
h.put_content_length (a_description.count)
h.put_current_date
res.set_status_code ({HTTP_STATUS_CODE}.not_found)
res.write_header_text (h.string)
res.write_string (a_description)
res.put_header_text (h.string)
res.put_string (a_description)
end
@@ -264,8 +264,8 @@ feature -- Handle responses
h.put_content_length (a_description.count)
h.put_current_date
res.set_status_code ({HTTP_STATUS_CODE}.not_modified)
res.write_header_text (h.string)
res.write_string (a_description)
res.put_header_text (h.string)
res.put_string (a_description)
end
@@ -279,8 +279,8 @@ feature -- Handle responses
h.put_content_length (a_description.count)
h.put_current_date
res.set_status_code ({HTTP_STATUS_CODE}.conflict)
res.write_header_text (h.string)
res.write_string (a_description)
res.put_header_text (h.string)
res.put_string (a_description)
end
note

View File

@@ -109,7 +109,7 @@ feature -- Basic operations
send_to (res: WSF_RESPONSE)
do
res.set_status_code (status_code)
res.write_header_text (header.string)
res.put_header_text (header.string)
if not answer_head_request_method then
send_file_content_to (file_name, res)
end
@@ -202,7 +202,7 @@ feature {NONE} -- Implementation: output
f.exhausted
loop
f.read_stream (4_096)
res.write_string (f.last_string)
res.put_string (f.last_string)
end
f.close
end

View File

@@ -60,9 +60,9 @@ feature -- Output
h.put_content_type_text_plain
end
end
res.write_header_text (h.string)
res.put_header_text (h.string)
if b /= Void then
res.write_string (b)
res.put_string (b)
end
end