Merge remote-tracking branch 'jocelynEWF/master'

This commit is contained in:
jvelilla
2011-09-28 07:36:35 -03:00
31 changed files with 528 additions and 166 deletions

View File

@@ -30,6 +30,8 @@ feature {NONE} -- Initialization
create_router
do
-- (create {EXCEPTIONS}).raise ("ouch")
check False end
create router.make (5)
end
@@ -75,10 +77,10 @@ feature -- Execution
n: INTEGER
i: INTEGER
do
create h.make
l_url := req.script_url ("/home")
n := 3
h.put_refresh (l_url, 5, 200)
create h.make
h.put_refresh (l_url, 5)
res.set_status_code (200)
res.write_headers_string (h.string)
from

View File

@@ -55,7 +55,7 @@ feature -- Execution
create h.make
l_url := req.script_url ("/home")
n := 3
h.put_refresh (l_url, 5, 200)
h.put_refresh (l_url, 5)
res.set_status_code (200)
res.write_headers_string (h.string)
from