Added license.lic and copyright to Javier

This commit is contained in:
Jocelyn Fiat
2011-10-07 14:36:20 +02:00
parent 9fef2d71f0
commit 34bb793599
15 changed files with 52 additions and 7 deletions

View File

@@ -112,7 +112,6 @@ feature -- Parsing
not_void_method: method /= Void
end
analyze_request_message (a_input: HTTP_INPUT_STREAM)
require
input_readable: a_input /= Void and then a_input.is_readable
@@ -120,7 +119,7 @@ feature -- Parsing
end_of_stream : BOOLEAN
pos,n : INTEGER
line : STRING
k, val: STRING
k, val: STRING
txt: STRING
do
create txt.make (64)
@@ -136,9 +135,9 @@ feature -- Parsing
until
end_of_stream
loop
line := a_input.last_string
n := line.count
print ("%N" +line+ "%N")
line := a_input.last_string
n := line.count
print ("%N" + line + "%N")
pos := line.index_of (':',1)
if pos > 0 then
k := line.substring(1, pos-1)
@@ -180,4 +179,7 @@ feature -- Parsing
invariant
request_header_attached: request_header /= Void
note
copyright: "2011-2011, Javier Velilla and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
end