import pharos dashboard code 09/17809/2
authormaxbr <maxbr@mi.fu-berlin.de>
Fri, 29 Jul 2016 10:43:43 +0000 (12:43 +0200)
committerMax Breitenfeldt <max.breitenfeldt@gmail.com>
Fri, 29 Jul 2016 11:25:20 +0000 (11:25 +0000)
commit35c34c690ae9616d791c39fa218fe1621fa8d8d2
tree6168caaeb4be9144ed6bfde0150850d6559c8b6f
parent7ae1f204de947a3c12804c04f32e20d45eb99eba
import pharos dashboard code

JIRA: RELENG-12

The last commit was missing some JS/CSS dependencies of the site. This
happened because they are in folders that are named 'build' or 'dist'.
This commit adds a bower.json file, that specifies dependencies.
Dependencies can now be installed by running 'bower install' in the
dashboard/static folder.

Change-Id: I054f319c66771f767e97711cb678d79d3bd6bee4
Signed-off-by: maxbr <maxbr@mi.fu-berlin.de>
44 files changed:
tools/pharos-dashboard/.gitignore [new file with mode: 0644]
tools/pharos-dashboard/README.md [new file with mode: 0644]
tools/pharos-dashboard/TODO [new file with mode: 0644]
tools/pharos-dashboard/dashboard/__init__.py [new file with mode: 0644]
tools/pharos-dashboard/dashboard/admin.py [new file with mode: 0644]
tools/pharos-dashboard/dashboard/apps.py [new file with mode: 0644]
tools/pharos-dashboard/dashboard/fixtures/DBdata_resources.json [new file with mode: 0644]
tools/pharos-dashboard/dashboard/fixtures/DBdata_test_bookings.json [new file with mode: 0644]
tools/pharos-dashboard/dashboard/fixtures/DBdata_users.json [new file with mode: 0644]
tools/pharos-dashboard/dashboard/forms/booking_form.py [new file with mode: 0644]
tools/pharos-dashboard/dashboard/jenkins/jenkins_adapter.py [new file with mode: 0644]
tools/pharos-dashboard/dashboard/jenkins/jenkins_util.py [new file with mode: 0644]
tools/pharos-dashboard/dashboard/migrations/0001_initial.py [new file with mode: 0644]
tools/pharos-dashboard/dashboard/migrations/__init__.py [new file with mode: 0644]
tools/pharos-dashboard/dashboard/models.py [new file with mode: 0644]
tools/pharos-dashboard/dashboard/static/bower.json [new file with mode: 0644]
tools/pharos-dashboard/dashboard/static/css/theme.css [new file with mode: 0644]
tools/pharos-dashboard/dashboard/static/js/booking-calendar.js [new file with mode: 0644]
tools/pharos-dashboard/dashboard/static/js/csrf.js [new file with mode: 0644]
tools/pharos-dashboard/dashboard/static/js/dataTables-sort.js [new file with mode: 0644]
tools/pharos-dashboard/dashboard/static/js/datetimepicker-options.js [new file with mode: 0644]
tools/pharos-dashboard/dashboard/static/js/fullcalendar-options.js [new file with mode: 0644]
tools/pharos-dashboard/dashboard/tests.py [new file with mode: 0644]
tools/pharos-dashboard/dashboard/urls.py [new file with mode: 0644]
tools/pharos-dashboard/dashboard/views/booking.py [new file with mode: 0644]
tools/pharos-dashboard/dashboard/views/registration.py [new file with mode: 0644]
tools/pharos-dashboard/dashboard/views/table_views.py [new file with mode: 0644]
tools/pharos-dashboard/deploy.org [new file with mode: 0644]
tools/pharos-dashboard/issues.org [new file with mode: 0644]
tools/pharos-dashboard/manage.py [new file with mode: 0755]
tools/pharos-dashboard/pharos_dashboard/__init__.py [new file with mode: 0644]
tools/pharos-dashboard/pharos_dashboard/settings.py [new file with mode: 0644]
tools/pharos-dashboard/pharos_dashboard/urls.py [new file with mode: 0644]
tools/pharos-dashboard/pharos_dashboard/wsgi.py [new file with mode: 0644]
tools/pharos-dashboard/requirements.txt [new file with mode: 0644]
tools/pharos-dashboard/templates/dashboard/base.html [new file with mode: 0644]
tools/pharos-dashboard/templates/dashboard/booking_calendar.html [new file with mode: 0644]
tools/pharos-dashboard/templates/dashboard/table.html [new file with mode: 0644]
tools/pharos-dashboard/templates/layout/base.html [new file with mode: 0644]
tools/pharos-dashboard/templates/registration/login.html [new file with mode: 0644]
tools/pharos-dashboard/templates/tables/ci_pods.html [new file with mode: 0644]
tools/pharos-dashboard/templates/tables/dev_pods.html [new file with mode: 0644]
tools/pharos-dashboard/templates/tables/jenkins_slaves.html [new file with mode: 0644]
tools/pharos_dashboard [deleted submodule]