[29/50] kylin git commit: KYLIN-1337 sort case insensitive by default

2016-04-17 Thread nju_yaho
KYLIN-1337 sort case insensitive by default


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

Branch: refs/heads/1.4-rc
Commit: e0c483e0a047ac0c52a907471cf645b8e9827d76
Parents: 4946efe
Author: janzhongi 
Authored: Thu Feb 25 17:51:09 2016 +0800
Committer: janzhongi 
Committed: Thu Feb 25 17:51:09 2016 +0800

--
 webapp/app/js/filters/filter.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/e0c483e0/webapp/app/js/filters/filter.js
--
diff --git a/webapp/app/js/filters/filter.js b/webapp/app/js/filters/filter.js
index 1eaae93..f18b6f6 100755
--- a/webapp/app/js/filters/filter.js
+++ b/webapp/app/js/filters/filter.js
@@ -54,7 +54,7 @@ KylinApp
   result = 1;
 }
 else {
-  result = attriOfA > attriOfB ? 1 : attriOfA < attriOfB ? -1 : 0;
+  result = attriOfA.toLowerCase() > attriOfB.toLowerCase() ? 1 : 
attriOfA.toLowerCase() < attriOfB.toLowerCase() ? -1 : 0;
 }
 return reverse ? -result : result;
   });



[10/50] [abbrv] kylin git commit: KYLIN-1337 sort case insensitive by default

2016-03-26 Thread shaofengshi
KYLIN-1337 sort case insensitive by default


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

Branch: refs/heads/1.3.x
Commit: 63c59fe9d27dba40053def375873dfec1c14311a
Parents: e72a6b6
Author: janzhongi 
Authored: Thu Feb 25 17:53:53 2016 +0800
Committer: janzhongi 
Committed: Thu Feb 25 17:54:27 2016 +0800

--
 webapp/app/js/filters/filter.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/63c59fe9/webapp/app/js/filters/filter.js
--
diff --git a/webapp/app/js/filters/filter.js b/webapp/app/js/filters/filter.js
index 859b432..980ebe9 100755
--- a/webapp/app/js/filters/filter.js
+++ b/webapp/app/js/filters/filter.js
@@ -54,7 +54,7 @@ KylinApp
   result = 1;
 }
 else {
-  result = attriOfA > attriOfB ? 1 : attriOfA < attriOfB ? -1 : 0;
+  result = attriOfA.toLowerCase() > attriOfB.toLowerCase() ? 1 : 
attriOfA.toLowerCase() < attriOfB.toLowerCase() ? -1 : 0;
 }
 return reverse ? -result : result;
   });



[01/50] [abbrv] kylin git commit: KYLIN-1337 sort case insensitive by default

2016-03-09 Thread liyang
Repository: kylin
Updated Branches:
  refs/heads/master 13e6a434a -> 4e48f2ae6


KYLIN-1337 sort case insensitive by default


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

Branch: refs/heads/master
Commit: 83bf92ca2ef70ff831859c3b20150ee524b628b9
Parents: c3a9b97
Author: janzhongi 
Authored: Thu Feb 25 17:52:40 2016 +0800
Committer: janzhongi 
Committed: Thu Feb 25 17:52:40 2016 +0800

--
 webapp/app/js/filters/filter.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/83bf92ca/webapp/app/js/filters/filter.js
--
diff --git a/webapp/app/js/filters/filter.js b/webapp/app/js/filters/filter.js
index 1eaae93..f18b6f6 100755
--- a/webapp/app/js/filters/filter.js
+++ b/webapp/app/js/filters/filter.js
@@ -54,7 +54,7 @@ KylinApp
   result = 1;
 }
 else {
-  result = attriOfA > attriOfB ? 1 : attriOfA < attriOfB ? -1 : 0;
+  result = attriOfA.toLowerCase() > attriOfB.toLowerCase() ? 1 : 
attriOfA.toLowerCase() < attriOfB.toLowerCase() ? -1 : 0;
 }
 return reverse ? -result : result;
   });



[10/29] kylin git commit: KYLIN-1337 sort case insensitive by default

2016-03-01 Thread mahongbin
KYLIN-1337 sort case insensitive by default


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

Branch: refs/heads/1.x-HBase1.1.3
Commit: 63c59fe9d27dba40053def375873dfec1c14311a
Parents: e72a6b6
Author: janzhongi 
Authored: Thu Feb 25 17:53:53 2016 +0800
Committer: janzhongi 
Committed: Thu Feb 25 17:54:27 2016 +0800

--
 webapp/app/js/filters/filter.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/63c59fe9/webapp/app/js/filters/filter.js
