Changed ITERATION_CURSOR [WGI_VALUE] into ITERABLE [WGI_VALUE] for WGI_REQUEST.*parameters* and similar

Applied recent changes on EWF_HEADER
This commit is contained in:
Jocelyn Fiat
2011-09-26 17:10:05 +02:00
parent d397d4e35d
commit 738eb7555f
5 changed files with 39 additions and 61 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