# Attempt to produce an EARL report from 
# Mark Skall review of Xinclude
# http://lists.w3.org/Archives/Public/www-qa-wg/2004Dec/0011
#
# We can consider these assertions.
#
#- Xinclude has been reviewed by "Mark Skall"
#- "Mark Skall" has for email "mark.skall@nist.gov"
#- The date of the review is "2004-12-09"
#- The review is archived at 
#     http://lists.w3.org/Archives/Public/www-qa-wg/2004Dec/0011
#- Xinclude is not conformant to specGL
#
#  I put here a few cases not all of them.
#
#- specGL11A criteria has been met
#- specGL21A criteria has been failed
#- specGL21A has for comments "Relationships to, and differences 
#                              between, other documents are discussed.  
#                              Some of these discussions imply scope, 
#                              but scope is not specifically addressed."
#- specGL44A criteria is not applicable
#- specGL11B criteria has been failed
#- specGL11B has for comments "No conformance model is really present."
#
# the specGL meaning and references are described in another n3 file
#   http://www.w3.org/QA/WG/2004/12/specgl/0.1.n3
#   http://www.w3.org/QA/WG/2004/12/specgl/0.1.rdf
#   to be conformant to SpecGL, there are only 13 Requirements to meet
#   the 25 Good Practices are optional but an interesting information
#

@prefix : <http://www.w3.org/WAI/ER/EARL/nmg-strawman#> .
@prefix rdf:    <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix foaf:   <http://xmlns.com/foaf/0.1#> .
@prefix qa: <http://www.w3.org/QA/WG/2004/12/specgl/0.1#> .

<http://www.w3.org/TR/xinclude>     a :WebContent;
    :date "2004-12-09T20:43:19Z";
    :testSubject <http://www.w3.org/> .
    [  a         :Assertor;
       :Person 
       [ foaf:name "Mark Skall";
         foaf:mbox <mailto:bob@example.org>];
       :asserts  
       		[ a             :Assertion;
            rdf:object    qa:specGL11A;
            :result [
                :validity :pass];],
            [ a              :Assertion;
            rdf:object     qa:specGL21A;
            :result [
                :validity :fail;
                :message """Relationships to, and differences 
                         between, other documents are discussed.  
                         Some of these discussions imply scope,
                         but scope is not specifically addressed."""];],
       		[ a             :Assertion;
            rdf:object    qa:specGL44A;
            :result [
                :validity :notApplicable];],
            [ a              :Assertion;
            rdf:object     qa:specGL11B;
            :result [
                :validity :fail;
                :message """No conformance model is really present."""];]
    ].
    
#ENDS

