be sure we got the full content same as content length
This commit is contained in:
@@ -10,6 +10,9 @@ class
|
||||
|
||||
inherit
|
||||
WSF_VALUE
|
||||
redefine
|
||||
debug_output
|
||||
end
|
||||
|
||||
create
|
||||
make
|
||||
@@ -31,6 +34,23 @@ feature -- Access
|
||||
|
||||
url_encoded_name: READABLE_STRING_8
|
||||
|
||||
feature -- Status report
|
||||
|
||||
debug_output: STRING
|
||||
-- String that should be displayed in debugger to represent `Current'.
|
||||
do
|
||||
Result := Precursor
|
||||
if
|
||||
exists and then
|
||||
attached tmp_name as n
|
||||
then
|
||||
Result.append_character (' ')
|
||||
Result.append_character ('%"')
|
||||
Result.append (n)
|
||||
Result.append_character ('%"')
|
||||
end
|
||||
end
|
||||
|
||||
feature -- Element change
|
||||
|
||||
change_name (a_name: like name)
|
||||
|
||||
Reference in New Issue
Block a user