mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-15 22:13:08 +00:00
[DS-637] Browse index bug/fix ONLY for authority index: first "too low" confidence value stop current item metadata to be indexed in the autority index
git-svn-id: http://scm.dspace.org/svn/repo/dspace/trunk@5440 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
@@ -445,9 +445,10 @@ public class IndexBrowse
|
|||||||
if (bis[i].isAuthorityIndex() &&
|
if (bis[i].isAuthorityIndex() &&
|
||||||
(values[x].authority == null || values[x].confidence < minConfidence))
|
(values[x].authority == null || values[x].confidence < minConfidence))
|
||||||
{
|
{
|
||||||
// if we have an authority index only authored metadata will go here!
|
// skip to next value in this authority field if value is not authoritative
|
||||||
log.debug("Skipping item="+item.getID()+", field="+values[x].schema+"."+values[x].element+"."+values[x].qualifier+", value="+values[x].value+", authority="+values[x].authority+", confidence="+values[x].confidence+" (BAD AUTHORITY)");
|
log.debug("Skipping non-authoritative value: "+item.getID()+", field="+values[x].schema+"."+values[x].element+"."+values[x].qualifier+", value="+values[x].value+", authority="+values[x].authority+", confidence="+values[x].confidence+" (BAD AUTHORITY)");
|
||||||
break;
|
continue;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// is there any valid (with appropriate confidence) authority key?
|
// is there any valid (with appropriate confidence) authority key?
|
||||||
|
@@ -1,5 +1,8 @@
|
|||||||
1.7.0
|
1.7.0
|
||||||
=====
|
=====
|
||||||
|
(Reinhard Engels)
|
||||||
|
- [DS-637] Browse index bug/fix ONLY for authority index: first "too low" confidence value stop current item metadata to be indexed in the autority index
|
||||||
|
|
||||||
(Hardy Pottinger)
|
(Hardy Pottinger)
|
||||||
- [DS-691] File size math in the mets:file template in General-Hander.xsl (XMLUI) is incorrect
|
- [DS-691] File size math in the mets:file template in General-Hander.xsl (XMLUI) is incorrect
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user