mirror of https://github.com/apache/lucene.git
SOLR-8981 remove "don't test with java-9" commands; fix bug introduced by TIKA-995 -- doubling of body elements in HTML tags; add copyright info for Jackcess.
This commit is contained in:
parent
31c091b485
commit
785bebbcbd
|
@ -61,6 +61,9 @@ Copyright (C) 2010-2014 James Burke, https://github.com/jrburke/requirejs
|
||||||
This product includes fugue icons created by Yusuke Kamiyamane
|
This product includes fugue icons created by Yusuke Kamiyamane
|
||||||
Copyright (C) 2013-2014 Yusuke Kamiyamane, https://github.com/yusukekamiyamane/fugue-icons
|
Copyright (C) 2013-2014 Yusuke Kamiyamane, https://github.com/yusukekamiyamane/fugue-icons
|
||||||
|
|
||||||
|
Jackcess: http://jackcess.sourceforge.net/
|
||||||
|
Copyright (C) 2011-2014 James Ahlborn
|
||||||
|
|
||||||
JavaMail API 1.5.1: https://glassfish.dev.java.net/javaee5/mail/
|
JavaMail API 1.5.1: https://glassfish.dev.java.net/javaee5/mail/
|
||||||
License: Common Development and Distribution License (CDDL) v1.1 (https://glassfish.java.net/public/CDDL+GPL_1_1.html)
|
License: Common Development and Distribution License (CDDL) v1.1 (https://glassfish.java.net/public/CDDL+GPL_1_1.html)
|
||||||
|
|
||||||
|
|
|
@ -105,7 +105,6 @@ public class TestTikaEntityProcessor extends AbstractDataImportHandlerTestCase {
|
||||||
public static void beforeClass() throws Exception {
|
public static void beforeClass() throws Exception {
|
||||||
assumeFalse("This test fails on UNIX with Turkish default locale (https://issues.apache.org/jira/browse/SOLR-6387)",
|
assumeFalse("This test fails on UNIX with Turkish default locale (https://issues.apache.org/jira/browse/SOLR-6387)",
|
||||||
new Locale("tr").getLanguage().equals(Locale.getDefault().getLanguage()));
|
new Locale("tr").getLanguage().equals(Locale.getDefault().getLanguage()));
|
||||||
assumeFalse("This test fails with Java 9 (https://issues.apache.org/jira/browse/PDFBOX-3155)", Constants.JRE_IS_MINIMUM_JAVA9);
|
|
||||||
initCore("dataimport-solrconfig.xml", "dataimport-schema-no-unique-key.xml", getFile("dihextras/solr").getAbsolutePath());
|
initCore("dataimport-solrconfig.xml", "dataimport-schema-no-unique-key.xml", getFile("dihextras/solr").getAbsolutePath());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -282,11 +282,13 @@ public class ExtractingDocumentLoader extends ContentStreamLoader {
|
||||||
/**
|
/**
|
||||||
* Lowercases the element name, but returns null for <BR>,
|
* Lowercases the element name, but returns null for <BR>,
|
||||||
* which suppresses the start-element event for lt;BR> tags.
|
* which suppresses the start-element event for lt;BR> tags.
|
||||||
|
* This also suppresses the <BODY> tags because those
|
||||||
|
* are handled internally by Tika's XHTMLContentHandler.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public String mapSafeElement(String name) {
|
public String mapSafeElement(String name) {
|
||||||
String lowerName = name.toLowerCase(Locale.ROOT);
|
String lowerName = name.toLowerCase(Locale.ROOT);
|
||||||
return lowerName.equals("br") ? null : lowerName;
|
return (lowerName.equals("br") || lowerName.equals("body")) ? null : lowerName;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -45,7 +45,6 @@ public class ExtractingRequestHandlerTest extends SolrTestCaseJ4 {
|
||||||
public static void beforeClass() throws Exception {
|
public static void beforeClass() throws Exception {
|
||||||
assumeFalse("This test fails on UNIX with Turkish default locale (https://issues.apache.org/jira/browse/SOLR-6387)",
|
assumeFalse("This test fails on UNIX with Turkish default locale (https://issues.apache.org/jira/browse/SOLR-6387)",
|
||||||
new Locale("tr").getLanguage().equals(Locale.getDefault().getLanguage()));
|
new Locale("tr").getLanguage().equals(Locale.getDefault().getLanguage()));
|
||||||
assumeFalse("This test fails with Java 9 (https://issues.apache.org/jira/browse/PDFBOX-3155)", Constants.JRE_IS_MINIMUM_JAVA9);
|
|
||||||
initCore("solrconfig.xml", "schema.xml", getFile("extraction/solr").getAbsolutePath());
|
initCore("solrconfig.xml", "schema.xml", getFile("extraction/solr").getAbsolutePath());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -42,8 +42,6 @@ public class SolrCellMorphlineTest extends AbstractSolrMorphlineTestBase {
|
||||||
@BeforeClass
|
@BeforeClass
|
||||||
public static void beforeClass2() {
|
public static void beforeClass2() {
|
||||||
assumeFalse("FIXME: Morphlines currently has issues with Windows paths", Constants.WINDOWS);
|
assumeFalse("FIXME: Morphlines currently has issues with Windows paths", Constants.WINDOWS);
|
||||||
assumeFalse("This test fails with Java 9 (https://issues.apache.org/jira/browse/PDFBOX-3155, https://issues.apache.org/jira/browse/SOLR-8876)",
|
|
||||||
Constants.JRE_IS_MINIMUM_JAVA9);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
|
|
Loading…
Reference in New Issue