Improved support for absolute url passed tp HTTP_REQUEST_SESSION .

This commit is contained in:
Jocelyn Fiat
2017-10-27 19:24:52 +02:00
parent 503e5f7915
commit f770c236d5
7 changed files with 75 additions and 4 deletions

View File

@@ -7,6 +7,9 @@ note
deferred class
HTTP_CLIENT_REQUEST_PARAMETER
inherit
DEBUG_OUTPUT
feature -- Access
name: READABLE_STRING_32
@@ -18,6 +21,15 @@ feature -- Access
deferred
end
feature -- Status report
debug_output: STRING_32
do
create Result.make_empty
Result.append (name)
Result.append ("=...")
end
feature -- Conversion
append_form_url_encoded_to (a_output: STRING_8)

View File

@@ -29,6 +29,11 @@ feature -- Access
Result := items.count
end
has (a_parameter_name: READABLE_STRING_GENERAL): BOOLEAN
do
Result := across items as ic some a_parameter_name.same_string (ic.item.name) end
end
feature -- Element change
extend, force (i: G)