├── .gitignore ├── .gitreview ├── .mailmap ├── .pylintrc ├── .tx └── config ├── CONTRIBUTING.rst ├── HACKING.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── README.rst ├── doc ├── Makefile └── source │ ├── conf.py │ ├── contributing.rst │ ├── faq.rst │ ├── glossary.rst │ ├── index.rst │ ├── intro.rst │ ├── quickstart.rst │ ├── ref │ ├── context_processors.rst │ ├── decorators.rst │ ├── exceptions.rst │ ├── forms.rst │ ├── horizon.rst │ ├── local_conf.rst │ ├── middleware.rst │ ├── run_tests.rst │ ├── tables.rst │ ├── tabs.rst │ ├── test.rst │ └── workflows.rst │ ├── releases │ ├── 2012_1.rst │ ├── 2012_2.rst │ ├── 2013_1.rst │ ├── 2013_2.rst │ ├── 2014_1.rst │ └── 2014_2.rst │ ├── testing.rst │ └── topics │ ├── customizing.rst │ ├── deployment.rst │ ├── install.rst │ ├── policy.rst │ ├── settings.rst │ ├── tables.rst │ ├── testing.rst │ ├── tutorial.rst │ └── workflows.rst ├── horizon ├── __init__.py ├── base.py ├── browsers │ ├── __init__.py │ ├── base.py │ ├── breadcrumb.py │ └── views.py ├── conf │ ├── __init__.py │ ├── dash_template │ │ ├── __init__.py │ │ ├── dashboard.py.tmpl │ │ ├── models.py │ │ ├── static │ │ │ └── dash_name │ │ │ │ ├── css │ │ │ │ └── dash_name.css │ │ │ │ └── js │ │ │ │ └── dash_name.js │ │ └── templates │ │ │ └── dash_name │ │ │ └── base.html │ ├── default.py │ └── panel_template │ │ ├── __init__.py │ │ ├── models.py │ │ ├── panel.py.tmpl │ │ ├── templates │ │ └── panel_name │ │ │ └── index.html │ │ ├── tests.py.tmpl │ │ ├── urls.py │ │ └── views.py ├── context_processors.py ├── contrib │ ├── __init__.py │ └── bootstrap_datepicker.py ├── decorators.py ├── exceptions.py ├── forms │ ├── __init__.py │ ├── base.py │ ├── fields.py │ └── views.py ├── loaders.py ├── locale │ ├── ca │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── cs │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── en_AU │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── en_GB │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── es_MX │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fi_FI │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── fil │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── he │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── hi │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── hu │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── id │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── it │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── ka_GE │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── ko_KR │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── nl_NL │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── pa_IN │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── pl_PL │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── pt │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── sl_SI │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── sr │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── te_IN │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── tr_TR │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── zh_CN │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ └── zh_TW │ │ └── LC_MESSAGES │ │ ├── django.po │ │ └── djangojs.po ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── startdash.py │ │ └── startpanel.py ├── messages.py ├── middleware.py ├── models.py ├── site_urls.py ├── static │ └── horizon │ │ ├── js │ │ ├── angular │ │ │ ├── controllers │ │ │ │ ├── dummy.js │ │ │ │ ├── metadata-widget-controller.js │ │ │ │ └── namespace-controller.js │ │ │ ├── directives │ │ │ │ └── forms.js │ │ │ ├── horizon.conf.js │ │ │ ├── horizon.js │ │ │ └── services │ │ │ │ └── horizon.utils.js │ │ ├── horizon.accordion_nav.js │ │ ├── horizon.communication.js │ │ ├── horizon.d3barchart.js │ │ ├── horizon.d3linechart.js │ │ ├── horizon.d3piechart.js │ │ ├── horizon.firewalls.js │ │ ├── horizon.forms.js │ │ ├── horizon.formset_table.js │ │ ├── horizon.heattop.js │ │ ├── horizon.images.js │ │ ├── horizon.instances.js │ │ ├── horizon.js │ │ ├── horizon.membership.js │ │ ├── horizon.messages.js │ │ ├── horizon.modals.js │ │ ├── horizon.networktopology.js │ │ ├── horizon.quota.js │ │ ├── horizon.tables.js │ │ ├── horizon.tables_inline_edit.js │ │ ├── horizon.tabs.js │ │ ├── horizon.templates.js │ │ └── horizon.users.js │ │ ├── lib │ │ └── jquery │ │ │ └── jquery.bootstrap.wizard.js │ │ └── tests │ │ ├── instances.js │ │ ├── jasmine │ │ ├── metadataWidgetControllerSpec.js │ │ └── utilsSpec.js │ │ ├── messages.js │ │ ├── modals.js │ │ ├── tables.js │ │ └── templates.js ├── tables │ ├── __init__.py │ ├── actions.py │ ├── base.py │ ├── formset.py │ └── views.py ├── tabs │ ├── __init__.py │ ├── base.py │ └── views.py ├── templates │ ├── _header.html │ ├── _stylesheets.html │ ├── auth │ │ ├── _login.html │ │ └── login.html │ ├── base.html │ ├── horizon │ │ ├── _accordion_nav.html │ │ ├── _conf.html │ │ ├── _custom_head_js.html │ │ ├── _custom_meta.html │ │ ├── _messages.html │ │ ├── _nav_list.html │ │ ├── _scripts.html │ │ ├── _subnav_list.html │ │ ├── client_side │ │ │ ├── _alert_message.html │ │ │ ├── _loading.html │ │ │ ├── _membership.html │ │ │ ├── _modal.html │ │ │ ├── _script_loader.html │ │ │ ├── _table_row.html │ │ │ ├── template.html │ │ │ └── templates.html │ │ ├── common │ │ │ ├── _breadcrumb.html │ │ │ ├── _data_table.html │ │ │ ├── _data_table_cell.html │ │ │ ├── _data_table_row.html │ │ │ ├── _data_table_row_action_dropdown.html │ │ │ ├── _data_table_row_action_row.html │ │ │ ├── _data_table_row_actions_dropdown.html │ │ │ ├── _data_table_row_actions_row.html │ │ │ ├── _data_table_table_action.html │ │ │ ├── _data_table_table_actions.html │ │ │ ├── _detail_table.html │ │ │ ├── _domain_page_header.html │ │ │ ├── _form_errors.html │ │ │ ├── _form_field.html │ │ │ ├── _form_fields.html │ │ │ ├── _formset_table.html │ │ │ ├── _formset_table_row.html │ │ │ ├── _horizontal_field.html │ │ │ ├── _horizontal_fields.html │ │ │ ├── _limit_summary.html │ │ │ ├── _modal.html │ │ │ ├── _modal_form.html │ │ │ ├── _modal_form_add_members.html │ │ │ ├── _modal_form_update_metadata.html │ │ │ ├── _page_header.html │ │ │ ├── _region_selector.html │ │ │ ├── _resource_browser.html │ │ │ ├── _sidebar.html │ │ │ ├── _sidebar_module.html │ │ │ ├── _tab_group.html │ │ │ ├── _usage_summary.html │ │ │ ├── _workflow.html │ │ │ ├── _workflow_base.html │ │ │ ├── _workflow_step.html │ │ │ └── _workflow_step_update_members.html │ │ ├── jasmine │ │ │ ├── index.html │ │ │ └── jasmine.html │ │ └── qunit.html │ └── splash.html ├── templatetags │ ├── __init__.py │ ├── branding.py │ ├── form_helpers.py │ ├── horizon.py │ ├── parse_date.py │ ├── shellfilter.py │ ├── sizeformat.py │ └── truncate_filter.py ├── test │ ├── __init__.py │ ├── customization │ │ ├── __init__.py │ │ ├── cust_test1.py │ │ └── cust_test2.py │ ├── dummy_auth │ │ ├── __init__.py │ │ └── backend.py │ ├── helpers.py │ ├── jasmine │ │ ├── __init__.py │ │ ├── jasmine.py │ │ └── jasmine_tests.py │ ├── patches.py │ ├── settings.py │ ├── templates │ │ ├── 404.html │ │ ├── _tab.html │ │ ├── base-sidebar.html │ │ ├── registration │ │ │ └── login.html │ │ ├── tab_group.html │ │ └── workflow.html │ ├── test_dashboards │ │ ├── __init__.py │ │ ├── cats │ │ │ ├── __init__.py │ │ │ ├── dashboard.py │ │ │ ├── kittens │ │ │ │ ├── __init__.py │ │ │ │ ├── models.py │ │ │ │ ├── panel.py │ │ │ │ ├── templates │ │ │ │ │ └── kittens │ │ │ │ │ │ └── index.html │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── models.py │ │ │ ├── static │ │ │ │ └── cats │ │ │ │ │ ├── css │ │ │ │ │ └── cats.css │ │ │ │ │ └── js │ │ │ │ │ └── cats.js │ │ │ ├── templates │ │ │ │ └── cats │ │ │ │ │ └── base.html │ │ │ └── tigers │ │ │ │ ├── __init__.py │ │ │ │ ├── models.py │ │ │ │ ├── panel.py │ │ │ │ ├── templates │ │ │ │ └── tigers │ │ │ │ │ └── index.html │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ └── dogs │ │ │ ├── __init__.py │ │ │ ├── dashboard.py │ │ │ ├── models.py │ │ │ ├── puppies │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── tabs.py │ │ │ ├── templates │ │ │ │ └── puppies │ │ │ │ │ ├── index.html │ │ │ │ │ └── two_tabs.html │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── static │ │ │ └── dogs │ │ │ │ ├── css │ │ │ │ └── dogs.css │ │ │ │ └── js │ │ │ │ └── dogs.js │ │ │ └── templates │ │ │ └── dogs │ │ │ └── base.html │ ├── tests │ │ ├── __init__.py │ │ ├── base.py │ │ ├── exceptions.py │ │ ├── forms.py │ │ ├── messages.py │ │ ├── middleware.py │ │ ├── selenium_tests.py │ │ ├── tables.py │ │ ├── tabs.py │ │ ├── templatetags.py │ │ ├── utils.py │ │ └── workflows.py │ ├── urls.py │ ├── utils.py │ └── webdriver.py ├── utils │ ├── __init__.py │ ├── csvbase.py │ ├── filters.py │ ├── functions.py │ ├── html.py │ ├── memoized.py │ ├── secret_key.py │ ├── units.py │ ├── urlresolvers.py │ └── validators.py ├── version.py ├── views.py └── workflows │ ├── __init__.py │ ├── base.py │ └── views.py ├── manage.py ├── openstack-common.conf ├── openstack_dashboard ├── __init__.py ├── api │ ├── __init__.py │ ├── base.py │ ├── ceilometer.py │ ├── cinder.py │ ├── fwaas.py │ ├── glance.py │ ├── heat.py │ ├── keystone.py │ ├── lbaas.py │ ├── network.py │ ├── network_base.py │ ├── neutron.py │ ├── nova.py │ ├── sahara.py │ ├── swift.py │ ├── trove.py │ └── vpn.py ├── conf │ ├── cinder_policy.json │ ├── glance_policy.json │ ├── heat_policy.json │ ├── keystone_policy.json │ ├── neutron_policy.json │ └── nova_policy.json ├── context_processors.py ├── dashboards │ ├── __init__.py │ ├── admin │ │ ├── __init__.py │ │ ├── aggregates │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ ├── forms.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── templates │ │ │ │ └── aggregates │ │ │ │ │ ├── _update.html │ │ │ │ │ ├── _update_metadata.html │ │ │ │ │ ├── create.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manage_hosts.html │ │ │ │ │ ├── update.html │ │ │ │ │ └── update_metadata.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ └── workflows.py │ │ ├── avos │ │ │ ├── DEV_NOTES.md │ │ │ ├── Horizon.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── _gitignore │ │ │ ├── app.py │ │ │ ├── index.html │ │ │ ├── models.py │ │ │ ├── panel.py │ │ │ ├── panel.py.tmpl │ │ │ ├── res │ │ │ │ ├── AVOS-Graphics.svg │ │ │ │ ├── Fedora_logo.svg │ │ │ │ ├── centos.svg │ │ │ │ └── hadoop_elephant.ai │ │ │ ├── server │ │ │ ├── static │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ └── style.css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ ├── img │ │ │ │ │ ├── ciscologo.png │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── credentials.js │ │ │ │ │ ├── d3.js │ │ │ │ │ ├── d3.v3.min.js │ │ │ │ │ ├── heatmap.js │ │ │ │ │ ├── jquery-1.11.0.min.js │ │ │ │ │ ├── jquery-latest.js │ │ │ │ │ ├── jquery-layout-latest.js │ │ │ │ │ ├── jquery-ui-latest.js │ │ │ │ │ ├── jquery.dataTables.js │ │ │ │ │ ├── jquery.fittext.js │ │ │ │ │ ├── main.js │ │ │ │ │ └── rickshaw.js │ │ │ │ └── txt │ │ │ │ │ ├── Meter │ │ │ │ │ ├── Resource │ │ │ │ │ ├── Sample.txt │ │ │ │ │ ├── ceilometercommands.py │ │ │ │ │ ├── meter-list.json │ │ │ │ │ └── statistics-list.json │ │ │ ├── templates │ │ │ │ └── avos │ │ │ │ │ └── index.html │ │ │ ├── tests.py.tmpl │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── dashboard.py │ │ ├── defaults │ │ │ ├── __init__.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── tabs.py │ │ │ ├── templates │ │ │ │ └── defaults │ │ │ │ │ └── index.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ └── workflows.py │ │ ├── flavors │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ ├── forms.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── templates │ │ │ │ └── flavors │ │ │ │ │ ├── _update_metadata.html │ │ │ │ │ ├── create.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── update.html │ │ │ │ │ └── update_metadata.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ └── workflows.py │ │ ├── hypervisors │ │ │ ├── __init__.py │ │ │ ├── compute │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── tables.py │ │ │ │ ├── tabs.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── tabs.py │ │ │ ├── templates │ │ │ │ └── hypervisors │ │ │ │ │ ├── compute │ │ │ │ │ ├── _disable_service.html │ │ │ │ │ ├── _evacuate_host.html │ │ │ │ │ ├── disable_service.html │ │ │ │ │ └── evacuate_host.html │ │ │ │ │ ├── detail.html │ │ │ │ │ └── index.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── images │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── templates │ │ │ │ └── images │ │ │ │ │ ├── _create.html │ │ │ │ │ ├── _update.html │ │ │ │ │ ├── _update_metadata.html │ │ │ │ │ ├── create.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── update.html │ │ │ │ │ └── update_metadata.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── info │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── tabs.py │ │ │ ├── templates │ │ │ │ └── info │ │ │ │ │ ├── _cell_status.html │ │ │ │ │ └── index.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── instances │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── templates │ │ │ │ └── instances │ │ │ │ │ ├── _live_migrate.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── live_migrate.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── metadata_defs │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ ├── forms.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── tabs.py │ │ │ ├── templates │ │ │ │ └── metadata_defs │ │ │ │ │ ├── _create.html │ │ │ │ │ ├── _detail_contents.html │ │ │ │ │ ├── _detail_overview.html │ │ │ │ │ ├── _resource_types.html │ │ │ │ │ ├── create.html │ │ │ │ │ ├── detail.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── resource_types.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── metering │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── tabs.py │ │ │ ├── templates │ │ │ │ └── metering │ │ │ │ │ ├── _daily.html │ │ │ │ │ ├── daily.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── stats.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── models.py │ │ ├── networks │ │ │ ├── __init__.py │ │ │ ├── agents │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── tables.py │ │ │ │ └── views.py │ │ │ ├── forms.py │ │ │ ├── panel.py │ │ │ ├── ports │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── tables.py │ │ │ │ ├── tabs.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── subnets │ │ │ │ ├── __init__.py │ │ │ │ ├── tables.py │ │ │ │ ├── urls.py │ │ │ │ ├── views.py │ │ │ │ └── workflows.py │ │ │ ├── tables.py │ │ │ ├── templates │ │ │ │ └── networks │ │ │ │ │ ├── _create.html │ │ │ │ │ ├── _update.html │ │ │ │ │ ├── agents │ │ │ │ │ ├── _add.html │ │ │ │ │ └── add.html │ │ │ │ │ ├── create.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── ports │ │ │ │ │ ├── _create.html │ │ │ │ │ ├── _update.html │ │ │ │ │ ├── create.html │ │ │ │ │ └── update.html │ │ │ │ │ ├── subnets │ │ │ │ │ └── index.html │ │ │ │ │ └── update.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── overview │ │ │ ├── __init__.py │ │ │ ├── panel.py │ │ │ ├── templates │ │ │ │ └── overview │ │ │ │ │ ├── usage.csv │ │ │ │ │ └── usage.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── routers │ │ │ ├── __init__.py │ │ │ ├── extensions │ │ │ │ ├── __init__.py │ │ │ │ └── routerrules │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── tables.py │ │ │ ├── forms.py │ │ │ ├── panel.py │ │ │ ├── ports │ │ │ │ ├── __init__.py │ │ │ │ ├── tables.py │ │ │ │ ├── tabs.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── tables.py │ │ │ ├── tabs.py │ │ │ ├── templates │ │ │ │ └── routers │ │ │ │ │ ├── _detail_overview.html │ │ │ │ │ ├── _update.html │ │ │ │ │ ├── detail.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── update.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ └── volumes │ │ │ ├── __init__.py │ │ │ ├── panel.py │ │ │ ├── snapshots │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── tables.py │ │ │ ├── tabs.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── tabs.py │ │ │ ├── templates │ │ │ └── volumes │ │ │ │ ├── index.html │ │ │ │ ├── snapshots │ │ │ │ ├── _detail_overview.html │ │ │ │ ├── _update_status.html │ │ │ │ └── update_status.html │ │ │ │ ├── volume_types │ │ │ │ ├── _associate_qos_spec.html │ │ │ │ ├── _create_qos_spec.html │ │ │ │ ├── _create_volume_type.html │ │ │ │ ├── _create_volume_type_encryption.html │ │ │ │ ├── _edit_qos_spec_consumer.html │ │ │ │ ├── _volume_encryption_type_detail.html │ │ │ │ ├── associate_qos_spec.html │ │ │ │ ├── create_qos_spec.html │ │ │ │ ├── create_volume_type.html │ │ │ │ ├── create_volume_type_encryption.html │ │ │ │ ├── edit_qos_spec_consumer.html │ │ │ │ ├── extras │ │ │ │ │ ├── _create.html │ │ │ │ │ ├── _edit.html │ │ │ │ │ ├── _index.html │ │ │ │ │ ├── create.html │ │ │ │ │ ├── edit.html │ │ │ │ │ └── index.html │ │ │ │ ├── qos_specs │ │ │ │ │ ├── _create.html │ │ │ │ │ ├── _edit.html │ │ │ │ │ ├── _index.html │ │ │ │ │ ├── create.html │ │ │ │ │ ├── edit.html │ │ │ │ │ └── index.html │ │ │ │ ├── volume_encryption_type_detail.html │ │ │ │ └── volume_types_tables.html │ │ │ │ └── volumes │ │ │ │ ├── _update_status.html │ │ │ │ ├── detail.html │ │ │ │ ├── update_status.html │ │ │ │ └── volumes_tables.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ ├── volume_types │ │ │ ├── __init__.py │ │ │ ├── extras │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── tables.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── forms.py │ │ │ ├── qos_specs │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── tables.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── tables.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ └── volumes │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── tables.py │ │ │ ├── urls.py │ │ │ └── views.py │ ├── identity │ │ ├── __init__.py │ │ ├── dashboard.py │ │ ├── domains │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── templates │ │ │ │ └── domains │ │ │ │ │ └── index.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ └── workflows.py │ │ ├── groups │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ ├── forms.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── templates │ │ │ │ └── groups │ │ │ │ │ ├── _add_non_member.html │ │ │ │ │ ├── _create.html │ │ │ │ │ ├── _update.html │ │ │ │ │ ├── add_non_member.html │ │ │ │ │ ├── create.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manage.html │ │ │ │ │ └── update.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── projects │ │ │ ├── __init__.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── templates │ │ │ │ └── projects │ │ │ │ │ ├── index.html │ │ │ │ │ └── usage.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ └── workflows.py │ │ ├── roles │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── templates │ │ │ │ └── roles │ │ │ │ │ ├── _create.html │ │ │ │ │ ├── _update.html │ │ │ │ │ ├── create.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── update.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ └── users │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── templates │ │ │ └── users │ │ │ │ ├── _create.html │ │ │ │ ├── _update.html │ │ │ │ ├── create.html │ │ │ │ ├── index.html │ │ │ │ └── update.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ ├── project │ │ ├── __init__.py │ │ ├── access_and_security │ │ │ ├── __init__.py │ │ │ ├── api_access │ │ │ │ ├── __init__.py │ │ │ │ ├── tables.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── floating_ips │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── tables.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ ├── views.py │ │ │ │ └── workflows.py │ │ │ ├── keypairs │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── tables.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── panel.py │ │ │ ├── security_groups │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── tables.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── tabs.py │ │ │ ├── templates │ │ │ │ └── access_and_security │ │ │ │ │ ├── api_access │ │ │ │ │ ├── _credentials.html │ │ │ │ │ ├── credentials.html │ │ │ │ │ ├── ec2rc.sh.template │ │ │ │ │ └── openrc.sh.template │ │ │ │ │ ├── floating_ips │ │ │ │ │ ├── _allocate.html │ │ │ │ │ └── allocate.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── keypairs │ │ │ │ │ ├── _create.html │ │ │ │ │ ├── _import.html │ │ │ │ │ ├── create.html │ │ │ │ │ ├── download.html │ │ │ │ │ └── import.html │ │ │ │ │ └── security_groups │ │ │ │ │ ├── _add_rule.html │ │ │ │ │ ├── _create.html │ │ │ │ │ ├── _update.html │ │ │ │ │ ├── add_rule.html │ │ │ │ │ ├── create.html │ │ │ │ │ ├── detail.html │ │ │ │ │ └── update.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── containers │ │ │ ├── __init__.py │ │ │ ├── browsers.py │ │ │ ├── forms.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── templates │ │ │ │ └── containers │ │ │ │ │ ├── _container_detail.html │ │ │ │ │ ├── _container_metadata.html │ │ │ │ │ ├── _copy.html │ │ │ │ │ ├── _create.html │ │ │ │ │ ├── _create_pseudo_folder.html │ │ │ │ │ ├── _object_detail.html │ │ │ │ │ ├── _update.html │ │ │ │ │ ├── _upload.html │ │ │ │ │ ├── container_detail.html │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── create.html │ │ │ │ │ ├── create_pseudo_folder.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── object_detail.html │ │ │ │ │ ├── update.html │ │ │ │ │ └── upload.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── dashboard.py │ │ ├── data_processing │ │ │ ├── __init__.py │ │ │ ├── cluster_templates │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── panel.py │ │ │ │ ├── tables.py │ │ │ │ ├── tabs.py │ │ │ │ ├── templates │ │ │ │ │ └── data_processing.cluster_templates │ │ │ │ │ │ ├── _configure_general_help.html │ │ │ │ │ │ ├── _create_general_help.html │ │ │ │ │ │ ├── _details.html │ │ │ │ │ │ ├── _nodegroups_details.html │ │ │ │ │ │ ├── _upload_file.html │ │ │ │ │ │ ├── cluster_node_groups_template.html │ │ │ │ │ │ ├── cluster_templates.html │ │ │ │ │ │ ├── configure.html │ │ │ │ │ │ ├── create.html │ │ │ │ │ │ ├── details.html │ │ │ │ │ │ └── upload_file.html │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ ├── views.py │ │ │ │ └── workflows │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── copy.py │ │ │ │ │ └── create.py │ │ │ ├── clusters │ │ │ │ ├── __init__.py │ │ │ │ ├── panel.py │ │ │ │ ├── tables.py │ │ │ │ ├── tabs.py │ │ │ │ ├── templates │ │ │ │ │ └── data_processing.clusters │ │ │ │ │ │ ├── _configure_general_help.html │ │ │ │ │ │ ├── _create_cluster.html │ │ │ │ │ │ ├── _create_general_help.html │ │ │ │ │ │ ├── _details.html │ │ │ │ │ │ ├── _instances_details.html │ │ │ │ │ │ ├── _nodegroups_details.html │ │ │ │ │ │ ├── clusters.html │ │ │ │ │ │ ├── configure.html │ │ │ │ │ │ ├── create.html │ │ │ │ │ │ ├── create_cluster.html │ │ │ │ │ │ ├── details.html │ │ │ │ │ │ └── scale.html │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ ├── views.py │ │ │ │ └── workflows │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── create.py │ │ │ │ │ └── scale.py │ │ │ ├── data_image_registry │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── panel.py │ │ │ │ ├── tables.py │ │ │ │ ├── templates │ │ │ │ │ └── data_processing.data_image_registry │ │ │ │ │ │ ├── _edit_tags.html │ │ │ │ │ │ ├── _help.html │ │ │ │ │ │ ├── _list_tags.html │ │ │ │ │ │ ├── _register_image.html │ │ │ │ │ │ ├── _tag_form.html │ │ │ │ │ │ ├── edit_tags.html │ │ │ │ │ │ ├── image_registry.html │ │ │ │ │ │ └── register_image.html │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── data_plugins │ │ │ │ ├── __init__.py │ │ │ │ ├── panel.py │ │ │ │ ├── tables.py │ │ │ │ ├── tabs.py │ │ │ │ ├── templates │ │ │ │ │ └── data_processing.data_plugins │ │ │ │ │ │ ├── _details.html │ │ │ │ │ │ ├── details.html │ │ │ │ │ │ └── plugins.html │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── data_sources │ │ │ │ ├── __init__.py │ │ │ │ ├── panel.py │ │ │ │ ├── tables.py │ │ │ │ ├── tabs.py │ │ │ │ ├── templates │ │ │ │ │ └── data_processing.data_sources │ │ │ │ │ │ ├── _create_data_source_help.html │ │ │ │ │ │ ├── _details.html │ │ │ │ │ │ ├── create.html │ │ │ │ │ │ ├── data_sources.html │ │ │ │ │ │ ├── data_sources_form_script.html │ │ │ │ │ │ └── details.html │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ ├── views.py │ │ │ │ └── workflows │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── create.py │ │ │ ├── job_binaries │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── panel.py │ │ │ │ ├── tables.py │ │ │ │ ├── tabs.py │ │ │ │ ├── templates │ │ │ │ │ └── data_processing.job_binaries │ │ │ │ │ │ ├── _create.html │ │ │ │ │ │ ├── _create_job_binary_help.html │ │ │ │ │ │ ├── _details.html │ │ │ │ │ │ ├── create.html │ │ │ │ │ │ ├── details.html │ │ │ │ │ │ ├── job_binaries.html │ │ │ │ │ │ └── job_binaries_form_script.html │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── job_executions │ │ │ │ ├── __init__.py │ │ │ │ ├── panel.py │ │ │ │ ├── tables.py │ │ │ │ ├── tabs.py │ │ │ │ ├── templates │ │ │ │ │ └── data_processing.job_executions │ │ │ │ │ │ ├── _details.html │ │ │ │ │ │ ├── details.html │ │ │ │ │ │ └── job_executions.html │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── jobs │ │ │ │ ├── __init__.py │ │ │ │ ├── panel.py │ │ │ │ ├── tables.py │ │ │ │ ├── tabs.py │ │ │ │ ├── templates │ │ │ │ │ └── data_processing.jobs │ │ │ │ │ │ ├── _create_job_help.html │ │ │ │ │ │ ├── _create_job_libs_help.html │ │ │ │ │ │ ├── _details.html │ │ │ │ │ │ ├── _launch_job_configure_help.html │ │ │ │ │ │ ├── _launch_job_help.html │ │ │ │ │ │ ├── config_template.html │ │ │ │ │ │ ├── create.html │ │ │ │ │ │ ├── details.html │ │ │ │ │ │ ├── jobs.html │ │ │ │ │ │ ├── launch.html │ │ │ │ │ │ └── library_template.html │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ ├── views.py │ │ │ │ └── workflows │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── create.py │ │ │ │ │ └── launch.py │ │ │ ├── nodegroup_templates │ │ │ │ ├── __init__.py │ │ │ │ ├── panel.py │ │ │ │ ├── tables.py │ │ │ │ ├── tabs.py │ │ │ │ ├── templates │ │ │ │ │ └── data_processing.nodegroup_templates │ │ │ │ │ │ ├── _configure_general_help.html │ │ │ │ │ │ ├── _create_general_help.html │ │ │ │ │ │ ├── _details.html │ │ │ │ │ │ ├── _fields_help.html │ │ │ │ │ │ ├── _service_confs.html │ │ │ │ │ │ ├── configure.html │ │ │ │ │ │ ├── create.html │ │ │ │ │ │ ├── details.html │ │ │ │ │ │ └── nodegroup_templates.html │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ ├── views.py │ │ │ │ └── workflows │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── copy.py │ │ │ │ │ └── create.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── anti_affinity.py │ │ │ │ ├── helpers.py │ │ │ │ ├── neutron_support.py │ │ │ │ └── workflow_helpers.py │ │ ├── database_backups │ │ │ ├── __init__.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── templates │ │ │ │ └── database_backups │ │ │ │ │ ├── _backup_details_help.html │ │ │ │ │ ├── backup.html │ │ │ │ │ ├── details.html │ │ │ │ │ └── index.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ └── workflows │ │ │ │ ├── __init__.py │ │ │ │ └── create_backup.py │ │ ├── databases │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── tabs.py │ │ │ ├── templates │ │ │ │ └── databases │ │ │ │ │ ├── _detail_overview.html │ │ │ │ │ ├── _detail_overview_cassandra.html │ │ │ │ │ ├── _detail_overview_couchbase.html │ │ │ │ │ ├── _detail_overview_mongodb.html │ │ │ │ │ ├── _detail_overview_mysql.html │ │ │ │ │ ├── _detail_overview_redis.html │ │ │ │ │ ├── _launch_details_help.html │ │ │ │ │ ├── _launch_initialize_help.html │ │ │ │ │ ├── _launch_network_help.html │ │ │ │ │ ├── _launch_networks.html │ │ │ │ │ ├── _launch_restore_help.html │ │ │ │ │ ├── _resize_instance.html │ │ │ │ │ ├── _resize_volume.html │ │ │ │ │ ├── detail.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── launch.html │ │ │ │ │ ├── resize_instance.html │ │ │ │ │ ├── resize_volume.html │ │ │ │ │ └── update.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ └── workflows │ │ │ │ ├── __init__.py │ │ │ │ └── create_instance.py │ │ ├── firewalls │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── tabs.py │ │ │ ├── templates │ │ │ │ └── firewalls │ │ │ │ │ ├── _firewall_details.html │ │ │ │ │ ├── _insert_rule_to_policy.html │ │ │ │ │ ├── _policy_details.html │ │ │ │ │ ├── _remove_rule_from_policy.html │ │ │ │ │ ├── _rule_details.html │ │ │ │ │ ├── _update_rule_help.html │ │ │ │ │ ├── _update_rules.html │ │ │ │ │ ├── _updatefirewall.html │ │ │ │ │ ├── _updatepolicy.html │ │ │ │ │ ├── _updaterule.html │ │ │ │ │ ├── addfirewall.html │ │ │ │ │ ├── addpolicy.html │ │ │ │ │ ├── addrule.html │ │ │ │ │ ├── details_tabs.html │ │ │ │ │ ├── insert_rule_to_policy.html │ │ │ │ │ ├── remove_rule_from_policy.html │ │ │ │ │ ├── updatefirewall.html │ │ │ │ │ ├── updatepolicy.html │ │ │ │ │ └── updaterule.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ └── workflows.py │ │ ├── images │ │ │ ├── __init__.py │ │ │ ├── images │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── tables.py │ │ │ │ ├── tabs.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── panel.py │ │ │ ├── snapshots │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── templates │ │ │ │ └── images │ │ │ │ │ ├── images │ │ │ │ │ ├── _create.html │ │ │ │ │ ├── _detail_overview.html │ │ │ │ │ ├── _update.html │ │ │ │ │ ├── create.html │ │ │ │ │ ├── detail.html │ │ │ │ │ └── update.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── snapshots │ │ │ │ │ ├── _create.html │ │ │ │ │ └── create.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ ├── instances │ │ │ ├── __init__.py │ │ │ ├── audit_tables.py │ │ │ ├── console.py │ │ │ ├── forms.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── tabs.py │ │ │ ├── templates │ │ │ │ └── instances │ │ │ │ │ ├── _decryptpassword.html │ │ │ │ │ ├── _detail_audit.html │ │ │ │ │ ├── _detail_console.html │ │ │ │ │ ├── _detail_log.html │ │ │ │ │ ├── _detail_overview.html │ │ │ │ │ ├── _flavors_and_quotas.html │ │ │ │ │ ├── _instance_flavor.html │ │ │ │ │ ├── _instance_ips.html │ │ │ │ │ ├── _launch_advanced_help.html │ │ │ │ │ ├── _launch_customize_help.html │ │ │ │ │ ├── _launch_details_help.html │ │ │ │ │ ├── _launch_network_help.html │ │ │ │ │ ├── _launch_volumes_help.html │ │ │ │ │ ├── _rebuild.html │ │ │ │ │ ├── _update_networks.html │ │ │ │ │ ├── decryptpassword.html │ │ │ │ │ ├── detail.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── rebuild.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ ├── views.py │ │ │ └── workflows │ │ │ │ ├── __init__.py │ │ │ │ ├── create_instance.py │ │ │ │ ├── resize_instance.py │ │ │ │ └── update_instance.py │ │ ├── loadbalancers │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── tabs.py │ │ │ ├── templates │ │ │ │ └── loadbalancers │ │ │ │ │ ├── _member_details.html │ │ │ │ │ ├── _members_tab.html │ │ │ │ │ ├── _monitor_details.html │ │ │ │ │ ├── _monitors_tab.html │ │ │ │ │ ├── _pool_details.html │ │ │ │ │ ├── _pools_tab.html │ │ │ │ │ ├── _updatemember.html │ │ │ │ │ ├── _updatemonitor.html │ │ │ │ │ ├── _updatepool.html │ │ │ │ │ ├── _updatevip.html │ │ │ │ │ ├── _vip_details.html │ │ │ │ │ ├── details_tabs.html │ │ │ │ │ ├── updatemember.html │ │ │ │ │ ├── updatemonitor.html │ │ │ │ │ ├── updatepool.html │ │ │ │ │ └── updatevip.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ ├── views.py │ │ │ └── workflows.py │ │ ├── models.py │ │ ├── network_topology │ │ │ ├── __init__.py │ │ │ ├── instances │ │ │ │ ├── __init__.py │ │ │ │ └── tables.py │ │ │ ├── panel.py │ │ │ ├── ports │ │ │ │ ├── __init__.py │ │ │ │ └── tables.py │ │ │ ├── routers │ │ │ │ ├── __init__.py │ │ │ │ └── tables.py │ │ │ ├── templates │ │ │ │ └── network_topology │ │ │ │ │ ├── _create_router.html │ │ │ │ │ ├── _post_massage.html │ │ │ │ │ ├── _svg_element.html │ │ │ │ │ ├── client_side │ │ │ │ │ ├── _balloon_container.html │ │ │ │ │ ├── _balloon_device.html │ │ │ │ │ └── _balloon_port.html │ │ │ │ │ ├── create_router.html │ │ │ │ │ ├── iframe.html │ │ │ │ │ └── index.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── networks │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── panel.py │ │ │ ├── ports │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── tables.py │ │ │ │ ├── tabs.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── subnets │ │ │ │ ├── __init__.py │ │ │ │ ├── tables.py │ │ │ │ ├── tabs.py │ │ │ │ ├── urls.py │ │ │ │ ├── utils.py │ │ │ │ ├── views.py │ │ │ │ └── workflows.py │ │ │ ├── tables.py │ │ │ ├── templates │ │ │ │ └── networks │ │ │ │ │ ├── _create.html │ │ │ │ │ ├── _detail_overview.html │ │ │ │ │ ├── _network_ips.html │ │ │ │ │ ├── _update.html │ │ │ │ │ ├── create.html │ │ │ │ │ ├── detail.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── ports │ │ │ │ │ ├── _detail_overview.html │ │ │ │ │ ├── _port_ips.html │ │ │ │ │ ├── _update.html │ │ │ │ │ ├── detail.html │ │ │ │ │ └── update.html │ │ │ │ │ ├── subnets │ │ │ │ │ ├── _detail_overview.html │ │ │ │ │ ├── detail.html │ │ │ │ │ └── index.html │ │ │ │ │ └── update.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ └── workflows.py │ │ ├── overview │ │ │ ├── __init__.py │ │ │ ├── panel.py │ │ │ ├── templates │ │ │ │ └── overview │ │ │ │ │ ├── usage.csv │ │ │ │ │ └── usage.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── routers │ │ │ ├── __init__.py │ │ │ ├── extensions │ │ │ │ ├── __init__.py │ │ │ │ └── routerrules │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── rulemanager.py │ │ │ │ │ ├── tables.py │ │ │ │ │ ├── tabs.py │ │ │ │ │ └── views.py │ │ │ ├── forms.py │ │ │ ├── panel.py │ │ │ ├── ports │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── tables.py │ │ │ │ ├── tabs.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── tables.py │ │ │ ├── tabs.py │ │ │ ├── templates │ │ │ │ └── routers │ │ │ │ │ ├── _create.html │ │ │ │ │ ├── _detail_overview.html │ │ │ │ │ ├── _update.html │ │ │ │ │ ├── create.html │ │ │ │ │ ├── detail.html │ │ │ │ │ ├── extensions │ │ │ │ │ └── routerrules │ │ │ │ │ │ ├── _create.html │ │ │ │ │ │ ├── create.html │ │ │ │ │ │ └── grid.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── ports │ │ │ │ │ ├── _create.html │ │ │ │ │ ├── _setgateway.html │ │ │ │ │ ├── create.html │ │ │ │ │ └── setgateway.html │ │ │ │ │ └── update.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── stacks │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── forms.py │ │ │ ├── mappings.py │ │ │ ├── panel.py │ │ │ ├── sro.py │ │ │ ├── tables.py │ │ │ ├── tabs.py │ │ │ ├── templates │ │ │ │ └── stacks │ │ │ │ │ ├── _change_template.html │ │ │ │ │ ├── _create.html │ │ │ │ │ ├── _detail_events.html │ │ │ │ │ ├── _detail_overview.html │ │ │ │ │ ├── _detail_resources.html │ │ │ │ │ ├── _detail_topology.html │ │ │ │ │ ├── _resource_info.html │ │ │ │ │ ├── _resource_overview.html │ │ │ │ │ ├── _select_template.html │ │ │ │ │ ├── _stack_info.html │ │ │ │ │ ├── _stack_template.html │ │ │ │ │ ├── _update.html │ │ │ │ │ ├── change_template.html │ │ │ │ │ ├── create.html │ │ │ │ │ ├── detail.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── resource.html │ │ │ │ │ ├── select_template.html │ │ │ │ │ └── update.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── volumes │ │ │ ├── __init__.py │ │ │ ├── backups │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── tables.py │ │ │ │ ├── tabs.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── panel.py │ │ │ ├── snapshots │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── tables.py │ │ │ │ ├── tabs.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── tabs.py │ │ │ ├── templates │ │ │ │ └── volumes │ │ │ │ │ ├── backups │ │ │ │ │ ├── _create_backup.html │ │ │ │ │ ├── _detail_overview.html │ │ │ │ │ ├── _restore_backup.html │ │ │ │ │ ├── create_backup.html │ │ │ │ │ ├── detail.html │ │ │ │ │ └── restore_backup.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── snapshots │ │ │ │ │ ├── _detail_overview.html │ │ │ │ │ ├── _update.html │ │ │ │ │ ├── detail.html │ │ │ │ │ └── update.html │ │ │ │ │ └── volumes │ │ │ │ │ ├── _attach.html │ │ │ │ │ ├── _create.html │ │ │ │ │ ├── _create_snapshot.html │ │ │ │ │ ├── _detail_overview.html │ │ │ │ │ ├── _extend.html │ │ │ │ │ ├── _extend_limits.html │ │ │ │ │ ├── _limits.html │ │ │ │ │ ├── _retype.html │ │ │ │ │ ├── _snapshot_limits.html │ │ │ │ │ ├── _update.html │ │ │ │ │ ├── _upload_to_image.html │ │ │ │ │ ├── attach.html │ │ │ │ │ ├── create.html │ │ │ │ │ ├── create_snapshot.html │ │ │ │ │ ├── detail.html │ │ │ │ │ ├── extend.html │ │ │ │ │ ├── retype.html │ │ │ │ │ ├── update.html │ │ │ │ │ └── upload_to_image.html │ │ │ ├── test.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ └── volumes │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── tables.py │ │ │ │ ├── tabs.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ └── vpn │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── tabs.py │ │ │ ├── templates │ │ │ └── vpn │ │ │ │ ├── _ikepolicy_details.html │ │ │ │ ├── _ipsecpolicy_details.html │ │ │ │ ├── _ipsecsiteconnection_details.html │ │ │ │ ├── _update_ikepolicy.html │ │ │ │ ├── _update_ipsecpolicy.html │ │ │ │ ├── _update_ipsecsiteconnection.html │ │ │ │ ├── _update_vpnservice.html │ │ │ │ ├── _vpnservice_details.html │ │ │ │ ├── details_tabs.html │ │ │ │ ├── index.html │ │ │ │ ├── update_ikepolicy.html │ │ │ │ ├── update_ipsecpolicy.html │ │ │ │ ├── update_ipsecsiteconnection.html │ │ │ │ └── update_vpnservice.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ └── workflows.py │ ├── router │ │ ├── __init__.py │ │ ├── dashboard.py │ │ ├── models.py │ │ └── nexus1000v │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── panel.py │ │ │ ├── tables.py │ │ │ ├── tabs.py │ │ │ ├── templates │ │ │ └── nexus1000v │ │ │ │ ├── _create_network_profile.html │ │ │ │ ├── _update_network_profile.html │ │ │ │ ├── create_network_profile.html │ │ │ │ ├── index.html │ │ │ │ ├── network_profile │ │ │ │ └── index.html │ │ │ │ ├── policy_profile │ │ │ │ └── index.html │ │ │ │ └── update_network_profile.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ └── settings │ │ ├── __init__.py │ │ ├── dashboard.py │ │ ├── models.py │ │ ├── password │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── panel.py │ │ ├── templates │ │ │ └── password │ │ │ │ ├── _change.html │ │ │ │ └── change.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ └── user │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── panel.py │ │ ├── templates │ │ └── user │ │ │ ├── _settings.html │ │ │ └── settings.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py ├── django_pyscss_fix │ └── __init__.py ├── enabled │ ├── _10_project.py │ ├── _20_admin.py │ ├── _25_identity.py │ ├── _30_settings.py │ ├── _40_router.py │ ├── _50_admin_add_panel.py.example │ ├── _60_admin_remove_panel.py.example │ ├── _70_admin_default_panel.py.example │ ├── _80_admin_add_panel_group.py.example │ ├── _90_admin_add_panel_to_group.py.example │ └── __init__.py ├── exceptions.py ├── hooks.py ├── local │ ├── __init__.py │ ├── enabled │ │ ├── _40_router.py.example │ │ └── __init__.py │ └── local_settings.py.example ├── locale │ ├── cs │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── de │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── en_AU │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── en_GB │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── hi │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ko_KR │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── nl_NL │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── pl_PL │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── sr │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── zh_CN │ │ └── LC_MESSAGES │ │ │ └── django.po │ └── zh_TW │ │ └── LC_MESSAGES │ │ └── django.po ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── apache_vhost.conf.template │ │ ├── horizon.wsgi.template │ │ └── make_web_conf.py ├── openstack │ ├── __init__.py │ └── common │ │ ├── __init__.py │ │ ├── _i18n.py │ │ ├── fileutils.py │ │ ├── local.py │ │ ├── log.py │ │ └── policy.py ├── policy.py ├── settings.py ├── static │ ├── dashboard │ │ ├── css │ │ │ ├── avos.css │ │ │ └── rickshaw.css │ │ ├── fonts │ │ │ ├── Anivers_Regular-webfont.eot │ │ │ ├── Anivers_Regular-webfont.svg │ │ │ ├── Anivers_Regular-webfont.ttf │ │ │ └── Anivers_Regular-webfont.woff │ │ ├── img │ │ │ ├── action_required.png │ │ │ ├── ciscologo.png │ │ │ ├── db-gray.gif │ │ │ ├── db-gray.svg │ │ │ ├── db-green.svg │ │ │ ├── db-red.svg │ │ │ ├── drag.png │ │ │ ├── drop_arrow.png │ │ │ ├── favicon.ico │ │ │ ├── lb-gray.gif │ │ │ ├── lb-gray.svg │ │ │ ├── lb-green.svg │ │ │ ├── lb-red.svg │ │ │ ├── loading.gif │ │ │ ├── logo-splash.png │ │ │ ├── logo.png │ │ │ ├── profile_drop.png │ │ │ ├── right_droparrow.png │ │ │ ├── router.png │ │ │ ├── search.png │ │ │ ├── server-gray.gif │ │ │ ├── server-gray.svg │ │ │ ├── server-green.svg │ │ │ ├── server-red.svg │ │ │ ├── server.png │ │ │ ├── sidebar_bg.png │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ ├── sort_desc_disabled.png │ │ │ ├── spinner.gif │ │ │ ├── stack-gray.gif │ │ │ ├── stack-gray.svg │ │ │ ├── stack-green.svg │ │ │ ├── stack-red.svg │ │ │ ├── unknown-gray.gif │ │ │ ├── unknown-gray.svg │ │ │ ├── unknown-green.svg │ │ │ ├── unknown-red.svg │ │ │ └── up_arrow.png │ │ ├── js │ │ │ ├── avos.js │ │ │ ├── heatmap.js │ │ │ └── utils.js │ │ └── scss │ │ │ ├── _accordion_nav.scss │ │ │ ├── _inline_edit.scss │ │ │ ├── _variables.scss │ │ │ ├── components │ │ │ ├── _topbar.scss │ │ │ └── resource_browser.scss │ │ │ ├── horizon.scss │ │ │ ├── horizon_charts.scss │ │ │ └── horizon_workflow.scss │ └── screens │ │ └── screen1.png ├── templates │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── _header.html │ ├── _stylesheets.html │ └── context_selection │ │ ├── _domain_list.html │ │ ├── _overview.html │ │ ├── _project_list.html │ │ └── _region_list.html ├── templatetags │ ├── __init__.py │ └── context_selection.py ├── test │ ├── __init__.py │ ├── api_tests │ │ ├── __init__.py │ │ ├── base_tests.py │ │ ├── ceilometer_tests.py │ │ ├── cinder_tests.py │ │ ├── fwaas_tests.py │ │ ├── glance_tests.py │ │ ├── heat_tests.py │ │ ├── keystone_tests.py │ │ ├── lbaas_tests.py │ │ ├── network_tests.py │ │ ├── neutron_tests.py │ │ ├── nova_tests.py │ │ ├── swift_tests.py │ │ └── vpnaas_tests.py │ ├── error_pages_urls.py │ ├── helpers.py │ ├── integration_tests │ │ ├── README.rst │ │ ├── __init__.py │ │ ├── basewebobject.py │ │ ├── config.py │ │ ├── helpers.py │ │ ├── horizon.conf │ │ ├── pages │ │ │ ├── __init__.py │ │ │ ├── admin │ │ │ │ ├── __init__.py │ │ │ │ └── system │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── overviewpage.py │ │ │ │ │ ├── resource_usage │ │ │ │ │ └── __init__.py │ │ │ │ │ └── system_info │ │ │ │ │ └── __init__.py │ │ │ ├── basepage.py │ │ │ ├── identity │ │ │ │ └── __init__.py │ │ │ ├── loginpage.py │ │ │ ├── navigation.py │ │ │ ├── pageobject.py │ │ │ ├── project │ │ │ │ ├── __init__.py │ │ │ │ ├── compute │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── access_and_security │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── keypairspage.py │ │ │ │ │ ├── overviewpage.py │ │ │ │ │ └── volumes │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── data_processing │ │ │ │ │ └── __init__.py │ │ │ │ ├── network │ │ │ │ │ └── __init__.py │ │ │ │ ├── object_store │ │ │ │ │ └── __init__.py │ │ │ │ └── orchestration │ │ │ │ │ └── __init__.py │ │ │ └── settings │ │ │ │ ├── __init__.py │ │ │ │ ├── changepasswordpage.py │ │ │ │ └── usersettingspage.py │ │ ├── regions │ │ │ ├── __init__.py │ │ │ ├── bars.py │ │ │ ├── baseregion.py │ │ │ ├── exceptions.py │ │ │ ├── forms.py │ │ │ ├── menus.py │ │ │ ├── messages.py │ │ │ └── tables.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── decorators.py │ │ │ ├── test_dashboard_help_redirection.py │ │ │ ├── test_keypair.py │ │ │ ├── test_login.py │ │ │ ├── test_password_change.py │ │ │ └── test_user_settings.py │ │ └── webdriver.py │ ├── settings.py │ ├── templates │ │ ├── 404.html │ │ ├── 500.html │ │ ├── _tab.html │ │ ├── base-sidebar.html │ │ ├── registration │ │ │ └── login.html │ │ ├── tab_group.html │ │ └── workflow.html │ ├── test_data │ │ ├── __init__.py │ │ ├── ceilometer_data.py │ │ ├── cinder_data.py │ │ ├── exceptions.py │ │ ├── glance_data.py │ │ ├── heat_data.py │ │ ├── keystone_data.py │ │ ├── neutron_data.py │ │ ├── nova_data.py │ │ ├── sahara_data.py │ │ ├── swift_data.py │ │ ├── trove_data.py │ │ └── utils.py │ ├── test_panels │ │ ├── __init__.py │ │ └── plugin_panel │ │ │ ├── __init__.py │ │ │ ├── panel.py │ │ │ ├── static │ │ │ └── plugin_panel │ │ │ │ └── plugin_module.js │ │ │ ├── templates │ │ │ └── plugin_panel │ │ │ │ └── index.html │ │ │ ├── urls.py │ │ │ └── views.py │ ├── test_plugins │ │ ├── __init__.py │ │ ├── panel_config │ │ │ ├── _10_admin_add_panel.py │ │ │ ├── _20_admin_remove_panel.py │ │ │ ├── _30_admin_default_panel.py │ │ │ └── __init__.py │ │ ├── panel_group_config │ │ │ ├── _10_admin_add_panel_group.py │ │ │ ├── _20_admin_add_panel_to_group.py │ │ │ └── __init__.py │ │ ├── panel_group_tests.py │ │ └── panel_tests.py │ └── tests │ │ ├── __init__.py │ │ ├── error_pages.py │ │ ├── policy.py │ │ ├── quotas.py │ │ ├── selenium_tests.py │ │ ├── templates.py │ │ └── utils.py ├── urls.py ├── usage │ ├── __init__.py │ ├── base.py │ ├── quotas.py │ ├── tables.py │ └── views.py ├── utils │ ├── __init__.py │ ├── filters.py │ ├── metering.py │ └── settings.py ├── views.py └── wsgi │ └── django.wsgi ├── requirements.txt ├── run_tests.sh ├── setup.cfg ├── setup.py ├── test-requirements.txt ├── tools ├── install_venv.py ├── install_venv_common.py └── with_venv.sh └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/.gitreview -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/.mailmap -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/.pylintrc -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/.tx/config -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HACKING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/HACKING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/README.rst -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/contributing.rst -------------------------------------------------------------------------------- /doc/source/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/faq.rst -------------------------------------------------------------------------------- /doc/source/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/glossary.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/intro.rst -------------------------------------------------------------------------------- /doc/source/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/quickstart.rst -------------------------------------------------------------------------------- /doc/source/ref/context_processors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/ref/context_processors.rst -------------------------------------------------------------------------------- /doc/source/ref/decorators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/ref/decorators.rst -------------------------------------------------------------------------------- /doc/source/ref/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/ref/exceptions.rst -------------------------------------------------------------------------------- /doc/source/ref/forms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/ref/forms.rst -------------------------------------------------------------------------------- /doc/source/ref/horizon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/ref/horizon.rst -------------------------------------------------------------------------------- /doc/source/ref/local_conf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/ref/local_conf.rst -------------------------------------------------------------------------------- /doc/source/ref/middleware.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/ref/middleware.rst -------------------------------------------------------------------------------- /doc/source/ref/run_tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/ref/run_tests.rst -------------------------------------------------------------------------------- /doc/source/ref/tables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/ref/tables.rst -------------------------------------------------------------------------------- /doc/source/ref/tabs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/ref/tabs.rst -------------------------------------------------------------------------------- /doc/source/ref/test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/ref/test.rst -------------------------------------------------------------------------------- /doc/source/ref/workflows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/ref/workflows.rst -------------------------------------------------------------------------------- /doc/source/releases/2012_1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/releases/2012_1.rst -------------------------------------------------------------------------------- /doc/source/releases/2012_2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/releases/2012_2.rst -------------------------------------------------------------------------------- /doc/source/releases/2013_1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/releases/2013_1.rst -------------------------------------------------------------------------------- /doc/source/releases/2013_2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/releases/2013_2.rst -------------------------------------------------------------------------------- /doc/source/releases/2014_1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/releases/2014_1.rst -------------------------------------------------------------------------------- /doc/source/releases/2014_2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/releases/2014_2.rst -------------------------------------------------------------------------------- /doc/source/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/testing.rst -------------------------------------------------------------------------------- /doc/source/topics/customizing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/topics/customizing.rst -------------------------------------------------------------------------------- /doc/source/topics/deployment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/topics/deployment.rst -------------------------------------------------------------------------------- /doc/source/topics/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/topics/install.rst -------------------------------------------------------------------------------- /doc/source/topics/policy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/topics/policy.rst -------------------------------------------------------------------------------- /doc/source/topics/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/topics/settings.rst -------------------------------------------------------------------------------- /doc/source/topics/tables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/topics/tables.rst -------------------------------------------------------------------------------- /doc/source/topics/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/topics/testing.rst -------------------------------------------------------------------------------- /doc/source/topics/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/topics/tutorial.rst -------------------------------------------------------------------------------- /doc/source/topics/workflows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/doc/source/topics/workflows.rst -------------------------------------------------------------------------------- /horizon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/__init__.py -------------------------------------------------------------------------------- /horizon/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/base.py -------------------------------------------------------------------------------- /horizon/browsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/browsers/__init__.py -------------------------------------------------------------------------------- /horizon/browsers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/browsers/base.py -------------------------------------------------------------------------------- /horizon/browsers/breadcrumb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/browsers/breadcrumb.py -------------------------------------------------------------------------------- /horizon/browsers/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/browsers/views.py -------------------------------------------------------------------------------- /horizon/conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/conf/__init__.py -------------------------------------------------------------------------------- /horizon/conf/dash_template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/conf/dash_template/dashboard.py.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/conf/dash_template/dashboard.py.tmpl -------------------------------------------------------------------------------- /horizon/conf/dash_template/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/conf/dash_template/models.py -------------------------------------------------------------------------------- /horizon/conf/dash_template/static/dash_name/css/dash_name.css: -------------------------------------------------------------------------------- 1 | /* Additional CSS for {{ dash_name }}. */ 2 | -------------------------------------------------------------------------------- /horizon/conf/dash_template/static/dash_name/js/dash_name.js: -------------------------------------------------------------------------------- 1 | /* Additional JavaScript for {{ dash_name }}. */ 2 | -------------------------------------------------------------------------------- /horizon/conf/dash_template/templates/dash_name/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/conf/dash_template/templates/dash_name/base.html -------------------------------------------------------------------------------- /horizon/conf/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/conf/default.py -------------------------------------------------------------------------------- /horizon/conf/panel_template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/conf/panel_template/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/conf/panel_template/models.py -------------------------------------------------------------------------------- /horizon/conf/panel_template/panel.py.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/conf/panel_template/panel.py.tmpl -------------------------------------------------------------------------------- /horizon/conf/panel_template/templates/panel_name/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/conf/panel_template/templates/panel_name/index.html -------------------------------------------------------------------------------- /horizon/conf/panel_template/tests.py.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/conf/panel_template/tests.py.tmpl -------------------------------------------------------------------------------- /horizon/conf/panel_template/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/conf/panel_template/urls.py -------------------------------------------------------------------------------- /horizon/conf/panel_template/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/conf/panel_template/views.py -------------------------------------------------------------------------------- /horizon/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/context_processors.py -------------------------------------------------------------------------------- /horizon/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/contrib/bootstrap_datepicker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/contrib/bootstrap_datepicker.py -------------------------------------------------------------------------------- /horizon/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/decorators.py -------------------------------------------------------------------------------- /horizon/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/exceptions.py -------------------------------------------------------------------------------- /horizon/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/forms/__init__.py -------------------------------------------------------------------------------- /horizon/forms/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/forms/base.py -------------------------------------------------------------------------------- /horizon/forms/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/forms/fields.py -------------------------------------------------------------------------------- /horizon/forms/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/forms/views.py -------------------------------------------------------------------------------- /horizon/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/loaders.py -------------------------------------------------------------------------------- /horizon/locale/ca/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/ca/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/ca/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/ca/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/cs/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/cs/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/de/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/de/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/en/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/en/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/en_AU/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/en_AU/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/en_AU/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/en_AU/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/en_GB/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/en_GB/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/en_GB/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/en_GB/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/es/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/es/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/es_MX/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/es_MX/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/fi_FI/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/fi_FI/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/fi_FI/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/fi_FI/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/fil/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/fil/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/fr/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/fr/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/he/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/he/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/hi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/hi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/hi/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/hi/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/hu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/hu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/id/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/id/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/id/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/id/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/ja/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/ja/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/ja/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/ja/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/ka_GE/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/ka_GE/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/ko_KR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/ko_KR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/ko_KR/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/ko_KR/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/nl_NL/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/nl_NL/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/nl_NL/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/nl_NL/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/pa_IN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/pa_IN/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/pa_IN/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/pa_IN/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/pl_PL/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/pl_PL/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/pl_PL/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/pl_PL/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/pt/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/pt/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/pt/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/pt/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/pt_BR/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/pt_BR/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/ru/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/ru/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/sl_SI/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/sl_SI/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/sr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/sr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/sr/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/sr/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/te_IN/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/te_IN/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/tr_TR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/tr_TR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/tr_TR/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/tr_TR/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/zh_CN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/zh_CN/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/zh_CN/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/zh_CN/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/locale/zh_TW/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/zh_TW/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /horizon/locale/zh_TW/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/locale/zh_TW/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /horizon/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/management/commands/startdash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/management/commands/startdash.py -------------------------------------------------------------------------------- /horizon/management/commands/startpanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/management/commands/startpanel.py -------------------------------------------------------------------------------- /horizon/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/messages.py -------------------------------------------------------------------------------- /horizon/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/middleware.py -------------------------------------------------------------------------------- /horizon/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/models.py -------------------------------------------------------------------------------- /horizon/site_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/site_urls.py -------------------------------------------------------------------------------- /horizon/static/horizon/js/angular/controllers/dummy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/angular/controllers/dummy.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/angular/directives/forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/angular/directives/forms.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/angular/horizon.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/angular/horizon.conf.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/angular/horizon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/angular/horizon.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/angular/services/horizon.utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/angular/services/horizon.utils.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.accordion_nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.accordion_nav.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.communication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.communication.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.d3barchart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.d3barchart.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.d3linechart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.d3linechart.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.d3piechart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.d3piechart.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.firewalls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.firewalls.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.forms.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.formset_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.formset_table.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.heattop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.heattop.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.images.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.instances.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.instances.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.membership.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.membership.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.messages.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.modals.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.networktopology.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.networktopology.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.quota.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.quota.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.tables.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.tables_inline_edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.tables_inline_edit.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.tabs.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.templates.js -------------------------------------------------------------------------------- /horizon/static/horizon/js/horizon.users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/js/horizon.users.js -------------------------------------------------------------------------------- /horizon/static/horizon/lib/jquery/jquery.bootstrap.wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/lib/jquery/jquery.bootstrap.wizard.js -------------------------------------------------------------------------------- /horizon/static/horizon/tests/instances.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/tests/instances.js -------------------------------------------------------------------------------- /horizon/static/horizon/tests/jasmine/utilsSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/tests/jasmine/utilsSpec.js -------------------------------------------------------------------------------- /horizon/static/horizon/tests/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/tests/messages.js -------------------------------------------------------------------------------- /horizon/static/horizon/tests/modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/tests/modals.js -------------------------------------------------------------------------------- /horizon/static/horizon/tests/tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/tests/tables.js -------------------------------------------------------------------------------- /horizon/static/horizon/tests/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/static/horizon/tests/templates.js -------------------------------------------------------------------------------- /horizon/tables/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/tables/__init__.py -------------------------------------------------------------------------------- /horizon/tables/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/tables/actions.py -------------------------------------------------------------------------------- /horizon/tables/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/tables/base.py -------------------------------------------------------------------------------- /horizon/tables/formset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/tables/formset.py -------------------------------------------------------------------------------- /horizon/tables/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/tables/views.py -------------------------------------------------------------------------------- /horizon/tabs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/tabs/__init__.py -------------------------------------------------------------------------------- /horizon/tabs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/tabs/base.py -------------------------------------------------------------------------------- /horizon/tabs/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/tabs/views.py -------------------------------------------------------------------------------- /horizon/templates/_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/_header.html -------------------------------------------------------------------------------- /horizon/templates/_stylesheets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/_stylesheets.html -------------------------------------------------------------------------------- /horizon/templates/auth/_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/auth/_login.html -------------------------------------------------------------------------------- /horizon/templates/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/auth/login.html -------------------------------------------------------------------------------- /horizon/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/base.html -------------------------------------------------------------------------------- /horizon/templates/horizon/_accordion_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/_accordion_nav.html -------------------------------------------------------------------------------- /horizon/templates/horizon/_conf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/_conf.html -------------------------------------------------------------------------------- /horizon/templates/horizon/_custom_head_js.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/templates/horizon/_custom_meta.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/templates/horizon/_messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/_messages.html -------------------------------------------------------------------------------- /horizon/templates/horizon/_nav_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/_nav_list.html -------------------------------------------------------------------------------- /horizon/templates/horizon/_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/_scripts.html -------------------------------------------------------------------------------- /horizon/templates/horizon/_subnav_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/_subnav_list.html -------------------------------------------------------------------------------- /horizon/templates/horizon/client_side/_alert_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/client_side/_alert_message.html -------------------------------------------------------------------------------- /horizon/templates/horizon/client_side/_loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/client_side/_loading.html -------------------------------------------------------------------------------- /horizon/templates/horizon/client_side/_membership.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/client_side/_membership.html -------------------------------------------------------------------------------- /horizon/templates/horizon/client_side/_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/client_side/_modal.html -------------------------------------------------------------------------------- /horizon/templates/horizon/client_side/_script_loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/client_side/_script_loader.html -------------------------------------------------------------------------------- /horizon/templates/horizon/client_side/_table_row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/client_side/_table_row.html -------------------------------------------------------------------------------- /horizon/templates/horizon/client_side/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/client_side/template.html -------------------------------------------------------------------------------- /horizon/templates/horizon/client_side/templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/client_side/templates.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_breadcrumb.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_data_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_data_table.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_data_table_cell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_data_table_cell.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_data_table_row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_data_table_row.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_detail_table.html: -------------------------------------------------------------------------------- 1 | {{ table.render }} 2 | -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_domain_page_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_domain_page_header.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_form_errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_form_errors.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_form_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_form_field.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_form_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_form_fields.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_formset_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_formset_table.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_formset_table_row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_formset_table_row.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_horizontal_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_horizontal_field.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_horizontal_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_horizontal_fields.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_limit_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_limit_summary.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_modal.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_modal_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_modal_form.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_page_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_page_header.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_region_selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_region_selector.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_resource_browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_resource_browser.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_sidebar.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_sidebar_module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_sidebar_module.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_tab_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_tab_group.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_usage_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_usage_summary.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_workflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_workflow.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_workflow_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_workflow_base.html -------------------------------------------------------------------------------- /horizon/templates/horizon/common/_workflow_step.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/common/_workflow_step.html -------------------------------------------------------------------------------- /horizon/templates/horizon/jasmine/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/jasmine/index.html -------------------------------------------------------------------------------- /horizon/templates/horizon/jasmine/jasmine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/jasmine/jasmine.html -------------------------------------------------------------------------------- /horizon/templates/horizon/qunit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/horizon/qunit.html -------------------------------------------------------------------------------- /horizon/templates/splash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templates/splash.html -------------------------------------------------------------------------------- /horizon/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/templatetags/branding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templatetags/branding.py -------------------------------------------------------------------------------- /horizon/templatetags/form_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templatetags/form_helpers.py -------------------------------------------------------------------------------- /horizon/templatetags/horizon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templatetags/horizon.py -------------------------------------------------------------------------------- /horizon/templatetags/parse_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templatetags/parse_date.py -------------------------------------------------------------------------------- /horizon/templatetags/shellfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templatetags/shellfilter.py -------------------------------------------------------------------------------- /horizon/templatetags/sizeformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templatetags/sizeformat.py -------------------------------------------------------------------------------- /horizon/templatetags/truncate_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/templatetags/truncate_filter.py -------------------------------------------------------------------------------- /horizon/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/test/customization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/test/customization/cust_test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/customization/cust_test1.py -------------------------------------------------------------------------------- /horizon/test/customization/cust_test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/customization/cust_test2.py -------------------------------------------------------------------------------- /horizon/test/dummy_auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/test/dummy_auth/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/dummy_auth/backend.py -------------------------------------------------------------------------------- /horizon/test/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/helpers.py -------------------------------------------------------------------------------- /horizon/test/jasmine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/test/jasmine/jasmine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/jasmine/jasmine.py -------------------------------------------------------------------------------- /horizon/test/jasmine/jasmine_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/jasmine/jasmine_tests.py -------------------------------------------------------------------------------- /horizon/test/patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/patches.py -------------------------------------------------------------------------------- /horizon/test/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/settings.py -------------------------------------------------------------------------------- /horizon/test/templates/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/test/templates/_tab.html: -------------------------------------------------------------------------------- 1 | {{ tab.name }} 2 | -------------------------------------------------------------------------------- /horizon/test/templates/base-sidebar.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/test/templates/registration/login.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/test/templates/tab_group.html: -------------------------------------------------------------------------------- 1 | {{ tab_group.render }} 2 | -------------------------------------------------------------------------------- /horizon/test/templates/workflow.html: -------------------------------------------------------------------------------- 1 | {{ workflow.render }} 2 | -------------------------------------------------------------------------------- /horizon/test/test_dashboards/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/test/test_dashboards/cats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/test/test_dashboards/cats/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/test_dashboards/cats/dashboard.py -------------------------------------------------------------------------------- /horizon/test/test_dashboards/cats/kittens/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/test/test_dashboards/cats/kittens/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/test_dashboards/cats/kittens/models.py -------------------------------------------------------------------------------- /horizon/test/test_dashboards/cats/kittens/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/test_dashboards/cats/kittens/panel.py -------------------------------------------------------------------------------- /horizon/test/test_dashboards/cats/kittens/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/test_dashboards/cats/kittens/urls.py -------------------------------------------------------------------------------- /horizon/test/test_dashboards/cats/kittens/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/test_dashboards/cats/kittens/views.py -------------------------------------------------------------------------------- /horizon/test/test_dashboards/cats/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/test_dashboards/cats/models.py -------------------------------------------------------------------------------- /horizon/test/test_dashboards/cats/static/cats/css/cats.css: -------------------------------------------------------------------------------- 1 | /* Additional CSS for cats. */ 2 | -------------------------------------------------------------------------------- /horizon/test/test_dashboards/cats/static/cats/js/cats.js: -------------------------------------------------------------------------------- 1 | /* Additional JavaScript for cats. */ 2 | -------------------------------------------------------------------------------- /horizon/test/test_dashboards/cats/templates/cats/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/test_dashboards/cats/templates/cats/base.html -------------------------------------------------------------------------------- /horizon/test/test_dashboards/cats/tigers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/test/test_dashboards/cats/tigers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/test_dashboards/cats/tigers/models.py -------------------------------------------------------------------------------- /horizon/test/test_dashboards/cats/tigers/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/test_dashboards/cats/tigers/panel.py -------------------------------------------------------------------------------- /horizon/test/test_dashboards/cats/tigers/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/test_dashboards/cats/tigers/urls.py -------------------------------------------------------------------------------- /horizon/test/test_dashboards/cats/tigers/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/test_dashboards/cats/tigers/views.py -------------------------------------------------------------------------------- /horizon/test/test_dashboards/dogs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/test/test_dashboards/dogs/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/test_dashboards/dogs/dashboard.py -------------------------------------------------------------------------------- /horizon/test/test_dashboards/dogs/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/test_dashboards/dogs/models.py -------------------------------------------------------------------------------- /horizon/test/test_dashboards/dogs/puppies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/test/test_dashboards/dogs/puppies/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/test_dashboards/dogs/puppies/models.py -------------------------------------------------------------------------------- /horizon/test/test_dashboards/dogs/puppies/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/test_dashboards/dogs/puppies/panel.py -------------------------------------------------------------------------------- /horizon/test/test_dashboards/dogs/puppies/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/test_dashboards/dogs/puppies/tables.py -------------------------------------------------------------------------------- /horizon/test/test_dashboards/dogs/puppies/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/test_dashboards/dogs/puppies/tabs.py -------------------------------------------------------------------------------- /horizon/test/test_dashboards/dogs/puppies/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/test_dashboards/dogs/puppies/urls.py -------------------------------------------------------------------------------- /horizon/test/test_dashboards/dogs/puppies/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/test_dashboards/dogs/puppies/views.py -------------------------------------------------------------------------------- /horizon/test/test_dashboards/dogs/static/dogs/css/dogs.css: -------------------------------------------------------------------------------- 1 | /* Additional CSS for dogs. */ 2 | -------------------------------------------------------------------------------- /horizon/test/test_dashboards/dogs/static/dogs/js/dogs.js: -------------------------------------------------------------------------------- 1 | /* Additional JavaScript for dogs. */ 2 | -------------------------------------------------------------------------------- /horizon/test/test_dashboards/dogs/templates/dogs/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/test_dashboards/dogs/templates/dogs/base.html -------------------------------------------------------------------------------- /horizon/test/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/test/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/tests/base.py -------------------------------------------------------------------------------- /horizon/test/tests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/tests/exceptions.py -------------------------------------------------------------------------------- /horizon/test/tests/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/tests/forms.py -------------------------------------------------------------------------------- /horizon/test/tests/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/tests/messages.py -------------------------------------------------------------------------------- /horizon/test/tests/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/tests/middleware.py -------------------------------------------------------------------------------- /horizon/test/tests/selenium_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/tests/selenium_tests.py -------------------------------------------------------------------------------- /horizon/test/tests/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/tests/tables.py -------------------------------------------------------------------------------- /horizon/test/tests/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/tests/tabs.py -------------------------------------------------------------------------------- /horizon/test/tests/templatetags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/tests/templatetags.py -------------------------------------------------------------------------------- /horizon/test/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/tests/utils.py -------------------------------------------------------------------------------- /horizon/test/tests/workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/tests/workflows.py -------------------------------------------------------------------------------- /horizon/test/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/urls.py -------------------------------------------------------------------------------- /horizon/test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/utils.py -------------------------------------------------------------------------------- /horizon/test/webdriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/test/webdriver.py -------------------------------------------------------------------------------- /horizon/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/utils/csvbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/utils/csvbase.py -------------------------------------------------------------------------------- /horizon/utils/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/utils/filters.py -------------------------------------------------------------------------------- /horizon/utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/utils/functions.py -------------------------------------------------------------------------------- /horizon/utils/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/utils/html.py -------------------------------------------------------------------------------- /horizon/utils/memoized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/utils/memoized.py -------------------------------------------------------------------------------- /horizon/utils/secret_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/utils/secret_key.py -------------------------------------------------------------------------------- /horizon/utils/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/utils/units.py -------------------------------------------------------------------------------- /horizon/utils/urlresolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/utils/urlresolvers.py -------------------------------------------------------------------------------- /horizon/utils/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/utils/validators.py -------------------------------------------------------------------------------- /horizon/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/version.py -------------------------------------------------------------------------------- /horizon/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/views.py -------------------------------------------------------------------------------- /horizon/workflows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/workflows/__init__.py -------------------------------------------------------------------------------- /horizon/workflows/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/workflows/base.py -------------------------------------------------------------------------------- /horizon/workflows/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/horizon/workflows/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/manage.py -------------------------------------------------------------------------------- /openstack-common.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack-common.conf -------------------------------------------------------------------------------- /openstack_dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/api/__init__.py -------------------------------------------------------------------------------- /openstack_dashboard/api/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/api/base.py -------------------------------------------------------------------------------- /openstack_dashboard/api/ceilometer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/api/ceilometer.py -------------------------------------------------------------------------------- /openstack_dashboard/api/cinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/api/cinder.py -------------------------------------------------------------------------------- /openstack_dashboard/api/fwaas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/api/fwaas.py -------------------------------------------------------------------------------- /openstack_dashboard/api/glance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/api/glance.py -------------------------------------------------------------------------------- /openstack_dashboard/api/heat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/api/heat.py -------------------------------------------------------------------------------- /openstack_dashboard/api/keystone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/api/keystone.py -------------------------------------------------------------------------------- /openstack_dashboard/api/lbaas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/api/lbaas.py -------------------------------------------------------------------------------- /openstack_dashboard/api/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/api/network.py -------------------------------------------------------------------------------- /openstack_dashboard/api/network_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/api/network_base.py -------------------------------------------------------------------------------- /openstack_dashboard/api/neutron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/api/neutron.py -------------------------------------------------------------------------------- /openstack_dashboard/api/nova.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/api/nova.py -------------------------------------------------------------------------------- /openstack_dashboard/api/sahara.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/api/sahara.py -------------------------------------------------------------------------------- /openstack_dashboard/api/swift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/api/swift.py -------------------------------------------------------------------------------- /openstack_dashboard/api/trove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/api/trove.py -------------------------------------------------------------------------------- /openstack_dashboard/api/vpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/api/vpn.py -------------------------------------------------------------------------------- /openstack_dashboard/conf/cinder_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/conf/cinder_policy.json -------------------------------------------------------------------------------- /openstack_dashboard/conf/glance_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/conf/glance_policy.json -------------------------------------------------------------------------------- /openstack_dashboard/conf/heat_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/conf/heat_policy.json -------------------------------------------------------------------------------- /openstack_dashboard/conf/keystone_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/conf/keystone_policy.json -------------------------------------------------------------------------------- /openstack_dashboard/conf/neutron_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/conf/neutron_policy.json -------------------------------------------------------------------------------- /openstack_dashboard/conf/nova_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/conf/nova_policy.json -------------------------------------------------------------------------------- /openstack_dashboard/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/context_processors.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/aggregates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/aggregates/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/aggregates/constants.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/aggregates/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/aggregates/forms.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/aggregates/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/aggregates/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/aggregates/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/aggregates/tables.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/aggregates/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/aggregates/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/aggregates/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/aggregates/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/aggregates/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/aggregates/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/aggregates/workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/aggregates/workflows.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/avos/DEV_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/avos/DEV_NOTES.md -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/avos/Horizon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/avos/Horizon.md -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/avos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/avos/LICENSE -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/avos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/avos/README.md -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/avos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/avos/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/avos/_gitignore -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/avos/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/avos/app.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/avos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/avos/index.html -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/avos/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/avos/models.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/avos/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/avos/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/avos/panel.py.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/avos/panel.py.tmpl -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/avos/res/centos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/avos/res/centos.svg -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/avos/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/avos/server -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/avos/static/js/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/avos/static/js/d3.js -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/avos/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/avos/static/js/main.js -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/avos/tests.py.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/avos/tests.py.tmpl -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/avos/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/avos/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/avos/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/avos/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/dashboard.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/defaults/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/defaults/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/defaults/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/defaults/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/defaults/tables.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/defaults/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/defaults/tabs.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/defaults/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/defaults/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/defaults/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/defaults/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/defaults/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/defaults/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/flavors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/flavors/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/flavors/constants.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/flavors/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/flavors/forms.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/flavors/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/flavors/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/flavors/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/flavors/tables.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/flavors/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/flavors/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/flavors/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/flavors/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/flavors/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/flavors/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/flavors/workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/flavors/workflows.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/hypervisors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/hypervisors/compute/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/hypervisors/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/hypervisors/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/hypervisors/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/hypervisors/tabs.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/hypervisors/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/hypervisors/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/hypervisors/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/hypervisors/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/hypervisors/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/hypervisors/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/images/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/images/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/images/forms.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/images/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/images/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/images/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/images/tables.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/images/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/images/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/images/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/images/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/images/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/images/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/info/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/info/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/info/constants.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/info/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/info/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/info/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/info/tables.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/info/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/info/tabs.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/info/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/info/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/info/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/info/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/info/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/info/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/instances/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/instances/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/instances/forms.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/instances/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/instances/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/instances/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/instances/tables.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/instances/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/instances/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/instances/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/instances/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/instances/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/instances/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/metadata_defs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/metering/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/metering/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/metering/forms.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/metering/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/metering/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/metering/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/metering/tables.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/metering/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/metering/tabs.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/metering/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/metering/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/metering/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/metering/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/metering/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/metering/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/models.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/networks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/networks/agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/networks/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/networks/forms.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/networks/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/networks/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/networks/ports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/networks/subnets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/networks/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/networks/tables.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/networks/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/networks/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/networks/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/networks/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/networks/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/networks/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/overview/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/overview/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/overview/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/overview/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/overview/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/overview/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/overview/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/overview/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/overview/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/routers/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/routers/extensions/routerrules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/routers/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/routers/forms.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/routers/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/routers/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/routers/ports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/routers/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/routers/tables.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/routers/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/routers/tabs.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/routers/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/routers/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/routers/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/routers/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/routers/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/routers/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/volumes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/volumes/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/volumes/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/volumes/snapshots/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/volumes/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/volumes/tabs.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/volumes/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/volumes/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/volumes/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/volumes/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/volumes/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/admin/volumes/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/volumes/volume_types/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/volumes/volume_types/extras/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/volumes/volume_types/qos_specs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/admin/volumes/volumes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/dashboard.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/domains/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/domains/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/domains/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/domains/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/domains/tables.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/domains/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/domains/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/domains/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/domains/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/domains/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/domains/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/groups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/groups/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/groups/forms.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/groups/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/groups/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/groups/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/groups/tables.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/groups/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/groups/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/groups/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/groups/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/groups/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/groups/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/projects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/projects/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/projects/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/projects/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/projects/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/projects/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/projects/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/projects/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/projects/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/roles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/roles/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/roles/forms.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/roles/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/roles/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/roles/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/roles/tables.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/roles/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/roles/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/roles/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/roles/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/roles/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/roles/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/users/forms.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/users/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/users/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/users/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/users/tables.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/users/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/users/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/identity/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/identity/users/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/access_and_security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/access_and_security/api_access/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/access_and_security/floating_ips/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/access_and_security/keypairs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/access_and_security/security_groups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/containers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/containers/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/containers/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/dashboard.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/data_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/data_processing/cluster_templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/data_processing/cluster_templates/workflows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/data_processing/clusters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/data_processing/clusters/workflows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/data_processing/data_image_registry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/data_processing/data_plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/data_processing/data_sources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/data_processing/data_sources/workflows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/data_processing/job_binaries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/data_processing/job_executions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/data_processing/jobs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/data_processing/jobs/workflows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/data_processing/nodegroup_templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/data_processing/nodegroup_templates/workflows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/data_processing/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/database_backups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/databases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/databases/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/databases/forms.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/databases/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/databases/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/databases/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/databases/tabs.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/databases/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/databases/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/databases/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/databases/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/databases/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/databases/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/firewalls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/firewalls/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/firewalls/forms.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/firewalls/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/firewalls/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/firewalls/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/firewalls/tabs.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/firewalls/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/firewalls/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/firewalls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/firewalls/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/firewalls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/firewalls/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/images/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/images/images/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/images/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/images/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/images/snapshots/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/images/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/images/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/images/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/images/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/images/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/images/utils.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/images/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/images/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/instances/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/instances/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/instances/forms.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/instances/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/instances/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/instances/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/instances/tabs.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/instances/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/instances/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/instances/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/instances/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/instances/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/instances/utils.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/instances/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/instances/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/loadbalancers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/models.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/network_topology/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/network_topology/instances/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/network_topology/ports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/network_topology/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/networks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/networks/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/networks/forms.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/networks/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/networks/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/networks/ports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/networks/subnets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/networks/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/networks/tables.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/networks/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/networks/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/networks/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/networks/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/networks/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/networks/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/overview/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/overview/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/overview/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/overview/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/overview/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/overview/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/overview/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/overview/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/overview/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/routers/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/routers/extensions/routerrules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/routers/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/routers/forms.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/routers/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/routers/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/routers/ports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/routers/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/routers/tables.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/routers/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/routers/tabs.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/routers/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/routers/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/routers/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/routers/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/routers/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/routers/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/stacks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/stacks/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/stacks/api.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/stacks/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/stacks/forms.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/stacks/mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/stacks/mappings.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/stacks/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/stacks/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/stacks/sro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/stacks/sro.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/stacks/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/stacks/tables.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/stacks/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/stacks/tabs.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/stacks/templates/stacks/_detail_events.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | 3 | {{ table.render }} 4 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/stacks/templates/stacks/_detail_resources.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | 3 | {{ table.render }} 4 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/stacks/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/stacks/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/stacks/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/stacks/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/stacks/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/stacks/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/volumes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/volumes/backups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/volumes/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/volumes/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/volumes/snapshots/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/volumes/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/volumes/tabs.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/volumes/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/volumes/test.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/volumes/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/volumes/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/volumes/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/volumes/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/volumes/volumes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/vpn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/vpn/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/vpn/forms.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/vpn/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/vpn/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/vpn/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/vpn/tables.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/vpn/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/vpn/tabs.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/vpn/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/vpn/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/vpn/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/vpn/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/vpn/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/vpn/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/project/vpn/workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/project/vpn/workflows.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/router/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/router/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/router/dashboard.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/router/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/router/models.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/router/nexus1000v/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/router/nexus1000v/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/router/nexus1000v/forms.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/router/nexus1000v/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/router/nexus1000v/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/router/nexus1000v/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/router/nexus1000v/tabs.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/router/nexus1000v/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/router/nexus1000v/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/router/nexus1000v/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/router/nexus1000v/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/router/nexus1000v/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/router/nexus1000v/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/settings/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/settings/dashboard.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/settings/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/settings/models.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/settings/password/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/settings/password/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/settings/password/forms.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/settings/password/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/settings/password/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/settings/password/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/settings/password/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/settings/password/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/settings/password/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/settings/password/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/settings/password/views.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/settings/user/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/settings/user/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/settings/user/forms.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/settings/user/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/settings/user/panel.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/settings/user/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/settings/user/tests.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/settings/user/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/settings/user/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/dashboards/settings/user/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/dashboards/settings/user/views.py -------------------------------------------------------------------------------- /openstack_dashboard/django_pyscss_fix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/django_pyscss_fix/__init__.py -------------------------------------------------------------------------------- /openstack_dashboard/enabled/_10_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/enabled/_10_project.py -------------------------------------------------------------------------------- /openstack_dashboard/enabled/_20_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/enabled/_20_admin.py -------------------------------------------------------------------------------- /openstack_dashboard/enabled/_25_identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/enabled/_25_identity.py -------------------------------------------------------------------------------- /openstack_dashboard/enabled/_30_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/enabled/_30_settings.py -------------------------------------------------------------------------------- /openstack_dashboard/enabled/_40_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/enabled/_40_router.py -------------------------------------------------------------------------------- /openstack_dashboard/enabled/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/exceptions.py -------------------------------------------------------------------------------- /openstack_dashboard/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/hooks.py -------------------------------------------------------------------------------- /openstack_dashboard/local/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/local/enabled/_40_router.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/local/enabled/_40_router.py.example -------------------------------------------------------------------------------- /openstack_dashboard/local/enabled/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/local/local_settings.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/local/local_settings.py.example -------------------------------------------------------------------------------- /openstack_dashboard/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openstack_dashboard/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openstack_dashboard/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openstack_dashboard/locale/en_AU/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/locale/en_AU/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openstack_dashboard/locale/en_GB/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/locale/en_GB/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openstack_dashboard/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openstack_dashboard/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openstack_dashboard/locale/hi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/locale/hi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openstack_dashboard/locale/ja/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/locale/ja/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openstack_dashboard/locale/ko_KR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/locale/ko_KR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openstack_dashboard/locale/nl_NL/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/locale/nl_NL/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openstack_dashboard/locale/pl_PL/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/locale/pl_PL/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openstack_dashboard/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openstack_dashboard/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openstack_dashboard/locale/sr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/locale/sr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openstack_dashboard/locale/zh_CN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/locale/zh_CN/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openstack_dashboard/locale/zh_TW/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/locale/zh_TW/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openstack_dashboard/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/management/commands/make_web_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/management/commands/make_web_conf.py -------------------------------------------------------------------------------- /openstack_dashboard/openstack/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/openstack/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/openstack/common/_i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/openstack/common/_i18n.py -------------------------------------------------------------------------------- /openstack_dashboard/openstack/common/fileutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/openstack/common/fileutils.py -------------------------------------------------------------------------------- /openstack_dashboard/openstack/common/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/openstack/common/local.py -------------------------------------------------------------------------------- /openstack_dashboard/openstack/common/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/openstack/common/log.py -------------------------------------------------------------------------------- /openstack_dashboard/openstack/common/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/openstack/common/policy.py -------------------------------------------------------------------------------- /openstack_dashboard/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/policy.py -------------------------------------------------------------------------------- /openstack_dashboard/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/settings.py -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/css/avos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/css/avos.css -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/css/rickshaw.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/ciscologo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/ciscologo.png -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/db-gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/db-gray.gif -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/db-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/db-gray.svg -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/db-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/db-green.svg -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/db-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/db-red.svg -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/drag.png -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/drop_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/drop_arrow.png -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/favicon.ico -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/lb-gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/lb-gray.gif -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/lb-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/lb-gray.svg -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/lb-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/lb-green.svg -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/lb-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/lb-red.svg -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/loading.gif -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/logo-splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/logo-splash.png -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/logo.png -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/profile_drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/profile_drop.png -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/router.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/router.png -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/search.png -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/server-gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/server-gray.gif -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/server-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/server-gray.svg -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/server-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/server-green.svg -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/server-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/server-red.svg -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/server.png -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/sidebar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/sidebar_bg.png -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/sort_asc.png -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/sort_both.png -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/sort_desc.png -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/spinner.gif -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/stack-gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/stack-gray.gif -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/stack-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/stack-gray.svg -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/stack-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/stack-green.svg -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/stack-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/stack-red.svg -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/unknown-gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/unknown-gray.gif -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/unknown-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/unknown-gray.svg -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/unknown-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/unknown-red.svg -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/img/up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/img/up_arrow.png -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/js/avos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/js/avos.js -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/js/heatmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/js/heatmap.js -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/js/utils.js -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/scss/_variables.scss -------------------------------------------------------------------------------- /openstack_dashboard/static/dashboard/scss/horizon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/dashboard/scss/horizon.scss -------------------------------------------------------------------------------- /openstack_dashboard/static/screens/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/static/screens/screen1.png -------------------------------------------------------------------------------- /openstack_dashboard/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/templates/403.html -------------------------------------------------------------------------------- /openstack_dashboard/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/templates/404.html -------------------------------------------------------------------------------- /openstack_dashboard/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/templates/500.html -------------------------------------------------------------------------------- /openstack_dashboard/templates/_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/templates/_header.html -------------------------------------------------------------------------------- /openstack_dashboard/templates/_stylesheets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/templates/_stylesheets.html -------------------------------------------------------------------------------- /openstack_dashboard/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/templatetags/context_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/templatetags/context_selection.py -------------------------------------------------------------------------------- /openstack_dashboard/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/api_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/api_tests/base_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/api_tests/base_tests.py -------------------------------------------------------------------------------- /openstack_dashboard/test/api_tests/ceilometer_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/api_tests/ceilometer_tests.py -------------------------------------------------------------------------------- /openstack_dashboard/test/api_tests/cinder_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/api_tests/cinder_tests.py -------------------------------------------------------------------------------- /openstack_dashboard/test/api_tests/fwaas_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/api_tests/fwaas_tests.py -------------------------------------------------------------------------------- /openstack_dashboard/test/api_tests/glance_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/api_tests/glance_tests.py -------------------------------------------------------------------------------- /openstack_dashboard/test/api_tests/heat_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/api_tests/heat_tests.py -------------------------------------------------------------------------------- /openstack_dashboard/test/api_tests/keystone_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/api_tests/keystone_tests.py -------------------------------------------------------------------------------- /openstack_dashboard/test/api_tests/lbaas_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/api_tests/lbaas_tests.py -------------------------------------------------------------------------------- /openstack_dashboard/test/api_tests/network_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/api_tests/network_tests.py -------------------------------------------------------------------------------- /openstack_dashboard/test/api_tests/neutron_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/api_tests/neutron_tests.py -------------------------------------------------------------------------------- /openstack_dashboard/test/api_tests/nova_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/api_tests/nova_tests.py -------------------------------------------------------------------------------- /openstack_dashboard/test/api_tests/swift_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/api_tests/swift_tests.py -------------------------------------------------------------------------------- /openstack_dashboard/test/api_tests/vpnaas_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/api_tests/vpnaas_tests.py -------------------------------------------------------------------------------- /openstack_dashboard/test/error_pages_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/error_pages_urls.py -------------------------------------------------------------------------------- /openstack_dashboard/test/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/helpers.py -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/integration_tests/README.rst -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/integration_tests/config.py -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/integration_tests/helpers.py -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/horizon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/integration_tests/horizon.conf -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/pages/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/pages/admin/system/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/pages/admin/system/resource_usage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/pages/admin/system/system_info/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/pages/identity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/pages/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/pages/project/compute/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/pages/project/compute/access_and_security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/pages/project/compute/volumes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/pages/project/data_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/pages/project/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/pages/project/object_store/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/pages/project/orchestration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/pages/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/regions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/integration_tests/webdriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/integration_tests/webdriver.py -------------------------------------------------------------------------------- /openstack_dashboard/test/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/settings.py -------------------------------------------------------------------------------- /openstack_dashboard/test/templates/404.html: -------------------------------------------------------------------------------- 1 | 404 NOT FOUND 2 | -------------------------------------------------------------------------------- /openstack_dashboard/test/templates/500.html: -------------------------------------------------------------------------------- 1 | 500 ERROR 2 | -------------------------------------------------------------------------------- /openstack_dashboard/test/templates/_tab.html: -------------------------------------------------------------------------------- 1 | {{ tab.name }} 2 | -------------------------------------------------------------------------------- /openstack_dashboard/test/templates/base-sidebar.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/templates/registration/login.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/templates/tab_group.html: -------------------------------------------------------------------------------- 1 | {{ tab_group.render }} 2 | -------------------------------------------------------------------------------- /openstack_dashboard/test/templates/workflow.html: -------------------------------------------------------------------------------- 1 | {{ workflow.render }} 2 | -------------------------------------------------------------------------------- /openstack_dashboard/test/test_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/test_data/ceilometer_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/test_data/ceilometer_data.py -------------------------------------------------------------------------------- /openstack_dashboard/test/test_data/cinder_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/test_data/cinder_data.py -------------------------------------------------------------------------------- /openstack_dashboard/test/test_data/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/test_data/exceptions.py -------------------------------------------------------------------------------- /openstack_dashboard/test/test_data/glance_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/test_data/glance_data.py -------------------------------------------------------------------------------- /openstack_dashboard/test/test_data/heat_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/test_data/heat_data.py -------------------------------------------------------------------------------- /openstack_dashboard/test/test_data/keystone_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/test_data/keystone_data.py -------------------------------------------------------------------------------- /openstack_dashboard/test/test_data/neutron_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/test_data/neutron_data.py -------------------------------------------------------------------------------- /openstack_dashboard/test/test_data/nova_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/test_data/nova_data.py -------------------------------------------------------------------------------- /openstack_dashboard/test/test_data/sahara_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/test_data/sahara_data.py -------------------------------------------------------------------------------- /openstack_dashboard/test/test_data/swift_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/test_data/swift_data.py -------------------------------------------------------------------------------- /openstack_dashboard/test/test_data/trove_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/test_data/trove_data.py -------------------------------------------------------------------------------- /openstack_dashboard/test/test_data/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/test_data/utils.py -------------------------------------------------------------------------------- /openstack_dashboard/test/test_panels/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/test_panels/plugin_panel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/test_panels/plugin_panel/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/test_panels/plugin_panel/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/test/test_plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/test_plugins/panel_config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/test_plugins/panel_group_config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/test_plugins/panel_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/test_plugins/panel_tests.py -------------------------------------------------------------------------------- /openstack_dashboard/test/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/test/tests/error_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/tests/error_pages.py -------------------------------------------------------------------------------- /openstack_dashboard/test/tests/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/tests/policy.py -------------------------------------------------------------------------------- /openstack_dashboard/test/tests/quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/tests/quotas.py -------------------------------------------------------------------------------- /openstack_dashboard/test/tests/selenium_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/tests/selenium_tests.py -------------------------------------------------------------------------------- /openstack_dashboard/test/tests/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/tests/templates.py -------------------------------------------------------------------------------- /openstack_dashboard/test/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/test/tests/utils.py -------------------------------------------------------------------------------- /openstack_dashboard/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/urls.py -------------------------------------------------------------------------------- /openstack_dashboard/usage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/usage/__init__.py -------------------------------------------------------------------------------- /openstack_dashboard/usage/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/usage/base.py -------------------------------------------------------------------------------- /openstack_dashboard/usage/quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/usage/quotas.py -------------------------------------------------------------------------------- /openstack_dashboard/usage/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/usage/tables.py -------------------------------------------------------------------------------- /openstack_dashboard/usage/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/usage/views.py -------------------------------------------------------------------------------- /openstack_dashboard/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_dashboard/utils/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/utils/filters.py -------------------------------------------------------------------------------- /openstack_dashboard/utils/metering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/utils/metering.py -------------------------------------------------------------------------------- /openstack_dashboard/utils/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/utils/settings.py -------------------------------------------------------------------------------- /openstack_dashboard/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/views.py -------------------------------------------------------------------------------- /openstack_dashboard/wsgi/django.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/openstack_dashboard/wsgi/django.wsgi -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/run_tests.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tools/install_venv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/tools/install_venv.py -------------------------------------------------------------------------------- /tools/install_venv_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/tools/install_venv_common.py -------------------------------------------------------------------------------- /tools/with_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/tools/with_venv.sh -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoSystems/avos/HEAD/tox.ini --------------------------------------------------------------------------------