AMBARI-22352 Ambari 3.0: Implement new design for Admin View. (atkach)
Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/b8f7369b Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/b8f7369b Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/b8f7369b Branch: refs/heads/trunk Commit: b8f7369bf31ee0186db50816206068cf8bc890df Parents: fe02abf Author: Andrii Tkach <[email protected]> Authored: Thu Nov 2 18:14:18 2017 +0200 Committer: Andrii Tkach <[email protected]> Committed: Fri Nov 3 12:39:30 2017 +0200 ---------------------------------------------------------------------- ambari-admin/pom.xml | 2 +- .../app/assets/fonts/Roboto-Regular-webfont.eot | Bin 0 -> 79547 bytes .../app/assets/fonts/Roboto-Regular-webfont.svg | 7606 ++++++++++++++++++ .../app/assets/fonts/Roboto-Regular-webfont.ttf | Bin 0 -> 234464 bytes .../assets/fonts/Roboto-Regular-webfont.woff | Bin 0 -> 105700 bytes .../main/resources/ui/admin-web/app/index.html | 78 +- .../app/scripts/controllers/AppCtrl.js | 177 + .../app/scripts/controllers/NavbarCtrl.js | 106 - .../app/scripts/controllers/SideNavCtrl.js | 68 + .../app/scripts/controllers/mainCtrl.js | 168 +- .../ui/admin-web/app/scripts/i18n.config.js | 11 +- .../ui/admin-web/app/scripts/routes.js | 69 +- .../app/scripts/theme/bootstrap-ambari.js | 269 + .../resources/ui/admin-web/app/styles/main.css | 433 +- .../app/styles/theme/bootstrap-ambari.css | 1518 ++++ .../ui/admin-web/app/styles/top-nav.css | 197 + .../ui/admin-web/app/views/groups/list.html | 4 +- .../ui/admin-web/app/views/leftNavbar.html | 126 - .../resources/ui/admin-web/app/views/main.html | 59 +- .../app/views/remoteClusters/list.html | 3 +- .../ui/admin-web/app/views/sideNav.html | 106 + .../admin-web/app/views/stackVersions/list.html | 5 +- .../ui/admin-web/app/views/users/list.html | 4 +- .../src/main/resources/ui/admin-web/bower.json | 2 +- .../src/main/resources/ui/admin-web/gulpfile.js | 10 +- .../main/resources/ui/admin-web/package.json | 6 +- .../test/unit/controllers/AppCtrl_test.js | 211 + .../test/unit/controllers/mainCtrl_test.js | 215 - .../test/unit/services/Utility_test.js | 3 +- 29 files changed, 10334 insertions(+), 1122 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/b8f7369b/ambari-admin/pom.xml ---------------------------------------------------------------------- diff --git a/ambari-admin/pom.xml b/ambari-admin/pom.xml index cb82e45..281280a 100644 --- a/ambari-admin/pom.xml +++ b/ambari-admin/pom.xml @@ -192,7 +192,7 @@ <exclude>src/main/resources/ui/admin-web/bower_components/**</exclude> <exclude>src/main/resources/ui/admin-web/dist/**</exclude> <exclude>src/main/resources/ui/admin-web/node/**</exclude> - <exclude>src/main/resources/ui/admin-web/app/assets/data/**</exclude> + <exclude>src/main/resources/ui/admin-web/app/assets/**</exclude> <exclude>src/main/resources/ui/admin-web/node_modules/**</exclude> <exclude>src/main/resources/ui/admin-web/app/bower_components/**</exclude> <exclude>src/main/resources/ui/admin-web/test/bower_components/**</exclude> http://git-wip-us.apache.org/repos/asf/ambari/blob/b8f7369b/ambari-admin/src/main/resources/ui/admin-web/app/assets/fonts/Roboto-Regular-webfont.eot ---------------------------------------------------------------------- diff --git a/ambari-admin/src/main/resources/ui/admin-web/app/assets/fonts/Roboto-Regular-webfont.eot b/ambari-admin/src/main/resources/ui/admin-web/app/assets/fonts/Roboto-Regular-webfont.eot new file mode 100644 index 0000000..d4e185d Binary files /dev/null and b/ambari-admin/src/main/resources/ui/admin-web/app/assets/fonts/Roboto-Regular-webfont.eot differ
