44 lines
1.7 KiB
XML
44 lines
1.7 KiB
XML
![]() |
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||
|
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
||
|
|
||
|
<!-- See guidelines in vitro/doc/list_view_configuration_guidelines.txt -->
|
||
|
|
||
|
<list-view-config>
|
||
|
<query-select>
|
||
|
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 ?terminologyContextNode ?referencedTerm ?entryTerm ?termLabel WHERE {
|
||
|
?subject ?property ?terminologyContextNode .
|
||
|
?terminologyContextNode core:referencedTerm ?referencedTerm .
|
||
|
?terminologyContextNode core:entryTerm ?entryTerm .
|
||
|
?terminologyContextNode core:termLabel ?termLabel .
|
||
|
} ORDER BY ?termLabel
|
||
|
|
||
|
|
||
|
</query-select>
|
||
|
|
||
|
<query-construct>
|
||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||
|
CONSTRUCT {
|
||
|
?subject ?property ?terminologyContextNode .
|
||
|
?terminologyContextNode core:referencedTerm ?referencedTerm .
|
||
|
?terminologyContextNode core:entryTerm ?entryTerm .
|
||
|
?terminologyContextNode core:termLabel ?termLabel .
|
||
|
} WHERE {
|
||
|
|
||
|
?subject ?property ?terminologyContextNode .
|
||
|
?terminologyContextNode core:referencedTerm ?referencedTerm .
|
||
|
?terminologyContextNode core:entryTerm ?entryTerm .
|
||
|
?terminologyContextNode core:termLabel ?termLabel .
|
||
|
|
||
|
}
|
||
|
</query-construct>
|
||
|
|
||
|
|
||
|
|
||
|
<template>propStatement-terminologyAnnotation.ftl</template>
|
||
|
</list-view-config>
|