[atlas] branch master updated (b455040 -> b7d113d)

2019-01-10 Thread apoorvnaik
This is an automated email from the ASF dual-hosted git repository.

apoorvnaik pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git.


from b455040  ATLAS-3025 : UI - If go to page is more/less then the 
available page limit then an error appears in the console
 add 5496b7a  word wrong
 new b7d113d  Merge pull request #10 from WangJ1an/patch-1

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../org/apache/atlas/repository/store/graph/v1/HardDeleteHandlerV1.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[atlas] 01/01: Merge pull request #10 from WangJ1an/patch-1

2019-01-10 Thread apoorvnaik
This is an automated email from the ASF dual-hosted git repository.

apoorvnaik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git

commit b7d113dc8eb1525e03e4497346db5da54350370b
Merge: b455040 5496b7a
Author: Apoorv Naik <21226970+apoorv-n...@users.noreply.github.com>
AuthorDate: Thu Jan 10 16:05:01 2019 -0800

Merge pull request #10 from WangJ1an/patch-1

Typo in debug logs of HardDeleteHandler

 .../org/apache/atlas/repository/store/graph/v1/HardDeleteHandlerV1.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[3/3] atlas git commit: ATLAS-3025 : UI - If go to page is more/less then the available page limit then an error appears in the console

2019-01-10 Thread kbhatt
ATLAS-3025 : UI - If go to page is more/less then the available page limit then 
an error appears in the console

(cherry picked from commit b455040d06be2c6330dfb0b11e34c6ea480a0b7c)


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

Branch: refs/heads/branch-0.8
Commit: f397d1e1df61a27c002c52b247ad22054c31502c
Parents: a35379c
Author: kevalbhatt 
Authored: Thu Jan 10 18:11:11 2019 +0530
Committer: kevalbhatt 
Committed: Thu Jan 10 20:44:31 2019 +0530

--
 dashboardv2/public/js/utils/TableLayout.js | 8 
 1 file changed, 8 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/atlas/blob/f397d1e1/dashboardv2/public/js/utils/TableLayout.js
