Friday 26 February 2010

Aw tell me it ain't so, Stevo! You haven't gone and nobbled a government website?


This is the content of the very small tag cloud found on the Dept. of Broadband, Communications, Digital Economy and Compulsory National Censorship webpage Senator the Hon. Stephen Conroy, Minister for Broadband, Communications and the Digital Economy,Deputy Leader of the Government in the Senate:

NBN Broadband
National Broadband
Network ABC
Broadcasting National Broadcasters
SBS Digital Switchover
Digital Television Youth Advisory Group
Cyber-Safety
Internet Budget E-Health
Mobile Services

Looks unexceptional don't it?
Then someone on a Whirlpool forum asked themselves a question. Why isn't the search term "ISP filtering" or similar up there somewhere?
After all that term is found in about 63 media releases archived on the website and presumably cyber visitors go looking.

Oh noes! came the answer, the word cloud has been nobbled!

Filtering already begun! :)

User #185532 8 posts
Forum Regular

I find this one rather humorous, on Conroy's website, if you take a look at the right hand side there is the "cloud" for searched items, the more searched the phrase or word is, the larger the item is.

Looking at the source code of the site, there is the entire list of words that the script uses to determine the cloud words and how prevelant they are. Basically breaks it down to an array, counts and then sets the size based on how frequent it is etc...

In the script that generates the cloud, there is a line that says basically if the seach term is "ISP Filtering" to skip and go onto the next.

In the time I was on the site, there were about 16 instances of "ISP Filtering" in the cloud, and only about 5 instances of E-Health, though ISP Filtering did not show in the cloud....

Anyway just a funny, and some food for thought! :)

//for(var i=0; i<unique.length; i++)
for(var i=0; i<=15/*<-Important! increase this value by 1 everytime a keyword is excluded below*/; i++)
{

var z=0;
for(var j=0; j<split.length; j++) {
if (unique[i]==split[j]) {
z=z+1;
}
counts[i] = z;
}
var size = getTagClass(z);
//Customise the tag-cloud to display what shows up
if (unique[i] == "ISP Filtering")
{
continue;
}
document.write('<a class="'+size+'" href=\"http://www.minister.dbcde.gov.au/search?q='+unique[i]+'">'+unique[i]+'</a> ');
}
document.write('</p>');
document.write('</div>');
}

EDIT: Thought I should add the URL of the site, incase people get confused with stephen-conroy.com :) This is on the minister for broadband and other random crap that he has no idea about site.... URL: http://www.minister.dbcde.gov.au/

No comments: