Applied renaming from write_ to put_

This commit is contained in:
Jocelyn Fiat
2011-12-15 19:34:20 +01:00
parent 32373addfa
commit 7207a021be
7 changed files with 24 additions and 24 deletions

View File

@@ -149,17 +149,17 @@ feature -- Basic operations
s: detachable READABLE_STRING_8
do
res.set_status_code (status_code)
res.write_header_text (header.string)
res.put_header_text (header.string)
s := head
if s /= Void then
res.write_string (s)
res.put_string (s)
end
if not answer_head_request_method then
send_file_content_to (file_name, res)
end
s := bottom
if s /= Void then
res.write_string (s)
res.put_string (s)
end
end
@@ -224,7 +224,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