This is an automated email from the ASF dual-hosted git repository.
nightowl888 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git.
from 885d5b9
Lucene.Net.Analysis.Common.Analysis.Synonym.FSTSynonymFilterFactory: Commented
unused exception variable declaration to suppress the warning.
new 9c4a3c3 Lucene.Net.ICU.PostingsHighlight.PostingsHighlighter: Changed
default BreakIterator implementation to be the ICU default rather than using a
customized RuleBasedBreakIterator that was built just to make the tests pass.
Renamed ICUPostingsFormatter to reflect the change and be consistent with other
ICU classes. Confirmed against Java that this is the correct default behavior
and created separate ICU-specific tests. Moved the JdkBreakIterator to
Lucene.Net.ICU.Tests becaus [...]
new 50623b6
Lucene.Net.Tests.ICU.Search.VectorHighlight.BreakIteratorBoundaryScannerTest:
Modified original TestSentenceBoundary test to skip east Asian languages
because the mock doesn't override them. Added TestICUWordBoundary and
TestICUSentenceBoundary tests to confirm that the boundary scanner works the
same with ICU4N as it does with ICU4J with default settings.
new bf9771e Lucene.Net.Highlighter.PostingsHighlight.LoadFieldValues:
Changed return type from string[][] to IList<string[]> (cleaner API)
new fde5bdc build/Dependencies.props: Added reminder to lock down the
ICU4N package dependency version when it is stable. The Lucene.Net.ICU
resources are not compatible with versions of ICU other than 60.1.
new 870a366 Added CHANGES.txt, CONTRIBUTING.md, LICENSE.txt, NOTICE.txt,
and README.md to solution items
new 3606b91 Updated README with lucene-cli info
new dbdadab Added missing license headers
new 48460f0 Added NOTICE.txt to each NuGet package as per
http://www.apache.org/legal/release-policy.html#licensing-documentation
new 7441677 Upgraded ICU4N to 60.1.0-alpha.53
The 9 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
Lucene.Net.sln | 5 +
README.md | 21 +-
build/Dependencies.props | 13 +-
build/NuGet.props | 2 +
.../Support/TagSoup/HTMLSchema.Generated.cs | 22 +-
.../Support/TagSoup/HTMLSchema.tt | 4 +-
.../PostingsHighlight/MultiTermHighlighting.cs | 2 +-
.../PostingsHighlight/PassageFormatter.cs | 2 +-
.../PostingsHighlight/PassageScorer.cs | 2 +-
.../PostingsHighlight/PostingsHighlighter.cs | 33 +--
.../PostingsHighlight/TestMultiTermHighlighting.cs | 161 +--------------
.../PostingsHighlight/TestPostingsHighlighter.cs | 19 +-
.../TestPostingsHighlighterRanking.cs | 44 +---
.../BreakIteratorBoundaryScannerTest.cs | 60 +++++-
src/docs/LuceneDocsPlugins/LuceneDocsPlugins.sln | 18 ++
.../LuceneDocsPlugins/LuceneDfmEngineCustomizer.cs | 21 +-
.../LuceneDocsPlugins/LuceneDocsPlugins.csproj | 20 ++
.../LuceneDocsPlugins/LuceneNoteBlockRule.cs | 19 ++
.../LuceneDocsPlugins/LuceneNoteBlockToken.cs | 19 ++
.../LuceneRendererPartProvider.cs | 21 +-
.../LuceneDocsPlugins/LuceneTokenRendererPart.cs | 19 ++
.../LuceneDocsPlugins/Properties/AssemblyInfo.cs | 21 +-
.../LuceneDocsPlugins/packages.config | 20 ++
.../Lucene.Net.Tests.ICU.csproj | 4 +
.../TestICUMultiTermHighlighting.cs} | 222 ++++-----------------
.../TestICUPostingsHighlighter.cs} | 143 +++++++------
.../TestICUPostingsHighlighterRanking.cs} | 61 ++----
.../Support}/Data/jdk7/jdksent.rbbi | 0
.../Support}/Data/jdk7/jdkword.rbbi | 0
.../Support/JDKBreakIterator.cs | 20 +-
.../Support/PostingsHighlighter.cs} | 30 +--
.../Support/TestJDKBreakIterator.cs | 27 ++-
.../Support/jdksent.brk | Bin
.../Support/jdkword.brk | Bin
.../Formatters/CodeLinkReplacer.cs | 21 +-
.../Formatters/DocTypeReplacer.cs | 21 +-
.../Formatters/ExtraHtmlElementReplacer.cs | 21 +-
.../Formatters/IReplacer.cs | 21 +-
.../Formatters/JavaDocFormatters.cs | 21 +-
.../Formatters/PatternReplacer.cs | 21 +-
.../Formatters/RepoLinkReplacer.cs | 21 +-
.../JavaDocToMarkdownConverter/StringExtensions.cs | 21 +-
src/dotnet/tools/lucene-cli/docs/index.md | 4 +-
websites/apidocs/lucenetemplate/styles/main.css | 19 ++
websites/apidocs/lucenetemplate/styles/main.js | 19 ++
websites/apidocs/lucenetemplate/web.config | 20 ++
websites/site/lucenetemplate/styles/main.css | 19 ++
websites/site/lucenetemplate/styles/site.css | 19 ++
websites/site/lucenetemplate/web.config | 20 ++
49 files changed, 826 insertions(+), 537 deletions(-)
copy
src/{Lucene.Net.Tests.Highlighter/PostingsHighlight/TestMultiTermHighlighting.cs
=>
dotnet/Lucene.Net.Tests.ICU/Search/PostingsHighlight/TestICUMultiTermHighlighting.cs}
(81%)
copy
src/{Lucene.Net.Tests.Highlighter/PostingsHighlight/TestPostingsHighlighter.cs
=>
dotnet/Lucene.Net.Tests.ICU/Search/PostingsHighlight/TestICUPostingsHighlighter.cs}
(91%)
copy
src/{Lucene.Net.Tests.Highlighter/PostingsHighlight/TestPostingsHighlighterRanking.cs
=>
dotnet/Lucene.Net.Tests.ICU/Search/PostingsHighlight/TestICUPostingsHighlighterRanking.cs}
(87%)
rename src/dotnet/{Lucene.Net.ICU =>
Lucene.Net.Tests.ICU/Support}/Data/jdk7/jdksent.rbbi (100%)
rename src/dotnet/{Lucene.Net.ICU =>
Lucene.Net.Tests.ICU/Support}/Data/jdk7/jdkword.rbbi (100%)
rename src/dotnet/{Lucene.Net.ICU =>
Lucene.Net.Tests.ICU}/Support/JDKBreakIterator.cs (84%)
copy src/{Lucene.Net.Benchmark/ByTask/Tasks/ClearStatsTask.cs =>
dotnet/Lucene.Net.Tests.ICU/Support/PostingsHighlighter.cs} (54%)
rename src/dotnet/{Lucene.Net.ICU => Lucene.Net.Tests.ICU}/Support/jdksent.brk
(100%)
rename src/dotnet/{Lucene.Net.ICU => Lucene.Net.Tests.ICU}/Support/jdkword.brk
(100%)