2011-01-08 00:11:26 +00:00
|
|
|
<?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>
|
2011-03-02 22:33:01 +00:00
|
|
|
<query-select>
|
2011-01-08 00:11:26 +00:00
|
|
|
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#>
|
|
|
|
|
2011-01-19 20:46:39 +00:00
|
|
|
SELECT DISTINCT ?dateTimeValue
|
|
|
|
(afn:localname(?dateTimePrecision) AS ?precision)
|
|
|
|
?dateTime WHERE {
|
2011-01-31 22:52:40 +00:00
|
|
|
?subject ?property ?dateTimeValue
|
|
|
|
OPTIONAL { ?dateTimeValue core:dateTime ?dateTime }
|
|
|
|
OPTIONAL { ?dateTimeValue core:dateTimePrecision ?dateTimePrecision }
|
2011-03-22 20:22:20 +00:00
|
|
|
<critical-data-required>
|
2011-03-22 18:52:41 +00:00
|
|
|
FILTER ( bound(?dateTime) )
|
2011-03-22 20:22:20 +00:00
|
|
|
</critical-data-required>
|
2011-01-08 00:11:26 +00:00
|
|
|
}
|
2011-03-02 22:33:01 +00:00
|
|
|
</query-select>
|
2011-01-31 22:52:40 +00:00
|
|
|
|
|
|
|
<query-construct>
|
|
|
|
CONSTRUCT {
|
|
|
|
?subject ?property ?dateTimeValue .
|
|
|
|
?dateTimeValue ?p ?o .
|
|
|
|
} WHERE {
|
|
|
|
{
|
|
|
|
?subject ?property ?dateTimeValue
|
|
|
|
}
|
|
|
|
UNION {
|
|
|
|
?subject ?property ?dateTimeValue .
|
|
|
|
?dateTimeValue ?p ?o .
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</query-construct>
|
2011-01-08 00:11:26 +00:00
|
|
|
|
|
|
|
<template>propStatement-dateTimeValue.ftl</template>
|
2011-01-31 22:52:40 +00:00
|
|
|
</list-view-config>
|