[24/50] kylin git commit: minor, fix datetimepicker clear exception issue

2016-04-17 Thread nju_yaho
minor, fix datetimepicker clear exception issue


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

Branch: refs/heads/1.4-rc
Commit: 26f4133fc9baaeea74b53499b6965cc998184861
Parents: 783d15a
Author: janzhongi 
Authored: Wed Feb 24 17:54:23 2016 +0800
Committer: janzhongi 
Committed: Wed Feb 24 17:54:23 2016 +0800

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


http://git-wip-us.apache.org/repos/asf/kylin/blob/26f4133f/webapp/app/js/directives/directives.js
--
diff --git a/webapp/app/js/directives/directives.js 
b/webapp/app/js/directives/directives.js
index 3f61310..1b51354 100644
--- a/webapp/app/js/directives/directives.js
+++ b/webapp/app/js/directives/directives.js
@@ -234,7 +234,7 @@ KylinApp.directive('kylinPagination', function ($parse, $q) 
{
 });
 
 ctrl.$parsers.push(function (value) {
-  if (isNaN(value)) {
+  if (isNaN(value)|| value==null) {
 return value;
   }
   value = new Date(value.getFullYear(), value.getMonth(), 
value.getDate(), 0, 0, 0, 0);



[04/50] [abbrv] kylin git commit: minor, fix datetimepicker clear exception issue

2016-03-26 Thread shaofengshi
minor, fix datetimepicker clear exception issue


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

Branch: refs/heads/1.3.x
Commit: e366291c7eb0076ba89ab2a4e75bd1b164dde70e
Parents: 836b936
Author: janzhongi 
Authored: Wed Feb 24 17:48:20 2016 +0800
Committer: janzhongi 
Committed: Wed Feb 24 17:48:20 2016 +0800

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


http://git-wip-us.apache.org/repos/asf/kylin/blob/e366291c/webapp/app/js/directives/directives.js
--
diff --git a/webapp/app/js/directives/directives.js 
b/webapp/app/js/directives/directives.js
index 7b47137..ab4171b 100644
--- a/webapp/app/js/directives/directives.js
+++ b/webapp/app/js/directives/directives.js
@@ -220,7 +220,7 @@ KylinApp.directive('kylinPagination', function ($parse, $q) 
{
 });
 
 ctrl.$parsers.push(function (value) {
-  if (isNaN(value)) {
+  if (isNaN(value)||value==null) {
 return value;
   }
   value = new Date(value.getFullYear(), value.getMonth(), 
value.getDate(), 0, 0, 0, 0);



[04/29] kylin git commit: minor, fix datetimepicker clear exception issue

2016-03-01 Thread mahongbin
minor, fix datetimepicker clear exception issue


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

Branch: refs/heads/1.x-HBase1.1.3
Commit: e366291c7eb0076ba89ab2a4e75bd1b164dde70e
Parents: 836b936
Author: janzhongi 
Authored: Wed Feb 24 17:48:20 2016 +0800
Committer: janzhongi 
Committed: Wed Feb 24 17:48:20 2016 +0800

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


http://git-wip-us.apache.org/repos/asf/kylin/blob/e366291c/webapp/app/js/directives/directives.js
--
diff --git a/webapp/app/js/directives/directives.js 
b/webapp/app/js/directives/directives.js
index 7b47137..ab4171b 100644
--- a/webapp/app/js/directives/directives.js
+++ b/webapp/app/js/directives/directives.js
@@ -220,7 +220,7 @@ KylinApp.directive('kylinPagination', function ($parse, $q) 
{
 });
 
 ctrl.$parsers.push(function (value) {
-  if (isNaN(value)) {
+  if (isNaN(value)||value==null) {
 return value;
   }
   value = new Date(value.getFullYear(), value.getMonth(), 
value.getDate(), 0, 0, 0, 0);



kylin git commit: minor, fix datetimepicker clear exception issue

2016-02-24 Thread zhongjian
Repository: kylin
Updated Branches:
  refs/heads/2.0-rc 783d15a0c -> 26f4133fc


minor, fix datetimepicker clear exception issue


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

Branch: refs/heads/2.0-rc
Commit: 26f4133fc9baaeea74b53499b6965cc998184861
Parents: 783d15a
Author: janzhongi 
Authored: Wed Feb 24 17:54:23 2016 +0800
Committer: janzhongi 
Committed: Wed Feb 24 17:54:23 2016 +0800

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


http://git-wip-us.apache.org/repos/asf/kylin/blob/26f4133f/webapp/app/js/directives/directives.js
--
diff --git a/webapp/app/js/directives/directives.js 
b/webapp/app/js/directives/directives.js
index 3f61310..1b51354 100644
--- a/webapp/app/js/directives/directives.js
+++ b/webapp/app/js/directives/directives.js
@@ -234,7 +234,7 @@ KylinApp.directive('kylinPagination', function ($parse, $q) 
{
 });
 
 ctrl.$parsers.push(function (value) {
-  if (isNaN(value)) {
+  if (isNaN(value)|| value==null) {
 return value;
   }
   value = new Date(value.getFullYear(), value.getMonth(), 
value.getDate(), 0, 0, 0, 0);



kylin git commit: minor, fix datetimepicker clear exception issue

2016-02-24 Thread zhongjian
Repository: kylin
Updated Branches:
  refs/heads/2.x-staging 2743175d0 -> 38548a25d


minor, fix datetimepicker clear exception issue


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

Branch: refs/heads/2.x-staging
Commit: 38548a25d150168283be2105210fee640dbcd2c6
Parents: 2743175
Author: janzhongi 
Authored: Wed Feb 24 17:52:44 2016 +0800
Committer: janzhongi 
Committed: Wed Feb 24 17:52:44 2016 +0800

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


http://git-wip-us.apache.org/repos/asf/kylin/blob/38548a25/webapp/app/js/directives/directives.js
--
diff --git a/webapp/app/js/directives/directives.js 
b/webapp/app/js/directives/directives.js
index 2758e0f..d07cee1 100644
--- a/webapp/app/js/directives/directives.js
+++ b/webapp/app/js/directives/directives.js
@@ -234,7 +234,7 @@ KylinApp.directive('kylinPagination', function ($parse, $q) 
{
 });
 
 ctrl.$parsers.push(function (value) {
-  if (isNaN(value)) {
+  if (isNaN(value)||value==null) {
 return value;
   }
   value = new Date(value.getFullYear(), value.getMonth(), 
value.getDate(), 0, 0, 0, 0);



kylin git commit: minor, fix datetimepicker clear exception issue

2016-02-24 Thread zhongjian
Repository: kylin
Updated Branches:
  refs/heads/1.x-staging 836b936bc -> e366291c7


minor, fix datetimepicker clear exception issue


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

Branch: refs/heads/1.x-staging
Commit: e366291c7eb0076ba89ab2a4e75bd1b164dde70e
Parents: 836b936
Author: janzhongi 
Authored: Wed Feb 24 17:48:20 2016 +0800
Committer: janzhongi 
Committed: Wed Feb 24 17:48:20 2016 +0800

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


http://git-wip-us.apache.org/repos/asf/kylin/blob/e366291c/webapp/app/js/directives/directives.js
--
diff --git a/webapp/app/js/directives/directives.js 
b/webapp/app/js/directives/directives.js
index 7b47137..ab4171b 100644
--- a/webapp/app/js/directives/directives.js
+++ b/webapp/app/js/directives/directives.js
@@ -220,7 +220,7 @@ KylinApp.directive('kylinPagination', function ($parse, $q) 
{
 });
 
 ctrl.$parsers.push(function (value) {
-  if (isNaN(value)) {
+  if (isNaN(value)||value==null) {
 return value;
   }
   value = new Date(value.getFullYear(), value.getMonth(), 
value.getDate(), 0, 0, 0, 0);