This is an automated email from the ASF dual-hosted git repository.
kbhatt pushed a change to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/atlas.git.
from f02df9a ATLAS-3622: added authorization for add/remove of labels,
update of namespace attributes
new 72e7e73 ATLAS-3607 : UI: changes to create namespace type definitions
and define namespace attributes
new 1624e3f ATLAS-3593 : UI: Issue with 'Sub-classification' checkbox
filter in Classification Details page
new 7205386 ATLAS-3607 : namespace attributes build fix
The 3 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:
.../js/views/search/SearchResultLayoutView.js | 2 +-
dashboardv3/public/css/scss/common.scss | 1 +
dashboardv3/public/css/scss/form.scss | 9 +
dashboardv3/public/css/scss/glossary.scss | 4 +
dashboardv3/public/css/scss/namespace.scss | 155 ++++++
dashboardv3/public/css/scss/override.scss | 42 ++
dashboardv3/public/css/scss/stats.scss | 7 +
dashboardv3/public/css/scss/style.scss | 1 +
dashboardv3/public/css/scss/table.scss | 55 +-
dashboardv3/public/css/scss/tag.scss | 4 +
dashboardv3/public/css/scss/theme.scss | 61 ++-
dashboardv3/public/js/main.js | 26 +-
dashboardv3/public/js/models/VEntity.js | 12 +
dashboardv3/public/js/router/Router.js | 187 +++----
.../AdministratorLayoutView_tmpl.html | 33 +-
.../PurgeAuditTableLayoutView_tmpl.html | 120 +++++
.../audit/CreateAuditTableLayoutView_tmpl.html | 14 +-
dashboardv3/public/js/templates/common/Modal.html | 2 +-
.../CreateNameSpaceLayoutView_tmpl.html} | 29 +-
.../name_space/EnumCreateUpdateItemView_tmpl.html | 39 ++
.../NameSpaceAttrTableLayoutView_tmpl.html | 47 ++
.../NameSpaceAttributeItemView_tmpl.html | 89 ++++
.../NameSpaceContainerLayoutView_tmpl.html} | 4 +-
.../name_space/NameSpaceDetailLayoutView_tmpl.html | 10 +-
.../name_space/NameSpaceTableLayoutView_tmpl.html | 47 ++
.../search/SearchFilterBrowseLayoutView_tmpl.html | 12 +-
.../search/tree/GlossaryTreeLayoutView_tmpl.html | 16 +-
...tmpl.html => NameSpaceTreeLayoutView_tmpl.html} | 24 +-
dashboardv3/public/js/templates/site/Header.html | 18 +-
dashboardv3/public/js/utils/Helper.js | 80 +++
dashboardv3/public/js/utils/Overrides.js | 90 ++++
dashboardv3/public/js/utils/UrlLinks.js | 22 +-
dashboardv3/public/js/utils/Utils.js | 6 +
.../views/administrator/AdministratorLayoutView.js | 105 ++++
.../administrator/PurgeAuditTableLayoutView.js | 518 ++++++++++++++++++
.../public/js/views/audit/AuditTableLayoutView.js | 40 +-
.../js/views/audit/CreateAuditTableLayoutView.js | 2 +-
.../views/name_space/CreateNameSpaceLayoutView.js | 591 +++++++++++++++++++++
.../views/name_space/EnumCreateUpdateItemView.js | 256 +++++++++
.../name_space/NameSpaceAttrTableLayoutView.js | 232 ++++++++
.../views/name_space/NameSpaceAttributeItemView.js | 266 ++++++++++
.../name_space/NameSpaceContainerLayoutView.js | 117 ++++
.../views/name_space/NameSpaceDetailLayoutView.js | 110 ++++
.../views/name_space/NameSpaceTableLayoutView.js | 419 +++++++++++++++
.../views/search/SearchFilterBrowseLayoutView.js | 19 +-
.../js/views/search/SearchResultLayoutView.js | 2 +-
.../search/tree/CustomFilterTreeLayoutView.js | 14 +-
.../js/views/search/tree/EntityTreeLayoutView.js | 16 +-
.../js/views/search/tree/GlossaryTreeLayoutView.js | 15 +-
.../views/search/tree/NameSpaceTreeLayoutView.js | 384 +++++++++++++
50 files changed, 4108 insertions(+), 266 deletions(-)
create mode 100644 dashboardv3/public/css/scss/namespace.scss
copy dashboardv2/public/js/templates/search/save/SaveSearchView_tmpl.html =>
dashboardv3/public/js/templates/administrator/AdministratorLayoutView_tmpl.html
(51%)
create mode 100644
dashboardv3/public/js/templates/administrator/PurgeAuditTableLayoutView_tmpl.html
copy dashboardv3/public/js/templates/{tag/CreateTagLayoutView_tmpl.html =>
name_space/CreateNameSpaceLayoutView_tmpl.html} (68%)
create mode 100644
dashboardv3/public/js/templates/name_space/EnumCreateUpdateItemView_tmpl.html
create mode 100644
dashboardv3/public/js/templates/name_space/NameSpaceAttrTableLayoutView_tmpl.html
create mode 100644
dashboardv3/public/js/templates/name_space/NameSpaceAttributeItemView_tmpl.html
copy
dashboardv3/public/js/templates/{audit/ReplicationAuditTableLayoutView_tmpl.html
=> name_space/NameSpaceContainerLayoutView_tmpl.html} (84%)
copy dashboardv2/public/js/templates/search/SearchQuery_tmpl.html =>
dashboardv3/public/js/templates/name_space/NameSpaceDetailLayoutView_tmpl.html
(69%)
create mode 100644
dashboardv3/public/js/templates/name_space/NameSpaceTableLayoutView_tmpl.html
copy
dashboardv3/public/js/templates/search/tree/{ClassificationTreeLayoutView_tmpl.html
=> NameSpaceTreeLayoutView_tmpl.html} (63%)
create mode 100644
dashboardv3/public/js/views/administrator/AdministratorLayoutView.js
create mode 100644
dashboardv3/public/js/views/administrator/PurgeAuditTableLayoutView.js
create mode 100644
dashboardv3/public/js/views/name_space/CreateNameSpaceLayoutView.js
create mode 100644
dashboardv3/public/js/views/name_space/EnumCreateUpdateItemView.js
create mode 100644
dashboardv3/public/js/views/name_space/NameSpaceAttrTableLayoutView.js
create mode 100644
dashboardv3/public/js/views/name_space/NameSpaceAttributeItemView.js
create mode 100644
dashboardv3/public/js/views/name_space/NameSpaceContainerLayoutView.js
create mode 100644
dashboardv3/public/js/views/name_space/NameSpaceDetailLayoutView.js
create mode 100644
dashboardv3/public/js/views/name_space/NameSpaceTableLayoutView.js
create mode 100644
dashboardv3/public/js/views/search/tree/NameSpaceTreeLayoutView.js