From: <rv...@us...> - 2010-06-03 17:13:23
|
Revision: 709 http://treebase.svn.sourceforge.net/treebase/?rev=709&view=rev Author: rvos Date: 2010-06-03 17:13:16 +0000 (Thu, 03 Jun 2010) Log Message: ----------- Adding RDF and RDF-schema namespaces for CDAO generation. Changed the template for NCBI (UniProt) URIs to remove the rdf suffix, as per @rdmpage's recommendation. Modified Paths: -------------- trunk/treebase-core/src/main/java/org/cipres/treebase/Constants.java Modified: trunk/treebase-core/src/main/java/org/cipres/treebase/Constants.java =================================================================== --- trunk/treebase-core/src/main/java/org/cipres/treebase/Constants.java 2010-06-02 14:42:42 UTC (rev 708) +++ trunk/treebase-core/src/main/java/org/cipres/treebase/Constants.java 2010-06-03 17:13:16 UTC (rev 709) @@ -13,8 +13,10 @@ public static final URI BaseURI = URI.create("http://purl.org/PHYLO/TREEBASE/PHYLOWS/"); public static final URI OWLURI = URI.create("http://www.w3.org/2002/07/owl#"); public static final URI SKOSURI = URI.create("http://www.w3.org/2004/02/skos/core#"); + public static final URI RDFSURI = URI.create("http://www.w3.org/2000/01/rdf-schema#"); + public static final URI RDFURI = URI.create("http://www.w3.org/1999/02/22-rdf-syntax-ns#"); public static final String NCBITaxonomyBase = "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id="; public static final String uBioBase = "http://www.ubio.org/authority/metadata.php?lsid=urn:lsid:ubio.org:namebank:"; - public static final String NCBITaxonomyFormat = "http://purl.uniprot.org/taxonomy/%s.rdf"; + public static final String NCBITaxonomyFormat = "http://purl.uniprot.org/taxonomy/%s"; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |