View Single Post
Old 25-03-2008, 15:26   #1737
kt88man
Inactive
 
Join Date: Nov 2003
Posts: 75
kt88man is on a distinguished roadkt88man is on a distinguished road
Re: Virgin Media Phorm Webwise Adverts [Updated: See Post No. 1, 77, 102 & 797]

Quote:
Originally Posted by CaptJamieHunter View Post
Visiting http://commentisfree.guardian.co.uk/...ate_lives.html (for example) will get you a Dephormation pop up advising webwise and oix content is there.

That's assuming you have the Dephormation add on installed in your Firefox browser.
I see... Buts that's simply a warning that the page viewed had a URL that contained oix.net, oix.com, phorm.com, webwise.net or webwise.com within the page - it does not mean that you have received a cookie...

Including, for example, this link http://oix.com/ in this post will cause Dephormation to give it's advisory warning.

edit:

This is how the author of Dephormation is searching at the moment:

Code:
    // SEARCH PAGE URL AND PAGE TEXT FOR REFERENCES TO PHORM 
    if (preferences.getBoolPref("showOIXAdvertAlert"))
    {
        // v1.2 introduced better regexps, and case insens searches
        // v1.3 enhanced search to include full page innerhtml and href
        var stringOIXSearchTarget = doc.location.href + " " + doc.body.innerHTML;

        dump(stringOIXSearchTarget);

        if(
            (stringOIXSearchTarget.search(/oix[.]net[/]/i)     > -1) 
         || (stringOIXSearchTarget.search(/oix[.]com[/]/i)     > -1) 
         || (stringOIXSearchTarget.search(/phorm[.]com[/]/i)   > -1) 
         || (stringOIXSearchTarget.search(/webwise[.]net[/]/i) > -1) 
         || (stringOIXSearchTarget.search(/webwise[.]com[/]/i) > -1) 
          )
      {
        alert(this.strings.getString("PhormSiteWarning"));
      }
    }
I expect as more information becomes available the search will be refined.
kt88man is offline