Added descriptions and feature comments.

This commit is contained in:
jvelilla
2015-04-06 17:05:35 -03:00
parent 4f9fcf42e2
commit d576879b2c
2 changed files with 9 additions and 3 deletions

View File

@@ -1,6 +1,8 @@
note
description: "Summary description for {WGI_HTTPD_REQUEST_HANDLER}."
author: ""
description: "[
WGI implementation of HTTPD_REQUEST_HANDLER, will process the incoming connection
and extract information on the request and the server
]"
date: "$Date$"
revision: "$Revision$"
@@ -34,8 +36,10 @@ feature {NONE} -- Initialization
feature -- Access
connector: detachable separate WGI_STANDALONE_CONNECTOR [G]
-- httpd solution.
base: detachable IMMUTABLE_STRING_8
-- Root url base.
do
if attached connector as conn then
if attached connector_base (conn) as l_base then
@@ -47,6 +51,7 @@ feature -- Access
feature -- SCOOP helpers
connector_base (conn: separate WGI_STANDALONE_CONNECTOR [G]): detachable separate READABLE_STRING_8
-- Rool url based from a connector `conn'.
do
Result := conn.base
end

View File

@@ -1,6 +1,5 @@
note
description: "Summary description for {WGI_HTTPD_REQUEST_HANDLER_FACTORY}."
author: ""
date: "$Date$"
revision: "$Revision$"
@@ -13,10 +12,12 @@ inherit
feature -- Access
connector: detachable separate WGI_STANDALONE_CONNECTOR [G]
-- httpd solution.
feature -- Element change
set_connector (conn: like connector)
-- Set `connector' with `conn'.
do
connector := conn
end