Re: new preview snapshots

I wrote a simple script to check validity and links for all the docs.

RDF semantics has problems with <sub> in a few places, probably because
<sub> is not allowed in <pre>.  I'll let Michael fix these.  :-)

Test had problems with "Clark & Parsia".  I fixed this, but the
document should be regenerated.


The link checker is complaining about forbidden links, e.g., to
http://www.w3.org/2007/OWL/draft/ED-owl2-profiles-20081005/owl.css 
and
http://www.w3.org/2007/OWL/draft/ED-owl2-mapping-to-rdf-20081005/
These might be temporary.

Somehow the anchor "abstract" ends up being generated twice for all
documents.  This is a bug in the translation, I think.

The link validator complains about the ToC switching stuff in some documents.

There are broken fragments in profiles that need to be fixed.

There are broken links and fragments in test that need to be fixed.

Something about my home page kills the link validator, so I haven't been
able to link check syntax, semantics, mapping, or xml.

peter


#!/bin/csh

set syntax = http://www.w3.org/2007/OWL/draft/ED-owl2-syntax-20081005/
set semantics = http://www.w3.org/2007/OWL/draft/ED-owl2-semantics-20081005/
set rdf = http://www.w3.org/2007/OWL/draft/ED-owl2-rdf-based-semantics-20081005/
set mapping = http://www.w3.org/2007/OWL/draft/ED-owl2-mapping-to-rdf-20081005/
set xml = http://www.w3.org/2007/OWL/draft/ED-owl2-xml-serialization-20081005/
set profiles = http://www.w3.org/2007/OWL/draft/ED-owl2-profiles-20081005/
set test = http://www.w3.org/2007/OWL/draft/ED-owl2-test-20081005/

set docs = ( $syntax $semantics $rdf $mapping $xml $profiles $test )

foreach doc ( $docs )
  firefox ${doc},validate
  firefox ${doc},checklinks
end

Received on Monday, 6 October 2008 13:28:09 UTC