Maven migration (first draft)

This commit is contained in:
Graham Triggs 2015-11-19 23:47:12 +00:00
parent 5e0329908c
commit e1ff94ccaf
2866 changed files with 1112 additions and 616 deletions

View file

@ -0,0 +1,3 @@
# Tell Apache Commons Logging that we want to use Log4J for the unit tests,
# even if other logging systems are available.
org.apache.commons.logging.Log=org.apache.commons.logging.impl.Log4JLogger

View file

@ -0,0 +1,164 @@
# $This file is distributed under the terms of the license in /doc/license.txt$
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix auth: <http://vitro.mannlib.cornell.edu/ns/vitro/authorization#> .
@prefix mydomain: <http://vivo.mydomain.edu/individual/> .
### This file is for the test UserAccountsSelectorTest.java.
#
# Note: each optional field (everything except URI and emailAddress) is missing
# from some user account.
#
# Note: user accounts have 0, 1, or 2 permission sets.
#
mydomain:user01
a auth:UserAccount ;
auth:emailAddress "email@able.edu" ;
auth:firstName "Zack" ;
auth:lastName "Roberts" ;
auth:md5password "garbage" ;
auth:passwordChangeExpires 0 ;
auth:loginCount 5 ;
auth:lastLoginTime 100 ;
auth:status "ACTIVE" ;
auth:hasPermissionSet mydomain:role1 ;
.
mydomain:user02
a auth:UserAccount ;
auth:emailAddress "email@bob.edu" ;
# auth:firstName NONE ;
auth:lastName "Cole" ;
auth:md5password "garbage" ;
auth:passwordChangeExpires 0 ;
auth:loginCount 5 ;
auth:lastLoginTime 100 ;
auth:status "INACTIVE" ;
auth:hasPermissionSet mydomain:role1 ;
.
mydomain:user03
a auth:UserAccount ;
auth:emailAddress "email@charlie.edu" ;
auth:firstName "Ralph" ;
# auth:lastName NONE ;
auth:md5password "garbage" ;
auth:passwordChangeExpires 0 ;
auth:loginCount 0 ;
auth:lastLoginTime 1 ;
auth:status "INACTIVE" ;
auth:hasPermissionSet mydomain:role1 ;
auth:hasPermissionSet mydomain:role2 ;
.
mydomain:user04
a auth:UserAccount ;
auth:emailAddress "email@delta.edu" ;
auth:firstName "Queen" ;
auth:lastName "Latifah" ;
# auth:md5password NONE ;
auth:passwordChangeExpires 0 ;
auth:loginCount 9 ;
auth:lastLoginTime 3 ;
auth:status "ACTIVE" ;
.
mydomain:user05
a auth:UserAccount ;
auth:emailAddress "email@echo.edu" ;
auth:firstName "Paul" ;
auth:lastName "Archibob" ;
auth:md5password "garbage" ;
# auth:passwordChangeExpires NONE ;
auth:loginCount 2 ;
auth:lastLoginTime 100 ;
auth:status "ACTIVE" ;
auth:hasPermissionSet mydomain:role1 ;
.
mydomain:user06
a auth:UserAccount ;
auth:emailAddress "email@foxtrot.edu" ;
auth:firstName "Nancy" ;
auth:lastName "Xavier" ;
auth:md5password "garbage" ;
auth:passwordChangeExpires 0 ;
# auth:loginCount NONE ;
auth:lastLoginTime 2 ;
auth:status "INACTIVE" ;
auth:hasPermissionSet mydomain:role1 ;
.
mydomain:user07
a auth:UserAccount ;
auth:emailAddress "email@golf.edu" ;
auth:firstName "Oprah" ;
auth:lastName "Winfrey" ;
auth:md5password "garbage" ;
auth:passwordChangeExpires 0 ;
auth:loginCount 1 ;
# auth:lastLoginTime NONE ;
# auth:status NONE ;
auth:hasPermissionSet mydomain:role22 ;
.
mydomain:user08
a auth:UserAccount ;
a auth:RootUserAccount ;
auth:emailAddress "email@henry.edu" ;
auth:firstName "Mary" ;
auth:lastName "McInerney" ;
auth:md5password "garbage" ;
auth:passwordChangeExpires 0 ;
auth:loginCount 7 ;
auth:lastLoginTime 1122334455667788 ;
auth:status "ACTIVE" ;
.
mydomain:user09
a auth:UserAccount ;
auth:emailAddress "email@indigo.edu" ;
auth:firstName "Jim" ;
auth:lastName "Blake" ;
auth:md5password "garbage" ;
auth:passwordChangeExpires 0 ;
auth:loginCount 3 ;
auth:lastLoginTime 1000000000000000 ;
auth:status "ACTIVE" ;
auth:hasPermissionSet mydomain:role1 ;
.
mydomain:user10
a auth:UserAccount ;
auth:emailAddress "email@jones.edu" ;
auth:firstName "Bob" ;
auth:lastName "Caruso" ;
auth:md5password "garbage" ;
auth:passwordChangeExpires 1100234965897 ;
auth:loginCount 50 ;
auth:lastLoginTime 1020304050607080 ;
auth:status "ACTIVE" ;
auth:hasPermissionSet mydomain:role2 ;
.
mydomain:role1
a auth:PermissionSet ;
rdfs:label "Role 1" ;
.
mydomain:role2
a auth:PermissionSet ;
rdfs:label "Role 2" ;
.
# this is intentionally a typographical extension of mydomain:role2
# to test that our reg-exp filters correctly.
mydomain:role22
a auth:PermissionSet ;
rdfs:label "Role 22" ;
.

View file

@ -0,0 +1,150 @@
# $This file is distributed under the terms of the license in /doc/license.txt$
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#> .
@prefix public: <http://vitro.mannlib.cornell.edu/ns/vitro/public#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix auth: <http://vitro.mannlib.cornell.edu/ns/vitro/authorization#> .
@prefix mydomain: <http://vivo.mydomain.edu/individual/> .
### This file provides a UserAccounts model for ProxyRelationshipSelectorTest.java
#
# The first relationship to be returned, regardless of view, is this profile to its proxy,
# and here is the self for that proxy also.
#
mydomain:firstProfile
a foaf:Person ;
rdfs:label "AAAA, FirstProfile" ;
vitro:mostSpecificType mydomain:profileType ;
public:mainImage mydomain:profileImage ;
.
mydomain:firstSelf
a foaf:Person ;
vitro:mostSpecificType mydomain:selfType ;
public:mainImage mydomain:selfImage ;
mydomain:matching "firstSelf" ;
.
#
# An individual with no proxy
#
mydomain:bozo
a foaf:Person ;
rdfs:label "Bozo, Not Just Any" ;
vitro:mostSpecificType mydomain:profileType;
.
#
# This Individual can be edited by a bunch of proxies.
#
mydomain:popularProfile
a foaf:Person ;
rdfs:label "Profile, Popular" ;
vitro:mostSpecificType mydomain:profileType;
public:mainImage mydomain:profileImage;
.
#
# These Individuals can all be edited by one popular proxy.
# Each profile has different combinations of attributes.
#
mydomain:profileWithNoClassLabel
a foaf:Person ;
rdfs:label "NoClassLabel, Profile with" ;
public:mainImage mydomain:profileImage;
.
mydomain:profileWithNoImageUrl
a foaf:Person ;
rdfs:label "NoImageUrl, Profile with" ;
vitro:mostSpecificType mydomain:profileType;
.
mydomain:profileWithNeither
a foaf:Person ;
rdfs:label "Neither, Profile with" ;
.
mydomain:profileWithBoth
a foaf:Person ;
rdfs:label "Both, Profile with" ;
vitro:mostSpecificType mydomain:profileType;
public:mainImage mydomain:profileImage;
.
#
# These Individiauls are each the "self" for a different proxy.
# Each profile has a different combination of attributes.
#
mydomain:individualWithNoClassLabel
a foaf:Person ;
rdfs:label "Person, Bozo" ;
public:mainImage mydomain:selfImage;
mydomain:matching "individualWithNoClassLabel" ;
.
mydomain:individualWithNoImageUrl
a foaf:Person ;
rdfs:label "Person, Bozo" ;
vitro:mostSpecificType mydomain:selfType;
mydomain:matching "individualWithNoImageUrl" ;
.
mydomain:individualWithNeither
a foaf:Person ;
rdfs:label "Person, Bozo" ;
mydomain:matching "individualWithNeither" ;
.
mydomain:individualWithBoth
a foaf:Person ;
rdfs:label "Person, Bozo" ;
vitro:mostSpecificType mydomain:selfType;
public:mainImage mydomain:selfImage;
mydomain:matching "individualWithBoth" ;
.
#
# Use this as a "most specific type" for Profiles.
#
mydomain:profileType
rdfs:label "Profile";
.
#
# Use this as a "most specific type" for "selves".
#
mydomain:selfType
rdfs:label "Self";
.
#
# Image hierarchy for those profiles that need one.
#
mydomain:profileImage
public:thumbnailImage mydomain:profileThumbnail;
.
mydomain:profileThumbnail
public:downloadLocation mydomain:profileThumbStream;
.
mydomain:profileThumbStream
public:directDownloadUrl "http://mydomain.edu/profileImage.jpg"
.
#
# Image hierarchy for those "selves" that need one.
#
mydomain:selfImage
public:thumbnailImage mydomain:selfThumbnail;
.
mydomain:selfThumbnail
public:downloadLocation mydomain:selfThumbStream;
.
mydomain:selfThumbStream
public:directDownloadUrl "http://mydomain.edu/selfImage.jpg"
.

View file

@ -0,0 +1,88 @@
# $This file is distributed under the terms of the license in /doc/license.txt$
@prefix auth: <http://vitro.mannlib.cornell.edu/ns/vitro/authorization#> .
@prefix mydomain: <http://vivo.mydomain.edu/individual/> .
### This file provides a UserAccounts model for ProxyRelationshipSelectorTest.java
#
# The first relationship to be returned, regardless of view, is this proxy to its profile.
#
mydomain:userFirstProxy
a auth:UserAccount ;
auth:emailAddress "firstProxy@some.edu" ;
auth:firstName "FirstProxy" ;
auth:lastName "AAAA" ;
auth:externalAuthId "firstSelf" ;
auth:proxyEditorFor mydomain:firstProfile ;
.
#
# A user account with no proxy relationship and no profile.
#
mydomain:userProxyForNone
a auth:UserAccount ;
auth:emailAddress "proxyForNone@some.edu" ;
auth:firstName "Proxy4" ;
auth:lastName "None" ;
.
#
# This user account is proxy for a bunch of profiles.
# This user account has no self
#
mydomain:userPopularProxy
a auth:UserAccount ;
auth:emailAddress "popularProxy@some.edu" ;
auth:firstName "Popular" ;
auth:lastName "Proxy" ;
auth:proxyEditorFor mydomain:profileWithNoClassLabel ;
auth:proxyEditorFor mydomain:profileWithNoImageUrl ;
auth:proxyEditorFor mydomain:profileWithNeither ;
auth:proxyEditorFor mydomain:profileWithBoth ;
.
#
# These user accounts are each proxy for a popular profile.
# All but one has a self, but each self has different combinations of attributes.
#
mydomain:userProxyWithNoSelf
a auth:UserAccount ;
auth:emailAddress "proxyWithNoSelf@some.edu" ;
auth:firstName "ProxyWith" ;
auth:lastName "NoSelf" ;
auth:proxyEditorFor mydomain:popularProfile ;
.
mydomain:userProxyWithSelfWithNoClassLabel
a auth:UserAccount ;
auth:emailAddress "proxyWithSelfWithNoClassLabel@some.edu" ;
auth:firstName "ProxyWithSelfWith" ;
auth:lastName "NoClassLabel" ;
auth:externalAuthId "individualWithNoClassLabel" ;
auth:proxyEditorFor mydomain:popularProfile ;
.
mydomain:userProxyWithSelfWithNoImageUrl
a auth:UserAccount ;
auth:emailAddress "proxyWithSelfWithNoImageUrl@some.edu" ;
auth:firstName "ProxyWithSelfWith" ;
auth:lastName "NoImageUrl" ;
auth:externalAuthId "individualWithNoImageUrl" ;
auth:proxyEditorFor mydomain:popularProfile ;
.
mydomain:userProxyWithSelfWithNeither
a auth:UserAccount ;
auth:emailAddress "proxyWithSelfWithNeither@some.edu" ;
auth:firstName "ProxyWithSelfWith" ;
auth:lastName "Neither" ;
auth:externalAuthId "individualWithNeither" ;
auth:proxyEditorFor mydomain:popularProfile ;
.
mydomain:userProxyWithSelfWithBoth
a auth:UserAccount ;
auth:emailAddress "proxyWithSelfWithBoth@some.edu" ;
auth:firstName "ProxyWithSelfWith" ;
auth:lastName "Both" ;
auth:externalAuthId "individualWithBoth" ;
auth:proxyEditorFor mydomain:popularProfile ;
.

View file

@ -0,0 +1 @@
<http://purl.org/ontology/bibo/degree> <http://purl.obolibrary.org/obo/IAO_0000112> "The source of the public description and this info is found here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html. Bibo considers this term \"unstable\". The bibo editorial note is: \"We are not defining, using an enumeration, the range of the bibo:degree to the defined list of bibo:ThesisDegree. We won't do it because we want people to be able to define new degress if needed by some special usecases. Creating such an enumeration would restrict this to happen.\""^^<http://www.w3.org/2001/XMLSchema#string> <http://vitro.mannlib.cornell.edu/filegraph/tbox/object-properties.owl> .

View file

