X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2FObj%2Ftransports.phh;fp=web%2FObj%2Ftransports.phh;h=a77fad7a1cfb28c87665e219ba4c142281ee3bf0;hb=9a17da4020740578e3a744630fd6be96c8237cab;hp=2d9714ef8f386631e28d1dd272a518c4e9a2ddf9;hpb=2595e2c0a3c24088d1b104c4b1c8e39934d5f061;p=brisk.git diff --git a/web/Obj/transports.phh b/web/Obj/transports.phh index 2d9714e..a77fad7 100644 --- a/web/Obj/transports.phh +++ b/web/Obj/transports.phh @@ -69,6 +69,10 @@ class Transport_template { function chunk($step, $cont) { } + + function is_chunked() + { + } } class Transport_xhr { @@ -98,6 +102,11 @@ class Transport_xhr { { return ("@BEGIN@".$cont."@END@"); } + + function is_chunked() + { + return TRUE; + } } class Transport_iframe { @@ -166,6 +175,11 @@ push(null);\n// -->\n", $step); push(\"%s\");\n// -->\n", $step, escpush($cont) ); } } + + function is_chunked() + { + return TRUE; + } } class Transport_htmlfile extends Transport_iframe {