This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/dspace-api/src/main/java/org/dspace/browse/SolrBrowseCreateDAO.java b/dspace-api/src/main/java/org/dspace/browse/SolrBrowseCreateDAO.java | |
index ff316d5..e82cbed 100644 | |
--- a/dspace-api/src/main/java/org/dspace/browse/SolrBrowseCreateDAO.java | |
+++ b/dspace-api/src/main/java/org/dspace/browse/SolrBrowseCreateDAO.java | |
@@ -195,8 +195,8 @@ public class SolrBrowseCreateDAO implements BrowseCreateDAO, | |
// is there any valid (with appropriate | |
// confidence) authority key? | |
- if ((ignoreAuthority && !bi.isAuthorityIndex()) | |
- || (values[x].authority != null && values[x].confidence >= minConfidence)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/swig/php/CMakeLists.txt b/swig/php/CMakeLists.txt | |
index e371819..f0ea81b 100644 | |
--- a/swig/php/CMakeLists.txt | |
+++ b/swig/php/CMakeLists.txt | |
@@ -24,18 +24,18 @@ IF (PHP5_FOUND) | |
ADD_DEFINITIONS(-DZEND_WIN32 -DPHP_WIN32 -DZEND_INCLUDE_FULL_WINDOWS_HEADERS -DZEND_DEBUG=0 -DZTS=1) | |
ENDIF (WIN32) | |
- SWIG_ADD_MODULE (zorba_api_php php5 zorba_api.i) | |
+ SWIG_ADD_MODULE (zorba_api php5 zorba_api.i) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet version="1.0" xmlns:marc="http://www.loc.gov/MARC21/slim" xmlns:fm="http://www.loc.gov/MARC21/frbr/match" xmlns="http://www.loc.gov/MARC21/frbr" xmlns:mods="http://www.loc.gov/mods/" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" exclude-result-prefixes="marc"> | |
<xsl:include href="MARC21slimUtils.xsl"/> | |
<xsl:output media-type="xml" indent="yes"/> | |
<xsl:key name="work" match="marc:record" use="fm:work" /> | |
<xsl:key name="title" match="marc:record" use="concat(fm:work, '|', fm:work/fm:title)" /> | |
<xsl:key name="type" match="marc:record" use="concat(fm:work, '|', fm:work/fm:title, '|', fm:expression/fm:leader6, '|', fm:expression/fm:controlField008-35-37)"/> | |
<xsl:template match="/"> |