2013-09-18 11:33:31 -04: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>
|
|
|
|
<query-select>
|
|
|
|
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
|
|
|
|
|
2013-10-22 13:14:58 -04:00
|
|
|
SELECT DISTINCT ?vcard
|
|
|
|
?email
|
2013-09-18 11:33:31 -04:00
|
|
|
?emailAddress
|
|
|
|
WHERE {
|
|
|
|
?subject ?property ?vcard .
|
2013-10-22 13:14:58 -04:00
|
|
|
?vcard vcard:hasEmail ?email .
|
|
|
|
?email vcard:email ?emailAddress
|
|
|
|
MINUS {?email a vcard:Work}
|
2013-09-18 11:33:31 -04:00
|
|
|
}
|
|
|
|
</query-select>
|
|
|
|
|
|
|
|
<query-construct>
|
|
|
|
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
|
|
|
|
CONSTRUCT {
|
|
|
|
?subject ?property ?vcard .
|
|
|
|
?vcard vcard:hasEmail ?email .
|
|
|
|
?email ?emailProperty ?emailValue
|
|
|
|
} WHERE {
|
|
|
|
?subject ?property ?vcard .
|
|
|
|
?vcard vcard:hasEmail ?email .
|
|
|
|
?email ?emailProperty ?emailValue
|
|
|
|
}
|
|
|
|
</query-construct>
|
|
|
|
|
|
|
|
<template>propStatement-emailAddress.ftl</template>
|
|
|
|
<postprocessor>edu.cornell.mannlib.vitro.webapp.web.templatemodels.individual.MaintainDuplicatesObjectPropertyDataPostProcessor</postprocessor>
|
|
|
|
</list-view-config>
|