You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by kb...@apache.org on 2019/01/10 15:14:53 UTC

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

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 <kb...@apache.org>
(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 <ab...@gmail.com>
Authored: Thu Jan 10 12:49:28 2019 +0530
Committer: kevalbhatt <kb...@apache.org>
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")
                 }


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

Posted by kb...@apache.org.
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 <kb...@apache.org>
Authored: Thu Jan 10 18:51:21 2019 +0530
Committer: kevalbhatt <kb...@apache.org>
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


[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

Posted by kb...@apache.org.
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 <kb...@apache.org>
Authored: Thu Jan 10 18:11:11 2019 +0530
Committer: kevalbhatt <kb...@apache.org>
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), {