Added {WSF_REQUEST}.http_content_encoding
This commit is contained in:
@@ -46,6 +46,8 @@ feature -- Access
|
|||||||
|
|
||||||
http_content_range: STRING = "HTTP_CONTENT_RANGE"
|
http_content_range: STRING = "HTTP_CONTENT_RANGE"
|
||||||
|
|
||||||
|
http_content_encoding: STRING = "HTTP_CONTENT_ENCODING"
|
||||||
|
|
||||||
http_expect: STRING = "HTTP_EXPECT"
|
http_expect: STRING = "HTTP_EXPECT"
|
||||||
|
|
||||||
http_referer: STRING = "HTTP_REFERER"
|
http_referer: STRING = "HTTP_REFERER"
|
||||||
|
|||||||
@@ -644,6 +644,11 @@ feature -- HTTP_*
|
|||||||
deferred
|
deferred
|
||||||
end
|
end
|
||||||
|
|
||||||
|
http_content_encoding: detachable READABLE_STRING_8
|
||||||
|
-- Encoding (usually compression) of message payload
|
||||||
|
deferred
|
||||||
|
end
|
||||||
|
|
||||||
feature -- Extra CGI environment variables
|
feature -- Extra CGI environment variables
|
||||||
|
|
||||||
request_uri: READABLE_STRING_8
|
request_uri: READABLE_STRING_8
|
||||||
|
|||||||
@@ -295,6 +295,13 @@ feature -- Access: HTTP_* CGI meta parameters - 1.1
|
|||||||
do
|
do
|
||||||
Result := meta_string_variable ({WGI_META_NAMES}.http_content_range)
|
Result := meta_string_variable ({WGI_META_NAMES}.http_content_range)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
http_content_encoding: detachable READABLE_STRING_8
|
||||||
|
-- Encoding (usually compression) of message payload
|
||||||
|
do
|
||||||
|
Result := meta_string_variable ({WGI_META_NAMES}.http_content_encoding)
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
feature -- Access: Extension to CGI meta parameters - 1.1
|
feature -- Access: Extension to CGI meta parameters - 1.1
|
||||||
|
|
||||||
|
|||||||
@@ -1234,6 +1234,12 @@ feature -- HTTP_*
|
|||||||
Result := wgi_request.http_content_range
|
Result := wgi_request.http_content_range
|
||||||
end
|
end
|
||||||
|
|
||||||
|
http_content_encoding: detachable READABLE_STRING_8
|
||||||
|
-- Encoding (usually compression) of message payload
|
||||||
|
do
|
||||||
|
Result := wgi_request.http_content_encoding
|
||||||
|
end
|
||||||
|
|
||||||
feature -- Extra CGI environment variables
|
feature -- Extra CGI environment variables
|
||||||
|
|
||||||
request_uri: READABLE_STRING_8
|
request_uri: READABLE_STRING_8
|
||||||
|
|||||||
Reference in New Issue
Block a user