http://www.fanboy.co.nz/iron.html here we can see only 28 march lists

Code: Select all
http = new ActiveXObject("Microsoft.XMLHTTP")
fso = new ActiveXObject("Scripting.FileSystemObject")
f=fso.CreateTextFile(file="C:/Program Files/SRWare Iron/adblock.ini", true)
W=new Array("https://fanboy-adblock-list.googlecode.com/hg/opera/urlfilter.ini",
"https://fanboy-adblock-list.googlecode.com/hg/opera/urlfilter-stats.ini",
"https://fanboy-adblock-list.googlecode.com/hg/opera/urlfilter-rus.ini")
i=0,txt="\t"+W[0]
while(i<W.length)
{
if(i) txt+="\nAND\t"+W[i]
http.open("GET", website=W[i++], false)
http.setRequestHeader("Accept","text/html")
http.send()
f.Write(http.responseText.replace(/\*/g,"").replace(/#/g,"# "))
}
WScript.Echo(txt+"\n\n\t\tis replaced and added to\n\n\t\t"+file)
f.Close()
Did you read this thread? [url]ttp://www.srware.net/forum/viewtopic.php?f=18&t=2287[/url]RWUK wrote:Would anyone know how the above code should be modified (aside from the local file's location) to work in Linux?
The Iron version of it had not been updated since March 28th, but the Opera version has.RWUK wrote:I thought the Iron/Chrome adblock file was not maintained after January 2011, nice to see it's been taken up again. Is it just not updated as often as the Opera adblock or has maintenance of the Iron file again been stopped?