]> git.apps.os.sepia.ceph.com Git - ceph.git/commit
mgr/dashboard_v2: add initial frontend code
authorTiago Melo <tmelo@suse.com>
Mon, 22 Jan 2018 14:51:58 +0000 (14:51 +0000)
committerRicardo Dias <rdias@suse.com>
Mon, 5 Mar 2018 13:07:00 +0000 (13:07 +0000)
commit1f21d68f1b4af11ff18996ce7b5c4d3fe68933b5
treeaa51c2a264130a13754c7473af2c1db20aca8e42
parentb37a3b60b5cd42e98703cbc6f9e658d6f954e744
mgr/dashboard_v2: add initial frontend code

This contains the angular boilerplate, some initial structure and the navigation component.
Signed-off-by: Tiago Melo <tmelo@suse.com>
46 files changed:
src/pybind/mgr/dashboard_v2/README.rst
src/pybind/mgr/dashboard_v2/frontend/.angular-cli.json [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/.editorconfig [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/.gitignore [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/README.md [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/e2e/app.e2e-spec.ts [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/e2e/app.po.ts [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/e2e/tsconfig.e2e.json [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/karma.conf.js [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/package.json [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/protractor.conf.js [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/app/app-routing.module.ts [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/app/app.component.html [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/app/app.component.scss [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/app/app.component.spec.ts [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/app/app.component.ts [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/app/app.module.ts [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/app/ceph/ceph.module.ts [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/app/core/core-routing.module.ts [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/app/core/core.module.ts [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/app/core/navigation/navigation.module.ts [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/app/core/navigation/navigation/navigation.component.html [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/app/core/navigation/navigation/navigation.component.scss [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/app/core/navigation/navigation/navigation.component.spec.ts [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/app/core/navigation/navigation/navigation.component.ts [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/app/shared/shared.module.ts [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/assets/.gitkeep [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/assets/Ceph_Logo_Standard_RGB_White_120411_fa.png [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/assets/loading.gif [new file with mode: 0755]
src/pybind/mgr/dashboard_v2/frontend/src/assets/logo-mini.png [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/assets/notification-icons.png [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/environments/environment.prod.ts [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/environments/environment.ts [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/favicon.ico [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/index.html [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/main.ts [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/openattic-theme.scss [new file with mode: 0755]
src/pybind/mgr/dashboard_v2/frontend/src/polyfills.ts [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/styles.scss [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/test.ts [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/tsconfig.app.json [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/tsconfig.spec.json [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/src/typings.d.ts [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/tsconfig.json [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/frontend/tslint.json [new file with mode: 0644]
src/pybind/mgr/dashboard_v2/module.py