You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by sy...@apache.org on 2016/09/01 14:39:26 UTC

[05/52] [abbrv] lucenenet git commit: Ported Analysis.Hunspell + tests

Ported Analysis.Hunspell + tests


Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/e4d9f44c
Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/e4d9f44c
Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/e4d9f44c

Branch: refs/heads/master
Commit: e4d9f44c38c55f32811722c4e98343340223072d
Parents: d9fb43e
Author: Shad Storhaug <sh...@shadstorhaug.com>
Authored: Sat Aug 20 10:19:33 2016 +0700
Committer: Shad Storhaug <sh...@shadstorhaug.com>
Committed: Sat Aug 20 11:34:09 2016 +0700

----------------------------------------------------------------------
 .../Analysis/Hunspell/Dictionary.cs             | 2377 +++++++++---------
 .../Analysis/Hunspell/HunspellStemFilter.cs     |  302 ++-
 .../Hunspell/HunspellStemFilterFactory.cs       |  174 +-
 .../Analysis/Hunspell/ISO8859_14Decoder.cs      |  131 +-
 .../Analysis/Hunspell/Stemmer.cs                |  898 ++++---
 .../Lucene.Net.Analysis.Common.csproj           |    5 +
 .../Support/IDictionaryExtensions.cs            |    2 +-
 .../Analysis/Hunspell/StemmerTestBase.cs        |  132 +-
 .../Analysis/Hunspell/TestAllDictionaries.cs    |  146 +-
 .../Analysis/Hunspell/TestAllDictionaries2.cs   |    3 +-
 .../Analysis/Hunspell/TestCaseInsensitive.cs    |  136 +-
 .../Analysis/Hunspell/TestCircumfix.cs          |   50 +-
 .../Analysis/Hunspell/TestComplexPrefix.cs      |   53 +-
 .../Analysis/Hunspell/TestCondition.cs          |   59 +-
 .../Analysis/Hunspell/TestConv.cs               |   47 +-
 .../Analysis/Hunspell/TestDependencies.cs       |   52 +-
 .../Analysis/Hunspell/TestDictionary.cs         |  602 +++--
 .../Analysis/Hunspell/TestEscaped.cs            |   48 +-
 .../Analysis/Hunspell/TestFlagLong.cs           |   42 +-
 .../Analysis/Hunspell/TestFlagNum.cs            |   42 +-
 .../Analysis/Hunspell/TestHomonyms.cs           |   38 +-
 .../Analysis/Hunspell/TestHunspellStemFilter.cs |  308 ++-
 .../Hunspell/TestHunspellStemFilterFactory.cs   |   73 +-
 .../Analysis/Hunspell/TestIgnore.cs             |   46 +-
 .../Analysis/Hunspell/TestMorph.cs              |   42 +-
 .../Analysis/Hunspell/TestOptionalCondition.cs  |   60 +-
 .../Analysis/Hunspell/TestStemmer.cs            |  132 +-
 .../Analysis/Hunspell/TestTwoFold.cs            |   48 +-
 .../Analysis/Hunspell/TestTwoSuffixes.cs        |   46 +-
 .../Analysis/Hunspell/broken-flags.aff          |   21 +
 .../Analysis/Hunspell/broken.aff                |   24 +
 .../Analysis/Hunspell/circumfix.aff             |   14 +
 .../Analysis/Hunspell/circumfix.dic             |    2 +
 .../Analysis/Hunspell/complexprefix.aff         |   12 +
 .../Analysis/Hunspell/complexprefix.dic         |    2 +
 .../Analysis/Hunspell/compressed-before-set.aff |   29 +
 .../Hunspell/compressed-empty-alias.aff         |   30 +
 .../Analysis/Hunspell/compressed.aff            |   29 +
 .../Analysis/Hunspell/compressed.dic            |    9 +
 .../Analysis/Hunspell/condition.aff             |   13 +
 .../Analysis/Hunspell/condition.dic             |    4 +
 .../Analysis/Hunspell/conv.aff                  |   16 +
 .../Analysis/Hunspell/conv.dic                  |    2 +
 .../Analysis/Hunspell/dependencies.aff          |   13 +
 .../Analysis/Hunspell/dependencies.dic          |    3 +
 .../Analysis/Hunspell/escaped.aff               |    4 +
 .../Analysis/Hunspell/escaped.dic               |    4 +
 .../Analysis/Hunspell/flaglong.aff              |    4 +
 .../Analysis/Hunspell/flaglong.dic              |    2 +
 .../Analysis/Hunspell/flagnum.aff               |    4 +
 .../Analysis/Hunspell/flagnum.dic               |    3 +
 .../Analysis/Hunspell/homonyms.aff              |    7 +
 .../Analysis/Hunspell/homonyms.dic              |    3 +
 .../Analysis/Hunspell/ignore.aff                |    6 +
 .../Analysis/Hunspell/ignore.dic                |    3 +
 .../Analysis/Hunspell/mixedcase.dic             |   10 +
 .../Analysis/Hunspell/morph.aff                 |    4 +
 .../Analysis/Hunspell/morph.dic                 |    2 +
 .../Analysis/Hunspell/optional-condition.aff    |   14 +
 .../Analysis/Hunspell/simple.aff                |   20 +
 .../Analysis/Hunspell/simple.dic                |   10 +
 .../Analysis/Hunspell/twofold.aff               |    7 +
 .../Analysis/Hunspell/twosuffixes.aff           |    7 +
 .../Analysis/Hunspell/twosuffixes.dic           |    2 +
 .../Util/BaseTokenStreamFactoryTestCase.cs      |    2 +-
 .../Lucene.Net.Tests.Analysis.Common.csproj     |   57 +
 66 files changed, 3446 insertions(+), 3046 deletions(-)
----------------------------------------------------------------------