Found this link going out of a site that I must have put in about 18 months ago. Completely forgot about this one:
FOSI: http://www.fosi.org/icra/
Still not a lot of answers, but there are more details.
The site in question is still displaying the label put up in 2004, which has to be way out of date
HTML Code:
<meta http-equiv="PICS-Label"
content='(pics-1.1 "http://www.icra.org/ratingsv02.html"
comment "ICRAonline EN v2.0"
l gen true for "http://www.example.com" r (nz 1 vz 1 lz 1 oz 1 cz 1)
gen true for "http://example.com" r (nz 1 vz 1 lz 1 oz 1 cz 1) "http://www.rsac.org/ratingsv01.html"
l gen true for "http://www.example.com" r (n 0 s 0 v 0 l 0)
gen true for "http://example.com" r (n 0 s 0 v 0 l 0))' />
Seems I dropped the ball and should have been asking this question a long time ago, when I first encountered this old tag and discovered that ICRA had changed hands. Busy, busy, busy... This question got sidelined.
On another site we have the following, slightly newer labels
HTML Code:
<link rel="meta" href="http://example.com/labels.xml"
type="application/rdf+xml" title="ICRA labels" />
<meta http-equiv="pics-Label"
content='(pics-1.1 "http://www.icra.org/pics/vocabularyv03/"
l gen true for "http://example.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 0)
gen true for "http://www.example.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 0))' />
What can be said of the RDF/XML label? Is this what we should be using? Is there still a site that will generate them, or do we have to construct it ourselves?
Code:
XML
<?xml version="1.0" encoding="iso-8859-1"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:label="http://www.w3.org/2004/12/q/contentlabel#"
xmlns:icra="http://www.icra.org/rdfs/vocabularyv03#">
<rdf:Description rdf:about="">
<dc:creator rdf:resource="http://www.icra.org" />
<dcterms:issued>2007-1-27</dcterms:issued>
<label:authorityFor>http://www.icra.org/rdfs/vocabularyv03#</label:authorityFor>
</rdf:Description>
<label:Ruleset>
<label:hasHostRestrictions>
<label:Hosts>
<label:hostRestriction>example.com</label:hostRestriction>
</label:Hosts>
</label:hasHostRestrictions>
<label:hasDefaultLabel rdf:resource="#label_1" />
</label:Ruleset>
<label:ContentLabel rdf:ID="label_1">
<rdfs:comment>Label for all/most of website</rdfs:comment>
<icra:nz>1</icra:nz>
<icra:sz>1</icra:sz>
<icra:vz>1</icra:vz>
<icra:lz>1</icra:lz>
<icra:oz>1</icra:oz>
<icra:cz>1</icra:cz>
<rdfs:label>No nudity; No sexual material; No violence; No potentially offensive language; No potentially harmful activities; No user-generated content; </rdfs:label>
</label:ContentLabel>
</rdf:RDF>
I notice that the above labels only point to domain, and not www. subdomain. Should they point to both (assuming they're still valid for today's web)?