@ -0,0 +1,154 @@
@prefix ocresd: <http://purl.org/net/OCRe/study_design.owl#> .
@prefix geo: <http://aims.fao.org/aos/geopolitical.owl#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix scires: <http://vivoweb.org/ontology/scientific-research#> .
@prefix cito: <http://purl.org/spar/cito/> .
@prefix fabio: <http://purl.org/spar/fabio/> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ocrer: <http://purl.org/net/OCRe/research.owl#> .
@prefix vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#> .
@prefix event: <http://purl.org/NET/c4dm/event.owl#> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix c4o: <http://purl.org/spar/c4o/> .
@prefix vitro-public: <http://vitro.mannlib.cornell.edu/ns/vitro/public#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vivo: <http://vivoweb.org/ontology/core#> .
<http://vivo.mydomain.edu/individual/n3639>
a vivo:FacultyMember ,
foaf:Person ,
owl:Thing ,
foaf:Agent ,
obo:BFO_0000002 ,
obo:BFO_0000001 ,
obo:BFO_0000004 ;
rdfs:label "Baker, Able "^^xsd:string ;
obo:ARG_2000028 <http://vivo.mydomain.edu/individual/n3972> ;
obo:RO_0000053 <http://vivo.mydomain.edu/individual/n475> ,
<http://vivo.mydomain.edu/individual/n7850> ;
vitro:mostSpecificType
vivo:FacultyMember ;
vivo:freetextKeyword
"Potrezebie, Chattanooga" ;
vivo:hasCollaborator
<http://vivo.mydomain.edu/individual/n7429> ;
vivo:relatedBy <http://vivo.mydomain.edu/individual/n3401> ,
<http://vivo.mydomain.edu/individual/n5855> ,
<http://vivo.mydomain.edu/individual/n2421> ;
vivo:researchOverview
"Whatever strikes my fancy." ;
vivo:scopusId "abaker" .
<http://vivo.mydomain.edu/individual/n3972>
a vcard:Kind ,
obo:BFO_0000031 ,
owl:Thing ,
obo:ARG_2000379 ,
obo:IAO_0000030 ,
obo:BFO_0000002 ,
obo:BFO_0000001 ,
vcard:Individual ;
obo:ARG_2000029 <http://vivo.mydomain.edu/individual/n3639> .
<http://vivo.mydomain.edu/individual/n475>
a owl:Thing ,
obo:BFO_0000023 ,
vivo:InvestigatorRole ,
obo:BFO_0000002 ,
obo:BFO_0000017 ,
vivo:PrincipalInvestigatorRole ,
obo:BFO_0000020 ,
obo:BFO_0000001 ,
vivo:ResearcherRole ;
obo:RO_0000052 <http://vivo.mydomain.edu/individual/n3639> .
<http://vivo.mydomain.edu/individual/n7850>
a owl:Thing ,
obo:BFO_0000023 ,
obo:BFO_0000017 ,
obo:BFO_0000002 ,
obo:BFO_0000020 ,
obo:BFO_0000001 ,
vivo:LeaderRole ;
rdfs:label "Lead Guitarist"^^xsd:string ;
obo:RO_0000052 <http://vivo.mydomain.edu/individual/n3639> .
<http://vivo.mydomain.edu/individual/n7429>
a foaf:Person ,
vivo:FacultyMember ,
foaf:Agent ,
owl:Thing ,
obo:BFO_0000002 ,
obo:BFO_0000001 ,
obo:BFO_0000004 ;
rdfs:label "Yum, Yum " .
<http://vivo.mydomain.edu/individual/n3401>
a owl:Thing ,
vivo:Relationship ,
obo:BFO_0000002 ,
obo:BFO_0000020 ,
obo:BFO_0000001 ,
vivo:Authorship ;
vivo:relates <http://vivo.mydomain.edu/individual/n3639> .
<http://vivo.mydomain.edu/individual/n5855>
a vivo:FacultyPosition ,
owl:Thing ,
vivo:Relationship ,
obo:BFO_0000002 ,
obo:BFO_0000020 ,
obo:BFO_0000001 ,
vivo:Position ;
rdfs:label "Functionary"^^xsd:string ;
vivo:relates <http://vivo.mydomain.edu/individual/n3639> .
<http://vivo.mydomain.edu/individual/n2421>
a owl:Thing ,
vivo:Relationship ,
obo:BFO_0000002 ,
obo:BFO_0000020 ,
obo:BFO_0000001 ,
vivo:Grant ;
rdfs:label "Cosmogenic Lassitude in Plegmatic Axolotls" ;
vivo:relates <http://vivo.mydomain.edu/individual/n3639> .
obo:BFO_0000001
a owl:Class ;
rdfs:label "Entity" .
obo:BFO_0000002
a owl:Class ;
rdfs:label "Continuant" .
obo:BFO_0000004
a owl:Class ;
rdfs:label "Independent Continuant"@en-US .
vivo:FacultyMember
a owl:Class ;
rdfs:label "Faculty Member"@en-US .
foaf:Person
a owl:Class ;
rdfs:label "Person"@en-US .
foaf:Agent
a owl:Class ;
rdfs:label "Agent"@en-US .
owl:Thing
a owl:Class .
<http://vivo.mydomain.edu/individual/n3639/n3639.n3>
a foaf:Document ;
rdfs:label "RDF description of Baker, Able - http://vivo.mydomain.edu/individual/n3639" ;
<http://purl.org/dc/elements/1.1/date> "2014-03-10T11:08:39"^^xsd:dateTime ;
<http://purl.org/dc/elements/1.1/publisher> <http://vivo.mydomain.edu> ;
<http://purl.org/dc/elements/1.1/rights> <http://vivo.mydomain.edu/termsOfUse> .

View file

@ -0,0 +1,163 @@
@prefix ocresd: <http://purl.org/net/OCRe/study_design.owl#> .
@prefix geo: <http://aims.fao.org/aos/geopolitical.owl#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix scires: <http://vivoweb.org/ontology/scientific-research#> .
@prefix cito: <http://purl.org/spar/cito/> .
@prefix fabio: <http://purl.org/spar/fabio/> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ocrer: <http://purl.org/net/OCRe/research.owl#> .
@prefix vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#> .
@prefix event: <http://purl.org/NET/c4dm/event.owl#> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix c4o: <http://purl.org/spar/c4o/> .
@prefix vitro-public: <http://vitro.mannlib.cornell.edu/ns/vitro/public#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vivo: <http://vivoweb.org/ontology/core#> .
<http://vivo.mydomain.edu/individual/n3639>
a vivo:FacultyMember ,
foaf:Person ,
owl:Thing ,
foaf:Agent ,
obo:BFO_0000002 ,
obo:BFO_0000001 ,
obo:BFO_0000004 ;
rdfs:label "Baker, Able "^^xsd:string ;
obo:ARG_2000028 <http://vivo.mydomain.edu/individual/n3972> ;
obo:RO_0000053 <http://vivo.mydomain.edu/individual/n475> ,
<http://vivo.mydomain.edu/individual/n7850> ;
vitro:mostSpecificType
vivo:FacultyMember ;
vivo:freetextKeyword
"Potrezebie, Chattanooga" ;
vivo:hasCollaborator
<http://vivo.mydomain.edu/individual/n7429> ;
vivo:hasResearchArea
<http://www.eionet.europa.eu/gemet/concept/971> ,
<http://vivo.mydomain.edu/individual/n2158> ;
vivo:overview "Just an ordinary chap of simple means and simple desires." ;
vivo:relatedBy <http://vivo.mydomain.edu/individual/n3401> ,
<http://vivo.mydomain.edu/individual/n5855> ,
<http://vivo.mydomain.edu/individual/n2421> ;
vivo:researchOverview
"Whatever strikes my fancy." ;
vivo:scopusId "abaker" .
<http://vivo.mydomain.edu/individual/n3972>
a vcard:Kind ,
obo:BFO_0000031 ,
owl:Thing ,
obo:ARG_2000379 ,
obo:IAO_0000030 ,
obo:BFO_0000002 ,
obo:BFO_0000001 ,
vcard:Individual ;
obo:ARG_2000029 <http://vivo.mydomain.edu/individual/n3639> .
<http://vivo.mydomain.edu/individual/n475>
a owl:Thing ,
obo:BFO_0000023 ,
vivo:InvestigatorRole ,
obo:BFO_0000002 ,
obo:BFO_0000017 ,
vivo:PrincipalInvestigatorRole ,
obo:BFO_0000020 ,
obo:BFO_0000001 ,
vivo:ResearcherRole ;
obo:RO_0000052 <http://vivo.mydomain.edu/individual/n3639> .
<http://vivo.mydomain.edu/individual/n7850>
a owl:Thing ,
obo:BFO_0000023 ,
obo:BFO_0000017 ,
obo:BFO_0000002 ,
obo:BFO_0000020 ,
obo:BFO_0000001 ,
vivo:LeaderRole ;
rdfs:label "Lead Guitarist"^^xsd:string ;
obo:RO_0000052 <http://vivo.mydomain.edu/individual/n3639> .
<http://vivo.mydomain.edu/individual/n7429>
a foaf:Person ,
vivo:FacultyMember ,
foaf:Agent ,
owl:Thing ,
obo:BFO_0000002 ,
obo:BFO_0000001 ,
obo:BFO_0000004 ;
rdfs:label "Yum, Yum " .
<http://www.eionet.europa.eu/gemet/concept/971>
a owl:Thing ,
<http://vivo.mydomain.edu/individual/n7793> ,
skos:Concept ;
rdfs:label "botany"^^xsd:string ;
vivo:researchAreaOf <http://vivo.mydomain.edu/individual/n3639> .
<http://vivo.mydomain.edu/individual/n2158>
a owl:Thing ,
skos:Concept ;
rdfs:label "What a concept!"^^xsd:string ;
vivo:researchAreaOf <http://vivo.mydomain.edu/individual/n3639> .
<http://vivo.mydomain.edu/individual/n3401>
a owl:Thing ,
vivo:Relationship ,
obo:BFO_0000002 ,
obo:BFO_0000020 ,
obo:BFO_0000001 ,
vivo:Authorship ;
vivo:relates <http://vivo.mydomain.edu/individual/n3639> .
<http://vivo.mydomain.edu/individual/n5855>
a vivo:FacultyPosition ,
owl:Thing ,
vivo:Relationship ,
obo:BFO_0000002 ,
obo:BFO_0000020 ,
obo:BFO_0000001 ,
vivo:Position ;
rdfs:label "Functionary"^^xsd:string ;
vivo:relates <http://vivo.mydomain.edu/individual/n3639> .
<http://vivo.mydomain.edu/individual/n2421>
a owl:Thing ,
vivo:Relationship ,
obo:BFO_0000002 ,
obo:BFO_0000020 ,
obo:BFO_0000001 ,
vivo:Grant ;
rdfs:label "Cosmogenic Lassitude in Plegmatic Axolotls" ;
vivo:relates <http://vivo.mydomain.edu/individual/n3639> .
obo:BFO_0000001
a owl:Class ;
rdfs:label "Entity" .
obo:BFO_0000002
a owl:Class ;
rdfs:label "Continuant" .
obo:BFO_0000004
a owl:Class ;
rdfs:label "Independent Continuant"@en-US .
vivo:FacultyMember
a owl:Class ;
rdfs:label "Faculty Member"@en-US .
foaf:Person
a owl:Class ;
rdfs:label "Person"@en-US .
foaf:Agent
a owl:Class ;
rdfs:label "Agent"@en-US .
owl:Thing
a owl:Class .

View file

@ -0,0 +1,171 @@
@prefix ocresd: <http://purl.org/net/OCRe/study_design.owl#> .
@prefix geo: <http://aims.fao.org/aos/geopolitical.owl#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix scires: <http://vivoweb.org/ontology/scientific-research#> .
@prefix cito: <http://purl.org/spar/cito/> .
@prefix fabio: <http://purl.org/spar/fabio/> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ocrer: <http://purl.org/net/OCRe/research.owl#> .
@prefix vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#> .
@prefix event: <http://purl.org/NET/c4dm/event.owl#> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix c4o: <http://purl.org/spar/c4o/> .
@prefix vitro-public: <http://vitro.mannlib.cornell.edu/ns/vitro/public#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vivo: <http://vivoweb.org/ontology/core#> .
<http://vivo.mydomain.edu/individual/n3639>
a vivo:FacultyMember ,
foaf:Person ,
owl:Thing ,
foaf:Agent ,
obo:BFO_0000002 ,
obo:BFO_0000001 ,
obo:BFO_0000004 ;
rdfs:label "Baker, Able "^^xsd:string ;
obo:ARG_2000028 <http://vivo.mydomain.edu/individual/n3972> ;
obo:RO_0000053 <http://vivo.mydomain.edu/individual/n475> ,
<http://vivo.mydomain.edu/individual/n7850> ;
vitro:mostSpecificType
vivo:FacultyMember ;
vivo:freetextKeyword
"Potrezebie, Chattanooga" ;
vivo:hasCollaborator
<http://vivo.mydomain.edu/individual/n7429> ;
vivo:hasResearchArea
<http://www.eionet.europa.eu/gemet/concept/971> ,
<http://vivo.mydomain.edu/individual/n2158> ;
vivo:overview "Just an ordinary chap of simple means and simple desires." ;
vivo:relatedBy <http://vivo.mydomain.edu/individual/n3401> ,
<http://vivo.mydomain.edu/individual/n5855> ,
<http://vivo.mydomain.edu/individual/n2421> ;
vivo:researchOverview
"Whatever strikes my fancy." ;
vivo:scopusId "abaker" .
<http://vivo.mydomain.edu/individual/n3972>
a vcard:Kind ,
obo:BFO_0000031 ,
owl:Thing ,
obo:ARG_2000379 ,
obo:IAO_0000030 ,
obo:BFO_0000002 ,
obo:BFO_0000001 ,
vcard:Individual ;
obo:ARG_2000029 <http://vivo.mydomain.edu/individual/n3639> .
<http://vivo.mydomain.edu/individual/n475>
a owl:Thing ,
obo:BFO_0000023 ,
vivo:InvestigatorRole ,
obo:BFO_0000002 ,
obo:BFO_0000017 ,
vivo:PrincipalInvestigatorRole ,
obo:BFO_0000020 ,
obo:BFO_0000001 ,
vivo:ResearcherRole ;
obo:RO_0000052 <http://vivo.mydomain.edu/individual/n3639> .
<http://vivo.mydomain.edu/individual/n7850>
a owl:Thing ,
obo:BFO_0000023 ,
obo:BFO_0000017 ,
obo:BFO_0000002 ,
obo:BFO_0000020 ,
obo:BFO_0000001 ,
vivo:LeaderRole ;
rdfs:label "Lead Guitarist"^^xsd:string ;
obo:RO_0000052 <http://vivo.mydomain.edu/individual/n3639> .
<http://vivo.mydomain.edu/individual/n7429>
a foaf:Person ,
vivo:FacultyMember ,
foaf:Agent ,
owl:Thing ,
obo:BFO_0000002 ,
obo:BFO_0000001 ,
obo:BFO_0000004 ;
rdfs:label "Yum, Yum " .
<http://www.eionet.europa.eu/gemet/concept/971>
a owl:Thing ,
<http://vivo.mydomain.edu/individual/n7793> ,
skos:Concept ;
rdfs:label "botany"^^xsd:string ;
vivo:researchAreaOf <http://vivo.mydomain.edu/individual/n3639> .
<http://vivo.mydomain.edu/individual/n2158>
a owl:Thing ,
skos:Concept ;
rdfs:label "What a concept!"^^xsd:string ;
vivo:researchAreaOf <http://vivo.mydomain.edu/individual/n3639> .
<http://vivo.mydomain.edu/individual/n3401>
a owl:Thing ,
vivo:Relationship ,
obo:BFO_0000002 ,
obo:BFO_0000020 ,
obo:BFO_0000001 ,
vivo:Authorship ;
vivo:relates <http://vivo.mydomain.edu/individual/n3639> .
<http://vivo.mydomain.edu/individual/n5855>
a vivo:FacultyPosition ,
owl:Thing ,
vivo:Relationship ,
obo:BFO_0000002 ,
obo:BFO_0000020 ,
obo:BFO_0000001 ,
vivo:Position ;
rdfs:label "Functionary"^^xsd:string ;
vivo:relates <http://vivo.mydomain.edu/individual/n3639> .
<http://vivo.mydomain.edu/individual/n2421>
a owl:Thing ,
vivo:Relationship ,
obo:BFO_0000002 ,
obo:BFO_0000020 ,
obo:BFO_0000001 ,
vivo:Grant ;
rdfs:label "Cosmogenic Lassitude in Plegmatic Axolotls" ;
vivo:relates <http://vivo.mydomain.edu/individual/n3639> .
obo:BFO_0000001
a owl:Class ;
rdfs:label "Entity" .
obo:BFO_0000002
a owl:Class ;
rdfs:label "Continuant" .
obo:BFO_0000004
a owl:Class ;
rdfs:label "Independent Continuant"@en-US .
vivo:FacultyMember
a owl:Class ;
rdfs:label "Faculty Member"@en-US .
foaf:Person
a owl:Class ;
rdfs:label "Person"@en-US .
foaf:Agent
a owl:Class ;
rdfs:label "Agent"@en-US .
owl:Thing
a owl:Class .
<http://vivo.mydomain.edu/individual/n3639/n3639.n3>
a foaf:Document ;
rdfs:label "RDF description of Baker, Able - http://vivo.mydomain.edu/individual/n3639" ;
<http://purl.org/dc/elements/1.1/date> "2014-03-10T11:08:39"^^xsd:dateTime ;
<http://purl.org/dc/elements/1.1/publisher> <http://vivo.mydomain.edu> ;
<http://purl.org/dc/elements/1.1/rights> <http://vivo.mydomain.edu/termsOfUse> .