--
diff --git a/dashboardv2/public/js/utils/TableLayout.js 
b/dashboardv2/public/js/utils/TableLayout.js
index 9f5db6f..150d690 100644
--- a/dashboardv2/public/js/utils/TableLayout.js
+++ b/dashboardv2/public/js/utils/TableLayout.js
@@ -626,6 +626,14 @@ define(['require',
 gotoPagebtn: function(e) {
 var that = this;
 var goToPage = parseInt(this.ui.gotoPage.val());
+if (!_.isNaN(goToPage) && ((goToPage == 0) || 
(this.collection.state.totalPages < goToPage))) {
+Utils.notifyInfo({
+content: Messages.search.noRecordForPage + "page " + 
goToPage
+});
+this.ui.gotoPage.val('')
+that.ui.gotoPagebtn.attr('disabled', true);
+return;
+}
 if (!(_.isNaN(goToPage) || goToPage <= -1)) {
 if (this.collection.mode == "client") {
 return this.collection.getPage((goToPage - 1), {



[2/3] atlas git commit: ATLAS-3026 : Column level lineage show the invalid icon for the process

2019-01-10 Thread kbhatt
ATLAS-3026 : Column level lineage show the invalid icon for the process

(cherry picked from commit 665f8311e45477ffdf951b7f9d9eb304badfaab8)


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

Branch: refs/heads/branch-0.8
Commit: 439cd066880874323f72e9d1ab430e0c25fcb1f4
Parents: f397d1e
Author: kevalbhatt 
Authored: Thu Jan 10 18:51:21 2019 +0530
Committer: kevalbhatt 
Committed: Thu Jan 10 20:44:31 2019 +0530

--
 .../img/entity-icon/hive_column_lineage.png | Bin 12483 -> 15471 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/atlas/blob/439cd066/dashboardv2/public/img/entity-icon/hive_column_lineage.png
--
diff --git a/dashboardv2/public/img/entity-icon/hive_column_lineage.png 
b/dashboardv2/public/img/entity-icon/hive_column_lineage.png
index 1dec4f6..23d6064 100644
Binary files a/dashboardv2/public/img/entity-icon/hive_column_lineage.png and 
b/dashboardv2/public/img/entity-icon/hive_column_lineage.png differ



[1/3] atlas git commit: ATLAS-3010: UI - Lineage hide process filter is not working

2019-01-10 Thread kbhatt
Repository: atlas
Updated Branches:
  refs/heads/branch-0.8 a35379c1d -> e11172cd8


ATLAS-3010: UI - Lineage hide process filter is not working

Signed-off-by: kevalbhatt 
(cherry picked from commit 3871be8b1e5496214b6d6adf1ee4c334d54f54b6)


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

Branch: refs/heads/branch-0.8
Commit: e11172cd8206ba110adc4060cd005ff022e04b6c
Parents: 439cd06
Author: Abhishek Kadam 
Authored: Thu Jan 10 12:49:28 2019 +0530
Committer: kevalbhatt 
Committed: Thu Jan 10 20:44:31 2019 +0530

--
 dashboardv2/public/js/views/graph/LineageLayoutView.js | 3 +++
 1 file changed, 3 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/atlas/blob/e11172cd/dashboardv2/public/js/views/graph/LineageLayoutView.js
--
diff --git a/dashboardv2/public/js/views/graph/LineageLayoutView.js 
b/dashboardv2/public/js/views/graph/LineageLayoutView.js
index 2f64f1e..804dbe7 100644
--- a/dashboardv2/public/js/views/graph/LineageLayoutView.js
+++ b/dashboardv2/public/js/views/graph/LineageLayoutView.js
@@ -204,6 +204,9 @@ define(['require',
 var that = this;
 
 function isProcess(typeName) {
+if (typeName == "Process") {
+return true;
+}
 var entityDef = 
that.entityDefCollection.fullCollection.find({ name: typeName });
 return _.contains(Utils.getNestedSuperTypes({ data: 
entityDef.toJSON(), collection: that.entityDefCollection }), "Process")
 }



[1/4] atlas git commit: ATLAS-3027 : UI : Metric modal Improvements

2019-01-10 Thread kbhatt
Repository: atlas
Updated Branches:
  refs/heads/branch-1.0 6b81507a5 -> 697baf4c0


ATLAS-3027 : UI : Metric modal Improvements

(cherry picked from commit e8b32778cad16a61bcb6341b32fee90301028f71)


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

Branch: refs/heads/branch-1.0
Commit: 598184c8763c86adc7e75409a9203271f42ce184
Parents: 325f9da
Author: kevalbhatt 
Authored: Thu Jan 10 18:50:03 2019 +0530
Committer: kevalbhatt 
Committed: Thu Jan 10 20:42:58 2019 +0530

--
 dashboardv2/public/css/scss/override.scss   |  2 +-
 dashboardv2/public/css/scss/style.scss  |  1 +
 dashboardv2/public/css/scss/table.scss  | 31 
 dashboardv2/public/js/router/Router.js  |  4 +--
 .../js/templates/common/Statistics_tmpl.html| 16 +-
 .../public/js/views/common/Statistics.js| 23 +++
 6 files changed, 61 insertions(+), 16 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/atlas/blob/598184c8/dashboardv2/public/css/scss/override.scss
--
diff --git a/dashboardv2/public/css/scss/override.scss 
b/dashboardv2/public/css/scss/override.scss
index 2dca3a5..5754aac 100644
--- a/dashboardv2/public/css/scss/override.scss
+++ b/dashboardv2/public/css/scss/override.scss
@@ -50,7 +50,7 @@
 .modal-body {
 position: relative;
 padding: 15px;
-max-height: 400px;
+max-height: 72vh;
 min-height: 70px;
 overflow: auto;
 

http://git-wip-us.apache.org/repos/asf/atlas/blob/598184c8/dashboardv2/public/css/scss/style.scss
--
diff --git a/dashboardv2/public/css/scss/style.scss 
b/dashboardv2/public/css/scss/style.scss
index cd1781b..904aa4e 100644
--- a/dashboardv2/public/css/scss/style.scss
+++ b/dashboardv2/public/css/scss/style.scss
@@ -19,6 +19,7 @@
 @import "__mixin.scss";
 @import "__variable.scss";
 @import "common.scss";
+@import "table.scss";
 @import "tab.scss";
 @import "form.scss";
 @import "nav.scss";

http://git-wip-us.apache.org/repos/asf/atlas/blob/598184c8/dashboardv2/public/css/scss/table.scss
--
diff --git a/dashboardv2/public/css/scss/table.scss 
b/dashboardv2/public/css/scss/table.scss
new file mode 100644
index 000..7aa4774
--- /dev/null
+++ b/dashboardv2/public/css/scss/table.scss
@@ -0,0 +1,31 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+.stat-table {
+
+tbody,
+thead {
+>tr {
+
+td:nth-child(2),
+th:nth-child(2) {
+text-align: right;
+}
+}
+}
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/atlas/blob/598184c8/dashboardv2/public/js/router/Router.js
--
diff --git a/dashboardv2/public/js/router/Router.js 
b/dashboardv2/public/js/router/Router.js
index 1bb98a1..9f4536e 100644
--- a/dashboardv2/public/js/router/Router.js
+++ b/dashboardv2/public/js/router/Router.js
@@ -76,8 +76,8 @@ define([
 $('body').on('click', 'a.show-stat', function() {
 require([
 'views/common/Statistics',
-], function(AboutAtlas) {
-new AboutAtlas();
+], function(Statistics) {
+new Statistics();
 });
 });
 $('body').on('click', 'li.aboutAtlas', function() {

http://git-wip-us.apache.org/repos/asf/atlas/blob/598184c8/dashboardv2/public/js/templates/common/Statistics_tmpl.html
--
diff --git a/dashboardv2/public/js/templates/common/Statistics_tmpl.html 
b/dashboardv2/public/js/templates/common/Statistics_tmpl.html
index cecdf20..13e64a7 100644
--

[3/4] atlas git commit: ATLAS-3026 : Column level lineage show the invalid icon for the process

2019-01-10 Thread kbhatt
ATLAS-3026 : Column level lineage show the invalid icon for the process

(cherry picked from commit 665f8311e45477ffdf951b7f9d9eb304badfaab8)


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

Branch: refs/heads/branch-1.0
Commit: c2141f593bc2584b1ce54433e93dd8cf2133dd37
Parents: 598184c
Author: kevalbhatt 
Authored: Thu Jan 10 18:51:21 2019 +0530
Committer: kevalbhatt 
Committed: Thu Jan 10 20:43:23 2019 +0530

--
 .../entity-icon/hive/hive_column_lineage.png| Bin 12483 -> 15471 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/atlas/blob/c2141f59/dashboardv2/public/img/entity-icon/hive/hive_column_lineage.png
--
diff --git a/dashboardv2/public/img/entity-icon/hive/hive_column_lineage.png 
b/dashboardv2/public/img/entity-icon/hive/hive_column_lineage.png
index 1dec4f6..23d6064 100644
Binary files a/dashboardv2/public/img/entity-icon/hive/hive_column_lineage.png 
and b/dashboardv2/public/img/entity-icon/hive/hive_column_lineage.png differ



[4/4] atlas git commit: ATLAS-3010: UI - Lineage hide process filter is not working

2019-01-10 Thread kbhatt
ATLAS-3010: UI - Lineage hide process filter is not working

Signed-off-by: kevalbhatt 
(cherry picked from commit 3871be8b1e5496214b6d6adf1ee4c334d54f54b6)


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

Branch: refs/heads/branch-1.0
Commit: 697baf4c079f70f4839f1b84731e2280e84c6265
Parents: c2141f5
Author: Abhishek Kadam 
Authored: Thu Jan 10 12:49:28 2019 +0530
Committer: kevalbhatt 
Committed: Thu Jan 10 20:43:23 2019 +0530

--
 dashboardv2/public/js/views/graph/LineageLayoutView.js | 3 +++
 1 file changed, 3 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/atlas/blob/697baf4c/dashboardv2/public/js/views/graph/LineageLayoutView.js
--
diff --git a/dashboardv2/public/js/views/graph/LineageLayoutView.js 
b/dashboardv2/public/js/views/graph/LineageLayoutView.js
index 2f64f1e..804dbe7 100644
--- a/dashboardv2/public/js/views/graph/LineageLayoutView.js
+++ b/dashboardv2/public/js/views/graph/LineageLayoutView.js
@@ -204,6 +204,9 @@ define(['require',
 var that = this;
 
 function isProcess(typeName) {
+if (typeName == "Process") {
+return true;
+}
 var entityDef = 
that.entityDefCollection.fullCollection.find({ name: typeName });
 return _.contains(Utils.getNestedSuperTypes({ data: 
entityDef.toJSON(), collection: that.entityDefCollection }), "Process")
 }



[2/4] atlas git commit: ATLAS-3025 : UI - If go to page is more/less then the available page limit then an error appears in the console

2019-01-10 Thread kbhatt
ATLAS-3025 : UI - If go to page is more/less then the available page limit then 
an error appears in the console

(cherry picked from commit b455040d06be2c6330dfb0b11e34c6ea480a0b7c)


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

Branch: refs/heads/branch-1.0
Commit: 325f9da92fe21dbace562f15e79702e3e97b66b8
Parents: 6b81507
Author: kevalbhatt 
Authored: Thu Jan 10 18:11:11 2019 +0530
Committer: kevalbhatt 
Committed: Thu Jan 10 20:42:58 2019 +0530

--
 dashboardv2/public/js/utils/TableLayout.js | 8 
 1 file changed, 8 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/atlas/blob/325f9da9/dashboardv2/public/js/utils/TableLayout.js
--
diff --git a/dashboardv2/public/js/utils/TableLayout.js 
b/dashboardv2/public/js/utils/TableLayout.js
index 9f5db6f..150d690 100644
--- a/dashboardv2/public/js/utils/TableLayout.js
+++ b/dashboardv2/public/js/utils/TableLayout.js
@@ -626,6 +626,14 @@ define(['require',
 gotoPagebtn: function(e) {
 var that = this;
 var goToPage = parseInt(this.ui.gotoPage.val());
+if (!_.isNaN(goToPage) && ((goToPage == 0) || 
(this.collection.state.totalPages < goToPage))) {
+Utils.notifyInfo({
+content: Messages.search.noRecordForPage + "page " + 
goToPage
+});
+this.ui.gotoPage.val('')
+that.ui.gotoPagebtn.attr('disabled', true);
+return;
+}
 if (!(_.isNaN(goToPage) || goToPage <= -1)) {
 if (this.collection.mode == "client") {
 return this.collection.getPage((goToPage - 1), {



[4/4] atlas git commit: ATLAS-3025 : UI - If go to page is more/less then the available page limit then an error appears in the console

2019-01-10 Thread kbhatt
ATLAS-3025 : UI - If go to page is more/less then the available page limit then 
an error appears in the console


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

Branch: refs/heads/master
Commit: b455040d06be2c6330dfb0b11e34c6ea480a0b7c
Parents: e8b3277
Author: kevalbhatt 
Authored: Thu Jan 10 18:11:11 2019 +0530
Committer: kevalbhatt 
Committed: Thu Jan 10 19:26:35 2019 +0530

--
 dashboardv2/public/js/utils/TableLayout.js | 8 
 1 file changed, 8 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/atlas/blob/b455040d/dashboardv2/public/js/utils/TableLayout.js
--
diff --git a/dashboardv2/public/js/utils/TableLayout.js 
b/dashboardv2/public/js/utils/TableLayout.js
index 9f5db6f..150d690 100644
--- a/dashboardv2/public/js/utils/TableLayout.js
+++ b/dashboardv2/public/js/utils/TableLayout.js
@@ -626,6 +626,14 @@ define(['require',
 gotoPagebtn: function(e) {
 var that = this;
 var goToPage = parseInt(this.ui.gotoPage.val());
+if (!_.isNaN(goToPage) && ((goToPage == 0) || 
(this.collection.state.totalPages < goToPage))) {
+Utils.notifyInfo({
+content: Messages.search.noRecordForPage + "page " + 
goToPage
+});
+this.ui.gotoPage.val('')
+that.ui.gotoPagebtn.attr('disabled', true);
+return;
+}
 if (!(_.isNaN(goToPage) || goToPage <= -1)) {
 if (this.collection.mode == "client") {
 return this.collection.getPage((goToPage - 1), {



[2/4] atlas git commit: ATLAS-3026 : Column level lineage show the invalid icon for the process

2019-01-10 Thread kbhatt
ATLAS-3026 : Column level lineage show the invalid icon for the process


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

Branch: refs/heads/master
Commit: 665f8311e45477ffdf951b7f9d9eb304badfaab8
Parents: 3871be8
Author: kevalbhatt 
Authored: Thu Jan 10 18:51:21 2019 +0530
Committer: kevalbhatt 
Committed: Thu Jan 10 19:25:22 2019 +0530

--
 .../img/entity-icon/hive_column_lineage.png | Bin 12483 -> 15471 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/atlas/blob/665f8311/dashboardv2/public/img/entity-icon/hive_column_lineage.png
--
diff --git a/dashboardv2/public/img/entity-icon/hive_column_lineage.png 
b/dashboardv2/public/img/entity-icon/hive_column_lineage.png
index 1dec4f6..23d6064 100644
Binary files a/dashboardv2/public/img/entity-icon/hive_column_lineage.png and 
b/dashboardv2/public/img/entity-icon/hive_column_lineage.png differ



[3/4] atlas git commit: ATLAS-3027 : UI : Metric modal Improvements

2019-01-10 Thread kbhatt
ATLAS-3027 : UI : Metric modal Improvements


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

Branch: refs/heads/master
Commit: e8b32778cad16a61bcb6341b32fee90301028f71
Parents: 665f831
Author: kevalbhatt 
Authored: Thu Jan 10 18:50:03 2019 +0530
Committer: kevalbhatt 
Committed: Thu Jan 10 19:25:48 2019 +0530

--
 dashboardv2/public/css/scss/override.scss   |  2 +-
 dashboardv2/public/css/scss/style.scss  |  1 +
 dashboardv2/public/css/scss/table.scss  | 31 
 dashboardv2/public/js/router/Router.js  |  4 +--
 .../js/templates/common/Statistics_tmpl.html| 16 +-
 .../public/js/views/common/Statistics.js| 23 +++
 6 files changed, 61 insertions(+), 16 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/atlas/blob/e8b32778/dashboardv2/public/css/scss/override.scss
--
diff --git a/dashboardv2/public/css/scss/override.scss 
b/dashboardv2/public/css/scss/override.scss
index 2dca3a5..5754aac 100644
--- a/dashboardv2/public/css/scss/override.scss
+++ b/dashboardv2/public/css/scss/override.scss
@@ -50,7 +50,7 @@
 .modal-body {
 position: relative;
 padding: 15px;
-max-height: 400px;
+max-height: 72vh;
 min-height: 70px;
 overflow: auto;
 

http://git-wip-us.apache.org/repos/asf/atlas/blob/e8b32778/dashboardv2/public/css/scss/style.scss
--
diff --git a/dashboardv2/public/css/scss/style.scss 
b/dashboardv2/public/css/scss/style.scss
index cd1781b..904aa4e 100644
--- a/dashboardv2/public/css/scss/style.scss
+++ b/dashboardv2/public/css/scss/style.scss
@@ -19,6 +19,7 @@
 @import "__mixin.scss";
 @import "__variable.scss";
 @import "common.scss";
+@import "table.scss";
 @import "tab.scss";
 @import "form.scss";
 @import "nav.scss";

http://git-wip-us.apache.org/repos/asf/atlas/blob/e8b32778/dashboardv2/public/css/scss/table.scss
--
diff --git a/dashboardv2/public/css/scss/table.scss 
b/dashboardv2/public/css/scss/table.scss
new file mode 100644
index 000..7aa4774
--- /dev/null
+++ b/dashboardv2/public/css/scss/table.scss
@@ -0,0 +1,31 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+.stat-table {
+
+tbody,
+thead {
+>tr {
+
+td:nth-child(2),
+th:nth-child(2) {
+text-align: right;
+}
+}
+}
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/atlas/blob/e8b32778/dashboardv2/public/js/router/Router.js
--
diff --git a/dashboardv2/public/js/router/Router.js 
b/dashboardv2/public/js/router/Router.js
index 1bb98a1..9f4536e 100644
--- a/dashboardv2/public/js/router/Router.js
+++ b/dashboardv2/public/js/router/Router.js
@@ -76,8 +76,8 @@ define([
 $('body').on('click', 'a.show-stat', function() {
 require([
 'views/common/Statistics',
-], function(AboutAtlas) {
-new AboutAtlas();
+], function(Statistics) {
+new Statistics();
 });
 });
 $('body').on('click', 'li.aboutAtlas', function() {

http://git-wip-us.apache.org/repos/asf/atlas/blob/e8b32778/dashboardv2/public/js/templates/common/Statistics_tmpl.html
--
diff --git a/dashboardv2/public/js/templates/common/Statistics_tmpl.html 
b/dashboardv2/public/js/templates/common/Statistics_tmpl.html
index cecdf20..13e64a7 100644
--- a/dashboardv2/public/js/templates/common/Statistics_tmpl.html
+++ b/dashboardv2/public/js/templates/common/Statistics_tmpl.html
@@ -15,10 +15,10 @@
  * limit

[1/4] atlas git commit: ATLAS-3010: UI - Lineage hide process filter is not working

2019-01-10 Thread kbhatt
Repository: atlas
Updated Branches:
  refs/heads/master e05ed85fe -> b455040d0


ATLAS-3010: UI - Lineage hide process filter is not working

Signed-off-by: kevalbhatt 


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

Branch: refs/heads/master
Commit: 3871be8b1e5496214b6d6adf1ee4c334d54f54b6
Parents: e05ed85
Author: Abhishek Kadam 
Authored: Thu Jan 10 12:49:28 2019 +0530
Committer: kevalbhatt 
Committed: Thu Jan 10 19:24:42 2019 +0530

--
 dashboardv2/public/js/views/graph/LineageLayoutView.js | 3 +++
 1 file changed, 3 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/atlas/blob/3871be8b/dashboardv2/public/js/views/graph/LineageLayoutView.js
--
diff --git a/dashboardv2/public/js/views/graph/LineageLayoutView.js 
b/dashboardv2/public/js/views/graph/LineageLayoutView.js
index 2f64f1e..804dbe7 100644
--- a/dashboardv2/public/js/views/graph/LineageLayoutView.js
+++ b/dashboardv2/public/js/views/graph/LineageLayoutView.js
@@ -204,6 +204,9 @@ define(['require',
 var that = this;
 
 function isProcess(typeName) {
+if (typeName == "Process") {
+return true;
+}
 var entityDef = 
that.entityDefCollection.fullCollection.find({ name: typeName });
 return _.contains(Utils.getNestedSuperTypes({ data: 
entityDef.toJSON(), collection: that.entityDefCollection }), "Process")
 }