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-01-19 20:46:39 +00:00
|
|
|
<query-base>
|
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#>
|
2010-12-21 00:00:23 +00:00
|
|
|
|
2011-01-19 20:46:39 +00:00
|
|
|
SELECT DISTINCT ?authorship (afn:localname(?authorship) AS ?authorshipName)
|
|
|
|
?infoResource ?infoResourceName
|
|
|
|
?dateTime WHERE {
|
2011-01-27 20:57:14 +00:00
|
|
|
{
|
|
|
|
{
|
|
|
|
?subject ?property ?authorship .
|
|
|
|
?authorship core:linkedInformationResource ?infoResource .
|
|
|
|
?infoResource rdfs:label ?infoResourceName .
|
|
|
|
}
|
|
|
|
UNION {
|
|
|
|
?subject ?property ?authorship .
|
|
|
|
?authorship core:linkedInformationResource ?infoResource .
|
|
|
|
?infoResource core:dateTimeValue ?dateTimeValue .
|
|
|
|
?dateTimeValue core:dateTime ?dateTime .
|
|
|
|
?infoResource rdfs:label ?infoResourceName .
|
|
|
|
}
|
|
|
|
}
|
2011-01-19 20:46:39 +00:00
|
|
|
} ORDER BY DESC(?dateTime) ?infoResourceName
|
|
|
|
</query-base>
|
|
|
|
|
|
|
|
<query-collated>
|
|
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
|
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
|
|
PREFIX afn: <http://jena.hpl.hp.com/ARQ/function#>
|
|
|
|
|
|
|
|
SELECT DISTINCT ?subclass
|
|
|
|
?authorship (afn:localname(?authorship) AS ?authorshipName)
|
|
|
|
?infoResource ?infoResourceName
|
2011-01-27 20:57:14 +00:00
|
|
|
?dateTime WHERE { GRAPH <urn:x-arq:UnionGraph> {
|
|
|
|
{
|
2011-01-27 21:57:37 +00:00
|
|
|
?subject ?property ?authorship .
|
2011-01-27 20:57:14 +00:00
|
|
|
?authorship core:linkedInformationResource ?infoResource .
|
|
|
|
?infoResource rdfs:label ?infoResourceName .
|
|
|
|
?infoResource a ?subclass .
|
|
|
|
?subclass rdfs:subClassOf core:InformationResource .
|
|
|
|
}
|
|
|
|
UNION {
|
2011-01-27 21:57:37 +00:00
|
|
|
?subject ?property ?authorship .
|
2011-01-27 20:57:14 +00:00
|
|
|
?authorship core:linkedInformationResource ?infoResource .
|
|
|
|
?infoResource rdfs:label ?infoResourceName .
|
|
|
|
?infoResource a ?subclass .
|
|
|
|
?subclass rdfs:subClassOf core:InformationResource .
|
|
|
|
?infoResource core:dateTimeValue ?dateTimeValue .
|
|
|
|
?dateTimeValue core:dateTime ?dateTime .
|
|
|
|
}
|
|
|
|
} } ORDER BY ?subclass DESC(?dateTime) ?infoResourceName
|
2011-01-19 20:46:39 +00:00
|
|
|
</query-collated>
|
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>
|