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
|
@prefix : <http://usefulinc.com/ns/doap#> .
@prefix dc: <http://purl.org/dc/terms/> .
@prefix my: <http://purl.org/NET/cpan-uri/dist/RDF-Helper-Properties/> .
@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 RDF-Helper-Properties"@en ;
dc:subject my:project ;
dc:creator <http://www.kjetil.kjernsmo.net/foaf#me> .
my:project
a :Project ;
:name "RDF-Helper-Properties" ;
:shortdesc " Module that provides shortcuts to retrieve certain information from RDF graphs."@en ;
:created "2010-08-18"^^xsd:date ;
:programming-language "Perl" ;
:maintainer <http://www.kjetil.kjernsmo.net/foaf#me> ;
:developer <http://kasei.us/about/foaf.xrdf#greg> ;
:bug-database <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=RDF-Helper-Properties> ;
:release my:v_0_08 .
<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:kjetilk@cpan.org> .
<http://kasei.us/about/foaf.xrdf#greg>
a foaf:Person ;
owl:sameAs <http://purl.org/NET/cpan-uri/person/gwilliams> ;
foaf:name "Gregory Todd Williams" ;
foaf:mbox <mailto:gwilliams@cpan.org> .
my:v_0_08
a :Version ;
dc:issued "2010-08-18"^^xsd:date ;
rdfs:label "Splitting off from RDF::LinkedData and passing predicates."@en ;
:revision "0.08"^^xsd:string ;
dcs:changeset [
dcs:item
[ rdfs:label "RDF::Helper::Properties used to be RDF::LinkedData::Predicates."@en ; a dcs:Update ] ,
[ rdfs:label "Give RDF::LinkedData::Predicates antlers."@en ; a dcs:Change ] ,
[ rdfs:label "create a helper_properties method to pass the properties."@en ; a dcs:Addition ]
] .
|