Merge branch 'develop' of github.com:vivo-project/VIVO into issue-vivo-111
This commit is contained in:
commit
5dc1a0952d
217 changed files with 35743 additions and 4680 deletions
|
@ -72,6 +72,7 @@
|
||||||
<include name="rdf/**/*" />
|
<include name="rdf/**/*" />
|
||||||
<include name="test/**/*" />
|
<include name="test/**/*" />
|
||||||
<include name="themes/**/*" />
|
<include name="themes/**/*" />
|
||||||
|
<include name="languages/**/*" />
|
||||||
<include name="config/*.properties" />
|
<include name="config/*.properties" />
|
||||||
<include name="config/*.txt" />
|
<include name="config/*.txt" />
|
||||||
<include name="config/jarlist/*.txt" />
|
<include name="config/jarlist/*.txt" />
|
||||||
|
|
|
@ -316,18 +316,35 @@
|
||||||
/usr/local/vivo/home
|
/usr/local/vivo/home
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">
|
||||||
|
Languages (in addition to American English) that will be built into your
|
||||||
|
VIVO site. The languages must be found in the
|
||||||
|
<code>languages</code> directory of the VIVO distribution.
|
||||||
|
See <a href="https://wiki.duraspace.org/display/VIVO/Building+a+multi-language+VIVO+instance">
|
||||||
|
the VIVO Wiki</a> for more information.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr class="odd_row">
|
||||||
|
<td>
|
||||||
|
languages.addToBuild
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
es_MX
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<h3 id="runtime_properties">5. Specify runtime properties </h3>
|
<h3 id="runtime_properties">5. Specify runtime properties </h3>
|
||||||
<p>
|
<p>
|
||||||
In <a href="#build_properties">Step 4</a>, you defined the location of the Vitro home directory,
|
In <a href="#build_properties">Step 4</a>, you defined the location of the VIVO home directory,
|
||||||
by specifying <code>vitro.home</code> in the <code>build.properties</code> file.
|
by specifying <code>vitro.home</code> in the <code>build.properties</code> file.
|
||||||
Create that directory now.
|
Create that directory now.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
At the top level of the VIVO distribution directory, you will find a file called
|
At the top level of the VIVO distribution directory, you will find a file called
|
||||||
<code>example.runtime.properties</code>. Copy this to the Vitro home directory you have created,
|
<code>example.runtime.properties</code>. Copy this to the VIVO home directory you have created,
|
||||||
renaming the copy to <code>runtime.properties</code>.
|
renaming the copy to <code>runtime.properties</code>.
|
||||||
Edit the file to suit your installation, as described in the following table.
|
Edit the file to suit your installation, as described in the following table.
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -49,6 +49,8 @@
|
||||||
<li><a href="#multiple">Multiple foaf:Person Profile Pages</a></li>
|
<li><a href="#multiple">Multiple foaf:Person Profile Pages</a></li>
|
||||||
<li><a href="#homePage">Home Page Re-design</a></li>
|
<li><a href="#homePage">Home Page Re-design</a></li>
|
||||||
<li><a href="#rdffiles">Auto-loaded RDF files move to the Home directory</a></li>
|
<li><a href="#rdffiles">Auto-loaded RDF files move to the Home directory</a></li>
|
||||||
|
<li><a href="#language">Support for additional languages</a></li>
|
||||||
|
<li><a href="#extended_lod">More compact responses to Linked data requests</a></li>
|
||||||
<li><a href="#BOGUS">ANYTHING ELSE?</a></li>
|
<li><a href="#BOGUS">ANYTHING ELSE?</a></li>
|
||||||
</ol>
|
</ol>
|
||||||
</li>
|
</li>
|
||||||
|
@ -334,8 +336,9 @@ rdf/tbox/filegraph/tbox/vivo-foaf-1.5.owl
|
||||||
rdf/tbox/filegraph/tbox/vivo-pws-1.5.owl
|
rdf/tbox/filegraph/tbox/vivo-pws-1.5.owl
|
||||||
rdf/tbox/filegraph/tbox/vivo-skos-1.5.owl</pre>
|
rdf/tbox/filegraph/tbox/vivo-skos-1.5.owl</pre>
|
||||||
<p>
|
<p>
|
||||||
If you are using a three-tier build process, you will need to add a single line
|
If you are using a three-tier build process, you will need to add two lines
|
||||||
to the build script so the RDF files will be merged properly across the tiers. So this:
|
to the build script to accomodate the RDF files, and the language support (see below)
|
||||||
|
So this:
|
||||||
<pre><patternset id="appbase.patterns">
|
<pre><patternset id="appbase.patterns">
|
||||||
<include name="src/**/*" />
|
<include name="src/**/*" />
|
||||||
<include name="lib/**/*" />
|
<include name="lib/**/*" />
|
||||||
|
@ -352,6 +355,7 @@ rdf/tbox/filegraph/tbox/vivo-skos-1.5.owl</pre>
|
||||||
<include name="src/**/*" />
|
<include name="src/**/*" />
|
||||||
<include name="lib/**/*" />
|
<include name="lib/**/*" />
|
||||||
<include name="rdf/**/*" />
|
<include name="rdf/**/*" />
|
||||||
|
<include name="languages/**/*" />
|
||||||
<include name="test/**/*" />
|
<include name="test/**/*" />
|
||||||
<include name="themes/**/*" />
|
<include name="themes/**/*" />
|
||||||
<include name="config/*.properties" />
|
<include name="config/*.properties" />
|
||||||
|
@ -362,6 +366,71 @@ rdf/tbox/filegraph/tbox/vivo-skos-1.5.owl</pre>
|
||||||
</patternset></pre>
|
</patternset></pre>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<h4 id="language">Support for additional languages</h4>
|
||||||
|
<p>
|
||||||
|
VIVO 1.6 includes limited support for other languages, in addition to American English.
|
||||||
|
This limited support is described as <em>read-only</em> support on <em>public-facing</em>
|
||||||
|
pages.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<em>Read-only</em> means that there is no provision for editing multi-language
|
||||||
|
data or displays. Property values, ontology labels, etc. must all be provided in RDF files
|
||||||
|
and ingested or otherwise inserted into the data model. The Page Management user interface
|
||||||
|
does not support maintaining pages in multiple languages.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<em>Public-facing</em> means that most of the pages used for site adminstration
|
||||||
|
are only presented in American English.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
These two pages in the VIVO Wiki describe how to
|
||||||
|
<a href="https://wiki.duraspace.org/display/VIVO/Building+a+multi-language+VIVO+instance">
|
||||||
|
Build VIVO with multiple languages</a> and how to
|
||||||
|
<a href="https://wiki.duraspace.org/display/VIVO/Adding+a+language+to+VIVO">
|
||||||
|
Add a new language to VIVO</a>.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h4 id="extended_lod">More compact responses to Linked data requests</h4>
|
||||||
|
<p>
|
||||||
|
In VIVO 1.6, the response to requests for linked data is changed, to be smaller and faster.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
When responding to a request for linked data about an individual, VIVO 1.6 returns:
|
||||||
|
<ul>
|
||||||
|
<li>Data properties of the individual</li>
|
||||||
|
<li>Object relationships to and from the individual</li>
|
||||||
|
<li>The RDF types and RDFS labels for any object that directly relates to the individual</li>
|
||||||
|
</ul>
|
||||||
|
This data is filtered by the usual VIVO privacy policies,
|
||||||
|
so properties such as salary or employee ID number may not be revealed
|
||||||
|
unless the requester has been properly authenticated.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
VIVO releases prior to VIVO 1.6 returned a more complex set of statements,
|
||||||
|
referred to as "extended linked data":
|
||||||
|
<ul>
|
||||||
|
<li>Data properties of the individual</li>
|
||||||
|
<li>Object relationships from the individual</li>
|
||||||
|
<li>All properties of the context nodes (positions, roles, etc.) that are associated with the individual.</li>
|
||||||
|
<li>Labels of objects that are joined to the individual through context nodes.</li>
|
||||||
|
<li>Full details of time intervals that are attached to context nodes: start, end, precision.</li>
|
||||||
|
</ul>
|
||||||
|
As above, this data was filtered by the VIVO privacy policies.
|
||||||
|
Although these additional items were included,
|
||||||
|
extended linked data was based only on relationships from the individual.
|
||||||
|
Relationships to the individual were not included.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Extended linked data was costly to produce, in terms of resources,
|
||||||
|
because it required a recursive search of the data model.
|
||||||
|
Extended linked data typically contained 50% more information than its non-extended equivalent,
|
||||||
|
and took more than 10 times as long to produce.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
VIVO release 1.6 can be configured to produce extended linked data like previous releases.
|
||||||
|
However, extended linked data will not be supported in future releases.
|
||||||
|
</p>
|
||||||
|
|
||||||
<h4 id="BOGUS">ANYTHING ELSE?</h4>
|
<h4 id="BOGUS">ANYTHING ELSE?</h4>
|
||||||
<p>
|
<p>
|
||||||
</p>
|
</p>
|
||||||
|
@ -394,7 +463,7 @@ rdf/tbox/filegraph/tbox/vivo-skos-1.5.owl</pre>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
<h3 id="#upgrade_process">III. Upgrade Instructions</h3>
|
<h3 id="upgrade_process">III. Upgrade Instructions</h3>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
1. Download the new distribution file and unpack it into a new
|
1. Download the new distribution file and unpack it into a new
|
||||||
|
@ -402,9 +471,9 @@ rdf/tbox/filegraph/tbox/vivo-skos-1.5.owl</pre>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
2. Separate your existing <code>deploy.properties</code> file into two files,
|
2. Separate your existing <code>deploy.properties</code> file into two files,
|
||||||
as described below. The new <code>build.properties</code> file is stored in
|
as described below. Store the new <code>build.properties</code> file in
|
||||||
the top level of the VIVO distribution directory. The new <code>runtime.properties</code>
|
the top level of the VIVO distribution directory. Store the new <code>runtime.properties</code>
|
||||||
file is stored in your Vitro home directory.
|
file in your VIVO home directory.
|
||||||
<br>
|
<br>
|
||||||
</p>
|
</p>
|
||||||
<table border='1' bordercolor="#CCCCCC" cellspacing="5">
|
<table border='1' bordercolor="#CCCCCC" cellspacing="5">
|
||||||
|
@ -441,9 +510,48 @@ rdf/tbox/filegraph/tbox/vivo-skos-1.5.owl</pre>
|
||||||
<p>
|
<p>
|
||||||
If you prefer, you may start with <code>example.build.properties</code>
|
If you prefer, you may start with <code>example.build.properties</code>
|
||||||
and <code>example.runtime.properties</code>, make copies,
|
and <code>example.runtime.properties</code>, make copies,
|
||||||
and edit them to suit your installation.
|
and edit them to suit your installation. Remember, the <code>runtime.properties</code> file
|
||||||
|
goes into your VIVO home directory.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
The properties below are new to <code>build.properties</code>. They are optional,
|
||||||
|
so you need not add them unless you want a value other than the default.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<!-- runtime.properties table from install.html -->
|
||||||
|
</p>
|
||||||
|
<table border='1' bordercolor="#CCCCCC" cellspacing="5">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<th>
|
||||||
|
Property Name
|
||||||
|
</th>
|
||||||
|
<th>
|
||||||
|
Example Value
|
||||||
|
</th>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">
|
||||||
|
Languages (in addition to American English) that will be built into your
|
||||||
|
VIVO site. The languages must be found in the
|
||||||
|
<code>languages</code> directory of the VIVO distribution.
|
||||||
|
See <a href="https://wiki.duraspace.org/display/VIVO/Building+a+multi-language+VIVO+instance">
|
||||||
|
the VIVO Wiki</a> for more information.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr class="odd_row blue">
|
||||||
|
<td>
|
||||||
|
languages.addToBuild
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
es_MX
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
The properties below are new to <code>runtime.properties</code>. They are optional,
|
The properties below are new to <code>runtime.properties</code>. They are optional,
|
||||||
so you need not add them, unless you want a value other than the default.
|
so you need not add them, unless you want a value other than the default.
|
||||||
|
@ -550,7 +658,7 @@ rdf/tbox/filegraph/tbox/vivo-skos-1.5.owl</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="odd_row blue">
|
<tr class="odd_row blue">
|
||||||
<td>
|
<td>
|
||||||
developer.defeatI18nCache = true
|
developer.defeatI18nCache
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
false
|
false
|
||||||
|
@ -568,7 +676,7 @@ rdf/tbox/filegraph/tbox/vivo-skos-1.5.owl</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="odd_row blue">
|
<tr class="odd_row blue">
|
||||||
<td>
|
<td>
|
||||||
developer.insertFreemarkerDelimiters = true
|
developer.insertFreemarkerDelimiters
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
false
|
false
|
||||||
|
@ -583,7 +691,7 @@ rdf/tbox/filegraph/tbox/vivo-skos-1.5.owl</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="odd_row blue">
|
<tr class="odd_row blue">
|
||||||
<td>
|
<td>
|
||||||
homePage.geoFocusMaps = enabled
|
homePage.geoFocusMaps
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
enabled
|
enabled
|
||||||
|
@ -603,13 +711,35 @@ rdf/tbox/filegraph/tbox/vivo-skos-1.5.owl</pre>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="odd_row blue">
|
<tr class="odd_row blue">
|
||||||
<td>
|
<td>
|
||||||
MultiViews.profilePageTypes=disabled
|
MultiViews.profilePageTypes
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
disabled
|
disabled
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">
|
||||||
|
Setting this property causes VIVO 1.6 to produce extended responses to requests
|
||||||
|
for linked data. This provides compatibility with earlier releases.
|
||||||
|
The default is <code>false</code>.
|
||||||
|
<br/>
|
||||||
|
Extended linked data is costly, in terms of server resource. Typically, extended
|
||||||
|
linke data contains 50% more information than its non-extended equivalent, and
|
||||||
|
takes 10 times as long to produce.
|
||||||
|
<br/>
|
||||||
|
<b>Extended linked data will not be supported in future releases of VIVO.</b>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr class="odd_row blue">
|
||||||
|
<td>
|
||||||
|
serveExtendedLinkedData
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
true
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
|
@ -37,3 +37,10 @@ webapp.name = vivo
|
||||||
# This includes uploaded files (usually images) and the search index.
|
# This includes uploaded files (usually images) and the search index.
|
||||||
#
|
#
|
||||||
vitro.home = /usr/local/vivo/home
|
vitro.home = /usr/local/vivo/home
|
||||||
|
|
||||||
|
#
|
||||||
|
# Additional languages to be built into your VIVO site. The locales specified
|
||||||
|
# here must appear as sub-directories of [vivo]/languages in the distribution.
|
||||||
|
# Find more information on the VIVO Wiki (https://wiki.duraspace.org/display/VIVO).
|
||||||
|
#
|
||||||
|
#languages.addToBuild =
|
||||||
|
|
|
@ -486,16 +486,14 @@ academic_studies_or_other = Otros estudios académicos o de formación
|
||||||
edit_mailing_address = Editar Dirección postal
|
edit_mailing_address = Editar Dirección postal
|
||||||
create_mailing_address = Cree Dirección postal
|
create_mailing_address = Cree Dirección postal
|
||||||
mailing_address_for = dirección postal
|
mailing_address_for = dirección postal
|
||||||
select_a_country = Por favor, seleccione un país.
|
enter_a_country = Por favor, introduzca un valor en el campo País.
|
||||||
enter_address1_value = Por favor, introduzca un valor en el campo Dirección Línea 1.
|
enter_street_address = Por favor, introduzca un valor en el campo Dirección.
|
||||||
enter_a_city = Por favor, introduzca un valor en el campo Ciudad.
|
enter_a_locality = Por favor, introduzca un valor en el campo Ciudad/Localidad.
|
||||||
enter_postal_code = Por favor, introduzca un valor en el campo Código Postal.
|
enter_postal_code = Por favor, introduzca un valor en el campo Código Postal.
|
||||||
country = País
|
country = País
|
||||||
street_Address1 = Dirección 1
|
street_address = Dirección
|
||||||
street_Address2 = Dirección 2
|
city_locality = Ciudad/Localidad
|
||||||
street_Address3 = Dirección 3
|
region = Estado/Provincia/Región
|
||||||
city = Ciudad
|
|
||||||
state = Estado
|
|
||||||
postal_code = Código Postal
|
postal_code = Código Postal
|
||||||
|
|
||||||
posn_entry_for = entrada de la posición de
|
posn_entry_for = entrada de la posición de
|
||||||
|
@ -721,7 +719,6 @@ researchers_in = investigadores en
|
||||||
no_faculty_found = No hay miembros de la facultad encontrados.
|
no_faculty_found = No hay miembros de la facultad encontrados.
|
||||||
placeholder_image = imagen de marcador de posición
|
placeholder_image = imagen de marcador de posición
|
||||||
view_all_departments = ver todos los departamentos académicos
|
view_all_departments = ver todos los departamentos académicos
|
||||||
view_all_faculty = ver todos los profesores
|
|
||||||
no_departments_found = No hay departamentos académicos encontrados.
|
no_departments_found = No hay departamentos académicos encontrados.
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -768,7 +765,6 @@ no_matching_entities_found = No hay entidades que coincidan encontrados
|
||||||
clear_search_query = claro consulta de búsqueda
|
clear_search_query = claro consulta de búsqueda
|
||||||
short_max_entity_note = Un máximo de 10 entidades se pueden comparar.
|
short_max_entity_note = Un máximo de 10 entidades se pueden comparar.
|
||||||
information_capitalized = Información
|
information_capitalized = Información
|
||||||
entity_type = Del tipo de entidad
|
|
||||||
content_requires_flash = Este contenido requiere Adobe Flash Player.
|
content_requires_flash = Este contenido requiere Adobe Flash Player.
|
||||||
get_flash = Obtener Flash
|
get_flash = Obtener Flash
|
||||||
of_pubs = de los pubs.
|
of_pubs = de los pubs.
|
||||||
|
@ -816,3 +812,13 @@ selected_presentation = Presentación Seleccionado
|
||||||
event_capitalized = Evento
|
event_capitalized = Evento
|
||||||
collection_capitalized = Colección
|
collection_capitalized = Colección
|
||||||
item_capitalized = Artículo
|
item_capitalized = Artículo
|
||||||
|
telephone_number_for = número de teléfono para
|
||||||
|
telephone_number = Número de Teléfono
|
||||||
|
enter_telephone_number = Por favor, introduzca un valor en el campo Número de teléfono.
|
||||||
|
email_address = Dirección de Correo Electrónico
|
||||||
|
email_address_for = dirección de correo electrónico para
|
||||||
|
enter_email_address = Por favor, introduzca un valor en el campo Dirección de Correo Electrónico.
|
||||||
|
full_name = Nombre y apellidos
|
||||||
|
full_name_for = nombre y apellidos para
|
||||||
|
first_name = Primer nombre
|
||||||
|
last_name = Apellido
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
@ -1,47 +0,0 @@
|
||||||
<rdf:RDF
|
|
||||||
xmlns:vitro-public="http://vitro.mannlib.cornell.edu/ns/vitro/public#"
|
|
||||||
xmlns:c4o="http://purl.org/spar/c4o/"
|
|
||||||
xmlns:ero="http://purl.obolibrary.org/obo/"
|
|
||||||
xmlns:pvs="http://vivoweb.org/ontology/provenance-support#"
|
|
||||||
xmlns:owl2="http://www.w3.org/2006/12/owl2-xml#"
|
|
||||||
xmlns:scirr="http://vivoweb.org/ontology/scientific-research-resource#"
|
|
||||||
xmlns:vivo="http://vivoweb.org/ontology/core#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:bibo="http://purl.org/ontology/bibo/"
|
|
||||||
xmlns:afn="http://jena.hpl.hp.com/ARQ/function#"
|
|
||||||
xmlns:foaf="http://xmlns.com/foaf/0.1/"
|
|
||||||
xmlns:scires="http://vivoweb.org/ontology/scientific-research#"
|
|
||||||
xmlns:dcterms="http://purl.org/dc/terms/"
|
|
||||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
|
||||||
xmlns:geo="http://aims.fao.org/aos/geopolitical.owl#"
|
|
||||||
xmlns:skco="http://www.w3.org/2004/02/skos/core#"
|
|
||||||
xmlns:event="http://purl.org/NET/c4dm/event.owl#"
|
|
||||||
xmlns:dcelem="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
|
|
||||||
xmlns:vann="http://purl.org/vocab/vann/"
|
|
||||||
xmlns:skos="http://www.w3.org/2008/05/skos#"
|
|
||||||
xmlns:swvs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
|
|
||||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
|
||||||
xmlns:fabio="http://purl.org/spar/fabio/"
|
|
||||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
|
|
||||||
|
|
||||||
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal"
|
|
||||||
>0.7</owl:versionInfo>
|
|
||||||
|
|
||||||
|
|
||||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#ConceptSemanticType">
|
|
||||||
<vitro:exampleAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
|
|
||||||
>Semantic Type for given concept, for example UMLS's type returned for concepts</vitro:exampleAnnot>
|
|
||||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
|
|
||||||
>Semantic Type for given concept, for example UMLS's type returned for concepts.</vitro:descriptionAnnot>
|
|
||||||
|
|
||||||
<vitro:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
|
|
||||||
>Concept Semantic Type</vitro:shortDef>
|
|
||||||
</owl:Class>
|
|
||||||
|
|
||||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#hasConceptSemanticType">
|
|
||||||
<rdfs:range rdf:resource="http://vivoweb.org/ontology/core#ConceptSemanticType"/>
|
|
||||||
<owl:inverseOf rdf:resource="http://vivoweb.org/ontology/core#isConceptSemanticTypeOf"/>
|
|
||||||
</owl:ObjectProperty>
|
|
||||||
|
|
||||||
</rdf:RDF>
|
|
|
@ -3,9 +3,6 @@ PREFIX owl: <http://www.w3.org/2002/07/owl#>
|
||||||
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
||||||
|
|
||||||
ASK {
|
ASK {
|
||||||
graph <http://vitro.mannlib.cornell.edu/default/vitro-kb-applicationMetadata> {
|
|
||||||
<http://vitro.mannlib.cornell.edu/default/vitro-kb-2> vitro:updatedToOntology ?u .
|
<http://vitro.mannlib.cornell.edu/default/vitro-kb-2> vitro:updatedToOntology ?u .
|
||||||
?u vitro:updatedOntology <http://vivoweb.org/ontology/core> .
|
?u vitro:toOntologyVersion "1.6" .
|
||||||
?u vitro:toOntologyVersion "1.5" .
|
|
||||||
}
|
|
||||||
}
|
}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,562 @@
|
||||||
|
<rdf:RDF
|
||||||
|
xmlns:vitro-public="http://vitro.mannlib.cornell.edu/ns/vitro/public#"
|
||||||
|
xmlns:geo="http://aims.fao.org/aos/geopolitical.owl#"
|
||||||
|
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
|
||||||
|
xmlns:ero="http://purl.obolibrary.org/obo/"
|
||||||
|
xmlns:event="http://purl.org/NET/c4dm/event.owl#"
|
||||||
|
xmlns:pvs="http://vivoweb.org/ontology/provenance-support#"
|
||||||
|
xmlns:dcelem="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:j.0="http://www.w3.org/2006/12/owl2-xml#"
|
||||||
|
xmlns:vivo="http://vivoweb.org/ontology/core#"
|
||||||
|
xmlns:j.1="http://purl.org/vocab/vann/"
|
||||||
|
xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:j.2="http://www.w3.org/2008/05/skos#"
|
||||||
|
xmlns:afn="http://jena.hpl.hp.com/ARQ/function#"
|
||||||
|
xmlns:bibo="http://purl.org/ontology/bibo/"
|
||||||
|
xmlns:foaf="http://xmlns.com/foaf/0.1/"
|
||||||
|
xmlns:j.3="http://www.w3.org/2003/06/sw-vocab-status/ns#"
|
||||||
|
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||||
|
xmlns:dcterms="http://purl.org/dc/terms/"
|
||||||
|
xmlns:scires="http://vivoweb.org/ontology/scientific-research#"
|
||||||
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||||
|
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" >
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasCoordinate">
|
||||||
|
<rdfs:label xml:lang="en-US">hasCoordinate</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameShortFR">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nameShortFR</rdfs:label>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#disputed">
|
||||||
|
<rdfs:label xml:lang="en-US">disputed</rdfs:label>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayRankAnnot>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#area">
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayRankAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayLimitAnnot>
|
||||||
|
<rdfs:label xml:lang="en-US">area</rdfs:label>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#agriculturalAreaNotes">
|
||||||
|
<rdfs:label xml:lang="en-US">agriculturalAreaNotes</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameListZH">
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nameListZH</rdfs:label>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameListES">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nameListES</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#codeFAOTERM">
|
||||||
|
<rdfs:label xml:lang="en-US">codeFAOTERM</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameListAR">
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nameListAR</rdfs:label>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#populationYear">
|
||||||
|
<rdfs:label xml:lang="en-US">populationYear</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#codeCurrency">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<rdfs:label xml:lang="en-US">codeCurrency</rdfs:label>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nationalityES">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nationalityES</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameOfficialRU">
|
||||||
|
<rdfs:label xml:lang="en-US">nameOfficialRU</rdfs:label>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#economic_region">
|
||||||
|
<rdfs:label xml:lang="en-US">economic_region</rdfs:label>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayRankAnnot>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#codeUNDP">
|
||||||
|
<rdfs:label xml:lang="en-US">codeUNDP</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#non_self_governing">
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayLimitAnnot>
|
||||||
|
<rdfs:label xml:lang="en-US">non_self_governing</rdfs:label>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayRankAnnot>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameShortES">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nameShortES</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#isPredecessorOf">
|
||||||
|
<rdfs:label xml:lang="en-US">isPredecessorOf</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</vitro:selectFromExistingAnnot>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#GDPTotalInCurrentPrices">
|
||||||
|
<rdfs:label xml:lang="en-US">GDPTotalInCurrentPrices</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasMaxLatitude">
|
||||||
|
<rdfs:label xml:lang="en-US">hasMaxLatitude</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasStatistics">
|
||||||
|
<rdfs:label xml:lang="en-US">hasStatistics</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#other">
|
||||||
|
<rdfs:label xml:lang="en-US">other</rdfs:label>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayRankAnnot>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasCurrency">
|
||||||
|
<rdfs:label xml:lang="en-US">hasCurrency</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#GDP">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<rdfs:label xml:lang="en-US">GDP</rdfs:label>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#landArea">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<rdfs:label xml:lang="en-US">landArea</rdfs:label>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameListIT">
|
||||||
|
<rdfs:label xml:lang="en-US">nameListIT</rdfs:label>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#countryAreaNotes">
|
||||||
|
<rdfs:label xml:lang="en-US">countryAreaNotes</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#populationUnit">
|
||||||
|
<rdfs:label xml:lang="en-US">populationUnit</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameCurrencyRU">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nameCurrencyRU</rdfs:label>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasBorderWith">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</vitro:selectFromExistingAnnot>
|
||||||
|
<rdfs:label xml:lang="en-US">hasBorderWith</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#landAreaUnit">
|
||||||
|
<rdfs:label xml:lang="en-US">landAreaUnit</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nationalityAR">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nationalityAR</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl">
|
||||||
|
<vitro:ontologyPrefixAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">geo</vitro:ontologyPrefixAnnot>
|
||||||
|
<rdfs:label xml:lang="en-US">geopolitical.owl</rdfs:label>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameCurrencyEN">
|
||||||
|
<rdfs:label xml:lang="en-US">nameCurrencyEN</rdfs:label>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameOfficialAR">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nameOfficialAR</rdfs:label>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#validSince">
|
||||||
|
<rdfs:label xml:lang="en-US">validSince</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#isInGroup">
|
||||||
|
<rdfs:label xml:lang="en-US">isInGroup</rdfs:label>
|
||||||
|
<vitro:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</vitro:selectFromExistingAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameListEN">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nameListEN</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasCode">
|
||||||
|
<rdfs:label xml:lang="en-US">hasCode</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameListFR">
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nameListFR</rdfs:label>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#countryAreaYear">
|
||||||
|
<rdfs:label xml:lang="en-US">countryAreaYear</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#organization">
|
||||||
|
<rdfs:label xml:lang="en-US">organization</rdfs:label>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayRankAnnot>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasShortName">
|
||||||
|
<rdfs:label xml:lang="en-US">hasShortName</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#codeGAUL">
|
||||||
|
<rdfs:label xml:lang="en-US">codeGAUL</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameListRU">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nameListRU</rdfs:label>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#populationNotes">
|
||||||
|
<rdfs:label xml:lang="en-US">populationNotes</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasMinLongitude">
|
||||||
|
<rdfs:label xml:lang="en-US">hasMinLongitude</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameShortAR">
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nameShortAR</rdfs:label>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#validUntil">
|
||||||
|
<rdfs:label xml:lang="en-US">validUntil</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasMember">
|
||||||
|
<rdfs:label xml:lang="en-US">hasMember</rdfs:label>
|
||||||
|
<vitro:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</vitro:selectFromExistingAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasMinLatitude">
|
||||||
|
<rdfs:label xml:lang="en-US">hasMinLatitude</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#GDPYear">
|
||||||
|
<rdfs:label xml:lang="en-US">GDPYear</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#agriculturalAreaYear">
|
||||||
|
<rdfs:label xml:lang="en-US">agriculturalAreaYear</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameOfficialEN">
|
||||||
|
<rdfs:label xml:lang="en-US">nameOfficialEN</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#territory">
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayRankAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayLimitAnnot>
|
||||||
|
<rdfs:label xml:lang="en-US">territory</rdfs:label>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#agriculturalArea">
|
||||||
|
<rdfs:label xml:lang="en-US">agriculturalArea</rdfs:label>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameCurrencyAR">
|
||||||
|
<rdfs:label xml:lang="en-US">nameCurrencyAR</rdfs:label>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameOfficialZH">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nameOfficialZH</rdfs:label>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#GDPNotes">
|
||||||
|
<rdfs:label xml:lang="en-US">GDPNotes</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nationalityZH">
|
||||||
|
<rdfs:label xml:lang="en-US">nationalityZH</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameOfficialES">
|
||||||
|
<rdfs:label xml:lang="en-US">nameOfficialES</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#populationTotal">
|
||||||
|
<rdfs:label xml:lang="en-US">populationTotal</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#population">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<rdfs:label xml:lang="en-US">population</rdfs:label>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nationalityFR">
|
||||||
|
<rdfs:label xml:lang="en-US">nationalityFR</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameCurrencyZH">
|
||||||
|
<rdfs:label xml:lang="en-US">nameCurrencyZH</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameOfficialIT">
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nameOfficialIT</rdfs:label>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#landAreaYear">
|
||||||
|
<rdfs:label xml:lang="en-US">landAreaYear</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nationalityIT">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nationalityIT</rdfs:label>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#group">
|
||||||
|
<rdfs:label xml:lang="en-US">group</rdfs:label>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayRankAnnot>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameShortEN">
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nameShortEN</rdfs:label>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameCurrencyIT">
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nameCurrencyIT</rdfs:label>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasListName">
|
||||||
|
<rdfs:label xml:lang="en-US">hasListName</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#agriculturalAreaTotal">
|
||||||
|
<rdfs:label xml:lang="en-US">agriculturalAreaTotal</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#landAreaNotes">
|
||||||
|
<rdfs:label xml:lang="en-US">landAreaNotes</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasMaxLongitude">
|
||||||
|
<rdfs:label xml:lang="en-US">hasMaxLongitude</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameShortRU">
|
||||||
|
<rdfs:label xml:lang="en-US">nameShortRU</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nationalityEN">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nationalityEN</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#codeISO3">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<rdfs:label xml:lang="en-US">codeISO3</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#special_group">
|
||||||
|
<rdfs:label xml:lang="en-US">special_group</rdfs:label>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayRankAnnot>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#countryAreaUnit">
|
||||||
|
<rdfs:label xml:lang="en-US">countryAreaUnit</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasOfficialName">
|
||||||
|
<rdfs:label xml:lang="en-US">hasOfficialName</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#codeDBPediaID">
|
||||||
|
<rdfs:label xml:lang="en-US">codeDBPediaID</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#countryArea">
|
||||||
|
<rdfs:label xml:lang="en-US">countryArea</rdfs:label>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameShortIT">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nameShortIT</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#codeFAOSTAT">
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<rdfs:label xml:lang="en-US">codeFAOSTAT</rdfs:label>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameCurrencyFR">
|
||||||
|
<rdfs:label xml:lang="en-US">nameCurrencyFR</rdfs:label>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#GDPUnit">
|
||||||
|
<rdfs:label xml:lang="en-US">GDPUnit</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#codeAGROVOC">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<rdfs:label xml:lang="en-US">codeAGROVOC</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasNationality">
|
||||||
|
<rdfs:label xml:lang="en-US">hasNationality</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameShortZH">
|
||||||
|
<rdfs:label xml:lang="en-US">nameShortZH</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#isSuccessorOf">
|
||||||
|
<vitro:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</vitro:selectFromExistingAnnot>
|
||||||
|
<rdfs:label xml:lang="en-US">isSuccessorOf</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameCurrencyES">
|
||||||
|
<rdfs:label xml:lang="en-US">nameCurrencyES</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#countryAreaTotal">
|
||||||
|
<rdfs:label xml:lang="en-US">countryAreaTotal</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#agriculturalAreaUnit">
|
||||||
|
<rdfs:label xml:lang="en-US">agriculturalAreaUnit</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#geographical_region">
|
||||||
|
<rdfs:label xml:lang="en-US">Transnational Region</rdfs:label>
|
||||||
|
<vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouplocations"/>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayRankAnnot>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#codeISO2">
|
||||||
|
<rdfs:label xml:lang="en-US">codeISO2</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameOfficialFR">
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nameOfficialFR</rdfs:label>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nationalityRU">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<rdfs:label xml:lang="en-US">nationalityRU</rdfs:label>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#self_governing">
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</vitro:displayRankAnnot>
|
||||||
|
<rdfs:label xml:lang="en-US">self_governing</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#codeUN">
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<rdfs:label xml:lang="en-US">codeUN</rdfs:label>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#isAdministeredBy">
|
||||||
|
<vitro:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</vitro:selectFromExistingAnnot>
|
||||||
|
<rdfs:label xml:lang="en-US">isAdministeredBy</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#landAreaTotal">
|
||||||
|
<rdfs:label xml:lang="en-US">landAreaTotal</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/>
|
||||||
|
</rdf:Description>
|
||||||
|
</rdf:RDF>
|
|
@ -0,0 +1,33 @@
|
||||||
|
<rdf:RDF
|
||||||
|
xmlns:geo="http://aims.fao.org/aos/geopolitical.owl#"
|
||||||
|
xmlns:vitro-public="http://vitro.mannlib.cornell.edu/ns/vitro/public#"
|
||||||
|
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
|
||||||
|
xmlns:ero="http://purl.obolibrary.org/obo/"
|
||||||
|
xmlns:event="http://purl.org/NET/c4dm/event.owl#"
|
||||||
|
xmlns:pvs="http://vivoweb.org/ontology/provenance-support#"
|
||||||
|
xmlns:dcelem="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:j.0="http://www.w3.org/2006/12/owl2-xml#"
|
||||||
|
xmlns:vivo="http://vivoweb.org/ontology/core#"
|
||||||
|
xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
|
||||||
|
xmlns:j.1="http://purl.org/vocab/vann/"
|
||||||
|
xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:j.2="http://www.w3.org/2008/05/skos#"
|
||||||
|
xmlns:afn="http://jena.hpl.hp.com/ARQ/function#"
|
||||||
|
xmlns:bibo="http://purl.org/ontology/bibo/"
|
||||||
|
xmlns:foaf="http://xmlns.com/foaf/0.1/"
|
||||||
|
xmlns:j.3="http://www.w3.org/2003/06/sw-vocab-status/ns#"
|
||||||
|
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||||
|
xmlns:dcterms="http://purl.org/dc/terms/"
|
||||||
|
xmlns:scires="http://vivoweb.org/ontology/scientific-research#"
|
||||||
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||||
|
xmlns:swrl="http://www.w3.org/2003/11/swrl#"
|
||||||
|
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" >
|
||||||
|
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#isDefinedBy">
|
||||||
|
<rdfs:label xml:lang="en-US">is defined by</rdfs:label>
|
||||||
|
<vitro:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</vitro:selectFromExistingAnnot>
|
||||||
|
<vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
</rdf:RDF>
|
|
@ -0,0 +1,267 @@
|
||||||
|
<rdf:RDF
|
||||||
|
xmlns:vitro-public="http://vitro.mannlib.cornell.edu/ns/vitro/public#"
|
||||||
|
xmlns:c4o="http://purl.org/spar/c4o/"
|
||||||
|
xmlns:geo="http://aims.fao.org/aos/geopolitical.owl#"
|
||||||
|
xmlns:skco="http://www.w3.org/2004/02/skos/core#"
|
||||||
|
xmlns:ero="http://purl.obolibrary.org/obo/"
|
||||||
|
xmlns:event="http://purl.org/NET/c4dm/event.owl#"
|
||||||
|
xmlns:pvs="http://vivoweb.org/ontology/provenance-support#"
|
||||||
|
xmlns:dcelem="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:j.0="http://www.w3.org/2006/12/owl2-xml#"
|
||||||
|
xmlns:vivo="http://vivoweb.org/ontology/core#"
|
||||||
|
xmlns:vann="http://purl.org/vocab/vann/"
|
||||||
|
xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:skos="http://www.w3.org/2008/05/skos#"
|
||||||
|
xmlns:afn="http://jena.hpl.hp.com/ARQ/function#"
|
||||||
|
xmlns:bibo="http://purl.org/ontology/bibo/"
|
||||||
|
xmlns:foaf="http://xmlns.com/foaf/0.1/"
|
||||||
|
xmlns:swvs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
|
||||||
|
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||||
|
xmlns:dcterms="http://purl.org/dc/terms/"
|
||||||
|
xmlns:scires="http://vivoweb.org/ontology/scientific-research#"
|
||||||
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||||
|
xmlns:fabio="http://purl.org/spar/fabio/"
|
||||||
|
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
|
||||||
|
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/">
|
||||||
|
<rdfs:label xml:lang="en-US">Research Resources (eagle-i)</rdfs:label>
|
||||||
|
<vitro:ontologyPrefixAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
|
||||||
|
>ero</vitro:ontologyPrefixAnnot>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000020">
|
||||||
|
<rdfs:label xml:lang="en-US">Biological Specimen</rdfs:label>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayRankAnnot>
|
||||||
|
<vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/scientific-research#studyPopulationCount">
|
||||||
|
<rdfs:label xml:lang="en-US">study population count</rdfs:label>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>20</vitro:displayRankAnnot>
|
||||||
|
<vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/scientific-research#documentationFor">
|
||||||
|
<rdfs:label xml:lang="en-US">documentation for</rdfs:label>
|
||||||
|
<vitro:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean"
|
||||||
|
>true</vitro:selectFromExistingAnnot>
|
||||||
|
<vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/OBI_0000272">
|
||||||
|
<rdfs:label xml:lang="en-US">Protocol</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>15</vitro:displayRankAnnot>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/scientific-research#Phase4ClinicalTrial">
|
||||||
|
<rdfs:label xml:lang="en-US">Phase 4 Clinical Trial</rdfs:label>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>4</vitro:displayRankAnnot>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/scientific-research#accessProvidedBy">
|
||||||
|
<rdfs:label xml:lang="en-US">access provided by</rdfs:label>
|
||||||
|
<vitro:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean"
|
||||||
|
>true</vitro:selectFromExistingAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/scientific-research">
|
||||||
|
<rdfs:label xml:lang="en-US">Scientific Research</rdfs:label>
|
||||||
|
<vitro:ontologyPrefixAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
|
||||||
|
>scires</vitro:ontologyPrefixAnnot>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000015">
|
||||||
|
<rdfs:label xml:lang="en-US">Human Study</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayRankAnnot>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/scientific-research#Phase2ClinicalTrial">
|
||||||
|
<rdfs:label xml:lang="en-US">Phase 2 Clinical Trial</rdfs:label>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>5</vitro:displayRankAnnot>
|
||||||
|
<vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000392">
|
||||||
|
<rdfs:label xml:lang="en-US">Storage Service</rdfs:label>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupactivities"/>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>20</vitro:displayRankAnnot>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayLimitAnnot>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/scientific-research#nctId">
|
||||||
|
<rdfs:label xml:lang="en-US">National Clinical Trials (NCT) number</rdfs:label>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>4</vitro:displayRankAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
|
||||||
|
>ClinicalTrials.gov registry number</vitro:publicDescriptionAnnot>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000460">
|
||||||
|
<rdfs:label xml:lang="en-US">has documentation</rdfs:label>
|
||||||
|
<vitro:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean"
|
||||||
|
>true</vitro:selectFromExistingAnnot>
|
||||||
|
<vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000394">
|
||||||
|
<rdfs:label xml:lang="en-US">Production Service</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupactivities"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>20</vitro:displayRankAnnot>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000481">
|
||||||
|
<rdfs:label xml:lang="en-US">realizes protocol</rdfs:label>
|
||||||
|
<vitro:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean"
|
||||||
|
>true</vitro:selectFromExistingAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000006">
|
||||||
|
<rdfs:label xml:lang="en-US">Reagent</rdfs:label>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayRankAnnot>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/scientific-research#Phase1ClinicalTrial">
|
||||||
|
<rdfs:label xml:lang="en-US">Phase 1 Clinical Trial</rdfs:label>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>4</vitro:displayRankAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayLimitAnnot>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/OBI_0100026">
|
||||||
|
<rdfs:label xml:lang="en-US">Organism</rdfs:label>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayRankAnnot>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000016">
|
||||||
|
<rdfs:label xml:lang="en-US">Clinical Trial</rdfs:label>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayRankAnnot>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/scientific-research#irbNumber">
|
||||||
|
<rdfs:label xml:lang="en-US">Institutional Review Board (IRB) number</rdfs:label>
|
||||||
|
<vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/>
|
||||||
|
<vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
|
||||||
|
>Institutional Review Board (IRB) number for a Clinical Trial</vitro:publicDescriptionAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/scientific-research#Phase3ClinicalTrial">
|
||||||
|
<rdfs:label xml:lang="en-US">Phase 3 Clinical Trial</rdfs:label>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayRankAnnot>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000004">
|
||||||
|
<rdfs:label xml:lang="en-US">Instrument</rdfs:label>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupequipment"/>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>10</vitro:displayRankAnnot>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000029">
|
||||||
|
<rdfs:label xml:lang="en-US">provides access to</rdfs:label>
|
||||||
|
<vitro:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean"
|
||||||
|
>true</vitro:selectFromExistingAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/scientific-research#Phase0ClinicalTrial">
|
||||||
|
<rdfs:label xml:lang="en-US">Phase 0 Clinical Trial</rdfs:label>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayRankAnnot>
|
||||||
|
<vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>6</vitro:displayLimitAnnot>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000014">
|
||||||
|
<rdfs:label xml:lang="en-US">Research Project</rdfs:label>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayLimitAnnot>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayRankAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupactivities"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://vivoweb.org/ontology/scientific-research#protocolRealizedBy">
|
||||||
|
<rdfs:label xml:lang="en-US">protocol realized by</rdfs:label>
|
||||||
|
<vitro:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean"
|
||||||
|
>true</vitro:selectFromExistingAnnot>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
</rdf:Description>
|
||||||
|
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000391">
|
||||||
|
<rdfs:label xml:lang="en-US">Access Service</rdfs:label>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>20</vitro:displayRankAnnot>
|
||||||
|
<vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupactivities"/>
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
|
||||||
|
>-1</vitro:displayLimitAnnot>
|
||||||
|
</rdf:Description>
|
||||||
|
</rdf:RDF>
|
|
@ -0,0 +1,14 @@
|
||||||
|
<rdf:RDF
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||||
|
xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
|
||||||
|
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" >
|
||||||
|
<rdf:Description rdf:about="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#moniker">
|
||||||
|
<vitro:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#editor"/>
|
||||||
|
<vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#editor"/>
|
||||||
|
<rdfs:label xml:lang="en-US">moniker (deprecated)</rdfs:label>
|
||||||
|
<vitro:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">3</vitro:displayLimitAnnot>
|
||||||
|
<vitro:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">100</vitro:displayRankAnnot>
|
||||||
|
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This property is deprecated.</vitro:descriptionAnnot>
|
||||||
|
</rdf:Description>
|
||||||
|
</rdf:RDF>
|
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,23 @@
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX owl: <http://www.w3.org/2002/07/owl#Thing>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?advisee <http://purl.obolibrary.org/obo/RO_0000053> _:AdviseeRole .
|
||||||
|
_:AdviseeRole <http://purl.obolibrary.org/obo/RO_0000052> ?advisee .
|
||||||
|
_:AdviseeRole a vivo:AdviseeRole .
|
||||||
|
?advisor <http://purl.obolibrary.org/obo/RO_0000053> _:AdvisorRole .
|
||||||
|
_:AdvisorRole <http://purl.obolibrary.org/obo/RO_0000052> ?advisor .
|
||||||
|
_:AdvisorRole a vivo:AdvisorRole .
|
||||||
|
_:AdviseeRole vivo:relatedBy ?advisingRelationship .
|
||||||
|
?advisingRelationship vivo:relates _:AdviseeRole .
|
||||||
|
_:AdvisorRole vivo:relatedBy ?advisingRelationship .
|
||||||
|
?advisingRelationship vivo:relates _:AdvisorRole .
|
||||||
|
?advisingRelationship vivo:relates ?advisee .
|
||||||
|
?advisingRelationship vivo:relates ?advisor .
|
||||||
|
?advisee vivo:relatedBy ?advisingRelationship .
|
||||||
|
?advisor vivo:relatedBy ?advisingRelationship .
|
||||||
|
} WHERE {
|
||||||
|
?advisee vivo:adviseeIn ?advisingRelationship .
|
||||||
|
?advisor vivo:advisorIn ?advisingRelationship .
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX owl: <http://www.w3.org/2002/07/owl#Thing>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?person vivo:relatedBy _:Editorship .
|
||||||
|
_:Editorship a vivo:Editorship .
|
||||||
|
_:Editorship vivo:relates ?person .
|
||||||
|
_:Editorship vivo:relates ?document .
|
||||||
|
?document vivo:relatedBy _:Editorship .
|
||||||
|
} WHERE {
|
||||||
|
{
|
||||||
|
?person vivo:editorOf ?document
|
||||||
|
} UNION {
|
||||||
|
?document vivo:editor ?person
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,15 @@
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX owl: <http://www.w3.org/2002/07/owl#Thing>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?person <http://purl.obolibrary.org/obo/RO_0000053> _:leaderRole .
|
||||||
|
_:leaderRole <http://purl.obolibrary.org/obo/RO_0000052> ?person .
|
||||||
|
_:leaderRole a vivo:LeaderRole .
|
||||||
|
_:leaderRole vivo:roleContributesTo ?org .
|
||||||
|
?org vivo:contributingRole _:leaderRole .
|
||||||
|
} WHERE {
|
||||||
|
{ ?person vivo:currentlyHeadOf ?org }
|
||||||
|
UNION
|
||||||
|
{ ?org vivo:currentlyHeadedBy ?person }
|
||||||
|
}
|
|
@ -0,0 +1,15 @@
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX owl: <http://www.w3.org/2002/07/owl#Thing>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?person <http://purl.obolibrary.org/obo/RO_0000053> _:memberRole .
|
||||||
|
_:memberRole <http://purl.obolibrary.org/obo/RO_0000052> ?person .
|
||||||
|
_:memberRole a vivo:MemberRole .
|
||||||
|
_:memberRole vivo:roleContributesTo ?org .
|
||||||
|
?org vivo:contributingRole _:memberRole .
|
||||||
|
} WHERE {
|
||||||
|
{ ?person vivo:currentMemberOf ?org }
|
||||||
|
UNION
|
||||||
|
{ ?org vivo:hasCurrentMember ?person }
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX owl: <http://www.w3.org/2002/07/owl#Thing>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?agent <http://purl.obolibrary.org/obo/RO_0000053> _:adminRole .
|
||||||
|
_:adminRole a vivo:AdministratorRole .
|
||||||
|
_:adminRole <http://purl.obolibrary.org/obo/RO_0000052> ?agent .
|
||||||
|
_:adminRole vivo:relatedBy ?grant .
|
||||||
|
?grant vivo:relates _:adminRole .
|
||||||
|
?grant vivo:relates ?agent .
|
||||||
|
?agent vivo:relatedBy ?grant .
|
||||||
|
} WHERE {
|
||||||
|
{ ?agent vivo:administers ?grant }
|
||||||
|
UNION
|
||||||
|
{ ?grant vivo:administeredBy ?agent }
|
||||||
|
}
|
|
@ -0,0 +1,11 @@
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX owl: <http://www.w3.org/2002/07/owl#Thing>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?s vivo:orcidId ?orcidURI .
|
||||||
|
?orcidURI a owl:Thing .
|
||||||
|
} WHERE {
|
||||||
|
?s vivo:orcidId ?orcidString
|
||||||
|
FILTER(isLiteral(?orcidString))
|
||||||
|
BIND(IRI(concat("http://orcid.org/", str(?orcidString))) AS ?orcidURI)
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX owl: <http://www.w3.org/2002/07/owl#Thing>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?agent vivo:relatedBy ?grant .
|
||||||
|
?grant vivo:relates ?agent
|
||||||
|
} WHERE {
|
||||||
|
?agent <http://purl.obolibrary.org/obo/RO_0000053> ?role .
|
||||||
|
?role vivo:relatedBy ?grant
|
||||||
|
FILTER NOT EXISTS { ?grant vivo:relates ?agent }
|
||||||
|
}
|
|
@ -0,0 +1,31 @@
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX owl: <http://www.w3.org/2002/07/owl#Thing>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?educationalProcess <http://purl.obolibrary.org/obo/RO_0002234> _:awardedDegree .
|
||||||
|
_:awardedDegree <http://purl.obolibrary.org/obo/RO_0002353> ?educationalProcess .
|
||||||
|
_:awardedDegree a vivo:AwardedDegree .
|
||||||
|
_:awardedDegree vivo:relates ?degree .
|
||||||
|
?degree vivo:relatedBy _:awardedDegree .
|
||||||
|
_:awardedDegree vivo:relates ?person .
|
||||||
|
?person vivo:relatedBy _:awardedDegree .
|
||||||
|
_:awardedDegree vivo:assignedBy ?org .
|
||||||
|
?org vivo:assigns _:awardedDegree .
|
||||||
|
?educationalProcess <http://purl.obolibrary.org/obo/BFO_0000055> ?role .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?educationalProcess .
|
||||||
|
} WHERE {
|
||||||
|
?person <http://purl.obolibrary.org/obo/RO_0000056> ?educationalProcess .
|
||||||
|
?educationalProcess a vivo:EducationalProcess .
|
||||||
|
?educationalProcess <http://purl.obolibrary.org/obo/RO_0002234> ?degree .
|
||||||
|
?degree a vivo:AcademicDegree .
|
||||||
|
OPTIONAL {
|
||||||
|
?educationalProcess <http://purl.obolibrary.org/obo/RO_0000057> ?org .
|
||||||
|
?org a foaf:Organization
|
||||||
|
}
|
||||||
|
OPTIONAL {
|
||||||
|
?educationalProcess vivo:contributingAdvising ?advising .
|
||||||
|
?advising vivo:relates ?role .
|
||||||
|
?role a <http://purl.obolibrary.org/obo/BFO_0000023> .
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
PREFIX arg: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
PREFIX v: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?s arg:ARG_2000028 _:vcard .
|
||||||
|
_:vcard arg:ARG_2000029 ?s .
|
||||||
|
_:vcard a v:Individual .
|
||||||
|
} WHERE {
|
||||||
|
?s a foaf:Person
|
||||||
|
FILTER (
|
||||||
|
EXISTS { ?s foaf:firstName ?firstName } ||
|
||||||
|
EXISTS { ?s foaf:lastName ?lastName } ||
|
||||||
|
EXISTS { ?s vivo:middleName ?middleName } ||
|
||||||
|
EXISTS { ?s vivo:email ?email } ||
|
||||||
|
EXISTS { ?s vivo:primaryEmail ?primaryEmail } ||
|
||||||
|
EXISTS { ?s vivo:phoneNumber ?phoneNumber } ||
|
||||||
|
EXISTS { ?s vivo:primaryPhoneNumber ?primaryPhoneNumber } ||
|
||||||
|
EXISTS { ?s vivo:faxNumber ?faxNumber } ||
|
||||||
|
EXISTS { ?s vivo:mailingAddress ?address } ||
|
||||||
|
EXISTS { ?s vivo:webpage ?webpage }
|
||||||
|
)
|
||||||
|
}
|
|
@ -0,0 +1,21 @@
|
||||||
|
PREFIX arg: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
PREFIX v: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?s arg:ARG_2000028 _:vcard .
|
||||||
|
_:vcard arg:ARG_2000029 ?s .
|
||||||
|
_:vcard a v:Organization .
|
||||||
|
} WHERE {
|
||||||
|
?s a foaf:Organization
|
||||||
|
FILTER (
|
||||||
|
EXISTS { ?s vivo:email ?email } ||
|
||||||
|
EXISTS { ?s vivo:primaryEmail ?primaryEmail } ||
|
||||||
|
EXISTS { ?s vivo:phoneNumber ?phoneNumber } ||
|
||||||
|
EXISTS { ?s vivo:primaryPhoneNumber ?primaryPhoneNumber } ||
|
||||||
|
EXISTS { ?s vivo:faxNumber ?faxNumber } ||
|
||||||
|
EXISTS { ?s vivo:mailingAddress ?address } ||
|
||||||
|
EXISTS { ?s vivo:webpage ?webpage }
|
||||||
|
)
|
||||||
|
}
|
|
@ -0,0 +1,21 @@
|
||||||
|
PREFIX arg: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
PREFIX v: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?s arg:ARG_2000028 _:vcard .
|
||||||
|
_:vcard arg:ARG_2000029 ?s .
|
||||||
|
_:vcard a v:Group .
|
||||||
|
} WHERE {
|
||||||
|
?s a foaf:Group
|
||||||
|
FILTER (
|
||||||
|
EXISTS { ?s vivo:email ?email } ||
|
||||||
|
EXISTS { ?s vivo:primaryEmail ?primaryEmail } ||
|
||||||
|
EXISTS { ?s vivo:phoneNumber ?phoneNumber } ||
|
||||||
|
EXISTS { ?s vivo:primaryPhoneNumber ?primaryPhoneNumber } ||
|
||||||
|
EXISTS { ?s vivo:faxNumber ?faxNumber } ||
|
||||||
|
EXISTS { ?s vivo:mailingAddress ?address } ||
|
||||||
|
EXISTS { ?s vivo:webpage ?webpage }
|
||||||
|
)
|
||||||
|
}
|
|
@ -0,0 +1,15 @@
|
||||||
|
PREFIX arg: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
PREFIX v: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX owl: <http://www.w3.org/2002/07/owl#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?s arg:ARG_2000028 _:vcard .
|
||||||
|
_:vcard arg:ARG_2000029 ?s .
|
||||||
|
_:vcard a v:Individual .
|
||||||
|
} WHERE {
|
||||||
|
?s vivo:webpage ?webpage
|
||||||
|
FILTER NOT EXISTS { ?s a foaf:Agent }
|
||||||
|
FILTER NOT EXISTS { ?s arg:ARG_2000028 ?existingvcard }
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
PREFIX arg: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
PREFIX v: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?vcard v:hasName _:name .
|
||||||
|
_:name a v:Name .
|
||||||
|
_:name v:givenName ?firstName .
|
||||||
|
_:name vivo:middleName ?middleName .
|
||||||
|
_:name v:familyName ?lastName .
|
||||||
|
_:name v:honorificPrefix ?prefix .
|
||||||
|
_:name v:honorificSuffix ?suffix .
|
||||||
|
} WHERE {
|
||||||
|
?s arg:ARG_2000028 ?vcard .
|
||||||
|
OPTIONAL {
|
||||||
|
?s foaf:firstName ?firstName .
|
||||||
|
BIND("yes" as ?test)
|
||||||
|
}
|
||||||
|
OPTIONAL {
|
||||||
|
?s foaf:lastName ?lastName .
|
||||||
|
BIND("yes" as ?test)
|
||||||
|
}
|
||||||
|
OPTIONAL {
|
||||||
|
?s vivo:middleName ?middleName
|
||||||
|
BIND("yes" as ?test)
|
||||||
|
}
|
||||||
|
OPTIONAL {
|
||||||
|
?s bibo:prefixName ?prefix
|
||||||
|
}
|
||||||
|
OPTIONAL {
|
||||||
|
?s bibo:suffixName ?suffix
|
||||||
|
}
|
||||||
|
FILTER(bound(?test))
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
PREFIX arg: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
PREFIX v: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?vcard v:hasTitle _:title .
|
||||||
|
_:title a v:Title .
|
||||||
|
_:title v:title ?preferredTitle .
|
||||||
|
} WHERE {
|
||||||
|
?s arg:ARG_2000028 ?vcard .
|
||||||
|
?s <http://vivoweb.org/ontology/core#preferredTitle> ?preferredTitle .
|
||||||
|
}
|
|
@ -0,0 +1,13 @@
|
||||||
|
PREFIX arg: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
PREFIX v: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?vcard v:hasEmail _:email .
|
||||||
|
_:email a v:Email .
|
||||||
|
_:email v:email ?email .
|
||||||
|
} WHERE {
|
||||||
|
?s arg:ARG_2000028 ?vcard .
|
||||||
|
?s vivo:email ?email
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
PREFIX arg: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
PREFIX v: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?vcard v:hasEmail _:primaryEmail .
|
||||||
|
_:primaryEmail a v:Email .
|
||||||
|
_:primaryEmail a v:Work .
|
||||||
|
_:primaryEmail v:email ?primaryEmail .
|
||||||
|
} WHERE {
|
||||||
|
?s arg:ARG_2000028 ?vcard .
|
||||||
|
?s vivo:primaryEmail ?primaryEmail
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
PREFIX arg: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
PREFIX v: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?vcard v:hasTelephone _:telephone .
|
||||||
|
_:telephone a v:Telephone .
|
||||||
|
_:telephone a v:Voice .
|
||||||
|
_:telephone v:telephone ?phoneNumber .
|
||||||
|
} WHERE {
|
||||||
|
?s arg:ARG_2000028 ?vcard .
|
||||||
|
?s vivo:phoneNumber ?phoneNumber
|
||||||
|
}
|
|
@ -0,0 +1,15 @@
|
||||||
|
PREFIX arg: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
PREFIX v: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?vcard v:hasTelephone _:primaryTelephone .
|
||||||
|
_:primaryTelephone a v:Telephone .
|
||||||
|
_:primaryTelephone a v:Voice .
|
||||||
|
_:primaryTelephone a v:Work .
|
||||||
|
_:primaryTelephone v:telephone ?primaryPhoneNumber .
|
||||||
|
} WHERE {
|
||||||
|
?s arg:ARG_2000028 ?vcard .
|
||||||
|
?s vivo:primaryPhoneNumber ?primaryPhoneNumber
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
PREFIX arg: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
PREFIX v: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?vcard v:hasTelephone _:fax .
|
||||||
|
_:fax a v:Telephone .
|
||||||
|
_:fax a v:Fax.
|
||||||
|
_:fax v:telephone ?faxNumber .
|
||||||
|
} WHERE {
|
||||||
|
?s arg:ARG_2000028 ?vcard .
|
||||||
|
?s vivo:faxNumber ?faxNumber
|
||||||
|
}
|
|
@ -0,0 +1,37 @@
|
||||||
|
PREFIX arg: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
PREFIX v: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?vcard v:hasAddress _:address .
|
||||||
|
_:address a v:Address .
|
||||||
|
_:address v:streetAddress ?streetAddress .
|
||||||
|
_:address v:locality ?addressCity .
|
||||||
|
_:address v:region ?addressState .
|
||||||
|
_:address v:postalCode ?addressPostalCode .
|
||||||
|
_:address v:country ?addressCountry .
|
||||||
|
} WHERE {
|
||||||
|
?s arg:ARG_2000028 ?vcard .
|
||||||
|
?s vivo:mailingAddress ?address .
|
||||||
|
?address vivo:addressCity ?addressCity .
|
||||||
|
?address vivo:addressState ?addressState .
|
||||||
|
?address vivo:addressCountry ?addressCountry .
|
||||||
|
?address vivo:addressPostalCode ?addressPostalCode .
|
||||||
|
OPTIONAL {
|
||||||
|
?address vivo:address1 ?address1 .
|
||||||
|
?address vivo:address2 ?address2 .
|
||||||
|
?address vivo:address3 ?address3 .
|
||||||
|
BIND (CONCAT(?address1, ", ", ?address2, ", ", ?address3) AS ?streetAddress)
|
||||||
|
}
|
||||||
|
OPTIONAL {
|
||||||
|
?address vivo:address1 ?address1 .
|
||||||
|
?address vivo:address2 ?address2 .
|
||||||
|
FILTER NOT EXISTS { ?address vivo:address3 ?address3 }
|
||||||
|
BIND (CONCAT(?address1, ", ", ?address2) AS ?streetAddress)
|
||||||
|
}
|
||||||
|
OPTIONAL {
|
||||||
|
?address vivo:address1 ?address1
|
||||||
|
BIND(?address1 as ?streetAddress)
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
PREFIX arg: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
PREFIX v: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?vcard v:hasURL _:url .
|
||||||
|
_:url a v:URL .
|
||||||
|
_:url v:url ?linkURI .
|
||||||
|
_:url rdfs:label ?linkAnchorText
|
||||||
|
} WHERE {
|
||||||
|
?s arg:ARG_2000028 ?vcard .
|
||||||
|
?s vivo:webpage ?webpage .
|
||||||
|
?webpage vivo:linkURI ?linkURI .
|
||||||
|
OPTIONAL {
|
||||||
|
?webpage vivo:linkAnchorText ?linkAnchorText
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX owl: <http://www.w3.org/2002/07/owl#Thing>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?advisee vivo:adviseeIn ?advisingRelationship .
|
||||||
|
?advisingRelationship vivo:advisee ?advisee .
|
||||||
|
?advisor vivo:advisorIn ?advisingRelationship .
|
||||||
|
?advisingRelationship vivo:advisor ?advisor
|
||||||
|
} WHERE {
|
||||||
|
?advisee vivo:adviseeIn ?advisingRelationship .
|
||||||
|
OPTIONAL {
|
||||||
|
?advisingRelationship vivo:advisee ?advisee .
|
||||||
|
}
|
||||||
|
?advisor vivo:advisorIn ?advisingRelationship .
|
||||||
|
OPTIONAL {
|
||||||
|
?advisingRelationship vivo:advisor ?advisor
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX owl: <http://www.w3.org/2002/07/owl#Thing>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?person vivo:editorOf ?document .
|
||||||
|
?document vivo:editor ?person
|
||||||
|
} WHERE {
|
||||||
|
{
|
||||||
|
?person vivo:editorOf ?document
|
||||||
|
} UNION {
|
||||||
|
?document vivo:editor ?person
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX owl: <http://www.w3.org/2002/07/owl#Thing>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?s vivo:orcidId ?orcidString .
|
||||||
|
} WHERE {
|
||||||
|
?s vivo:orcidId ?orcidString
|
||||||
|
FILTER(isLiteral(?orcidString))
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX owl: <http://www.w3.org/2002/07/owl#Thing>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?educationalProcess <http://purl.obolibrary.org/obo/RO_0002234> ?degree .
|
||||||
|
?degree <http://purl.obolibrary.org/obo/RO_0002353> ?educationalProcess .
|
||||||
|
?educationalProcess <http://purl.obolibrary.org/obo/RO_0000057> ?org .
|
||||||
|
?org <http://purl.obolibrary.org/obo/RO_0000056> ?educationalProcess .
|
||||||
|
} WHERE {
|
||||||
|
?educationalProcess <http://purl.obolibrary.org/obo/RO_0002234> ?degree .
|
||||||
|
?person <http://purl.obolibrary.org/obo/RO_0000056> ?educationalProcess .
|
||||||
|
?degree a vivo:AcademicDegree .
|
||||||
|
OPTIONAL { ?degree <http://purl.obolibrary.org/obo/RO_0002353> ?educationalProcess }
|
||||||
|
OPTIONAL {
|
||||||
|
?educationalProcess <http://purl.obolibrary.org/obo/RO_0000057> ?org .
|
||||||
|
?org a foaf:Organization .
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,67 @@
|
||||||
|
PREFIX arg: <http://purl.obolibrary.org/obo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
PREFIX v: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?s foaf:firstName ?firstName .
|
||||||
|
?s foaf:lastName ?lastName .
|
||||||
|
?s vivo:middleName ?middleName .
|
||||||
|
?s bibo:prefixName ?prefix .
|
||||||
|
?s bibo:suffixName ?suffix .
|
||||||
|
?s vivo:email ?email .
|
||||||
|
?s vivo:primaryEmail ?primaryEmail .
|
||||||
|
?s vivo:phoneNumber ?phoneNumber .
|
||||||
|
?s vivo:primaryPhoneNumber ?primaryPhoneNumber .
|
||||||
|
?s vivo:faxNumber ?faxNumber .
|
||||||
|
?s vivo:mailingAddress ?address .
|
||||||
|
?address ?addressP ?addressO .
|
||||||
|
?s vivo:webpage ?webpage .
|
||||||
|
?webpage ?webpageP ?webpageO .
|
||||||
|
} WHERE {
|
||||||
|
{
|
||||||
|
?s foaf:firstName ?firstName .
|
||||||
|
}
|
||||||
|
UNION {
|
||||||
|
?s foaf:lastName ?lastName .
|
||||||
|
}
|
||||||
|
UNION {
|
||||||
|
?s vivo:middleName ?middleName
|
||||||
|
}
|
||||||
|
UNION {
|
||||||
|
?s bibo:prefixName ?prefix
|
||||||
|
}
|
||||||
|
UNION {
|
||||||
|
?s bibo:suffixName ?suffix
|
||||||
|
}
|
||||||
|
UNION {
|
||||||
|
?s vivo:email ?email
|
||||||
|
}
|
||||||
|
UNION {
|
||||||
|
?s vivo:primaryEmail ?primaryEmail
|
||||||
|
}
|
||||||
|
UNION {
|
||||||
|
?s vivo:phoneNumber ?phoneNumber
|
||||||
|
}
|
||||||
|
UNION {
|
||||||
|
?s vivo:primaryPhoneNumber ?primaryPhoneNumber
|
||||||
|
}
|
||||||
|
UNION {
|
||||||
|
?s vivo:faxNumber ?faxNumber
|
||||||
|
}
|
||||||
|
UNION {
|
||||||
|
?s vivo:mailingAddress ?address .
|
||||||
|
}
|
||||||
|
UNION {
|
||||||
|
?s vivo:mailingAddress ?address .
|
||||||
|
?address ?addressP ?addressO
|
||||||
|
}
|
||||||
|
UNION {
|
||||||
|
?s vivo:webpage ?webpage
|
||||||
|
}
|
||||||
|
UNION {
|
||||||
|
?s vivo:webpage ?webpage .
|
||||||
|
?webpage ?webpageP ?webpageO
|
||||||
|
}
|
||||||
|
}
|
|
@ -2,9 +2,9 @@
|
||||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||||
|
|
||||||
<http://vitro.mannlib.cornell.edu/default/vitro-kb-2> vitro:updatedToOntology <http://vitro.mannlib.cornell.edu/ns/vitro/metadata/migration/v1.5> .
|
<http://vitro.mannlib.cornell.edu/default/vitro-kb-2> vitro:updatedToOntology <http://vitro.mannlib.cornell.edu/ns/vitro/metadata/migration/v1.6> .
|
||||||
<http://vitro.mannlib.cornell.edu/ns/vitro/metadata/migration/v1.5> rdf:type owl:Thing .
|
<http://vitro.mannlib.cornell.edu/ns/vitro/metadata/migration/v1.6> rdf:type owl:Thing .
|
||||||
<http://vitro.mannlib.cornell.edu/ns/vitro/metadata/migration/v1.5> vitro:updatedOntology <http://vivoweb.org/ontology/core> .
|
<http://vitro.mannlib.cornell.edu/ns/vitro/metadata/migration/v1.6> vitro:updatedOntology <http://vivoweb.org/ontology/core> .
|
||||||
<http://vitro.mannlib.cornell.edu/ns/vitro/metadata/migration/v1.5> vitro:fromOntologyVersion "1.4" .
|
<http://vitro.mannlib.cornell.edu/ns/vitro/metadata/migration/v1.6> vitro:fromOntologyVersion "1.5" .
|
||||||
<http://vitro.mannlib.cornell.edu/ns/vitro/metadata/migration/v1.5> vitro:toOntologyVersion "1.5" .
|
<http://vitro.mannlib.cornell.edu/ns/vitro/metadata/migration/v1.6> vitro:toOntologyVersion "1.6" .
|
||||||
|
|
|
@ -32,14 +32,14 @@ edu.cornell.mannlib.vitro.webapp.web.images.PlaceholderUtil$Setup
|
||||||
# Update the URIs on Permission Sets on UserAccounts from model (1.4) to 1.5.
|
# Update the URIs on Permission Sets on UserAccounts from model (1.4) to 1.5.
|
||||||
edu.cornell.mannlib.vitro.webapp.servlet.setup.UpdatePermissionSetUris
|
edu.cornell.mannlib.vitro.webapp.servlet.setup.UpdatePermissionSetUris
|
||||||
|
|
||||||
# Invokes process to perform updates to align with ontology changes if needed -->
|
|
||||||
# Needs to run before submodels are attached and Pellet is set up -->
|
|
||||||
#edu.cornell.mannlib.vitro.webapp.servlet.setup.UpdateKnowledgeBase
|
|
||||||
|
|
||||||
edu.cornell.mannlib.vitro.webapp.servlet.setup.FileGraphSetup
|
edu.cornell.mannlib.vitro.webapp.servlet.setup.FileGraphSetup
|
||||||
|
|
||||||
edu.cornell.mannlib.vitro.webapp.servlet.setup.SimpleReasonerSetup
|
edu.cornell.mannlib.vitro.webapp.servlet.setup.SimpleReasonerSetup
|
||||||
|
|
||||||
|
# Invokes process to perform updates to align with ontology changes if needed -->
|
||||||
|
# Needs to run before submodels are attached and Pellet is set up -->
|
||||||
|
edu.cornell.mannlib.vitro.webapp.servlet.setup.UpdateKnowledgeBase
|
||||||
|
|
||||||
# Must run after JenaDataSourceSetup
|
# Must run after JenaDataSourceSetup
|
||||||
edu.cornell.mannlib.vitro.webapp.servlet.setup.ThemeInfoSetup
|
edu.cornell.mannlib.vitro.webapp.servlet.setup.ThemeInfoSetup
|
||||||
|
|
||||||
|
|
42
productMods/config/listViewConfig-additionalEmail.xml
Normal file
42
productMods/config/listViewConfig-additionalEmail.xml
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
<?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#>
|
||||||
|
|
||||||
|
SELECT DISTINCT ?vcard ?email
|
||||||
|
?emailAddress
|
||||||
|
WHERE {
|
||||||
|
?subject ?property ?vcard .
|
||||||
|
?vcard vcard:hasEmail ?email
|
||||||
|
OPTIONAL { ?email vcard:email ?emailAddress }
|
||||||
|
MINUS {?email a vcard:Work}
|
||||||
|
}
|
||||||
|
</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
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?vcard .
|
||||||
|
?vcard vcard:hasEmail ?email
|
||||||
|
} UNION {
|
||||||
|
?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>
|
|
@ -28,10 +28,12 @@
|
||||||
?subject ?property ?advisory
|
?subject ?property ?advisory
|
||||||
LET ( ?localName := afn:localname(?advisory) )
|
LET ( ?localName := afn:localname(?advisory) )
|
||||||
OPTIONAL { ?advisory rdfs:label ?advisoryLabel }
|
OPTIONAL { ?advisory rdfs:label ?advisoryLabel }
|
||||||
OPTIONAL { ?advisory core:advisee ?advisee
|
OPTIONAL { ?advisory core:relates ?advisee .
|
||||||
|
?advisee a foaf:Person .
|
||||||
OPTIONAL { ?advisee rdfs:label ?adviseeLabel }
|
OPTIONAL { ?advisee rdfs:label ?adviseeLabel }
|
||||||
}
|
}
|
||||||
OPTIONAL { ?advisory core:degreeCandidacy ?degree
|
OPTIONAL { ?advisory core:relates ?degree .
|
||||||
|
?degree a core:AcademicDegree .
|
||||||
OPTIONAL { ?degree rdfs:label ?degreeLabel }
|
OPTIONAL { ?degree rdfs:label ?degreeLabel }
|
||||||
OPTIONAL { ?degree core:abbreviation ?degreeAbbr }
|
OPTIONAL { ?degree core:abbreviation ?degreeAbbr }
|
||||||
}
|
}
|
||||||
|
@ -51,7 +53,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
FILTER ( ?subject != ?advisee )
|
||||||
} ORDER BY <collated>?subclass</collated> DESC(?dateTimeEnd)
|
} ORDER BY <collated>?subclass</collated> DESC(?dateTimeEnd)
|
||||||
</query-select>
|
</query-select>
|
||||||
|
|
||||||
|
@ -70,16 +72,20 @@
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?advisory .
|
?subject ?property ?advisory .
|
||||||
|
?advisory a core:AdvisingRelationship .
|
||||||
?advisory ?advisoryProperty ?advisoryValue .
|
?advisory ?advisoryProperty ?advisoryValue .
|
||||||
?advisory rdfs:label ?advisoryLabel
|
?advisory rdfs:label ?advisoryLabel
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?advisory
|
?subject ?property ?advisory .
|
||||||
|
?advisory a core:AdvisingRelationship
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?advisory .
|
?subject ?property ?advisory .
|
||||||
|
?advisory a core:AdvisingRelationship .
|
||||||
?advisory ?advisoryProperty ?advisoryValue
|
?advisory ?advisoryProperty ?advisoryValue
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?advisory .
|
?subject ?property ?advisory .
|
||||||
|
?advisory a core:AdvisingRelationship .
|
||||||
?advisory ?advisoryProperty ?advisoryValue .
|
?advisory ?advisoryProperty ?advisoryValue .
|
||||||
?advisory rdfs:label ?advisoryLabel
|
?advisory rdfs:label ?advisoryLabel
|
||||||
}
|
}
|
||||||
|
@ -94,31 +100,45 @@
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?advisory .
|
?subject ?property ?advisory .
|
||||||
?advisory core:advisee ?advisee .
|
?advisory a core:AdvisingRelationship .
|
||||||
|
?advisory core:relates ?advisee .
|
||||||
|
?advisee a foaf:Person .
|
||||||
?advisee rdfs:label ?adviseeLabel .
|
?advisee rdfs:label ?adviseeLabel .
|
||||||
?advisory core:degreeCandidacy ?degree .
|
?advisory core:relates ?degree .
|
||||||
|
?degree a core:AcademicDegree .
|
||||||
?degree rdfs:label ?degreeLabel .
|
?degree rdfs:label ?degreeLabel .
|
||||||
?degree core:abbreviation ?degreeAbbr
|
?degree core:abbreviation ?degreeAbbr
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?advisory
|
?subject ?property ?advisory .
|
||||||
|
?advisory a core:AdvisingRelationship .
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?advisory.
|
?subject ?property ?advisory.
|
||||||
?advisory core:advisee ?advisee
|
?advisory a core:AdvisingRelationship .
|
||||||
|
?advisory core:relates ?advisee .
|
||||||
|
?advisee a foaf:Person .
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?advisory .
|
?subject ?property ?advisory .
|
||||||
?advisory core:advisee ?advisee .
|
?advisory a core:AdvisingRelationship .
|
||||||
|
?advisory core:relates ?advisee .
|
||||||
|
?advisee a foaf:Person .
|
||||||
?advisee rdfs:label ?adviseeLabel
|
?advisee rdfs:label ?adviseeLabel
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?advisory .
|
?subject ?property ?advisory .
|
||||||
?advisory core:degreeCandidacy ?degree
|
?advisory a core:AdvisingRelationship .
|
||||||
|
?advisory core:relates ?degree .
|
||||||
|
?degree a core:AcademicDegree .
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?advisory .
|
?subject ?property ?advisory .
|
||||||
?advisory core:degreeCandidacy ?degree .
|
?advisory a core:AdvisingRelationship .
|
||||||
|
?advisory core:relates ?degree .
|
||||||
|
?degree a core:AcademicDegree .
|
||||||
?degree rdfs:label ?degreeLabel
|
?degree rdfs:label ?degreeLabel
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?advisory .
|
?subject ?property ?advisory .
|
||||||
?advisory core:degreeCandidacy ?degree .
|
?advisory a core:AdvisingRelationship .
|
||||||
|
?advisory core:relates ?degree .
|
||||||
|
?degree a core:AcademicDegree .
|
||||||
?degree rdfs:label ?degreeLabel .
|
?degree rdfs:label ?degreeLabel .
|
||||||
?degree core:abbreviation ?degreeAbbr
|
?degree core:abbreviation ?degreeAbbr
|
||||||
}
|
}
|
||||||
|
@ -128,12 +148,14 @@
|
||||||
<query-construct>
|
<query-construct>
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?award .
|
?subject ?property ?advisory .
|
||||||
|
?advisory a core:AdvisingRelationship .
|
||||||
?award core:dateTimeInterval ?dateTimeInterval .
|
?award core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:start ?dateTimeStartValue .
|
?dateTimeInterval core:start ?dateTimeStartValue .
|
||||||
?dateTimeStartValue core:dateTime ?dateTimeStart
|
?dateTimeStartValue core:dateTime ?dateTimeStart
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?award .
|
?subject ?property ?advisory .
|
||||||
|
?advisory a core:AdvisingRelationship .
|
||||||
?award core:dateTimeInterval ?dateTimeInterval .
|
?award core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:start ?dateTimeStartValue .
|
?dateTimeInterval core:start ?dateTimeStartValue .
|
||||||
?dateTimeStartValue core:dateTime ?dateTimeStart
|
?dateTimeStartValue core:dateTime ?dateTimeStart
|
||||||
|
@ -143,12 +165,14 @@
|
||||||
<query-construct>
|
<query-construct>
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?award .
|
?subject ?property ?advisory .
|
||||||
|
?advisory a core:AdvisingRelationship .
|
||||||
?award core:dateTimeInterval ?dateTimeInterval .
|
?award core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:end ?dateTimeEndValue .
|
?dateTimeInterval core:end ?dateTimeEndValue .
|
||||||
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?award .
|
?subject ?property ?advisory .
|
||||||
|
?advisory a core:AdvisingRelationship .
|
||||||
?award core:dateTimeInterval ?dateTimeInterval .
|
?award core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:end ?dateTimeEndValue .
|
?dateTimeInterval core:end ?dateTimeEndValue .
|
||||||
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
PREFIX afn: <http://jena.hpl.hp.com/ARQ/function#>
|
PREFIX afn: <http://jena.hpl.hp.com/ARQ/function#>
|
||||||
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
||||||
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
SELECT DISTINCT ?subclass
|
SELECT DISTINCT ?subclass
|
||||||
?authorship
|
?authorship
|
||||||
|
@ -27,7 +28,8 @@
|
||||||
?hideThis
|
?hideThis
|
||||||
WHERE {
|
WHERE {
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship core:linkedInformationResource ?infoResource .
|
?authorship core:relates ?infoResource .
|
||||||
|
?infoResource a bibo:Document .
|
||||||
?infoResource rdfs:label ?infoResourceName
|
?infoResource rdfs:label ?infoResourceName
|
||||||
|
|
||||||
OPTIONAL { ?infoResource bibo:volume ?volume }
|
OPTIONAL { ?infoResource bibo:volume ?volume }
|
||||||
|
@ -40,7 +42,8 @@
|
||||||
OPTIONAL { ?infoResource core:publisher ?publisherObj .
|
OPTIONAL { ?infoResource core:publisher ?publisherObj .
|
||||||
?publisherObj rdfs:label ?publisher
|
?publisherObj rdfs:label ?publisher
|
||||||
}
|
}
|
||||||
OPTIONAL { ?infoResource core:editor ?editorObj .
|
OPTIONAL { ?infoResource core:relatedBy ?editorship .
|
||||||
|
?editorObj core:relatedBy ?editorship .
|
||||||
?editorObj rdfs:label ?editor
|
?editorObj rdfs:label ?editor
|
||||||
}
|
}
|
||||||
OPTIONAL { ?infoResource core:partOf ?partOfObj .
|
OPTIONAL { ?infoResource core:partOf ?partOfObj .
|
||||||
|
@ -80,7 +83,8 @@
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship ?authorshipProperty ?authorshipValue .
|
?authorship ?authorshipProperty ?authorshipValue .
|
||||||
?authorship core:linkedInformationResource ?infoResource .
|
?authorship core:relates ?infoResource .
|
||||||
|
?infoResource a bibo:Document .
|
||||||
?infoResource rdfs:label ?infoResourceName .
|
?infoResource rdfs:label ?infoResourceName .
|
||||||
?infoResource core:hasPublicationVenue ?publishedIn .
|
?infoResource core:hasPublicationVenue ?publishedIn .
|
||||||
?publishedIn rdfs:label ?journal
|
?publishedIn rdfs:label ?journal
|
||||||
|
@ -116,6 +120,7 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship ?authorshipProperty ?authorshipValue .
|
?authorship ?authorshipProperty ?authorshipValue .
|
||||||
|
@ -123,7 +128,10 @@
|
||||||
?infoResource ?infoResourceProperty ?infoResourceValue .
|
?infoResource ?infoResourceProperty ?infoResourceValue .
|
||||||
?infoResource bibo:reproducedIn ?appearsInObj .
|
?infoResource bibo:reproducedIn ?appearsInObj .
|
||||||
?infoResource core:publisher ?publisherObj .
|
?infoResource core:publisher ?publisherObj .
|
||||||
?infoResource core:editor ?editorObj .
|
?infoResource core:relatedBy ?editorship .
|
||||||
|
?editorship a core:Editorship .
|
||||||
|
?editorship core:relates ?editorObj .
|
||||||
|
?editorObj a foaf:Person .
|
||||||
?infoResource core:partOf ?partOfObj .
|
?infoResource core:partOf ?partOfObj .
|
||||||
?appearsInObj rdfs:label ?appearsIn .
|
?appearsInObj rdfs:label ?appearsIn .
|
||||||
?publisherObj rdfs:label ?publisher .
|
?publisherObj rdfs:label ?publisher .
|
||||||
|
@ -138,29 +146,31 @@
|
||||||
?authorship ?authorshipProperty ?authorshipValue
|
?authorship ?authorshipProperty ?authorshipValue
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship core:linkedInformationResource ?infoResource
|
?authorship core:relates ?infoResource
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship core:linkedInformationResource ?infoResource .
|
?authorship core:relates ?infoResource .
|
||||||
|
?infoResource a bibo:Document .
|
||||||
?infoResource ?infoResourceProperty ?infoResourceValue
|
?infoResource ?infoResourceProperty ?infoResourceValue
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship core:linkedInformationResource ?infoResource .
|
?authorship core:relates ?infoResource .
|
||||||
?infoResource bibo:reproducedIn ?appearsInObj .
|
?infoResource bibo:reproducedIn ?appearsInObj .
|
||||||
?appearsInObj rdfs:label ?appearsIn
|
?appearsInObj rdfs:label ?appearsIn
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship core:linkedInformationResource ?infoResource .
|
?authorship core:relates ?infoResource .
|
||||||
?infoResource core:publisher ?publisherObj .
|
?infoResource core:publisher ?publisherObj .
|
||||||
?publisherObj rdfs:label ?publisher
|
?publisherObj rdfs:label ?publisher
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship core:linkedInformationResource ?infoResource .
|
?authorship core:relates ?infoResource .
|
||||||
?infoResource core:editor ?editorObj .
|
?infoResource core:relatedBy ?editorship .
|
||||||
|
?editorship core:relates ?editorObj .
|
||||||
?editorObj rdfs:label ?editor
|
?editorObj rdfs:label ?editor
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship core:linkedInformationResource ?infoResource .
|
?authorship core:relates ?infoResource .
|
||||||
?infoResource core:partOf ?partOfObj .
|
?infoResource core:partOf ?partOfObj .
|
||||||
?partOfObj rdfs:label ?partOf
|
?partOfObj rdfs:label ?partOf
|
||||||
}
|
}
|
||||||
|
@ -170,14 +180,17 @@
|
||||||
<query-construct>
|
<query-construct>
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship core:linkedInformationResource ?infoResource .
|
?authorship core:relates ?infoResource .
|
||||||
|
?infoResource a bibo:Document .
|
||||||
?infoResource core:dateTimeValue ?dateTimeValue .
|
?infoResource core:dateTimeValue ?dateTimeValue .
|
||||||
?dateTimeValue core:dateTime ?dateTime
|
?dateTimeValue core:dateTime ?dateTime
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship core:linkedInformationResource ?infoResource .
|
?authorship core:relates ?infoResource .
|
||||||
|
?infoResource a bibo:Document .
|
||||||
?infoResource core:dateTimeValue ?dateTimeValue .
|
?infoResource core:dateTimeValue ?dateTimeValue .
|
||||||
?dateTimeValue core:dateTime ?dateTime
|
?dateTimeValue core:dateTime ?dateTime
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,20 +17,22 @@
|
||||||
?receiptLabel
|
?receiptLabel
|
||||||
?award
|
?award
|
||||||
?awardLabel
|
?awardLabel
|
||||||
?conferredBy
|
?assignedBy
|
||||||
?conferredByLabel
|
?assignedByLabel
|
||||||
?dateTimeStart
|
?dateTimeStart
|
||||||
?dateTimeEnd
|
?dateTimeEnd
|
||||||
?dateTime
|
?dateTime
|
||||||
|
|
||||||
WHERE {
|
WHERE {
|
||||||
?subject ?property ?awardReceipt .
|
?subject ?property ?awardReceipt .
|
||||||
|
?awardReceipt a core:AwardReceipt .
|
||||||
OPTIONAL { ?awardReceipt rdfs:label ?receiptLabel }
|
OPTIONAL { ?awardReceipt rdfs:label ?receiptLabel }
|
||||||
OPTIONAL { ?awardReceipt core:receiptOf ?award .
|
OPTIONAL { ?awardReceipt core:relates ?award .
|
||||||
?award core:receipt ?awardReceipt
|
?award a core:Award .
|
||||||
|
?award core:relatedBy ?awardReceipt
|
||||||
OPTIONAL { ?award rdfs:label ?awardLabel }
|
OPTIONAL { ?award rdfs:label ?awardLabel }
|
||||||
OPTIONAL { ?award core:awardConferredBy ?conferredBy
|
OPTIONAL { ?award core:assignedBy ?assignedBy
|
||||||
OPTIONAL { ?conferredBy rdfs:label ?conferredByLabel }
|
OPTIONAL { ?assignedBy rdfs:label ?assignedByLabel }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
OPTIONAL { ?awardReceipt core:dateTimeInterval ?dateTimeInterval
|
OPTIONAL { ?awardReceipt core:dateTimeInterval ?dateTimeInterval
|
||||||
|
@ -57,44 +59,56 @@
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?awardReceipt .
|
?subject ?property ?awardReceipt .
|
||||||
|
?awardReceipt a core:AwardReceipt .
|
||||||
?awardReceipt rdfs:label ?receiptLabel .
|
?awardReceipt rdfs:label ?receiptLabel .
|
||||||
?awardReceipt core:receiptOf ?award .
|
?awardReceipt core:relates ?award .
|
||||||
?award core:receipt ?awardReceipt .
|
?award a core:Award .
|
||||||
|
?award core:relatedBy ?awardReceipt .
|
||||||
?award rdfs:label ?awardLabel .
|
?award rdfs:label ?awardLabel .
|
||||||
?award core:awardConferredBy ?conferredBy .
|
?award core:assignedBy ?assignedBy .
|
||||||
?conferredBy rdfs:label ?conferredByLabel
|
?assignedBy rdfs:label ?assignedByLabel
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?awardReceipt
|
?subject ?property ?awardReceipt .
|
||||||
|
?awardReceipt a core:AwardReceipt .
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?awardReceipt .
|
?subject ?property ?awardReceipt .
|
||||||
|
?awardReceipt a core:AwardReceipt .
|
||||||
?awardReceipt rdfs:label ?receiptLabel
|
?awardReceipt rdfs:label ?receiptLabel
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?awardReceipt .
|
?subject ?property ?awardReceipt .
|
||||||
|
?awardReceipt a core:AwardReceipt .
|
||||||
?awardReceipt rdfs:label ?receiptLabel .
|
?awardReceipt rdfs:label ?receiptLabel .
|
||||||
?awardReceipt core:receiptOf ?award .
|
?awardReceipt core:relates ?award .
|
||||||
?award core:receipt ?awardReceipt
|
?award a core:Award .
|
||||||
|
?award core:relatedBy ?awardReceipt
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?awardReceipt .
|
?subject ?property ?awardReceipt .
|
||||||
|
?awardReceipt a core:AwardReceipt .
|
||||||
?awardReceipt rdfs:label ?receiptLabel .
|
?awardReceipt rdfs:label ?receiptLabel .
|
||||||
?awardReceipt core:receiptOf ?award .
|
?awardReceipt core:relates ?award .
|
||||||
?award core:receipt ?awardReceipt .
|
?award a core:Award .
|
||||||
|
?award core:relatedBy ?awardReceipt .
|
||||||
?award rdfs:label ?awardLabel
|
?award rdfs:label ?awardLabel
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?awardReceipt .
|
?subject ?property ?awardReceipt .
|
||||||
|
?awardReceipt a core:AwardReceipt .
|
||||||
?awardReceipt rdfs:label ?receiptLabel .
|
?awardReceipt rdfs:label ?receiptLabel .
|
||||||
?awardReceipt core:receiptOf ?award .
|
?awardReceipt core:relates ?award .
|
||||||
?award core:receipt ?awardReceipt .
|
?award a core:Award .
|
||||||
|
?award core:relatedBy ?awardReceipt .
|
||||||
?award rdfs:label ?awardLabel .
|
?award rdfs:label ?awardLabel .
|
||||||
?award core:awardConferredBy ?conferredBy
|
?award core:assignedBy ?assignedBy
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?awardReceipt .
|
?subject ?property ?awardReceipt .
|
||||||
|
?awardReceipt a core:AwardReceipt .
|
||||||
?awardReceipt rdfs:label ?receiptLabel .
|
?awardReceipt rdfs:label ?receiptLabel .
|
||||||
?awardReceipt core:receiptOf ?award .
|
?awardReceipt core:relates ?award .
|
||||||
?award core:receipt ?awardReceipt .
|
?award a core:Award .
|
||||||
|
?award core:relatedBy ?awardReceipt .
|
||||||
?award rdfs:label ?awardLabel .
|
?award rdfs:label ?awardLabel .
|
||||||
?award core:awardConferredBy ?conferredBy .
|
?award core:assignedBy ?assignedBy .
|
||||||
?conferredBy rdfs:label ?conferredByLabel
|
?assignedBy rdfs:label ?assignedByLabel
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</query-construct>
|
</query-construct>
|
||||||
|
@ -103,11 +117,13 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?awardReceipt .
|
?subject ?property ?awardReceipt .
|
||||||
|
?awardReceipt a core:AwardReceipt .
|
||||||
?awardReceipt core:dateTimeInterval ?dateTimeInterval .
|
?awardReceipt core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:start ?dateTimeStartValue .
|
?dateTimeInterval core:start ?dateTimeStartValue .
|
||||||
?dateTimeStartValue core:dateTime ?dateTimeStart
|
?dateTimeStartValue core:dateTime ?dateTimeStart
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?awardReceipt .
|
?subject ?property ?awardReceipt .
|
||||||
|
?awardReceipt a core:AwardReceipt .
|
||||||
?awardReceipt core:dateTimeInterval ?dateTimeInterval .
|
?awardReceipt core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:start ?dateTimeStartValue .
|
?dateTimeInterval core:start ?dateTimeStartValue .
|
||||||
?dateTimeStartValue core:dateTime ?dateTimeStart
|
?dateTimeStartValue core:dateTime ?dateTimeStart
|
||||||
|
@ -118,11 +134,13 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?awardReceipt .
|
?subject ?property ?awardReceipt .
|
||||||
|
?awardReceipt a core:AwardReceipt .
|
||||||
?awardReceipt core:dateTimeInterval ?dateTimeInterval .
|
?awardReceipt core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:end ?dateTimeEndValue .
|
?dateTimeInterval core:end ?dateTimeEndValue .
|
||||||
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?awardReceipt .
|
?subject ?property ?awardReceipt .
|
||||||
|
?awardReceipt a core:AwardReceipt .
|
||||||
?awardReceipt core:dateTimeInterval ?dateTimeInterval .
|
?awardReceipt core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:end ?dateTimeEndValue .
|
?dateTimeInterval core:end ?dateTimeEndValue .
|
||||||
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
||||||
|
@ -134,10 +152,12 @@
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?awardReceipt .
|
?subject ?property ?awardReceipt .
|
||||||
|
?awardReceipt a core:AwardReceipt .
|
||||||
?awardReceipt core:dateTimeValue ?dateTimeValue .
|
?awardReceipt core:dateTimeValue ?dateTimeValue .
|
||||||
?dateTimeValue core:dateTime ?dateTime
|
?dateTimeValue core:dateTime ?dateTime
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?awardReceipt .
|
?subject ?property ?awardReceipt .
|
||||||
|
?awardReceipt a core:AwardReceipt .
|
||||||
?awardReceipt core:dateTimeValue ?dateTimeValue .
|
?awardReceipt core:dateTimeValue ?dateTimeValue .
|
||||||
?dateTimeValue core:dateTime ?dateTime
|
?dateTimeValue core:dateTime ?dateTime
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,12 +20,19 @@
|
||||||
?majorField ?deptOrSchool ?info
|
?majorField ?deptOrSchool ?info
|
||||||
?dateTimeStart ?dateTimeEnd
|
?dateTimeStart ?dateTimeEnd
|
||||||
WHERE {
|
WHERE {
|
||||||
?subject ?property ?edTraining
|
?subject ?property ?edTraining .
|
||||||
|
?edTraining a core:EducationalProcess
|
||||||
OPTIONAL {?edTraining vitro:mostSpecificType ?trainingType .
|
OPTIONAL {?edTraining vitro:mostSpecificType ?trainingType .
|
||||||
?trainingType rdfs:subClassOf core:EducationalTraining .
|
?trainingType rdfs:subClassOf core:EducationalProcess .
|
||||||
?trainingType rdfs:label ?typeName
|
?trainingType rdfs:label ?typeName
|
||||||
}
|
}
|
||||||
OPTIONAL { ?edTraining core:trainingAtOrganization ?org .
|
OPTIONAL { ?edTraining <http://purl.obolibrary.org/obo/RO_0002234> ?awardedDegree .
|
||||||
|
?awardedDegree core:relates ?degree .
|
||||||
|
?degree a core:AcademicDegree
|
||||||
|
OPTIONAL { ?degree rdfs:label ?degreeName }
|
||||||
|
OPTIONAL { ?degree core:abbreviation ?degreeAbbr }
|
||||||
|
}
|
||||||
|
OPTIONAL { ?awardedDegree core:assignedBy ?org .
|
||||||
?org rdfs:label ?orgName
|
?org rdfs:label ?orgName
|
||||||
<collated>
|
<collated>
|
||||||
OPTIONAL { ?org vitro:mostSpecificType ?subclass .
|
OPTIONAL { ?org vitro:mostSpecificType ?subclass .
|
||||||
|
@ -33,10 +40,6 @@
|
||||||
}
|
}
|
||||||
</collated>
|
</collated>
|
||||||
}
|
}
|
||||||
OPTIONAL { ?edTraining core:degreeEarned ?degree
|
|
||||||
OPTIONAL { ?degree rdfs:label ?degreeName }
|
|
||||||
OPTIONAL { ?degree core:abbreviation ?degreeAbbr }
|
|
||||||
}
|
|
||||||
OPTIONAL { ?edTraining core:majorField ?majorField }
|
OPTIONAL { ?edTraining core:majorField ?majorField }
|
||||||
OPTIONAL { ?edTraining core:departmentOrSchool ?deptOrSchool }
|
OPTIONAL { ?edTraining core:departmentOrSchool ?deptOrSchool }
|
||||||
OPTIONAL { ?edTraining core:supplementalInformation ?info }
|
OPTIONAL { ?edTraining core:supplementalInformation ?info }
|
||||||
|
@ -69,30 +72,44 @@
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?edTraining .
|
?subject ?property ?edTraining .
|
||||||
|
?edTraining a core:EducationalProcess .
|
||||||
?edTraining ?edTrainingProp ?edTrainingValue .
|
?edTraining ?edTrainingProp ?edTrainingValue .
|
||||||
?edTraining core:trainingAtOrganization ?org .
|
?edTraining <http://purl.obolibrary.org/obo/RO_0002234> ?awardedDegree .
|
||||||
|
?awardedDegree core:assignedBy ?org .
|
||||||
?org rdfs:label ?orgName .
|
?org rdfs:label ?orgName .
|
||||||
?edTraining core:degreeEarned ?degree .
|
?awardedDegree core:relates ?degree .
|
||||||
?edTraining core:dateTimeInterval ?dateTimeInterval
|
?edTraining core:dateTimeInterval ?dateTimeInterval
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?edTraining .
|
?subject ?property ?edTraining .
|
||||||
|
?edTraining a core:EducationalProcess
|
||||||
}
|
}
|
||||||
UNION {
|
UNION {
|
||||||
?subject ?property ?edTraining .
|
?subject ?property ?edTraining .
|
||||||
|
?edTraining a core:EducationalProcess .
|
||||||
?edTraining ?edTrainingProp ?edTrainingValue
|
?edTraining ?edTrainingProp ?edTrainingValue
|
||||||
}
|
}
|
||||||
UNION {
|
UNION {
|
||||||
?subject ?property ?edTraining .
|
?subject ?property ?edTraining .
|
||||||
?edTraining core:trainingAtOrganization ?org .
|
?edTraining a core:EducationalProcess .
|
||||||
|
?edTraining <http://purl.obolibrary.org/obo/RO_0002234> ?awardedDegree .
|
||||||
|
}
|
||||||
|
UNION {
|
||||||
|
?subject ?property ?edTraining .
|
||||||
|
?edTraining a core:EducationalProcess .
|
||||||
|
?edTraining <http://purl.obolibrary.org/obo/RO_0002234> ?awardedDegree .
|
||||||
|
?awardedDegree core:assignedBy ?org .
|
||||||
?org rdfs:label ?orgName
|
?org rdfs:label ?orgName
|
||||||
}
|
}
|
||||||
UNION {
|
UNION {
|
||||||
?subject ?property ?edTraining .
|
?subject ?property ?edTraining .
|
||||||
?edTraining core:degreeEarned ?degree .
|
?edTraining a core:EducationalProcess .
|
||||||
|
?edTraining <http://purl.obolibrary.org/obo/RO_0002234> ?awardedDegree .
|
||||||
|
?awardedDegree core:relates ?degree
|
||||||
}
|
}
|
||||||
UNION {
|
UNION {
|
||||||
?subject ?property ?edTraining .
|
?subject ?property ?edTraining .
|
||||||
|
?edTraining a core:EducationalProcess .
|
||||||
?edTraining core:dateTimeInterval ?dateTimeInterval
|
?edTraining core:dateTimeInterval ?dateTimeInterval
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -104,17 +121,20 @@
|
||||||
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?edTraining .
|
?subject ?property ?edTraining .
|
||||||
|
?edTraining a core:EducationalProcess .
|
||||||
?edTraining vitro:mostSpecificType ?trainingType .
|
?edTraining vitro:mostSpecificType ?trainingType .
|
||||||
?trainingType rdfs:subClassOf core:EducationalTraining .
|
?trainingType rdfs:subClassOf core:EducationalTraining .
|
||||||
?trainingType rdfs:label ?typeName
|
?trainingType rdfs:label ?typeName
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?edTraining .
|
?subject ?property ?edTraining .
|
||||||
|
?edTraining a core:EducationalProcess .
|
||||||
?edTraining vitro:mostSpecificType ?trainingType .
|
?edTraining vitro:mostSpecificType ?trainingType .
|
||||||
?trainingType rdfs:subClassOf core:EducationalTraining
|
?trainingType rdfs:subClassOf core:EducationalTraining
|
||||||
} UNION
|
} UNION
|
||||||
{
|
{
|
||||||
?subject ?property ?edTraining .
|
?subject ?property ?edTraining .
|
||||||
|
?edTraining a core:EducationalProcess .
|
||||||
?edTraining vitro:mostSpecificType ?trainingType .
|
?edTraining vitro:mostSpecificType ?trainingType .
|
||||||
?trainingType rdfs:subClassOf core:EducationalTraining .
|
?trainingType rdfs:subClassOf core:EducationalTraining .
|
||||||
?trainingType rdfs:label ?typeName
|
?trainingType rdfs:label ?typeName
|
||||||
|
@ -127,16 +147,23 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
|
?degree a core:AcademicDegree .
|
||||||
?degree rdfs:label ?degreeName .
|
?degree rdfs:label ?degreeName .
|
||||||
?degree core:abbreviation ?degreeAbbr
|
?degree core:abbreviation ?degreeAbbr
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?edTraining .
|
?subject ?property ?edTraining .
|
||||||
?edTraining core:degreeEarned ?degree .
|
?edTraining a core:EducationalProcess .
|
||||||
|
?edTraining <http://purl.obolibrary.org/obo/RO_0002234> ?awardedDegree .
|
||||||
|
?awardedDegree core:relates ?degree .
|
||||||
|
?degree a core:AcademicDegree .
|
||||||
?degree rdfs:label ?degreeName
|
?degree rdfs:label ?degreeName
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?edTraining .
|
?subject ?property ?edTraining .
|
||||||
?edTraining core:degreeEarned ?degree .
|
?edTraining a core:EducationalProcess .
|
||||||
|
?edTraining <http://purl.obolibrary.org/obo/RO_0002234> ?awardedDegree .
|
||||||
|
?awardedDegree core:relates ?degree .
|
||||||
|
?degree a core:AcademicDegree .
|
||||||
?degree core:abbreviation ?degreeAbbr
|
?degree core:abbreviation ?degreeAbbr
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -151,6 +178,7 @@
|
||||||
?dateTimeStartValue core:dateTime ?dateTimeStart .
|
?dateTimeStartValue core:dateTime ?dateTimeStart .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?edTraining .
|
?subject ?property ?edTraining .
|
||||||
|
?edTraining a core:EducationalProcess .
|
||||||
?edTraining core:dateTimeInterval ?dateTimeInterval .
|
?edTraining core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:start ?dateTimeStartValue .
|
?dateTimeInterval core:start ?dateTimeStartValue .
|
||||||
?dateTimeStartValue core:dateTime ?dateTimeStart .
|
?dateTimeStartValue core:dateTime ?dateTimeStart .
|
||||||
|
@ -166,6 +194,7 @@
|
||||||
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?edTraining .
|
?subject ?property ?edTraining .
|
||||||
|
?edTraining a core:EducationalProcess .
|
||||||
?edTraining core:dateTimeInterval ?dateTimeInterval .
|
?edTraining core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:end ?dateTimeEndValue .
|
?dateTimeInterval core:end ?dateTimeEndValue .
|
||||||
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
||||||
|
|
46
productMods/config/listViewConfig-fullName.xml
Normal file
46
productMods/config/listViewConfig-fullName.xml
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
<?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#>
|
||||||
|
|
||||||
|
SELECT DISTINCT ?vcard ?fullName
|
||||||
|
?firstName
|
||||||
|
?middleName
|
||||||
|
?lastName
|
||||||
|
WHERE {
|
||||||
|
?subject ?property ?vcard .
|
||||||
|
?vcard vcard:hasName ?fullName
|
||||||
|
OPTIONAL { ?fullName vcard:givenName ?firstName }
|
||||||
|
OPTIONAL { ?fullName vcard:middleName ?middleName }
|
||||||
|
OPTIONAL { ?fullName vcard:familyName ?lastName }
|
||||||
|
|
||||||
|
}
|
||||||
|
</query-select>
|
||||||
|
|
||||||
|
<query-construct>
|
||||||
|
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
CONSTRUCT {
|
||||||
|
?subject ?property ?vcard .
|
||||||
|
?vcard vcard:hasName ?fullName .
|
||||||
|
?fullName ?fullNameProperty ?fullNameValue
|
||||||
|
} WHERE {
|
||||||
|
{
|
||||||
|
?subject ?property ?vcard
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?vcard .
|
||||||
|
?vcard vcard:hasName ?fullName
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?vcard .
|
||||||
|
?vcard vcard:hasName ?fullName .
|
||||||
|
?fullName ?fullNameProperty ?fullNameValue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</query-construct>
|
||||||
|
|
||||||
|
<template>propStatement-fullName.ftl</template>
|
||||||
|
<postprocessor>edu.cornell.mannlib.vitro.webapp.web.templatemodels.individual.MaintainDuplicatesObjectPropertyDataPostProcessor</postprocessor>
|
||||||
|
</list-view-config>
|
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
OPTIONAL { ?role rdfs:label ?roleLabel }
|
OPTIONAL { ?role rdfs:label ?roleLabel }
|
||||||
|
|
||||||
OPTIONAL { ?role vivo:roleRealizedIn ?event1
|
OPTIONAL { ?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1
|
||||||
LET (?event1Name := afn:localname(?event1))
|
LET (?event1Name := afn:localname(?event1))
|
||||||
|
|
||||||
OPTIONAL { ?event1 rdfs:label ?event1Label }
|
OPTIONAL { ?event1 rdfs:label ?event1Label }
|
||||||
|
@ -37,18 +37,18 @@
|
||||||
OPTIONAL { ?event2 rdfs:label ?event2Label }
|
OPTIONAL { ?event2 rdfs:label ?event2Label }
|
||||||
|
|
||||||
{
|
{
|
||||||
?event1 vivo:eventWithin ?event2
|
?event1 <http://purl.obolibrary.org/obo/BFO_0000050> ?event2
|
||||||
} UNION {
|
} UNION {
|
||||||
?event2 vivo:includesEvent ?event1
|
?event2 <http://purl.obolibrary.org/obo/BFO_0000051> ?event1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
OPTIONAL {
|
OPTIONAL {
|
||||||
{
|
{
|
||||||
?event1 vivo:eventWithin ?event3 .
|
?event1 <http://purl.obolibrary.org/obo/BFO_0000050> ?event3 .
|
||||||
?event3 vivo:eventWithin ?event2
|
?event3 <http://purl.obolibrary.org/obo/BFO_0000050> ?event2
|
||||||
} UNION {
|
} UNION {
|
||||||
?event2 vivo:includesEvent ?event3 .
|
?event2 <http://purl.obolibrary.org/obo/BFO_0000051> ?event3 .
|
||||||
?event3 vivo:includesEvent ?event1
|
?event3 <http://purl.obolibrary.org/obo/BFO_0000051> ?event1
|
||||||
|
|
||||||
}
|
}
|
||||||
OPTIONAL { ?event2 rdfs:label ?event2Label }
|
OPTIONAL { ?event2 rdfs:label ?event2Label }
|
||||||
|
@ -59,18 +59,18 @@
|
||||||
OPTIONAL { ?series rdfs:label ?seriesLabel }
|
OPTIONAL { ?series rdfs:label ?seriesLabel }
|
||||||
|
|
||||||
{
|
{
|
||||||
?event1 vivo:inEventWithin ?series
|
?event1 <http://purl.obolibrary.org/obo/BFO_0000050> ?series
|
||||||
} UNION {
|
} UNION {
|
||||||
?series vivo:seriesForEvent ?event1
|
?series <http://purl.obolibrary.org/obo/BFO_0000051> ?event1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
OPTIONAL {
|
OPTIONAL {
|
||||||
{
|
{
|
||||||
?event1 vivo:eventWithin ?event3 .
|
?event1 <http://purl.obolibrary.org/obo/BFO_0000050> ?event3 .
|
||||||
?event3 vivo:inEventSeries ?series
|
?event3 <http://purl.obolibrary.org/obo/BFO_0000050> ?series
|
||||||
} UNION {
|
} UNION {
|
||||||
?event3 vivo:includesEvent ?event1 .
|
?event3 <http://purl.obolibrary.org/obo/BFO_0000051> ?event1 .
|
||||||
?series vivo:seriesForEvent ?event3
|
?series <http://purl.obolibrary.org/obo/BFO_0000051> ?event3
|
||||||
}
|
}
|
||||||
OPTIONAL { ?series rdfs:label ?seriesLabel }
|
OPTIONAL { ?series rdfs:label ?seriesLabel }
|
||||||
}
|
}
|
||||||
|
@ -112,19 +112,22 @@
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?event1 .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1 .
|
||||||
?event1 vitro:mostSpecificType ?subclass .
|
?event1 vitro:mostSpecificType ?subclass .
|
||||||
?subclass rdfs:subClassOf event:Event .
|
?subclass rdfs:subClassOf event:Event .
|
||||||
?subclass owl:equivalentClass event:Event .
|
?subclass owl:equivalentClass event:Event .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?event1 .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1 .
|
||||||
?event1 vitro:mostSpecificType ?subclass .
|
?event1 vitro:mostSpecificType ?subclass .
|
||||||
?subclass rdfs:subClassOf event:Event
|
?subclass rdfs:subClassOf event:Event
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?event1 .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1 .
|
||||||
?event1 vitro:mostSpecificType ?subclass .
|
?event1 vitro:mostSpecificType ?subclass .
|
||||||
?subclass owl:equivalentClass event:Event
|
?subclass owl:equivalentClass event:Event
|
||||||
}
|
}
|
||||||
|
@ -136,17 +139,21 @@
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
?role ?roleProperty ?roleValue .
|
?role ?roleProperty ?roleValue .
|
||||||
?event1 rdfs:label ?event1Label
|
?event1 rdfs:label ?event1Label
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?role
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
?role ?roleProperty ?roleValue
|
?role ?roleProperty ?roleValue
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?event1 .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1 .
|
||||||
?event1 rdfs:label ?event1Label
|
?event1 rdfs:label ?event1Label
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -160,33 +167,38 @@
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
?event2 a event:Event .
|
?event2 a event:Event .
|
||||||
?event1 vivo:eventWithin ?event2 .
|
?event1 <http://purl.obolibrary.org/obo/BFO_0000050> ?event2 .
|
||||||
?event2 vivo:includesEvent ?event1 .
|
?event2 <http://purl.obolibrary.org/obo/BFO_0000051> ?event1 .
|
||||||
?event2 rdfs:label ?event2Label
|
?event2 rdfs:label ?event2Label
|
||||||
} WHERE {
|
} WHERE {
|
||||||
|
|
||||||
{
|
{
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?event1 .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1 .
|
||||||
?event2 a event:Event .
|
?event2 a event:Event .
|
||||||
?event1 vivo:eventWithin ?event2
|
?event1 <http://purl.obolibrary.org/obo/BFO_0000050> ?event2
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?event1 .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1 .
|
||||||
?event2 a event:Event .
|
?event2 a event:Event .
|
||||||
?event1 vivo:eventWithin ?event2 .
|
?event1 <http://purl.obolibrary.org/obo/BFO_0000050> ?event2 .
|
||||||
?event2 rdfs:label ?event2Label
|
?event2 rdfs:label ?event2Label
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?event1 .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1 .
|
||||||
?event2 a event:Event .
|
?event2 a event:Event .
|
||||||
?event2 vivo:includesEvent ?event1
|
?event2 <http://purl.obolibrary.org/obo/BFO_0000051> ?event1
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?event1 .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1 .
|
||||||
?event2 a event:Event .
|
?event2 a event:Event .
|
||||||
?event2 vivo:includesEvent ?event1 .
|
?event2 <http://purl.obolibrary.org/obo/BFO_0000051> ?event1 .
|
||||||
?event2 rdfs:label ?event2Label
|
?event2 rdfs:label ?event2Label
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -200,38 +212,43 @@
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?event3 vivo:eventWithin ?event2 .
|
?role a ?objectType .
|
||||||
?event2 vivo:includesEvent ?event3 .
|
?event3 <http://purl.obolibrary.org/obo/BFO_0000050> ?event2 .
|
||||||
|
?event2 <http://purl.obolibrary.org/obo/BFO_0000051> ?event3 .
|
||||||
?event2 a event:Event .
|
?event2 a event:Event .
|
||||||
?event1 vivo:eventWithin ?event3 .
|
?event1 <http://purl.obolibrary.org/obo/BFO_0000050> ?event3 .
|
||||||
?event3 vivo:includesEvent ?event1 .
|
?event3 <http://purl.obolibrary.org/obo/BFO_0000051> ?event1 .
|
||||||
?event2 rdfs:label ?event2Label
|
?event2 rdfs:label ?event2Label
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?event1 .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1 .
|
||||||
?event2 a event:Event .
|
?event2 a event:Event .
|
||||||
?event1 vivo:eventWithin ?event3 .
|
?event1 <http://purl.obolibrary.org/obo/BFO_0000050> ?event3 .
|
||||||
?event3 vivo:eventWithin ?event2
|
?event3 <http://purl.obolibrary.org/obo/BFO_0000050> ?event2
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?event1 .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1 .
|
||||||
?event2 a event:Event .
|
?event2 a event:Event .
|
||||||
?event1 vivo:eventWithin ?event3 .
|
?event1 <http://purl.obolibrary.org/obo/BFO_0000050> ?event3 .
|
||||||
?event3 vivo:eventWithin ?event2 .
|
?event3 <http://purl.obolibrary.org/obo/BFO_0000050> ?event2 .
|
||||||
?event2 rdfs:label ?event2Label
|
?event2 rdfs:label ?event2Label
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?event1 .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1 .
|
||||||
?event2 a event:Event .
|
?event2 a event:Event .
|
||||||
?event2 vivo:includesEvent ?event3 .
|
?event2 <http://purl.obolibrary.org/obo/BFO_0000051> ?event3 .
|
||||||
?event3 vivo:includesEvent ?event1
|
?event3 <http://purl.obolibrary.org/obo/BFO_0000051> ?event1
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?event1 .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1 .
|
||||||
?event2 a event:Event .
|
?event2 a event:Event .
|
||||||
?event2 vivo:includesEvent ?event3 .
|
?event2 <http://purl.obolibrary.org/obo/BFO_0000051> ?event3 .
|
||||||
?event3 vivo:includesEvent ?event1 .
|
?event3 <http://purl.obolibrary.org/obo/BFO_0000051> ?event1 .
|
||||||
?event2 rdfs:label ?event2Label
|
?event2 rdfs:label ?event2Label
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -245,33 +262,38 @@
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
?series a vivo:EventSeries .
|
?series a vivo:EventSeries .
|
||||||
?event1 vivo:inEventSeries ?series .
|
?event1 <http://purl.obolibrary.org/obo/BFO_0000050> ?series .
|
||||||
?series vivo:seriesForEvent ?event1 .
|
?series <http://purl.obolibrary.org/obo/BFO_0000051> ?event1 .
|
||||||
?series rdfs:label ?seriesLabel
|
?series rdfs:label ?seriesLabel
|
||||||
} WHERE {
|
} WHERE {
|
||||||
|
|
||||||
{
|
{
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?event1 .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1 .
|
||||||
?series a vivo:EventSeries .
|
?series a vivo:EventSeries .
|
||||||
?event1 vivo:inEventSeries ?series
|
?event1 <http://purl.obolibrary.org/obo/BFO_0000050> ?series
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?event1 .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1 .
|
||||||
?series a vivo:EventSeries .
|
?series a vivo:EventSeries .
|
||||||
?event1 vivo:inEventSeries ?series .
|
?event1 <http://purl.obolibrary.org/obo/BFO_0000050> ?series .
|
||||||
?series rdfs:label ?seriesLabel
|
?series rdfs:label ?seriesLabel
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?event1 .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1 .
|
||||||
?series a vivo:EventSeries .
|
?series a vivo:EventSeries .
|
||||||
?series vivo:seriesForEvent ?event1
|
?series <http://purl.obolibrary.org/obo/BFO_0000051> ?event1
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?event1 .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1 .
|
||||||
?series a vivo:EventSeries .
|
?series a vivo:EventSeries .
|
||||||
?series vivo:seriesForEvent ?event1 .
|
?series <http://purl.obolibrary.org/obo/BFO_0000051> ?event1 .
|
||||||
?series rdfs:label ?seriesLabel
|
?series rdfs:label ?seriesLabel
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -284,38 +306,43 @@
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?workshop vivo:inEventSeries ?series .
|
?role a ?objectType .
|
||||||
?series vivo:seriesForEvent ?event3 .
|
?workshop <http://purl.obolibrary.org/obo/BFO_0000050> ?series .
|
||||||
|
?series <http://purl.obolibrary.org/obo/BFO_0000051> ?event3 .
|
||||||
?series a vivo:EventSeries .
|
?series a vivo:EventSeries .
|
||||||
?event1 vivo:eventWithin ?event3 .
|
?event1 <http://purl.obolibrary.org/obo/BFO_0000050> ?event3 .
|
||||||
?event3 vivo:includesEvent ?event1 .
|
?event3 <http://purl.obolibrary.org/obo/BFO_0000051> ?event1 .
|
||||||
?series rdfs:label ?seriesLabel
|
?series rdfs:label ?seriesLabel
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?event1 .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1 .
|
||||||
?series a vivo:EventSeries .
|
?series a vivo:EventSeries .
|
||||||
?event1 vivo:eventWithin ?event3 .
|
?event1 <http://purl.obolibrary.org/obo/BFO_0000050> ?event3 .
|
||||||
?event3 vivo:inEventSeries ?series
|
?event3 <http://purl.obolibrary.org/obo/BFO_0000050> ?series
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?event1 .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1 .
|
||||||
?series a vivo:EventSeries .
|
?series a vivo:EventSeries .
|
||||||
?event1 vivo:eventWithin ?event3 .
|
?event1 <http://purl.obolibrary.org/obo/BFO_0000050> ?event3 .
|
||||||
?event3 vivo:inEventSeries ?series .
|
?event3 <http://purl.obolibrary.org/obo/BFO_0000050> ?series .
|
||||||
?series rdfs:label ?seriesLabel
|
?series rdfs:label ?seriesLabel
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?event1 .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1 .
|
||||||
?series a vivo:EventSeries .
|
?series a vivo:EventSeries .
|
||||||
?series vivo:seriesForEvent ?event3 .
|
?series <http://purl.obolibrary.org/obo/BFO_0000051> ?event3 .
|
||||||
?workshop vivo:includesEvent ?event1
|
?workshop <http://purl.obolibrary.org/obo/BFO_0000051> ?event1
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?event1 .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?event1 .
|
||||||
?series a vivo:EventSeries .
|
?series a vivo:EventSeries .
|
||||||
?series vivo:seriesForEvent ?event3 .
|
?series <http://purl.obolibrary.org/obo/BFO_0000051> ?event3 .
|
||||||
?event3 vivo:includesEvent ?event1 .
|
?event3 <http://purl.obolibrary.org/obo/BFO_0000051> ?event1 .
|
||||||
?series rdfs:label ?seriesLabel
|
?series rdfs:label ?seriesLabel
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -325,11 +352,13 @@
|
||||||
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
?role vivo:dateTimeInterval ?dateTimeInterval .
|
?role vivo:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval vivo:start ?dateTimeStartValue .
|
?dateTimeInterval vivo:start ?dateTimeStartValue .
|
||||||
?dateTimeStartValue vivo:dateTime ?dateTimeStart
|
?dateTimeStartValue vivo:dateTime ?dateTimeStart
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
?role vivo:dateTimeInterval ?dateTimeInterval .
|
?role vivo:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval vivo:start ?dateTimeStartValue .
|
?dateTimeInterval vivo:start ?dateTimeStartValue .
|
||||||
?dateTimeStartValue vivo:dateTime ?dateTimeStart
|
?dateTimeStartValue vivo:dateTime ?dateTimeStart
|
||||||
|
@ -340,11 +369,13 @@
|
||||||
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
?role vivo:dateTimeInterval ?dateTimeInterval .
|
?role vivo:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval vivo:end ?dateTimeEndValue .
|
?dateTimeInterval vivo:end ?dateTimeEndValue .
|
||||||
?dateTimeEndValue vivo:dateTime ?dateTimeEnd
|
?dateTimeEndValue vivo:dateTime ?dateTimeEnd
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
?role vivo:dateTimeInterval ?dateTimeInterval .
|
?role vivo:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval vivo:end ?dateTimeEndValue .
|
?dateTimeInterval vivo:end ?dateTimeEndValue .
|
||||||
?dateTimeEndValue vivo:dateTime ?dateTimeEnd
|
?dateTimeEndValue vivo:dateTime ?dateTimeEnd
|
||||||
|
|
|
@ -1,164 +0,0 @@
|
||||||
<?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 afn: <http://jena.hpl.hp.com/ARQ/function#>
|
|
||||||
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
||||||
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
|
||||||
|
|
||||||
SELECT DISTINCT <collated>?subclass</collated> ?subclassLabel
|
|
||||||
# send the property to the template, since this view supports multiple role properties
|
|
||||||
?property
|
|
||||||
?role
|
|
||||||
?activity ?activityName
|
|
||||||
?activityLabel
|
|
||||||
?infoResource ?infoResourceName
|
|
||||||
?infoResourceLabel
|
|
||||||
?dateTimeStart ?dateTimeEnd WHERE {
|
|
||||||
|
|
||||||
?subject ?property ?role
|
|
||||||
|
|
||||||
OPTIONAL { ?role core:roleContributesTo ?activity
|
|
||||||
LET (?activityName := afn:localname(?activity))
|
|
||||||
OPTIONAL { ?activity rdfs:label ?activityLabel }
|
|
||||||
}
|
|
||||||
|
|
||||||
OPTIONAL { ?role core:roleRealizedIn ?activity
|
|
||||||
LET (?activityName := afn:localname(?activity))
|
|
||||||
OPTIONAL { ?activity rdfs:label ?activityLabel }
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
# NB Currently we can only retrieve subclass for either the
|
|
||||||
# infoResource or the activity, but not both. Later, we could have
|
|
||||||
# the query retrieve both and write a custom preprocessor to merge
|
|
||||||
# the results into a single subclass column.
|
|
||||||
?infoResource vitro:mostSpecificType ?subclass .
|
|
||||||
|
|
||||||
?subclass rdfs:subClassOf ?superclass
|
|
||||||
FILTER ( ( ?property = core:hasEditorRole && ?superclass = bibo:Collection ) ||
|
|
||||||
( ?property = core:hasReviewerRole && ?superclass = core:InformationResource )
|
|
||||||
)
|
|
||||||
|
|
||||||
# Get subclass label for display in uncollated view
|
|
||||||
?subclass rdfs:label ?subclassLabel
|
|
||||||
|
|
||||||
OPTIONAL { ?role core:dateTimeInterval ?dateTimeInterval
|
|
||||||
OPTIONAL { ?dateTimeInterval core:start ?dateTimeStartValue .
|
|
||||||
?dateTimeStartValue core:dateTime ?dateTimeStart
|
|
||||||
}
|
|
||||||
OPTIONAL { ?dateTimeInterval core:end ?dateTimeEndValue .
|
|
||||||
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
|
||||||
}
|
|
||||||
}
|
|
||||||
<critical-data-required>
|
|
||||||
FILTER ( bound(?infoResource) )
|
|
||||||
</critical-data-required>
|
|
||||||
} ORDER BY <collated>?subclass</collated> DESC(?dateTimeEnd) DESC(?dateTimeStart) ?activityLabel ?activityName
|
|
||||||
</query-select>
|
|
||||||
|
|
||||||
<query-construct>
|
|
||||||
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
||||||
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
|
||||||
|
|
||||||
CONSTRUCT {
|
|
||||||
?subject ?property ?role .
|
|
||||||
?role core:roleContributesTo ?infoResource .
|
|
||||||
?infoResource vitro:mostSpecificType ?subclass .
|
|
||||||
?subclass rdfs:subClassOf ?superclass .
|
|
||||||
?subclass rdfs:label ?subclassLabel
|
|
||||||
} WHERE {
|
|
||||||
?subject ?property ?role .
|
|
||||||
?role core:roleContributesTo ?infoResource .
|
|
||||||
?infoResource vitro:mostSpecificType ?subclass .
|
|
||||||
?subclass rdfs:subClassOf ?superclass .
|
|
||||||
?subclass rdfs:label ?subclassLabel
|
|
||||||
FILTER ( ?superclass = bibo:Collection || ?superclass = core:InformationResource )
|
|
||||||
}
|
|
||||||
</query-construct>
|
|
||||||
|
|
||||||
<query-construct>
|
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
||||||
CONSTRUCT {
|
|
||||||
?subject ?property ?role .
|
|
||||||
?role ?roleProperty ?roleValue .
|
|
||||||
?activity rdfs:label ?activityName
|
|
||||||
} WHERE {
|
|
||||||
{
|
|
||||||
?subject ?property ?role
|
|
||||||
} UNION {
|
|
||||||
?subject ?property ?role .
|
|
||||||
?role ?roleProperty ?roleValue
|
|
||||||
} UNION {
|
|
||||||
?subject ?property ?role .
|
|
||||||
?role core:roleContributesTo ?activity .
|
|
||||||
?activity rdfs:label ?activityName
|
|
||||||
} UNION {
|
|
||||||
?subject ?property ?role .
|
|
||||||
?role core:roleRealizedIn ?activity .
|
|
||||||
?activity rdfs:label ?activityName
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</query-construct>
|
|
||||||
|
|
||||||
<query-construct>
|
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
||||||
CONSTRUCT {
|
|
||||||
?subject ?property ?role .
|
|
||||||
?role core:dateTimeInterval ?dateTimeInterval .
|
|
||||||
?dateTimeInterval core:start ?dateTimeStartValue .
|
|
||||||
?dateTimeStartValue core:dateTime ?dateTimeStart
|
|
||||||
} WHERE {
|
|
||||||
?subject ?property ?role .
|
|
||||||
?role core:dateTimeInterval ?dateTimeInterval .
|
|
||||||
?dateTimeInterval core:start ?dateTimeStartValue .
|
|
||||||
?dateTimeStartValue core:dateTime ?dateTimeStart
|
|
||||||
}
|
|
||||||
</query-construct>
|
|
||||||
|
|
||||||
<query-construct>
|
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
||||||
CONSTRUCT {
|
|
||||||
?subject ?property ?role .
|
|
||||||
?role core:dateTimeInterval ?dateTimeInterval .
|
|
||||||
?dateTimeInterval core:end ?dateTimeEndValue .
|
|
||||||
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
|
||||||
} WHERE {
|
|
||||||
?subject ?property ?role .
|
|
||||||
?role core:dateTimeInterval ?dateTimeInterval .
|
|
||||||
?dateTimeInterval core:end ?dateTimeEndValue .
|
|
||||||
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
|
||||||
}
|
|
||||||
</query-construct>
|
|
||||||
|
|
||||||
<query-construct>
|
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
||||||
CONSTRUCT {
|
|
||||||
?subject ?property ?role .
|
|
||||||
?role ?roleProperty ?roleValue .
|
|
||||||
?infoResource rdfs:label ?infoResourceLabel
|
|
||||||
} WHERE {
|
|
||||||
{
|
|
||||||
?subject ?property ?role
|
|
||||||
} UNION {
|
|
||||||
?subject ?property ?role .
|
|
||||||
?role ?roleProperty ?roleValue .
|
|
||||||
} UNION {
|
|
||||||
?subject ?property ?role .
|
|
||||||
?role core:roleContributesTo ?infoResource .
|
|
||||||
?infoResource rdfs:label ?infoResourceLabel .
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</query-construct>
|
|
||||||
|
|
||||||
<template>propStatement-hasEditReviewRole.ftl</template>
|
|
||||||
</list-view-config>
|
|
122
productMods/config/listViewConfig-hasEditorRole.xml
Normal file
122
productMods/config/listViewConfig-hasEditorRole.xml
Normal file
|
@ -0,0 +1,122 @@
|
||||||
|
<?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 afn: <http://jena.hpl.hp.com/ARQ/function#>
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
||||||
|
|
||||||
|
SELECT DISTINCT <collated> ?subclass </collated>
|
||||||
|
?role
|
||||||
|
?subclassLabel
|
||||||
|
?activity
|
||||||
|
(afn:localname(?activity) AS ?activityLocal)
|
||||||
|
?activityName
|
||||||
|
?dateTimeStart
|
||||||
|
?dateTimeEnd
|
||||||
|
WHERE {
|
||||||
|
|
||||||
|
?subject ?property ?role
|
||||||
|
OPTIONAL { ?role core:roleContributesTo ?activity .
|
||||||
|
?activity vitro:mostSpecificType ?subclass
|
||||||
|
OPTIONAL { ?activity rdfs:label ?activityName }
|
||||||
|
OPTIONAL { ?subclass rdfs:label ?subclassLabel }
|
||||||
|
}
|
||||||
|
|
||||||
|
OPTIONAL { ?role core:dateTimeInterval ?dateTimeInterval
|
||||||
|
OPTIONAL { ?dateTimeInterval core:start ?dateTimeStartValue .
|
||||||
|
?dateTimeStartValue core:dateTime ?dateTimeStart
|
||||||
|
}
|
||||||
|
OPTIONAL { ?dateTimeInterval core:end ?dateTimeEndValue .
|
||||||
|
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
} ORDER BY <collated> ?subclass </collated> DESC(?dateTimeEnd) DESC(?dateTimeStart) ?activityName
|
||||||
|
</query-select>
|
||||||
|
|
||||||
|
<query-construct>
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:EditorRole .
|
||||||
|
?role vitro:mostSpecificType ?roleSubclass .
|
||||||
|
?role core:roleContributesTo ?activity .
|
||||||
|
?activity rdfs:label ?activityName .
|
||||||
|
?activity vitro:mostSpecificType ?subclass .
|
||||||
|
?subclass rdfs:label ?subclassLabel
|
||||||
|
} WHERE {
|
||||||
|
{
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:EditorRole .
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:EditorRole .
|
||||||
|
?role vitro:mostSpecificType ?roleSubclass
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:EditorRole .
|
||||||
|
?role core:roleContributesTo ?activity
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:EditorRole .
|
||||||
|
?role core:roleContributesTo ?activity .
|
||||||
|
?activity rdfs:label ?activityName .
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:EditorRole .
|
||||||
|
?role core:roleContributesTo ?activity .
|
||||||
|
?activity vitro:mostSpecificType ?subclass
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:EditorRole .
|
||||||
|
?role core:roleContributesTo ?activity .
|
||||||
|
?activity vitro:mostSpecificType ?subclass .
|
||||||
|
?subclass rdfs:label ?subclassLabel
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</query-construct>
|
||||||
|
|
||||||
|
<query-construct>
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
CONSTRUCT {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:EditorRole .
|
||||||
|
?role core:dateTimeInterval ?dateTimeInterval .
|
||||||
|
?dateTimeInterval core:start ?dateTimeStartValue .
|
||||||
|
?dateTimeStartValue core:dateTime ?dateTimeStart
|
||||||
|
} WHERE {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:EditorRole .
|
||||||
|
?role core:dateTimeInterval ?dateTimeInterval .
|
||||||
|
?dateTimeInterval core:start ?dateTimeStartValue .
|
||||||
|
?dateTimeStartValue core:dateTime ?dateTimeStart
|
||||||
|
}
|
||||||
|
</query-construct>
|
||||||
|
|
||||||
|
<query-construct>
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
CONSTRUCT {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:EditorRole .
|
||||||
|
?role core:dateTimeInterval ?dateTimeInterval .
|
||||||
|
?dateTimeInterval core:end ?dateTimeEndValue .
|
||||||
|
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
||||||
|
} WHERE {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:EditorRole .
|
||||||
|
?role core:dateTimeInterval ?dateTimeInterval .
|
||||||
|
?dateTimeInterval core:end ?dateTimeEndValue .
|
||||||
|
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
||||||
|
}
|
||||||
|
</query-construct>
|
||||||
|
|
||||||
|
<template>propStatement-hasEditReviewRole.ftl</template>
|
||||||
|
</list-view-config>
|
|
@ -23,13 +23,15 @@
|
||||||
?hideThis
|
?hideThis
|
||||||
WHERE {
|
WHERE {
|
||||||
|
|
||||||
?subject ?property ?role
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
|
?role vitro:mostSpecificType ?subclass
|
||||||
|
|
||||||
OPTIONAL { ?role core:roleRealizedIn ?activity
|
OPTIONAL { ?role <http://purl.obolibrary.org/obo/BFO_0000054> ?activity
|
||||||
LET (?activityName := afn:localname(?activity))
|
LET (?activityName := afn:localname(?activity))
|
||||||
OPTIONAL { ?activity rdfs:label ?activityLabel }
|
OPTIONAL { ?activity rdfs:label ?activityLabel }
|
||||||
}
|
}
|
||||||
OPTIONAL { ?role core:roleContributesTo ?activity
|
OPTIONAL { ?role <http://vivoweb.org/ontology/core#relatedBy> ?activity
|
||||||
LET (?activityName := afn:localname(?activity))
|
LET (?activityName := afn:localname(?activity))
|
||||||
OPTIONAL { ?activity rdfs:label ?activityLabel }
|
OPTIONAL { ?activity rdfs:label ?activityLabel }
|
||||||
}
|
}
|
||||||
|
@ -47,7 +49,7 @@
|
||||||
?dateTimeEndValueRole core:dateTime ?dateTimeEndRole
|
?dateTimeEndValueRole core:dateTime ?dateTimeEndRole
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
OPTIONAL { ?role core:roleContributesTo ?grant .
|
OPTIONAL { ?role <http://vivoweb.org/ontology/core#relatedBy> ?grant .
|
||||||
?grant core:dateTimeInterval ?dateTimeIntervalGrant
|
?grant core:dateTimeInterval ?dateTimeIntervalGrant
|
||||||
OPTIONAL { ?dateTimeIntervalGrant core:start ?dateTimeStartValueGrant .
|
OPTIONAL { ?dateTimeIntervalGrant core:start ?dateTimeStartValueGrant .
|
||||||
?dateTimeStartValueGrant core:dateTime ?dateTimeStartGrant
|
?dateTimeStartValueGrant core:dateTime ?dateTimeStartGrant
|
||||||
|
@ -57,10 +59,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
OPTIONAL { ?role core:hideFromDisplay ?hideThis }
|
OPTIONAL { ?role core:hideFromDisplay ?hideThis }
|
||||||
# NOT EXISTS { ?role core:hideFromDisplay ?hideThis }
|
FILTER ( bound(?activity) && ?subclass = ?objectType)
|
||||||
<critical-data-required>
|
|
||||||
FILTER ( bound(?activity) )
|
|
||||||
</critical-data-required>
|
|
||||||
} ORDER BY DESC(?dateTimeEndRole) DESC(?dateTimeStartRole) DESC(?dateTimeEndGrant) DESC(?dateTimeStartGrant) ?activityLabel ?activityName
|
} ORDER BY DESC(?dateTimeEndRole) DESC(?dateTimeStartRole) DESC(?dateTimeEndGrant) DESC(?dateTimeStartGrant) ?activityLabel ?activityName
|
||||||
</query-select>
|
</query-select>
|
||||||
|
|
||||||
|
@ -71,16 +70,19 @@
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role core:roleRealizedIn ?activity .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?activity .
|
||||||
?activity rdfs:label ?activityLabel
|
?activity rdfs:label ?activityLabel
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role core:roleContributesTo ?activity
|
?role a ?objectType .
|
||||||
|
?role <http://vivoweb.org/ontology/core#relatedBy> ?activity
|
||||||
} UNION
|
} UNION
|
||||||
{
|
{
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role core:roleRealizedIn ?activity .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?activity .
|
||||||
?activity rdfs:label ?activityLabel
|
?activity rdfs:label ?activityLabel
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -93,16 +95,19 @@
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role core:roleContributesTo ?activity .
|
?role a ?objectType .
|
||||||
|
?role <http://vivoweb.org/ontology/core#relatedBy> ?activity .
|
||||||
?activity rdfs:label ?activityLabel
|
?activity rdfs:label ?activityLabel
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role core:roleContributesTo ?activity
|
?role a ?objectType .
|
||||||
|
?role <http://vivoweb.org/ontology/core#relatedBy> ?activity
|
||||||
} UNION
|
} UNION
|
||||||
{
|
{
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role core:roleContributesTo ?activity .
|
?role a ?objectType .
|
||||||
|
?role <http://vivoweb.org/ontology/core#relatedBy> ?activity .
|
||||||
?activity rdfs:label ?activityLabel
|
?activity rdfs:label ?activityLabel
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -113,6 +118,7 @@
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
?role ?roleProperty ?roleValue .
|
?role ?roleProperty ?roleValue .
|
||||||
?activity rdfs:label ?activityName .
|
?activity rdfs:label ?activityName .
|
||||||
?activity core:grantAwardedBy ?awardedBy .
|
?activity core:grantAwardedBy ?awardedBy .
|
||||||
|
@ -124,31 +130,38 @@
|
||||||
?subject ?property ?role
|
?subject ?property ?role
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
?role ?roleProperty ?roleValue
|
?role ?roleProperty ?roleValue
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role core:roleContributesTo ?activity .
|
?role a ?objectType .
|
||||||
|
?role <http://vivoweb.org/ontology/core#relatedBy> ?activity .
|
||||||
?activity rdfs:label ?activityName
|
?activity rdfs:label ?activityName
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role core:roleRealizedIn ?activity .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?activity .
|
||||||
?activity rdfs:label ?activityName
|
?activity rdfs:label ?activityName
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role core:roleContributesTo ?activity .
|
?role a ?objectType .
|
||||||
|
?role <http://vivoweb.org/ontology/core#relatedBy> ?activity .
|
||||||
?activity core:grantAwardedBy ?awardedBy
|
?activity core:grantAwardedBy ?awardedBy
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role core:roleContributesTo ?activity .
|
?role a ?objectType .
|
||||||
|
?role <http://vivoweb.org/ontology/core#relatedBy> ?activity .
|
||||||
?activity core:grantAwardedBy ?awardedBy .
|
?activity core:grantAwardedBy ?awardedBy .
|
||||||
?awardedBy rdfs:label ?awardedByLabel
|
?awardedBy rdfs:label ?awardedByLabel
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role core:roleContributesTo ?activity .
|
?role a ?objectType .
|
||||||
|
?role <http://vivoweb.org/ontology/core#relatedBy> ?activity .
|
||||||
?activity core:administeredBy ?adminedBy
|
?activity core:administeredBy ?adminedBy
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role core:roleContributesTo ?activity .
|
?role a ?objectType .
|
||||||
|
?role <http://vivoweb.org/ontology/core#relatedBy> ?activity .
|
||||||
?activity core:administeredBy ?adminedBy .
|
?activity core:administeredBy ?adminedBy .
|
||||||
?adminedBy rdfs:label ?adminedByLabel
|
?adminedBy rdfs:label ?adminedByLabel
|
||||||
}
|
}
|
||||||
|
@ -159,11 +172,13 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
?role core:dateTimeInterval ?dateTimeIntervalRole .
|
?role core:dateTimeInterval ?dateTimeIntervalRole .
|
||||||
?dateTimeIntervalRole core:start ?dateTimeStartValueRole .
|
?dateTimeIntervalRole core:start ?dateTimeStartValueRole .
|
||||||
?dateTimeStartValueRole core:dateTime ?dateTimeStartRole
|
?dateTimeStartValueRole core:dateTime ?dateTimeStartRole
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
?role core:dateTimeInterval ?dateTimeIntervalRole .
|
?role core:dateTimeInterval ?dateTimeIntervalRole .
|
||||||
?dateTimeIntervalRole core:start ?dateTimeStartValueRole .
|
?dateTimeIntervalRole core:start ?dateTimeStartValueRole .
|
||||||
?dateTimeStartValueRole core:dateTime ?dateTimeStartRole
|
?dateTimeStartValueRole core:dateTime ?dateTimeStartRole
|
||||||
|
@ -174,11 +189,13 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
?role core:dateTimeInterval ?dateTimeIntervalRole .
|
?role core:dateTimeInterval ?dateTimeIntervalRole .
|
||||||
?dateTimeIntervalRole core:end ?dateTimeEndValueRole .
|
?dateTimeIntervalRole core:end ?dateTimeEndValueRole .
|
||||||
?dateTimeEndValueRole core:dateTime ?dateTimeEndRole
|
?dateTimeEndValueRole core:dateTime ?dateTimeEndRole
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
?role core:dateTimeInterval ?dateTimeIntervalRole .
|
?role core:dateTimeInterval ?dateTimeIntervalRole .
|
||||||
?dateTimeIntervalRole core:end ?dateTimeEndValueRole .
|
?dateTimeIntervalRole core:end ?dateTimeEndValueRole .
|
||||||
?dateTimeEndValueRole core:dateTime ?dateTimeEndRole
|
?dateTimeEndValueRole core:dateTime ?dateTimeEndRole
|
||||||
|
@ -188,13 +205,15 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role core:roleContributesTo ?grant .
|
?role a ?objectType .
|
||||||
|
?role <http://vivoweb.org/ontology/core#relatedBy> ?grant .
|
||||||
?grant core:dateTimeInterval ?dateTimeIntervalGrant .
|
?grant core:dateTimeInterval ?dateTimeIntervalGrant .
|
||||||
?dateTimeIntervalGrant core:start ?dateTimeStartValueGrant .
|
?dateTimeIntervalGrant core:start ?dateTimeStartValueGrant .
|
||||||
?dateTimeStartValueGrant core:dateTime ?dateTimeStartGrant
|
?dateTimeStartValueGrant core:dateTime ?dateTimeStartGrant
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role core:roleContributesTo ?grant .
|
?role a ?objectType .
|
||||||
|
?role <http://vivoweb.org/ontology/core#relatedBy> ?grant .
|
||||||
?grant core:dateTimeInterval ?dateTimeIntervalGrant .
|
?grant core:dateTimeInterval ?dateTimeIntervalGrant .
|
||||||
?dateTimeIntervalGrant core:start ?dateTimeStartValueGrant .
|
?dateTimeIntervalGrant core:start ?dateTimeStartValueGrant .
|
||||||
?dateTimeStartValueGrant core:dateTime ?dateTimeStartGrant
|
?dateTimeStartValueGrant core:dateTime ?dateTimeStartGrant
|
||||||
|
@ -205,13 +224,15 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role core:roleContributesTo ?grant .
|
?role a ?objectType .
|
||||||
|
?role <http://vivoweb.org/ontology/core#relatedBy> ?grant .
|
||||||
?grant core:dateTimeInterval ?dateTimeIntervalGrant .
|
?grant core:dateTimeInterval ?dateTimeIntervalGrant .
|
||||||
?dateTimeIntervalGrant core:end ?dateTimeEndValueGrant .
|
?dateTimeIntervalGrant core:end ?dateTimeEndValueGrant .
|
||||||
?dateTimeEndValueGrant core:dateTime ?dateTimeEndGrant
|
?dateTimeEndValueGrant core:dateTime ?dateTimeEndGrant
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role core:roleContributesTo ?grant .
|
?role a ?objectType .
|
||||||
|
?role <http://vivoweb.org/ontology/core#relatedBy> ?grant .
|
||||||
?grant core:dateTimeInterval ?dateTimeIntervalGrant .
|
?grant core:dateTimeInterval ?dateTimeIntervalGrant .
|
||||||
?dateTimeIntervalGrant core:end ?dateTimeEndValueGrant .
|
?dateTimeIntervalGrant core:end ?dateTimeEndValueGrant .
|
||||||
?dateTimeEndValueGrant core:dateTime ?dateTimeEndGrant
|
?dateTimeEndValueGrant core:dateTime ?dateTimeEndGrant
|
||||||
|
|
|
@ -25,11 +25,12 @@
|
||||||
|
|
||||||
WHERE {
|
WHERE {
|
||||||
|
|
||||||
?subject ?property ?role
|
?subject ?property ?role .
|
||||||
|
?role a vivo:PresenterRole
|
||||||
|
|
||||||
OPTIONAL { ?role rdfs:label ?roleLabel }
|
OPTIONAL { ?role rdfs:label ?roleLabel }
|
||||||
|
|
||||||
OPTIONAL { ?role vivo:roleRealizedIn ?presentation
|
OPTIONAL { ?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation
|
||||||
LET (?presentationName := afn:localname(?presentation))
|
LET (?presentationName := afn:localname(?presentation))
|
||||||
|
|
||||||
OPTIONAL { ?presentation rdfs:label ?presentationLabel }
|
OPTIONAL { ?presentation rdfs:label ?presentationLabel }
|
||||||
|
@ -38,18 +39,18 @@
|
||||||
OPTIONAL { ?conference rdfs:label ?conferenceLabel }
|
OPTIONAL { ?conference rdfs:label ?conferenceLabel }
|
||||||
|
|
||||||
{
|
{
|
||||||
?presentation vivo:eventWithin ?conference
|
?presentation <http://purl.obolibrary.org/obo/BFO_0000050> ?conference
|
||||||
} UNION {
|
} UNION {
|
||||||
?conference vivo:includesEvent ?presentation
|
?conference <http://purl.obolibrary.org/obo/BFO_0000051> ?presentation
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
OPTIONAL {
|
OPTIONAL {
|
||||||
{
|
{
|
||||||
?presentation vivo:eventWithin ?workshop .
|
?presentation <http://purl.obolibrary.org/obo/BFO_0000050> ?workshop .
|
||||||
?workshop vivo:eventWithin ?conference
|
?workshop <http://purl.obolibrary.org/obo/BFO_0000050> ?conference
|
||||||
} UNION {
|
} UNION {
|
||||||
?workshop vivo:includesEvent ?presentation .
|
?workshop <http://purl.obolibrary.org/obo/BFO_0000051> ?presentation .
|
||||||
?conference vivo:includesEvent ?workshop
|
?conference <http://purl.obolibrary.org/obo/BFO_0000051> ?workshop
|
||||||
}
|
}
|
||||||
OPTIONAL { ?conference rdfs:label ?conferenceLabel }
|
OPTIONAL { ?conference rdfs:label ?conferenceLabel }
|
||||||
}
|
}
|
||||||
|
@ -66,10 +67,10 @@
|
||||||
}
|
}
|
||||||
OPTIONAL {
|
OPTIONAL {
|
||||||
{
|
{
|
||||||
?presentation vivo:eventWithin ?workshop .
|
?presentation <http://purl.obolibrary.org/obo/BFO_0000050> ?workshop .
|
||||||
?workshop vivo:inEventSeries ?series
|
?workshop vivo:inEventSeries ?series
|
||||||
} UNION {
|
} UNION {
|
||||||
?workshop vivo:includesEvent ?presentation .
|
?workshop <http://purl.obolibrary.org/obo/BFO_0000051> ?presentation .
|
||||||
?series vivo:seriesForEvent ?workshop
|
?series vivo:seriesForEvent ?workshop
|
||||||
}
|
}
|
||||||
OPTIONAL { ?series rdfs:label ?seriesLabel }
|
OPTIONAL { ?series rdfs:label ?seriesLabel }
|
||||||
|
@ -108,19 +109,22 @@
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?presentation .
|
?role a vivo:PresenterRole .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation .
|
||||||
?presentation vitro:mostSpecificType ?subclass .
|
?presentation vitro:mostSpecificType ?subclass .
|
||||||
?subclass rdfs:subClassOf vivo:Presentation .
|
?subclass rdfs:subClassOf vivo:Presentation .
|
||||||
?subclass owl:equivalentClass vivo:Presentation .
|
?subclass owl:equivalentClass vivo:Presentation .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?presentation .
|
?role a vivo:PresenterRole .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation .
|
||||||
?presentation vitro:mostSpecificType ?subclass .
|
?presentation vitro:mostSpecificType ?subclass .
|
||||||
?subclass rdfs:subClassOf vivo:Presentation
|
?subclass rdfs:subClassOf vivo:Presentation
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?presentation .
|
?role a vivo:PresenterRole .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation .
|
||||||
?presentation vitro:mostSpecificType ?subclass .
|
?presentation vitro:mostSpecificType ?subclass .
|
||||||
?subclass owl:equivalentClass vivo:Presentation
|
?subclass owl:equivalentClass vivo:Presentation
|
||||||
}
|
}
|
||||||
|
@ -132,17 +136,21 @@
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a vivo:PresenterRole .
|
||||||
?role ?roleProperty ?roleValue .
|
?role ?roleProperty ?roleValue .
|
||||||
?presentation rdfs:label ?presentationLabel
|
?presentation rdfs:label ?presentationLabel
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?role
|
?subject ?property ?role .
|
||||||
|
?role a vivo:PresenterRole
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a vivo:PresenterRole .
|
||||||
?role ?roleProperty ?roleValue
|
?role ?roleProperty ?roleValue
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?presentation .
|
?role a vivo:PresenterRole .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation .
|
||||||
?presentation rdfs:label ?presentationLabel
|
?presentation rdfs:label ?presentationLabel
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -155,33 +163,38 @@
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a vivo:PresenterRole .
|
||||||
?conference a bibo:Conference .
|
?conference a bibo:Conference .
|
||||||
?presentation vivo:eventWithin ?conference .
|
?presentation <http://purl.obolibrary.org/obo/BFO_0000050> ?conference .
|
||||||
?conference vivo:includesEvent ?presentation .
|
?conference <http://purl.obolibrary.org/obo/BFO_0000051> ?presentation .
|
||||||
?conference rdfs:label ?conferenceLabel
|
?conference rdfs:label ?conferenceLabel
|
||||||
} WHERE {
|
} WHERE {
|
||||||
|
|
||||||
{
|
{
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?presentation .
|
?role a vivo:PresenterRole .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation .
|
||||||
?conference a bibo:Conference .
|
?conference a bibo:Conference .
|
||||||
?presentation vivo:eventWithin ?conference
|
?presentation <http://purl.obolibrary.org/obo/BFO_0000050> ?conference
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?presentation .
|
?role a vivo:PresenterRole .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation .
|
||||||
?conference a bibo:Conference .
|
?conference a bibo:Conference .
|
||||||
?presentation vivo:eventWithin ?conference .
|
?presentation <http://purl.obolibrary.org/obo/BFO_0000050> ?conference .
|
||||||
?conference rdfs:label ?conferenceLabel
|
?conference rdfs:label ?conferenceLabel
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?presentation .
|
?role a vivo:PresenterRole .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation .
|
||||||
?conference a bibo:Conference .
|
?conference a bibo:Conference .
|
||||||
?conference vivo:includesEvent ?presentation
|
?conference <http://purl.obolibrary.org/obo/BFO_0000051> ?presentation
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?presentation .
|
?role a vivo:PresenterRole .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation .
|
||||||
?conference a bibo:Conference .
|
?conference a bibo:Conference .
|
||||||
?conference vivo:includesEvent ?presentation .
|
?conference <http://purl.obolibrary.org/obo/BFO_0000051> ?presentation .
|
||||||
?conference rdfs:label ?conferenceLabel
|
?conference rdfs:label ?conferenceLabel
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -194,38 +207,43 @@
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?workshop vivo:eventWithin ?conference .
|
?role a vivo:PresenterRole .
|
||||||
?conference vivo:includesEvent ?workshop .
|
?workshop <http://purl.obolibrary.org/obo/BFO_0000050> ?conference .
|
||||||
|
?conference <http://purl.obolibrary.org/obo/BFO_0000051> ?workshop .
|
||||||
?conference a bibo:Conference .
|
?conference a bibo:Conference .
|
||||||
?presentation vivo:eventWithin ?workshop .
|
?presentation <http://purl.obolibrary.org/obo/BFO_0000050> ?workshop .
|
||||||
?workshop vivo:includesEvent ?presentation .
|
?workshop <http://purl.obolibrary.org/obo/BFO_0000051> ?presentation .
|
||||||
?conference rdfs:label ?conferenceLabel
|
?conference rdfs:label ?conferenceLabel
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?presentation .
|
?role a vivo:PresenterRole .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation .
|
||||||
?conference a bibo:Conference .
|
?conference a bibo:Conference .
|
||||||
?presentation vivo:eventWithin ?workshop .
|
?presentation <http://purl.obolibrary.org/obo/BFO_0000050> ?workshop .
|
||||||
?workshop vivo:eventWithin ?conference
|
?workshop <http://purl.obolibrary.org/obo/BFO_0000050> ?conference
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?presentation .
|
?role a vivo:PresenterRole .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation .
|
||||||
?conference a bibo:Conference .
|
?conference a bibo:Conference .
|
||||||
?presentation vivo:eventWithin ?workshop .
|
?presentation <http://purl.obolibrary.org/obo/BFO_0000050> ?workshop .
|
||||||
?workshop vivo:eventWithin ?conference .
|
?workshop <http://purl.obolibrary.org/obo/BFO_0000050> ?conference .
|
||||||
?conference rdfs:label ?conferenceLabel
|
?conference rdfs:label ?conferenceLabel
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?presentation .
|
?role a vivo:PresenterRole .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation .
|
||||||
?conference a bibo:Conference .
|
?conference a bibo:Conference .
|
||||||
?conference vivo:includesEvent ?workshop .
|
?conference <http://purl.obolibrary.org/obo/BFO_0000051> ?workshop .
|
||||||
?workshop vivo:includesEvent ?presentation
|
?workshop <http://purl.obolibrary.org/obo/BFO_0000051> ?presentation
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?presentation .
|
?role a vivo:PresenterRole .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation .
|
||||||
?conference a bibo:Conference .
|
?conference a bibo:Conference .
|
||||||
?conference vivo:includesEvent ?workshop .
|
?conference <http://purl.obolibrary.org/obo/BFO_0000051> ?workshop .
|
||||||
?workshop vivo:includesEvent ?presentation .
|
?workshop <http://purl.obolibrary.org/obo/BFO_0000051> ?presentation .
|
||||||
?conference rdfs:label ?conferenceLabel
|
?conference rdfs:label ?conferenceLabel
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -238,6 +256,7 @@
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a vivo:PresenterRole .
|
||||||
?series a vivo:EventSeries .
|
?series a vivo:EventSeries .
|
||||||
?presentation vivo:inEventSeries ?series .
|
?presentation vivo:inEventSeries ?series .
|
||||||
?series vivo:seriesForEvent ?presentation .
|
?series vivo:seriesForEvent ?presentation .
|
||||||
|
@ -246,23 +265,27 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?presentation .
|
?role a vivo:PresenterRole .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation .
|
||||||
?series a vivo:EventSeries .
|
?series a vivo:EventSeries .
|
||||||
?presentation vivo:inEventSeries ?series
|
?presentation vivo:inEventSeries ?series
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?presentation .
|
?role a vivo:PresenterRole .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation .
|
||||||
?series a vivo:EventSeries .
|
?series a vivo:EventSeries .
|
||||||
?presentation vivo:inEventSeries ?series .
|
?presentation vivo:inEventSeries ?series .
|
||||||
?series rdfs:label ?seriesLabel
|
?series rdfs:label ?seriesLabel
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?presentation .
|
?role a vivo:PresenterRole .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation .
|
||||||
?series a vivo:EventSeries .
|
?series a vivo:EventSeries .
|
||||||
?series vivo:seriesForEvent ?presentation
|
?series vivo:seriesForEvent ?presentation
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?presentation .
|
?role a vivo:PresenterRole .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation .
|
||||||
?series a vivo:EventSeries .
|
?series a vivo:EventSeries .
|
||||||
?series vivo:seriesForEvent ?presentation .
|
?series vivo:seriesForEvent ?presentation .
|
||||||
?series rdfs:label ?seriesLabel
|
?series rdfs:label ?seriesLabel
|
||||||
|
@ -277,38 +300,43 @@
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a vivo:PresenterRole .
|
||||||
?workshop vivo:inEventSeries ?series .
|
?workshop vivo:inEventSeries ?series .
|
||||||
?series vivo:seriesForEvent ?workshop .
|
?series vivo:seriesForEvent ?workshop .
|
||||||
?series a vivo:EventSeries .
|
?series a vivo:EventSeries .
|
||||||
?presentation vivo:eventWithin ?workshop .
|
?presentation <http://purl.obolibrary.org/obo/BFO_0000050> ?workshop .
|
||||||
?workshop vivo:includesEvent ?presentation .
|
?workshop <http://purl.obolibrary.org/obo/BFO_0000051> ?presentation .
|
||||||
?series rdfs:label ?seriesLabel
|
?series rdfs:label ?seriesLabel
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?presentation .
|
?role a vivo:PresenterRole .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation .
|
||||||
?series a vivo:EventSeries .
|
?series a vivo:EventSeries .
|
||||||
?presentation vivo:eventWithin ?workshop .
|
?presentation <http://purl.obolibrary.org/obo/BFO_0000050> ?workshop .
|
||||||
?workshop vivo:inEventSeries ?series
|
?workshop vivo:inEventSeries ?series
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?presentation .
|
?role a vivo:PresenterRole .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation .
|
||||||
?series a vivo:EventSeries .
|
?series a vivo:EventSeries .
|
||||||
?presentation vivo:eventWithin ?workshop .
|
?presentation <http://purl.obolibrary.org/obo/BFO_0000050> ?workshop .
|
||||||
?workshop vivo:inEventSeries ?series .
|
?workshop vivo:inEventSeries ?series .
|
||||||
?series rdfs:label ?seriesLabel
|
?series rdfs:label ?seriesLabel
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?presentation .
|
?role a vivo:PresenterRole .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation .
|
||||||
?series a vivo:EventSeries .
|
?series a vivo:EventSeries .
|
||||||
?series vivo:seriesForEvent ?workshop .
|
?series vivo:seriesForEvent ?workshop .
|
||||||
?workshop vivo:includesEvent ?presentation
|
?workshop <http://purl.obolibrary.org/obo/BFO_0000051> ?presentation
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role vivo:roleRealizedIn ?presentation .
|
?role a vivo:PresenterRole .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?presentation .
|
||||||
?series a vivo:EventSeries .
|
?series a vivo:EventSeries .
|
||||||
?series vivo:seriesForEvent ?workshop .
|
?series vivo:seriesForEvent ?workshop .
|
||||||
?workshop vivo:includesEvent ?presentation .
|
?workshop <http://purl.obolibrary.org/obo/BFO_0000051> ?presentation .
|
||||||
?series rdfs:label ?seriesLabel
|
?series rdfs:label ?seriesLabel
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -318,11 +346,13 @@
|
||||||
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a vivo:PresenterRole .
|
||||||
?role vivo:dateTimeInterval ?dateTimeInterval .
|
?role vivo:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval vivo:start ?dateTimeStartValue .
|
?dateTimeInterval vivo:start ?dateTimeStartValue .
|
||||||
?dateTimeStartValue vivo:dateTime ?dateTimeStart
|
?dateTimeStartValue vivo:dateTime ?dateTimeStart
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a vivo:PresenterRole .
|
||||||
?role vivo:dateTimeInterval ?dateTimeInterval .
|
?role vivo:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval vivo:start ?dateTimeStartValue .
|
?dateTimeInterval vivo:start ?dateTimeStartValue .
|
||||||
?dateTimeStartValue vivo:dateTime ?dateTimeStart
|
?dateTimeStartValue vivo:dateTime ?dateTimeStart
|
||||||
|
|
122
productMods/config/listViewConfig-hasReviewerRole.xml
Normal file
122
productMods/config/listViewConfig-hasReviewerRole.xml
Normal file
|
@ -0,0 +1,122 @@
|
||||||
|
<?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 afn: <http://jena.hpl.hp.com/ARQ/function#>
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
||||||
|
|
||||||
|
SELECT DISTINCT <collated> ?subclass </collated>
|
||||||
|
?role
|
||||||
|
?subclassLabel
|
||||||
|
?activity
|
||||||
|
(afn:localname(?activity) AS ?activityLocal)
|
||||||
|
?activityName
|
||||||
|
?dateTimeStart
|
||||||
|
?dateTimeEnd
|
||||||
|
WHERE {
|
||||||
|
|
||||||
|
?subject ?property ?role
|
||||||
|
OPTIONAL { ?role core:roleContributesTo ?activity .
|
||||||
|
?activity vitro:mostSpecificType ?subclass
|
||||||
|
OPTIONAL { ?activity rdfs:label ?activityName }
|
||||||
|
OPTIONAL { ?subclass rdfs:label ?subclassLabel }
|
||||||
|
}
|
||||||
|
|
||||||
|
OPTIONAL { ?role core:dateTimeInterval ?dateTimeInterval
|
||||||
|
OPTIONAL { ?dateTimeInterval core:start ?dateTimeStartValue .
|
||||||
|
?dateTimeStartValue core:dateTime ?dateTimeStart
|
||||||
|
}
|
||||||
|
OPTIONAL { ?dateTimeInterval core:end ?dateTimeEndValue .
|
||||||
|
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
} ORDER BY <collated> ?subclass </collated> DESC(?dateTimeEnd) DESC(?dateTimeStart) ?activityName
|
||||||
|
</query-select>
|
||||||
|
|
||||||
|
<query-construct>
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:ReviewerRole .
|
||||||
|
?role vitro:mostSpecificType ?roleSubclass .
|
||||||
|
?role core:roleContributesTo ?activity .
|
||||||
|
?activity rdfs:label ?activityName .
|
||||||
|
?activity vitro:mostSpecificType ?subclass .
|
||||||
|
?subclass rdfs:label ?subclassLabel
|
||||||
|
} WHERE {
|
||||||
|
{
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:ReviewerRole .
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:ReviewerRole .
|
||||||
|
?role vitro:mostSpecificType ?roleSubclass
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:ReviewerRole .
|
||||||
|
?role core:roleContributesTo ?activity
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:ReviewerRole .
|
||||||
|
?role core:roleContributesTo ?activity .
|
||||||
|
?activity rdfs:label ?activityName .
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:ReviewerRole .
|
||||||
|
?role core:roleContributesTo ?activity .
|
||||||
|
?activity vitro:mostSpecificType ?subclass
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:ReviewerRole .
|
||||||
|
?role core:roleContributesTo ?activity .
|
||||||
|
?activity vitro:mostSpecificType ?subclass .
|
||||||
|
?subclass rdfs:label ?subclassLabel
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</query-construct>
|
||||||
|
|
||||||
|
<query-construct>
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
CONSTRUCT {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:ReviewerRole .
|
||||||
|
?role core:dateTimeInterval ?dateTimeInterval .
|
||||||
|
?dateTimeInterval core:start ?dateTimeStartValue .
|
||||||
|
?dateTimeStartValue core:dateTime ?dateTimeStart
|
||||||
|
} WHERE {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:ReviewerRole .
|
||||||
|
?role core:dateTimeInterval ?dateTimeInterval .
|
||||||
|
?dateTimeInterval core:start ?dateTimeStartValue .
|
||||||
|
?dateTimeStartValue core:dateTime ?dateTimeStart
|
||||||
|
}
|
||||||
|
</query-construct>
|
||||||
|
|
||||||
|
<query-construct>
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
CONSTRUCT {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:ReviewerRole .
|
||||||
|
?role core:dateTimeInterval ?dateTimeInterval .
|
||||||
|
?dateTimeInterval core:end ?dateTimeEndValue .
|
||||||
|
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
||||||
|
} WHERE {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a core:ReviewerRole .
|
||||||
|
?role core:dateTimeInterval ?dateTimeInterval .
|
||||||
|
?dateTimeInterval core:end ?dateTimeEndValue .
|
||||||
|
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
||||||
|
}
|
||||||
|
</query-construct>
|
||||||
|
|
||||||
|
<template>propStatement-hasEditReviewRole.ftl</template>
|
||||||
|
</list-view-config>
|
|
@ -19,11 +19,13 @@
|
||||||
?activityLabel
|
?activityLabel
|
||||||
?dateTimeStart ?dateTimeEnd
|
?dateTimeStart ?dateTimeEnd
|
||||||
?hideThis
|
?hideThis
|
||||||
|
?objectType
|
||||||
WHERE {
|
WHERE {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role a ?objectType
|
?role a ?objectType .
|
||||||
|
?role vitro:mostSpecificType ?roleSubclass
|
||||||
|
|
||||||
OPTIONAL { ?role core:roleRealizedIn ?activity
|
OPTIONAL { ?role <http://purl.obolibrary.org/obo/BFO_0000054> ?activity
|
||||||
LET (?activityName := afn:localname(?activity))
|
LET (?activityName := afn:localname(?activity))
|
||||||
OPTIONAL { ?activity rdfs:label ?activityLabel }
|
OPTIONAL { ?activity rdfs:label ?activityLabel }
|
||||||
|
|
||||||
|
@ -31,7 +33,14 @@
|
||||||
?activity vitro:mostSpecificType ?subclass
|
?activity vitro:mostSpecificType ?subclass
|
||||||
</collated>
|
</collated>
|
||||||
}
|
}
|
||||||
|
OPTIONAL { ?role core:relates ?activity
|
||||||
|
LET (?activityName := afn:localname(?activity))
|
||||||
|
OPTIONAL { ?activity rdfs:label ?activityLabel }
|
||||||
|
|
||||||
|
<collated>
|
||||||
|
?activity vitro:mostSpecificType ?subclass
|
||||||
|
</collated>
|
||||||
|
}
|
||||||
OPTIONAL { ?role core:roleContributesTo ?activity
|
OPTIONAL { ?role core:roleContributesTo ?activity
|
||||||
LET (?activityName := afn:localname(?activity))
|
LET (?activityName := afn:localname(?activity))
|
||||||
OPTIONAL { ?activity rdfs:label ?activityLabel }
|
OPTIONAL { ?activity rdfs:label ?activityLabel }
|
||||||
|
@ -51,13 +60,26 @@
|
||||||
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
# NOT EXISTS { ?role core:hideFromDisplay ?hideThis }
|
FILTER ( bound(?activity) && ?objectType = ?roleSubclass )
|
||||||
<critical-data-required>
|
|
||||||
FILTER ( bound(?activity) )
|
|
||||||
</critical-data-required>
|
|
||||||
} ORDER BY <collated>?subclass</collated> DESC(?dateTimeEnd) DESC(?dateTimeStart) ?activityLabel ?activityName
|
} ORDER BY <collated>?subclass</collated> DESC(?dateTimeEnd) DESC(?dateTimeStart) ?activityLabel ?activityName
|
||||||
</query-select>
|
</query-select>
|
||||||
|
|
||||||
|
<query-construct>
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
||||||
|
|
||||||
|
CONSTRUCT {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role core:relates ?activity .
|
||||||
|
?activity vitro:mostSpecificType ?subclass .
|
||||||
|
} WHERE {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role core:relates ?activity .
|
||||||
|
?activity vitro:mostSpecificType ?subclass
|
||||||
|
}
|
||||||
|
</query-construct>
|
||||||
|
|
||||||
<query-construct>
|
<query-construct>
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
@ -81,11 +103,11 @@
|
||||||
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role core:roleRealizedIn ?activity .
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?activity .
|
||||||
?activity vitro:mostSpecificType ?subclass .
|
?activity vitro:mostSpecificType ?subclass .
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role core:roleRealizedIn ?activity .
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?activity .
|
||||||
?activity vitro:mostSpecificType ?subclass
|
?activity vitro:mostSpecificType ?subclass
|
||||||
}
|
}
|
||||||
</query-construct>
|
</query-construct>
|
||||||
|
@ -105,11 +127,15 @@
|
||||||
?role ?roleProperty ?roleValue
|
?role ?roleProperty ?roleValue
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role core:roleContributesTo ?activity .
|
?role core:relates ?activity .
|
||||||
?activity rdfs:label ?activityName
|
?activity rdfs:label ?activityName
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role core:roleRealizedIn ?activity .
|
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?activity .
|
||||||
|
?activity rdfs:label ?activityName
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role core:roleContributesTo ?activity .
|
||||||
?activity rdfs:label ?activityName
|
?activity rdfs:label ?activityName
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,10 +13,13 @@
|
||||||
|
|
||||||
SELECT DISTINCT <collated> ?subclass </collated>
|
SELECT DISTINCT <collated> ?subclass </collated>
|
||||||
?authorship
|
?authorship
|
||||||
?person ?personName WHERE {
|
?person ?personName
|
||||||
?subject ?property ?authorship
|
WHERE {
|
||||||
OPTIONAL { ?authorship core:authorRank ?rank }
|
?subject ?property ?authorship .
|
||||||
OPTIONAL { ?authorship core:linkedAuthor ?person .
|
?authorship a core:Authorship
|
||||||
|
OPTIONAL { ?authorship core:rank ?rank }
|
||||||
|
OPTIONAL { ?authorship core:relates ?person .
|
||||||
|
?person a foaf:Person .
|
||||||
?person rdfs:label ?personName
|
?person rdfs:label ?personName
|
||||||
<collated>
|
<collated>
|
||||||
OPTIONAL { ?person vitro:mostSpecificType ?subclass .
|
OPTIONAL { ?person vitro:mostSpecificType ?subclass .
|
||||||
|
@ -44,9 +47,12 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship ?authorshipProperty ?authorshipValue .
|
?authorship ?authorshipProperty ?authorshipValue .
|
||||||
|
?authorship core:relates ?person .
|
||||||
|
?person a foaf:Person .
|
||||||
?person rdfs:label ?personName .
|
?person rdfs:label ?personName .
|
||||||
?person vitro:mostSpecificType ?subclass
|
?person vitro:mostSpecificType ?subclass
|
||||||
} WHERE {
|
} WHERE {
|
||||||
|
@ -57,11 +63,13 @@
|
||||||
?authorship ?authorshipProperty ?authorshipValue
|
?authorship ?authorshipProperty ?authorshipValue
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship core:linkedAuthor ?person .
|
?authorship core:relates ?person .
|
||||||
|
?person a foaf:Person .
|
||||||
?person rdfs:label ?personName
|
?person rdfs:label ?personName
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship core:linkedAuthor ?person .
|
?authorship core:relates ?person .
|
||||||
|
?person a foaf:Person .
|
||||||
?person rdfs:label ?personName .
|
?person rdfs:label ?personName .
|
||||||
?person vitro:mostSpecificType ?subclass
|
?person vitro:mostSpecificType ?subclass
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,67 +5,47 @@
|
||||||
|
|
||||||
<list-view-config>
|
<list-view-config>
|
||||||
<query-select>
|
<query-select>
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
|
||||||
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
|
||||||
PREFIX afn: <http://jena.hpl.hp.com/ARQ/function#>
|
|
||||||
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
|
||||||
|
|
||||||
SELECT DISTINCT ?subclass
|
SELECT DISTINCT ?vcard ?address
|
||||||
?address
|
?street
|
||||||
?localName
|
?locality
|
||||||
?label
|
?region
|
||||||
?street1
|
|
||||||
?street2
|
|
||||||
?street3
|
|
||||||
?city
|
|
||||||
?state
|
|
||||||
?postalCode
|
?postalCode
|
||||||
?country
|
?country
|
||||||
|
|
||||||
WHERE {
|
WHERE {
|
||||||
?subject ?property ?address
|
?subject ?property ?vcard .
|
||||||
LET ( ?localName := afn:localname(?address) )
|
?vcard vcard:hasAddress ?address
|
||||||
OPTIONAL { ?address rdfs:label ?label }
|
OPTIONAL { ?address vcard:streetAddress ?street }
|
||||||
OPTIONAL { ?address vivo:address1 ?street1 }
|
OPTIONAL { ?address vcard:locality ?locality }
|
||||||
OPTIONAL { ?address vivo:address2 ?street2 }
|
OPTIONAL { ?address vcard:region ?region }
|
||||||
OPTIONAL { ?address vivo:address3 ?street3 }
|
OPTIONAL { ?address vcard:postalCode ?postalCode }
|
||||||
OPTIONAL { ?address vivo:addressCity ?city }
|
OPTIONAL { ?address vcard:country ?country }
|
||||||
OPTIONAL { ?address vivo:addressState ?state }
|
|
||||||
OPTIONAL { ?address vivo:addressPostalCode ?postalCode }
|
|
||||||
OPTIONAL { ?address vivo:addressCountry ?country }
|
|
||||||
|
|
||||||
OPTIONAL { ?address vitro:mostSpecificType ?subclass .
|
} ORDER BY ?country ?region ?street
|
||||||
?subclass rdfs:subClassOf vivo:Address
|
|
||||||
}
|
|
||||||
|
|
||||||
} ORDER BY ?country ?label
|
|
||||||
</query-select>
|
</query-select>
|
||||||
|
|
||||||
<query-construct>
|
<query-construct>
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
|
||||||
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subclass rdfs:subClassOf vivo:Address
|
?subject ?property ?vcard .
|
||||||
} WHERE {
|
?vcard vcard:hasAddress ?address .
|
||||||
?subclass rdfs:subClassOf vivo:Address
|
|
||||||
}
|
|
||||||
</query-construct>
|
|
||||||
|
|
||||||
<query-construct>
|
|
||||||
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
||||||
CONSTRUCT {
|
|
||||||
?subject ?property ?address .
|
|
||||||
?address ?addressProperty ?addressValue
|
?address ?addressProperty ?addressValue
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?address
|
?subject ?property ?vcard
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?address .
|
?subject ?property ?vcard .
|
||||||
|
?vcard vcard:hasAddress ?address
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?vcard .
|
||||||
|
?vcard vcard:hasAddress ?address .
|
||||||
?address ?addressProperty ?addressValue
|
?address ?addressProperty ?addressValue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</query-construct>
|
</query-construct>
|
||||||
|
|
||||||
<template>propStatement-mailingAddress.ftl</template>
|
<template>propStatement-mailingAddress.ftl</template>
|
||||||
|
<postprocessor>edu.cornell.mannlib.vitro.webapp.web.templatemodels.individual.MaintainDuplicatesObjectPropertyDataPostProcessor</postprocessor>
|
||||||
</list-view-config>
|
</list-view-config>
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX afn: <http://jena.hpl.hp.com/ARQ/function#>
|
PREFIX afn: <http://jena.hpl.hp.com/ARQ/function#>
|
||||||
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
|
||||||
SELECT DISTINCT <collated> ?subclass </collated>
|
SELECT DISTINCT <collated> ?subclass </collated>
|
||||||
?position
|
?position
|
||||||
|
@ -18,12 +19,12 @@
|
||||||
?hideThis
|
?hideThis
|
||||||
WHERE {
|
WHERE {
|
||||||
?subject ?property ?position
|
?subject ?property ?position
|
||||||
OPTIONAL { ?position core:positionForPerson ?person .
|
OPTIONAL { ?position core:relates ?person .
|
||||||
|
?person a foaf:Person .
|
||||||
?person rdfs:label ?personName
|
?person rdfs:label ?personName
|
||||||
}
|
}
|
||||||
<collated>
|
<collated>
|
||||||
OPTIONAL { ?position vitro:mostSpecificType ?subclass .
|
OPTIONAL { ?position vitro:mostSpecificType ?subclass .
|
||||||
?subclass rdfs:subClassOf core:Position
|
|
||||||
}
|
}
|
||||||
</collated>
|
</collated>
|
||||||
OPTIONAL { ?position rdfs:label ?positionTitle }
|
OPTIONAL { ?position rdfs:label ?positionTitle }
|
||||||
|
@ -52,31 +53,38 @@
|
||||||
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
?position vitro:mostSpecificType ?subclass .
|
?position a core:Position .
|
||||||
?subclass rdfs:subClassOf core:Position
|
?position vitro:mostSpecificType ?subclass
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
?position vitro:mostSpecificType ?subclass .
|
?position a core:Position .
|
||||||
?subclass rdfs:subClassOf core:Position
|
?position vitro:mostSpecificType ?subclass
|
||||||
}
|
}
|
||||||
</query-construct>
|
</query-construct>
|
||||||
|
|
||||||
<query-construct>
|
<query-construct>
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
|
?position a core:Position .
|
||||||
?position ?positionProperty ?positionValue .
|
?position ?positionProperty ?positionValue .
|
||||||
|
?position core:relates ?person .
|
||||||
|
?person a foaf:Person .
|
||||||
?person rdfs:label ?personName
|
?person rdfs:label ?personName
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?position
|
?subject ?property ?position .
|
||||||
|
?position a core:Position .
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
|
?position a core:Position .
|
||||||
?position ?positionProperty ?positionValue
|
?position ?positionProperty ?positionValue
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
?position core:positionForPerson ?person .
|
?position core:relates ?person .
|
||||||
|
?person a foaf:Person .
|
||||||
?person rdfs:label ?personName
|
?person rdfs:label ?personName
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -86,11 +94,13 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
|
?position a core:Position .
|
||||||
?position core:dateTimeInterval ?dateTimeInterval .
|
?position core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:start ?dateTimeStartValue .
|
?dateTimeInterval core:start ?dateTimeStartValue .
|
||||||
?dateTimeStartValue core:dateTime ?dateTimeStart
|
?dateTimeStartValue core:dateTime ?dateTimeStart
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
|
?position a core:Position .
|
||||||
?position core:dateTimeInterval ?dateTimeInterval .
|
?position core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:start ?dateTimeStartValue .
|
?dateTimeInterval core:start ?dateTimeStartValue .
|
||||||
?dateTimeStartValue core:dateTime ?dateTimeStart
|
?dateTimeStartValue core:dateTime ?dateTimeStart
|
||||||
|
@ -101,11 +111,13 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
|
?position a core:Position .
|
||||||
?position core:dateTimeInterval ?dateTimeInterval .
|
?position core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:end ?dateTimeEndValue .
|
?dateTimeInterval core:end ?dateTimeEndValue .
|
||||||
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
|
?position a core:Position .
|
||||||
?position core:dateTimeInterval ?dateTimeInterval .
|
?position core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:end ?dateTimeEndValue .
|
?dateTimeInterval core:end ?dateTimeEndValue .
|
||||||
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
?outerOrg ?outerOrgName
|
?outerOrg ?outerOrgName
|
||||||
?dateTimeStart ?dateTimeEnd WHERE {
|
?dateTimeStart ?dateTimeEnd WHERE {
|
||||||
?subject ?property ?position
|
?subject ?property ?position
|
||||||
OPTIONAL { ?position core:positionInOrganization ?org .
|
OPTIONAL { ?position core:relates ?org .
|
||||||
?org rdfs:label ?orgName
|
?org rdfs:label ?orgName
|
||||||
OPTIONAL { ?org core:subOrganizationWithin ?middleOrg .
|
OPTIONAL { ?org core:subOrganizationWithin ?middleOrg .
|
||||||
?middleOrg rdfs:label ?middleOrgName
|
?middleOrg rdfs:label ?middleOrgName
|
||||||
|
@ -61,6 +61,7 @@
|
||||||
?subclass rdfs:subClassOf core:Position
|
?subclass rdfs:subClassOf core:Position
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
|
?position a core:Position .
|
||||||
?position vitro:mostSpecificType ?subclass .
|
?position vitro:mostSpecificType ?subclass .
|
||||||
?subclass rdfs:subClassOf core:Position
|
?subclass rdfs:subClassOf core:Position
|
||||||
}
|
}
|
||||||
|
@ -69,8 +70,10 @@
|
||||||
<query-construct>
|
<query-construct>
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
|
?position a core:Position .
|
||||||
?position ?positionProperty ?positionValue .
|
?position ?positionProperty ?positionValue .
|
||||||
?org rdfs:label ?orgName .
|
?org rdfs:label ?orgName .
|
||||||
?org core:subOrganizationWithin ?middleOrg .
|
?org core:subOrganizationWithin ?middleOrg .
|
||||||
|
@ -79,34 +82,47 @@
|
||||||
?outerOrg rdfs:label ?outerOrgName
|
?outerOrg rdfs:label ?outerOrgName
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?position
|
?subject ?property ?position .
|
||||||
|
?position a core:Position .
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
|
?position a core:Position .
|
||||||
?position ?positionProperty ?positionValue
|
?position ?positionProperty ?positionValue
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
|
?position a core:Position .
|
||||||
?position core:rank ?rank
|
?position core:rank ?rank
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
?position core:positionInOrganization ?org .
|
?position a core:Position .
|
||||||
|
?position core:relates ?org .
|
||||||
|
?org a foaf:Organization .
|
||||||
?org rdfs:label ?orgName
|
?org rdfs:label ?orgName
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
?position core:positionInOrganization ?org .
|
?position a core:Position .
|
||||||
|
?position core:relates ?org .
|
||||||
|
?org a foaf:Organization .
|
||||||
?org core:subOrganizationWithin ?middleOrg
|
?org core:subOrganizationWithin ?middleOrg
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
?position core:positionInOrganization ?org .
|
?position a core:Position .
|
||||||
|
?position core:relates ?org .
|
||||||
|
?org a foaf:Organization .
|
||||||
?org core:subOrganizationWithin ?middleOrg .
|
?org core:subOrganizationWithin ?middleOrg .
|
||||||
?middleOrg rdfs:label ?middleOrgName
|
?middleOrg rdfs:label ?middleOrgName
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
?position core:positionInOrganization ?org .
|
?position a core:Position .
|
||||||
|
?position core:relates ?org .
|
||||||
|
?org a foaf:Organization .
|
||||||
?org core:subOrganizationWithin ?middleOrg .
|
?org core:subOrganizationWithin ?middleOrg .
|
||||||
?middleOrg core:subOrganizationWithin ?outerOrg
|
?middleOrg core:subOrganizationWithin ?outerOrg
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
|
?position a core:Position .
|
||||||
?position core:positionInOrganization ?org .
|
?position core:positionInOrganization ?org .
|
||||||
|
?org a foaf:Organization .
|
||||||
?org core:subOrganizationWithin ?middleOrg .
|
?org core:subOrganizationWithin ?middleOrg .
|
||||||
?middleOrg core:subOrganizationWithin ?outerOrg .
|
?middleOrg core:subOrganizationWithin ?outerOrg .
|
||||||
?outerOrg rdfs:label ?outerOrgName
|
?outerOrg rdfs:label ?outerOrgName
|
||||||
|
@ -118,11 +134,13 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
|
?position a core:Position .
|
||||||
?position core:dateTimeInterval ?dateTimeInterval .
|
?position core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:start ?dateTimeStartValue .
|
?dateTimeInterval core:start ?dateTimeStartValue .
|
||||||
?dateTimeStartValue core:dateTime ?dateTimeStart
|
?dateTimeStartValue core:dateTime ?dateTimeStart
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
|
?position a core:Position .
|
||||||
?position core:dateTimeInterval ?dateTimeInterval .
|
?position core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:start ?dateTimeStartValue .
|
?dateTimeInterval core:start ?dateTimeStartValue .
|
||||||
?dateTimeStartValue core:dateTime ?dateTimeStart
|
?dateTimeStartValue core:dateTime ?dateTimeStart
|
||||||
|
@ -133,11 +151,13 @@
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
|
?position a core:Position .
|
||||||
?position core:dateTimeInterval ?dateTimeInterval .
|
?position core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:end ?dateTimeEndValue .
|
?dateTimeInterval core:end ?dateTimeEndValue .
|
||||||
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?position .
|
?subject ?property ?position .
|
||||||
|
?position a core:Position .
|
||||||
?position core:dateTimeInterval ?dateTimeInterval .
|
?position core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:end ?dateTimeEndValue .
|
?dateTimeInterval core:end ?dateTimeEndValue .
|
||||||
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
?dateTimeEndValue core:dateTime ?dateTimeEnd
|
||||||
|
|
46
productMods/config/listViewConfig-primaryEmail.xml
Normal file
46
productMods/config/listViewConfig-primaryEmail.xml
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
<?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#>
|
||||||
|
|
||||||
|
SELECT DISTINCT ?vcard ?email
|
||||||
|
?emailAddress
|
||||||
|
WHERE {
|
||||||
|
?subject ?property ?vcard .
|
||||||
|
?vcard vcard:hasEmail ?email .
|
||||||
|
?email a vcard:Work
|
||||||
|
OPTIONAL { ?email vcard:email ?emailAddress }
|
||||||
|
|
||||||
|
}
|
||||||
|
</query-select>
|
||||||
|
|
||||||
|
<query-construct>
|
||||||
|
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
CONSTRUCT {
|
||||||
|
?subject ?property ?vcard .
|
||||||
|
?vcard vcard:hasEmail ?email .
|
||||||
|
?email a vcard:Work .
|
||||||
|
?email ?emailProperty ?emailValue
|
||||||
|
} WHERE {
|
||||||
|
{
|
||||||
|
?subject ?property ?vcard
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?vcard .
|
||||||
|
?vcard vcard:hasEmail ?email .
|
||||||
|
?email a vcard:Work
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?vcard .
|
||||||
|
?vcard vcard:hasEmail ?email .
|
||||||
|
?email a vcard:Work .
|
||||||
|
?email ?emailProperty ?emailValue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</query-construct>
|
||||||
|
|
||||||
|
<template>propStatement-emailAddress.ftl</template>
|
||||||
|
<postprocessor>edu.cornell.mannlib.vitro.webapp.web.templatemodels.individual.MaintainDuplicatesObjectPropertyDataPostProcessor</postprocessor>
|
||||||
|
</list-view-config>
|
|
@ -20,22 +20,24 @@ http://vivoweb.org/ontology/core#realizedRole and http://vivoweb.org/ontology/co
|
||||||
?roleLabel ?roleTypeLabel
|
?roleLabel ?roleTypeLabel
|
||||||
?indivInRole (afn:localname(?indivInRole) AS ?indivName)
|
?indivInRole (afn:localname(?indivInRole) AS ?indivName)
|
||||||
?indivLabel
|
?indivLabel
|
||||||
?dateTimeInterval ?dateTimeStart ?dateTimeEnd WHERE {
|
?dateTimeInterval ?dateTimeStart ?dateTimeEnd ?objectType
|
||||||
|
WHERE {
|
||||||
|
|
||||||
?subject ?property ?role
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType
|
||||||
|
|
||||||
OPTIONAL { ?role rdfs:label ?roleLabel }
|
OPTIONAL { ?role rdfs:label ?roleLabel }
|
||||||
|
|
||||||
# We need ?subclass in the uncollated query to get the roleTypeLabel
|
# We need ?subclass in the uncollated query to get the roleTypeLabel
|
||||||
# for roles that have no label (e.g., InvestigatorRole and its subclasses).
|
# for roles that have no label.
|
||||||
OPTIONAL { ?role vitro:mostSpecificType ?subclass .
|
OPTIONAL { ?role vitro:mostSpecificType ?subclass .
|
||||||
?subclass rdfs:subClassOf core:Role
|
|
||||||
OPTIONAL { ?subclass rdfs:label ?roleTypeLabel }
|
OPTIONAL { ?subclass rdfs:label ?roleTypeLabel }
|
||||||
?roleProp rdfs:subPropertyOf core:roleOf ;
|
OPTIONAL { ?role <http://purl.obolibrary.org/obo/RO_0000052> ?indivInRole
|
||||||
rdfs:domain ?subclass .
|
|
||||||
OPTIONAL { ?role ?roleProp ?indivInRole
|
|
||||||
OPTIONAL { ?indivInRole rdfs:label ?indivLabel }
|
OPTIONAL { ?indivInRole rdfs:label ?indivLabel }
|
||||||
}
|
}
|
||||||
|
OPTIONAL { ?role <http://purl.obolibrary.org/obo/BFO_0000055> ?indivInRole
|
||||||
|
OPTIONAL { ?indivInRole rdfs:label ?indivLabel }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
OPTIONAL { ?role core:dateTimeInterval ?dateTimeInterval
|
OPTIONAL { ?role core:dateTimeInterval ?dateTimeInterval
|
||||||
|
@ -52,46 +54,43 @@ http://vivoweb.org/ontology/core#realizedRole and http://vivoweb.org/ontology/co
|
||||||
} ORDER BY <collated>?subclass</collated> ?indivLabel ?roleLabel ?roleTypeLabel ?indivName
|
} ORDER BY <collated>?subclass</collated> ?indivLabel ?roleLabel ?roleTypeLabel ?indivName
|
||||||
</query-select>
|
</query-select>
|
||||||
|
|
||||||
<query-construct>
|
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
||||||
CONSTRUCT {
|
|
||||||
?subclass rdfs:subClassOf core:Role .
|
|
||||||
?roleProp rdfs:subPropertyOf core:roleOf .
|
|
||||||
?roleProp rdfs:domain ?subclass
|
|
||||||
} WHERE {
|
|
||||||
?subclass rdfs:subClassOf core:Role .
|
|
||||||
?roleProp rdfs:subPropertyOf core:roleOf ;
|
|
||||||
rdfs:domain ?subclass
|
|
||||||
}
|
|
||||||
</query-construct>
|
|
||||||
|
|
||||||
<query-construct>
|
<query-construct>
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
?role ?roleProperty ?roleValue .
|
?role ?roleProperty ?roleValue .
|
||||||
?role vitro:mostSpecificType ?subclass .
|
?role vitro:mostSpecificType ?subclass .
|
||||||
?subclass rdfs:label ?roleTypeLabel .
|
?subclass rdfs:label ?roleTypeLabel .
|
||||||
?indivInRole rdfs:label ?indivLabel
|
?indivInRole rdfs:label ?indivLabel
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?role
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
?role ?roleProperty ?roleValue
|
?role ?roleProperty ?roleValue
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
?role vitro:mostSpecificType ?subclass
|
?role vitro:mostSpecificType ?subclass
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
?role vitro:mostSpecificType ?subclass .
|
?role vitro:mostSpecificType ?subclass .
|
||||||
?subclass rdfs:label ?roleTypeLabel
|
?subclass rdfs:label ?roleTypeLabel
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
?role ?roleProp ?indivInRole .
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/RO_0000052> ?indivInRole .
|
||||||
|
?indivInRole rdfs:label ?indivLabel
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
|
?role <http://purl.obolibrary.org/obo/BFO_0000055> ?indivInRole .
|
||||||
?indivInRole rdfs:label ?indivLabel
|
?indivInRole rdfs:label ?indivLabel
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -101,11 +100,13 @@ http://vivoweb.org/ontology/core#realizedRole and http://vivoweb.org/ontology/co
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
?role core:dateTimeInterval ?dateTimeInterval .
|
?role core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:start ?dateTimeStartValue .
|
?dateTimeInterval core:start ?dateTimeStartValue .
|
||||||
?dateTimeStartValue core:dateTime ?dateTimeStart
|
?dateTimeStartValue core:dateTime ?dateTimeStart
|
||||||
} WHERE {
|
} WHERE {
|
||||||
?subject ?property ?role .
|
?subject ?property ?role .
|
||||||
|
?role a ?objectType .
|
||||||
?role core:dateTimeInterval ?dateTimeInterval .
|
?role core:dateTimeInterval ?dateTimeInterval .
|
||||||
?dateTimeInterval core:start ?dateTimeStartValue .
|
?dateTimeInterval core:start ?dateTimeStartValue .
|
||||||
?dateTimeStartValue core:dateTime ?dateTimeStart
|
?dateTimeStartValue core:dateTime ?dateTimeStart
|
||||||
|
|
42
productMods/config/listViewConfig-telephoneNumber.xml
Normal file
42
productMods/config/listViewConfig-telephoneNumber.xml
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
<?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#>
|
||||||
|
|
||||||
|
SELECT DISTINCT ?vcard ?phone
|
||||||
|
?number
|
||||||
|
WHERE {
|
||||||
|
?subject ?property ?vcard .
|
||||||
|
?vcard vcard:hasTelephone ?phone
|
||||||
|
OPTIONAL { ?phone vcard:telephone ?number }
|
||||||
|
|
||||||
|
}
|
||||||
|
</query-select>
|
||||||
|
|
||||||
|
<query-construct>
|
||||||
|
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
CONSTRUCT {
|
||||||
|
?subject ?property ?vcard .
|
||||||
|
?vcard vcard:hasTelephone ?phone .
|
||||||
|
?phone ?phoneProperty ?phoneValue
|
||||||
|
} WHERE {
|
||||||
|
{
|
||||||
|
?subject ?property ?vcard
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?vcard .
|
||||||
|
?vcard vcard:hasTelephone ?phone
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?vcard .
|
||||||
|
?vcard vcard:hasTelephone ?phone .
|
||||||
|
?phone ?phoneProperty ?phoneValue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</query-construct>
|
||||||
|
|
||||||
|
<template>propStatement-telephoneNumber.ftl</template>
|
||||||
|
<postprocessor>edu.cornell.mannlib.vitro.webapp.web.templatemodels.individual.MaintainDuplicatesObjectPropertyDataPostProcessor</postprocessor>
|
||||||
|
</list-view-config>
|
|
@ -9,35 +9,55 @@
|
||||||
<query-select>
|
<query-select>
|
||||||
PREFIX afn: <http://jena.hpl.hp.com/ARQ/function#>
|
PREFIX afn: <http://jena.hpl.hp.com/ARQ/function#>
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
|
||||||
|
|
||||||
SELECT ?link
|
SELECT ?vcard ?link
|
||||||
(afn:localname(?link) AS ?linkName)
|
(afn:localname(?link) AS ?linkName)
|
||||||
?anchor
|
?label
|
||||||
?url
|
?url
|
||||||
?rank WHERE {
|
?rank WHERE {
|
||||||
?subject ?property ?link
|
?subject ?property ?vcard .
|
||||||
OPTIONAL { ?link core:linkAnchorText ?anchor }
|
?vcard vcard:hasURL ?link
|
||||||
OPTIONAL { ?link core:linkURI ?url }
|
OPTIONAL { ?link rdfs:label ?label }
|
||||||
|
OPTIONAL { ?link vcard:url ?url }
|
||||||
OPTIONAL { ?link core:rank ?rank }
|
OPTIONAL { ?link core:rank ?rank }
|
||||||
<critical-data-required>
|
<critical-data-required>
|
||||||
FILTER ( bound(?url) )
|
FILTER ( bound(?url) )
|
||||||
</critical-data-required>
|
</critical-data-required>
|
||||||
} ORDER BY ?rank ?anchor
|
} ORDER BY ?rank ?label
|
||||||
</query-select>
|
</query-select>
|
||||||
|
|
||||||
<query-construct>
|
<query-construct>
|
||||||
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
|
||||||
CONSTRUCT {
|
CONSTRUCT {
|
||||||
?subject ?property ?link .
|
?subject ?property ?vcard .
|
||||||
?link ?linkProp ?linkObj
|
?vcard vcard:hasURL ?link .
|
||||||
|
?link vcard:url ?url .
|
||||||
|
?link core:rank ?rank .
|
||||||
|
?link rdfs:label ?label
|
||||||
} WHERE {
|
} WHERE {
|
||||||
{
|
{
|
||||||
?subject ?property ?link
|
?subject ?property ?vcard .
|
||||||
|
?vcard vcard:hasURL ?link
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?link .
|
?subject ?property ?vcard .
|
||||||
?link ?linkProp ?linkObj
|
?vcard vcard:hasURL ?link .
|
||||||
|
?link vcard:url ?url
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?vcard .
|
||||||
|
?vcard vcard:hasURL ?link .
|
||||||
|
?link core:rank ?rank
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?vcard .
|
||||||
|
?vcard vcard:hasURL ?link .
|
||||||
|
?link rdfs:label ?label
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</query-construct>
|
</query-construct>
|
||||||
|
|
||||||
<template>propStatement-webpage.ftl</template>
|
<template>propStatement-webpage.ftl</template>
|
||||||
|
<postprocessor>edu.cornell.mannlib.vitro.webapp.web.templatemodels.individual.MaintainDuplicatesObjectPropertyDataPostProcessor</postprocessor>
|
||||||
</list-view-config>
|
</list-view-config>
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 442 B |
|
@ -10,6 +10,9 @@
|
||||||
<#if !labelCount??>
|
<#if !labelCount??>
|
||||||
<#assign labelCount = 0 >
|
<#assign labelCount = 0 >
|
||||||
</#if>
|
</#if>
|
||||||
|
<#if !localesCount??>
|
||||||
|
<#assign localesCount = 1>
|
||||||
|
</#if>
|
||||||
<#assign qrCodeIcon = "qr-code-icon.png">
|
<#assign qrCodeIcon = "qr-code-icon.png">
|
||||||
<#assign visRequestingTemplate = "foaf-person-2column">
|
<#assign visRequestingTemplate = "foaf-person-2column">
|
||||||
<section id="individual-intro" class="vcard person" role="region">
|
<section id="individual-intro" class="vcard person" role="region">
|
||||||
|
@ -40,7 +43,7 @@
|
||||||
<#else>
|
<#else>
|
||||||
<h1 class="vcard foaf-person fn" <#if !editable>style="float:left;border-right:1px solid #A6B1B0;"</#if>>
|
<h1 class="vcard foaf-person fn" <#if !editable>style="float:left;border-right:1px solid #A6B1B0;"</#if>>
|
||||||
<#-- Label -->
|
<#-- Label -->
|
||||||
<@p.label individual editable labelCount/>
|
<@p.label individual editable labelCount localesCount/>
|
||||||
</h1>
|
</h1>
|
||||||
<#-- Display preferredTitle if it exists; otherwise mostSpecificTypes -->
|
<#-- Display preferredTitle if it exists; otherwise mostSpecificTypes -->
|
||||||
<#assign title = propertyGroups.pullProperty("${core}preferredTitle")!>
|
<#assign title = propertyGroups.pullProperty("${core}preferredTitle")!>
|
||||||
|
@ -51,7 +54,7 @@
|
||||||
<div id="titleContainer"><span class="display-title-not-editable">${statement.value}</span></div>
|
<div id="titleContainer"><span class="display-title-not-editable">${statement.value}</span></div>
|
||||||
<#else>
|
<#else>
|
||||||
<span class="display-title-editable">${statement.value}</span>
|
<span class="display-title-editable">${statement.value}</span>
|
||||||
<@p.editingLinks "${title.name}" statement editable />
|
<@p.editingLinks "${title.name}" "" statement editable />
|
||||||
</#if>
|
</#if>
|
||||||
</#list>
|
</#list>
|
||||||
</#if>
|
</#if>
|
||||||
|
|
|
@ -12,6 +12,9 @@
|
||||||
<#if !labelCount??>
|
<#if !labelCount??>
|
||||||
<#assign labelCount = 0 >
|
<#assign labelCount = 0 >
|
||||||
</#if>
|
</#if>
|
||||||
|
<#if !localesCount??>
|
||||||
|
<#assign localesCount = 1>
|
||||||
|
</#if>
|
||||||
<#assign qrCodeIcon = "qr-code-icon.png">
|
<#assign qrCodeIcon = "qr-code-icon.png">
|
||||||
<#assign individualImage>
|
<#assign individualImage>
|
||||||
<@p.image individual=individual
|
<@p.image individual=individual
|
||||||
|
@ -52,7 +55,7 @@
|
||||||
<div id="photo-wrapper">${individualImage}</div>
|
<div id="photo-wrapper">${individualImage}</div>
|
||||||
<h1 class="vcard foaf-person fn" <#if !editable>style="float:left;border-right:1px solid #A6B1B0;"</#if>>
|
<h1 class="vcard foaf-person fn" <#if !editable>style="float:left;border-right:1px solid #A6B1B0;"</#if>>
|
||||||
<#-- Label -->
|
<#-- Label -->
|
||||||
<@p.label individual editable labelCount/>
|
<@p.label individual editable labelCount localesCount/>
|
||||||
</h1>
|
</h1>
|
||||||
<#-- Display preferredTitle if it exists; otherwise mostSpecificTypes -->
|
<#-- Display preferredTitle if it exists; otherwise mostSpecificTypes -->
|
||||||
<#assign title = propertyGroups.pullProperty("${core}preferredTitle")!>
|
<#assign title = propertyGroups.pullProperty("${core}preferredTitle")!>
|
||||||
|
@ -63,7 +66,7 @@
|
||||||
<div id="titleContainer"><span class="display-title-not-editable">${statement.value}</span></div>
|
<div id="titleContainer"><span class="display-title-not-editable">${statement.value}</span></div>
|
||||||
<#else>
|
<#else>
|
||||||
<span class="display-title-editable">${statement.value}</span>
|
<span class="display-title-editable">${statement.value}</span>
|
||||||
<@p.editingLinks "${title.name}" statement editable />
|
<@p.editingLinks "${title.name}" "" statement editable />
|
||||||
</#if>
|
</#if>
|
||||||
</#list>
|
</#list>
|
||||||
</#if>
|
</#if>
|
||||||
|
|
|
@ -8,6 +8,12 @@
|
||||||
<label for="firstName">${i18n().first_name} ${requiredHint}</label>
|
<label for="firstName">${i18n().first_name} ${requiredHint}</label>
|
||||||
<input size="30" type="text" id="firstName" name="firstName" value="${firstNameValue}" />
|
<input size="30" type="text" id="firstName" name="firstName" value="${firstNameValue}" />
|
||||||
</p>
|
</p>
|
||||||
|
<#--TODO: With ISF changes, add middle name input-->
|
||||||
|
|
||||||
|
<!--p-->
|
||||||
|
<!--label for="middleName">${i18n().middle_name} ${requiredHint}</label>
|
||||||
|
<input size="30" type="text" id="middleName" name="middleName" value="${middleNameValue}" />
|
||||||
|
</p-->
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<label for="lastName">${i18n().last_name} ${requiredHint}</label>
|
<label for="lastName">${i18n().last_name} ${requiredHint}</label>
|
||||||
|
|
|
@ -5,6 +5,9 @@
|
||||||
<#--Get existing value for specific data literals and uris, in case the form is returned because of an error-->
|
<#--Get existing value for specific data literals and uris, in case the form is returned because of an error-->
|
||||||
<#assign firstNameValue = lvf.getFormFieldValue(editSubmission, editConfiguration, "firstName")/>
|
<#assign firstNameValue = lvf.getFormFieldValue(editSubmission, editConfiguration, "firstName")/>
|
||||||
<#assign lastNameValue = lvf.getFormFieldValue(editSubmission, editConfiguration, "lastName")/>
|
<#assign lastNameValue = lvf.getFormFieldValue(editSubmission, editConfiguration, "lastName")/>
|
||||||
|
<#--With ISF changes, we also have a niddle name value, also add error field below-->
|
||||||
|
<#--assign middleNameValue = lvf.getFormFieldValue(editSubmission, editConfiguration, "middleName") /-->
|
||||||
|
|
||||||
<#assign labelValue = lvf.getFormFieldValue(editSubmission, editConfiguration, "label")/>
|
<#assign labelValue = lvf.getFormFieldValue(editSubmission, editConfiguration, "label")/>
|
||||||
<#assign newLabelLanguageValue = lvf.getFormFieldValue(editSubmission, editConfiguration, "newLabelLanguage")/>
|
<#assign newLabelLanguageValue = lvf.getFormFieldValue(editSubmission, editConfiguration, "newLabelLanguage")/>
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
||||||
|
|
||||||
|
<#--Some values for labels etc. may be different between vitro and other systems -->
|
||||||
|
<#assign returnText = "${i18n().return_to_profile}" />
|
|
@ -1,9 +1,9 @@
|
||||||
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
||||||
|
|
||||||
<#-- Contact info on individual profile page -->
|
<#-- Contact info on individual profile page -->
|
||||||
<#assign phone = propertyGroups.pullProperty("${core}phoneNumber")!>
|
<#assign phone = propertyGroups.pullProperty("http://purl.obolibrary.org/obo/ARG_2000028","http://www.w3.org/2006/vcard/ns#Telephone")!>
|
||||||
<#assign pEmail = propertyGroups.pullProperty("${core}primaryEmail")!>
|
<#assign pEmail = propertyGroups.pullProperty("http://purl.obolibrary.org/obo/ARG_2000028","http://www.w3.org/2006/vcard/ns#Work")!>
|
||||||
<#assign email = propertyGroups.pullProperty("${core}email")!>
|
<#assign email = propertyGroups.pullProperty("http://purl.obolibrary.org/obo/ARG_2000028","http://www.w3.org/2006/vcard/ns#Email")!>
|
||||||
|
|
||||||
<#if editable || ( phone?has_content || pEmail?has_content || email?has_content ) >
|
<#if editable || ( phone?has_content || pEmail?has_content || email?has_content ) >
|
||||||
<h2 id="contactHeading" class="mainPropGroup">${i18n().contact_capitalized}</h2>
|
<h2 id="contactHeading" class="mainPropGroup">${i18n().contact_capitalized}</h2>
|
||||||
|
@ -39,8 +39,8 @@
|
||||||
<ul id="phone-list" role="list">
|
<ul id="phone-list" role="list">
|
||||||
<#list phone.statements as statement>
|
<#list phone.statements as statement>
|
||||||
<li role="listitem" <#if editable>style="padding-left:10px;"</#if>>
|
<li role="listitem" <#if editable>style="padding-left:10px;"</#if>>
|
||||||
${statement.value}
|
${statement.number!}
|
||||||
<@p.editingLinks "${phone.localName}" statement editable />
|
<@p.editingLinks "${phone.localName}" "${phone.name}" statement editable />
|
||||||
</li>
|
</li>
|
||||||
</#list>
|
</#list>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -65,8 +65,8 @@
|
||||||
<#list email.statements as statement>
|
<#list email.statements as statement>
|
||||||
<li role="listitem" <#if editable>style="padding-left:10px;"</#if>>
|
<li role="listitem" <#if editable>style="padding-left:10px;"</#if>>
|
||||||
|
|
||||||
<a class="email" href="mailto:${statement.value}" title="${i18n().email}">${statement.value}</a>
|
<a class="email" href="mailto:${statement.emailAddress!}" title="${i18n().email}">${statement.emailAddress!}</a>
|
||||||
<@p.editingLinks "${email.localName}" statement editable />
|
<@p.editingLinks "${email.localName}" "${email.name}" statement editable />
|
||||||
</li>
|
</li>
|
||||||
</#list>
|
</#list>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -2,19 +2,19 @@
|
||||||
|
|
||||||
<#-- Contact info on individual profile page -->
|
<#-- Contact info on individual profile page -->
|
||||||
|
|
||||||
<#assign phone = propertyGroups.pullProperty("${core}phoneNumber")!>
|
<#assign phone = propertyGroups.pullProperty("http://purl.obolibrary.org/obo/ARG_2000028","http://www.w3.org/2006/vcard/ns#Telephone")!>
|
||||||
<#assign primaryEmail = propertyGroups.pullProperty("${core}primaryEmail")!>
|
<#assign primaryEmail = propertyGroups.pullProperty("http://purl.obolibrary.org/obo/ARG_2000028","http://www.w3.org/2006/vcard/ns#Work")!>
|
||||||
<#assign addlEmail = propertyGroups.pullProperty("${core}email")!>
|
<#assign addlEmail = propertyGroups.pullProperty("http://purl.obolibrary.org/obo/ARG_2000028","http://www.w3.org/2006/vcard/ns#Email")!>
|
||||||
|
|
||||||
<#if phone?has_content || primaryEmail?has_content || addlEmail?has_content >
|
<#if phone?has_content || primaryEmail?has_content || addlEmail?has_content >
|
||||||
<ul style="font-size:1em;padding-bottom:4px"><li><strong>${i18n().contact_info}</strong></li></ul>
|
<ul style="font-size:1em;padding-bottom:4px"><li><strong>${i18n().contact_info}</strong></li></ul>
|
||||||
</#if>
|
</#if>
|
||||||
|
|
||||||
<#-- Primary Email -->
|
<#-- Primary Email -->
|
||||||
<@emailLinks "${core}primaryEmail" primaryEmail />
|
<@emailLinks "primaryEmail" primaryEmail />
|
||||||
|
|
||||||
<#-- Additional Emails -->
|
<#-- Additional Emails -->
|
||||||
<@emailLinks "${core}email" addlEmail />
|
<@emailLinks "email" addlEmail />
|
||||||
|
|
||||||
<#-- Phone -->
|
<#-- Phone -->
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@
|
||||||
<ul id="individual-phone" role="list" <#if editable>style="list-style:none;margin-left:0;"</#if>>
|
<ul id="individual-phone" role="list" <#if editable>style="list-style:none;margin-left:0;"</#if>>
|
||||||
<#list phone.statements as statement>
|
<#list phone.statements as statement>
|
||||||
<li role="listitem">
|
<li role="listitem">
|
||||||
${statement.value}
|
${statement.number!}
|
||||||
<@p.editingLinks "${phone.localName}" statement editable />
|
<@p.editingLinks "${phone.localName}" "${phone.name}" statement editable />
|
||||||
</li>
|
</li>
|
||||||
</#list>
|
</#list>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -33,7 +33,7 @@
|
||||||
</#if>
|
</#if>
|
||||||
|
|
||||||
<#macro emailLinks property email>
|
<#macro emailLinks property email>
|
||||||
<#if property == "${core}primaryEmail">
|
<#if property == "primaryEmail">
|
||||||
<#local listId = "primary-email">
|
<#local listId = "primary-email">
|
||||||
<#local label = "${i18n().primary_email_capitalized}">
|
<#local label = "${i18n().primary_email_capitalized}">
|
||||||
<#else>
|
<#else>
|
||||||
|
@ -46,8 +46,8 @@
|
||||||
<ul id="${listId}" class="individual-emails" role="list" <#if editable>style="list-style:none;margin-left:0;"</#if>>
|
<ul id="${listId}" class="individual-emails" role="list" <#if editable>style="list-style:none;margin-left:0;"</#if>>
|
||||||
<#list email.statements as statement>
|
<#list email.statements as statement>
|
||||||
<li role="listitem">
|
<li role="listitem">
|
||||||
<a class="email" href="mailto:${statement.value}" title="${i18n().email}">${statement.value}</a>
|
<a class="email" href="mailto:${statement.emailAddress!}" title="${i18n().email}">${statement.emailAddress!}</a>
|
||||||
<@p.editingLinks "${email.localName}" statement editable />
|
<@p.editingLinks "${email.localName}" "${email.name}" statement editable />
|
||||||
</li>
|
</li>
|
||||||
</#list>
|
</#list>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
<div class="overview-value">
|
<div class="overview-value">
|
||||||
${statement.value}
|
${statement.value}
|
||||||
</div>
|
</div>
|
||||||
<@p.editingLinks "${overview.name}" statement editable />
|
<@p.editingLinks "${overview.name}" "" statement editable />
|
||||||
</div>
|
</div>
|
||||||
</#list>
|
</#list>
|
||||||
</#if>
|
</#if>
|
|
@ -1,7 +1,7 @@
|
||||||
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
||||||
|
|
||||||
<#-- List of positions for the individual -->
|
<#-- List of positions for the individual -->
|
||||||
<#assign positions = propertyGroups.pullProperty("${core}personInPosition")!>
|
<#assign positions = propertyGroups.pullProperty("${core}relatedBy", "${core}Position")!>
|
||||||
<#if positions?has_content> <#-- true when the property is in the list, even if not populated (when editing) -->
|
<#if positions?has_content> <#-- true when the property is in the list, even if not populated (when editing) -->
|
||||||
<#assign localName = positions.localName>
|
<#assign localName = positions.localName>
|
||||||
<h2 id="${localName}" class="mainPropGroup">${positions.name?capitalize} <@p.addLink positions editable /> <@p.verboseDisplay positions /></h2>
|
<h2 id="${localName}" class="mainPropGroup">${positions.name?capitalize} <@p.addLink positions editable /> <@p.verboseDisplay positions /></h2>
|
||||||
|
|
|
@ -1,14 +1,7 @@
|
||||||
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
||||||
|
|
||||||
<#-- This snippet will be included in lib-vivo-properties.ftl, so users will be able to have a
|
|
||||||
different view when extending wilma theme
|
|
||||||
|
|
||||||
<#assign webpage = propertyGroups.pullProperty("${core}webpage")!>
|
<#assign webpage = propertyGroups.pullProperty("http://purl.obolibrary.org/obo/ARG_2000028","http://www.w3.org/2006/vcard/ns#URL")!>
|
||||||
<@p.objectPropertyListing webpage editable />
|
|
||||||
|
|
||||||
|
|
||||||
-->
|
|
||||||
<#assign webpage = propertyGroups.pullProperty("${core}webpage")!>
|
|
||||||
<#if webpage?has_content> <#-- true when the property is in the list, even if not populated (when editing) -->
|
<#if webpage?has_content> <#-- true when the property is in the list, even if not populated (when editing) -->
|
||||||
<#if !editable && individual.person() >
|
<#if !editable && individual.person() >
|
||||||
<ul style="font-size:0.9em;padding-bottom:4px"><li><strong>${i18n().websites}</strong></li></ul>
|
<ul style="font-size:0.9em;padding-bottom:4px"><li><strong>${i18n().websites}</strong></li></ul>
|
||||||
|
@ -19,4 +12,3 @@
|
||||||
<@p.objectProperty webpage editable />
|
<@p.objectProperty webpage editable />
|
||||||
</ul>
|
</ul>
|
||||||
</#if>
|
</#if>
|
||||||
|
|
||||||
|
|
|
@ -15,9 +15,9 @@
|
||||||
|
|
||||||
<#local linkedIndividual>
|
<#local linkedIndividual>
|
||||||
<#if statement.award??>
|
<#if statement.award??>
|
||||||
<a href="${profileUrl(statement.uri("award"))}" title="${i18n().award_name}">${statement.awardLabel!statement.localName}</a>
|
<a href="${profileUrl(statement.uri("award"))}" title="${i18n().award_name}">${statement.awardLabel!statement.localName!}</a>
|
||||||
<#else>
|
<#else>
|
||||||
<a href="${profileUrl(statement.uri("awardReceipt"))}" title="${i18n().award_receipt_name}">${statement.receiptLabel!statement.localName}</a>
|
<a href="${profileUrl(statement.uri("awardReceipt"))}" title="${i18n().award_receipt_name}">${statement.receiptLabel!statement.localName!}</a>
|
||||||
</#if>
|
</#if>
|
||||||
</#local>
|
</#local>
|
||||||
|
|
||||||
|
@ -29,12 +29,12 @@
|
||||||
</#if>
|
</#if>
|
||||||
</#local>
|
</#local>
|
||||||
|
|
||||||
<#local conferredByOrg>
|
<#local assignedByOrg>
|
||||||
<#if statement.conferredBy?has_content && statement.conferredByLabel?has_content>
|
<#if statement.assignedBy?has_content && statement.assignedByLabel?has_content>
|
||||||
${i18n().conferred_by} <a href="${profileUrl(statement.uri("conferredBy"))}" title="${i18n().conferred_by}">${statement.conferredByLabel}</a>
|
${i18n().conferred_by} <a href="${profileUrl(statement.uri("assignedBy"))}" title="${i18n().conferred_by}">${statement.assignedByLabel}</a>
|
||||||
</#if>
|
</#if>
|
||||||
</#local>
|
</#local>
|
||||||
|
|
||||||
<@s.join [ linkedIndividual, conferredByOrg!, dateTimeVal! ] />
|
<@s.join [ linkedIndividual, assignedByOrg!, dateTimeVal! ] />
|
||||||
|
|
||||||
</#macro>
|
</#macro>
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
||||||
|
|
||||||
|
<#--
|
||||||
|
This template must be self-contained and not rely on other variables set for the individual page, because it
|
||||||
|
is also used to generate the property statement during a deletion.
|
||||||
|
-->
|
||||||
|
<@showAdditionalEmail statement />
|
||||||
|
|
||||||
|
<#-- Use a macro to keep variable assignments local; otherwise the values carry over to the
|
||||||
|
next statement -->
|
||||||
|
<#macro showAdditionalEmail statement>
|
||||||
|
|
||||||
|
<#if statement.emailAddress?has_content>
|
||||||
|
${statement.emailAddress}
|
||||||
|
</#if>
|
||||||
|
|
||||||
|
</#macro>
|
|
@ -0,0 +1,17 @@
|
||||||
|
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
||||||
|
|
||||||
|
<#--
|
||||||
|
This template must be self-contained and not rely on other variables set for the individual page, because it
|
||||||
|
is also used to generate the property statement during a deletion.
|
||||||
|
-->
|
||||||
|
<@showFullName statement />
|
||||||
|
|
||||||
|
<#-- Use a macro to keep variable assignments local; otherwise the values carry over to the
|
||||||
|
next statement -->
|
||||||
|
<#macro showFullName statement>
|
||||||
|
|
||||||
|
<#if statement.fullName?has_content>
|
||||||
|
${statement.firstName!} ${statement.middleName!} ${statement.lastName!}
|
||||||
|
</#if>
|
||||||
|
|
||||||
|
</#macro>
|
|
@ -15,7 +15,7 @@
|
||||||
<#macro showRole statement property>
|
<#macro showRole statement property>
|
||||||
<#local linkedIndividual>
|
<#local linkedIndividual>
|
||||||
<#if statement?has_content && statement.activity?has_content>
|
<#if statement?has_content && statement.activity?has_content>
|
||||||
<a href="${profileUrl(statement.uri("activity"))}" title="${i18n().activity_name}">${statement.activityLabel!statement.activityName}</a>
|
<a href="${profileUrl(statement.uri("activity"))}" title="${i18n().activity_name}">${statement.activityLabel!statement.activityName!}</a>
|
||||||
</#if>
|
</#if>
|
||||||
</#local>
|
</#local>
|
||||||
|
|
||||||
|
@ -24,6 +24,5 @@
|
||||||
</#local>
|
</#local>
|
||||||
|
|
||||||
<#-- If property is collated, then subclass label is redundant information -->
|
<#-- If property is collated, then subclass label is redundant information -->
|
||||||
${linkedIndividual} <#if ! property.collatedBySubclass>${statement.subclassLabel!}</#if> ${dateTime!}
|
${linkedIndividual} <#if ! property.collatedBySubclass> (${statement.subclassLabel!})</#if> ${dateTime!}
|
||||||
|
|
||||||
</#macro>
|
</#macro>
|
|
@ -47,6 +47,6 @@
|
||||||
</#if>
|
</#if>
|
||||||
</#local>
|
</#local>
|
||||||
|
|
||||||
${linkedIndividual} ${awardOrAdminBy} ${dateTime!} ${statement.subclass!}
|
${linkedIndividual} ${awardOrAdminBy} ${dateTime!}
|
||||||
</#if>
|
</#if>
|
||||||
</#macro>
|
</#macro>
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue