122 lines
No EOL
4.8 KiB
XML
122 lines
No EOL
4.8 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
|
|
|
<!-- VIVO-specific default list view config file for object properties
|
|
|
|
See guidelines in vitro/doc/list_view_configuration_guidelines.txt -->
|
|
|
|
<list-view-config>
|
|
<query-select>
|
|
PREFIX afn: <http://jena.hpl.hp.com/ARQ/function#>
|
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
|
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
|
|
PREFIX fn: <http://www.w3.org/2005/xpath-functions#>
|
|
|
|
SELECT DISTINCT
|
|
?person
|
|
?personName
|
|
?posnLabel
|
|
?org
|
|
?orgLabel
|
|
?title
|
|
WHERE {
|
|
?subject ?property ?person .
|
|
OPTIONAL { ?person core:relatedBy ?position .
|
|
?position a core:Position
|
|
}
|
|
OPTIONAL { ?person core:relatedBy ?position .
|
|
?position a core:Position .
|
|
?position rdfs:label ?posnLabel
|
|
}
|
|
OPTIONAL { ?person rdfs:label ?personName }
|
|
OPTIONAL { ?person obo:ARG_2000028 ?vcard .
|
|
?vcard vcard:hasTitle ?titleObj .
|
|
?titleObj vcard:title ?title
|
|
}
|
|
OPTIONAL { ?person core:relatedBy ?position .
|
|
?position a core:Position .
|
|
?position core:relates ?org .
|
|
?org a foaf:Organization .
|
|
?org rdfs:label ?orgLabel
|
|
}
|
|
}
|
|
ORDER BY (fn:lower-case(?personName))
|
|
</query-select>
|
|
|
|
<query-construct>
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
|
|
|
CONSTRUCT {
|
|
?subject ?property ?person .
|
|
?person core:relatedBy ?position .
|
|
?position a core:Position .
|
|
?position rdfs:label ?posnLabel .
|
|
?position core:relates ?org .
|
|
?org a foaf:Organization .
|
|
?org rdfs:label ?orgName .
|
|
} WHERE {
|
|
{
|
|
?subject ?property ?person
|
|
} UNION {
|
|
?subject ?property ?person .
|
|
?person core:relatedBy ?position .
|
|
?position a core:Position .
|
|
} UNION {
|
|
?subject ?property ?person .
|
|
?person core:relatedBy ?position .
|
|
?position a core:Position .
|
|
?position rdfs:label ?posnLabel
|
|
} UNION {
|
|
?subject ?property ?person .
|
|
?person core:relatedBy ?position .
|
|
?position a core:Position .
|
|
?position core:relates ?org .
|
|
?org a foaf:Organization .
|
|
} UNION {
|
|
?subject ?property ?person .
|
|
?person core:relatedBy ?position .
|
|
?position a core:Position .
|
|
?position core:relates ?org .
|
|
?org a foaf:Organization .
|
|
?org rdfs:label ?orgName
|
|
}
|
|
}
|
|
</query-construct>
|
|
|
|
<query-construct>
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
|
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
|
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
|
|
|
|
CONSTRUCT {
|
|
?subject ?property ?person .
|
|
?person rdfs:label ?personName .
|
|
?person obo:ARG_2000028 ?vcard .
|
|
?vcard vcard:hasTitle ?titleObj .
|
|
?titleObj vcard:title ?title
|
|
} WHERE {
|
|
{
|
|
?subject ?property ?person
|
|
} UNION {
|
|
?subject ?property ?person .
|
|
?person rdfs:label ?personName
|
|
} UNION {
|
|
?subject ?property ?person .
|
|
?person obo:ARG_2000028 ?vcard .
|
|
?vcard vcard:hasTitle ?titleObj .
|
|
?titleObj vcard:title ?title
|
|
}
|
|
}
|
|
</query-construct>
|
|
|
|
<template>propStatement-researchAreaOf.ftl</template>
|
|
</list-view-config> |