51 lines
1.8 KiB
XML
51 lines
1.8 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
|
|
|
<!-- Default list view config file for object properties
|
|
|
|
See guidelines in vitro/doc/list_view_configuration_guidelines.txt -->
|
|
|
|
<list-view-config>
|
|
<query-select>
|
|
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
PREFIX afn: <http://jena.hpl.hp.com/ARQ/function#>
|
|
|
|
SELECT <collated> ?subclass </collated>
|
|
?object ?label ?localName WHERE {
|
|
|
|
?subject ?property ?object
|
|
LET (?localName := afn:localname(?object))
|
|
<collated> OPTIONAL { ?object a ?subclass }
|
|
FILTER ( afn:namespace(?subclass) != "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#" )
|
|
</collated>
|
|
OPTIONAL { ?object rdfs:label ?label }
|
|
} ORDER BY <collated> ?subclass </collated> ?label ?label ?localName
|
|
</query-select>
|
|
|
|
<query-construct>
|
|
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
|
|
CONSTRUCT {
|
|
?subject ?property ?object .
|
|
?object a ?subclass .
|
|
?object rdfs:label ?label .
|
|
} WHERE {
|
|
{
|
|
?subject ?property ?object
|
|
}
|
|
UNION {
|
|
?subject ?property ?object .
|
|
?object a ?subclass .
|
|
}
|
|
UNION {
|
|
?subject ?property ?object .
|
|
?object rdfs:label ?label .
|
|
}
|
|
|
|
}
|
|
</query-construct>
|
|
|
|
<template>propStatement-default.ftl</template>
|
|
</list-view-config>
|