2010-12-21 00:00:23 +00:00
|
|
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
2010-12-21 13:41:11 +00:00
|
|
|
|
2011-01-03 16:16:57 +00:00
|
|
|
<!-- See guidelines in vitro/doc/list_view_configuration_guidelines.txt -->
|
2010-12-21 13:41:11 +00:00
|
|
|
|
2010-12-21 00:00:23 +00:00
|
|
|
<list-view-config>
|
2011-03-02 22:33:01 +00:00
|
|
|
<query-select>
|
2010-12-23 20:01:30 +00:00
|
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
2010-12-21 00:00:23 +00:00
|
|
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
2010-12-22 22:17:09 +00:00
|
|
|
PREFIX afn: <http://jena.hpl.hp.com/ARQ/function#>
|
2011-10-18 20:50:59 +00:00
|
|
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
2011-10-25 20:45:13 +00:00
|
|
|
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
2013-09-18 17:01:26 -04:00
|
|
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
2011-10-18 20:50:59 +00:00
|
|
|
|
2012-01-05 14:55:29 +00:00
|
|
|
SELECT DISTINCT ?subclass
|
2011-02-08 22:52:53 +00:00
|
|
|
?authorship
|
2011-01-19 20:46:39 +00:00
|
|
|
?infoResource ?infoResourceName
|
2011-10-18 20:50:59 +00:00
|
|
|
?dateTime
|
|
|
|
?journal
|
|
|
|
?volume
|
|
|
|
?startPage
|
|
|
|
?endPage
|
|
|
|
?publisher
|
|
|
|
?locale
|
|
|
|
?appearsIn
|
|
|
|
?partOf
|
|
|
|
?editor
|
2012-08-07 19:37:11 +00:00
|
|
|
?hideThis
|
2011-10-18 20:50:59 +00:00
|
|
|
WHERE {
|
2013-03-26 13:38:25 -04:00
|
|
|
?subject ?property ?authorship .
|
2013-08-05 16:46:25 -04:00
|
|
|
?authorship core:relates ?infoResource .
|
2013-10-03 13:13:49 -04:00
|
|
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
2013-09-25 17:08:41 -04:00
|
|
|
?infoResource rdfs:label ?infoResourceName .
|
2011-10-18 20:50:59 +00:00
|
|
|
|
2013-03-26 13:38:25 -04:00
|
|
|
OPTIONAL { ?infoResource bibo:volume ?volume }
|
|
|
|
OPTIONAL { ?infoResource bibo:pageStart ?startPage }
|
|
|
|
OPTIONAL { ?infoResource bibo:pageEnd ?endPage }
|
|
|
|
OPTIONAL { ?infoResource core:placeOfPublication ?locale }
|
|
|
|
OPTIONAL { ?infoResource bibo:reproducedIn ?appearsInObj .
|
|
|
|
?appearsInObj rdfs:label ?appearsIn
|
|
|
|
}
|
|
|
|
OPTIONAL { ?infoResource core:publisher ?publisherObj .
|
|
|
|
?publisherObj rdfs:label ?publisher
|
|
|
|
}
|
2013-09-18 17:01:26 -04:00
|
|
|
OPTIONAL { ?infoResource core:relatedBy ?editorship .
|
2013-10-16 15:54:44 -04:00
|
|
|
?editorship a core:Editorship .
|
2013-10-15 11:55:48 -04:00
|
|
|
?editorship core:relates ?editorObj .
|
2013-03-26 13:38:25 -04:00
|
|
|
?editorObj rdfs:label ?editor
|
|
|
|
}
|
2013-11-03 17:18:17 -05:00
|
|
|
OPTIONAL { ?infoResource <http://purl.obolibrary.org/obo/BFO_0000050> ?partOfObj .
|
2013-03-26 13:38:25 -04:00
|
|
|
?partOfObj rdfs:label ?partOf
|
|
|
|
}
|
2013-09-25 17:08:41 -04:00
|
|
|
OPTIONAL { ?infoResource vitro:mostSpecificType ?subclass }
|
2013-03-26 13:38:25 -04:00
|
|
|
OPTIONAL { ?infoResource core:hasPublicationVenue ?publishedIn .
|
|
|
|
?publishedIn rdfs:label ?journal
|
|
|
|
}
|
|
|
|
OPTIONAL { ?infoResource core:dateTimeValue ?dateTimeValue .
|
|
|
|
?dateTimeValue core:dateTime ?dateTime
|
|
|
|
}
|
|
|
|
OPTIONAL { ?authorship core:hideFromDisplay ?hideThis }
|
2011-10-18 20:50:59 +00:00
|
|
|
|
2011-03-22 20:22:20 +00:00
|
|
|
<critical-data-required>
|
2011-03-21 22:24:37 +00:00
|
|
|
FILTER ( bound(?infoResource) )
|
2011-03-22 20:22:20 +00:00
|
|
|
</critical-data-required>
|
2012-01-05 14:55:29 +00:00
|
|
|
} ORDER BY ?subclass DESC(?dateTime) ?infoResourceName
|
2011-03-02 22:33:01 +00:00
|
|
|
</query-select>
|
2011-01-31 18:23:23 +00:00
|
|
|
|
|
|
|
<query-construct>
|
2013-10-01 16:46:13 -04:00
|
|
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
2013-09-25 17:08:41 -04:00
|
|
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
|
|
|
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
2011-01-31 18:23:23 +00:00
|
|
|
CONSTRUCT {
|
2013-10-01 16:46:13 -04:00
|
|
|
?subject ?property ?authorship .
|
|
|
|
?authorship a core:Authorship .
|
|
|
|
?authorship core:relates ?infoResource .
|
2013-10-03 13:13:49 -04:00
|
|
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
2013-09-25 17:08:41 -04:00
|
|
|
?infoResource vitro:mostSpecificType ?subclass
|
2011-01-31 18:23:23 +00:00
|
|
|
} WHERE {
|
2013-10-01 16:46:13 -04:00
|
|
|
?subject ?property ?authorship .
|
|
|
|
?authorship a core:Authorship .
|
|
|
|
?authorship core:relates ?infoResource .
|
2013-10-03 13:13:49 -04:00
|
|
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
2013-09-25 17:08:41 -04:00
|
|
|
?infoResource vitro:mostSpecificType ?subclass
|
2011-01-31 18:23:23 +00:00
|
|
|
}
|
|
|
|
</query-construct>
|
|
|
|
|
|
|
|
<query-construct>
|
|
|
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
2011-10-18 20:50:59 +00:00
|
|
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
2011-01-31 18:23:23 +00:00
|
|
|
CONSTRUCT {
|
|
|
|
?subject ?property ?authorship .
|
2013-10-16 15:54:44 -04:00
|
|
|
?authorship a core:Authorship .
|
2011-01-31 18:23:23 +00:00
|
|
|
?authorship ?authorshipProperty ?authorshipValue .
|
2013-08-05 16:46:25 -04:00
|
|
|
?authorship core:relates ?infoResource .
|
2013-10-03 13:13:49 -04:00
|
|
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
2011-10-18 20:50:59 +00:00
|
|
|
?infoResource rdfs:label ?infoResourceName .
|
|
|
|
?infoResource core:hasPublicationVenue ?publishedIn .
|
|
|
|
?publishedIn rdfs:label ?journal
|
2011-01-31 18:23:23 +00:00
|
|
|
} WHERE {
|
|
|
|
{
|
2013-10-01 16:46:13 -04:00
|
|
|
?subject ?property ?authorship .
|
|
|
|
?authorship a core:Authorship
|
2011-01-31 18:23:23 +00:00
|
|
|
}
|
|
|
|
UNION {
|
|
|
|
?subject ?property ?authorship .
|
2013-10-01 16:46:13 -04:00
|
|
|
?authorship a core:Authorship .
|
2011-10-18 20:50:59 +00:00
|
|
|
?authorship ?authorshipProperty ?authorshipValue
|
|
|
|
} UNION {
|
|
|
|
?subject ?property ?authorship .
|
2013-10-01 16:46:13 -04:00
|
|
|
?authorship a core:Authorship .
|
|
|
|
?authorship core:relates ?infoResource .
|
2013-10-03 13:13:49 -04:00
|
|
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030>
|
2011-01-31 18:23:23 +00:00
|
|
|
} UNION {
|
|
|
|
?subject ?property ?authorship .
|
2013-10-01 16:46:13 -04:00
|
|
|
?authorship a core:Authorship .
|
|
|
|
?authorship core:relates ?infoResource .
|
2013-10-03 13:13:49 -04:00
|
|
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
2011-01-31 18:23:23 +00:00
|
|
|
?infoResource rdfs:label ?infoResourceName
|
2011-10-18 20:50:59 +00:00
|
|
|
} UNION {
|
|
|
|
?subject ?property ?authorship .
|
2013-10-01 16:46:13 -04:00
|
|
|
?authorship a core:Authorship .
|
|
|
|
?authorship core:relates ?infoResource .
|
2013-10-03 13:13:49 -04:00
|
|
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
2011-10-18 20:50:59 +00:00
|
|
|
?infoResource core:hasPublicationVenue ?publishedIn
|
|
|
|
} UNION {
|
|
|
|
?subject ?property ?authorship .
|
2013-10-01 16:46:13 -04:00
|
|
|
?authorship a core:Authorship .
|
|
|
|
?authorship core:relates ?infoResource .
|
2013-10-03 13:13:49 -04:00
|
|
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
2011-10-18 20:50:59 +00:00
|
|
|
?infoResource core:hasPublicationVenue ?publishedIn .
|
|
|
|
?publishedIn rdfs:label ?journal
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</query-construct>
|
|
|
|
|
|
|
|
<query-construct>
|
|
|
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
|
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
2013-09-18 17:01:26 -04:00
|
|
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
2011-10-18 20:50:59 +00:00
|
|
|
CONSTRUCT {
|
|
|
|
?subject ?property ?authorship .
|
2013-10-01 16:46:13 -04:00
|
|
|
?authorship a core:Authorship .
|
2011-10-18 20:50:59 +00:00
|
|
|
?authorship ?authorshipProperty ?authorshipValue .
|
2013-10-01 16:46:13 -04:00
|
|
|
?authorship core:relates ?infoResource .
|
2013-10-03 13:13:49 -04:00
|
|
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
2011-10-18 20:50:59 +00:00
|
|
|
?infoResource ?infoResourceProperty ?infoResourceValue .
|
|
|
|
?infoResource bibo:reproducedIn ?appearsInObj .
|
|
|
|
?infoResource core:publisher ?publisherObj .
|
2013-09-18 17:01:26 -04:00
|
|
|
?infoResource core:relatedBy ?editorship .
|
|
|
|
?editorship a core:Editorship .
|
|
|
|
?editorship core:relates ?editorObj .
|
|
|
|
?editorObj a foaf:Person .
|
2013-11-03 17:18:17 -05:00
|
|
|
?infoResource <http://purl.obolibrary.org/obo/BFO_0000050> ?partOfObj .
|
2011-10-18 20:50:59 +00:00
|
|
|
?appearsInObj rdfs:label ?appearsIn .
|
|
|
|
?publisherObj rdfs:label ?publisher .
|
|
|
|
?editorObj rdfs:label ?editor .
|
|
|
|
?partOfObj rdfs:label ?partOf
|
|
|
|
} WHERE {
|
|
|
|
{
|
2013-10-01 16:46:13 -04:00
|
|
|
?subject ?property ?authorship .
|
|
|
|
?authorship a core:Authorship
|
2011-01-31 18:23:23 +00:00
|
|
|
}
|
2011-10-18 20:50:59 +00:00
|
|
|
UNION {
|
|
|
|
?subject ?property ?authorship .
|
2013-10-01 16:46:13 -04:00
|
|
|
?authorship a core:Authorship .
|
2011-10-18 20:50:59 +00:00
|
|
|
?authorship ?authorshipProperty ?authorshipValue
|
|
|
|
} UNION {
|
|
|
|
?subject ?property ?authorship .
|
2013-10-01 16:46:13 -04:00
|
|
|
?authorship a core:Authorship .
|
|
|
|
?authorship core:relates ?infoResource .
|
2013-10-03 13:13:49 -04:00
|
|
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
2011-10-18 20:50:59 +00:00
|
|
|
} UNION {
|
|
|
|
?subject ?property ?authorship .
|
2013-10-01 16:46:13 -04:00
|
|
|
?authorship a core:Authorship .
|
2013-08-05 16:46:25 -04:00
|
|
|
?authorship core:relates ?infoResource .
|
2013-10-03 13:13:49 -04:00
|
|
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
2011-10-18 20:50:59 +00:00
|
|
|
?infoResource ?infoResourceProperty ?infoResourceValue
|
|
|
|
} UNION {
|
|
|
|
?subject ?property ?authorship .
|
2013-10-01 16:46:13 -04:00
|
|
|
?authorship a core:Authorship .
|
2013-08-05 16:46:25 -04:00
|
|
|
?authorship core:relates ?infoResource .
|
2013-10-03 13:13:49 -04:00
|
|
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
2011-10-18 20:50:59 +00:00
|
|
|
?infoResource bibo:reproducedIn ?appearsInObj .
|
|
|
|
?appearsInObj rdfs:label ?appearsIn
|
|
|
|
} UNION {
|
|
|
|
?subject ?property ?authorship .
|
2013-10-01 16:46:13 -04:00
|
|
|
?authorship a core:Authorship .
|
2013-08-05 16:46:25 -04:00
|
|
|
?authorship core:relates ?infoResource .
|
2013-10-03 13:13:49 -04:00
|
|
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
2011-10-18 20:50:59 +00:00
|
|
|
?infoResource core:publisher ?publisherObj .
|
|
|
|
?publisherObj rdfs:label ?publisher
|
|
|
|
} UNION {
|
|
|
|
?subject ?property ?authorship .
|
2013-10-01 16:46:13 -04:00
|
|
|
?authorship a core:Authorship .
|
2013-08-05 16:46:25 -04:00
|
|
|
?authorship core:relates ?infoResource .
|
2013-10-03 13:13:49 -04:00
|
|
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
2013-09-18 17:01:26 -04:00
|
|
|
?infoResource core:relatedBy ?editorship .
|
2013-10-16 15:54:44 -04:00
|
|
|
?editorship a core:Editorship .
|
2013-09-18 17:01:26 -04:00
|
|
|
?editorship core:relates ?editorObj .
|
2013-10-31 11:36:37 -04:00
|
|
|
?editorObj a foaf:Person .
|
2011-10-18 20:50:59 +00:00
|
|
|
?editorObj rdfs:label ?editor
|
|
|
|
} UNION {
|
|
|
|
?subject ?property ?authorship .
|
2013-10-01 16:46:13 -04:00
|
|
|
?authorship a core:Authorship .
|
2013-08-05 16:46:25 -04:00
|
|
|
?authorship core:relates ?infoResource .
|
2013-10-03 13:13:49 -04:00
|
|
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
2013-11-03 17:18:17 -05:00
|
|
|
?infoResource <http://purl.obolibrary.org/obo/BFO_0000050> ?partOfObj .
|
2011-10-18 20:50:59 +00:00
|
|
|
?partOfObj rdfs:label ?partOf
|
|
|
|
}
|
2011-01-31 18:23:23 +00:00
|
|
|
}
|
|
|
|
</query-construct>
|
|
|
|
|
|
|
|
<query-construct>
|
|
|
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
2013-08-05 16:46:25 -04:00
|
|
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
2011-01-31 18:23:23 +00:00
|
|
|
CONSTRUCT {
|
|
|
|
?subject ?property ?authorship .
|
2013-10-01 16:46:13 -04:00
|
|
|
?authorship a core:Authorship .
|
2013-08-05 16:46:25 -04:00
|
|
|
?authorship core:relates ?infoResource .
|
2013-10-03 13:13:49 -04:00
|
|
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
2011-01-31 18:23:23 +00:00
|
|
|
?infoResource core:dateTimeValue ?dateTimeValue .
|
|
|
|
?dateTimeValue core:dateTime ?dateTime
|
|
|
|
} WHERE {
|
|
|
|
?subject ?property ?authorship .
|
2013-10-01 16:46:13 -04:00
|
|
|
?authorship a core:Authorship .
|
2013-08-05 16:46:25 -04:00
|
|
|
?authorship core:relates ?infoResource .
|
2013-10-03 13:13:49 -04:00
|
|
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
2011-01-31 18:23:23 +00:00
|
|
|
?infoResource core:dateTimeValue ?dateTimeValue .
|
|
|
|
?dateTimeValue core:dateTime ?dateTime
|
|
|
|
}
|
|
|
|
</query-construct>
|
2010-12-22 22:17:09 +00:00
|
|
|
|
2010-12-21 00:00:23 +00:00
|
|
|
<template>propStatement-authorInAuthorship.ftl</template>
|
2010-12-22 20:11:16 +00:00
|
|
|
</list-view-config>
|