Skip to content

Commit a0e9a41

Browse files
jvelillajocelyn
authored andcommitted
Added descriptions and feature comments.
1 parent dd9aff0 commit a0e9a41

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

library/server/ewsgi/connectors/standalone/src/implementation/wgi_httpd_request_handler.e

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
note
2-
description: "Summary description for {WGI_HTTPD_REQUEST_HANDLER}."
3-
author: ""
2+
description: "[
3+
WGI implementation of HTTPD_REQUEST_HANDLER, will process the incoming connection
4+
and extract information on the request and the server
5+
]"
46
date: "$Date$"
57
revision: "$Revision$"
68

@@ -34,8 +36,10 @@ feature {NONE} -- Initialization
3436
feature -- Access
3537

3638
connector: detachable separate WGI_STANDALONE_CONNECTOR [G]
39+
-- httpd solution.
3740

3841
base: detachable IMMUTABLE_STRING_8
42+
-- Root url base.
3943
do
4044
if attached connector as conn then
4145
if attached connector_base (conn) as l_base then
@@ -47,6 +51,7 @@ feature -- Access
4751
feature -- SCOOP helpers
4852

4953
connector_base (conn: separate WGI_STANDALONE_CONNECTOR [G]): detachable separate READABLE_STRING_8
54+
-- Rool url based from a connector `conn'.
5055
do
5156
Result := conn.base
5257
end

library/server/ewsgi/connectors/standalone/src/implementation/wgi_httpd_request_handler_factory.e

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
note
22
description: "Summary description for {WGI_HTTPD_REQUEST_HANDLER_FACTORY}."
3-
author: ""
43
date: "$Date$"
54
revision: "$Revision$"
65

@@ -13,10 +12,12 @@ inherit
1312
feature -- Access
1413

1514
connector: detachable separate WGI_STANDALONE_CONNECTOR [G]
15+
-- httpd solution.
1616

1717
feature -- Element change
1818

1919
set_connector (conn: like connector)
20+
-- Set `connector' with `conn'.
2021
do
2122
connector := conn
2223
end

0 commit comments

Comments
 (0)