View file

@ -0,0 +1,48 @@
# $This file is distributed under the terms of the license in /doc/license.txt$
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix auth: <http://vitro.mannlib.cornell.edu/ns/vitro/authorization#> .
@prefix mydomain: <http://vivo.mydomain.edu/individual/> .
### This file is for the test UserAccountsSelectorTest.java.
mydomain:user01
a auth:UserAccount ;
auth:emailAddress "email@able.edu" ;
auth:firstName "Zack" ;
auth:lastName "Roberts" ;
auth:md5password "garbage" ;
auth:passwordChangeExpires 0 ;
auth:loginCount 5 ;
auth:lastLoginTime 12345678 ;
auth:status "ACTIVE" ;
auth:externalAuthId "user1";
auth:hasPermissionSet mydomain:role1 ;
.
mydomain:role1
a auth:PermissionSet ;
rdfs:label "Role 1" ;
auth:hasPermission mydomain:permissionA ;
.
mydomain:role2
a auth:PermissionSet ;
a auth:PermissionSetForNewUsers ;
rdfs:label "Role 2" ;
.
mydomain:role3
a auth:PermissionSet ;
a auth:PermissionSetForPublic ;
rdfs:label "Role 3" ;
.
mydomain:permissionA
a auth:Permission ;
rdfs:label "Permission A" ;
.

View file

@ -0,0 +1,98 @@
<?xml version="1.0"?>
<!DOCTYPE owl [
<!ENTITY test.mannlib "http://test.mannlib.cornell.edu#">
<!ENTITY dc "http://purl.org/dc/elements/1.1/">
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#">
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<!ENTITY owl "http://www.w3.org/2002/07/owl#">
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#">
]>
<rdf:RDF
xmlns:test.mannlib="http://test.mannlib.cornell.edu#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xml:base="http://test.mannlib.cornell.edu"
>
<owl:Ontology rdf:about="http://test.mannlib.cornell.edu">
<owl:versionInfo>test-0.01</owl:versionInfo>
<rdfs:label>testing ontology</rdfs:label>
</owl:Ontology>
<owl:Class rdf:about="http://test.mannlib.cornell.edu#dork">
<rdfs:label>dork</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://test.mannlib.cornell.edu#dorkyhobby">
<rdfs:label>dorky hobby</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://test.mannlib.cornell.edu#verydorkyhobby">
<rdfs:subClassOf>
<owl:Class rdf:about="http://test.mannlib.cornell.edu#dorkyhobby">
</owl:Class>
</rdfs:subClassOf>
<rdfs:label>very dorky hobby</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://www.w3.org/2002/07/owl#Thing">
</owl:Class>
<owl:ObjectProperty rdf:about="http://test.mannlib.cornell.edu#hasHobby">
<rdfs:domain>
<owl:Class rdf:about="http://test.mannlib.cornell.edu#dork">
</owl:Class>
</rdfs:domain>
<rdfs:range>
<owl:Class rdf:about="http://test.mannlib.cornell.edu#dorkyhobby">
</owl:Class>
</rdfs:range>
<rdfs:label>has hobby</rdfs:label>
</owl:ObjectProperty>
<rdf:Description rdf:about="http://test.mannlib.cornell.edu#baseballcardcollecting">
<rdf:type>
<owl:Class rdf:about="http://test.mannlib.cornell.edu#dorkyhobby">
</owl:Class>
</rdf:type>
<rdfs:label>baseball card collecting</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://test.mannlib.cornell.edu#bob">
<rdf:type>
<owl:Class rdf:about="http://test.mannlib.cornell.edu#dork">
</owl:Class>
</rdf:type>
</rdf:Description>
<rdf:Description rdf:about="http://test.mannlib.cornell.edu#comicbookcollecting">
<rdf:type>
<owl:Class rdf:about="http://test.mannlib.cornell.edu#verydorkyhobby">
</owl:Class>
</rdf:type>
<rdfs:label>comic book collecting</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://test.mannlib.cornell.edu#cooking">
<rdf:type>
<owl:Class rdf:about="http://test.mannlib.cornell.edu#dorkyhobby">
</owl:Class>
</rdf:type>
<rdfs:label>cooking</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://test.mannlib.cornell.edu#jeff">
<rdf:type>
<owl:Class rdf:about="http://test.mannlib.cornell.edu#dork">
</owl:Class>
</rdf:type>
</rdf:Description>
<rdf:Description rdf:about="http://test.mannlib.cornell.edu#sam">
<rdf:type>
<owl:Class rdf:about="http://test.mannlib.cornell.edu#dork">
</owl:Class>
</rdf:type>
</rdf:Description>
<rdf:Description rdf:about="http://test.mannlib.cornell.edu#sewinghats">
<rdf:type>
<owl:Class rdf:about="http://test.mannlib.cornell.edu#verydorkyhobby">
</owl:Class>
</rdf:type>
<rdfs:label>sewing hats</rdfs:label>
</rdf:Description>
</rdf:RDF>

View file

@ -0,0 +1,84 @@
# $This file is distributed under the terms of the license in /doc/license.txt$
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix core: <http://vivoweb.org/ontology/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
### This file is for the test MenuDaoJenaTest.java it is derived from vivoDefaultMenu.n3 in the vivo product.
#### Default Menu ####
display:DefaultMenu
a display:MainMenu ;
display:hasElement display:EventsMenuItem ;
display:hasElement display:HomeMenuItem ;
display:hasElement display:OrganizationsMenuItem ;
display:hasElement display:PeopleMenuItem ;
display:hasElement display:PublicationsMenuItem .
#### Menu Items for Default Menu ####
display:HomeMenuItem
a display:NavigationElement ;
display:menuPosition "1";
display:linkText "Home";
display:toPage display:Home .
display:PeopleMenuItem
a display:NavigationElement ;
display:menuPosition "2";
display:linkText "People";
display:toPage display:People .
display:PublicationsMenuItem
a display:NavigationElement ;
display:menuPosition "3";
display:linkText "Publications";
display:toPage display:Publications .
display:EventsMenuItem
a display:NavigationElement ;
display:menuPosition "4";
display:linkText "Events";
display:toPage display:Events .
display:OrganizationsMenuItem
a display:NavigationElement ;
display:menuPosition "5";
display:linkText "Organizations";
display:toPage display:Organizations .
########## Pages ############
display:Home
a display:Page ;
display:requiresBodyTemplate "home.ftl" ;
display:title "Home" ;
display:urlMapping "/home" .
display:Events
a display:Page ;
display:requiresBodyTemplate "Events.ftl" ;
display:title "Events" ;
display:urlMapping "/events" .
display:Organizations
a display:Page ;
display:requiresBodyTemplate "organizations.ftl" ;
display:title "Organizations" ;
display:urlMapping "/organizations" .
display:People
a display:Page ;
display:requiresBodyTemplate "people.ftl" ;
display:title "People" ;
display:urlMapping "/people" .
display:Publications
a display:Page ;
display:requiresBodyTemplate "publications.ftl" ;
display:title "Publications" ;
display:urlMapping "/publications" .

View file

@ -0,0 +1,64 @@
{
"formUrl" : "${formUrl}",
"editKey" : "${editKey}",
"subject" : ["series", "${subjectUriJson}", ],
"predicate" : ["predicate", "${predicateUriJson}" ],
"object" : ["talk", "${objectUriJson}", "URI" ],
"urlPatternToReturnTo" : "/entity",
"n3required" : [ ],
"n3optional" : [ ],
"newResources" : { "talk" : "http://vivo.library.cornell.edu/ns/0.1#individual" },
"urisInScope" : { },
"literalsInScope": { },
"urisOnForm" : ["room"],
"literalsOnForm" : [ "talkName", "field222" ],
"sparqlForLiterals" : { },
"sparqlForUris" : { },
"sparqlForExistingLiterals" : { },
"sparqlForExistingUris" : { },
"filesOnForm" : [ ],
"fields" : {
"talkName" : {
"newResource" : "false",
"validators" : [ "nonempty" ],
"optionsType" : "UNDEFINED",
"literalOptions" : [],
"subjectUri" : "${param.subjectUri}",
"subjectClassUri" : "",
"predicateUri" : "",
"objectClassUri" : "",
"rangeDatatypeUri" : "",
"rangeLang" :"",
"assertions" : [ ]
},
"room" : {
"newResource" : "false",
"validators" : [ ],
"optionsType" : "INDIVIDUALS_VIA_OBJECT_PROPERTY",
"literalOptions" : [" (none)"],
"subjectUri" : "${param.subjectUri}",
"subjectClassUri" : "",
"predicateUri" : "${heldInObjProp}",
"objectClassUri" : "${buildingClass}",
"rangeDatatypeUri" : "",
"rangeLang" :"",
"assertions" : [ ]
} ,
"field222" : {
"newResource" : "false",
"validators" : [ ],
"optionsType" : "DATETIME",
"literalOptions" : [],
"subjectUri" : "${param.subjectUri}",
"subjectClassUri" : "",
"predicateUri" : "",
"objectClassUri" : "",
"rangeDatatypeUri" : "",
"rangeLang" :"",
"assertions" : [ ]
}
}
}

View file

