You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by ni...@apache.org on 2017/08/11 16:36:15 UTC

[1/2] atlas git commit: ATLAS-2041: UI: Show tag names with dot, when taxonomy is disabled

Repository: atlas
Updated Branches:
  refs/heads/master 6f9684b4f -> d86be7a3b


ATLAS-2041: UI: Show tag names with dot, when taxonomy is disabled

Signed-off-by: nixonrodrigues <ni...@apache.org>


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

Branch: refs/heads/master
Commit: 5d26d6649b2281e802d142ce10f246aaddd41b74
Parents: 6f9684b
Author: kevalbhatt <kb...@apache.org>
Authored: Fri Aug 11 11:18:16 2017 +0530
Committer: nixonrodrigues <ni...@apache.org>
Committed: Fri Aug 11 21:58:44 2017 +0530

----------------------------------------------------------------------
 dashboardv2/public/js/utils/Utils.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/atlas/blob/5d26d664/dashboardv2/public/js/utils/Utils.js
----------------------------------------------------------------------
diff --git a/dashboardv2/public/js/utils/Utils.js b/dashboardv2/public/js/utils/Utils.js
index 6e0453b..9ddd5f4 100644
--- a/dashboardv2/public/js/utils/Utils.js
+++ b/dashboardv2/public/js/utils/Utils.js
@@ -335,7 +335,7 @@ define(['require', 'utils/Globals', 'pnotify', 'utils/Messages', 'pnotify.button
                 trem = true;
             } else if (value.values && value.values['taxonomy.namespace']) {
                 trem = true;
-            } else if (name.length > 1) {
+            } else if (Globals.taxonomy && name.length > 1) {
                 trem = true; // Temp fix
             }
 


[2/2] atlas git commit: ATLAS-2004: Move Apache license header to the beginning of file. (Richard Ding via nixonrodrigues)

Posted by ni...@apache.org.
ATLAS-2004: Move Apache license header to the beginning of file. (Richard Ding via nixonrodrigues)


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

Branch: refs/heads/master
Commit: d86be7a3b5db557a4650e4b57f726e42eb87b721
Parents: 5d26d66
Author: nixonrodrigues <ni...@apache.org>
Authored: Fri Aug 11 22:02:32 2017 +0530
Committer: nixonrodrigues <ni...@apache.org>
Committed: Fri Aug 11 22:02:32 2017 +0530

----------------------------------------------------------------------
 .../src/main/java/org/apache/atlas/kafka/AtlasKafkaMessage.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/atlas/blob/d86be7a3/notification/src/main/java/org/apache/atlas/kafka/AtlasKafkaMessage.java
----------------------------------------------------------------------
diff --git a/notification/src/main/java/org/apache/atlas/kafka/AtlasKafkaMessage.java b/notification/src/main/java/org/apache/atlas/kafka/AtlasKafkaMessage.java
index cdbf57f..b04aba9 100644
--- a/notification/src/main/java/org/apache/atlas/kafka/AtlasKafkaMessage.java
+++ b/notification/src/main/java/org/apache/atlas/kafka/AtlasKafkaMessage.java
@@ -1,5 +1,3 @@
-package org.apache.atlas.kafka;
-
 /**
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
@@ -18,6 +16,8 @@ package org.apache.atlas.kafka;
  * limitations under the License.
  */
 
+package org.apache.atlas.kafka;
+
 public class AtlasKafkaMessage<T> {
     private final T    message;
     private final long offset;