vivo/productMods/config/listViewConfig-hasAssociatedConcept.xml

31 lines
1.1 KiB
XML
Raw Normal View History

<?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: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;
PREFIX vivo: &lt;http://vivoweb.org/ontology/core#&gt;
PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;
SELECT ?conceptLabel ?concept
WHERE {
?subject ?property ?concept .
2011-11-06 01:25:22 +00:00
?concept rdfs:label ?conceptLabel
} ORDER BY ?conceptLabel
</query-select>
2011-11-06 01:25:22 +00:00
<query-construct>
PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;
CONSTRUCT {
?subject ?property ?concept .
?concept rdfs:label ?conceptLabel
} WHERE {
?subject ?property ?concept .
?concept rdfs:label ?conceptLabel
}
</query-construct>
<template>propStatement-hasAssociatedConcept.ftl</template>
</list-view-config>