@ -0,0 +1,347 @@
# An example of the RDF for a person from 1.2.1 vivo.cornell.edu
# The person's URI is <http://vivo.cornell.edu/individual/individual8803>
<http://vivo.cornell.edu/individual/AI-24401569793-2>
a <http://www.w3.org/2002/07/owl#Thing> , <http://vivoweb.org/ontology/core#Relationship> , <http://vivoweb.org/ontology/core#Authorship> ;
<http://vivoweb.org/ontology/activity-insight#authorNameAsListed>
"Allen, P E" ;
<http://vivoweb.org/ontology/core#authorRank>
"2"^^<http://www.w3.org/2001/XMLSchema#int> ;
<http://vivoweb.org/ontology/core#linkedAuthor>
<http://vivo.cornell.edu/individual/individual8803> ;
<http://vivoweb.org/ontology/core#linkedInformationResource>
<http://vivo.cornell.edu/individual/AI-24401569793> .
<http://vivo.cornell.edu/individual/grant46750>
a <http://www.w3.org/2002/07/owl#Thing> , <http://vivoweb.org/ontology/cu-vivo-osp#Grant> , <http://vivoweb.org/ontology/core#Agreement> , <http://vivoweb.org/ontology/core#Grant> ;
<http://www.w3.org/2000/01/rdf-schema#label>
"THE SCIENCE KNOWLEDGE AND EDUCATION NETWORK BUILDING A USER BASE AROUND SCIENTIFIC PUBLICATIONS: EDITING ONLINE CONTENT AND ANNOTATING SCIENTIFIC MATERIALS" ;
<http://vivoweb.org/ontology/core#administeredBy>
<http://vivo.cornell.edu/individual/individual5548> ;
<http://vivoweb.org/ontology/core#dateTimeInterval>
<http://vivo.cornell.edu/individual/grant46750-DTI> ;
<http://vivoweb.org/ontology/core#grantAwardedBy>
<http://vivo.cornell.edu/individual/individual9254> ;
<http://vivoweb.org/ontology/core#localAwardId>
"46750" ;
<http://vivoweb.org/ontology/core#relatedRole>
<http://vivo.cornell.edu/individual/inGrant46750For2191> , <http://vivo.cornell.edu/individual/inGrant46750For8286> , <http://vivo.cornell.edu/individual/inGrant46750For8287> , <http://vivo.cornell.edu/individual/inGrant46750For5144> ;
<http://vivoweb.org/ontology/cu-vivo-osp#dateHarvested>
"2011-06-27-04:00" ;
<http://vivoweb.org/ontology/cu-vivo-osp#harvestedBy>
"OSPWH-Harvester" ;
<http://vivoweb.org/ontology/cu-vivo-osp#sponsorLevelOne>
"NSF" ;
<http://vivoweb.org/ontology/cu-vivo-osp#sponsorLevelThree>
"" ;
<http://vivoweb.org/ontology/cu-vivo-osp#sponsorLevelTwo>
"NSF EHR" .
<http://vivo.cornell.edu/individual/AI-20912635905-3>
a <http://www.w3.org/2002/07/owl#Thing> , <http://vivoweb.org/ontology/core#Relationship> , <http://vivoweb.org/ontology/core#Authorship> ;
<http://vivoweb.org/ontology/activity-insight#authorNameAsListed>
"Allen, P E" ;
<http://vivoweb.org/ontology/core#authorRank>
"3"^^<http://www.w3.org/2001/XMLSchema#int> ;
<http://vivoweb.org/ontology/core#linkedAuthor>
<http://vivo.cornell.edu/individual/individual8803> ;
<http://vivoweb.org/ontology/core#linkedInformationResource>
<http://vivo.cornell.edu/individual/AI-20912635905> .
<http://vivo.cornell.edu/individual/AI-24401569793>
a <http://purl.org/ontology/bibo/Document> , <http://vivo.library.cornell.edu/ns/0.1#PublishedThing> , <http://www.w3.org/2002/07/owl#Thing> , <http://purl.org/ontology/bibo/AcademicArticle> , <http://www.aktors.org/ontology/portal#Article-In-A-Composite-Publication> , <http://vivoweb.org/ontology/core#InformationResource> , <http://purl.org/ontology/bibo/Article> ;
<http://www.w3.org/2000/01/rdf-schema#label>
"The seasonal decline in avian clutch size: Strategy or physiological constraints? " ;
<http://purl.org/ontology/bibo/pageEnd>
"932"^^<http://www.w3.org/2001/XMLSchema#int> ;
<http://purl.org/ontology/bibo/pageStart>
"922"^^<http://www.w3.org/2001/XMLSchema#int> ;
<http://purl.org/ontology/bibo/volume>
"77" ;
<http://vivoweb.org/ontology/core#dateTimeValue>
<http://vivo.cornell.edu/individual/n3863423> ;
<http://vivoweb.org/ontology/core#hasPublicationVenue>
<http://vivo.cornell.edu/individual/AI-ICJR-0203DF692BF00000683> ;
<http://vivoweb.org/ontology/core#informationResourceInAuthorship>
<http://vivo.cornell.edu/individual/AI-24401569793-2> , <http://vivo.cornell.edu/individual/AI-24401569793-1> .
<http://vivo.cornell.edu/individual/AI-24442931201-3>
a <http://www.w3.org/2002/07/owl#Thing> , <http://vivoweb.org/ontology/core#Relationship> , <http://vivoweb.org/ontology/core#Authorship> ;
<http://vivoweb.org/ontology/activity-insight#authorNameAsListed>
"Allen, P E" ;
<http://vivoweb.org/ontology/core#authorRank>
"3"^^<http://www.w3.org/2001/XMLSchema#int> ;
<http://vivoweb.org/ontology/core#linkedAuthor>
<http://vivo.cornell.edu/individual/individual8803> ;
<http://vivoweb.org/ontology/core#linkedInformationResource>
<http://vivo.cornell.edu/individual/AI-24442931201> .
<http://vivo.cornell.edu/individual/grant62212>
a <http://www.w3.org/2002/07/owl#Thing> , <http://vivoweb.org/ontology/cu-vivo-osp#Grant> , <http://vivoweb.org/ontology/core#Agreement> , <http://vivoweb.org/ontology/core#Grant> ;
<http://www.w3.org/2000/01/rdf-schema#label>
"DIGITAL RESOURCE DISCOVERY AND DYNAMIC LEARNING COMMUNITIES FOR A CHANGING BIOLOGY" ;
<http://vivoweb.org/ontology/core#administeredBy>
<http://vivo.cornell.edu/individual/individual5548> ;
<http://vivoweb.org/ontology/core#dateTimeInterval>
<http://vivo.cornell.edu/individual/grant62212-DTI> ;
<http://vivoweb.org/ontology/core#grantAwardedBy>
<http://vivo.cornell.edu/individual/individual9254> ;
<http://vivoweb.org/ontology/core#grantSubcontractedThrough>
<http://vivo.cornell.edu/individual/OSP-0203E52003A001C384B> ;
<http://vivoweb.org/ontology/core#localAwardId>
"62212" ;
<http://vivoweb.org/ontology/core#relatedRole>
<http://vivo.cornell.edu/individual/inGrant62212For8287> ;
<http://vivoweb.org/ontology/cu-vivo-osp#dateHarvested>
"2011-06-27-04:00" ;
<http://vivoweb.org/ontology/cu-vivo-osp#harvestedBy>
"OSPWH-Harvester" ;
<http://vivoweb.org/ontology/cu-vivo-osp#sponsorLevelOne>
"ECOLOGICAL SOCIETY OF AMERICA" ;
<http://vivoweb.org/ontology/cu-vivo-osp#sponsorLevelThree>
"" ;
<http://vivoweb.org/ontology/cu-vivo-osp#sponsorLevelTwo>
"" .
<http://vivo.cornell.edu/individual/n54945>
a <http://vitro.mannlib.cornell.edu/ns/vitro/public#FileByteStream> , <http://www.w3.org/2002/07/owl#Thing> ;
<http://vitro.mannlib.cornell.edu/ns/vitro/public#directDownloadUrl>
"/file/n54945/_main_image_allen_paul_thumb.gif" .
<http://vivo.cornell.edu/individual/grant53811>
a <http://www.w3.org/2002/07/owl#Thing> , <http://vivoweb.org/ontology/cu-vivo-osp#Grant> , <http://vivoweb.org/ontology/core#Agreement> , <http://vivoweb.org/ontology/core#Grant> ;
<http://www.w3.org/2000/01/rdf-schema#label>
"THE BIODIVERSITY ANALYSIS PIPELINE" ;
<http://vivoweb.org/ontology/core#administeredBy>
<http://vivo.cornell.edu/individual/KFSID-01Y7> ;
<http://vivoweb.org/ontology/core#dateTimeInterval>
<http://vivo.cornell.edu/individual/grant53811-DTI> ;
<http://vivoweb.org/ontology/core#grantAwardedBy>
<http://vivo.cornell.edu/individual/individual9254> ;
<http://vivoweb.org/ontology/core#localAwardId>
"53811" ;
<http://vivoweb.org/ontology/core#relatedRole>
<http://vivo.cornell.edu/individual/inGrant53811For8287> , <http://vivo.cornell.edu/individual/inGrant53811For5144> , <http://vivo.cornell.edu/individual/inGrant53811For2191> ;
<http://vivoweb.org/ontology/cu-vivo-osp#dateHarvested>
"2011-06-27-04:00" ;
<http://vivoweb.org/ontology/cu-vivo-osp#harvestedBy>
"OSPWH-Harvester" ;
<http://vivoweb.org/ontology/cu-vivo-osp#sponsorLevelOne>
"NSF" ;
<http://vivoweb.org/ontology/cu-vivo-osp#sponsorLevelThree>
"" ;
<http://vivoweb.org/ontology/cu-vivo-osp#sponsorLevelTwo>
"NSF EHR" .
<http://vivo.cornell.edu/individual/inGrant46750For8287>
a <http://www.w3.org/2002/07/owl#Thing> , <http://vivoweb.org/ontology/core#InvestigatorRole> , <http://vivoweb.org/ontology/core#Role> , <http://vivoweb.org/ontology/core#CoPrincipalInvestigatorRole> , <http://vivoweb.org/ontology/core#ResearcherRole> ;
<http://vivoweb.org/ontology/core#co-PrincipalInvestigatorRoleOf>
<http://vivo.cornell.edu/individual/individual8803> ;
<http://vivoweb.org/ontology/core#roleIn>
<http://vivo.cornell.edu/individual/grant46750> ;
<http://vivoweb.org/ontology/cu-vivo-osp#dateHarvested>
"2011-06-27-04:00" ;
<http://vivoweb.org/ontology/cu-vivo-osp#harvestedBy>
"OSPWH-Harvester" .
<http://vivo.cornell.edu/individual/AI-20912846849>
a <http://purl.org/ontology/bibo/Document> , <http://vivo.library.cornell.edu/ns/0.1#PublishedThing> , <http://purl.org/ontology/bibo/AcademicArticle> , <http://www.w3.org/2002/07/owl#Thing> , <http://www.aktors.org/ontology/portal#Article-In-A-Composite-Publication> , <http://vivoweb.org/ontology/core#InformationResource> , <http://purl.org/ontology/bibo/Article> ;
<http://www.w3.org/2000/01/rdf-schema#label>
"Breeding dispersal and philopatry in the tree swallow" ;
<http://purl.org/ontology/bibo/pageEnd>
"776"^^<http://www.w3.org/2001/XMLSchema#int> ;
<http://purl.org/ontology/bibo/pageStart>
"768"^^<http://www.w3.org/2001/XMLSchema#int> ;
<http://purl.org/ontology/bibo/volume>
"106" ;
<http://vivoweb.org/ontology/core#dateTimeValue>
<http://vivo.cornell.edu/individual/n3525546> ;
<http://vivoweb.org/ontology/core#hasPublicationVenue>
<http://vivo.cornell.edu/individual/AI-ICJR-0203DF692BF00000589> ;
<http://vivoweb.org/ontology/core#informationResourceInAuthorship>
<http://vivo.cornell.edu/individual/AI-20912846849-3> , <http://vivo.cornell.edu/individual/AI-20912846849-8> , <http://vivo.cornell.edu/individual/AI-20912846849-2> , <http://vivo.cornell.edu/individual/AI-20912846849-1> , <http://vivo.cornell.edu/individual/AI-20912846849-5> , <http://vivo.cornell.edu/individual/AI-20912846849-4> , <http://vivo.cornell.edu/individual/AI-20912846849-6> , <http://vivo.cornell.edu/individual/AI-20912846849-9> , <http://vivo.cornell.edu/individual/AI-20912846849-7> .
<http://vivo.cornell.edu/individual/AI-20912846849-3>
a <http://www.w3.org/2002/07/owl#Thing> , <http://vivoweb.org/ontology/core#Relationship> , <http://vivoweb.org/ontology/core#Authorship> ;
<http://vivoweb.org/ontology/activity-insight#authorNameAsListed>
"Allen, P E" ;
<http://vivoweb.org/ontology/core#authorRank>
"3"^^<http://www.w3.org/2001/XMLSchema#int> ;
<http://vivoweb.org/ontology/core#linkedAuthor>
<http://vivo.cornell.edu/individual/individual8803> ;
<http://vivoweb.org/ontology/core#linkedInformationResource>
<http://vivo.cornell.edu/individual/AI-20912846849> .
<http://vivo.cornell.edu/individual/AI-24401616897>
a <http://purl.org/ontology/bibo/Document> , <http://vivo.library.cornell.edu/ns/0.1#PublishedThing> , <http://purl.org/ontology/bibo/AcademicArticle> , <http://www.w3.org/2002/07/owl#Thing> , <http://www.aktors.org/ontology/portal#Article-In-A-Composite-Publication> , <http://vivoweb.org/ontology/core#InformationResource> , <http://purl.org/ontology/bibo/Article> ;
<http://www.w3.org/2000/01/rdf-schema#label>
"Effects of handicapping on female condition and reproduction in Tree Swallows (Tachycineta bicolor)" ;
<http://purl.org/ontology/bibo/pageEnd>
"747"^^<http://www.w3.org/2001/XMLSchema#int> ;
<http://purl.org/ontology/bibo/pageStart>
"737"^^<http://www.w3.org/2001/XMLSchema#int> ;
<http://purl.org/ontology/bibo/volume>
"112" ;
<http://vivoweb.org/ontology/core#dateTimeValue>
<http://vivo.cornell.edu/individual/n2277781> ;
<http://vivoweb.org/ontology/core#hasPublicationVenue>
<http://vivo.cornell.edu/individual/AI-ICJR-0203DF692BF000016CB> ;
<http://vivoweb.org/ontology/core#informationResourceInAuthorship>
<http://vivo.cornell.edu/individual/AI-24401616897-2> , <http://vivo.cornell.edu/individual/AI-24401616897-1> .
<http://vivo.cornell.edu/individual/individual8803-position1>
a <http://www.w3.org/2002/07/owl#Thing> , <http://vivoweb.org/ontology/core#DependentResource> , <http://vivoweb.org/ontology/core#Position> , <http://vivoweb.org/ontology/core#NonAcademicPosition> ;
<http://www.w3.org/2000/01/rdf-schema#label>
"Info Tech Area Manager II" ;
<http://vivoweb.org/ontology/core#hrJobTitle>
"Info Tech Area Mgr II" ;
<http://vivoweb.org/ontology/core#positionForPerson>
<http://vivo.cornell.edu/individual/individual8803> ;
<http://vivoweb.org/ontology/core#positionInOrganization>
<http://vivo.cornell.edu/individual/individual5548> .
<http://vivo.cornell.edu/individual/grant56145>
a <http://vivoweb.org/ontology/cu-vivo-osp#Contract> , <http://www.w3.org/2002/07/owl#Thing> , <http://vivoweb.org/ontology/core#Agreement> , <http://vivoweb.org/ontology/core#Contract> ;
<http://www.w3.org/2000/01/rdf-schema#label>
"INTEROP: CREATION OF A VIRTUAL DATA CENTER FOR THE BIODIVERSITY, ECOLOGICAL AND ENVIRONMENTAL SCIENCES" ;
<http://vivoweb.org/ontology/core#administeredBy>
<http://vivo.cornell.edu/individual/individual5548> ;
<http://vivoweb.org/ontology/core#dateTimeInterval>
<http://vivo.cornell.edu/individual/grant56145-DTI> ;
<http://vivoweb.org/ontology/core#grantAwardedBy>
<http://vivo.cornell.edu/individual/OSP-0203E52003A001BD106> ;
<http://vivoweb.org/ontology/core#grantSubcontractedThrough>
<http://vivo.cornell.edu/individual/individual7066> ;
<http://vivoweb.org/ontology/core#localAwardId>
"56145" ;
<http://vivoweb.org/ontology/core#relatedRole>
<http://vivo.cornell.edu/individual/inGrant56145For5144> , <http://vivo.cornell.edu/individual/inGrant56145For8287> ;
<http://vivoweb.org/ontology/cu-vivo-osp#dateHarvested>
"2011-06-27-04:00" ;
<http://vivoweb.org/ontology/cu-vivo-osp#harvestedBy>
"OSPWH-Harvester" ;
<http://vivoweb.org/ontology/cu-vivo-osp#sponsorLevelOne>
"U OF NEW MEXICO" ;
<http://vivoweb.org/ontology/cu-vivo-osp#sponsorLevelThree>
"" ;
<http://vivoweb.org/ontology/cu-vivo-osp#sponsorLevelTwo>
"" .
<http://vivo.cornell.edu/individual/individual8803>
a <http://vivo.library.cornell.edu/ns/0.1#CornellEmployee> , <http://xmlns.com/foaf/0.1/Person> , <http://vivo.cornell.edu/ns/mannadditions/0.1#CornellNonAcademicStaff> , <http://www.w3.org/2002/07/owl#Thing> , <http://xmlns.com/foaf/0.1/Agent> , <http://vivo.library.cornell.edu/ns/0.1#CornellAffiliatedPerson> , <http://vivoweb.org/ontology/core#NonAcademic> ;
<http://www.w3.org/2000/01/rdf-schema#label>
"Allen, Paul Edward" ;
<http://vitro.mannlib.cornell.edu/ns/vitro/public#mainImage>
<http://vivo.cornell.edu/individual/n3809> ;
<http://vivoweb.org/ontology/core#authorInAuthorship>
<http://vivo.cornell.edu/individual/AI-24401569793-2> , <http://vivo.cornell.edu/individual/AI-20912846849-3> , <http://vivo.cornell.edu/individual/AI-20912635905-3> , <http://vivo.cornell.edu/individual/AI-24442931201-3> , <http://vivo.cornell.edu/individual/AI-24401616897-2> ;
<http://vivoweb.org/ontology/core#hasCo-PrincipalInvestigatorRole>
<http://vivo.cornell.edu/individual/inGrant53811For8287> , <http://vivo.cornell.edu/individual/inGrant46750For8287> ;
<http://vivoweb.org/ontology/core#hasPrincipalInvestigatorRole>
<http://vivo.cornell.edu/individual/inGrant56145For8287> , <http://vivo.cornell.edu/individual/inGrant62212For8287> ;
<http://vivoweb.org/ontology/core#overview>
"""<p>Paul's background in computer science and ecology (M.S. Computer Science, Carnegie Mellon U., 1991; M.S. Organismal Biology and Ecology, U. Montana, 1998) serve him well as software architect and head of software development for the Cornell Lab of Ornithology (CLO) Information Technologies (IT) department. Since joining the CLO staff in 1997 and the IT department in 1999, Paul has focused on building software systems to collect bird monitoring information from citizen scientists. Most recently Paul has helped bring the \"Birds of North America\" into the digital age and will be building a new framework to create communities focused on scientific references such as the \"Birds of North America.\"</p>
<p>While work on birds has taken Paul from Panama and the Bahamas to Alaska, the most important thing to him is using his skills for conservation.</p>"""^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://vivoweb.org/ontology/core#personInPosition>
<http://vivo.cornell.edu/individual/individual8803-position1> ;
<http://vivoweb.org/ontology/cu-vivo-osp#invId>
"8287" .
<http://vivo.cornell.edu/individual/inGrant53811For8287>
a <http://www.w3.org/2002/07/owl#Thing> , <http://vivoweb.org/ontology/core#InvestigatorRole> , <http://vivoweb.org/ontology/core#Role> , <http://vivoweb.org/ontology/core#CoPrincipalInvestigatorRole> , <http://vivoweb.org/ontology/core#ResearcherRole> ;
<http://vivoweb.org/ontology/core#co-PrincipalInvestigatorRoleOf>
<http://vivo.cornell.edu/individual/individual8803> ;
<http://vivoweb.org/ontology/core#roleIn>
<http://vivo.cornell.edu/individual/grant53811> ;
<http://vivoweb.org/ontology/cu-vivo-osp#dateHarvested>
"2011-06-27-04:00" ;
<http://vivoweb.org/ontology/cu-vivo-osp#harvestedBy>
"OSPWH-Harvester" .
<http://vivo.cornell.edu/individual/AI-24401616897-2>
a <http://www.w3.org/2002/07/owl#Thing> , <http://vivoweb.org/ontology/core#Relationship> , <http://vivoweb.org/ontology/core#Authorship> ;
<http://vivoweb.org/ontology/activity-insight#authorNameAsListed>
"Allen, P E" ;
<http://vivoweb.org/ontology/core#authorRank>
"2"^^<http://www.w3.org/2001/XMLSchema#int> ;
<http://vivoweb.org/ontology/core#linkedAuthor>
<http://vivo.cornell.edu/individual/individual8803> ;
<http://vivoweb.org/ontology/core#linkedInformationResource>
<http://vivo.cornell.edu/individual/AI-24401616897> .
<http://vivo.cornell.edu/individual/n3809>
a <http://vitro.mannlib.cornell.edu/ns/vitro/public#File> , <http://www.w3.org/2002/07/owl#Thing> ;
<http://vitro.mannlib.cornell.edu/ns/vitro/public#downloadLocation>
<http://vivo.cornell.edu/individual/n54945> ;
<http://vitro.mannlib.cornell.edu/ns/vitro/public#filename>
"_main_image_allen_paul_thumb.gif"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://vitro.mannlib.cornell.edu/ns/vitro/public#mimeType>
"image/gif"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://vitro.mannlib.cornell.edu/ns/vitro/public#thumbnailImage>
<http://vivo.cornell.edu/individual/n17632> .
<http://vivo.cornell.edu/individual/AI-20912635905>
a <http://purl.org/ontology/bibo/Document> , <http://vivo.library.cornell.edu/ns/0.1#PublishedThing> , <http://purl.org/ontology/bibo/AcademicArticle> , <http://www.w3.org/2002/07/owl#Thing> , <http://www.aktors.org/ontology/portal#Article-In-A-Composite-Publication> , <http://vivoweb.org/ontology/core#InformationResource> , <http://purl.org/ontology/bibo/Article> ;
<http://www.w3.org/2000/01/rdf-schema#label>
"The natal dispersal of tree swallows in a continuous mainland environment" ;
<http://purl.org/ontology/bibo/pageEnd>
"1090"^^<http://www.w3.org/2001/XMLSchema#int> ;
<http://purl.org/ontology/bibo/pageStart>
"1080"^^<http://www.w3.org/2001/XMLSchema#int> ;
<http://purl.org/ontology/bibo/volume>
"74" ;
<http://vivoweb.org/ontology/core#dateTimeValue>
<http://vivo.cornell.edu/individual/n6320125> ;
<http://vivoweb.org/ontology/core#hasPublicationVenue>
<http://vivo.cornell.edu/individual/AI-ICJR-0203DF692BF00000CDF> ;
<http://vivoweb.org/ontology/core#informationResourceInAuthorship>
<http://vivo.cornell.edu/individual/AI-20912635905-2> , <http://vivo.cornell.edu/individual/AI-20912635905-3> , <http://vivo.cornell.edu/individual/AI-20912635905-4> , <http://vivo.cornell.edu/individual/AI-20912635905-1> , <http://vivo.cornell.edu/individual/AI-20912635905-7> , <http://vivo.cornell.edu/individual/AI-20912635905-6> , <http://vivo.cornell.edu/individual/AI-20912635905-5> .
<http://vivo.cornell.edu/individual/n17632>
a <http://vitro.mannlib.cornell.edu/ns/vitro/public#File> , <http://www.w3.org/2002/07/owl#Thing> ;
<http://vitro.mannlib.cornell.edu/ns/vitro/public#downloadLocation>
<http://vivo.cornell.edu/individual/n13658> ;
<http://vitro.mannlib.cornell.edu/ns/vitro/public#filename>
"allen_paul_thumb.gif"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://vitro.mannlib.cornell.edu/ns/vitro/public#mimeType>
"image/gif"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://vivo.cornell.edu/individual/inGrant56145For8287>
a <http://www.w3.org/2002/07/owl#Thing> , <http://vivoweb.org/ontology/core#InvestigatorRole> , <http://vivoweb.org/ontology/core#Role> , <http://vivoweb.org/ontology/core#PrincipalInvestigatorRole> , <http://vivoweb.org/ontology/core#ResearcherRole> ;
<http://vivoweb.org/ontology/core#principalInvestigatorRoleOf>
<http://vivo.cornell.edu/individual/individual8803> ;
<http://vivoweb.org/ontology/core#roleIn>
<http://vivo.cornell.edu/individual/grant56145> ;
<http://vivoweb.org/ontology/cu-vivo-osp#dateHarvested>
"2011-06-27-04:00" ;
<http://vivoweb.org/ontology/cu-vivo-osp#harvestedBy>
"OSPWH-Harvester" .
<http://vivo.cornell.edu/individual/inGrant62212For8287>
a <http://www.w3.org/2002/07/owl#Thing> , <http://vivoweb.org/ontology/core#InvestigatorRole> , <http://vivoweb.org/ontology/core#Role> , <http://vivoweb.org/ontology/core#PrincipalInvestigatorRole> , <http://vivoweb.org/ontology/core#ResearcherRole> ;
<http://vivoweb.org/ontology/core#principalInvestigatorRoleOf>
<http://vivo.cornell.edu/individual/individual8803> ;
<http://vivoweb.org/ontology/core#roleIn>
<http://vivo.cornell.edu/individual/grant62212> ;
<http://vivoweb.org/ontology/cu-vivo-osp#dateHarvested>
"2011-06-27-04:00" ;
<http://vivoweb.org/ontology/cu-vivo-osp#harvestedBy>
"OSPWH-Harvester" .
<http://vivo.cornell.edu/individual/AI-24442931201>
a <http://purl.org/ontology/bibo/Document> , <http://vivo.library.cornell.edu/ns/0.1#PublishedThing> , <http://purl.org/ontology/bibo/AcademicArticle> , <http://www.w3.org/2002/07/owl#Thing> , <http://www.aktors.org/ontology/portal#Article-In-A-Composite-Publication> , <http://vivoweb.org/ontology/core#InformationResource> , <http://purl.org/ontology/bibo/Article> ;
<http://www.w3.org/2000/01/rdf-schema#label>
"Geographic differences in seasonal clutch size variation in multi-brooded bird species" ;
<http://purl.org/ontology/bibo/pageEnd>
"651"^^<http://www.w3.org/2001/XMLSchema#int> ;
<http://purl.org/ontology/bibo/pageStart>
"646"^^<http://www.w3.org/2001/XMLSchema#int> ;
<http://purl.org/ontology/bibo/volume>
"144" ;
<http://vivoweb.org/ontology/core#dateTimeValue>
<http://vivo.cornell.edu/individual/n4290936> ;
<http://vivoweb.org/ontology/core#hasPublicationVenue>
<http://vivo.cornell.edu/individual/AI-ICJR-0203DF692BF0000094B> ;
<http://vivoweb.org/ontology/core#informationResourceInAuthorship>
<http://vivo.cornell.edu/individual/AI-24442931201-3> , <http://vivo.cornell.edu/individual/AI-24442931201-2> , <http://vivo.cornell.edu/individual/AI-24442931201-1> .

