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

[25/49] 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/04838ce5
Tree: http://git-wip-us.apache.org/repos/asf/incubator-kylin/tree/04838ce5
Diff: http://git-wip-us.apache.org/repos/asf/incubator-kylin/diff/04838ce5

Branch: refs/heads/0.7.1
Commit: 04838ce5e6cd235f23519ac6d0e679b018b30cde
Parents: eecf1d1
Author: Li, Yang <ya...@ebay.com>
Authored: Tue Jun 2 18:09:59 2015 +0800
Committer: Li, Yang <ya...@ebay.com>
Committed: Tue Jun 2 18:09:59 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/04838ce5/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/04838ce5/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);
     }