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 {
|
|
|
|
GRAPH ?g1 { ?subject ?property ?authorship }
|
|
|
|
OPTIONAL { GRAPH ?g2 { ?authorship core:linkedInformationResource ?infoResource }
|
|
|
|
GRAPH ?g3 { ?infoResource rdfs:label ?infoResourceName }
|
|
|
|
OPTIONAL { GRAPH ?g4 { ?infoResource core:dateTimeValue ?dateTimeValue }
|
|
|
|
GRAPH ?g5 { ?dateTimeValue core:dateTime ?dateTime }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} 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
|
|
|
|
?dateTime WHERE {
|
2010-12-22 20:11:16 +00:00
|
|
|
GRAPH ?g1 { ?subject ?property ?authorship }
|
2011-01-03 15:38:16 +00:00
|
|
|
OPTIONAL { GRAPH ?g2 { ?authorship core:linkedInformationResource ?infoResource }
|
|
|
|
GRAPH ?g3 { ?infoResource rdfs:label ?infoResourceName }
|
2011-01-05 21:45:57 +00:00
|
|
|
OPTIONAL { GRAPH ?g4 { ?subclass rdfs:subClassOf core:InformationResource }
|
|
|
|
GRAPH ?g5 { ?infoResource a ?subclass }
|
|
|
|
}
|
2011-01-19 20:46:39 +00:00
|
|
|
OPTIONAL { GRAPH ?g6 { ?infoResource core:dateTimeValue ?dateTimeValue }
|
|
|
|
GRAPH ?g7 { ?dateTimeValue core:dateTime ?dateTime }
|
2011-01-05 21:45:57 +00:00
|
|
|
}
|
|
|
|
}
|
2010-12-22 23:10:13 +00:00
|
|
|
} 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>
|