├── .gitignore ├── INSTALL.rst ├── LICENSE ├── README.rst ├── backend.cfg ├── backend ├── .coveragerc ├── .flake8 ├── __init__.py ├── api │ ├── __init__.py │ ├── admin │ │ ├── currency.py │ │ ├── graphite.py │ │ ├── news.py │ │ ├── payments.py │ │ ├── report.py │ │ ├── role.py │ │ ├── service.py │ │ ├── tariff.py │ │ └── user.py │ ├── cabinet │ │ └── customer.py │ ├── check_params.py │ ├── utility.py │ └── validator.py ├── bootstrap.py ├── conf.py ├── configs │ ├── backend.yaml │ ├── constants.yaml │ ├── country.yaml │ ├── currency.yaml │ ├── customer.yaml │ ├── database.yaml │ ├── event.yaml │ ├── fitter.yaml │ ├── logging.yaml │ ├── message_template.yaml │ ├── openstack.yaml │ ├── promocodes.yaml │ ├── provider.yaml │ ├── quotes.yaml │ ├── report.yaml │ ├── role.yaml │ ├── schedule.yaml │ ├── service.yaml │ ├── subscription.yaml │ ├── tariff.yaml │ └── user.yaml ├── docs │ ├── .gitignore │ ├── apisummary.py │ ├── autoapi.py │ ├── conf.py │ ├── errorsummary.py │ └── index.rst ├── errors.py ├── fitter │ ├── __init__.py │ ├── aggregation │ │ ├── __init__.py │ │ ├── collector.py │ │ ├── constants.py │ │ ├── helpers.py │ │ ├── timelabel.py │ │ └── transformers.py │ ├── fitter_errors.py │ ├── main.py │ ├── metrics.py │ └── tests │ │ └── data │ │ └── ceilometer_json.py ├── locale │ ├── boss.pot │ ├── en │ │ └── LC_MESSAGES │ │ │ └── boss.po │ └── ru │ │ └── LC_MESSAGES │ │ └── boss.po ├── memdb │ ├── __init__.py │ ├── mutex.py │ ├── quota.py │ ├── report_cache.py │ └── token.py ├── model │ ├── __init__.py │ ├── account │ │ ├── __init__.py │ │ ├── account.py │ │ ├── customer.py │ │ ├── customer_history.py │ │ ├── customer_info.py │ │ ├── deferred.py │ │ ├── message_template.py │ │ ├── news.py │ │ ├── option.py │ │ ├── role.py │ │ ├── scheduled_task.py │ │ ├── service.py │ │ ├── tariff.py │ │ ├── tenant.py │ │ ├── time_state.py │ │ └── user.py │ ├── db_user.py │ ├── fitter │ │ ├── __init__.py │ │ └── service_usage.py │ ├── migrate │ │ ├── README │ │ ├── __init__.py │ │ ├── alembic.ini │ │ ├── env.py │ │ ├── migrate.py │ │ ├── script.py.mako │ │ └── versions │ │ │ ├── 114df3b64e8_.py │ │ │ ├── 14ed44ca815_.py │ │ │ ├── 161a1f61b9f_.py │ │ │ ├── 1751dd2a255_.py │ │ │ ├── 1802db98d8a_.py │ │ │ ├── 18632a2d5fc_.py │ │ │ ├── 1d3806228da_.py │ │ │ ├── 1d6f96d1df_.py │ │ │ ├── 1e05d3e1d36_.py │ │ │ ├── 1e1202c6298_.py │ │ │ ├── 21cc8f612d2_.py │ │ │ ├── 22a50be631f_.py │ │ │ ├── 236ad45a9e4_.py │ │ │ ├── 23d8efcd529_.py │ │ │ ├── 25f9a557214_.py │ │ │ ├── 2b500992762_.py │ │ │ ├── 2b5cc9d88fa_.py │ │ │ ├── 2baf554c632_.py │ │ │ ├── 2c0875bb8b6_.py │ │ │ ├── 2c7b4a4d337_.py │ │ │ ├── 2f658fe6e93_.py │ │ │ ├── 3096003c162_.py │ │ │ ├── 31e2d9544da_.py │ │ │ ├── 32879c33fd7_.py │ │ │ ├── 32f11aca04d_.py │ │ │ ├── 330979ad5da_.py │ │ │ ├── 36759675584_.py │ │ │ ├── 37b9ec06ce4_.py │ │ │ ├── 388ee1949b1_.py │ │ │ ├── 3990fca9b74_.py │ │ │ ├── 39fc43a77e8_.py │ │ │ ├── 3b666d2ce67_.py │ │ │ ├── 3b8cf0c138b_.py │ │ │ ├── 3cc3881f524_.py │ │ │ ├── 3e19c50e864_.py │ │ │ ├── 3fbc589c36d_.py │ │ │ ├── 41b6fb3ddef_.py │ │ │ ├── 41f0af997d7_.py │ │ │ ├── 421f9c2bc2d_.py │ │ │ ├── 424ed97e693_.py │ │ │ ├── 42c70f4f379_.py │ │ │ ├── 44d3aa89e8c_.py │ │ │ ├── 46597280a7c_.py │ │ │ ├── 47df965c128_.py │ │ │ ├── 4aa3f116140_.py │ │ │ ├── 4ac0506251e_.py │ │ │ ├── 4ac191f72d8_.py │ │ │ ├── 4c1fcc9a81d_.py │ │ │ ├── 4c81f6e13b5_.py │ │ │ ├── 4cfbc4e6089_.py │ │ │ ├── 4dbaa3104f4_.py │ │ │ ├── 514c4c54871_.py │ │ │ ├── 524a95b3670_.py │ │ │ ├── 53244090158_.py │ │ │ ├── 58bbe565915_.py │ │ │ ├── 5943242c5f9_.py │ │ │ ├── 598eddeda2a_.py │ │ │ ├── 5aa5377a1b3_.py │ │ │ ├── 5cb333dc30_.py │ │ │ ├── 5ef06a3e19_.py │ │ │ ├── 5ff6324d4f_.py │ │ │ ├── 917db00580_.py │ │ │ ├── __init__.py │ │ │ ├── b632cd3456_.py │ │ │ ├── d01849100f_.py │ │ │ └── ec00fe423c_.py │ └── sa.py ├── os_interfaces │ ├── __init__.py │ ├── helpers.py │ ├── horizon_wrapper.py │ └── openstack_wrapper.py ├── plugins │ ├── __init__.py │ └── request_log.py ├── report │ ├── __init__.py │ ├── csv_render.py │ ├── detailed.py │ ├── formatter.py │ ├── json_render.py │ ├── pdf_render.py │ ├── receipts.py │ ├── render.py │ ├── segments.py │ ├── simple.py │ ├── templates │ │ ├── acceptance_act.rml │ │ ├── detailed.rml │ │ ├── invoice.rml │ │ ├── simple.rml │ │ ├── timesbd.ttf │ │ └── timesu.ttf │ └── usage.py ├── service │ ├── __init__.py │ └── payments.py ├── setup.py ├── statistics │ └── __init__.py ├── task │ ├── __init__.py │ ├── customer.py │ ├── mail.py │ ├── main.py │ ├── notifications.py │ ├── openstack.py │ ├── payments.py │ └── sentinel.py ├── tests │ ├── __init__.py │ ├── base.py │ ├── bootstrap.py │ ├── fixture │ │ └── base.yaml │ ├── test_croniter.py │ ├── test_currency.py │ ├── test_customer.py │ ├── test_fitter │ │ ├── __init__.py │ │ ├── openstack_services.py │ │ ├── test_collector.py │ │ ├── test_database_module.py │ │ ├── test_models.py │ │ ├── test_timelabel.py │ │ └── test_transformers.py │ ├── test_graphite.py │ ├── test_i18n.py │ ├── test_mutext.py │ ├── test_news.py │ ├── test_os_interfaces │ │ ├── __init__.py │ │ └── test_openstack_wrapper.py │ ├── test_payments.py │ ├── test_report.py │ ├── test_service.py │ ├── test_stat.py │ ├── test_tariff.py │ ├── test_user.py │ └── test_utility.py ├── utils │ ├── __init__.py │ ├── bootstrap.py │ ├── check_config.py │ ├── coverage_report.py │ ├── croniter.py │ ├── db_clean.py │ ├── flake8_plugin.py │ ├── i18n.py │ ├── mail.py │ ├── management.py │ ├── mapping.cfg │ ├── money.py │ ├── openstack_clean.py │ └── periodic_task.py └── view.py ├── backend_and_tests.cfg ├── backend_frontend.cfg ├── backend_relative.cfg ├── base.cfg ├── bootstrap-buildout.py ├── boss_client.cfg ├── boss_client ├── boss_client │ ├── __init__.py │ ├── adminbackend.py │ ├── auth.py │ └── cabinetbackend.py └── setup.py ├── changelog.rst ├── configs ├── bootstrap.yaml ├── light_tests_bootstrap.yaml ├── logrotate.conf ├── stage │ ├── boss.sample.yaml │ ├── dev-coverage-local.yaml │ └── dev_local.yaml └── uwsgi.ini ├── deploy ├── .gitignore ├── ansible │ ├── files │ │ └── redis_test.sh │ ├── playbooks │ │ ├── credentials │ │ │ └── dev │ │ │ │ └── mysql │ │ │ │ └── root │ │ ├── dev.yaml │ │ ├── dev_infra.yaml │ │ ├── dev_infra_carbon.yaml │ │ ├── dev_infra_mysql.yaml │ │ ├── dev_infra_redis.yaml │ │ ├── docker.yaml │ │ ├── docker_dev.yaml │ │ ├── files │ │ │ ├── redis-sentinel │ │ │ └── redis-sentinel.conf │ │ ├── mariadb.yaml │ │ ├── redis.yaml │ │ └── zabbix_install.yaml │ └── templates │ │ ├── ext_checks_zabbix.j2 │ │ └── zabbix_agent.j2 ├── debian │ ├── backend │ │ ├── DEBIAN │ │ │ ├── conffiles │ │ │ ├── inid.d │ │ │ └── rules │ │ ├── build.sh │ │ ├── changelog │ │ ├── control │ │ └── logrotate │ ├── frontend_admin │ │ ├── DEBIAN │ │ │ └── rules │ │ ├── build.sh │ │ ├── changelog │ │ └── control │ └── frontend_cabinet │ │ ├── DEBIAN │ │ └── rules │ │ ├── build.sh │ │ ├── changelog │ │ └── control └── zabbix │ └── zabbix_billing_template.xml ├── docs ├── Makefile ├── make.bat └── source │ ├── BillingSystemAdminGuide │ ├── BillingSystemAdminGuide.rst │ └── images │ │ ├── addservice.png │ │ ├── archive.png │ │ ├── archiveuser.png │ │ ├── balance.png │ │ ├── button.png │ │ ├── changeplan.png │ │ ├── console.png │ │ ├── contacts.png │ │ ├── creataevm.png │ │ ├── createnews.png │ │ ├── createplan.png │ │ ├── createplan2.png │ │ ├── createuser.png │ │ ├── editnews.png │ │ ├── edituser.png │ │ ├── forgot.png │ │ ├── history.png │ │ ├── language.png │ │ ├── newcustom.png │ │ ├── newservice.png │ │ ├── notifications.png │ │ ├── param.png │ │ ├── plancustomers.png │ │ ├── planhistory.png │ │ ├── plans.png │ │ ├── quota.png │ │ ├── report.png │ │ ├── search.png │ │ ├── signin.png │ │ ├── signout.png │ │ ├── subscription.png │ │ ├── transactions.png │ │ ├── vmparam.png │ │ └── vmplans.png │ ├── InstallationGuide │ └── InstallationGuide.rst │ ├── SkylineUserGuide │ ├── SkylineUserGuide.rst │ └── images │ │ ├── assigntoserver.png │ │ ├── backup.png │ │ ├── createdisk.png │ │ ├── createimage.png │ │ ├── createserver.png │ │ ├── deleteserver.png │ │ ├── extenddisk.png │ │ ├── main.png │ │ ├── password.png │ │ ├── removedisk.png │ │ ├── removeimage.png │ │ ├── serversettings.png │ │ ├── settings1.png │ │ ├── settings2.png │ │ ├── settings3.png │ │ ├── stopserver.png │ │ └── uploadimage.png │ ├── UserPersonalAccountUserGuide │ ├── UserPersonalAccount.rst │ └── images │ │ ├── addfunds.png │ │ ├── autopayment.png │ │ ├── becomecustomer.png │ │ ├── changepass.png │ │ ├── entity.png │ │ ├── language.png │ │ ├── locale.png │ │ ├── main.png │ │ ├── news.png │ │ ├── notificationsettings.png │ │ ├── openstack.png │ │ ├── passrecovery.png │ │ ├── privateperson.png │ │ ├── registration.png │ │ ├── replenishment.png │ │ ├── services.png │ │ ├── services2.png │ │ ├── settings.png │ │ ├── settingsform.png │ │ ├── sign.png │ │ ├── skyline.png │ │ ├── statistics.png │ │ ├── statistics2.png │ │ ├── support.png │ │ └── transactions.png │ ├── conf.py │ └── index.rst ├── frontend.cfg ├── frontend ├── .editorconfig ├── .gitignore ├── admin │ ├── .bowerrc │ ├── .editorconfig │ ├── .eslintrc │ ├── .gitignore │ ├── README.md │ ├── assets │ │ ├── ASD_Logo.svg │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── LICENSE.txt │ │ │ ├── OpenSans-Bold.ttf │ │ │ ├── OpenSans-Bold.woff │ │ │ ├── OpenSans-ExtraBold.ttf │ │ │ ├── OpenSans-ExtraBold.woff │ │ │ ├── OpenSans-Italic.ttf │ │ │ ├── OpenSans-Light.ttf │ │ │ ├── OpenSans-Light.woff │ │ │ ├── OpenSans-Regular.ttf │ │ │ ├── OpenSans-Regular.woff │ │ │ ├── OpenSans-Semibold.ttf │ │ │ └── OpenSans-Semibold.woff │ │ ├── icons │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ └── icomoon.woff │ │ ├── logo-beta.png │ │ ├── logo-small.png │ │ ├── logo.png │ │ ├── nothing-selected-placeholder.png │ │ └── translations │ │ │ ├── en.i18n.json │ │ │ └── ru.i18n.json │ ├── backend.config.js │ ├── backend_proxy.js │ ├── bower.json │ ├── config.js │ ├── gulpfile.js │ ├── karma.conf.js │ ├── less │ │ ├── authorization.less │ │ ├── btn-scroll.less │ │ ├── custom-filters.less │ │ ├── filters.less │ │ ├── fonts.less │ │ ├── formfields.less │ │ ├── grafana.less │ │ ├── layout.less │ │ ├── lists.less │ │ ├── loading-bar.less │ │ ├── main.less │ │ ├── mainview-layout.less │ │ ├── pagination.less │ │ ├── popup.less │ │ ├── promocodes.less │ │ ├── restore-password.less │ │ ├── scrollbar.less │ │ ├── search.less │ │ ├── system-reports.less │ │ ├── tables.less │ │ ├── tabs.less │ │ └── variables.less │ ├── lib │ │ ├── bsFormSaver │ │ │ ├── bsFormSaver.js │ │ │ ├── bsFormSaver.spec.js │ │ │ └── bsFormSaver.tpl.html │ │ ├── bsInfiniteScroll │ │ │ ├── bsInfiniteScroll.js │ │ │ └── bsInfiniteScroll.tpl.html │ │ ├── bsTableFilter │ │ │ ├── bsTableFilter.js │ │ │ ├── bsTableFilter.spec.js │ │ │ ├── bsTableFilter.tpl.html │ │ │ ├── bsTableFilterTags.js │ │ │ └── bsTableFilterTags.tpl.html │ │ ├── bsTablePagination │ │ │ ├── bsTablePagination.js │ │ │ ├── bsTablePagination.spec.js │ │ │ └── bsTablePagination.tpl.html │ │ ├── categoriesWithServicesService │ │ │ ├── categoriesWithServicesService.js │ │ │ └── categoriesWithServicesService.spec.js │ │ ├── currencyService │ │ │ └── currencyService.js │ │ ├── currentUserService │ │ │ └── currentUserService.js │ │ ├── customerService │ │ │ ├── customerService.js │ │ │ └── customerService.spec.js │ │ ├── less │ │ │ ├── common.less │ │ │ └── elements.less │ │ ├── newsService │ │ │ └── newsService.js │ │ ├── serviceService │ │ │ ├── serviceService.js │ │ │ └── serviceService.spec.js │ │ ├── systemReportsService │ │ │ └── systemReportsService.js │ │ ├── tariffService │ │ │ ├── tariffService.js │ │ │ └── tariffService.spec.js │ │ ├── userService │ │ │ └── userService.js │ │ └── utilityService │ │ │ └── utilityService.js │ ├── package.json │ ├── src │ │ ├── app.js │ │ ├── config.js │ │ ├── confirmation │ │ │ ├── confirmation.js │ │ │ └── confirmation.tpl.html │ │ ├── const │ │ │ ├── const.js │ │ │ └── defaultLocalConfig.js │ │ ├── customerReport │ │ │ ├── customerReport.js │ │ │ └── customerReport.tpl.html │ │ ├── customers │ │ │ ├── customer.js │ │ │ ├── customers.tpl.html │ │ │ ├── details │ │ │ │ ├── CustomerActionsCtrl.js │ │ │ │ ├── customer.actions.js │ │ │ │ ├── customer.actions.tpl.html │ │ │ │ ├── customer.bill.js │ │ │ │ ├── customer.bill.tpl.html │ │ │ │ ├── customer.edit.entity.partial.tpl.html │ │ │ │ ├── customer.edit.private.partial.tpl.html │ │ │ │ ├── customer.events.js │ │ │ │ ├── customer.events.tpl.html │ │ │ │ ├── customer.history.js │ │ │ │ ├── customer.history.tpl.html │ │ │ │ ├── customer.info.js │ │ │ │ ├── customer.info.tpl.html │ │ │ │ ├── customer.invoice.js │ │ │ │ ├── customer.invoice.tpl.html │ │ │ │ ├── customer.quota.js │ │ │ │ ├── customer.quota.tpl.html │ │ │ │ ├── customer.report.js │ │ │ │ ├── customer.report.tpl.html │ │ │ │ ├── customer.tariff.js │ │ │ │ ├── customer.tariff.tpl.html │ │ │ │ ├── customer.tariff_history.js │ │ │ │ ├── customer.tariff_history.tpl.html │ │ │ │ └── dialog.block.partial.tpl.html │ │ │ └── new │ │ │ │ ├── customer.new.1.entity.tpl.html │ │ │ │ ├── customer.new.1.private.tpl.html │ │ │ │ ├── customer.new.1.tpl.html │ │ │ │ ├── customer.new.2.entity.tpl.html │ │ │ │ ├── customer.new.2.private.tpl.html │ │ │ │ ├── customer.new.2.tpl.html │ │ │ │ ├── customer.new.3.tpl.html │ │ │ │ ├── customer.new.js │ │ │ │ └── customer.new.tpl.html │ │ ├── details │ │ │ ├── details.empty.tpl.html │ │ │ ├── details.js │ │ │ ├── details.no-scroll.tpl.html │ │ │ └── details.tpl.html │ │ ├── flavors │ │ │ ├── FlavorsCtrl.js │ │ │ ├── FlavorsDetailsCtrl.js │ │ │ ├── flavors.js │ │ │ ├── flavors.tpl.html │ │ │ ├── new │ │ │ │ ├── FlavorsNewCtrl.js │ │ │ │ ├── flavors.new.js │ │ │ │ └── flavors.new.tpl.html │ │ │ ├── params │ │ │ │ ├── FlavorsDetailsParamsCtrl.js │ │ │ │ ├── flavors.details.params.tpl.html │ │ │ │ └── flavors.params.js │ │ │ └── tariffs │ │ │ │ ├── FlavorsDetailsTariffsCtrl.js │ │ │ │ ├── flavors.details.tariffs.tpl.html │ │ │ │ └── flavors.tariffs.js │ │ ├── grafana │ │ │ ├── grafana.boss.tpl.html │ │ │ ├── grafana.js │ │ │ ├── grafana.openstack.tpl.html │ │ │ └── grafana.tpl.html │ │ ├── header │ │ │ ├── header-col-1.tpl.html │ │ │ ├── header.js │ │ │ └── header.tpl.html │ │ ├── index.html │ │ ├── layouts │ │ │ ├── LayoutCtrl.js │ │ │ ├── col-1.tpl.html │ │ │ └── col-2.tpl.html │ │ ├── news │ │ │ ├── NewsCtrl.js │ │ │ ├── details │ │ │ │ ├── NewsDetailsCtrl.js │ │ │ │ ├── news.details.js │ │ │ │ └── news.details.tpl.html │ │ │ ├── new │ │ │ │ ├── NewsNewCtrl.js │ │ │ │ ├── news.new.js │ │ │ │ └── news.new.tpl.html │ │ │ ├── news.js │ │ │ └── news.tpl.html │ │ ├── openstackUsage │ │ │ ├── openstackUsage.js │ │ │ └── openstackUsage.tpl.html │ │ ├── osLogin │ │ │ ├── osLogin.js │ │ │ └── osLogin.tpl.html │ │ ├── restorePassword │ │ │ ├── restorePassword.js │ │ │ ├── restorePassword.tpl.html │ │ │ └── restorePasswordComplete.tpl.html │ │ ├── run.js │ │ ├── services │ │ │ ├── details │ │ │ │ ├── services.params.js │ │ │ │ ├── services.params.tpl.html │ │ │ │ ├── services.tariffs.js │ │ │ │ └── services.tariffs.tpl.html │ │ │ ├── new │ │ │ │ ├── services.new.js │ │ │ │ └── services.new.tpl.html │ │ │ ├── services.js │ │ │ └── services.tpl.html │ │ ├── set-password │ │ │ ├── set-password.js │ │ │ └── set-password.tpl.html │ │ ├── sidemenu │ │ │ ├── sidemenu.js │ │ │ └── sidemenu.tpl.html │ │ ├── signin │ │ │ ├── SigninCtrl.js │ │ │ ├── signin.js │ │ │ └── signin.tpl.html │ │ ├── signout │ │ │ └── signout.js │ │ ├── states.js │ │ ├── system │ │ │ ├── SystemCtrl.js │ │ │ ├── system.js │ │ │ └── system.tpl.html │ │ ├── tariffs │ │ │ ├── details │ │ │ │ ├── categories.edit.tpl.html │ │ │ │ ├── tariffs.clients.js │ │ │ │ ├── tariffs.clients.tpl.html │ │ │ │ ├── tariffs.history.js │ │ │ │ ├── tariffs.history.tpl.html │ │ │ │ ├── tariffs.info.js │ │ │ │ ├── tariffs.info.tpl.html │ │ │ │ ├── tariffs.services-header.partial.tpl.html │ │ │ │ ├── tariffs.services.js │ │ │ │ ├── tariffs.services.readOnly.tpl.html │ │ │ │ ├── tariffs.services.tpl.html │ │ │ │ ├── tariffs.users.js │ │ │ │ └── tariffs.users.tpl.html │ │ │ ├── new │ │ │ │ ├── tariff.new.services.js │ │ │ │ ├── tariffs.new.1.js │ │ │ │ ├── tariffs.new.1.tpl.html │ │ │ │ ├── tariffs.new.js │ │ │ │ ├── tariffs.new.services-header.partial.tpl.html │ │ │ │ └── tariffs.new.services.tpl.html │ │ │ ├── tariffs.js │ │ │ └── tariffs.tpl.html │ │ ├── users │ │ │ ├── UsersCtrl.js │ │ │ ├── details │ │ │ │ ├── UsersDetailsCtrl.js │ │ │ │ ├── users.details.js │ │ │ │ └── users.details.tpl.html │ │ │ ├── new │ │ │ │ ├── UsersNewCtrl.js │ │ │ │ ├── users.new.js │ │ │ │ └── users.new.tpl.html │ │ │ ├── roles.partial.tpl.html │ │ │ ├── users.js │ │ │ └── users.tpl.html │ │ ├── vendor.js │ │ └── views │ │ │ └── tags-input.partial.tpl.html │ └── webpack.config.js ├── grafana-1.9.1 │ ├── .gitignore │ ├── .jscs.json │ ├── .jsfmtrc │ ├── .jshintrc │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Gruntfile.js │ ├── LICENSE.md │ ├── NOTICE.md │ ├── README.md │ ├── latest.json │ ├── package.json │ ├── sample │ │ ├── apache_ldap.conf │ │ ├── lighttpd_basic.conf │ │ ├── nginx.conf │ │ ├── server.js │ │ └── start_dashboard_html.html │ ├── src │ │ ├── app │ │ │ ├── app.js │ │ │ ├── components │ │ │ │ ├── extend-jquery.js │ │ │ │ ├── kbn.js │ │ │ │ ├── lodash.extended.js │ │ │ │ ├── panelmeta.js │ │ │ │ ├── partials.js │ │ │ │ ├── require.config.js │ │ │ │ ├── settings.js │ │ │ │ ├── store.js │ │ │ │ └── timeSeries.js │ │ │ ├── controllers │ │ │ │ ├── all.js │ │ │ │ ├── annotationsEditorCtrl.js │ │ │ │ ├── console-ctrl.js │ │ │ │ ├── dashboardCtrl.js │ │ │ │ ├── dashboardNavCtrl.js │ │ │ │ ├── grafanaCtrl.js │ │ │ │ ├── graphiteImport.js │ │ │ │ ├── graphiteTarget.js │ │ │ │ ├── influxTargetCtrl.js │ │ │ │ ├── inspectCtrl.js │ │ │ │ ├── jsonEditorCtrl.js │ │ │ │ ├── metricKeys.js │ │ │ │ ├── opentsdbTargetCtrl.js │ │ │ │ ├── playlistCtrl.js │ │ │ │ ├── pulldown.js │ │ │ │ ├── row.js │ │ │ │ ├── search.js │ │ │ │ ├── sharePanelCtrl.js │ │ │ │ ├── submenuCtrl.js │ │ │ │ └── templateEditorCtrl.js │ │ │ ├── dashboards │ │ │ │ ├── boss.json │ │ │ │ ├── default.json │ │ │ │ ├── empty.json │ │ │ │ ├── openstack.json │ │ │ │ ├── scripted.js │ │ │ │ ├── scripted_async.js │ │ │ │ ├── scripted_gen_and_save.js │ │ │ │ ├── scripted_templated.js │ │ │ │ └── template_vars.json │ │ │ ├── directives │ │ │ │ ├── addGraphiteFunc.js │ │ │ │ ├── all.js │ │ │ │ ├── arrayJoin.js │ │ │ │ ├── bodyClass.js │ │ │ │ ├── bootstrap-tagsinput.js │ │ │ │ ├── configModal.js │ │ │ │ ├── confirmClick.js │ │ │ │ ├── dashEditLink.js │ │ │ │ ├── dashUpload.js │ │ │ │ ├── dropdown.typeahead.js │ │ │ │ ├── grafanaPanel.js │ │ │ │ ├── grafanaSimplePanel.js │ │ │ │ ├── grafanaVersionCheck.js │ │ │ │ ├── graphiteFuncEditor.js │ │ │ │ ├── graphiteSegment.js │ │ │ │ ├── influxdbFuncEditor.js │ │ │ │ ├── ngBlur.js │ │ │ │ ├── ngModelOnBlur.js │ │ │ │ ├── panelMenu.js │ │ │ │ ├── spectrumPicker.js │ │ │ │ ├── templateParamSelector.js │ │ │ │ └── tip.js │ │ │ ├── features │ │ │ │ ├── all.js │ │ │ │ └── panellinkeditor │ │ │ │ │ ├── linkSrv.js │ │ │ │ │ ├── module.html │ │ │ │ │ └── module.js │ │ │ ├── filters │ │ │ │ └── all.js │ │ │ ├── panels │ │ │ │ ├── graph │ │ │ │ │ ├── axisEditor.html │ │ │ │ │ ├── graph.js │ │ │ │ │ ├── graph.tooltip.js │ │ │ │ │ ├── legend.js │ │ │ │ │ ├── legend.popover.html │ │ │ │ │ ├── module.html │ │ │ │ │ ├── module.js │ │ │ │ │ ├── seriesOverridesCtrl.js │ │ │ │ │ └── styleEditor.html │ │ │ │ ├── singlestat │ │ │ │ │ ├── editor.html │ │ │ │ │ ├── module.html │ │ │ │ │ ├── module.js │ │ │ │ │ └── singleStatPanel.js │ │ │ │ ├── text │ │ │ │ │ ├── editor.html │ │ │ │ │ ├── lib │ │ │ │ │ │ └── showdown.js │ │ │ │ │ ├── module.html │ │ │ │ │ └── module.js │ │ │ │ └── timepicker │ │ │ │ │ ├── custom.html │ │ │ │ │ ├── editor.html │ │ │ │ │ ├── module.html │ │ │ │ │ ├── module.js │ │ │ │ │ └── refreshctrl.html │ │ │ ├── partials │ │ │ │ ├── annotations_editor.html │ │ │ │ ├── confirm_modal.html │ │ │ │ ├── console.html │ │ │ │ ├── dashLoaderShare.html │ │ │ │ ├── dashboard.html │ │ │ │ ├── dashboard_topnav.html │ │ │ │ ├── dasheditor.html │ │ │ │ ├── edit_json.html │ │ │ │ ├── elasticsearch │ │ │ │ │ └── annotation_editor.html │ │ │ │ ├── graphite │ │ │ │ │ ├── annotation_editor.html │ │ │ │ │ └── editor.html │ │ │ │ ├── help_modal.html │ │ │ │ ├── import.html │ │ │ │ ├── influxdb │ │ │ │ │ ├── annotation_editor.html │ │ │ │ │ └── editor.html │ │ │ │ ├── inspector.html │ │ │ │ ├── loadmetrics.html │ │ │ │ ├── metrics.html │ │ │ │ ├── modal.html │ │ │ │ ├── opentsdb │ │ │ │ │ └── editor.html │ │ │ │ ├── paneleditor.html │ │ │ │ ├── panelgeneral.html │ │ │ │ ├── playlist.html │ │ │ │ ├── roweditor.html │ │ │ │ ├── search.html │ │ │ │ ├── share-panel.html │ │ │ │ ├── submenu.html │ │ │ │ ├── templating_editor.html │ │ │ │ └── unsaved-changes.html │ │ │ ├── routes │ │ │ │ ├── all.js │ │ │ │ ├── dashboard-default.js │ │ │ │ ├── dashboard-from-db.js │ │ │ │ ├── dashboard-from-file.js │ │ │ │ └── dashboard-from-script.js │ │ │ └── services │ │ │ │ ├── alertSrv.js │ │ │ │ ├── all.js │ │ │ │ ├── annotationsSrv.js │ │ │ │ ├── dashboard │ │ │ │ ├── dashboardKeyBindings.js │ │ │ │ ├── dashboardSrv.js │ │ │ │ └── dashboardViewStateSrv.js │ │ │ │ ├── datasourceSrv.js │ │ │ │ ├── elasticsearch │ │ │ │ └── es-datasource.js │ │ │ │ ├── graphite │ │ │ │ ├── gfunc.js │ │ │ │ ├── graphiteDatasource.js │ │ │ │ ├── lexer.js │ │ │ │ └── parser.js │ │ │ │ ├── influxdb │ │ │ │ ├── influxQueryBuilder.js │ │ │ │ ├── influxSeries.js │ │ │ │ └── influxdbDatasource.js │ │ │ │ ├── keyboardManager.js │ │ │ │ ├── opentsdb │ │ │ │ └── opentsdbDatasource.js │ │ │ │ ├── panelSrv.js │ │ │ │ ├── playlistSrv.js │ │ │ │ ├── popoverSrv.js │ │ │ │ ├── templateSrv.js │ │ │ │ ├── templateValuesSrv.js │ │ │ │ ├── timeSrv.js │ │ │ │ ├── timer.js │ │ │ │ ├── unsavedChangesSrv.js │ │ │ │ └── utilSrv.js │ │ ├── config.js │ │ ├── config.sample.js │ │ ├── css │ │ │ └── less │ │ │ │ ├── bootstrap-tagsinput.less │ │ │ │ ├── bootstrap.dark.less │ │ │ │ ├── bootstrap.light.less │ │ │ │ ├── bootswatch.dark.less │ │ │ │ ├── bootswatch.light.less │ │ │ │ ├── console.less │ │ │ │ ├── forms.less │ │ │ │ ├── grafana-responsive.less │ │ │ │ ├── grafana.less │ │ │ │ ├── graph.less │ │ │ │ ├── overrides.less │ │ │ │ ├── panel.less │ │ │ │ ├── search.less │ │ │ │ ├── singlestat.less │ │ │ │ ├── submenu.less │ │ │ │ ├── tables_lists.less │ │ │ │ ├── variables.dark.less │ │ │ │ └── variables.light.less │ │ ├── font │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── img │ │ │ ├── check_radio_sheet.png │ │ │ ├── checkbox.png │ │ │ ├── checkbox_white.png │ │ │ ├── cubes.png │ │ │ ├── fav16.png │ │ │ ├── fav32.png │ │ │ ├── fav_dark_16.png │ │ │ ├── fav_dark_32.png │ │ │ ├── glyphicons-halflings-white.png │ │ │ ├── glyphicons-halflings.png │ │ │ ├── kibana.png │ │ │ ├── light.png │ │ │ ├── load.gif │ │ │ ├── load_big.gif │ │ │ ├── logo_transparent_200x.png │ │ │ └── small.png │ │ ├── index.html │ │ ├── plugins │ │ │ ├── custom.panel.example │ │ │ │ ├── editor.html │ │ │ │ ├── module.html │ │ │ │ └── module.js │ │ │ └── datasource.example.js │ │ ├── test │ │ │ ├── .jshintrc │ │ │ ├── karma.conf.js │ │ │ ├── mocks │ │ │ │ └── dashboard-mock.js │ │ │ ├── specs │ │ │ │ ├── dashboardSrv-specs.js │ │ │ │ ├── dashboardViewStateSrv-specs.js │ │ │ │ ├── gfunc-specs.js │ │ │ │ ├── graph-ctrl-specs.js │ │ │ │ ├── graph-specs.js │ │ │ │ ├── graph-tooltip-specs.js │ │ │ │ ├── graphiteDatasource-specs.js │ │ │ │ ├── graphiteTargetCtrl-specs.js │ │ │ │ ├── helpers.js │ │ │ │ ├── influxQueryBuilder-specs.js │ │ │ │ ├── influxSeries-specs.js │ │ │ │ ├── influxdb-datasource-specs.js │ │ │ │ ├── kbn-format-specs.js │ │ │ │ ├── lexer-specs.js │ │ │ │ ├── parser-specs.js │ │ │ │ ├── row-ctrl-specs.js │ │ │ │ ├── seriesOverridesCtrl-specs.js │ │ │ │ ├── sharePanelCtrl-specs.js │ │ │ │ ├── templateSrv-specs.js │ │ │ │ ├── templateValuesSrv-specs.js │ │ │ │ ├── timeSeries-specs.js │ │ │ │ └── timeSrv-specs.js │ │ │ ├── test-main.js │ │ │ └── tests.html │ │ └── vendor │ │ │ ├── angular │ │ │ ├── angular-dragdrop.js │ │ │ ├── angular-mocks.js │ │ │ ├── angular-route.js │ │ │ ├── angular-sanitize.js │ │ │ ├── angular-strap.js │ │ │ ├── angular.js │ │ │ ├── bindonce.js │ │ │ ├── datepicker.js │ │ │ └── timepicker.js │ │ │ ├── bootstrap │ │ │ ├── bootstrap.js │ │ │ └── less │ │ │ │ ├── accordion.less │ │ │ │ ├── alerts.less │ │ │ │ ├── bootstrap.less │ │ │ │ ├── breadcrumbs.less │ │ │ │ ├── button-groups.less │ │ │ │ ├── buttons.less │ │ │ │ ├── carousel.less │ │ │ │ ├── close.less │ │ │ │ ├── code.less │ │ │ │ ├── component-animations.less │ │ │ │ ├── dropdowns.less │ │ │ │ ├── forms.less │ │ │ │ ├── grid.less │ │ │ │ ├── hero-unit.less │ │ │ │ ├── labels-badges.less │ │ │ │ ├── layouts.less │ │ │ │ ├── media.less │ │ │ │ ├── mixins.less │ │ │ │ ├── modals.less │ │ │ │ ├── navbar.less │ │ │ │ ├── navs.less │ │ │ │ ├── pager.less │ │ │ │ ├── pagination.less │ │ │ │ ├── popovers.less │ │ │ │ ├── progress-bars.less │ │ │ │ ├── reset.less │ │ │ │ ├── responsive-1200px-min.less │ │ │ │ ├── responsive-767px-max.less │ │ │ │ ├── responsive-768px-979px.less │ │ │ │ ├── responsive-navbar.less │ │ │ │ ├── responsive-utilities.less │ │ │ │ ├── responsive.less │ │ │ │ ├── scaffolding.less │ │ │ │ ├── sprites.less │ │ │ │ ├── tables.less │ │ │ │ ├── thumbnails.less │ │ │ │ ├── tooltip.less │ │ │ │ ├── type.less │ │ │ │ ├── utilities.less │ │ │ │ ├── variables.less │ │ │ │ └── wells.less │ │ │ ├── crypto.min.js │ │ │ ├── css │ │ │ ├── animate.min.css │ │ │ ├── font-awesome.min.css │ │ │ ├── normalize.min.css │ │ │ ├── spectrum.css │ │ │ └── timepicker.css │ │ │ ├── filesaver.js │ │ │ ├── jquery │ │ │ ├── jquery-2.1.1.min.js │ │ │ ├── jquery.flot.crosshair.js │ │ │ ├── jquery.flot.events.js │ │ │ ├── jquery.flot.fillbelow.js │ │ │ ├── jquery.flot.fillbetween.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.selection.js │ │ │ ├── jquery.flot.stack.js │ │ │ ├── jquery.flot.stackpercent.js │ │ │ └── jquery.flot.time.js │ │ │ ├── license.json │ │ │ ├── lodash.js │ │ │ ├── modernizr-2.6.1.js │ │ │ ├── moment.js │ │ │ ├── require │ │ │ ├── css-build.js │ │ │ ├── css.js │ │ │ ├── require.js │ │ │ ├── text.js │ │ │ └── tmpl.js │ │ │ ├── spectrum.js │ │ │ └── tagsinput │ │ │ └── bootstrap-tagsinput.js │ └── tasks │ │ ├── build_task.js │ │ ├── default_task.js │ │ ├── distribute_task.js │ │ ├── options │ │ ├── clean.js │ │ ├── compress.js │ │ ├── concat.js │ │ ├── connect.js │ │ ├── copy.js │ │ ├── cssmin.js │ │ ├── filerev.js │ │ ├── git-describe.js │ │ ├── htmlmin.js │ │ ├── jscs.js │ │ ├── jshint.js │ │ ├── karma.js │ │ ├── less.js │ │ ├── meta.js │ │ ├── ngmin.js │ │ ├── ngtemplates.js │ │ ├── requirejs.js │ │ ├── uglify.js │ │ ├── usemin.js │ │ ├── useminPrepare.js │ │ └── watch.js │ │ └── server_task.js ├── lk │ ├── .bowerrc │ ├── .editorconfig │ ├── .eslintrc │ ├── .gitignore │ ├── .jscsrc │ ├── .jshintrc │ ├── README.md │ ├── assets │ │ ├── ASD_Logo.svg │ │ ├── NoData.svg │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── LICENSE.txt │ │ │ ├── OpenSans-Bold.ttf │ │ │ ├── OpenSans-Bold.woff │ │ │ ├── OpenSans-ExtraBold.ttf │ │ │ ├── OpenSans-ExtraBold.woff │ │ │ ├── OpenSans-Italic.ttf │ │ │ ├── OpenSans-Light.ttf │ │ │ ├── OpenSans-Light.woff │ │ │ ├── OpenSans-Regular.ttf │ │ │ ├── OpenSans-Regular.woff │ │ │ ├── OpenSans-Semibold.ttf │ │ │ └── OpenSans-Semibold.woff │ │ ├── icons │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ └── icomoon.woff │ │ ├── logo-beta.png │ │ ├── logo-small.png │ │ ├── logo.png │ │ └── translations │ │ │ ├── en.i18n.json │ │ │ └── ru.i18n.json │ ├── backend.config.js │ ├── backend_proxy.js │ ├── bower.json │ ├── config.js │ ├── gulpfile.js │ ├── karma.conf.js │ ├── less │ │ ├── authorization.less │ │ ├── common.less │ │ ├── fonts.less │ │ ├── forms.less │ │ ├── info-cards.less │ │ ├── layout.less │ │ ├── loading-bar.less │ │ ├── main.less │ │ ├── mainviews.less │ │ ├── news.less │ │ ├── openstack.less │ │ ├── production.less │ │ ├── progress-bar.less │ │ ├── restore-password.less │ │ ├── scrollbars.less │ │ ├── settings.less │ │ ├── support.less │ │ ├── tables.less │ │ └── variables.less │ ├── lib │ │ ├── BillingRestangular │ │ │ └── BillingRestangular.js │ │ ├── addressService │ │ │ ├── addressService.js │ │ │ └── addressService.spec.js │ │ ├── bsPopupDetails │ │ │ ├── bsPopupDetails.js │ │ │ └── bsPopupDetails.tpl.html │ │ ├── bsStrongPasswordValidator │ │ │ └── bsStrongPasswordValidator.js │ │ ├── newsService │ │ │ └── newsService.js │ │ ├── payService │ │ │ └── payService.js │ │ ├── supportService │ │ │ ├── supportService.js │ │ │ └── supportService.spec.js │ │ ├── userService │ │ │ └── userService.js │ │ └── utilityService │ │ │ └── utilityService.js │ ├── package.json │ ├── src │ │ ├── accountInfo │ │ │ ├── accountInfo.js │ │ │ └── accountInfo.tpl.html │ │ ├── app.js │ │ ├── authorization │ │ │ ├── authorization.js │ │ │ └── authorization.tpl.html │ │ ├── cards │ │ │ ├── CardsCtrl.js │ │ │ ├── cards.js │ │ │ └── cards.tpl.html │ │ ├── config.js │ │ ├── confirmation │ │ │ ├── confirmation.js │ │ │ └── confirmation.tpl.html │ │ ├── const │ │ │ ├── const.js │ │ │ └── defaultLocalConfig.js │ │ ├── header │ │ │ ├── header-col-1.tpl.html │ │ │ ├── header.js │ │ │ └── header.tpl.html │ │ ├── horizon │ │ │ ├── horizon.js │ │ │ └── horizon.tpl.html │ │ ├── index.html │ │ ├── layouts │ │ │ ├── col-1.tpl.html │ │ │ └── col-2.tpl.html │ │ ├── main │ │ │ ├── MainCtrl.js │ │ │ ├── main.js │ │ │ ├── main.limits.tpl.html │ │ │ └── main.tpl.html │ │ ├── news │ │ │ ├── NewsCtrl.js │ │ │ ├── news.js │ │ │ └── news.tpl.html │ │ ├── openstack │ │ │ ├── openstack.js │ │ │ └── openstack.main.tpl.html │ │ ├── pay │ │ │ ├── PayCtrl.js │ │ │ ├── pay.cards.partial.tpl.html │ │ │ ├── pay.invoice.partial.tpl.html │ │ │ ├── pay.js │ │ │ └── pay.tpl.html │ │ ├── production │ │ │ ├── Production2Ctrl.js │ │ │ ├── ProductionCtrl.js │ │ │ ├── production.js │ │ │ ├── production.step2.js │ │ │ ├── production.step2.tpl.html │ │ │ ├── production.tpl.html │ │ │ ├── user.entity.tpl.html │ │ │ └── user.private.tpl.html │ │ ├── restorePassword │ │ │ ├── RestorePasswordCtrl.js │ │ │ ├── restorePassword.js │ │ │ ├── restorePassword.tpl.html │ │ │ └── restorePasswordComplete.tpl.html │ │ ├── run.js │ │ ├── services │ │ │ ├── ServicesCtrl.js │ │ │ ├── services.js │ │ │ └── services.tpl.html │ │ ├── setPassword │ │ │ ├── SetPasswordCtrl.js │ │ │ ├── setPassword.js │ │ │ └── setPassword.tpl.html │ │ ├── settings │ │ │ ├── SettingsCtrl.js │ │ │ ├── settings.entity.partial.tpl.html │ │ │ ├── settings.js │ │ │ ├── settings.private.partial.tpl.html │ │ │ ├── settings.tpl.html │ │ │ └── settings.withdraw.partial.tpl.html │ │ ├── sidemenu │ │ │ ├── sidemenu.js │ │ │ └── sidemenu.tpl.html │ │ ├── signin │ │ │ ├── SigninCtrl.js │ │ │ ├── signin.js │ │ │ └── signin.tpl.html │ │ ├── signout │ │ │ ├── SignoutCtrl.js │ │ │ └── signout.js │ │ ├── signup │ │ │ ├── SignupCtrl.js │ │ │ ├── signup.js │ │ │ └── signup.tpl.html │ │ ├── signupFinished │ │ │ ├── SignupFinishedCtrl.js │ │ │ ├── signupFinished.js │ │ │ └── signupFinished.tpl.html │ │ ├── states.js │ │ ├── statistics │ │ │ ├── StatisticsCtrl.js │ │ │ ├── statistics.js │ │ │ └── statistics.tpl.html │ │ ├── support │ │ │ ├── SupportCtrl.js │ │ │ ├── support.js │ │ │ └── support.tpl.html │ │ ├── transactions │ │ │ ├── TransactionsCtrl.js │ │ │ ├── transactions.js │ │ │ └── transactions.tpl.html │ │ └── vendor.js │ └── webpack.config.js ├── maintenance │ ├── .editorconfig │ ├── build.js │ ├── index.dev.html │ ├── index.prod.html │ ├── index.qa.html │ ├── src │ │ └── index.html │ └── targets.json ├── shared │ ├── .editorconfig │ ├── appGlobalState │ │ └── appGlobalState.js │ ├── appLocale │ │ ├── appLocale.js │ │ └── appLocale.spec.js │ ├── asynchronousLoader │ │ ├── asynchronousLoader.js │ │ └── asynchronousLoader.spec.js │ ├── bsCompileTemplate │ │ ├── bsCompileTemplate.js │ │ └── bsCompileTemplate.spec.js │ ├── bsCopyToClipboard │ │ └── bsCopyToClipboard.js │ ├── bsDateRange │ │ ├── bsDateRange.js │ │ └── bsDateRange.tpl.html │ ├── bsDateRangePicker │ │ ├── bsDateRangePicker.js │ │ ├── bsDateRangePicker.tpl.html │ │ ├── datePickerViewProvider.js │ │ └── datepicker.tpl.html │ ├── bsDomainName │ │ └── bsDomainName.js │ ├── bsDropdownButton │ │ ├── bsDropdownButton.js │ │ └── bsDropdownButton.tpl.html │ ├── bsDynamicName │ │ ├── bsDynamicName.js │ │ └── bsDynamicName.spec.js │ ├── bsEndWith │ │ └── bsEndWith.js │ ├── bsFormSendOnce │ │ └── bsFormSendOnce.js │ ├── bsGrid │ │ ├── BsGridCtrl.js │ │ ├── Column.js │ │ ├── directives │ │ │ ├── bsGridCell.js │ │ │ ├── bsGridColumnResize.js │ │ │ ├── bsGridExpose.js │ │ │ ├── bsGridHeader.js │ │ │ └── bsGridStyles.js │ │ ├── index.js │ │ └── templates │ │ │ ├── cell.static.tpl.html │ │ │ ├── cell.tpl.html │ │ │ ├── grid.link.tpl.html │ │ │ ├── grid.static.tpl.html │ │ │ ├── grid.tpl.html │ │ │ ├── header.tpl.html │ │ │ └── wrapper.tpl.html │ ├── bsHasError │ │ ├── bsHasError.js │ │ └── bsHasError.spec.js │ ├── bsMatch │ │ ├── bsMatch.js │ │ └── bsMatch.spec.js │ ├── bsPhoneInput │ │ ├── bsPhoneInput.js │ │ └── bsPhoneInput.spec.js │ ├── bsProgressbar │ │ ├── bsProgressbar.js │ │ ├── bsProgressbar.tpl.html │ │ └── progressbar.tpl.html │ ├── bsServerValidate │ │ ├── bsServerValidate.js │ │ └── bsServerValidate.spec.js │ ├── bsTable │ │ ├── TableColumn.js │ │ ├── bsTable.js │ │ ├── bsTable.tpl.html │ │ ├── bsTableCell.js │ │ ├── bsTableSimple.tpl.html │ │ ├── bsTableSimpleScroll.tpl.html │ │ ├── bsTableWithActions.tpl.html │ │ ├── cell.partial.tpl.html │ │ ├── cell.static.partial.tpl.html │ │ ├── cell.tpl.html │ │ ├── cellWrapper.partial.tpl.html │ │ ├── tableColumn.spec.js │ │ └── tableHeader.partial.tpl.html │ ├── bsUnfocusable │ │ └── bsUnfocusable.js │ ├── bsValidateHint │ │ ├── bsValidateHint.js │ │ └── bsValidateHint.spec.js │ ├── bytesFilter │ │ ├── bytesFilter.js │ │ └── bytesFilter.spec.js │ ├── constants │ │ └── constants.js │ ├── cronToTextFilter │ │ ├── cronToTextFilter.js │ │ └── cron_ru.i18n.json │ ├── dialog │ │ ├── dialog.alert.tpl.html │ │ ├── dialog.confirm.tpl.html │ │ ├── dialog.js │ │ └── dialog.spec.js │ ├── error │ │ ├── error.js │ │ ├── error.less │ │ ├── error.tpl.html │ │ └── layout.tpl.html │ ├── fileSaver │ │ ├── fileSaver.js │ │ └── fileSaver.spec.js │ ├── leadingZerosFilter │ │ ├── leadingZerosFilter.js │ │ └── leadingZerosFilter.spec.js │ ├── less │ │ ├── bootstrap-override.less │ │ ├── bsGrid.less │ │ ├── button-group.less │ │ ├── elements.less │ │ ├── fonts.less │ │ ├── form-elements.less │ │ ├── header.less │ │ ├── hoverEffects.less │ │ ├── icons.less │ │ ├── modals.less │ │ ├── sidemenu.less │ │ ├── tables.less │ │ ├── tags-input.less │ │ ├── toaster-override.less │ │ └── triangles.less │ ├── localStorage │ │ ├── localStorage.js │ │ └── localStorage.spec.js │ ├── localizedNameFilter │ │ ├── localizedNameFilter.js │ │ └── localizedNameFilter.spec.js │ ├── moneyFilter │ │ ├── moneyFilter.js │ │ └── moneyFilter.spec.js │ ├── openstackService │ │ ├── BaseOpenstack.js │ │ ├── Cinder.js │ │ ├── CronTriggerModel.js │ │ ├── CronTriggerModel.spec.js │ │ ├── Designate.js │ │ ├── DesignateV2.js │ │ ├── Glance.js │ │ ├── Keystone.js │ │ ├── Mistral.js │ │ ├── Neutron.js │ │ ├── Nova.js │ │ ├── OSCredentials.js │ │ ├── OSRestangular.js │ │ ├── ServerModel.js │ │ ├── ServerModel.spec.js │ │ ├── SnapshotModel.js │ │ ├── SnapshotModel.spec.js │ │ ├── VolumeModel.js │ │ ├── VolumeModel.spec.js │ │ ├── ipV6parser.js │ │ └── openstackService.js │ ├── passwordGenerator │ │ ├── passwordGenerator.js │ │ └── passwordGenerator.spec.js │ ├── pickFilter │ │ ├── pickFilter.js │ │ └── pickFilter.spec.js │ ├── pollService │ │ ├── pollService.js │ │ └── pollService.spec.js │ ├── popupErrorService │ │ ├── popupErrorService.js │ │ └── popupErrorService.spec.js │ ├── reportService │ │ ├── reportService.js │ │ └── reportService.spec.js │ ├── selection.json │ ├── skyline │ │ ├── admin │ │ │ ├── cell.checkbox.tpl.html │ │ │ ├── cell.title.tpl.html │ │ │ ├── confirm-alert.tpl.html │ │ │ ├── projects-table.less │ │ │ ├── projects.js │ │ │ └── projects.tpl.html │ │ ├── backup │ │ │ ├── backup.cell.actions.partial.tpl.html │ │ │ ├── backup.list.state.js │ │ │ ├── backup.list.tpl.html │ │ │ ├── backup.listCtrl.js │ │ │ ├── skyline.backup.js │ │ │ └── snapshot.cell.actions.partial.tpl.html │ │ ├── dns │ │ │ ├── cell.actions.partial.tpl.html │ │ │ ├── cell.record.actions.partial.tpl.html │ │ │ ├── dns.list.state.js │ │ │ ├── dns.listCtrl.js │ │ │ ├── dns.new.state.js │ │ │ ├── dns.newCtrl.js │ │ │ ├── dns.record.edit.state.js │ │ │ ├── dns.record.editCtrl.js │ │ │ ├── dns.record.new.state.js │ │ │ ├── dns.record.newCtrl.js │ │ │ ├── dns.records.state.js │ │ │ ├── dns.recordsCtrl.js │ │ │ ├── domains.tpl.html │ │ │ ├── edit.record.tpl.html │ │ │ ├── new.domain.tpl.html │ │ │ ├── new.record.tpl.html │ │ │ ├── records.tpl.html │ │ │ └── skyline.dns.js │ │ ├── images │ │ │ ├── cell.actions.partial.tpl.html │ │ │ ├── images.list.state.js │ │ │ ├── images.listCtrl.js │ │ │ ├── images.new.state.js │ │ │ ├── images.newCtrl.js │ │ │ ├── list.tpl.html │ │ │ ├── new.tpl.html │ │ │ └── skyline.images.js │ │ ├── network │ │ │ ├── cell.actions.partial.tpl.html │ │ │ ├── ips.list.state.js │ │ │ ├── ips.listCtrl.js │ │ │ ├── ips.new.state.js │ │ │ ├── ips.new.tpl.html │ │ │ ├── ips.newCtrl.js │ │ │ ├── ips.tpl.html │ │ │ └── skyline.ips.js │ │ ├── ptr │ │ │ ├── cell.actions.partial.tpl.html │ │ │ ├── ptr.edit.state.js │ │ │ ├── ptr.edit.tpl.html │ │ │ ├── ptr.editCtrl.js │ │ │ ├── ptr.list.state.js │ │ │ ├── ptr.list.tpl.html │ │ │ ├── ptr.listCtrl.js │ │ │ ├── ptr.new.js │ │ │ ├── ptr.new.state.js │ │ │ ├── ptr.new.tpl.html │ │ │ └── skyline.ptr.js │ │ ├── servers │ │ │ ├── cell.actions.backups.partial.tpl.html │ │ │ ├── cell.actions.partial.tpl.html │ │ │ ├── cell.addresses.partial.tpl.html │ │ │ ├── server.backups.tpl.html │ │ │ ├── server.edit.state.js │ │ │ ├── server.edit.tpl.html │ │ │ ├── server.editBackupsCtrl.js │ │ │ ├── server.editCtrl.js │ │ │ ├── server.list.state.js │ │ │ ├── server.list.tpl.html │ │ │ ├── server.listCtrl.js │ │ │ ├── server.new.state.js │ │ │ ├── server.new.tpl.html │ │ │ ├── server.newCtrl.js │ │ │ ├── server.vnc.tpl.html │ │ │ ├── server.vncCtrl.js │ │ │ ├── server.vns.state.js │ │ │ └── skyline.servers.js │ │ ├── skyline.events.js │ │ └── volumes │ │ │ ├── cell.actions.partial.tpl.html │ │ │ ├── skyline.volumes.js │ │ │ ├── volumes.list.state.js │ │ │ ├── volumes.list.tpl.html │ │ │ ├── volumes.listCtrl.js │ │ │ ├── volumes.new.js │ │ │ ├── volumes.new.state.js │ │ │ └── volumes.new.tpl.html │ ├── textPreview │ │ ├── textPreview.js │ │ └── textPreview.spec.js │ ├── trustFilter │ │ ├── trustFilter.js │ │ └── trustFilter.spec.js │ └── urlParser │ │ ├── URLParser.spec.js │ │ └── urlParser.js └── skyline │ ├── .bowerrc │ ├── .editorconfig │ ├── .eslintrc │ ├── .gitignore │ ├── .jscsrc │ ├── .jshintrc │ ├── assets │ ├── ASD_Logo.svg │ ├── NoData.svg │ ├── favicon.ico │ ├── fonts │ │ ├── LICENSE.txt │ │ ├── OpenSans-Bold.ttf │ │ ├── OpenSans-Bold.woff │ │ ├── OpenSans-ExtraBold.ttf │ │ ├── OpenSans-ExtraBold.woff │ │ ├── OpenSans-Italic.ttf │ │ ├── OpenSans-Light.ttf │ │ ├── OpenSans-Light.woff │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-Regular.woff │ │ ├── OpenSans-Semibold.ttf │ │ └── OpenSans-Semibold.woff │ ├── icons │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ ├── logo-beta.png │ ├── logo-small.png │ ├── logo.png │ └── translations │ │ ├── en.i18n.json │ │ └── ru.i18n.json │ ├── backend.config.js │ ├── backend_proxy.js │ ├── bower.json │ ├── build.config.js │ ├── config.js │ ├── gulp │ ├── config.js │ └── server.js │ ├── gulpfile.js │ ├── karma.conf.js │ ├── less │ ├── authorization.less │ ├── common.less │ ├── fonts.less │ ├── forms.less │ ├── layout.less │ ├── loading-bar.less │ ├── main.less │ ├── openstack.less │ ├── scrollbars.less │ ├── tables.less │ └── variables.less │ ├── package.json │ ├── src │ ├── app.js │ ├── auth │ │ ├── AuthorizationCtrl.js │ │ ├── auth.js │ │ └── auth.tpl.html │ ├── config.js │ ├── const │ │ └── const.js │ ├── edit │ │ ├── SimpleServerEditCtrl.js │ │ ├── edit.js │ │ └── edit.tpl.html │ ├── header │ │ ├── header-col-1.tpl.html │ │ ├── header.js │ │ └── header.tpl.html │ ├── index.html │ ├── layouts │ │ ├── col-1.tpl.html │ │ └── col-2.tpl.html │ ├── logout │ │ └── logout.js │ ├── openstack │ │ ├── images.cell.actions.partial.tpl.html │ │ ├── openstack.js │ │ ├── openstack.main.tpl.html │ │ └── snapshot.cell.actions.partial.tpl.html │ ├── openstackAuth │ │ └── openstackAuth.js │ ├── ptr │ │ ├── ptr.new.tpl.html │ │ ├── skyline_standalone.ptr.js │ │ └── skyline_standalone.ptr.new.js │ ├── recreate │ │ ├── RecreateCtrl.js │ │ ├── recreate.js │ │ └── recreate.tpl.html │ ├── run.js │ ├── sidemenu │ │ ├── sidemenu.js │ │ └── sidemenu.tpl.html │ ├── states.js │ ├── status │ │ ├── StatusCtrl.js │ │ ├── cell.actions.partial.tpl.html │ │ ├── status.js │ │ └── status.tpl.html │ └── vendor.js │ └── webpack.config.js ├── lib ├── lib │ ├── __init__.py │ └── logger.py └── setup.py ├── light_tests ├── light_tests │ ├── __init__.py │ ├── base.py │ ├── clients │ │ ├── __init__.py │ │ ├── backend.py │ │ └── openstack.py │ ├── config_template.yaml │ ├── tests.py │ └── tools.py └── setup.py ├── openstack ├── ceilometer_plugin │ ├── README.rst │ ├── ceilometer_metering_plugin │ │ ├── __init__.py │ │ ├── ip_fixed.py │ │ ├── ip_floating.py │ │ ├── snapshot_size.py │ │ └── volume_size.py │ └── setup.py ├── os_credentials.yaml └── sample_creator.py ├── openstack_client.cfg ├── openstack_client ├── openstack_client │ └── __init__.py └── setup.py ├── tests.cfg ├── tests ├── api_tests │ ├── __init__.py │ ├── admin_backend │ │ ├── __init__.py │ │ ├── test_admin_customer.py │ │ ├── test_currency.py │ │ ├── test_news.py │ │ ├── test_payments.py │ │ ├── test_quotes.py │ │ ├── test_reports.py │ │ ├── test_service.py │ │ ├── test_tariff.py │ │ ├── test_user.py │ │ └── test_utility.py │ ├── cabinet_backend │ │ ├── __init__.py │ │ └── test_customer.py │ ├── openstack_tests │ │ ├── __init__.py │ │ └── test_openstack.py │ └── test_api_fields_validators.py ├── clients.py ├── configs │ ├── __init__.py │ ├── default.yaml │ └── logging.yaml ├── conftest.py ├── entities.py ├── long_tests │ ├── __init__.py │ └── test_openstack.py ├── setup.py ├── stress_tests │ ├── __init__.py │ ├── mock_config.yaml │ ├── test_backend_without_openstack.py │ └── test_falling_database.py └── utils │ ├── __init__.py │ ├── base.py │ ├── context_managers.py │ ├── mailtrap.py │ └── tools.py └── version /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/INSTALL.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/README.rst -------------------------------------------------------------------------------- /backend.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend.cfg -------------------------------------------------------------------------------- /backend/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/.coveragerc -------------------------------------------------------------------------------- /backend/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/.flake8 -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/__init__.py -------------------------------------------------------------------------------- /backend/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/api/__init__.py -------------------------------------------------------------------------------- /backend/api/admin/currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/api/admin/currency.py -------------------------------------------------------------------------------- /backend/api/admin/graphite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/api/admin/graphite.py -------------------------------------------------------------------------------- /backend/api/admin/news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/api/admin/news.py -------------------------------------------------------------------------------- /backend/api/admin/payments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/api/admin/payments.py -------------------------------------------------------------------------------- /backend/api/admin/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/api/admin/report.py -------------------------------------------------------------------------------- /backend/api/admin/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/api/admin/role.py -------------------------------------------------------------------------------- /backend/api/admin/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/api/admin/service.py -------------------------------------------------------------------------------- /backend/api/admin/tariff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/api/admin/tariff.py -------------------------------------------------------------------------------- /backend/api/admin/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/api/admin/user.py -------------------------------------------------------------------------------- /backend/api/cabinet/customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/api/cabinet/customer.py -------------------------------------------------------------------------------- /backend/api/check_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/api/check_params.py -------------------------------------------------------------------------------- /backend/api/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/api/utility.py -------------------------------------------------------------------------------- /backend/api/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/api/validator.py -------------------------------------------------------------------------------- /backend/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/bootstrap.py -------------------------------------------------------------------------------- /backend/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/conf.py -------------------------------------------------------------------------------- /backend/configs/backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/backend.yaml -------------------------------------------------------------------------------- /backend/configs/constants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/constants.yaml -------------------------------------------------------------------------------- /backend/configs/country.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/country.yaml -------------------------------------------------------------------------------- /backend/configs/currency.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/currency.yaml -------------------------------------------------------------------------------- /backend/configs/customer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/customer.yaml -------------------------------------------------------------------------------- /backend/configs/database.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/database.yaml -------------------------------------------------------------------------------- /backend/configs/event.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/event.yaml -------------------------------------------------------------------------------- /backend/configs/fitter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/fitter.yaml -------------------------------------------------------------------------------- /backend/configs/logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/logging.yaml -------------------------------------------------------------------------------- /backend/configs/message_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/message_template.yaml -------------------------------------------------------------------------------- /backend/configs/openstack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/openstack.yaml -------------------------------------------------------------------------------- /backend/configs/promocodes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/promocodes.yaml -------------------------------------------------------------------------------- /backend/configs/provider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/provider.yaml -------------------------------------------------------------------------------- /backend/configs/quotes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/quotes.yaml -------------------------------------------------------------------------------- /backend/configs/report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/report.yaml -------------------------------------------------------------------------------- /backend/configs/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/role.yaml -------------------------------------------------------------------------------- /backend/configs/schedule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/schedule.yaml -------------------------------------------------------------------------------- /backend/configs/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/service.yaml -------------------------------------------------------------------------------- /backend/configs/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/subscription.yaml -------------------------------------------------------------------------------- /backend/configs/tariff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/tariff.yaml -------------------------------------------------------------------------------- /backend/configs/user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/configs/user.yaml -------------------------------------------------------------------------------- /backend/docs/.gitignore: -------------------------------------------------------------------------------- 1 | doctrees 2 | html 3 | -------------------------------------------------------------------------------- /backend/docs/apisummary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/docs/apisummary.py -------------------------------------------------------------------------------- /backend/docs/autoapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/docs/autoapi.py -------------------------------------------------------------------------------- /backend/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/docs/conf.py -------------------------------------------------------------------------------- /backend/docs/errorsummary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/docs/errorsummary.py -------------------------------------------------------------------------------- /backend/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/docs/index.rst -------------------------------------------------------------------------------- /backend/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/errors.py -------------------------------------------------------------------------------- /backend/fitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/fitter/aggregation/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /backend/fitter/aggregation/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/fitter/aggregation/collector.py -------------------------------------------------------------------------------- /backend/fitter/aggregation/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/fitter/aggregation/constants.py -------------------------------------------------------------------------------- /backend/fitter/aggregation/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/fitter/aggregation/helpers.py -------------------------------------------------------------------------------- /backend/fitter/aggregation/timelabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/fitter/aggregation/timelabel.py -------------------------------------------------------------------------------- /backend/fitter/aggregation/transformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/fitter/aggregation/transformers.py -------------------------------------------------------------------------------- /backend/fitter/fitter_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/fitter/fitter_errors.py -------------------------------------------------------------------------------- /backend/fitter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/fitter/main.py -------------------------------------------------------------------------------- /backend/fitter/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/fitter/metrics.py -------------------------------------------------------------------------------- /backend/fitter/tests/data/ceilometer_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/fitter/tests/data/ceilometer_json.py -------------------------------------------------------------------------------- /backend/locale/boss.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/locale/boss.pot -------------------------------------------------------------------------------- /backend/locale/en/LC_MESSAGES/boss.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/locale/en/LC_MESSAGES/boss.po -------------------------------------------------------------------------------- /backend/locale/ru/LC_MESSAGES/boss.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/locale/ru/LC_MESSAGES/boss.po -------------------------------------------------------------------------------- /backend/memdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/memdb/__init__.py -------------------------------------------------------------------------------- /backend/memdb/mutex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/memdb/mutex.py -------------------------------------------------------------------------------- /backend/memdb/quota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/memdb/quota.py -------------------------------------------------------------------------------- /backend/memdb/report_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/memdb/report_cache.py -------------------------------------------------------------------------------- /backend/memdb/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/memdb/token.py -------------------------------------------------------------------------------- /backend/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/__init__.py -------------------------------------------------------------------------------- /backend/model/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/model/account/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/account/account.py -------------------------------------------------------------------------------- /backend/model/account/customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/account/customer.py -------------------------------------------------------------------------------- /backend/model/account/customer_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/account/customer_history.py -------------------------------------------------------------------------------- /backend/model/account/customer_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/account/customer_info.py -------------------------------------------------------------------------------- /backend/model/account/deferred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/account/deferred.py -------------------------------------------------------------------------------- /backend/model/account/message_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/account/message_template.py -------------------------------------------------------------------------------- /backend/model/account/news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/account/news.py -------------------------------------------------------------------------------- /backend/model/account/option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/account/option.py -------------------------------------------------------------------------------- /backend/model/account/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/account/role.py -------------------------------------------------------------------------------- /backend/model/account/scheduled_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/account/scheduled_task.py -------------------------------------------------------------------------------- /backend/model/account/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/account/service.py -------------------------------------------------------------------------------- /backend/model/account/tariff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/account/tariff.py -------------------------------------------------------------------------------- /backend/model/account/tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/account/tenant.py -------------------------------------------------------------------------------- /backend/model/account/time_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/account/time_state.py -------------------------------------------------------------------------------- /backend/model/account/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/account/user.py -------------------------------------------------------------------------------- /backend/model/db_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/db_user.py -------------------------------------------------------------------------------- /backend/model/fitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/model/fitter/service_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/fitter/service_usage.py -------------------------------------------------------------------------------- /backend/model/migrate/README: -------------------------------------------------------------------------------- 1 | Rudimentary multi-database configuration. -------------------------------------------------------------------------------- /backend/model/migrate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/model/migrate/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/alembic.ini -------------------------------------------------------------------------------- /backend/model/migrate/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/env.py -------------------------------------------------------------------------------- /backend/model/migrate/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/migrate.py -------------------------------------------------------------------------------- /backend/model/migrate/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/script.py.mako -------------------------------------------------------------------------------- /backend/model/migrate/versions/114df3b64e8_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/114df3b64e8_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/14ed44ca815_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/14ed44ca815_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/161a1f61b9f_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/161a1f61b9f_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/1751dd2a255_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/1751dd2a255_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/1802db98d8a_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/1802db98d8a_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/18632a2d5fc_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/18632a2d5fc_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/1d3806228da_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/1d3806228da_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/1d6f96d1df_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/1d6f96d1df_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/1e05d3e1d36_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/1e05d3e1d36_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/1e1202c6298_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/1e1202c6298_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/21cc8f612d2_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/21cc8f612d2_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/22a50be631f_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/22a50be631f_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/236ad45a9e4_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/236ad45a9e4_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/23d8efcd529_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/23d8efcd529_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/25f9a557214_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/25f9a557214_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/2b500992762_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/2b500992762_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/2b5cc9d88fa_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/2b5cc9d88fa_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/2baf554c632_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/2baf554c632_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/2c0875bb8b6_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/2c0875bb8b6_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/2c7b4a4d337_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/2c7b4a4d337_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/2f658fe6e93_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/2f658fe6e93_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/3096003c162_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/3096003c162_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/31e2d9544da_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/31e2d9544da_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/32879c33fd7_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/32879c33fd7_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/32f11aca04d_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/32f11aca04d_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/330979ad5da_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/330979ad5da_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/36759675584_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/36759675584_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/37b9ec06ce4_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/37b9ec06ce4_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/388ee1949b1_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/388ee1949b1_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/3990fca9b74_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/3990fca9b74_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/39fc43a77e8_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/39fc43a77e8_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/3b666d2ce67_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/3b666d2ce67_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/3b8cf0c138b_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/3b8cf0c138b_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/3cc3881f524_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/3cc3881f524_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/3e19c50e864_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/3e19c50e864_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/3fbc589c36d_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/3fbc589c36d_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/41b6fb3ddef_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/41b6fb3ddef_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/41f0af997d7_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/41f0af997d7_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/421f9c2bc2d_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/421f9c2bc2d_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/424ed97e693_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/424ed97e693_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/42c70f4f379_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/42c70f4f379_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/44d3aa89e8c_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/44d3aa89e8c_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/46597280a7c_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/46597280a7c_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/47df965c128_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/47df965c128_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/4aa3f116140_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/4aa3f116140_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/4ac0506251e_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/4ac0506251e_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/4ac191f72d8_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/4ac191f72d8_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/4c1fcc9a81d_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/4c1fcc9a81d_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/4c81f6e13b5_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/4c81f6e13b5_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/4cfbc4e6089_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/4cfbc4e6089_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/4dbaa3104f4_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/4dbaa3104f4_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/514c4c54871_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/514c4c54871_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/524a95b3670_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/524a95b3670_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/53244090158_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/53244090158_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/58bbe565915_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/58bbe565915_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/5943242c5f9_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/5943242c5f9_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/598eddeda2a_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/598eddeda2a_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/5aa5377a1b3_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/5aa5377a1b3_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/5cb333dc30_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/5cb333dc30_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/5ef06a3e19_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/5ef06a3e19_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/5ff6324d4f_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/5ff6324d4f_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/917db00580_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/917db00580_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/model/migrate/versions/b632cd3456_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/b632cd3456_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/d01849100f_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/d01849100f_.py -------------------------------------------------------------------------------- /backend/model/migrate/versions/ec00fe423c_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/migrate/versions/ec00fe423c_.py -------------------------------------------------------------------------------- /backend/model/sa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/model/sa.py -------------------------------------------------------------------------------- /backend/os_interfaces/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /backend/os_interfaces/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/os_interfaces/helpers.py -------------------------------------------------------------------------------- /backend/os_interfaces/horizon_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/os_interfaces/horizon_wrapper.py -------------------------------------------------------------------------------- /backend/os_interfaces/openstack_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/os_interfaces/openstack_wrapper.py -------------------------------------------------------------------------------- /backend/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/plugins/__init__.py -------------------------------------------------------------------------------- /backend/plugins/request_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/plugins/request_log.py -------------------------------------------------------------------------------- /backend/report/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/report/__init__.py -------------------------------------------------------------------------------- /backend/report/csv_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/report/csv_render.py -------------------------------------------------------------------------------- /backend/report/detailed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/report/detailed.py -------------------------------------------------------------------------------- /backend/report/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/report/formatter.py -------------------------------------------------------------------------------- /backend/report/json_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/report/json_render.py -------------------------------------------------------------------------------- /backend/report/pdf_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/report/pdf_render.py -------------------------------------------------------------------------------- /backend/report/receipts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/report/receipts.py -------------------------------------------------------------------------------- /backend/report/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/report/render.py -------------------------------------------------------------------------------- /backend/report/segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/report/segments.py -------------------------------------------------------------------------------- /backend/report/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/report/simple.py -------------------------------------------------------------------------------- /backend/report/templates/acceptance_act.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/report/templates/acceptance_act.rml -------------------------------------------------------------------------------- /backend/report/templates/detailed.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/report/templates/detailed.rml -------------------------------------------------------------------------------- /backend/report/templates/invoice.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/report/templates/invoice.rml -------------------------------------------------------------------------------- /backend/report/templates/simple.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/report/templates/simple.rml -------------------------------------------------------------------------------- /backend/report/templates/timesbd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/report/templates/timesbd.ttf -------------------------------------------------------------------------------- /backend/report/templates/timesu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/report/templates/timesu.ttf -------------------------------------------------------------------------------- /backend/report/usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/report/usage.py -------------------------------------------------------------------------------- /backend/service/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /backend/service/payments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/service/payments.py -------------------------------------------------------------------------------- /backend/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/setup.py -------------------------------------------------------------------------------- /backend/statistics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/statistics/__init__.py -------------------------------------------------------------------------------- /backend/task/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/task/customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/task/customer.py -------------------------------------------------------------------------------- /backend/task/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/task/mail.py -------------------------------------------------------------------------------- /backend/task/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/task/main.py -------------------------------------------------------------------------------- /backend/task/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/task/notifications.py -------------------------------------------------------------------------------- /backend/task/openstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/task/openstack.py -------------------------------------------------------------------------------- /backend/task/payments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/task/payments.py -------------------------------------------------------------------------------- /backend/task/sentinel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/task/sentinel.py -------------------------------------------------------------------------------- /backend/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/base.py -------------------------------------------------------------------------------- /backend/tests/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/bootstrap.py -------------------------------------------------------------------------------- /backend/tests/fixture/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/fixture/base.yaml -------------------------------------------------------------------------------- /backend/tests/test_croniter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/test_croniter.py -------------------------------------------------------------------------------- /backend/tests/test_currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/test_currency.py -------------------------------------------------------------------------------- /backend/tests/test_customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/test_customer.py -------------------------------------------------------------------------------- /backend/tests/test_fitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/tests/test_fitter/openstack_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/test_fitter/openstack_services.py -------------------------------------------------------------------------------- /backend/tests/test_fitter/test_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/test_fitter/test_collector.py -------------------------------------------------------------------------------- /backend/tests/test_fitter/test_database_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/test_fitter/test_database_module.py -------------------------------------------------------------------------------- /backend/tests/test_fitter/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/test_fitter/test_models.py -------------------------------------------------------------------------------- /backend/tests/test_fitter/test_timelabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/test_fitter/test_timelabel.py -------------------------------------------------------------------------------- /backend/tests/test_fitter/test_transformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/test_fitter/test_transformers.py -------------------------------------------------------------------------------- /backend/tests/test_graphite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/test_graphite.py -------------------------------------------------------------------------------- /backend/tests/test_i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/test_i18n.py -------------------------------------------------------------------------------- /backend/tests/test_mutext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/test_mutext.py -------------------------------------------------------------------------------- /backend/tests/test_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/test_news.py -------------------------------------------------------------------------------- /backend/tests/test_os_interfaces/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /backend/tests/test_payments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/test_payments.py -------------------------------------------------------------------------------- /backend/tests/test_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/test_report.py -------------------------------------------------------------------------------- /backend/tests/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/test_service.py -------------------------------------------------------------------------------- /backend/tests/test_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/test_stat.py -------------------------------------------------------------------------------- /backend/tests/test_tariff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/test_tariff.py -------------------------------------------------------------------------------- /backend/tests/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/test_user.py -------------------------------------------------------------------------------- /backend/tests/test_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/tests/test_utility.py -------------------------------------------------------------------------------- /backend/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/utils/__init__.py -------------------------------------------------------------------------------- /backend/utils/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/utils/bootstrap.py -------------------------------------------------------------------------------- /backend/utils/check_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/utils/check_config.py -------------------------------------------------------------------------------- /backend/utils/coverage_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/utils/coverage_report.py -------------------------------------------------------------------------------- /backend/utils/croniter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/utils/croniter.py -------------------------------------------------------------------------------- /backend/utils/db_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/utils/db_clean.py -------------------------------------------------------------------------------- /backend/utils/flake8_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/utils/flake8_plugin.py -------------------------------------------------------------------------------- /backend/utils/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/utils/i18n.py -------------------------------------------------------------------------------- /backend/utils/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/utils/mail.py -------------------------------------------------------------------------------- /backend/utils/management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/utils/management.py -------------------------------------------------------------------------------- /backend/utils/mapping.cfg: -------------------------------------------------------------------------------- 1 | [ignore: **/docs/**] 2 | [python: **.py] 3 | -------------------------------------------------------------------------------- /backend/utils/money.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/utils/money.py -------------------------------------------------------------------------------- /backend/utils/openstack_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/utils/openstack_clean.py -------------------------------------------------------------------------------- /backend/utils/periodic_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/utils/periodic_task.py -------------------------------------------------------------------------------- /backend/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend/view.py -------------------------------------------------------------------------------- /backend_and_tests.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend_and_tests.cfg -------------------------------------------------------------------------------- /backend_frontend.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend_frontend.cfg -------------------------------------------------------------------------------- /backend_relative.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/backend_relative.cfg -------------------------------------------------------------------------------- /base.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/base.cfg -------------------------------------------------------------------------------- /bootstrap-buildout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/bootstrap-buildout.py -------------------------------------------------------------------------------- /boss_client.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/boss_client.cfg -------------------------------------------------------------------------------- /boss_client/boss_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/boss_client/boss_client/__init__.py -------------------------------------------------------------------------------- /boss_client/boss_client/adminbackend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/boss_client/boss_client/adminbackend.py -------------------------------------------------------------------------------- /boss_client/boss_client/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/boss_client/boss_client/auth.py -------------------------------------------------------------------------------- /boss_client/boss_client/cabinetbackend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/boss_client/boss_client/cabinetbackend.py -------------------------------------------------------------------------------- /boss_client/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/boss_client/setup.py -------------------------------------------------------------------------------- /changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/changelog.rst -------------------------------------------------------------------------------- /configs/bootstrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/configs/bootstrap.yaml -------------------------------------------------------------------------------- /configs/light_tests_bootstrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/configs/light_tests_bootstrap.yaml -------------------------------------------------------------------------------- /configs/logrotate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/configs/logrotate.conf -------------------------------------------------------------------------------- /configs/stage/boss.sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/configs/stage/boss.sample.yaml -------------------------------------------------------------------------------- /configs/stage/dev-coverage-local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/configs/stage/dev-coverage-local.yaml -------------------------------------------------------------------------------- /configs/stage/dev_local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/configs/stage/dev_local.yaml -------------------------------------------------------------------------------- /configs/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/configs/uwsgi.ini -------------------------------------------------------------------------------- /deploy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/.gitignore -------------------------------------------------------------------------------- /deploy/ansible/files/redis_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/ansible/files/redis_test.sh -------------------------------------------------------------------------------- /deploy/ansible/playbooks/credentials/dev/mysql/root: -------------------------------------------------------------------------------- 1 | TfjSh:s-lJhPyCK 2 | -------------------------------------------------------------------------------- /deploy/ansible/playbooks/dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/ansible/playbooks/dev.yaml -------------------------------------------------------------------------------- /deploy/ansible/playbooks/dev_infra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/ansible/playbooks/dev_infra.yaml -------------------------------------------------------------------------------- /deploy/ansible/playbooks/dev_infra_carbon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/ansible/playbooks/dev_infra_carbon.yaml -------------------------------------------------------------------------------- /deploy/ansible/playbooks/dev_infra_mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/ansible/playbooks/dev_infra_mysql.yaml -------------------------------------------------------------------------------- /deploy/ansible/playbooks/dev_infra_redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/ansible/playbooks/dev_infra_redis.yaml -------------------------------------------------------------------------------- /deploy/ansible/playbooks/docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/ansible/playbooks/docker.yaml -------------------------------------------------------------------------------- /deploy/ansible/playbooks/docker_dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/ansible/playbooks/docker_dev.yaml -------------------------------------------------------------------------------- /deploy/ansible/playbooks/files/redis-sentinel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/ansible/playbooks/files/redis-sentinel -------------------------------------------------------------------------------- /deploy/ansible/playbooks/mariadb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/ansible/playbooks/mariadb.yaml -------------------------------------------------------------------------------- /deploy/ansible/playbooks/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/ansible/playbooks/redis.yaml -------------------------------------------------------------------------------- /deploy/ansible/playbooks/zabbix_install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/ansible/playbooks/zabbix_install.yaml -------------------------------------------------------------------------------- /deploy/ansible/templates/ext_checks_zabbix.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/ansible/templates/ext_checks_zabbix.j2 -------------------------------------------------------------------------------- /deploy/ansible/templates/zabbix_agent.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/ansible/templates/zabbix_agent.j2 -------------------------------------------------------------------------------- /deploy/debian/backend/DEBIAN/conffiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/debian/backend/DEBIAN/conffiles -------------------------------------------------------------------------------- /deploy/debian/backend/DEBIAN/inid.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/debian/backend/DEBIAN/inid.d -------------------------------------------------------------------------------- /deploy/debian/backend/DEBIAN/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | %: 4 | dh $@ --with python3 5 | -------------------------------------------------------------------------------- /deploy/debian/backend/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/debian/backend/build.sh -------------------------------------------------------------------------------- /deploy/debian/backend/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/debian/backend/changelog -------------------------------------------------------------------------------- /deploy/debian/backend/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/debian/backend/control -------------------------------------------------------------------------------- /deploy/debian/backend/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/debian/backend/logrotate -------------------------------------------------------------------------------- /deploy/debian/frontend_admin/DEBIAN/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | %: 4 | dh $@ --with python3 5 | -------------------------------------------------------------------------------- /deploy/debian/frontend_admin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/debian/frontend_admin/build.sh -------------------------------------------------------------------------------- /deploy/debian/frontend_admin/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/debian/frontend_admin/changelog -------------------------------------------------------------------------------- /deploy/debian/frontend_admin/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/debian/frontend_admin/control -------------------------------------------------------------------------------- /deploy/debian/frontend_cabinet/DEBIAN/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | %: 4 | dh $@ --with python3 5 | -------------------------------------------------------------------------------- /deploy/debian/frontend_cabinet/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/debian/frontend_cabinet/build.sh -------------------------------------------------------------------------------- /deploy/debian/frontend_cabinet/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/debian/frontend_cabinet/changelog -------------------------------------------------------------------------------- /deploy/debian/frontend_cabinet/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/debian/frontend_cabinet/control -------------------------------------------------------------------------------- /deploy/zabbix/zabbix_billing_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/deploy/zabbix/zabbix_billing_template.xml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/SkylineUserGuide/SkylineUserGuide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/docs/source/SkylineUserGuide/SkylineUserGuide.rst -------------------------------------------------------------------------------- /docs/source/SkylineUserGuide/images/backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/docs/source/SkylineUserGuide/images/backup.png -------------------------------------------------------------------------------- /docs/source/SkylineUserGuide/images/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/docs/source/SkylineUserGuide/images/main.png -------------------------------------------------------------------------------- /docs/source/SkylineUserGuide/images/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/docs/source/SkylineUserGuide/images/password.png -------------------------------------------------------------------------------- /docs/source/SkylineUserGuide/images/settings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/docs/source/SkylineUserGuide/images/settings1.png -------------------------------------------------------------------------------- /docs/source/SkylineUserGuide/images/settings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/docs/source/SkylineUserGuide/images/settings2.png -------------------------------------------------------------------------------- /docs/source/SkylineUserGuide/images/settings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/docs/source/SkylineUserGuide/images/settings3.png -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /frontend.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend.cfg -------------------------------------------------------------------------------- /frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/.editorconfig -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/admin/.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/.bowerrc -------------------------------------------------------------------------------- /frontend/admin/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/.editorconfig -------------------------------------------------------------------------------- /frontend/admin/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/.eslintrc -------------------------------------------------------------------------------- /frontend/admin/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | vendor 3 | bin 4 | docs 5 | backend.config.local.js 6 | -------------------------------------------------------------------------------- /frontend/admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/README.md -------------------------------------------------------------------------------- /frontend/admin/assets/ASD_Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/assets/ASD_Logo.svg -------------------------------------------------------------------------------- /frontend/admin/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/assets/favicon.ico -------------------------------------------------------------------------------- /frontend/admin/assets/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/assets/fonts/LICENSE.txt -------------------------------------------------------------------------------- /frontend/admin/assets/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/assets/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /frontend/admin/assets/fonts/OpenSans-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/assets/fonts/OpenSans-Bold.woff -------------------------------------------------------------------------------- /frontend/admin/assets/fonts/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/assets/fonts/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /frontend/admin/assets/fonts/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/assets/fonts/OpenSans-Light.ttf -------------------------------------------------------------------------------- /frontend/admin/assets/fonts/OpenSans-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/assets/fonts/OpenSans-Light.woff -------------------------------------------------------------------------------- /frontend/admin/assets/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/assets/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /frontend/admin/assets/fonts/OpenSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/assets/fonts/OpenSans-Regular.woff -------------------------------------------------------------------------------- /frontend/admin/assets/fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/assets/fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /frontend/admin/assets/icons/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/assets/icons/icomoon.eot -------------------------------------------------------------------------------- /frontend/admin/assets/icons/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/assets/icons/icomoon.svg -------------------------------------------------------------------------------- /frontend/admin/assets/icons/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/assets/icons/icomoon.ttf -------------------------------------------------------------------------------- /frontend/admin/assets/icons/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/assets/icons/icomoon.woff -------------------------------------------------------------------------------- /frontend/admin/assets/logo-beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/assets/logo-beta.png -------------------------------------------------------------------------------- /frontend/admin/assets/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/assets/logo-small.png -------------------------------------------------------------------------------- /frontend/admin/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/assets/logo.png -------------------------------------------------------------------------------- /frontend/admin/assets/translations/en.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/assets/translations/en.i18n.json -------------------------------------------------------------------------------- /frontend/admin/assets/translations/ru.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/assets/translations/ru.i18n.json -------------------------------------------------------------------------------- /frontend/admin/backend.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/backend.config.js -------------------------------------------------------------------------------- /frontend/admin/backend_proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/backend_proxy.js -------------------------------------------------------------------------------- /frontend/admin/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/bower.json -------------------------------------------------------------------------------- /frontend/admin/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/config.js -------------------------------------------------------------------------------- /frontend/admin/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/gulpfile.js -------------------------------------------------------------------------------- /frontend/admin/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/karma.conf.js -------------------------------------------------------------------------------- /frontend/admin/less/authorization.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/authorization.less -------------------------------------------------------------------------------- /frontend/admin/less/btn-scroll.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/btn-scroll.less -------------------------------------------------------------------------------- /frontend/admin/less/custom-filters.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/custom-filters.less -------------------------------------------------------------------------------- /frontend/admin/less/filters.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/filters.less -------------------------------------------------------------------------------- /frontend/admin/less/fonts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/fonts.less -------------------------------------------------------------------------------- /frontend/admin/less/formfields.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/formfields.less -------------------------------------------------------------------------------- /frontend/admin/less/grafana.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/grafana.less -------------------------------------------------------------------------------- /frontend/admin/less/layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/layout.less -------------------------------------------------------------------------------- /frontend/admin/less/lists.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/lists.less -------------------------------------------------------------------------------- /frontend/admin/less/loading-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/loading-bar.less -------------------------------------------------------------------------------- /frontend/admin/less/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/main.less -------------------------------------------------------------------------------- /frontend/admin/less/mainview-layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/mainview-layout.less -------------------------------------------------------------------------------- /frontend/admin/less/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/pagination.less -------------------------------------------------------------------------------- /frontend/admin/less/popup.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/popup.less -------------------------------------------------------------------------------- /frontend/admin/less/promocodes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/promocodes.less -------------------------------------------------------------------------------- /frontend/admin/less/restore-password.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/restore-password.less -------------------------------------------------------------------------------- /frontend/admin/less/scrollbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/scrollbar.less -------------------------------------------------------------------------------- /frontend/admin/less/search.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/search.less -------------------------------------------------------------------------------- /frontend/admin/less/system-reports.less: -------------------------------------------------------------------------------- 1 | .report-wrapper { 2 | margin-top: 50px; 3 | width: 75% 4 | } 5 | -------------------------------------------------------------------------------- /frontend/admin/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/tables.less -------------------------------------------------------------------------------- /frontend/admin/less/tabs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/tabs.less -------------------------------------------------------------------------------- /frontend/admin/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/less/variables.less -------------------------------------------------------------------------------- /frontend/admin/lib/bsFormSaver/bsFormSaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/lib/bsFormSaver/bsFormSaver.js -------------------------------------------------------------------------------- /frontend/admin/lib/bsTableFilter/bsTableFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/lib/bsTableFilter/bsTableFilter.js -------------------------------------------------------------------------------- /frontend/admin/lib/less/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/lib/less/common.less -------------------------------------------------------------------------------- /frontend/admin/lib/less/elements.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/lib/less/elements.less -------------------------------------------------------------------------------- /frontend/admin/lib/newsService/newsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/lib/newsService/newsService.js -------------------------------------------------------------------------------- /frontend/admin/lib/tariffService/tariffService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/lib/tariffService/tariffService.js -------------------------------------------------------------------------------- /frontend/admin/lib/userService/userService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/lib/userService/userService.js -------------------------------------------------------------------------------- /frontend/admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/package.json -------------------------------------------------------------------------------- /frontend/admin/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/app.js -------------------------------------------------------------------------------- /frontend/admin/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/config.js -------------------------------------------------------------------------------- /frontend/admin/src/confirmation/confirmation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/confirmation/confirmation.js -------------------------------------------------------------------------------- /frontend/admin/src/const/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/const/const.js -------------------------------------------------------------------------------- /frontend/admin/src/const/defaultLocalConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/const/defaultLocalConfig.js -------------------------------------------------------------------------------- /frontend/admin/src/customers/customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/customers/customer.js -------------------------------------------------------------------------------- /frontend/admin/src/customers/customers.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/customers/customers.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/customers/new/customer.new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/customers/new/customer.new.js -------------------------------------------------------------------------------- /frontend/admin/src/details/details.empty.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/details/details.empty.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/details/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/details/details.js -------------------------------------------------------------------------------- /frontend/admin/src/details/details.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/details/details.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/flavors/FlavorsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/flavors/FlavorsCtrl.js -------------------------------------------------------------------------------- /frontend/admin/src/flavors/FlavorsDetailsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/flavors/FlavorsDetailsCtrl.js -------------------------------------------------------------------------------- /frontend/admin/src/flavors/flavors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/flavors/flavors.js -------------------------------------------------------------------------------- /frontend/admin/src/flavors/flavors.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/flavors/flavors.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/flavors/new/FlavorsNewCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/flavors/new/FlavorsNewCtrl.js -------------------------------------------------------------------------------- /frontend/admin/src/flavors/new/flavors.new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/flavors/new/flavors.new.js -------------------------------------------------------------------------------- /frontend/admin/src/grafana/grafana.boss.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/grafana/grafana.boss.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/grafana/grafana.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/grafana/grafana.js -------------------------------------------------------------------------------- /frontend/admin/src/grafana/grafana.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/grafana/grafana.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/header/header-col-1.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/header/header-col-1.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/header/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/header/header.js -------------------------------------------------------------------------------- /frontend/admin/src/header/header.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/header/header.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/index.html -------------------------------------------------------------------------------- /frontend/admin/src/layouts/LayoutCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/layouts/LayoutCtrl.js -------------------------------------------------------------------------------- /frontend/admin/src/layouts/col-1.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/layouts/col-1.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/layouts/col-2.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/layouts/col-2.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/news/NewsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/news/NewsCtrl.js -------------------------------------------------------------------------------- /frontend/admin/src/news/details/news.details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/news/details/news.details.js -------------------------------------------------------------------------------- /frontend/admin/src/news/new/NewsNewCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/news/new/NewsNewCtrl.js -------------------------------------------------------------------------------- /frontend/admin/src/news/new/news.new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/news/new/news.new.js -------------------------------------------------------------------------------- /frontend/admin/src/news/new/news.new.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/news/new/news.new.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/news/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/news/news.js -------------------------------------------------------------------------------- /frontend/admin/src/news/news.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/news/news.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/osLogin/osLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/osLogin/osLogin.js -------------------------------------------------------------------------------- /frontend/admin/src/osLogin/osLogin.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/osLogin/osLogin.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/run.js -------------------------------------------------------------------------------- /frontend/admin/src/services/new/services.new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/services/new/services.new.js -------------------------------------------------------------------------------- /frontend/admin/src/services/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/services/services.js -------------------------------------------------------------------------------- /frontend/admin/src/services/services.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/services/services.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/set-password/set-password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/set-password/set-password.js -------------------------------------------------------------------------------- /frontend/admin/src/sidemenu/sidemenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/sidemenu/sidemenu.js -------------------------------------------------------------------------------- /frontend/admin/src/sidemenu/sidemenu.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/sidemenu/sidemenu.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/signin/SigninCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/signin/SigninCtrl.js -------------------------------------------------------------------------------- /frontend/admin/src/signin/signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/signin/signin.js -------------------------------------------------------------------------------- /frontend/admin/src/signin/signin.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/signin/signin.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/signout/signout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/signout/signout.js -------------------------------------------------------------------------------- /frontend/admin/src/states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/states.js -------------------------------------------------------------------------------- /frontend/admin/src/system/SystemCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/system/SystemCtrl.js -------------------------------------------------------------------------------- /frontend/admin/src/system/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/system/system.js -------------------------------------------------------------------------------- /frontend/admin/src/system/system.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/system/system.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/tariffs/new/tariffs.new.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/tariffs/new/tariffs.new.1.js -------------------------------------------------------------------------------- /frontend/admin/src/tariffs/new/tariffs.new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/tariffs/new/tariffs.new.js -------------------------------------------------------------------------------- /frontend/admin/src/tariffs/tariffs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/tariffs/tariffs.js -------------------------------------------------------------------------------- /frontend/admin/src/tariffs/tariffs.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/tariffs/tariffs.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/users/UsersCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/users/UsersCtrl.js -------------------------------------------------------------------------------- /frontend/admin/src/users/details/users.details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/users/details/users.details.js -------------------------------------------------------------------------------- /frontend/admin/src/users/new/UsersNewCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/users/new/UsersNewCtrl.js -------------------------------------------------------------------------------- /frontend/admin/src/users/new/users.new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/users/new/users.new.js -------------------------------------------------------------------------------- /frontend/admin/src/users/new/users.new.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/users/new/users.new.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/users/roles.partial.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/users/roles.partial.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/users/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/users/users.js -------------------------------------------------------------------------------- /frontend/admin/src/users/users.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/users/users.tpl.html -------------------------------------------------------------------------------- /frontend/admin/src/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/src/vendor.js -------------------------------------------------------------------------------- /frontend/admin/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/admin/webpack.config.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/.gitignore -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/.jscs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/.jscs.json -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/.jsfmtrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/.jsfmtrc -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/.jshintrc -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/.travis.yml -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/CHANGELOG.md -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/CONTRIBUTING.md -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/Gruntfile.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/LICENSE.md -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/NOTICE.md -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/README.md -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/latest.json -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/package.json -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/sample/apache_ldap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/sample/apache_ldap.conf -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/sample/lighttpd_basic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/sample/lighttpd_basic.conf -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/sample/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/sample/nginx.conf -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/sample/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/sample/server.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/app/app.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/app/components/kbn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/app/components/kbn.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/app/components/partials.js: -------------------------------------------------------------------------------- 1 | define([ 2 | ], function () {}); 3 | -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/app/controllers/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/app/controllers/all.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/app/controllers/row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/app/controllers/row.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/app/directives/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/app/directives/all.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/app/directives/tip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/app/directives/tip.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/app/features/all.js: -------------------------------------------------------------------------------- 1 | define([ 2 | './panellinkeditor/module', 3 | ], function () {}); 4 | -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/app/filters/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/app/filters/all.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/app/routes/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/app/routes/all.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/app/services/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/app/services/all.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/app/services/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/app/services/timer.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/config.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/config.sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/config.sample.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/css/less/console.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/css/less/console.less -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/css/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/css/less/forms.less -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/css/less/grafana.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/css/less/grafana.less -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/css/less/graph.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/css/less/graph.less -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/css/less/panel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/css/less/panel.less -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/css/less/search.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/css/less/search.less -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/css/less/submenu.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/css/less/submenu.less -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/font/FontAwesome.otf -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/img/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/img/checkbox.png -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/img/checkbox_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/img/checkbox_white.png -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/img/cubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/img/cubes.png -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/img/fav16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/img/fav16.png -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/img/fav32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/img/fav32.png -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/img/fav_dark_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/img/fav_dark_16.png -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/img/fav_dark_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/img/fav_dark_32.png -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/img/kibana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/img/kibana.png -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/img/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/img/light.png -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/img/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/img/load.gif -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/img/load_big.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/img/load_big.gif -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/img/small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/img/small.png -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/index.html -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/test/.jshintrc -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/test/karma.conf.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/test/specs/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/test/specs/helpers.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/test/test-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/test/test-main.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/test/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/test/tests.html -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/vendor/crypto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/vendor/crypto.min.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/vendor/filesaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/vendor/filesaver.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/vendor/license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/vendor/license.json -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/vendor/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/vendor/lodash.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/vendor/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/vendor/moment.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/vendor/require/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/vendor/require/css.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/vendor/require/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/vendor/require/text.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/vendor/require/tmpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/vendor/require/tmpl.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/src/vendor/spectrum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/src/vendor/spectrum.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/build_task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/build_task.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/default_task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/default_task.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/distribute_task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/distribute_task.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/options/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/options/clean.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/options/compress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/options/compress.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/options/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/options/concat.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/options/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/options/connect.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/options/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/options/copy.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/options/cssmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/options/cssmin.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/options/filerev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/options/filerev.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/options/htmlmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/options/htmlmin.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/options/jscs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/options/jscs.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/options/jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/options/jshint.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/options/karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/options/karma.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/options/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/options/less.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/options/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/options/meta.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/options/ngmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/options/ngmin.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/options/uglify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/options/uglify.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/options/usemin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/options/usemin.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/options/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/options/watch.js -------------------------------------------------------------------------------- /frontend/grafana-1.9.1/tasks/server_task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/grafana-1.9.1/tasks/server_task.js -------------------------------------------------------------------------------- /frontend/lk/.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/.bowerrc -------------------------------------------------------------------------------- /frontend/lk/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/.editorconfig -------------------------------------------------------------------------------- /frontend/lk/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/.eslintrc -------------------------------------------------------------------------------- /frontend/lk/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | vendor 3 | bin 4 | docs 5 | backend.config.local.js 6 | -------------------------------------------------------------------------------- /frontend/lk/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/.jscsrc -------------------------------------------------------------------------------- /frontend/lk/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/.jshintrc -------------------------------------------------------------------------------- /frontend/lk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/README.md -------------------------------------------------------------------------------- /frontend/lk/assets/ASD_Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/ASD_Logo.svg -------------------------------------------------------------------------------- /frontend/lk/assets/NoData.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/NoData.svg -------------------------------------------------------------------------------- /frontend/lk/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/favicon.ico -------------------------------------------------------------------------------- /frontend/lk/assets/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/fonts/LICENSE.txt -------------------------------------------------------------------------------- /frontend/lk/assets/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /frontend/lk/assets/fonts/OpenSans-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/fonts/OpenSans-Bold.woff -------------------------------------------------------------------------------- /frontend/lk/assets/fonts/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/fonts/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /frontend/lk/assets/fonts/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/fonts/OpenSans-Light.ttf -------------------------------------------------------------------------------- /frontend/lk/assets/fonts/OpenSans-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/fonts/OpenSans-Light.woff -------------------------------------------------------------------------------- /frontend/lk/assets/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /frontend/lk/assets/fonts/OpenSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/fonts/OpenSans-Regular.woff -------------------------------------------------------------------------------- /frontend/lk/assets/fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /frontend/lk/assets/icons/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/icons/icomoon.eot -------------------------------------------------------------------------------- /frontend/lk/assets/icons/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/icons/icomoon.svg -------------------------------------------------------------------------------- /frontend/lk/assets/icons/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/icons/icomoon.ttf -------------------------------------------------------------------------------- /frontend/lk/assets/icons/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/icons/icomoon.woff -------------------------------------------------------------------------------- /frontend/lk/assets/logo-beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/logo-beta.png -------------------------------------------------------------------------------- /frontend/lk/assets/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/logo-small.png -------------------------------------------------------------------------------- /frontend/lk/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/logo.png -------------------------------------------------------------------------------- /frontend/lk/assets/translations/en.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/translations/en.i18n.json -------------------------------------------------------------------------------- /frontend/lk/assets/translations/ru.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/assets/translations/ru.i18n.json -------------------------------------------------------------------------------- /frontend/lk/backend.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/backend.config.js -------------------------------------------------------------------------------- /frontend/lk/backend_proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/backend_proxy.js -------------------------------------------------------------------------------- /frontend/lk/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/bower.json -------------------------------------------------------------------------------- /frontend/lk/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/config.js -------------------------------------------------------------------------------- /frontend/lk/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/gulpfile.js -------------------------------------------------------------------------------- /frontend/lk/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/karma.conf.js -------------------------------------------------------------------------------- /frontend/lk/less/authorization.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/less/authorization.less -------------------------------------------------------------------------------- /frontend/lk/less/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/less/common.less -------------------------------------------------------------------------------- /frontend/lk/less/fonts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/less/fonts.less -------------------------------------------------------------------------------- /frontend/lk/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/less/forms.less -------------------------------------------------------------------------------- /frontend/lk/less/info-cards.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/less/info-cards.less -------------------------------------------------------------------------------- /frontend/lk/less/layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/less/layout.less -------------------------------------------------------------------------------- /frontend/lk/less/loading-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/less/loading-bar.less -------------------------------------------------------------------------------- /frontend/lk/less/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/less/main.less -------------------------------------------------------------------------------- /frontend/lk/less/mainviews.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/less/mainviews.less -------------------------------------------------------------------------------- /frontend/lk/less/news.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/less/news.less -------------------------------------------------------------------------------- /frontend/lk/less/openstack.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/less/openstack.less -------------------------------------------------------------------------------- /frontend/lk/less/production.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/less/production.less -------------------------------------------------------------------------------- /frontend/lk/less/progress-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/less/progress-bar.less -------------------------------------------------------------------------------- /frontend/lk/less/restore-password.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/less/restore-password.less -------------------------------------------------------------------------------- /frontend/lk/less/scrollbars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/less/scrollbars.less -------------------------------------------------------------------------------- /frontend/lk/less/settings.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/less/settings.less -------------------------------------------------------------------------------- /frontend/lk/less/support.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/less/support.less -------------------------------------------------------------------------------- /frontend/lk/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/less/tables.less -------------------------------------------------------------------------------- /frontend/lk/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/less/variables.less -------------------------------------------------------------------------------- /frontend/lk/lib/newsService/newsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/lib/newsService/newsService.js -------------------------------------------------------------------------------- /frontend/lk/lib/payService/payService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/lib/payService/payService.js -------------------------------------------------------------------------------- /frontend/lk/lib/userService/userService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/lib/userService/userService.js -------------------------------------------------------------------------------- /frontend/lk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/package.json -------------------------------------------------------------------------------- /frontend/lk/src/accountInfo/accountInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/accountInfo/accountInfo.js -------------------------------------------------------------------------------- /frontend/lk/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/app.js -------------------------------------------------------------------------------- /frontend/lk/src/authorization/authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/authorization/authorization.js -------------------------------------------------------------------------------- /frontend/lk/src/cards/CardsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/cards/CardsCtrl.js -------------------------------------------------------------------------------- /frontend/lk/src/cards/cards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/cards/cards.js -------------------------------------------------------------------------------- /frontend/lk/src/cards/cards.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/cards/cards.tpl.html -------------------------------------------------------------------------------- /frontend/lk/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/config.js -------------------------------------------------------------------------------- /frontend/lk/src/confirmation/confirmation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/confirmation/confirmation.js -------------------------------------------------------------------------------- /frontend/lk/src/const/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/const/const.js -------------------------------------------------------------------------------- /frontend/lk/src/const/defaultLocalConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/const/defaultLocalConfig.js -------------------------------------------------------------------------------- /frontend/lk/src/header/header-col-1.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/header/header-col-1.tpl.html -------------------------------------------------------------------------------- /frontend/lk/src/header/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/header/header.js -------------------------------------------------------------------------------- /frontend/lk/src/header/header.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/header/header.tpl.html -------------------------------------------------------------------------------- /frontend/lk/src/horizon/horizon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/horizon/horizon.js -------------------------------------------------------------------------------- /frontend/lk/src/horizon/horizon.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/horizon/horizon.tpl.html -------------------------------------------------------------------------------- /frontend/lk/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/index.html -------------------------------------------------------------------------------- /frontend/lk/src/layouts/col-1.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/layouts/col-1.tpl.html -------------------------------------------------------------------------------- /frontend/lk/src/layouts/col-2.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/layouts/col-2.tpl.html -------------------------------------------------------------------------------- /frontend/lk/src/main/MainCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/main/MainCtrl.js -------------------------------------------------------------------------------- /frontend/lk/src/main/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/main/main.js -------------------------------------------------------------------------------- /frontend/lk/src/main/main.limits.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/main/main.limits.tpl.html -------------------------------------------------------------------------------- /frontend/lk/src/main/main.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/main/main.tpl.html -------------------------------------------------------------------------------- /frontend/lk/src/news/NewsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/news/NewsCtrl.js -------------------------------------------------------------------------------- /frontend/lk/src/news/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/news/news.js -------------------------------------------------------------------------------- /frontend/lk/src/news/news.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/news/news.tpl.html -------------------------------------------------------------------------------- /frontend/lk/src/openstack/openstack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/openstack/openstack.js -------------------------------------------------------------------------------- /frontend/lk/src/openstack/openstack.main.tpl.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /frontend/lk/src/pay/PayCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/pay/PayCtrl.js -------------------------------------------------------------------------------- /frontend/lk/src/pay/pay.cards.partial.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/pay/pay.cards.partial.tpl.html -------------------------------------------------------------------------------- /frontend/lk/src/pay/pay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/pay/pay.js -------------------------------------------------------------------------------- /frontend/lk/src/pay/pay.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/pay/pay.tpl.html -------------------------------------------------------------------------------- /frontend/lk/src/production/Production2Ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/production/Production2Ctrl.js -------------------------------------------------------------------------------- /frontend/lk/src/production/ProductionCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/production/ProductionCtrl.js -------------------------------------------------------------------------------- /frontend/lk/src/production/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/production/production.js -------------------------------------------------------------------------------- /frontend/lk/src/production/production.step2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/production/production.step2.js -------------------------------------------------------------------------------- /frontend/lk/src/production/production.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/production/production.tpl.html -------------------------------------------------------------------------------- /frontend/lk/src/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/run.js -------------------------------------------------------------------------------- /frontend/lk/src/services/ServicesCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/services/ServicesCtrl.js -------------------------------------------------------------------------------- /frontend/lk/src/services/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/services/services.js -------------------------------------------------------------------------------- /frontend/lk/src/services/services.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/services/services.tpl.html -------------------------------------------------------------------------------- /frontend/lk/src/setPassword/SetPasswordCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/setPassword/SetPasswordCtrl.js -------------------------------------------------------------------------------- /frontend/lk/src/setPassword/setPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/setPassword/setPassword.js -------------------------------------------------------------------------------- /frontend/lk/src/settings/SettingsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/settings/SettingsCtrl.js -------------------------------------------------------------------------------- /frontend/lk/src/settings/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/settings/settings.js -------------------------------------------------------------------------------- /frontend/lk/src/settings/settings.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/settings/settings.tpl.html -------------------------------------------------------------------------------- /frontend/lk/src/sidemenu/sidemenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/sidemenu/sidemenu.js -------------------------------------------------------------------------------- /frontend/lk/src/sidemenu/sidemenu.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/sidemenu/sidemenu.tpl.html -------------------------------------------------------------------------------- /frontend/lk/src/signin/SigninCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/signin/SigninCtrl.js -------------------------------------------------------------------------------- /frontend/lk/src/signin/signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/signin/signin.js -------------------------------------------------------------------------------- /frontend/lk/src/signin/signin.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/signin/signin.tpl.html -------------------------------------------------------------------------------- /frontend/lk/src/signout/SignoutCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/signout/SignoutCtrl.js -------------------------------------------------------------------------------- /frontend/lk/src/signout/signout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/signout/signout.js -------------------------------------------------------------------------------- /frontend/lk/src/signup/SignupCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/signup/SignupCtrl.js -------------------------------------------------------------------------------- /frontend/lk/src/signup/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/signup/signup.js -------------------------------------------------------------------------------- /frontend/lk/src/signup/signup.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/signup/signup.tpl.html -------------------------------------------------------------------------------- /frontend/lk/src/states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/states.js -------------------------------------------------------------------------------- /frontend/lk/src/statistics/StatisticsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/statistics/StatisticsCtrl.js -------------------------------------------------------------------------------- /frontend/lk/src/statistics/statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/statistics/statistics.js -------------------------------------------------------------------------------- /frontend/lk/src/statistics/statistics.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/statistics/statistics.tpl.html -------------------------------------------------------------------------------- /frontend/lk/src/support/SupportCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/support/SupportCtrl.js -------------------------------------------------------------------------------- /frontend/lk/src/support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/support/support.js -------------------------------------------------------------------------------- /frontend/lk/src/support/support.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/support/support.tpl.html -------------------------------------------------------------------------------- /frontend/lk/src/transactions/transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/transactions/transactions.js -------------------------------------------------------------------------------- /frontend/lk/src/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/src/vendor.js -------------------------------------------------------------------------------- /frontend/lk/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/lk/webpack.config.js -------------------------------------------------------------------------------- /frontend/maintenance/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/maintenance/.editorconfig -------------------------------------------------------------------------------- /frontend/maintenance/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/maintenance/build.js -------------------------------------------------------------------------------- /frontend/maintenance/index.dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/maintenance/index.dev.html -------------------------------------------------------------------------------- /frontend/maintenance/index.prod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/maintenance/index.prod.html -------------------------------------------------------------------------------- /frontend/maintenance/index.qa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/maintenance/index.qa.html -------------------------------------------------------------------------------- /frontend/maintenance/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/maintenance/src/index.html -------------------------------------------------------------------------------- /frontend/maintenance/targets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/maintenance/targets.json -------------------------------------------------------------------------------- /frontend/shared/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/.editorconfig -------------------------------------------------------------------------------- /frontend/shared/appLocale/appLocale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/appLocale/appLocale.js -------------------------------------------------------------------------------- /frontend/shared/appLocale/appLocale.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/appLocale/appLocale.spec.js -------------------------------------------------------------------------------- /frontend/shared/bsDateRange/bsDateRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsDateRange/bsDateRange.js -------------------------------------------------------------------------------- /frontend/shared/bsDomainName/bsDomainName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsDomainName/bsDomainName.js -------------------------------------------------------------------------------- /frontend/shared/bsDynamicName/bsDynamicName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsDynamicName/bsDynamicName.js -------------------------------------------------------------------------------- /frontend/shared/bsEndWith/bsEndWith.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsEndWith/bsEndWith.js -------------------------------------------------------------------------------- /frontend/shared/bsGrid/BsGridCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsGrid/BsGridCtrl.js -------------------------------------------------------------------------------- /frontend/shared/bsGrid/Column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsGrid/Column.js -------------------------------------------------------------------------------- /frontend/shared/bsGrid/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsGrid/index.js -------------------------------------------------------------------------------- /frontend/shared/bsGrid/templates/cell.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsGrid/templates/cell.tpl.html -------------------------------------------------------------------------------- /frontend/shared/bsGrid/templates/grid.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsGrid/templates/grid.tpl.html -------------------------------------------------------------------------------- /frontend/shared/bsHasError/bsHasError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsHasError/bsHasError.js -------------------------------------------------------------------------------- /frontend/shared/bsHasError/bsHasError.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsHasError/bsHasError.spec.js -------------------------------------------------------------------------------- /frontend/shared/bsMatch/bsMatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsMatch/bsMatch.js -------------------------------------------------------------------------------- /frontend/shared/bsMatch/bsMatch.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsMatch/bsMatch.spec.js -------------------------------------------------------------------------------- /frontend/shared/bsPhoneInput/bsPhoneInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsPhoneInput/bsPhoneInput.js -------------------------------------------------------------------------------- /frontend/shared/bsProgressbar/bsProgressbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsProgressbar/bsProgressbar.js -------------------------------------------------------------------------------- /frontend/shared/bsTable/TableColumn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsTable/TableColumn.js -------------------------------------------------------------------------------- /frontend/shared/bsTable/bsTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsTable/bsTable.js -------------------------------------------------------------------------------- /frontend/shared/bsTable/bsTable.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsTable/bsTable.tpl.html -------------------------------------------------------------------------------- /frontend/shared/bsTable/bsTableCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsTable/bsTableCell.js -------------------------------------------------------------------------------- /frontend/shared/bsTable/bsTableSimple.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsTable/bsTableSimple.tpl.html -------------------------------------------------------------------------------- /frontend/shared/bsTable/cell.partial.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsTable/cell.partial.tpl.html -------------------------------------------------------------------------------- /frontend/shared/bsTable/cell.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsTable/cell.tpl.html -------------------------------------------------------------------------------- /frontend/shared/bsTable/tableColumn.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsTable/tableColumn.spec.js -------------------------------------------------------------------------------- /frontend/shared/bsUnfocusable/bsUnfocusable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bsUnfocusable/bsUnfocusable.js -------------------------------------------------------------------------------- /frontend/shared/bytesFilter/bytesFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/bytesFilter/bytesFilter.js -------------------------------------------------------------------------------- /frontend/shared/constants/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/constants/constants.js -------------------------------------------------------------------------------- /frontend/shared/dialog/dialog.alert.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/dialog/dialog.alert.tpl.html -------------------------------------------------------------------------------- /frontend/shared/dialog/dialog.confirm.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/dialog/dialog.confirm.tpl.html -------------------------------------------------------------------------------- /frontend/shared/dialog/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/dialog/dialog.js -------------------------------------------------------------------------------- /frontend/shared/dialog/dialog.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/dialog/dialog.spec.js -------------------------------------------------------------------------------- /frontend/shared/error/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/error/error.js -------------------------------------------------------------------------------- /frontend/shared/error/error.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/error/error.less -------------------------------------------------------------------------------- /frontend/shared/error/error.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/error/error.tpl.html -------------------------------------------------------------------------------- /frontend/shared/error/layout.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/error/layout.tpl.html -------------------------------------------------------------------------------- /frontend/shared/fileSaver/fileSaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/fileSaver/fileSaver.js -------------------------------------------------------------------------------- /frontend/shared/fileSaver/fileSaver.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/fileSaver/fileSaver.spec.js -------------------------------------------------------------------------------- /frontend/shared/less/bootstrap-override.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/less/bootstrap-override.less -------------------------------------------------------------------------------- /frontend/shared/less/bsGrid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/less/bsGrid.less -------------------------------------------------------------------------------- /frontend/shared/less/button-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/less/button-group.less -------------------------------------------------------------------------------- /frontend/shared/less/elements.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/less/elements.less -------------------------------------------------------------------------------- /frontend/shared/less/fonts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/less/fonts.less -------------------------------------------------------------------------------- /frontend/shared/less/form-elements.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/less/form-elements.less -------------------------------------------------------------------------------- /frontend/shared/less/header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/less/header.less -------------------------------------------------------------------------------- /frontend/shared/less/hoverEffects.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/less/hoverEffects.less -------------------------------------------------------------------------------- /frontend/shared/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/less/icons.less -------------------------------------------------------------------------------- /frontend/shared/less/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/less/modals.less -------------------------------------------------------------------------------- /frontend/shared/less/sidemenu.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/less/sidemenu.less -------------------------------------------------------------------------------- /frontend/shared/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/less/tables.less -------------------------------------------------------------------------------- /frontend/shared/less/tags-input.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/less/tags-input.less -------------------------------------------------------------------------------- /frontend/shared/less/toaster-override.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/less/toaster-override.less -------------------------------------------------------------------------------- /frontend/shared/less/triangles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/less/triangles.less -------------------------------------------------------------------------------- /frontend/shared/localStorage/localStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/localStorage/localStorage.js -------------------------------------------------------------------------------- /frontend/shared/moneyFilter/moneyFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/moneyFilter/moneyFilter.js -------------------------------------------------------------------------------- /frontend/shared/openstackService/Cinder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/openstackService/Cinder.js -------------------------------------------------------------------------------- /frontend/shared/openstackService/Designate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/openstackService/Designate.js -------------------------------------------------------------------------------- /frontend/shared/openstackService/Glance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/openstackService/Glance.js -------------------------------------------------------------------------------- /frontend/shared/openstackService/Keystone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/openstackService/Keystone.js -------------------------------------------------------------------------------- /frontend/shared/openstackService/Mistral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/openstackService/Mistral.js -------------------------------------------------------------------------------- /frontend/shared/openstackService/Neutron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/openstackService/Neutron.js -------------------------------------------------------------------------------- /frontend/shared/openstackService/Nova.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/openstackService/Nova.js -------------------------------------------------------------------------------- /frontend/shared/openstackService/ipV6parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/openstackService/ipV6parser.js -------------------------------------------------------------------------------- /frontend/shared/pickFilter/pickFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/pickFilter/pickFilter.js -------------------------------------------------------------------------------- /frontend/shared/pickFilter/pickFilter.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/pickFilter/pickFilter.spec.js -------------------------------------------------------------------------------- /frontend/shared/pollService/pollService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/pollService/pollService.js -------------------------------------------------------------------------------- /frontend/shared/reportService/reportService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/reportService/reportService.js -------------------------------------------------------------------------------- /frontend/shared/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/selection.json -------------------------------------------------------------------------------- /frontend/shared/skyline/admin/projects-table.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/shared/skyline/admin/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/admin/projects.js -------------------------------------------------------------------------------- /frontend/shared/skyline/dns/dns.list.state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/dns/dns.list.state.js -------------------------------------------------------------------------------- /frontend/shared/skyline/dns/dns.listCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/dns/dns.listCtrl.js -------------------------------------------------------------------------------- /frontend/shared/skyline/dns/dns.new.state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/dns/dns.new.state.js -------------------------------------------------------------------------------- /frontend/shared/skyline/dns/dns.newCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/dns/dns.newCtrl.js -------------------------------------------------------------------------------- /frontend/shared/skyline/dns/dns.recordsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/dns/dns.recordsCtrl.js -------------------------------------------------------------------------------- /frontend/shared/skyline/dns/domains.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/dns/domains.tpl.html -------------------------------------------------------------------------------- /frontend/shared/skyline/dns/records.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/dns/records.tpl.html -------------------------------------------------------------------------------- /frontend/shared/skyline/dns/skyline.dns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/dns/skyline.dns.js -------------------------------------------------------------------------------- /frontend/shared/skyline/images/list.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/images/list.tpl.html -------------------------------------------------------------------------------- /frontend/shared/skyline/images/new.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/images/new.tpl.html -------------------------------------------------------------------------------- /frontend/shared/skyline/network/ips.newCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/network/ips.newCtrl.js -------------------------------------------------------------------------------- /frontend/shared/skyline/network/ips.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/network/ips.tpl.html -------------------------------------------------------------------------------- /frontend/shared/skyline/network/skyline.ips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/network/skyline.ips.js -------------------------------------------------------------------------------- /frontend/shared/skyline/ptr/ptr.edit.state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/ptr/ptr.edit.state.js -------------------------------------------------------------------------------- /frontend/shared/skyline/ptr/ptr.edit.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/ptr/ptr.edit.tpl.html -------------------------------------------------------------------------------- /frontend/shared/skyline/ptr/ptr.editCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/ptr/ptr.editCtrl.js -------------------------------------------------------------------------------- /frontend/shared/skyline/ptr/ptr.list.state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/ptr/ptr.list.state.js -------------------------------------------------------------------------------- /frontend/shared/skyline/ptr/ptr.list.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/ptr/ptr.list.tpl.html -------------------------------------------------------------------------------- /frontend/shared/skyline/ptr/ptr.listCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/ptr/ptr.listCtrl.js -------------------------------------------------------------------------------- /frontend/shared/skyline/ptr/ptr.new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/ptr/ptr.new.js -------------------------------------------------------------------------------- /frontend/shared/skyline/ptr/ptr.new.state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/ptr/ptr.new.state.js -------------------------------------------------------------------------------- /frontend/shared/skyline/ptr/ptr.new.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/ptr/ptr.new.tpl.html -------------------------------------------------------------------------------- /frontend/shared/skyline/ptr/skyline.ptr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/ptr/skyline.ptr.js -------------------------------------------------------------------------------- /frontend/shared/skyline/skyline.events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/skyline.events.js -------------------------------------------------------------------------------- /frontend/shared/skyline/volumes/volumes.new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/skyline/volumes/volumes.new.js -------------------------------------------------------------------------------- /frontend/shared/textPreview/textPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/textPreview/textPreview.js -------------------------------------------------------------------------------- /frontend/shared/trustFilter/trustFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/trustFilter/trustFilter.js -------------------------------------------------------------------------------- /frontend/shared/urlParser/URLParser.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/urlParser/URLParser.spec.js -------------------------------------------------------------------------------- /frontend/shared/urlParser/urlParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/shared/urlParser/urlParser.js -------------------------------------------------------------------------------- /frontend/skyline/.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/.bowerrc -------------------------------------------------------------------------------- /frontend/skyline/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/.editorconfig -------------------------------------------------------------------------------- /frontend/skyline/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/.eslintrc -------------------------------------------------------------------------------- /frontend/skyline/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | vendor 3 | bin 4 | docs 5 | backend.config.local.js 6 | -------------------------------------------------------------------------------- /frontend/skyline/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/.jscsrc -------------------------------------------------------------------------------- /frontend/skyline/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/.jshintrc -------------------------------------------------------------------------------- /frontend/skyline/assets/ASD_Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/assets/ASD_Logo.svg -------------------------------------------------------------------------------- /frontend/skyline/assets/NoData.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/assets/NoData.svg -------------------------------------------------------------------------------- /frontend/skyline/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/assets/favicon.ico -------------------------------------------------------------------------------- /frontend/skyline/assets/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/assets/fonts/LICENSE.txt -------------------------------------------------------------------------------- /frontend/skyline/assets/icons/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/assets/icons/icomoon.eot -------------------------------------------------------------------------------- /frontend/skyline/assets/icons/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/assets/icons/icomoon.svg -------------------------------------------------------------------------------- /frontend/skyline/assets/icons/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/assets/icons/icomoon.ttf -------------------------------------------------------------------------------- /frontend/skyline/assets/icons/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/assets/icons/icomoon.woff -------------------------------------------------------------------------------- /frontend/skyline/assets/logo-beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/assets/logo-beta.png -------------------------------------------------------------------------------- /frontend/skyline/assets/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/assets/logo-small.png -------------------------------------------------------------------------------- /frontend/skyline/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/assets/logo.png -------------------------------------------------------------------------------- /frontend/skyline/backend.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/backend.config.js -------------------------------------------------------------------------------- /frontend/skyline/backend_proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/backend_proxy.js -------------------------------------------------------------------------------- /frontend/skyline/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/bower.json -------------------------------------------------------------------------------- /frontend/skyline/build.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/build.config.js -------------------------------------------------------------------------------- /frontend/skyline/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/config.js -------------------------------------------------------------------------------- /frontend/skyline/gulp/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/gulp/config.js -------------------------------------------------------------------------------- /frontend/skyline/gulp/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/gulp/server.js -------------------------------------------------------------------------------- /frontend/skyline/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/gulpfile.js -------------------------------------------------------------------------------- /frontend/skyline/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/karma.conf.js -------------------------------------------------------------------------------- /frontend/skyline/less/authorization.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/less/authorization.less -------------------------------------------------------------------------------- /frontend/skyline/less/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/less/common.less -------------------------------------------------------------------------------- /frontend/skyline/less/fonts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/less/fonts.less -------------------------------------------------------------------------------- /frontend/skyline/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/less/forms.less -------------------------------------------------------------------------------- /frontend/skyline/less/layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/less/layout.less -------------------------------------------------------------------------------- /frontend/skyline/less/loading-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/less/loading-bar.less -------------------------------------------------------------------------------- /frontend/skyline/less/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/less/main.less -------------------------------------------------------------------------------- /frontend/skyline/less/openstack.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/less/openstack.less -------------------------------------------------------------------------------- /frontend/skyline/less/scrollbars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/less/scrollbars.less -------------------------------------------------------------------------------- /frontend/skyline/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/less/tables.less -------------------------------------------------------------------------------- /frontend/skyline/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/less/variables.less -------------------------------------------------------------------------------- /frontend/skyline/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/package.json -------------------------------------------------------------------------------- /frontend/skyline/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/app.js -------------------------------------------------------------------------------- /frontend/skyline/src/auth/AuthorizationCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/auth/AuthorizationCtrl.js -------------------------------------------------------------------------------- /frontend/skyline/src/auth/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/auth/auth.js -------------------------------------------------------------------------------- /frontend/skyline/src/auth/auth.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/auth/auth.tpl.html -------------------------------------------------------------------------------- /frontend/skyline/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/config.js -------------------------------------------------------------------------------- /frontend/skyline/src/const/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/const/const.js -------------------------------------------------------------------------------- /frontend/skyline/src/edit/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/edit/edit.js -------------------------------------------------------------------------------- /frontend/skyline/src/edit/edit.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/edit/edit.tpl.html -------------------------------------------------------------------------------- /frontend/skyline/src/header/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/header/header.js -------------------------------------------------------------------------------- /frontend/skyline/src/header/header.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/header/header.tpl.html -------------------------------------------------------------------------------- /frontend/skyline/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/index.html -------------------------------------------------------------------------------- /frontend/skyline/src/layouts/col-1.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/layouts/col-1.tpl.html -------------------------------------------------------------------------------- /frontend/skyline/src/layouts/col-2.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/layouts/col-2.tpl.html -------------------------------------------------------------------------------- /frontend/skyline/src/logout/logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/logout/logout.js -------------------------------------------------------------------------------- /frontend/skyline/src/openstack/openstack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/openstack/openstack.js -------------------------------------------------------------------------------- /frontend/skyline/src/openstack/openstack.main.tpl.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /frontend/skyline/src/ptr/ptr.new.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/ptr/ptr.new.tpl.html -------------------------------------------------------------------------------- /frontend/skyline/src/recreate/RecreateCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/recreate/RecreateCtrl.js -------------------------------------------------------------------------------- /frontend/skyline/src/recreate/recreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/recreate/recreate.js -------------------------------------------------------------------------------- /frontend/skyline/src/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/run.js -------------------------------------------------------------------------------- /frontend/skyline/src/sidemenu/sidemenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/sidemenu/sidemenu.js -------------------------------------------------------------------------------- /frontend/skyline/src/states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/states.js -------------------------------------------------------------------------------- /frontend/skyline/src/status/StatusCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/status/StatusCtrl.js -------------------------------------------------------------------------------- /frontend/skyline/src/status/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/status/status.js -------------------------------------------------------------------------------- /frontend/skyline/src/status/status.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/status/status.tpl.html -------------------------------------------------------------------------------- /frontend/skyline/src/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/src/vendor.js -------------------------------------------------------------------------------- /frontend/skyline/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/frontend/skyline/webpack.config.js -------------------------------------------------------------------------------- /lib/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/lib/lib/__init__.py -------------------------------------------------------------------------------- /lib/lib/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/lib/lib/logger.py -------------------------------------------------------------------------------- /lib/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/lib/setup.py -------------------------------------------------------------------------------- /light_tests/light_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/light_tests/light_tests/__init__.py -------------------------------------------------------------------------------- /light_tests/light_tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/light_tests/light_tests/base.py -------------------------------------------------------------------------------- /light_tests/light_tests/clients/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /light_tests/light_tests/clients/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/light_tests/light_tests/clients/backend.py -------------------------------------------------------------------------------- /light_tests/light_tests/clients/openstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/light_tests/light_tests/clients/openstack.py -------------------------------------------------------------------------------- /light_tests/light_tests/config_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/light_tests/light_tests/config_template.yaml -------------------------------------------------------------------------------- /light_tests/light_tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/light_tests/light_tests/tests.py -------------------------------------------------------------------------------- /light_tests/light_tests/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/light_tests/light_tests/tools.py -------------------------------------------------------------------------------- /light_tests/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/light_tests/setup.py -------------------------------------------------------------------------------- /openstack/ceilometer_plugin/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/openstack/ceilometer_plugin/README.rst -------------------------------------------------------------------------------- /openstack/ceilometer_plugin/ceilometer_metering_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /openstack/ceilometer_plugin/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/openstack/ceilometer_plugin/setup.py -------------------------------------------------------------------------------- /openstack/os_credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/openstack/os_credentials.yaml -------------------------------------------------------------------------------- /openstack/sample_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/openstack/sample_creator.py -------------------------------------------------------------------------------- /openstack_client.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/openstack_client.cfg -------------------------------------------------------------------------------- /openstack_client/openstack_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/openstack_client/openstack_client/__init__.py -------------------------------------------------------------------------------- /openstack_client/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/openstack_client/setup.py -------------------------------------------------------------------------------- /tests.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests.cfg -------------------------------------------------------------------------------- /tests/api_tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/api_tests/admin_backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/api_tests/admin_backend/__init__.py -------------------------------------------------------------------------------- /tests/api_tests/admin_backend/test_currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/api_tests/admin_backend/test_currency.py -------------------------------------------------------------------------------- /tests/api_tests/admin_backend/test_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/api_tests/admin_backend/test_news.py -------------------------------------------------------------------------------- /tests/api_tests/admin_backend/test_payments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/api_tests/admin_backend/test_payments.py -------------------------------------------------------------------------------- /tests/api_tests/admin_backend/test_quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/api_tests/admin_backend/test_quotes.py -------------------------------------------------------------------------------- /tests/api_tests/admin_backend/test_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/api_tests/admin_backend/test_reports.py -------------------------------------------------------------------------------- /tests/api_tests/admin_backend/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/api_tests/admin_backend/test_service.py -------------------------------------------------------------------------------- /tests/api_tests/admin_backend/test_tariff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/api_tests/admin_backend/test_tariff.py -------------------------------------------------------------------------------- /tests/api_tests/admin_backend/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/api_tests/admin_backend/test_user.py -------------------------------------------------------------------------------- /tests/api_tests/admin_backend/test_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/api_tests/admin_backend/test_utility.py -------------------------------------------------------------------------------- /tests/api_tests/cabinet_backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/api_tests/cabinet_backend/__init__.py -------------------------------------------------------------------------------- /tests/api_tests/openstack_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/api_tests/openstack_tests/__init__.py -------------------------------------------------------------------------------- /tests/api_tests/test_api_fields_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/api_tests/test_api_fields_validators.py -------------------------------------------------------------------------------- /tests/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/clients.py -------------------------------------------------------------------------------- /tests/configs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/configs/__init__.py -------------------------------------------------------------------------------- /tests/configs/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/configs/default.yaml -------------------------------------------------------------------------------- /tests/configs/logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/configs/logging.yaml -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/entities.py -------------------------------------------------------------------------------- /tests/long_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/long_tests/test_openstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/long_tests/test_openstack.py -------------------------------------------------------------------------------- /tests/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/setup.py -------------------------------------------------------------------------------- /tests/stress_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/stress_tests/mock_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/stress_tests/mock_config.yaml -------------------------------------------------------------------------------- /tests/stress_tests/test_falling_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/stress_tests/test_falling_database.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/utils/base.py -------------------------------------------------------------------------------- /tests/utils/context_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/utils/context_managers.py -------------------------------------------------------------------------------- /tests/utils/mailtrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/utils/mailtrap.py -------------------------------------------------------------------------------- /tests/utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/tests/utils/tools.py -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deti/boss/HEAD/version --------------------------------------------------------------------------------