X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fxynt-http-streaming-ifra.js;fp=web%2Fxynt-http-streaming-ifra.js;h=0000000000000000000000000000000000000000;hb=0b1e5521bd8d1c7b6f349038fe4daa819da11d0e;hp=d037f10e0c47ebf3cf706f712ffd4d39523bbe3a;hpb=b2b95090ef57e2b89216dc047ee2b52a4aece29b;p=brisk.git diff --git a/web/xynt-http-streaming-ifra.js b/web/xynt-http-streaming-ifra.js deleted file mode 100644 index d037f10..0000000 --- a/web/xynt-http-streaming-ifra.js +++ /dev/null @@ -1,42 +0,0 @@ -var ctx_new = ""; -var ctx_old_len = 0; -var last_clean = 0; -var script_clean = -1; - -function push(s) { - var i; - - // window.parent.console.log('push('+s+');'); - for (i = last_clean ; i < script_clean ; i++) { - if (typeof($('hs'+i)) != 'undefined' && $('hs'+i) != null) { - document.body.removeChild($('hs'+i)); - // if (typeof(CollectGarbage) == "function") { - // CollectGarbage(); - // } - - last_clean = i; - } - else { - // window.parent.console.log('ifra: hs'+i+" NOT FOUND"); - } - } - // FIXME: remove this barbarian log - // window.parent.console.log("ifra: ctx_new.length: "+ctx_new.length+" ctx_old_len: "+ctx_old_len); - if (ctx_new.length == ctx_old_len && ctx_old_len > 0) { - // FIXME: remove this barbarian log - // window.parent.console.log("ifra: NOW clean"); - // alert("cleanna"); - ctx_new = ""; - ctx_old_len = 0; - } - if (s != null) { - ctx_new = ctx_new + "@BEGIN@" + s + "@END@"; - // FIXME: remove this barbarian log - // window.parent.console.log("ifra: CTX_NEW: ["+ctx_new+"]"); - - } - else { - ctx_new = ctx_new + "_"; - } - return; -}