[SCM] librdf-ns-perl Debian packaging branch, master, updated. debian/20130208-1-22-g47de138

Jakob Voss voss at gbv.de
Fri Apr 19 13:28:43 UTC 2013


The following commit has been merged in the master branch:
commit f676eaff0d64c958620f5d41da34d9863fc9187a
Author: Jakob Voss <voss at gbv.de>
Date:   Mon Aug 27 08:54:44 2012 +0200

    update to 20120827

diff --git a/Changes b/Changes
index 372914e..1f62ca9 100644
--- a/Changes
+++ b/Changes
@@ -1,26 +1,37 @@
+20120827 (830 prefixes)
+  added:   acco,admssw,aers,arg,br,cao,cogs,dive,dpl,eprints,eumida,germplasm,
+           intervals,lctr,lemon,library,life,marl,muni,ncbitaxon,no,npgd,npgg,
+           npgx,open,pav,pkmn,pml,poder,pol,r4ta,rda,rdagr1,rssynd,sdgp,set,sgv,
+           spif,tcga
+  changed: acm,crm,prism,prv,s4ac
+  new methods PREFIX,PREFIXES, and REVERSE
 20120521 (791 prefixes)
-  added: d2r,efo,enhancer,fcm,fise,fl,fls,oboe,pccz,rdrel,rec54
+  added:   d2r,efo,enhancer,fcm,fise,fl,fls,oboe,pccz,rdrel,rec54
 20120426 (780 prefixes)
-  added: aerols,carfo,cerif,cheminf,cts2,example,func,geom,gldp,goef,hg,ipad,isbd,kupkb,lexvo,lr,lv,marcrel,metalex,mohammad,npg,nsogi,oac,ogorg,omv,onssprel,ospost,pay,pf,pne,prism21,pro,prviv,ql,r2rml,rating,recipe,scufl2,ssn,vapour,vsws,wbc,wbp,wkd,wp,wscaim,xkos
+  added:   aerols,carfo,cerif,cheminf,cts2,example,func,geom,gldp,goef,hg,ipad,
+           isbd,kupkb,lexvo,lr,lv,marcrel,metalex,mohammad,npg,nsogi,oac,ogorg,
+           omv,onssprel,ospost,pay,pf,pne,prism21,pro,prviv,ql,r2rml,rating,
+           recipe,scufl2,ssn,vapour,vsws,wbc,wbp,wkd,wp,wscaim,xkos
   changed: linkedct,nfo,pc,prov,xhtml
 20120124 (733 prefixes)
-  added: arecipe,calli,cis,datafaqs,db,dwc,ends,eunis,georss,identity,italy,
-   jita,moby,np,ocd,places,pna,protegedc,swpatho,transit,voidp,vsr,wfdesc,wikipedia
+  added:   arecipe,calli,cis,datafaqs,db,dwc,ends,eunis,georss,identity,italy,
+           jita,moby,np,ocd,places,pna,protegedc,swpatho,transit,voidp,vsr,
+           wfdesc,wikipedia
   changed: daiaserv,media,nfo
 20111208 (716 prefixes)
-  added: calli,dwc,eunis,georss,pna,swpatho,voidp
+  added:   calli,dwc,eunis,georss,pna,swpatho,voidp
   introduced blank nodes in RDF::NS::Trine
   extended command line tool to expand QNames
 20111124 (709 prefixes)
-  added: gnd,grs,htir,infosys,muto,omapi,prf,webbox
+  added:   gnd,grs,htir,infosys,muto,omapi,prf,webbox
   changed: commerce
   removed: uri
   modified command line tool option syntax
 20111102 (702 prefixes) 
   new command line tool 'rdfns'
-  added: vsw
+  added:   vsw
 20111031 (701 prefixes)
   first release at CPAN
-  added: daiaserv,vvo
+  added:   daiaserv,vvo
 20111028
   first full-featured version
diff --git a/README b/README
index e568e6b..d6798bd 100644
--- a/README
+++ b/README
@@ -16,7 +16,7 @@ for easy reuse without having to download them in every application.
 
 In short, you can get a full prefix-to-namespace mapping as blessed hash with
 
-    RDF::NS->new('20120521')
+    RDF::NS->new('20120827')
 
 The only argument to the constructor is the version number, that is equivalent
 to the date of a particular snapshot. The changelog in the file Changes lists
