be sure we got the full content same as content length

This commit is contained in:
Jocelyn Fiat
2013-03-29 14:20:01 +01:00
parent f5b23c2571
commit 3bc3e3b874
2 changed files with 22 additions and 1 deletions

View File

@@ -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)