View file

@ -0,0 +1,4 @@
#
# This is a data file for ConfigurationPropertiesTest.
#
whichfile = test_config

View file

@ -0,0 +1,7 @@
#
# This is a data file for ConfigurationPropertiesTest.
#
whichfile = test_config_default
# This ends with a blank, in order to test the removal of whitespace
trimmed = whitespace_test\u0020

View file

@ -0,0 +1,5 @@
#
# This is a data file for ConfigurationPropertiesTest.
#
whichfile = test_config_invalid
source = bad Unicode constant \uu1045

View file

@ -0,0 +1,24 @@
# $This file is distributed under the terms of the license in /doc/license.txt$
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix core: <http://vivoweb.org/ontology/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
### This file is for the test DataGetterUtilsTest.java
display:SPARQLPage
a display:Page ;
display:title "TestQuery" ;
display:urlMapping "/query1" ;
display:hasDataGetter display:query1data .
display:query1data
a <java:edu.cornell.mannlib.vitro.webapp.utils.dataGetter.SparqlQueryDataGetter>;
display:query "SELECT * WHERE { ?uri a <http://xmlns.com/foaf/0.1/Person> } " ;
display:saveToVar "people" .

View file

@ -0,0 +1,12 @@
@prefix ns: <http://example.com/ns/> .
ns:n1 a ns:Duck .
ns:n1 ns:duckCode "1" .
ns:n1 ns:d "cheese"@en-US .
ns:n1 ns:o ns:f .
ns:n2 a ns:Duck .
ns:n2 ns:upcCode "2" .
ns:n2 ns:p ns:q .
ns:n3 a ns:Duck .
ns:n3 ns:productCode "3"^^<http://example.org/datatype> .
ns:n3 ns:q ns:z .

View file

@ -0,0 +1,17 @@
@prefix ns: <http://example.com/ns/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
ns:n1 a ns:Duck .
ns:n1 ns:duckCode "1" .
ns:n1 rdfs:label "duck" .
ns:n1 rdfs:label "duck"@en-US .
ns:n1 ns:d "cheese"@en-US .
ns:n1 ns:o ns:f .
ns:n2 a ns:Duck .
ns:n2 rdfs:label "goose" .
ns:n2 ns:upcCode "2" .
ns:n2 ns:p ns:q .
ns:n3 a ns:Duck .
ns:n3 ns:productCode "3"^^<http://example.org/datatype> .
ns:n3 ns:q ns:z .
ns:n4 ns:q ns:n2 .

View file

@ -0,0 +1,16 @@
@prefix ns: <http://example.com/ns/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
ns:n1 a ns:Duck .
ns:n1 ns:duckCode "1" .
ns:n1 rdfs:label "duck" .
ns:n1 rdfs:label "duck"@en-US .
ns:n1 ns:d "cheese"@en-US .
ns:n1 ns:o ns:f .
ns:n1 rdfs:label "goose" .
ns:n1 ns:upcCode "2" .
ns:n1 ns:p ns:q .
ns:n3 a ns:Duck .
ns:n3 ns:productCode "3"^^<http://example.org/datatype> .
ns:n3 ns:q ns:z .
ns:n4 ns:q ns:n1 .

View file

@ -0,0 +1,15 @@
@prefix ns: <http://example.com/ns/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
ns:n1 a ns:Duck .
ns:n1 ns:duckCode "1" .
ns:n1 rdfs:label "duck" .
ns:n1 rdfs:label "duck"@en-US .
ns:n1 ns:d "cheese"@en-US .
ns:n1 ns:o ns:f .
ns:n1 ns:upcCode "2" .
ns:n1 ns:p ns:q .
ns:n3 a ns:Duck .
ns:n3 ns:productCode "3"^^<http://example.org/datatype> .
ns:n3 ns:q ns:z .
ns:n4 ns:q ns:n1 .

View file

@ -0,0 +1,13 @@
@prefix ns: <http://example.com/ns/> .
[] a ns:Duck ;
ns:duckCode "1" ;
ns:d [
a ns:Duck ;
ns:duckCode "2" ;
ns:d [
a ns:Duck ;
ns:duckCode "3" ;
ns:d "cake" ;
] ;
] .

View file

@ -0,0 +1,14 @@
@prefix ns: <http://example.com/ns/> .
ns:n1 a ns:Duck .
ns:n1 ns:duckCode "1" .
ns:n1 ns:d "cheese" .
ns:n2 a ns:Duck .
ns:n2 ns:duckCode "2" .
ns:n2 ns:d "strudel" .
ns:n2 ns:d "pancake" .
ns:n3 a ns:Duck .
ns:n3 ns:duckCode "3" .
ns:n3 ns:d "cake" .
ns:n3 ns:d "bacon" .
ns:n3 ns:d "corn" .

View file

@ -0,0 +1,14 @@
@prefix ns: <http://example.com/ns/> .
ns:n1 a ns:Duck .
ns:n1 ns:duckCode "1" .
ns:n1 ns:d "cheese" .
ns:n2 a ns:Duck .
ns:n2 ns:duckCode "2" .
ns:n2 ns:d "strudel" .
ns:n2 ns:d "pancake" .
ns:n6 a ns:Duck .
ns:n6 ns:duckCode "3" .
ns:n6 ns:d "cake" .
ns:n6 ns:d "bacon" .
ns:n6 ns:d "corn" .

View file