diff --git a/dist.ini b/dist.ini
index 0fd3e13..6edf158 100644
--- a/dist.ini
+++ b/dist.ini
@@ -1,6 +1,6 @@
 name             = RDF-NS
 license          = Perl_5
-version          = 20120521
+version          = 20120827
 copyright_year   = 2012
 author           = Jakob Voss
 copyright_holder = Jakob Voss
diff --git a/lib/RDF/NS.pm b/lib/RDF/NS.pm
index 02c9f44..1286534 100644
--- a/lib/RDF/NS.pm
+++ b/lib/RDF/NS.pm
@@ -5,6 +5,7 @@ package RDF::NS;
 
 use Scalar::Util qw(blessed);
 use File::ShareDir;
+use Carp;
 
 our $AUTOLOAD;
 our $FORMATS = qr/ttl|n(otation)?3|sparql|xmlns|txt|beacon/;
@@ -13,6 +14,9 @@ sub new {
     my $class   = shift;
     my $version = shift || 'undef';
 	$version = $RDF::NS::VERSION if $version eq 'any';
+    croak "RDF::NS version must be a date" 
+        unless $version =~ /^([0-9]{4})-?([0-9][0-9])-?([0-9][0-9])$/;
+    $version = "$1$2$3";
     LOAD( $class, File::ShareDir::dist_file('RDF-NS', "$version.txt" ), @_ );
 }
 
