renamed GW_REQUEST_CONTEXT as GW_REQUEST

This commit is contained in:
Jocelyn Fiat
2011-07-13 16:22:20 +02:00
parent ac97d6019b
commit 01b16d0a82
10 changed files with 18 additions and 18 deletions

View File

@@ -15,7 +15,7 @@ feature {NONE} -- Initialization
make
do
print ("Example: start a Nino web server on port " + port_number.out + ", %Nand reply Hello World for any request such as http://localhost:8123/%N")
(create {GW_NINO_APPLICATION}.make (agent (req: GW_REQUEST_CONTEXT; res: GW_RESPONSE)
(create {GW_NINO_APPLICATION}.make (agent (req: GW_REQUEST; res: GW_RESPONSE)
do
res.output.put_header (200, <<["Content-Type", "text/plain"]>>)
res.output.put_string ("Hello World!%N")