@ -0,0 +1,14 @@
@prefix ns: <http://example.com/ns/> .
ns:n1 a ns:Duck .
ns:n1 ns:duckCode "1" .
ns:n1 ns:d "cheese" .
ns:n2 a ns:Duck .
ns:n2 ns:duckCode "2" .
ns:n2 ns:d "strudel" .
ns:n2 ns:d "pancake" .
ns:n8 a ns:Duck .
ns:n8 ns:duckCode "3" .
ns:n8 ns:d "cake" .
ns:n8 ns:d "bacon" .
ns:n8 ns:d "corn" .

View file

@ -0,0 +1,14 @@
@prefix ns: <http://example.com/ns/> .
ns:n1 a ns:Duck .
ns:n1 ns:duckCode "1" .
ns:n1 ns:d "cheese" .
ns:n5 a ns:Duck .
ns:n5 ns:duckCode "2" .
ns:n5 ns:d "strudel" .
ns:n5 ns:d "pancake" .
ns:n3 a ns:Duck .
ns:n3 ns:duckCode "3" .
ns:n3 ns:d "cake" .
ns:n3 ns:d "bacon" .
ns:n3 ns:d "corn" .

View file

@ -0,0 +1,14 @@
@prefix ns: <http://example.com/ns/> .
ns:n1 a ns:Duck .
ns:n1 ns:duckCode "1" .
ns:n1 ns:d "cheese" .
ns:n5 a ns:Duck .
ns:n5 ns:duckCode "2" .
ns:n5 ns:d "strudel" .
ns:n5 ns:d "pancake" .
ns:n6 a ns:Duck .
ns:n6 ns:duckCode "3" .
ns:n6 ns:d "cake" .
ns:n6 ns:d "bacon" .
ns:n6 ns:d "corn" .

View file

@ -0,0 +1,14 @@
@prefix ns: <http://example.com/ns/> .
ns:n1 a ns:Duck .
ns:n1 ns:duckCode "1" .
ns:n1 ns:d "cheese" .
ns:n5 a ns:Duck .
ns:n5 ns:duckCode "2" .
ns:n5 ns:d "strudel" .
ns:n5 ns:d "pancake" .
ns:n8 a ns:Duck .
ns:n8 ns:duckCode "3" .
ns:n8 ns:d "cake" .
ns:n8 ns:d "bacon" .
ns:n8 ns:d "corn" .

View file

@ -0,0 +1,20 @@
@prefix ns: <http://example.com/ns/> .
ns:n1 a ns:Duck .
ns:n1 ns:duckCode "1" .
ns:n1 ns:d "cheese" .
ns:n2 a ns:Duck .
ns:n2 ns:duckCode "2" .
ns:n2 ns:d "strudel" .
ns:n3 a ns:Duck .
ns:n3 ns:duckCode "3" .
ns:n3 ns:d "cake" .
ns:n5 a ns:Duck .
ns:n5 ns:duckCode "2" .
ns:n5 ns:d "pancake" .
ns:n6 a ns:Duck .
ns:n6 ns:duckCode "3" .
ns:n6 ns:d "bacon" .
ns:n8 a ns:Duck .
ns:n8 ns:duckCode "3" .
ns:n8 ns:d "corn" .

View file

@ -0,0 +1,11 @@
@prefix ns: <http://example.com/ns/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
ns:Duck a owl:Class .
ns:duckCode a owl:DatatypeProperty .
ns:d a owl:DatatypeProperty .
ns:o a owl:ObjectProperty .
ns:upcCode a owl:DatatypeProperty .
ns:p a owl:ObjectProperty .
ns:productCode a owl:DatatypeProperty .
ns:q a owl:ObjectProperty .

View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<!--
No construct query. Should throw an error.
-->
<list-view-config>
<query-select>
SELECT <collated> ?subclass </collated>
?object
WHERE {
?subject ?property ?object
<collated>
?object a ?subclass.
</collated>
}
</query-select>
<template>propStatement-default.ftl</template>
</list-view-config>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<!--
More than one construct query.
-->
<list-view-config>
<query-select>
SELECT <collated> ?subclass </collated>
?object
WHERE {
?subject ?property ?object
<collated>
?object a ?subclass.
</collated>
}
</query-select>
<query-construct>ONE</query-construct>
<query-construct>TWO</query-construct>
<query-construct>THREE</query-construct>
<template>propStatement-default.ftl</template>
</list-view-config>

View file

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<!--
Default list view configuration for unit tests in this directory.
-->
<list-view-config>
<query-select>
SELECT <collated> ?subclass </collated>
?object
WHERE {
?subject ?property ?object
<collated>
?object a ?subclass.
</collated>
}
</query-select>
<query-construct>
CONSTRUCT {
?subject ?property ?object .
} WHERE {
?subject ?property ?object
}
</query-construct>
<template>propStatement-default.ftl</template>
</list-view-config>

View file

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<!--
postprocessor tag refers to a non-existent class.
-->
<list-view-config>
<query-select>
SELECT <collated> ?subclass </collated>
?object
WHERE {
?subject ?property ?object
<collated>
?object a ?subclass.
</collated>
}
</query-select>
<query-construct>
CONSTRUCT {
?subject ?property ?object .
} WHERE {
?subject ?property ?object
}
</query-construct>
<template>propStatement-default.ftl</template>
<postprocessor>edu.cornell.mannlib.vitro.webapp.web.templatemodels.individual.ObjectPropertyTemplateModel_PropertyListConfigTest$NoSuchClass</postprocessor>
</list-view-config>

View file

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<!--
postprocessor tag refers to a class that does not implement the required interface.
-->
<list-view-config>
<query-select>
SELECT <collated> ?subclass </collated>
?object
WHERE {
?subject ?property ?object
<collated>
?object a ?subclass.
</collated>
}
</query-select>
<query-construct>
CONSTRUCT {
?subject ?property ?object .
} WHERE {
?subject ?property ?object
}
</query-construct>
<template>propStatement-default.ftl</template>
<postprocessor>edu.cornell.mannlib.vitro.webapp.web.templatemodels.individual.ObjectPropertyTemplateModel_PropertyListConfigTest$ClassNotSuitable</postprocessor>
</list-view-config>

View file

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<!--
postprocessor tag refers to a class that does not implement the required interface.
-->
<list-view-config>
<query-select>
SELECT <collated> ?subclass </collated>
?object
WHERE {
?subject ?property ?object
<collated>
?object a ?subclass.
</collated>
}
</query-select>
<query-construct>
CONSTRUCT {
?subject ?property ?object .
} WHERE {
?subject ?property ?object
}
</query-construct>
<template>propStatement-default.ftl</template>
<postprocessor>edu.cornell.mannlib.vitro.webapp.web.templatemodels.individual.ObjectPropertyTemplateModel_PropertyListConfigTest$PostProcessorThrowsException</postprocessor>
</list-view-config>

View file

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<!--
Has a postprocessor tag with no contents. Should use the default.
-->
<list-view-config>
<query-select>
SELECT <collated> ?subclass </collated>
?object
WHERE {
?subject ?property ?object
<collated>
?object a ?subclass.
</collated>
}
</query-select>
<query-construct>
CONSTRUCT {
?subject ?property ?object .
} WHERE {
?subject ?property ?object
}
</query-construct>
<template>propStatement-default.ftl</template>
<postprocessor></postprocessor>
</list-view-config>

View file

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<!--
postprocessor tag references an acceptable class.
-->
<list-view-config>
<query-select>
SELECT <collated> ?subclass </collated>
?object
WHERE {
?subject ?property ?object
<collated>
?object a ?subclass.
</collated>
}
</query-select>
<query-construct>
CONSTRUCT {
?subject ?property ?object .
} WHERE {
?subject ?property ?object
}
</query-construct>
<template>propStatement-default.ftl</template>
<postprocessor>edu.cornell.mannlib.vitro.webapp.web.templatemodels.individual.ObjectPropertyTemplateModel_PropertyListConfigTest$PostProcessorOK</postprocessor>
</list-view-config>

View file

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<!--
This postprocessor is unacceptable because it doesn't have the required constructor.
-->
<list-view-config>
<query-select>
SELECT <collated> ?subclass </collated>
?object
WHERE {
?subject ?property ?object
<collated>
?object a ?subclass.
</collated>
}
</query-select>
<query-construct>
CONSTRUCT {
?subject ?property ?object .
} WHERE {
?subject ?property ?object
}
</query-construct>
<template>propStatement-default.ftl</template>
<postprocessor>edu.cornell.mannlib.vitro.webapp.web.templatemodels.individual.ObjectPropertyTemplateModel_PropertyListConfigTest$PostProcessorWrongConstructor</postprocessor>
</list-view-config>

View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<!--
Config file with no subclass ordering. Should throw an error on a collated property
-->
<list-view-config>
<query-select>SELECT ?subclass O_R_D_E_R BY ?subclass</query-select>
<query-construct> Construct </query-construct>
<template>propStatement-default.ftl</template>
</list-view-config>

View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<!--
Config file with no subclass selector. Should throw an error on a collated property
-->
<list-view-config>
<query-select>S_E_L_E_C_T ?subclass ORDER BY ?subclass</query-select>
<query-construct> Construct </query-construct>
<template>propStatement-default.ftl</template>
</list-view-config>

View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<!--
Config file with subclass selector and subclass ordering. Should not throw an error on a collated property
-->
<list-view-config>
<query-select>SELECT ?subclass ORDER BY ?subclass</query-select>
<query-construct> Construct </query-construct>
<template>propStatement-default.ftl</template>
</list-view-config>

View file

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<!--
Template file does not exist. Should throw an exception.
-->
<list-view-config>
<query-select>
SELECT <collated> ?subclass </collated>
?object
WHERE {
?subject ?property ?object
<collated>
?object a ?subclass.
</collated>
}
</query-select>
<query-construct>
CONSTRUCT {
?subject ?property ?object .
} WHERE {
?subject ?property ?object
}
</query-construct>
<template>propStatement-doesNotExist.ftl</template>
</list-view-config>

View file

@ -0,0 +1,10 @@
#
# A simple Log4J configuration for unit tests.
#
# It's not very important, because the tests themselves will override this
# configuration in AbstractTestClass.initializeLogging().
#
log4j.rootLogger=WARN, AllAppender
log4j.appender.AllAppender=org.apache.log4j.ConsoleAppender
log4j.appender.AllAppender.layout=org.apache.log4j.PatternLayout
log4j.appender.AllAppender.layout.ConversionPattern=%p %t %c - %m%n

View file

