You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2021/02/01 09:20:30 UTC

[lucene-solr] branch master updated (40e9231 -> 9d45dfe)

This is an automated email from the ASF dual-hosted git repository.

dweiss pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git.


    from 40e9231  LUCENE-9709: Hunspell: no special dotted i treatment outside tr/az languages (#2271)
     add 9d45dfe  LUCENE-9710: Hunspell: support minor compounding-related flags (#2272)

No new revisions were added by this update.

Summary of changes:
 .../lucene/analysis/hunspell/Dictionary.java       | 20 +++++-
 .../lucene/analysis/hunspell/SpellChecker.java     | 71 ++++++++++++++++++----
 .../apache/lucene/analysis/hunspell/Stemmer.java   | 22 +++++--
 .../lucene/analysis/hunspell/SpellCheckerTest.java | 35 +++++++++++
 .../lucene/analysis/hunspell/checkcompoundcase.aff |  3 +
 .../lucene/analysis/hunspell/checkcompoundcase.dic |  5 ++
 .../analysis/hunspell/checkcompoundcase.good       |  5 ++
 .../analysis/hunspell/checkcompoundcase.wrong      |  3 +
 .../lucene/analysis/hunspell/checkcompounddup.aff  |  3 +
 .../lucene/analysis/hunspell/checkcompounddup.dic  |  3 +
 .../lucene/analysis/hunspell/checkcompounddup.good |  5 ++
 .../analysis/hunspell/checkcompounddup.wrong       |  3 +
 .../analysis/hunspell/checkcompoundtriple.aff      |  3 +
 .../analysis/hunspell/checkcompoundtriple.dic      |  5 ++
 .../analysis/hunspell/checkcompoundtriple.good     |  6 ++
 .../analysis/hunspell/checkcompoundtriple.wrong    |  2 +
 .../lucene/analysis/hunspell/compoundflag.aff      |  3 +
 .../lucene/analysis/hunspell/compoundflag.dic      |  5 ++
 .../lucene/analysis/hunspell/compoundflag.good     |  3 +
 .../lucene/analysis/hunspell/compoundflag.wrong    |  4 ++
 .../lucene/analysis/hunspell/compoundforbid.aff    | 15 +++++
 .../lucene/analysis/hunspell/compoundforbid.dic    |  4 ++
 .../lucene/analysis/hunspell/compoundforbid.good   |  5 ++
 .../lucene/analysis/hunspell/compoundforbid.wrong  |  3 +
 .../apache/lucene/analysis/hunspell/forceucase.aff |  4 ++
 .../apache/lucene/analysis/hunspell/forceucase.dic |  4 ++
 .../lucene/analysis/hunspell/forceucase.good       |  7 +++
 .../lucene/analysis/hunspell/forceucase.wrong      |  2 +
 .../lucene/analysis/hunspell/simplifiedtriple.aff  |  8 +++
 .../lucene/analysis/hunspell/simplifiedtriple.dic  |  3 +
 .../lucene/analysis/hunspell/simplifiedtriple.good |  3 +
 .../analysis/hunspell/simplifiedtriple.wrong       |  1 +
 32 files changed, 247 insertions(+), 21 deletions(-)
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/checkcompoundcase.aff
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/checkcompoundcase.dic
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/checkcompoundcase.good
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/checkcompoundcase.wrong
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/checkcompounddup.aff
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/checkcompounddup.dic
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/checkcompounddup.good
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/checkcompounddup.wrong
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/checkcompoundtriple.aff
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/checkcompoundtriple.dic
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/checkcompoundtriple.good
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/checkcompoundtriple.wrong
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/compoundflag.aff
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/compoundflag.dic
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/compoundflag.good
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/compoundflag.wrong
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/compoundforbid.aff
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/compoundforbid.dic
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/compoundforbid.good
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/compoundforbid.wrong
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/forceucase.aff
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/forceucase.dic
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/forceucase.good
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/forceucase.wrong
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/simplifiedtriple.aff
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/simplifiedtriple.dic
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/simplifiedtriple.good
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/hunspell/simplifiedtriple.wrong