2011-01-03 15:38:16 +00:00
|
|
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
|
|
|
|
2011-01-03 16:16:57 +00:00
|
|
|
<!-- See guidelines in vitro/doc/list_view_configuration_guidelines.txt -->
|
2011-01-03 15:38:16 +00:00
|
|
|
|
|
|
|
<list-view-config>
|
|
|
|
<query>
|
|
|
|
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 ?authorship (afn:localname(?authorship) AS ?authorshipName)
|
|
|
|
?person ?personName WHERE {
|
|
|
|
GRAPH ?g1 { ?subject ?property ?authorship }
|
|
|
|
OPTIONAL { GRAPH ?g2 { ?authorship core:authorRank ?rank } }
|
|
|
|
OPTIONAL { GRAPH ?g3 { ?authorship core:linkedAuthor ?person }
|
|
|
|
GRAPH ?g4 { ?person rdfs:label ?personName }
|
|
|
|
}
|
|
|
|
} ORDER BY ?rank ?personName
|
|
|
|
</query>
|
|
|
|
|
|
|
|
<template>propStatement-informationResourceInAuthorship.ftl</template>
|
|
|
|
</list-view-config>
|