-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathChanges.ttl
96 lines (82 loc) · 3.74 KB
/
Changes.ttl
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
@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#> .
<>
dc:title "DOAP for Test-RDF"@en ;
dc:subject my:project ;
dc:creator <http://www.kjetil.kjernsmo.net/foaf#me> .
my:project
a :Project ;
:name "Test-RDF" ;
:shortdesc "Test RDF data for validity and equality."@en ;
:created "2010-09-03"^^xsd:date ;
:programming-language "Perl" ;
:maintainer <http://www.kjetil.kjernsmo.net/foaf#me> ;
:bug-database <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-RDF> ;
:release my:v_0_22, my:v_0_20, my:v_0_11, my:v_0_10, my:v_0_03 .
<http://www.kjetil.kjernsmo.net/foaf#me>
a foaf:Person ;
owl:sameAs <http://purl.org/NET/cpan-uri/person/kjetilk> ;
foaf:name "Kjetil Kjernsmo" ;
foaf:mbox <mailto:[email protected]> .
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> .
<http://purl.org/NET/cpan-uri/person/mndrix>
a foaf:Person ;
foaf:name "Michael Hendricks"@en .
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 ]
] .