├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── dzhops ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── hostlist ├── __init__.py ├── admin.py ├── form.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── index ├── __init__.py ├── admin.py ├── forms.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── manage.py ├── managekeys ├── __init__.py ├── admin.py ├── models.py ├── tests.py ├── urls.py ├── utils.py └── views.py ├── newtest ├── __init__.py ├── admin.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── record ├── __init__.py ├── admin.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── replacedata ├── __init__.py ├── admin.py ├── forms.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── saltstack ├── __init__.py ├── admin.py ├── models.py ├── saltapi.py ├── tests.py ├── urls.py ├── util.py └── views.py ├── scripts ├── data_acquisition.py ├── prc.py └── slapi.py ├── static ├── bootstrap │ └── 3.3.4 │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js ├── img │ ├── 8.png │ ├── button.gif │ ├── dataloading.gif │ ├── favicon.ico │ └── zhaogb.jpg ├── otherjs │ ├── cloud.js │ ├── docs.min.js │ ├── docs.min.js.20150901 │ ├── dzhops.js │ ├── ga.js │ ├── ie-emulation-modes-warning.js │ ├── ie10-viewport-bug-workaround.js │ └── jquery.min.js └── theme │ ├── cover.css │ ├── dashboard.css │ ├── dzhops.css │ └── theme.css └── templates ├── asset_list.html ├── base.html ├── index.html ├── index_upload.html ├── manage_keys.html ├── profile.html ├── record_detail.html ├── record_list.html ├── registration ├── logged_out.html └── login.html ├── repair_history_data.html ├── salt_deploy.html ├── salt_execute.html ├── salt_routine.html ├── salt_update.html └── test.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'Administrator' 2 | -------------------------------------------------------------------------------- /dzhops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dzhops/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/dzhops/settings.py -------------------------------------------------------------------------------- /dzhops/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/dzhops/urls.py -------------------------------------------------------------------------------- /dzhops/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/dzhops/wsgi.py -------------------------------------------------------------------------------- /hostlist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hostlist/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/hostlist/admin.py -------------------------------------------------------------------------------- /hostlist/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/hostlist/form.py -------------------------------------------------------------------------------- /hostlist/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/hostlist/models.py -------------------------------------------------------------------------------- /hostlist/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/hostlist/tests.py -------------------------------------------------------------------------------- /hostlist/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/hostlist/urls.py -------------------------------------------------------------------------------- /hostlist/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/hostlist/views.py -------------------------------------------------------------------------------- /index/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/index/admin.py -------------------------------------------------------------------------------- /index/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/index/forms.py -------------------------------------------------------------------------------- /index/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/index/models.py -------------------------------------------------------------------------------- /index/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/index/tests.py -------------------------------------------------------------------------------- /index/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/index/urls.py -------------------------------------------------------------------------------- /index/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/index/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/manage.py -------------------------------------------------------------------------------- /managekeys/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /managekeys/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/managekeys/admin.py -------------------------------------------------------------------------------- /managekeys/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/managekeys/models.py -------------------------------------------------------------------------------- /managekeys/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/managekeys/tests.py -------------------------------------------------------------------------------- /managekeys/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/managekeys/urls.py -------------------------------------------------------------------------------- /managekeys/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/managekeys/utils.py -------------------------------------------------------------------------------- /managekeys/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/managekeys/views.py -------------------------------------------------------------------------------- /newtest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newtest/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/newtest/admin.py -------------------------------------------------------------------------------- /newtest/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/newtest/models.py -------------------------------------------------------------------------------- /newtest/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/newtest/tests.py -------------------------------------------------------------------------------- /newtest/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/newtest/urls.py -------------------------------------------------------------------------------- /newtest/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/newtest/views.py -------------------------------------------------------------------------------- /record/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /record/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/record/admin.py -------------------------------------------------------------------------------- /record/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/record/models.py -------------------------------------------------------------------------------- /record/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/record/tests.py -------------------------------------------------------------------------------- /record/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/record/urls.py -------------------------------------------------------------------------------- /record/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/record/views.py -------------------------------------------------------------------------------- /replacedata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /replacedata/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/replacedata/admin.py -------------------------------------------------------------------------------- /replacedata/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/replacedata/forms.py -------------------------------------------------------------------------------- /replacedata/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/replacedata/models.py -------------------------------------------------------------------------------- /replacedata/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/replacedata/tests.py -------------------------------------------------------------------------------- /replacedata/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/replacedata/urls.py -------------------------------------------------------------------------------- /replacedata/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/replacedata/views.py -------------------------------------------------------------------------------- /saltstack/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /saltstack/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/saltstack/admin.py -------------------------------------------------------------------------------- /saltstack/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/saltstack/models.py -------------------------------------------------------------------------------- /saltstack/saltapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/saltstack/saltapi.py -------------------------------------------------------------------------------- /saltstack/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/saltstack/tests.py -------------------------------------------------------------------------------- /saltstack/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/saltstack/urls.py -------------------------------------------------------------------------------- /saltstack/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/saltstack/util.py -------------------------------------------------------------------------------- /saltstack/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/saltstack/views.py -------------------------------------------------------------------------------- /scripts/data_acquisition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/scripts/data_acquisition.py -------------------------------------------------------------------------------- /scripts/prc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/scripts/prc.py -------------------------------------------------------------------------------- /scripts/slapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/scripts/slapi.py -------------------------------------------------------------------------------- /static/bootstrap/3.3.4/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/bootstrap/3.3.4/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/bootstrap/3.3.4/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/bootstrap/3.3.4/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/bootstrap/3.3.4/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/bootstrap/3.3.4/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/bootstrap/3.3.4/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/bootstrap/3.3.4/css/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap/3.3.4/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/bootstrap/3.3.4/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/bootstrap/3.3.4/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/bootstrap/3.3.4/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/bootstrap/3.3.4/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/bootstrap/3.3.4/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/bootstrap/3.3.4/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/bootstrap/3.3.4/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/bootstrap/3.3.4/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/bootstrap/3.3.4/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/bootstrap/3.3.4/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/bootstrap/3.3.4/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/bootstrap/3.3.4/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/bootstrap/3.3.4/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/bootstrap/3.3.4/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/bootstrap/3.3.4/js/bootstrap.js -------------------------------------------------------------------------------- /static/bootstrap/3.3.4/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/bootstrap/3.3.4/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/bootstrap/3.3.4/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/bootstrap/3.3.4/js/npm.js -------------------------------------------------------------------------------- /static/img/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/img/8.png -------------------------------------------------------------------------------- /static/img/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/img/button.gif -------------------------------------------------------------------------------- /static/img/dataloading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/img/dataloading.gif -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/zhaogb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/img/zhaogb.jpg -------------------------------------------------------------------------------- /static/otherjs/cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/otherjs/cloud.js -------------------------------------------------------------------------------- /static/otherjs/docs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/otherjs/docs.min.js -------------------------------------------------------------------------------- /static/otherjs/docs.min.js.20150901: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/otherjs/docs.min.js.20150901 -------------------------------------------------------------------------------- /static/otherjs/dzhops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/otherjs/dzhops.js -------------------------------------------------------------------------------- /static/otherjs/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/otherjs/ga.js -------------------------------------------------------------------------------- /static/otherjs/ie-emulation-modes-warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/otherjs/ie-emulation-modes-warning.js -------------------------------------------------------------------------------- /static/otherjs/ie10-viewport-bug-workaround.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/otherjs/ie10-viewport-bug-workaround.js -------------------------------------------------------------------------------- /static/otherjs/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/otherjs/jquery.min.js -------------------------------------------------------------------------------- /static/theme/cover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/theme/cover.css -------------------------------------------------------------------------------- /static/theme/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/theme/dashboard.css -------------------------------------------------------------------------------- /static/theme/dzhops.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/theme/dzhops.css -------------------------------------------------------------------------------- /static/theme/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/static/theme/theme.css -------------------------------------------------------------------------------- /templates/asset_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/templates/asset_list.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/index_upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/templates/index_upload.html -------------------------------------------------------------------------------- /templates/manage_keys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/templates/manage_keys.html -------------------------------------------------------------------------------- /templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/templates/profile.html -------------------------------------------------------------------------------- /templates/record_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/templates/record_detail.html -------------------------------------------------------------------------------- /templates/record_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/templates/record_list.html -------------------------------------------------------------------------------- /templates/registration/logged_out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/templates/registration/logged_out.html -------------------------------------------------------------------------------- /templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/templates/registration/login.html -------------------------------------------------------------------------------- /templates/repair_history_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/templates/repair_history_data.html -------------------------------------------------------------------------------- /templates/salt_deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/templates/salt_deploy.html -------------------------------------------------------------------------------- /templates/salt_execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/templates/salt_execute.html -------------------------------------------------------------------------------- /templates/salt_routine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/templates/salt_routine.html -------------------------------------------------------------------------------- /templates/salt_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/templates/salt_update.html -------------------------------------------------------------------------------- /templates/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hasal/dzhops/HEAD/templates/test.html --------------------------------------------------------------------------------