1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
@prefix : <http://usefulinc.com/ns/doap#> .
@prefix dc: <http://purl.org/dc/terms/> .
@prefix my: <http://purl.org/NET/cpan-uri/dist/Test-RDF/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dcs: <http://ontologi.es/doap-changeset#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
my:v_0_03
a :Version ;
dc:issued "2006-13-04"^^xsd:date ;
rdfs:label "Michael Hendricks old release based on RDF::Redland."@en ;
:revision "0.0.3"^^xsd:string ;
dc:creator <http://purl.org/NET/cpan-uri/person/mndrix> .
my:v_0_10
a :Version ;
dc:issued "2010-11-06"^^xsd:date ;
rdfs:label "Complete rewrite."@en ;
:revision "0.10"^^xsd:string ;
dcs:changeset [
dcs:item
[ rdfs:label "A complete rewrite from scratch using RDF::Trine."@en ; a dcs:Change ] ,
[ rdfs:label "Backwards incompatible with previous releases."@en ; a dcs:Change ]
] .
my:v_0_11
a :Version ;
dc:issued "2010-11-08"^^xsd:date ;
rdfs:label "Fix tainting problem."@en ;
:revision "0.11"^^xsd:string ;
dcs:changeset [
dcs:item
[ rdfs:label "Fix the tainting problem many cpantesters have."@en ; a dcs:Change ] ,
[ rdfs:label "Small cosmetic changes."@en ; a dcs:Change ] ,
[ rdfs:label "Got authorized!."@en ; a dcs:Change ]
] .
my:v_0_20
a :Version ;
dc:issued "2010-12-18"^^xsd:date ;
rdfs:label "Add functions for testing resources and literals."@en ;
:revision "0.20"^^xsd:string ;
dcs:changeset [
dcs:item
[ rdfs:label "Check Redland error messages in addition to Trine."@en ; a dcs:Change ] ,
[ rdfs:label "has_subject function to test if a URI is present as subject."@en ; a dcs:Addition ] ,
[ rdfs:label "has_predicate function to test if a URI is present as predicate."@en ; a dcs:Addition ] ,
[ rdfs:label "has_object_uri function to test if a URI is present as object."@en ; a dcs:Addition ] ,
[ rdfs:label "has_uri function to test if a URI is present at all in the graph."@en ; a dcs:Addition ] ,
[ rdfs:label "has_literal function to test if a literal is present."@en ; a dcs:Addition ]
] .
my:v_0_22
a :Version ;
dc:issued "2011-04-01"^^xsd:date ;
rdfs:label "Subgraph tests."@en ;
:revision "0.22"^^xsd:string ;
dcs:changeset [
dcs:item
[ rdfs:label "Use the RDF::Graph::Trine error function for diagnostics"@en ; a dcs:Addition ] ,
[ rdfs:label "Remove the now unneeded dependency on Text::Diff::Table."@en ; a dcs:Removal ] ,
[ rdfs:label "Add a are_subgraphs function for testing if one graph is a subgraph of another."@en ; a dcs:Addition ] ,
[ rdfs:label "More documentation."@en ; a dcs:Addition ]
] .
my:v_0_24
a :Version ;
dc:issued "2011-10-10"^^xsd:date ;
rdfs:label "Pattern tests."@en ;
:revision "0.24"^^xsd:string ;
dcs:changeset [
dcs:item
[ rdfs:label "Test for empty RDF strings"@en ; a dcs:Addition ] ,
[ rdfs:label "Parser may need an empty sub sometimes."@en ; a dcs:Bugfix ] ,
[ rdfs:label "New pattern_ok and pattern_target functions."@en ; a dcs:Addition ;
dcs:blame <http://tobyinkster.co.uk/#i> ] ,
[ rdfs:label "Minor cosmetics."@en ; a dcs:Addition ]
] .
my:v_0_26
a :Version ;
dc:issued "2012-06-11"^^xsd:date ;
rdfs:label "New hasnt_uri test."@en ;
:revision "0.26"^^xsd:string ;
dcs:changeset [
dcs:item
[ rdfs:label "Reorgnize metadata to exploit new modules"@en ; a dcs:Change ] ,
[ rdfs:label "Use github issue tracker."@en ; a dcs:Change ] ,
[ rdfs:label "Add hasnt uri test."@en ; a dcs:Addition ] ,
[ rdfs:label "Improve pattern_ok diagnostics."@en ; a dcs:Addition ] ,
[ rdfs:label "Minor cosmetics."@en ; a dcs:Addition ]
] .
|