msntv2 initial work

This commit is contained in:
zefie
2026-05-01 18:10:25 -04:00
parent 20357809a7
commit ddbcb4be5e
232 changed files with 16126 additions and 7 deletions

View File

@@ -0,0 +1,29 @@
window.attachEvent("onload", PreCacheOnload);
function PreCacheOnload()
{
// Give the page a chance to draw anything modified from the normal onload handler
window.setTimeout(PreCacheStart, 100);
}
function PreCacheStart()
{
// Look for <LINK rel=next href=...>
var linkTags = document.all.tags("link");
if (linkTags) {
var len = linkTags.length;
for (var i = 0; i < len; i++) {
var tag = linkTags[i];
if (tag.rel && tag.rel == "next" && tag.href) {
var request = new ActiveXObject("Microsoft.XMLHTTP");
try {
request.open("GET", tag.href, true);
request.send();
}
catch(exception) {
}
}
}
}
}