Updated github web page, and replaced wiki by workbook.

This commit is contained in:
Jocelyn Fiat
2016-05-26 23:31:42 +02:00
parent e2150754cb
commit 2b29b4138d
102 changed files with 5061 additions and 2755 deletions

View File

@@ -0,0 +1,25 @@
note
description : "Basic Service that Generates Plain Text"
date : "$Date$"
revision : "$Revision$"
class
APPLICATION_EXECUTION
inherit
WSF_EXECUTION
create
make
feature -- Basic operations
execute
-- Execute the incomming request
do
-- To send a response we need to setup, the status code and
-- the response headers.
response.put_header ({HTTP_STATUS_CODE}.ok, <<["Content-Type", "text/plain"], ["Content-Length", "11"]>>)
response.put_string ("Hello World")
end
end