You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by li...@apache.org on 2015/06/02 11:58:44 UTC

[3/3] incubator-kylin git commit: KYLIN-669, replace eng_com.dic with SCOWL dict file which as a clear license

KYLIN-669, replace eng_com.dic with SCOWL dict file which as a clear license


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

Branch: refs/heads/0.8.0
Commit: da17eec631ac67ea0ccc370bab0c905897f2f847
Parents: 9f320a6
Author: Li, Yang <ya...@ebay.com>
Authored: Tue Jun 2 17:53:32 2015 +0800
Committer: Li, Yang <ya...@ebay.com>
Committed: Tue Jun 2 17:57:16 2015 +0800

----------------------------------------------------------------------
 LICENSE                                         |     10 +-
 .../apache/kylin/dict/TrieDictionaryTest.java   |      2 +-
 dictionary/src/test/resources/dict/eng_com.dic  | 150843 ----------------
 .../english-words.80 (scowl-2015.05.18).txt     | 139304 ++++++++++++++
 4 files changed, 139314 insertions(+), 150845 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/da17eec6/LICENSE
----------------------------------------------------------------------
diff --git a/LICENSE b/LICENSE
index d15d498..1b4eae4 100644
--- a/LICENSE
+++ b/LICENSE
@@ -69,4 +69,12 @@ For AdminLTE:
 ==============================================================================
 This product bundles AdminLTE, which is available under a
 "MIT" license.  For details, see
-https://github.com/almasaeed2010/AdminLTE/blob/master/LICENSE.
\ No newline at end of file
+https://github.com/almasaeed2010/AdminLTE/blob/master/LICENSE.
+
+
+==============================================================================
+For english-words.80 (scowl-2015.05.18).txt:
+==============================================================================
+This product bundles SCOWL, which is available under a
+MIT-like license.  For details, see
+https://raw.githubusercontent.com/kevina/wordlist/master/scowl/Copyright

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/da17eec6/dictionary/src/test/java/org/apache/kylin/dict/TrieDictionaryTest.java
----------------------------------------------------------------------
diff --git a/dictionary/src/test/java/org/apache/kylin/dict/TrieDictionaryTest.java b/dictionary/src/test/java/org/apache/kylin/dict/TrieDictionaryTest.java
index 6a8e19d..4ad89d5 100644
--- a/dictionary/src/test/java/org/apache/kylin/dict/TrieDictionaryTest.java
+++ b/dictionary/src/test/java/org/apache/kylin/dict/TrieDictionaryTest.java
@@ -133,7 +133,7 @@ public class TrieDictionaryTest {
 
     @Test
     public void englishWordsTest() throws Exception {
-        InputStream is = new FileInputStream("src/test/resources/dict/eng_com.dic");
+        InputStream is = new FileInputStream("src/test/resources/dict/english-words.80 (scowl-2015.05.18).txt");
         ArrayList<String> str = loadStrings(is);
         testStringDictionary(str, null);
     }