--
diff --git a/webapp/app/js/filters/filter.js b/webapp/app/js/filters/filter.js
index 859b432..980ebe9 100755
--- a/webapp/app/js/filters/filter.js
+++ b/webapp/app/js/filters/filter.js
@@ -54,7 +54,7 @@ KylinApp
   result = 1;
 }
 else {
-  result = attriOfA > attriOfB ? 1 : attriOfA < attriOfB ? -1 : 0;
+  result = attriOfA.toLowerCase() > attriOfB.toLowerCase() ? 1 : 
attriOfA.toLowerCase() < attriOfB.toLowerCase() ? -1 : 0;
 }
 return reverse ? -result : result;
   });



kylin git commit: KYLIN-1337 sort case insensitive by default

2016-02-25 Thread zhongjian
Repository: kylin
Updated Branches:
  refs/heads/1.x-staging e72a6b6b3 -> 63c59fe9d


KYLIN-1337 sort case insensitive by default


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

Branch: refs/heads/1.x-staging
Commit: 63c59fe9d27dba40053def375873dfec1c14311a
Parents: e72a6b6
Author: janzhongi 
Authored: Thu Feb 25 17:53:53 2016 +0800
Committer: janzhongi 
Committed: Thu Feb 25 17:54:27 2016 +0800

--
 webapp/app/js/filters/filter.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/63c59fe9/webapp/app/js/filters/filter.js
--
diff --git a/webapp/app/js/filters/filter.js b/webapp/app/js/filters/filter.js
index 859b432..980ebe9 100755
--- a/webapp/app/js/filters/filter.js
+++ b/webapp/app/js/filters/filter.js
@@ -54,7 +54,7 @@ KylinApp
   result = 1;
 }
 else {
-  result = attriOfA > attriOfB ? 1 : attriOfA < attriOfB ? -1 : 0;
+  result = attriOfA.toLowerCase() > attriOfB.toLowerCase() ? 1 : 
attriOfA.toLowerCase() < attriOfB.toLowerCase() ? -1 : 0;
 }
 return reverse ? -result : result;
   });



kylin git commit: KYLIN-1337 sort case insensitive by default

2016-02-25 Thread zhongjian
Repository: kylin
Updated Branches:
  refs/heads/2.x-staging c3a9b970a -> 83bf92ca2


KYLIN-1337 sort case insensitive by default


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

Branch: refs/heads/2.x-staging
Commit: 83bf92ca2ef70ff831859c3b20150ee524b628b9
Parents: c3a9b97
Author: janzhongi 
Authored: Thu Feb 25 17:52:40 2016 +0800
Committer: janzhongi 
Committed: Thu Feb 25 17:52:40 2016 +0800

--
 webapp/app/js/filters/filter.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/83bf92ca/webapp/app/js/filters/filter.js
--
diff --git a/webapp/app/js/filters/filter.js b/webapp/app/js/filters/filter.js
index 1eaae93..f18b6f6 100755
--- a/webapp/app/js/filters/filter.js
+++ b/webapp/app/js/filters/filter.js
@@ -54,7 +54,7 @@ KylinApp
   result = 1;
 }
 else {
-  result = attriOfA > attriOfB ? 1 : attriOfA < attriOfB ? -1 : 0;
+  result = attriOfA.toLowerCase() > attriOfB.toLowerCase() ? 1 : 
attriOfA.toLowerCase() < attriOfB.toLowerCase() ? -1 : 0;
 }
 return reverse ? -result : result;
   });



kylin git commit: KYLIN-1337 sort case insensitive by default

2016-02-25 Thread zhongjian
Repository: kylin
Updated Branches:
  refs/heads/2.0-rc 4946efea8 -> e0c483e0a


KYLIN-1337 sort case insensitive by default


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

Branch: refs/heads/2.0-rc
Commit: e0c483e0a047ac0c52a907471cf645b8e9827d76
Parents: 4946efe
Author: janzhongi 
Authored: Thu Feb 25 17:51:09 2016 +0800
Committer: janzhongi 
Committed: Thu Feb 25 17:51:09 2016 +0800

--
 webapp/app/js/filters/filter.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/kylin/blob/e0c483e0/webapp/app/js/filters/filter.js
--
diff --git a/webapp/app/js/filters/filter.js b/webapp/app/js/filters/filter.js
index 1eaae93..f18b6f6 100755
--- a/webapp/app/js/filters/filter.js
+++ b/webapp/app/js/filters/filter.js
@@ -54,7 +54,7 @@ KylinApp
   result = 1;
 }
 else {
-  result = attriOfA > attriOfB ? 1 : attriOfA < attriOfB ? -1 : 0;
+  result = attriOfA.toLowerCase() > attriOfB.toLowerCase() ? 1 : 
attriOfA.toLowerCase() < attriOfB.toLowerCase() ? -1 : 0;
 }
 return reverse ? -result : result;
   });