Added license.lic and copyright to Javier
This commit is contained in:
@@ -65,4 +65,7 @@ feature -- Element change
|
|||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
note
|
||||||
|
copyright: "2011-2011, Javier Velilla and others"
|
||||||
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -42,4 +42,7 @@ feature {NONE} -- Implementation
|
|||||||
create Result.put (Void)
|
create Result.put (Void)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
note
|
||||||
|
copyright: "2011-2011, Javier Velilla and others"
|
||||||
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -112,7 +112,6 @@ feature -- Parsing
|
|||||||
not_void_method: method /= Void
|
not_void_method: method /= Void
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
analyze_request_message (a_input: HTTP_INPUT_STREAM)
|
analyze_request_message (a_input: HTTP_INPUT_STREAM)
|
||||||
require
|
require
|
||||||
input_readable: a_input /= Void and then a_input.is_readable
|
input_readable: a_input /= Void and then a_input.is_readable
|
||||||
@@ -138,7 +137,7 @@ feature -- Parsing
|
|||||||
loop
|
loop
|
||||||
line := a_input.last_string
|
line := a_input.last_string
|
||||||
n := line.count
|
n := line.count
|
||||||
print ("%N" +line+ "%N")
|
print ("%N" + line + "%N")
|
||||||
pos := line.index_of (':',1)
|
pos := line.index_of (':',1)
|
||||||
if pos > 0 then
|
if pos > 0 then
|
||||||
k := line.substring(1, pos-1)
|
k := line.substring(1, pos-1)
|
||||||
@@ -180,4 +179,7 @@ feature -- Parsing
|
|||||||
invariant
|
invariant
|
||||||
request_header_attached: request_header /= Void
|
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
|
end
|
||||||
|
|||||||
@@ -143,4 +143,7 @@ feature -- Http Method
|
|||||||
Delete : STRING = "DELETE"
|
Delete : STRING = "DELETE"
|
||||||
Trace : STRING = "TRACE"
|
Trace : STRING = "TRACE"
|
||||||
Connect : STRING = "CONNECT"
|
Connect : STRING = "CONNECT"
|
||||||
|
note
|
||||||
|
copyright: "2011-2011, Javier Velilla and others"
|
||||||
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -54,4 +54,7 @@ feature -- Conversion
|
|||||||
Result := (a_i.bit_and (1) = 1)
|
Result := (a_i.bit_and (1) = 1)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
note
|
||||||
|
copyright: "2011-2011, Javier Velilla and others"
|
||||||
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -121,4 +121,7 @@ feature -- Execution
|
|||||||
invariant
|
invariant
|
||||||
main_server_attached: main_server /= Void
|
main_server_attached: main_server /= Void
|
||||||
|
|
||||||
|
note
|
||||||
|
copyright: "2011-2011, Javier Velilla and others"
|
||||||
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -49,4 +49,7 @@ feature -- Access
|
|||||||
stop_requested: BOOLEAN
|
stop_requested: BOOLEAN
|
||||||
-- Stops the server
|
-- Stops the server
|
||||||
|
|
||||||
|
;note
|
||||||
|
copyright: "2011-2011, Javier Velilla and others"
|
||||||
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -61,4 +61,7 @@ feature -- Access
|
|||||||
last_string: STRING
|
last_string: STRING
|
||||||
-- Last string read
|
-- Last string read
|
||||||
|
|
||||||
|
;note
|
||||||
|
copyright: "2011-2011, Javier Velilla and others"
|
||||||
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -27,4 +27,7 @@ feature -- Basic operation
|
|||||||
target.put_string (s)
|
target.put_string (s)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
note
|
||||||
|
copyright: "2011-2011, Javier Velilla and others"
|
||||||
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -112,4 +112,7 @@ feature {NONE} -- Implementation
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
note
|
||||||
|
copyright: "2011-2011, Javier Velilla and others"
|
||||||
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -141,4 +141,7 @@ feature -- Change element: send reply
|
|||||||
reply_text.append (more_text)
|
reply_text.append (more_text)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
note
|
||||||
|
copyright: "2011-2011, Javier Velilla and others"
|
||||||
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -12,4 +12,7 @@ feature
|
|||||||
once
|
once
|
||||||
create Result.make
|
create Result.make
|
||||||
end
|
end
|
||||||
|
note
|
||||||
|
copyright: "2011-2011, Javier Velilla and others"
|
||||||
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -29,4 +29,7 @@ feature -- Basic operation
|
|||||||
send (a_package, 1)
|
send (a_package, 1)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
note
|
||||||
|
copyright: "2011-2011, Javier Velilla and others"
|
||||||
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -85,4 +85,7 @@ feature -- Access: Encoding
|
|||||||
Result.replace_substring_all ("\\", "\")
|
Result.replace_substring_all ("\\", "\")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
note
|
||||||
|
copyright: "2011-2011, Javier Velilla and others"
|
||||||
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
||||||
end
|
end
|
||||||
|
|||||||
4
license.lic
Normal file
4
license.lic
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
${NOTE_KEYWORD}
|
||||||
|
copyright: "2011-${YEAR}, Javier Velilla and others"
|
||||||
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
||||||
|
|
||||||
Reference in New Issue
Block a user