@@ -159,8 +163,8 @@ sub AUTOLOAD {
 
 =head1 SYNOPSIS
 
-  use RDF::NS '20120521';              # check at compile time
-  my $ns = RDF::NS->new('20120521');   # check at runtime
+  use RDF::NS '20120827';              # check at compile time
+  my $ns = RDF::NS->new('20120827');   # check at runtime
 
   $ns->foaf;               # http://xmlns.com/foaf/0.1/
   $ns->foaf_Person;        # http://xmlns.com/foaf/0.1/Person
@@ -177,7 +181,7 @@ sub AUTOLOAD {
 
   # get RDF::Trine::Node::Resource instead of strings
   use RDF::NS::Trine;      # requires RDF::Trine
-  $ns = RDF::NS::Trine->new('20120521');
+  $ns = RDF::NS::Trine->new('20120827');
   $ns->foaf_Person;        # iri('http://xmlns.com/foaf/0.1/Person')
 
   # load your own mapping
diff --git a/lib/RDF/NS/Trine.pm b/lib/RDF/NS/Trine.pm
index 070513f..774116b 100644
--- a/lib/RDF/NS/Trine.pm
+++ b/lib/RDF/NS/Trine.pm
@@ -21,7 +21,7 @@ sub BLANK {
 =head1 SYNOPSIS
 
   use RDF::NS::Trine;
-  use constant NS => RDF::NS::Trine->new('20120521');
+  use constant NS => RDF::NS::Trine->new('20120827');
 
   NS->foaf_Person;        # a RDF::Trine::Node::Resource
   NS->URI('foaf:Person);  # same
diff --git a/share/20120521.txt b/share/20120827.txt
similarity index 95%
copy from share/20120521.txt
copy to share/20120827.txt
index fa06437..1942f3d 100644
--- a/share/20120521.txt
+++ b/share/20120827.txt
@@ -3,14 +3,17 @@ aapi	http://rdf.alchemyapi.com/rdf/v1/s/aapi-schema#
 abc	http://www.metadata.net/harmony/ABCSchemaV5Commented.rdf#
 ac	http://umbel.org/umbel/ac/
 acc	http://purl.org/NET/acc#
+acco	http://purl.org/acco/ns#
 acl	http://www.w3.org/ns/auth/acl#
-acm	http://www.rkbexplorer.com/ontologies/acm#
+acm	http://www.semanticweb.org/ontologies/2012/acm.owl#
 act	http://www.w3.org/2007/rif-builtin-action#
 ad	http://schemas.talis.com/2005/address/schema#
 address	http://schemas.talis.com/2005/address/schema#
 admin	http://webns.net/mvcb/
 admingeo	http://data.ordnancesurvey.co.uk/ontology/admingeo/
+admssw	http://purl.org/adms/sw/
 aerols	http://xmlns.com/aerols/0.1/
+aers	http://aers.data2semantics.org/resource/
 af	http://purl.org/ontology/af/
 affy	http://www.affymetrix.com/community/publications/affymetrix/tmsplice#
 afn	http://jena.hpl.hp.com/ARQ/function#
@@ -31,6 +34,7 @@ ann	http://www.w3.org/2000/10/annotation-ns#
 ao	http://purl.org/ontology/ao/core#
 arch	http://purl.org/archival/vocab/arch#
 arecipe	http://purl.org/amicroformat/arecipe/
+arg	http://rdfs.org/sioc/argument#
 artstor	http://simile.mit.edu/2003/10/ontologies/artstor#
 ass	http://uptheasset.org/ontology#
 atom	http://www.w3.org/2005/Atom/
@@ -58,6 +62,7 @@ blt	http://data.bl.uk/schema/bibliographic#
 book	http://purl.org/NET/book/vocab#
 bookmark	http://www.w3.org/2002/01/bookmark#
 botany	http://purl.org/NET/biol/botany#
+br	http://purl.org/business-register#
 bsbm	http://www4.wiwiss.fu-berlin.de/bizer/bsbm/v01/vocabulary/
 c4dm	http://purl.org/NET/c4dm/event.owl#
 c4n	http://vocab.deri.ie/c4n#
@@ -65,6 +70,7 @@ c4o	http://purl.org/spar/c4o/
 cal	http://www.w3.org/2002/12/cal/ical#
 calli	http://callimachusproject.org/rdf/2009/framework#
 campsite	http://www.openlinksw.com/campsites/schema#
+cao	http://purl.org/makolab/caont/
 card	http://www.ashutosh.com/test/
 care	http://eulersharp.sourceforge.net/2003/03swap/care#
 carfo	http://purl.org/carfo#
@@ -93,6 +99,7 @@ cnt	http://www.w3.org/2008/content#
 co	http://purl.org/ontology/co/core#
 code	http://telegraphis.net/ontology/measurement/code#
 coeus	http://bioinformatics.ua.pt/coeus/
+cogs	http://vocab.deri.ie/cogs#
 coin	http://purl.org/court/def/2009/coin#
 com	http://purl.org/commerce#
 commerce	http://search.yahoo.com/searchmonkey/commerce/
@@ -115,7 +122,7 @@ countries	http://eulersharp.sourceforge.net/2003/03swap/countries#
 courseware	http://courseware.rkbexplorer.com/ontologies/courseware#
 cpm	http://catalogus-professorum.org/cpm/
 cpv	http://purl.org/weso/cpv/
-crm	http://purl.org/NET/cidoc-crm/core#
+crm	http://erlangen-crm.org/current/
 crypto	http://www.w3.org/2000/10/swap/crypto#
 cs	http://purl.org/vocab/changeset/schema#
 ct	http://data.linkedct.org/resource/linkedct/
@@ -170,11 +177,13 @@ dgtwc	http://data-gov.tw.rpi.edu/2009/data-gov-twc.rdf#
 dir	http://schemas.talis.com/2005/dir/schema#
 disease	http://www.agfa.com/w3c/2009/humanDisorder#
 diseasome	http://www4.wiwiss.fu-berlin.de/diseasome/resource/diseasome/
+dive	http://scubadive.networld.to/dive.rdf#
 dnr	http://www.dotnetrdf.org/configuration#
 doac	http://ramonantonio.net/doac/0.1/#
 doap	http://usefulinc.com/ns/doap#
 doc	http://www.w3.org/2000/10/swap/pim/doc#
 doclist	http://www.junkwork.net/xml/DocumentList#
+dpl	http://dbpedialite.org/things/
 drug	http://www.agfa.com/w3c/2009/drugTherapy#
 drugbank	http://www4.wiwiss.fu-berlin.de/drugbank/resource/drugbank/
 dtype	http://www.linkedmodel.org/schema/dtype#
@@ -196,10 +205,12 @@ enc	http://www.w3.org/2001/04/xmlenc#
 ends	http://labs.mondeca.com/vocab/endpointStatus#
 enhancer	http://stanbol.apache.org/ontology/enhancer/enhancer#
 environ	http://eulersharp.sourceforge.net/2003/03swap/environment#
+eprints	http://eprints.org/ontology/
 es	http://eulersharp.sourceforge.net/2003/03swap/log-rules#
 esd	http://def.esd.org.uk/
 eu	http://eulersharp.sourceforge.net/2003/03swap/log-rules#
 eui	http://institutions.publicdata.eu/#
+eumida	http://data.kasabi.com/dataset/eumida/terms/
 eunis	http://eunis.eea.europa.eu/rdf/species-schema.rdf#
 event	http://purl.org/NET/c4dm/event.owl#
 events	http://eulersharp.sourceforge.net/2003/03swap/event#
@@ -251,6 +262,7 @@ geonames	http://www.geonames.org/ontology#
 georss	http://www.georss.org/georss/
 geospecies	http://rdf.geospecies.org/ont/geospecies#
 geovocab	http://geovocab.org/
+germplasm	http://purl.org/germplasm/terms#
 gesis	http://lod.gesis.org/lodpilot/ALLBUS/vocab.rdf#
 giving	http://ontologi.es/giving#
 gldp	http://www.w3.org/ns/people#
@@ -297,6 +309,7 @@ imm	http://schemas.microsoft.com/imm/
 imreg	http://www.w3.org/2004/02/image-regions#
 infection	http://www.agfa.com/w3c/2009/infectiousDisorder#
 infosys	http://www.infosys.com/
+intervals	http://reference.data.gov.uk/def/intervals/
 ipad	http://www.padinthecity.com/
 ir	http://www.ontologydesignpatterns.org/cp/owl/informationrealization.owl#
 ire	http://www.ontologydesignpatterns.org/cpont/ire.owl#
@@ -323,7 +336,9 @@ lang	http://ontologi.es/lang/core#
 languages	http://eulersharp.sourceforge.net/2003/03swap/languages#
 lark1	http://users.utcluj.ro/~raluca/ontology/Ontology1279614123500.owl#
 lastfm	http://purl.org/ontology/last-fm/
+lctr	http://data.linkedct.org/vocab/resource/
 ldap	http://purl.org/net/ldap/
+lemon	http://www.monnet-project.eu/lemon#
 lexvo	http://lexvo.org/ontology#
 lfm	http://purl.org/ontology/last-fm/
 lfn	http://www.dotnetrdf.org/leviathan#
@@ -331,6 +346,8 @@ lgd	http://linkedgeodata.org/ontology/
 lgdo	http://linkedgeodata.org/ontology/
 lgv	http://linkedgeodata.org/ontology/
 lib	http://schemas.talis.com/2005/library/schema#
+library	http://purl.org/library/
+life	http://life.deri.ie/schema/
 lifecycle	http://purl.org/vocab/lifecycle/schema#
 like	http://ontologi.es/like#
 lingvoj	http://www.lingvoj.org/ontology#
@@ -357,6 +374,7 @@ ma	http://www.w3.org/ns/ma-ont#
 madsrdf	http://www.loc.gov/mads/rdf/v1#
 malignneo	http://www.agfa.com/w3c/2009/malignantNeoplasm#
 marcrel	http://id.loc.gov/vocabulary/relators/
+marl	http://purl.org/marl/ns#
 math	http://www.w3.org/2000/10/swap/math#
 media	http://search.yahoo.com/searchmonkey/media/
 meetup	http://www.lotico.com/meetup/
@@ -377,6 +395,7 @@ ms	http://purl.org/obo/owl/MS#
 mte	http://nl.ijs.si/ME/owl/
 mtecore	http://purl.org/olia/mte/multext-east.owl#
 mu	http://www.kanzaki.com/ns/music#
+muni	http://purl.org/ontology/muni#
 muo	http://purl.oclc.org/NET/muo/muo#
 music	http://musicontology.com/
 musim	http://purl.org/ontology/similarity/
@@ -388,6 +407,7 @@ mysql	http://web-semantics.org/ns/mysql/
 name	http://example.org/name#
 nao	http://www.semanticdesktop.org/ontologies/2007/08/15/nao#
 ncal	http://www.semanticdesktop.org/ontologies/2007/04/02/ncal#
+ncbitaxon	http://purl.org/obo/owl/NCBITaxon#
 nco	http://www.semanticdesktop.org/ontologies/2007/03/22/nco#
 ne	http://umbel.org/umbel/ne/
 net	http://www.w3.org/2007/uwa/context/network.owl#
@@ -398,9 +418,13 @@ nid3	http://www.semanticdesktop.org/ontologies/2007/05/10/nid3#
 nie	http://www.semanticdesktop.org/ontologies/2007/01/19/nie#
 nmo	http://www.semanticdesktop.org/ontologies/2007/03/22/nmo#
 nndsr	http://semanticdiet.com/schema/usda/nndsr/
+no	http://km.aifb.kit.edu/projects/numbers/number#
 nocal	http://vocab.deri.ie/nocal#
 np	http://www.nanopub.org/nschema#
 npg	http://ns.nature.com/terms/
+npgd	http://ns.nature.com/datasets/
+npgg	http://ns.nature.com/graphs/
+npgx	http://ns.nature.com/extensions/
 nrl	http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#
 nsa	http://multimedialab.elis.ugent.be/organon/ontologies/ninsuna#
 nsogi	http://prefix.cc/nsogi:
@@ -435,6 +459,7 @@ omt	http://purl.org/ontomedia/ext/common/trait#
 omv	http://omv.ontoware.org/2005/05/ontology#
 onssprel	http://www.ordnancesurvey.co.uk/ontology/SpatialRelations/v0.2/SpatialRelations.owl#
 oo	http://purl.org/openorg/
+open	http://open.vocab.org/terms/
 openlinks	http://www.openlinksw.com/schemas/virtrdf#
 opensearch	http://a9.com/-/spec/opensearch/1.1/
 oper	http://sweet.jpl.nasa.gov/2.0/mathOperation.owl#
@@ -462,6 +487,7 @@ owls	http://www.daml.org/services/owl-s/1.2/Service.owl#
 owlse	http://www.daml.org/services/owl-s/1.2/generic/Expression.owl#
 p20	http://zbw.eu/beta/p20/vocab/
 p3p	http://www.w3.org/2002/01/p3prdfv1#
+pav	http://purl.org/pav/
 pay	http://purl.org/commerce/payment#
 payment	http://reference.data.gov.uk/def/payment#
 pbo	http://purl.org/ontology/pbo/core#
@@ -474,10 +500,12 @@ phil	http://philosurfical.open.ac.uk/ontology/philosurfical.owl/
 phss	http://ns.poundhill.com/phss/1.0/
 pimo	http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#
 ping	http://purl.org/net/pingback/
+pkmn	http://pokedex.dataincubator.org/pkm/
 place	http://purl.org/ontology/places/
 places	http://purl.org/ontology/places#
 play	http://uriplay.org/spec/ontology/#
 plink	http://buzzword.org.uk/rdf/personal-link-types#
+pml	http://provenanceweb.org/ns/pml#
 pmlj	http://inference-web.org/2.0/pml-justification.owl#
 pmlp	http://inference-web.org/2.0/pml-provenance.owl#
 pmlr	http://inference-web.org/2.0/pml-relation.owl#
@@ -488,7 +516,9 @@ pne	http://data.press.net/ontology/event/
 pns	http://data.press.net/ontology/stuff/
 po	http://purl.org/ontology/po/
 pobo	http://purl.obolibrary.org/obo/
+poder	http://poderopedia.com/vocab/
 pois	http://purl.oclc.org/POIS/vcblr#
+pol	http://escience.rpi.edu/ontology/semanteco/2/0/pollution.owl#
 politico	http://www.rdfabout.com/rdf/schema/politico/
 pom	http://maven.apache.org/POM/4.0.0#
 pos	http://www.w3.org/2003/01/geo/wgs84_pos#
@@ -498,7 +528,7 @@ powder	http://www.w3.org/2007/05/powder#
 ppo	http://vocab.deri.ie/ppo#
 pr	http://ontologi.es/profiling#
 prf	http://www.openmobilealliance.org/tech/profiles/UAPROF/ccppschema-20021212#
-prism	http://prismstandard.org/namespaces/1.2/basic/
+prism	http://prismstandard.org/namespaces/basic/2.0/
 prism21	http://prismstandard.org/namespaces/basic/2.1/
 prissma	http://ns.inria.fr/prissma/v1#
 prj	http://purl.org/stuff/project/
@@ -512,7 +542,7 @@ protegedc	http://protege.stanford.edu/plugins/owl/dc/protege-dc.owl#
 protons	http://proton.semanticweb.org/2005/04/protons#
 prov	http://www.w3.org/ns/prov#
 provenir	http://knoesis.wright.edu/provenir/provenir.owl#
-prv	http://purl.org/net/provenance/ns#
+prv	http://purl.org/ontology/prv/core#
 prviv	http://purl.org/net/provenance/integrity#
 prvr	http://purl.org/ontology/prv/rules#
 prvtypes	http://purl.org/net/provenance/types#
@@ -532,10 +562,13 @@ quantities	http://eulersharp.sourceforge.net/2003/03swap/quantitiesExtension#
 qudt	http://qudt.org/1.1/schema/qudt#
 r2r	http://www4.wiwiss.fu-berlin.de/bizer/r2r/
 r2rml	http://www.w3.org/ns/r2rml#
+r4ta	http://ns.inria.fr/ratio4ta/v1#
 rail	http://ontologi.es/rail/vocab#
 rating	http://www.tvblob.com/ratings/#
+rda	http://rdvocab.info/elements/
 rdacarrier	http://rdvocab.info/termList/RDACarrierType/
 rdacontent	http://rdvocab.info/termList/RDAContentType/
+rdagr1	http://rdvocab.info/Elements/
 rdamedia	http://rdvocab.info/termList/RDAMediaType/
 rdb	http://www.dbs.cs.uni-duesseldorf.de/RDF/relational#
 rdf	http://www.w3.org/1999/02/22-rdf-syntax-ns#
@@ -572,11 +605,12 @@ rpubl	http://rinfo.lagrummet.se/ns/2008/11/rinfo/publ#
 rr	http://www.w3.org/ns/r2rml#
 rsa	http://www.w3.org/ns/auth/rsa#
 rss	http://purl.org/rss/1.0/
+rssynd	http://web.resource.org/rss/1.0/modules/syndication/
 rulz	http://purl.org/NET/rulz#
 rv	http://wifo-ravensburg.de/semanticweb.rdf#
 s2s	http://escience.rpi.edu/ontology/sesf/s2s/2/0/
 s3db	http://www.s3db.org/core#
-s4ac	http://ns.inria.fr/s4ac/v1#
+s4ac	http://ns.inria.fr/s4ac/v2#
 sail	http://www.openrdf.org/config/sail#
 sawsdl	http://www.w3.org/ns/sawsdl#
 saxon	http://saxon.sf.net/
@@ -590,6 +624,7 @@ scsv	http://purl.org/NET/schema-org-csv#
 scufl2	http://ns.taverna.org.uk/2010/scufl2#
 scv	http://purl.org/NET/scovo#
 sd	http://www.w3.org/ns/sparql-service-description#
+sdgp	http://stats.data-gov.ie/property/
 sdl	http://purl.org/vocab/riro/sdl#
 sdmx	http://purl.org/linked-data/sdmx#
 sdmxdim	http://purl.org/linked-data/sdmx/2009/dimension#
@@ -599,6 +634,8 @@ sede	http://eventography.org/sede/0.1/
 semtweet	http://semantictweet.com/
 sesame	http://www.openrdf.org/schema/sesame#
 session	http://redfoot.net/2005/session#
+set	http://www.w3.org/2000/10/swap/set#
+sgv	http://www.w3.org/TR/SVG/
 shv	http://ns.aksw.org/spatialHierarchy/
 sider	http://www4.wiwiss.fu-berlin.de/sider/resource/sider/
 sig	http://purl.org/signature#
@@ -630,6 +667,7 @@ span	http://www.ifomis.org/bfo/1.1/span#
 sparql	http://www.openrdf.org/config/repository/sparql#
 spatial	http://geovocab.org/spatial#
 spc	http://purl.org/ontomedia/core/space#
+spif	http://spinrdf.org/spif#
 spin	http://spinrdf.org/spin#
 spl	http://spinrdf.org/spl#
 sport	http://www.bbc.co.uk/ontologies/sport/
@@ -665,6 +703,7 @@ tags	http://www.holygoat.co.uk/owl/redwood/0.1/tags/
 tarot	http://data.totl.net/tarot/card/
 taxo	http://purl.org/rss/1.0/modules/taxonomy/
 tblcard	http://www.w3.org/People/Berners-Lee/card#
+tcga	http://purl.org/tcga/core#
 tdb	http://jena.hpl.hp.com/2008/tdb#
 teach	http://linkedscience.org/teach/ns#
 tei	http://www.tei-c.org/ns/1.0/

-- 
librdf-ns-perl Debian packaging



More information about the Pkg-perl-cvs-commits mailing list