Repository: incubator-atlas Updated Branches: refs/heads/branch-0.6-incubating 41379ef9c -> 5558c0296
ATLAS-244 UI: Add Tag Tab (darshankumar89 via sumasai) Project: http://git-wip-us.apache.org/repos/asf/incubator-atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-atlas/commit/5558c029 Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/5558c029 Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/5558c029 Branch: refs/heads/branch-0.6-incubating Commit: 5558c02963ba625b0d251d2f77c6227fed2d022a Parents: 41379ef Author: Suma Shivaprasad <[email protected]> Authored: Fri Dec 11 17:09:44 2015 +0530 Committer: Suma Shivaprasad <[email protected]> Committed: Fri Dec 11 17:09:44 2015 +0530 ---------------------------------------------------------------------- dashboard/public/css/common.css | 3 +++ .../public/modules/tags/instance/instanceTagsController.js | 2 +- dashboard/public/modules/tags/instance/views/tags.html | 6 +++++- release-log.txt | 1 + 4 files changed, 10 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/5558c029/dashboard/public/css/common.css ---------------------------------------------------------------------- diff --git a/dashboard/public/css/common.css b/dashboard/public/css/common.css index aa6dd11..e8d9345 100644 --- a/dashboard/public/css/common.css +++ b/dashboard/public/css/common.css @@ -365,4 +365,7 @@ Tags on Home Page design .h160 { height: 160px !important; +} +.tag-attr{ + font-weight:bold; } \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/5558c029/dashboard/public/modules/tags/instance/instanceTagsController.js ---------------------------------------------------------------------- diff --git a/dashboard/public/modules/tags/instance/instanceTagsController.js b/dashboard/public/modules/tags/instance/instanceTagsController.js index 70156c1..42e22dc 100644 --- a/dashboard/public/modules/tags/instance/instanceTagsController.js +++ b/dashboard/public/modules/tags/instance/instanceTagsController.js @@ -34,7 +34,7 @@ angular.module('dgc.tags.instance').controller('InstanceTagController', ['$scope var pair = key + ":" + value; pair_arr.push(pair); }); - data.traits[trait].values = pair_arr.join(" | "); + data.traits[trait].values = pair_arr.join(" , "); } else { data.traits[trait].values = 'NA'; } http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/5558c029/dashboard/public/modules/tags/instance/views/tags.html ---------------------------------------------------------------------- diff --git a/dashboard/public/modules/tags/instance/views/tags.html b/dashboard/public/modules/tags/instance/views/tags.html index 6de1081..64e922e 100644 --- a/dashboard/public/modules/tags/instance/views/tags.html +++ b/dashboard/public/modules/tags/instance/views/tags.html @@ -25,14 +25,18 @@ <thead> <tr> <th>Tag</th> + <th>Attributes</th> <th>Tools</th> </tr> </thead> <tbody> <tr ng-repeat="trait in traitsList" class="pointer" ng-if="!noTags"> - <td class="col-lg-11" > + <td class="col-lg-5" > {{trait.typeName}} </td> + <td class="col-lg-5 tag-attr" > + {{trait.values}} + </td> <td class="col-lg-1 tagAlign"> <a href="" class="deleteTag confirm-delete" data-toggle="modal" data-target="#myModal" ><i class="fa fa-trash-o " ng-click="detachTag($event, trait.typeName)"></i></a> </td> http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/5558c029/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index 323c5bf..9ef7e29 100644 --- a/release-log.txt +++ b/release-log.txt @@ -9,6 +9,7 @@ ATLAS-54 Rename configs in hive hook (shwethags) ATLAS-3 Mixed Index creation fails with Date types (sumasai via shwethags) ALL CHANGES: +ATLAS-244 UI: Add Tag Tab (darshankumar89 via sumasai) ATLAS-376 UI: Use the Schema API of the backend to populate details for Schema tab (darshankumar89 via sumasai) ATLAS-380 Fix ATLAS source artifact generation (sumasai) ATLAS-354 Kerberized cluster: quick_start.py fails to add sample data (shwethags)
