NIHVIVO-2343 Allow configuration of what types of Individual are eligible to have proxies.

This commit is contained in:
j2blake 2011-11-06 17:13:21 +00:00
parent 4aa5c90b5e
commit 60a87403d1
2 changed files with 26 additions and 1 deletions

View file

@ -23,7 +23,27 @@
<li><code>${stylesheets.list}</code>, <code>${scripts.list}</code>, and <code>${headscripts.list}</code> have changed to <li><code>${stylesheets.list}</code>, <code>${scripts.list}</code>, and <code>${headscripts.list}</code> have changed to
<code>${stylesheets.list()}</code>, <code>${scripts.list()}</code>, and <code>${headscripts.list()}</code>, respectively. <code>${stylesheets.list()}</code>, <code>${scripts.list()}</code>, and <code>${headscripts.list()}</code>, respectively.
</li> </li>
(ryounes)
</ul>
<h2>addition to deploy.properties</h2>
<ul>
<li> What types of individuals may have proxy editors?
<pre>proxy.eligibleTypeList = http://xmlns.com/foaf/0.1/Person, http://xmlns.com/foaf/0.1/Organization</pre>
</li>
(jblake)
</ul>
<h2>changes to the build script</h2>
<ul>
<li> Incremental builds go much faster, but at some cost:
<ul>
<li>full builds go a little slower</li>
<li>if you delete a source file, you must do a full build to really get rid of it.</li>
</ul>
</li>
<li> Changes to solr deploy.</li>
(jblake)
</ul> </ul>
<!-- #wrapper-content --> <!-- #wrapper-content -->

View file

@ -172,3 +172,8 @@ visualization.temporal = enabled
# See Service Metadata from this page http://code.google.com/p/google-refine/wiki/ReconciliationServiceApi # See Service Metadata from this page http://code.google.com/p/google-refine/wiki/ReconciliationServiceApi
# for more information. # for more information.
Vitro.reconcile.defaultTypeList = http://vivoweb.org/ontology/core#Role, core:Role; http://vivoweb.org/ontology/core#AcademicDegree, core:Academic Degree; http://purl.org/NET/c4dm/event.owl#Event, event:Event; http://vivoweb.org/ontology/core#Agreement, core:Agreement; http://vivoweb.org/ontology/core#Location, core:Location; http://xmlns.com/foaf/0.1/Organization, foaf:Organization; http://xmlns.com/foaf/0.1/Person, foaf:Person; http://vivoweb.org/ontology/core#InformationResource, core:Information Resource Vitro.reconcile.defaultTypeList = http://vivoweb.org/ontology/core#Role, core:Role; http://vivoweb.org/ontology/core#AcademicDegree, core:Academic Degree; http://purl.org/NET/c4dm/event.owl#Event, event:Event; http://vivoweb.org/ontology/core#Agreement, core:Agreement; http://vivoweb.org/ontology/core#Location, core:Location; http://xmlns.com/foaf/0.1/Organization, foaf:Organization; http://xmlns.com/foaf/0.1/Person, foaf:Person; http://vivoweb.org/ontology/core#InformationResource, core:Information Resource
#
# Types of individual for which we can create proxy editors.
# If this is omitted, defaults to http://www.w3.org/2002/07/owl#Thing
proxy.eligibleTypeList = http://xmlns.com/foaf/0.1/Person, http://xmlns.com/foaf/0.1/Organization