@ -0,0 +1,504 @@
<rdfsyn:RDF
xmlns:hr="http://vivo.cornell.edu/ns/hr/0.9/hr.owl#"
xmlns:c4o="http://purl.org/spar/c4o/"
xmlns:vitro-public="http://vitro.mannlib.cornell.edu/ns/vitro/public#"
xmlns:ero="http://purl.obolibrary.org/obo/"
xmlns:pvs="http://vivoweb.org/ontology/provenance-support#"
xmlns:vivo="http://vivoweb.org/ontology/core#"
xmlns:j.0="http://vivoweb.org/ontology/newhr#"
xmlns:stars="http://vitro.mannlib.cornell.edu/ns/cornell/stars/classes#"
xmlns:aka="http://vivoweb.org/ontology/aka#"
xmlns:far="http://vitro.mannlib.cornell.edu/ns/reporting#"
xmlns:rdfsyn="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:bibo="http://purl.org/ontology/bibo/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:local="http://vivo.cornell.edu/ontology/local#"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:scires="http://vivoweb.org/ontology/scientific-research#"
xmlns:acti="http://vivoweb.org/ontology/activity-insight#"
xmlns:aktp="http://www.aktors.org/ontology/portal#"
xmlns:geo="http://aims.fao.org/aos/geopolitical.owl#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:event="http://purl.org/NET/c4dm/event.owl#"
xmlns:socsci="http://vivo.library.cornell.edu/ns/vivo/socsci/0.1#"
xmlns:dcelem="http://purl.org/dc/elements/1.1/"
xmlns:ospcu="http://vivoweb.org/ontology/cu-vivo-osp#"
xmlns:sce="http://vivoweb.org/ontology/SchoolOfContinuingEducation#"
xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
xmlns:vivoc="http://vivo.library.cornell.edu/ns/0.1#"
xmlns:pubmed="http://vitro.mannlib.cornell.edu/ns/pubmed#"
xmlns:cce="http://vivoweb.org/ontology/cornell-cooperative-extension#"
xmlns:mann="http://vivo.cornell.edu/ns/mannadditions/0.1#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:fabio="http://purl.org/spar/fabio/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" >
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n56282">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">AgriVIVO: an Ontology-based Store of URIs and Relations between Entities in Agricultural Research</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n122000">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Relationship"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Authorship"/>
<vivo:linkedAuthor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:linkedInformationResource rdfsyn:resource="http://vivo.cornell.edu/individual/n60089"/>
<vivo:authorRank rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#int">7</vivo:authorRank>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://link.informatics.stonybrook.edu/umls/CUI/C1518584">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">ontology</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/CornellsVIVOconceptwillexpandtoconnectresearchersnationwide">
<rdfs:label xml:lang="en-US">Cornell's VIVO concept will expand to connect researchers nationwide</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n36325">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#DateTimeValue"/>
<vivo:dateTimePrecision rdfsyn:resource="http://vivoweb.org/ontology/core#yearPrecision"/>
<vivo:dateTime rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2011-01-01T05:00:00Z</vivo:dateTime>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n25439">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Relationship"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Authorship"/>
<vivo:linkedAuthor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:linkedInformationResource rdfsyn:resource="http://vivo.cornell.edu/individual/n15280"/>
<vivo:authorRank rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#int">4</vivo:authorRank>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n59276">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">The Future of VIVO: Growing the Community</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n52538">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#DateTimeValue"/>
<vivo:dateTimePrecision rdfsyn:resource="http://vivoweb.org/ontology/core#yearPrecision"/>
<vivo:dateTime rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2011-01-01T00:00:00</vivo:dateTime>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n154727">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">Polygon Overlay to Support Point Sample Mapping: the National Resources Inventory</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n237958">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">DataStaR: Using the Semantic Web Approach for Data Curation</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivoweb.org/ontology/core#yearMonthDayPrecision">
<rdfs:label xml:lang="en-US">yearMonthDayPrecision</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n4805850">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#DateTimeValue"/>
<vivo:dateTimePrecision rdfsyn:resource="http://vivoweb.org/ontology/core#yearPrecision"/>
<vivo:dateTime rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2011-01-01T00:00:00</vivo:dateTime>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/individual1">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">Albert R. Mann Library</rdfs:label>
<rdfs:label>Albert R. Mann Library</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n24980">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">Digital Research Data Curation: Overview of Issues, Current Activities, and Opportunities for the Cornell University Library</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n518934">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">Report of the Workshop on Rendering, Perception, and Measurement</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n51088">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Relationship"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Authorship"/>
<vivo:linkedAuthor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:linkedInformationResource rdfsyn:resource="http://vivo.cornell.edu/individual/n59526"/>
<vivo:authorRank rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#int">3</vivo:authorRank>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n39639">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">Searching Interoperability Between Linguistic Coding and Ontologies for Language Description</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n60828">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Relationship"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Authorship"/>
<vivo:linkedAuthor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:linkedInformationResource rdfsyn:resource="http://vivo.cornell.edu/individual/n24126"/>
<vivo:authorRank rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#int">1</vivo:authorRank>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n59311">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Role"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#PresenterRole"/>
<vivo:roleRealizedIn rdfsyn:resource="http://vivo.cornell.edu/individual/n32881"/>
<vivo:dateTimeInterval rdfsyn:resource="http://vivo.cornell.edu/individual/n7857854"/>
<vivo:presenterRoleOf rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">co-Presenter</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n117568">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Relationship"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Authorship"/>
<vivo:linkedAuthor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:linkedInformationResource rdfsyn:resource="http://vivo.cornell.edu/individual/n39639"/>
<vivo:authorRank rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#int">4</vivo:authorRank>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n264175">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#DateTimeValue"/>
<vivo:dateTimePrecision rdfsyn:resource="http://vivoweb.org/ontology/core#yearPrecision"/>
<vivo:dateTime rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2011-01-01T00:00:00</vivo:dateTime>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://link.informatics.stonybrook.edu/umls/CUI/C0036612">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">semantic</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n208204">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">AgriVIVO for enabling global networking for agriculture. Concept Note</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n36342">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Relationship"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Authorship"/>
<vivo:linkedAuthor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:linkedInformationResource rdfsyn:resource="http://vivo.cornell.edu/individual/n237958"/>
<vivo:authorRank rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#int">3</vivo:authorRank>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivoweb.org/ontology/core#yearPrecision">
<rdfs:label xml:lang="en-US">yearPrecision</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n1560309">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#DateTimeInterval"/>
<vivo:start rdfsyn:resource="http://vivo.cornell.edu/individual/n6654066"/>
<vivo:end rdfsyn:resource="http://vivo.cornell.edu/individual/n930701"/>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n9051023">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#DateTimeValue"/>
<vivo:dateTimePrecision rdfsyn:resource="http://vivoweb.org/ontology/core#yearPrecision"/>
<vivo:dateTime rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2003-01-01T00:00:00</vivo:dateTime>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n24126">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">VIVO: Connecting People, Creating a Virtual Life Sciences Community</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n137627">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#DateTimeInterval"/>
<vivo:start rdfsyn:resource="http://vivo.cornell.edu/individual/n52538"/>
<vivo:end rdfsyn:resource="http://vivo.cornell.edu/individual/n264175"/>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n213074">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#AwardReceipt"/>
<vivo:dateTimeValue rdfsyn:resource="http://vivo.cornell.edu/individual/n247617"/>
<vivo:receiptOf rdfsyn:resource="http://vivo.cornell.edu/individual/n92124"/>
<vivo:awardOrHonorFor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">SUNY Chancellor's Award for Excellence in Professional Service (Corson-Rikert, Jonathan - 2012)</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n247617">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#DateTimeValue"/>
<vivo:dateTimePrecision rdfsyn:resource="http://vivoweb.org/ontology/core#yearPrecision"/>
<vivo:dateTime rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2012-01-01T00:00:00</vivo:dateTime>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n54810">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">Extending VIVO</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n220050">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">Act: An Easy-to-use and Dynamically Extensible 3D Graphics Library</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n153441">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Relationship"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Authorship"/>
<vivo:linkedAuthor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:linkedInformationResource rdfsyn:resource="http://vivo.cornell.edu/individual/n168471"/>
<vivo:authorRank rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#int">1</vivo:authorRank>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n14786">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Relationship"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Authorship"/>
<vivo:linkedAuthor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:linkedInformationResource rdfsyn:resource="http://vivo.cornell.edu/individual/n518934"/>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n32881">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">VIVO Researcher Networking Update</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://www.eionet.europa.eu/gemet/concept/3645">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">geographic information system</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n118473">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Role"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#MemberRole"/>
<vivo:memberRoleOf rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:dateTimeInterval rdfsyn:resource="http://vivo.cornell.edu/individual/n32759"/>
<vivo:roleContributesTo rdfsyn:resource="http://vivo.cornell.edu/individual/n20618"/>
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">member</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n59132">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#AwardReceipt"/>
<vivo:dateTimeValue rdfsyn:resource="http://vivo.cornell.edu/individual/n9051023"/>
<vivo:awardOrHonorFor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:awardConferredBy rdfsyn:resource="http://vivo.cornell.edu/individual/individual1"/>
<rdfs:label>Ans van Tienhoven Award</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n213009">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">VIVO: A Semantic Network of Researchers and Research Information as Linked Open Data</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n7857854">
<vivo:dateTimeIntervalFor rdfsyn:resource="http://vivo.cornell.edu/individual/n59311"/>
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#DateTimeInterval"/>
<vivo:start rdfsyn:resource="http://vivo.cornell.edu/individual/n4805850"/>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n46303">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Relationship"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Authorship"/>
<vivo:linkedAuthor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:linkedInformationResource rdfsyn:resource="http://vivo.cornell.edu/individual/n56282"/>
<vivo:authorRank rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#int">3</vivo:authorRank>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n20618">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">CUL Discovery and Access Committee</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n318104">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Relationship"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Authorship"/>
<vivo:linkedAuthor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:linkedInformationResource rdfsyn:resource="http://vivo.cornell.edu/individual/n213009"/>
<vivo:authorRank rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#int">1</vivo:authorRank>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n930701">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#DateTimeValue"/>
<vivo:dateTimePrecision rdfsyn:resource="http://vivoweb.org/ontology/core#yearMonthDayPrecision"/>
<vivo:dateTime rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2010-05-18T00:00:00</vivo:dateTime>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n467508">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">VIVO Development Roadmap: Enhancing an Ontology-Based University Research Portal with OWL and Rules</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n226968">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">N.Y.'s climate change clearinghouse to offer info to all</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://link.informatics.stonybrook.edu/umls/CUI/C0599807">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">informatics</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n188191">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">DataStaR: Using the Semantic Web approach for Data Curation</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://link.informatics.stonybrook.edu/umls/CUI/C0872261">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">repository</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/individual22972">
<vivo:hasResearchArea rdfsyn:resource="http://link.informatics.stonybrook.edu/umls/CUI/C0599807"/>
<vivo:awardOrHonor rdfsyn:resource="http://vivo.cornell.edu/individual/n59132"/>
<hr:primaryJobcodeLdesc>Info Tech Asst Dir II</hr:primaryJobcodeLdesc>
<vivo:preferredTitle>Head of Information Technology Services, Mann Library, Cornell University</vivo:preferredTitle>
<vivo:authorInAuthorship rdfsyn:resource="http://vivo.cornell.edu/individual/n415309"/>
<vivo:editorOf rdfsyn:resource="http://vivo.cornell.edu/individual/n60089"/>
<hr:netId>jc55</hr:netId>
<vivo:authorInAuthorship rdfsyn:resource="http://vivo.cornell.edu/individual/n318104"/>
<vivo:hasResearchArea rdfsyn:resource="http://www.eionet.europa.eu/gemet/concept/3645"/>
<vivo:authorInAuthorship rdfsyn:resource="http://vivo.cornell.edu/individual/n31799"/>
<vivo:orcidId>0000-0002-2017-9998</vivo:orcidId>
<vivo:hasResearchArea rdfsyn:resource="http://link.informatics.stonybrook.edu/umls/CUI/C1518584"/>
<vivo:advisorIn rdfsyn:resource="http://vivo.cornell.edu/individual/n14460"/>
<vivo:webpage rdfsyn:resource="http://vivo.cornell.edu/individual/n120085"/>
<vivo:authorInAuthorship rdfsyn:resource="http://vivo.cornell.edu/individual/n77544"/>
<rdfsyn:type rdfsyn:resource="http://vivo.library.cornell.edu/ns/0.1#CornellAffiliatedPerson"/>
<vivo:authorInAuthorship rdfsyn:resource="http://vivo.cornell.edu/individual/n60828"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#NonAcademic"/>
<hr:emplId>1012111</hr:emplId>
<vitro:moniker>Head of Information Technology Services</vitro:moniker>
<vivo:hasResearchArea rdfsyn:resource="http://link.informatics.stonybrook.edu/umls/CUI/C0872261"/>
<vivoc:CornellemailnetId>jc55@cornell.edu</vivoc:CornellemailnetId>
<vivo:personInPosition rdfsyn:resource="http://vivo.cornell.edu/individual/empl1012111-position0"/>
<vivo:overview>&lt;p&gt;I am active in Semantic Web research for research information discovery and library projects.&lt;/p&gt;</vivo:overview>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/activity-insight#ActivityInsightReporter"/>
<vivoc:professionalBackground>&lt;ul&gt;&#xD;
&lt;li&gt;Programmer Analyst, Mann Library 2001-2006&lt;/li&gt;&#xD;
&lt;li&gt;Lab Manager, Program of Computer Graphics, Cornell University, 1992-2001&lt;/li&gt;&#xD;
&lt;li&gt;Programmer, Harvard Lab for Computer Graphics, Cambridge, Massachusetts 1983-1992&lt;/li&gt;&#xD;
&lt;li&gt;Cartographer, Dane County Regional Planning Commission, Madison, Wisconsin, 1978-1982&lt;/li&gt;&#xD;
&lt;/ul&gt;</vivoc:professionalBackground>
<vivo:webpage rdfsyn:resource="http://vivo.cornell.edu/individual/n172791"/>
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<vitro-public:mainImage rdfsyn:resource="http://vivo.cornell.edu/individual/n32203"/>
<vivo:featuredIn rdfsyn:resource="http://vivo.cornell.edu/individual/CornellsVIVOconceptwillexpandtoconnectresearchersnationwide"/>
<vivo:webpage rdfsyn:resource="http://vivo.cornell.edu/individual/n19652"/>
<vivo:authorInAuthorship rdfsyn:resource="http://vivo.cornell.edu/individual/n117568"/>
<vivo:authorInAuthorship rdfsyn:resource="http://vivo.cornell.edu/individual/n148480"/>
<vivo:authorInAuthorship rdfsyn:resource="http://vivo.cornell.edu/individual/n36342"/>
<vivo:authorInAuthorship rdfsyn:resource="http://vivo.cornell.edu/individual/n122000"/>
<vivo:authorInAuthorship rdfsyn:resource="http://vivo.cornell.edu/individual/n51088"/>
<vivo:scopusId>20336816000</vivo:scopusId>
<vivo:hasMemberRole rdfsyn:resource="http://vivo.cornell.edu/individual/n118473"/>
<foaf:lastName>Corson-Rikert</foaf:lastName>
<vivo:authorInAuthorship rdfsyn:resource="http://vivo.cornell.edu/individual/n37724"/>
<vivo:featuredIn rdfsyn:resource="http://vivo.cornell.edu/individual/n226968"/>
<rdfsyn:type rdfsyn:resource="http://vivo.library.cornell.edu/ns/0.1#CornellEmployee"/>
<vivo:authorInAuthorship rdfsyn:resource="http://vivo.cornell.edu/individual/n25298"/>
<foaf:firstName>Jonathan</foaf:firstName>
<vivo:authorInAuthorship rdfsyn:resource="http://vivo.cornell.edu/individual/n153441"/>
<vivo:middleName></vivo:middleName>
<rdfsyn:type rdfsyn:resource="http://xmlns.com/foaf/0.1/Person"/>
<vivo:awardOrHonor rdfsyn:resource="http://vivo.cornell.edu/individual/n213074"/>
<rdfs:label>Corson-Rikert, Jonathan</rdfs:label>
<vivo:authorInAuthorship rdfsyn:resource="http://vivo.cornell.edu/individual/n66205"/>
<rdfsyn:type rdfsyn:resource="http://vivo.cornell.edu/ns/mannadditions/0.1#CornellNonAcademicStaff"/>
<vivo:webpage rdfsyn:resource="http://vivo.cornell.edu/individual/n200243"/>
<hr:primaryWorkingTitle>Info Tech Assistant Dir II</hr:primaryWorkingTitle>
<vivo:researchOverview>My research is focused on semantic web development for networked scholarship.</vivo:researchOverview>
<vivo:authorInAuthorship rdfsyn:resource="http://vivo.cornell.edu/individual/n14786"/>
<rdfsyn:type rdfsyn:resource="http://xmlns.com/foaf/0.1/Agent"/>
<vivo:hasPresenterRole rdfsyn:resource="http://vivo.cornell.edu/individual/n110772"/>
<acti:aiUser>509729</acti:aiUser>
<vivo:authorInAuthorship rdfsyn:resource="http://vivo.cornell.edu/individual/n113565"/>
<vivo:hasPresenterRole rdfsyn:resource="http://vivo.cornell.edu/individual/n59311"/>
<vivo:authorInAuthorship rdfsyn:resource="http://vivo.cornell.edu/individual/n46303"/>
<vivo:researcherId>B-3301-2009</vivo:researcherId>
<hr:PrefName>Corson-Rikert, Jon</hr:PrefName>
<rdfsyn:type rdfsyn:resource="http://vivo.cornell.edu/ontology/local#InternalThing"/>
<vivo:authorInAuthorship rdfsyn:resource="http://vivo.cornell.edu/individual/n63093"/>
<vivo:hasResearchArea rdfsyn:resource="http://link.informatics.stonybrook.edu/umls/CUI/C0036612"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/activity-insight#ActivityInsightPerson"/>
<vivo:authorInAuthorship rdfsyn:resource="http://vivo.cornell.edu/individual/n25439"/>
<vivo:webpage rdfsyn:resource="http://www.mannlib.cornell.edu"/>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n110772">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Role"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#PresenterRole"/>
<vivo:roleRealizedIn rdfsyn:resource="http://vivo.cornell.edu/individual/n34834"/>
<vivo:dateTimeInterval rdfsyn:resource="http://vivo.cornell.edu/individual/n137627"/>
<vivo:presenterRoleOf rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">Presenter</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n148480">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Relationship"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Authorship"/>
<vivo:linkedAuthor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:linkedInformationResource rdfsyn:resource="http://vivo.cornell.edu/individual/n54810"/>
<vivo:authorRank rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#int">6</vivo:authorRank>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n92124">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">SUNY Chancellor's Award for Excellence in Professional Service</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n60089">
<rdfs:label xml:lang="en-US">VIVO: A Semantic Approach to Scholarly Networking and Discovery</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n31799">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Relationship"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Authorship"/>
<vivo:linkedAuthor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:linkedInformationResource rdfsyn:resource="http://vivo.cornell.edu/individual/n467508"/>
<vivo:authorRank rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#int">2</vivo:authorRank>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n112752">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#DateTimeValue"/>
<vivo:dateTimePrecision rdfsyn:resource="http://vivoweb.org/ontology/core#yearPrecision"/>
<vivo:dateTime rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2011-01-01T05:00:00Z</vivo:dateTime>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n6654066">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#DateTimeValue"/>
<vivo:dateTimePrecision rdfsyn:resource="http://vivoweb.org/ontology/core#yearMonthDayPrecision"/>
<vivo:dateTime rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2010-01-05T00:00:00</vivo:dateTime>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n37724">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Relationship"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Authorship"/>
<vivo:linkedAuthor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:linkedInformationResource rdfsyn:resource="http://vivo.cornell.edu/individual/n220050"/>
<vivo:authorRank rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#int">2</vivo:authorRank>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n59526">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">VIVO: Case Study of an Ontology-Based Web Site</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n15280">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">VIVO: Enabling National Networking of Scientists</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n66205">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Relationship"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Authorship"/>
<vivo:linkedAuthor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:linkedInformationResource rdfsyn:resource="http://vivo.cornell.edu/individual/n154727"/>
<vivo:authorRank rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#int">4</vivo:authorRank>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n14460">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Relationship"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#AdvisingRelationship"/>
<vivo:advisor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:dateTimeInterval rdfsyn:resource="http://vivo.cornell.edu/individual/n1560309"/>
<rdfs:label>Web development intern</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n34834">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">DataStaR: An Ontology-Based Approach to Representing Metadata for Research Datasets</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n168471">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">The VIVO Ontology</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/empl1012111-position0">
<vivo:positionInOrganization rdfsyn:resource="http://vivo.cornell.edu/individual/individual1"/>
<vivo:positionForPerson rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#NonAcademicPosition"/>
<hr:LDAPJobNumber>0</hr:LDAPJobNumber>
<j.0:headInd>P</j.0:headInd>
<j.0:company>STA</j.0:company>
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Position"/>
<rdfs:label>Info Tech Assistant Dir II</rdfs:label>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#PrimaryPosition"/>
<vivo:hrJobTitle>Info Tech Asst Dir II</vivo:hrJobTitle>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n77544">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Relationship"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Authorship"/>
<vivo:linkedAuthor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:linkedInformationResource rdfsyn:resource="http://vivo.cornell.edu/individual/n208204"/>
<vivo:authorRank rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#int">1</vivo:authorRank>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n25354">
<rdfs:label rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#string">WYSIWYG Map Digitizing: Real Time Geometric Correction and Topological Encoding</rdfs:label>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n63093">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Relationship"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Authorship"/>
<vivo:linkedAuthor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:linkedInformationResource rdfsyn:resource="http://vivo.cornell.edu/individual/n59276"/>
<vivo:authorRank rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#int">3</vivo:authorRank>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n25298">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Relationship"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Authorship"/>
<vivo:linkedAuthor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:linkedInformationResource rdfsyn:resource="http://vivo.cornell.edu/individual/n24980"/>
<vivo:authorRank rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#int">8</vivo:authorRank>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n113565">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Relationship"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Authorship"/>
<vivo:linkedAuthor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:linkedInformationResource rdfsyn:resource="http://vivo.cornell.edu/individual/n188191"/>
<vivo:authorRank rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#int">4</vivo:authorRank>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n32759">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#DateTimeInterval"/>
<vivo:start rdfsyn:resource="http://vivo.cornell.edu/individual/n112752"/>
<vivo:end rdfsyn:resource="http://vivo.cornell.edu/individual/n36325"/>
</rdfsyn:Description>
<rdfsyn:Description rdfsyn:about="http://vivo.cornell.edu/individual/n415309">
<rdfsyn:type rdfsyn:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Relationship"/>
<rdfsyn:type rdfsyn:resource="http://vivoweb.org/ontology/core#Authorship"/>
<vivo:linkedAuthor rdfsyn:resource="http://vivo.cornell.edu/individual/individual22972"/>
<vivo:linkedInformationResource rdfsyn:resource="http://vivo.cornell.edu/individual/n25354"/>
<vivo:authorRank rdfsyn:datatype="http://www.w3.org/2001/XMLSchema#int">2</vivo:authorRank>
</rdfsyn:Description>
</rdfsyn:RDF>

View file

@ -0,0 +1,45 @@
@prefix sce: <http://vivoweb.org/ontology/SchoolOfContinuingEducation#>.
@prefix dcterms: <http://purl.org/dc/terms/>.
@prefix local: <http://vivo.cornell.edu/ontology/local#>.
@prefix skos: <http://www.w3.org/2004/02/skos/core#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix pubmed: <http://vitro.mannlib.cornell.edu/ns/pubmed#>.
@prefix vitro-public: <http://vitro.mannlib.cornell.edu/ns/vitro/public#>.
@prefix bibo: <http://purl.org/ontology/bibo/>.
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix hr: <http://vivo.cornell.edu/ns/hr/0.9/hr.owl#>.
@prefix cce: <http://vivoweb.org/ontology/cornell-cooperative-extension#>.
@prefix vivo: <http://vivoweb.org/ontology/core#>.
@prefix aktp: <http://www.aktors.org/ontology/portal#>.
@prefix scires: <http://vivoweb.org/ontology/scientific-research#>.
@prefix dcelem: <http://purl.org/dc/elements/1.1/>.
@prefix vivoc: <http://vivo.library.cornell.edu/ns/0.1#>.
@prefix stars: <http://vitro.mannlib.cornell.edu/ns/cornell/stars/classes#>.
@prefix far: <http://vitro.mannlib.cornell.edu/ns/reporting#>.
@prefix pvs: <http://vivoweb.org/ontology/provenance-support#>.
@prefix acti: <http://vivoweb.org/ontology/activity-insight#>.
@prefix mann: <http://vivo.cornell.edu/ns/mannadditions/0.1#>.
@prefix event: <http://purl.org/NET/c4dm/event.owl#>.
@prefix aka: <http://vivoweb.org/ontology/aka#>.
@prefix geo: <http://aims.fao.org/aos/geopolitical.owl#>.
@prefix ero: <http://purl.obolibrary.org/obo/>.
@prefix fabio: <http://purl.org/spar/fabio/>.
@prefix rdfsyn: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix socsci: <http://vivo.library.cornell.edu/ns/vivo/socsci/0.1#>.
@prefix j.0: <http://vivoweb.org/ontology/newhr#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix ospcu: <http://vivoweb.org/ontology/cu-vivo-osp#>.
@prefix c4o: <http://purl.org/spar/c4o/>.
@prefix vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>.
<http://vivo.cornell.edu/individual/individualIssueVivo15> vivo:overview "There is a form feed in the following text. Hex 0c, that sometimes displays as ^L. Star Award for excellence in scientic publication and for productive collaborations with other Center scientists, U.S. Department of the Interior, 2009. Publications Award for scientist at Florida Integrated Science Center with highest annual scien-tic productivity as measured by number, quality, and impact of publications., U.S. Department of the Interior, 2009.";
vivo:webpage <https://jira.duraspace.org/browse/VIVO-15>;
a mann:CornellNonAcademicStaff,
local:InternalThing,
vivoc:CornellAffiliatedPerson,
vivoc:CornellEmployee,
vivo:NonAcademic,
owl:Thing,
foaf:Agent,
foaf:Person;
rdfs:label "Test individual for issue vivo15".

View file

@ -0,0 +1,45 @@
@prefix sce: <http://vivoweb.org/ontology/SchoolOfContinuingEducation#>.
@prefix dcterms: <http://purl.org/dc/terms/>.
@prefix local: <http://vivo.cornell.edu/ontology/local#>.
@prefix skos: <http://www.w3.org/2004/02/skos/core#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix pubmed: <http://vitro.mannlib.cornell.edu/ns/pubmed#>.
@prefix vitro-public: <http://vitro.mannlib.cornell.edu/ns/vitro/public#>.
@prefix bibo: <http://purl.org/ontology/bibo/>.
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix hr: <http://vivo.cornell.edu/ns/hr/0.9/hr.owl#>.
@prefix cce: <http://vivoweb.org/ontology/cornell-cooperative-extension#>.
@prefix vivo: <http://vivoweb.org/ontology/core#>.
@prefix aktp: <http://www.aktors.org/ontology/portal#>.
@prefix scires: <http://vivoweb.org/ontology/scientific-research#>.
@prefix dcelem: <http://purl.org/dc/elements/1.1/>.
@prefix vivoc: <http://vivo.library.cornell.edu/ns/0.1#>.
@prefix stars: <http://vitro.mannlib.cornell.edu/ns/cornell/stars/classes#>.
@prefix far: <http://vitro.mannlib.cornell.edu/ns/reporting#>.
@prefix pvs: <http://vivoweb.org/ontology/provenance-support#>.
@prefix acti: <http://vivoweb.org/ontology/activity-insight#>.
@prefix mann: <http://vivo.cornell.edu/ns/mannadditions/0.1#>.
@prefix event: <http://purl.org/NET/c4dm/event.owl#>.
@prefix aka: <http://vivoweb.org/ontology/aka#>.
@prefix geo: <http://aims.fao.org/aos/geopolitical.owl#>.
@prefix ero: <http://purl.obolibrary.org/obo/>.
@prefix fabio: <http://purl.org/spar/fabio/>.
@prefix rdfsyn: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix socsci: <http://vivo.library.cornell.edu/ns/vivo/socsci/0.1#>.
@prefix j.0: <http://vivoweb.org/ontology/newhr#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix ospcu: <http://vivoweb.org/ontology/cu-vivo-osp#>.
@prefix c4o: <http://purl.org/spar/c4o/>.
@prefix vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>.
<http://vivo.cornell.edu/individual/individualIssueVivo15> vivo:overview "There is a form feed in the following text. Hex 0c, that sometimes displays as ^L. Star Award for excellence in scienti c publication and for productive collaborations with other Center scientists, U.S. Department of the Interior, 2009. Publications Award for scientist at Florida Integrated Science Center with highest annual scien-ti c productivity as measured by number, quality, and impact of publications., U.S. Department of the Interior, 2009.";
vivo:webpage <https://jira.duraspace.org/browse/VIVO-15>;
a mann:CornellNonAcademicStaff,
local:InternalThing,
vivoc:CornellAffiliatedPerson,
vivoc:CornellEmployee,
vivo:NonAcademic,
owl:Thing,
foaf:Agent,
foaf:Person;
rdfs:label "Test individual for issue vivo15".

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,203 @@
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:vitro="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#"
xmlns:akts="http://www.aktors.org/ontology/support#"
xmlns:aktp="http://www.aktors.org/ontology/portal#"
xmlns:hr="http://vivo.cornell.edu/ns/hr/0.9/hr.owl#"
xmlns:mann="http://vivo.cornell.edu/ns/mannadditions/0.1#"
xmlns:socsci="http://vivo.library.cornell.edu/ns/vivo/socsci/0.1/socsci.owl"
xmlns:thomson="info:/fake/nsuri/for/Thomson/wos"
xmlns:vivoa="http://vivo.library.cornell.edu/abox#"
xmlns:vivo="http://vivo.library.cornell.edu/ns/0.1#"
>
<owl:Ontology rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Vitro internals</rdfs:label>
</owl:Ontology>
<!-- externalIDs -->
<owl:DatatypeProperty rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#externalID"/>
<!-- begin BJL afterthoughts -->
<owl:AnnotationProperty rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#descriptionAnnot"/>
<owl:AnnotationProperty rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#shortDef"/>
<owl:AnnotationProperty rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#example"/>
<owl:AnnotationProperty rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#displayLimit"/>
<owl:AnnotationProperty rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#hidden"/>
<!-- begin Pellet additions -->
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#moreTag">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#PrimaryTabContent">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#linkedEntity">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#Collection">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#entitySortField">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#rootTab">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#flag3Set">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#MixedTab">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#SubcollectionCategory">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#rssUrl">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#bannerImage">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#inPortal">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#rootBreadCrumbAnchor">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#flag2Set">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#entitySortDirection">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#contactMail">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#flag2Mode">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#urlPrefix">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#dayLimit">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#galleryRows">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#aboutText">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#imageWidth">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#flag3SearchFiltering">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#PrimaryTab">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#Portal">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#flag2SearchFiltering">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#statusId">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#Subcollection">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#tabBody">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#logotypeWidth">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#galleryCols">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#subTabOf">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#modTime">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#rootBreadCrumbURL">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#AutoLinkableTab">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#copyrightURL">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#autoLinkedToTab">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#shortHand">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#copyrightAnchor">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#imageThumbWidth">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#Tab">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#flag3Numeric">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#sunset">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#logotypeImage">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#flag3Mode">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#acknowledgeText">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#themeDir">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#SecondaryTab">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#ManuallyLinkableTab">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#flag2Numeric">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#bannerHeight">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#flag1SearchFiltering">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#sunrise">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#bannerWidth">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<!-- end Pellet additions -->
</rdf:RDF>

View file

@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:vitro="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#"
xmlns="http://vivo.library.cornell.edu/ns/0.1#">
<owl:DatatypeProperty rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#username"/>
<owl:DatatypeProperty rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#md5password"/>
<owl:DatatypeProperty rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#oldpassword"/>
<owl:DatatypeProperty rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#modTime"/>
<owl:DatatypeProperty rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#firstTime"/>
<owl:DatatypeProperty rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#loginCount"/>
<owl:DatatypeProperty rdf:about="http://lowe.mannlib.cornell.edu/ns/vitro/0.1/vitro.owl#roleURI"/>
<vitro:User rdf:about="#bjl23">
<vitro:username rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bjl23</vitro:username>
<vitro:md5password rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6ECCCD6725A0E17E0D9C91B4F63389CF</vitro:md5password>
<vitro:oldpassword rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8F6E2222AE1B0017EB1476BFE68C01EC</vitro:oldpassword>
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2007-07-17T14:54:14</vitro:modTime>
<vitro:firstTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2004-11-16T16:05:07</vitro:firstTime>
<vitro:loginCount rdf:datatype="http://www.w3.org/2001/XMLSchema#int">410</vitro:loginCount>
<vitro:roleURI rdf:datatype="http://www.w3.org/2001/XMLSchema#string">role:/50</vitro:roleURI>
</vitro:User>
<vitro:User rdf:about="#bdc34">
<vitro:username rdf:datatype="http://www.w3.org/2001/XMLSchema#string">brian</vitro:username>
<vitro:md5password rdf:datatype="http://www.w3.org/2001/XMLSchema#string">57EC9E19B943F4D3633B375111061C11</vitro:md5password>
<vitro:oldpassword rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8F6E2222AE1B0017EB1476BFE68C01EC</vitro:oldpassword>
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2007-03-27T14:54:14</vitro:modTime>
<vitro:firstTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2004-11-30T16:05:07</vitro:firstTime>
<vitro:loginCount rdf:datatype="http://www.w3.org/2001/XMLSchema#int">282</vitro:loginCount>
<vitro:roleURI rdf:datatype="http://www.w3.org/2001/XMLSchema#string">role:/50</vitro:roleURI>
</vitro:User>
</rdf:RDF>