├── .gitignore ├── .travis.yml ├── MANIFEST.in ├── README.rst ├── Vagrantfile ├── conf ├── conf.d │ └── webvirtmgr-console ├── gunicorn.conf.py ├── init │ ├── webvirtmgr-console.service │ ├── webvirtmgr-redhat.conf │ └── webvirtmgr.service ├── initd │ ├── webvirtmgr-console-arch │ ├── webvirtmgr-console-gentoo │ ├── webvirtmgr-console-redhat │ ├── webvirtmgr-console-suse │ └── webvirtmgr-console-ubuntu ├── libvirt-bootstrap.sh └── saltstack │ └── centos_rhel │ └── salt │ ├── libvirt │ ├── init.sls │ ├── iptables │ ├── libvirtd │ ├── libvirtd.conf │ └── qemu.conf │ └── top.sls ├── console ├── __init__.py ├── cert.pem ├── tests.py ├── tunnel.py ├── views.py └── webvirtmgr-console ├── create ├── __init__.py ├── fixtures │ └── initial_data.json ├── forms.py ├── models.py ├── tests.py └── views.py ├── deploy ├── fabric │ ├── README.md │ ├── fab_requirements.txt │ ├── fabfile.py │ ├── settings.py │ ├── templates │ │ ├── README.md │ │ ├── nginx.conf │ │ ├── original.nginx.conf │ │ └── webvirtmgr.ini │ └── utils.py └── rpmbuild │ ├── README.md │ └── webvirtmgr.spec ├── dev-requirements.txt ├── hostdetail ├── __init__.py ├── tests.py └── views.py ├── images └── README.md ├── instance ├── __init__.py ├── models.py ├── templatetags │ ├── __init__.py │ └── tags_active.py ├── tests.py └── views.py ├── interfaces ├── __init__.py ├── forms.py ├── tests.py └── views.py ├── locale ├── da_DK │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── ru │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po └── zh_CN │ └── LC_MESSAGES │ ├── django.mo │ └── django.po ├── manage.py ├── networks ├── __init__.py ├── forms.py ├── tests.py └── views.py ├── requirements.txt ├── secrets ├── __init__.py ├── forms.py ├── tests.py └── views.py ├── serverlog ├── __init__.py ├── models.py ├── tests.py └── views.py ├── servers ├── __init__.py ├── forms.py ├── models.py ├── tests.py └── views.py ├── setup.py ├── storages ├── __init__.py ├── forms.py ├── tests.py └── views.py ├── templates ├── 404.html ├── 500.html ├── base.html ├── base_auth.html ├── console-base.html ├── console-spice.html ├── console-vnc.html ├── create.html ├── hostdetail.html ├── infrastructure.html ├── instance.html ├── instances.html ├── interface.html ├── interfaces.html ├── login.html ├── logout.html ├── network.html ├── networks.html ├── secrets.html ├── servers.html ├── sidebar.html ├── sidebar_close.html ├── storage.html └── storages.html ├── vrtManager ├── IPy.py ├── __init__.py ├── connection.py ├── create.py ├── hostdetails.py ├── instance.py ├── interface.py ├── network.py ├── rwlock.py ├── secrets.py ├── storage.py └── util.py └── webvirtmgr ├── __init__.py ├── local ├── __init__.py └── local_settings.py.example ├── settings-dev.py ├── settings.py ├── static ├── css │ ├── bootstrap-multiselect.css │ ├── bootstrap.min.css │ ├── signin.css │ ├── table-sort.css │ └── webvirtmgr.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── img │ ├── asc.gif │ ├── bg.gif │ ├── desc.gif │ └── favicon.ico └── js │ ├── Chart.min.js │ ├── bootstrap-multiselect.js │ ├── bootstrap.min.js │ ├── infrastructure.js │ ├── jquery-1.10.2.js │ ├── jquery-migrate-1.2.1.js │ ├── jquery.tablesorter.js │ ├── novnc │ ├── Orbitron700.ttf │ ├── Orbitron700.woff │ ├── base.css │ ├── base64.js │ ├── black.css │ ├── blue.css │ ├── chrome-app │ │ └── tcp-client.js │ ├── des.js │ ├── display.js │ ├── input.js │ ├── jsunzip.js │ ├── logo.js │ ├── playback.js │ ├── rfb.js │ ├── ui.js │ ├── util.js │ ├── web-socket-js │ │ ├── README.txt │ │ ├── WebSocketMain.swf │ │ ├── swfobject.js │ │ └── web_socket.js │ ├── websock.js │ └── webutil.js │ └── spice-html5 │ ├── atKeynames.js │ ├── bitmap.js │ ├── cursor.js │ ├── display.js │ ├── enums.js │ ├── filexfer.js │ ├── inputs.js │ ├── jsbn.js │ ├── lz.js │ ├── main.js │ ├── playback.js │ ├── png.js │ ├── prng4.js │ ├── quic.js │ ├── resize.js │ ├── rng.js │ ├── rsa.js │ ├── sha1.js │ ├── simulatecursor.js │ ├── spicearraybuffer.js │ ├── spiceconn.js │ ├── spicedataview.js │ ├── spicemsg.js │ ├── spicetype.js │ ├── thirdparty │ ├── jsbn.js │ ├── prng4.js │ ├── rng.js │ ├── rsa.js │ └── sha1.js │ ├── ticket.js │ ├── utils.js │ ├── webm.js │ └── wire.js ├── urls.py ├── utils ├── __init__.py └── secret_key.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/.travis.yml -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/README.rst -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/Vagrantfile -------------------------------------------------------------------------------- /conf/conf.d/webvirtmgr-console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/conf/conf.d/webvirtmgr-console -------------------------------------------------------------------------------- /conf/gunicorn.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/conf/gunicorn.conf.py -------------------------------------------------------------------------------- /conf/init/webvirtmgr-console.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/conf/init/webvirtmgr-console.service -------------------------------------------------------------------------------- /conf/init/webvirtmgr-redhat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/conf/init/webvirtmgr-redhat.conf -------------------------------------------------------------------------------- /conf/init/webvirtmgr.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/conf/init/webvirtmgr.service -------------------------------------------------------------------------------- /conf/initd/webvirtmgr-console-arch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/conf/initd/webvirtmgr-console-arch -------------------------------------------------------------------------------- /conf/initd/webvirtmgr-console-gentoo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/conf/initd/webvirtmgr-console-gentoo -------------------------------------------------------------------------------- /conf/initd/webvirtmgr-console-redhat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/conf/initd/webvirtmgr-console-redhat -------------------------------------------------------------------------------- /conf/initd/webvirtmgr-console-suse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/conf/initd/webvirtmgr-console-suse -------------------------------------------------------------------------------- /conf/initd/webvirtmgr-console-ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/conf/initd/webvirtmgr-console-ubuntu -------------------------------------------------------------------------------- /conf/libvirt-bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/conf/libvirt-bootstrap.sh -------------------------------------------------------------------------------- /conf/saltstack/centos_rhel/salt/libvirt/init.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/conf/saltstack/centos_rhel/salt/libvirt/init.sls -------------------------------------------------------------------------------- /conf/saltstack/centos_rhel/salt/libvirt/iptables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/conf/saltstack/centos_rhel/salt/libvirt/iptables -------------------------------------------------------------------------------- /conf/saltstack/centos_rhel/salt/libvirt/libvirtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/conf/saltstack/centos_rhel/salt/libvirt/libvirtd -------------------------------------------------------------------------------- /conf/saltstack/centos_rhel/salt/libvirt/libvirtd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/conf/saltstack/centos_rhel/salt/libvirt/libvirtd.conf -------------------------------------------------------------------------------- /conf/saltstack/centos_rhel/salt/libvirt/qemu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/conf/saltstack/centos_rhel/salt/libvirt/qemu.conf -------------------------------------------------------------------------------- /conf/saltstack/centos_rhel/salt/top.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/conf/saltstack/centos_rhel/salt/top.sls -------------------------------------------------------------------------------- /console/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /console/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/console/cert.pem -------------------------------------------------------------------------------- /console/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/console/tests.py -------------------------------------------------------------------------------- /console/tunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/console/tunnel.py -------------------------------------------------------------------------------- /console/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/console/views.py -------------------------------------------------------------------------------- /console/webvirtmgr-console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/console/webvirtmgr-console -------------------------------------------------------------------------------- /create/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/create/fixtures/initial_data.json -------------------------------------------------------------------------------- /create/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/create/forms.py -------------------------------------------------------------------------------- /create/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/create/models.py -------------------------------------------------------------------------------- /create/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/create/tests.py -------------------------------------------------------------------------------- /create/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/create/views.py -------------------------------------------------------------------------------- /deploy/fabric/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/deploy/fabric/README.md -------------------------------------------------------------------------------- /deploy/fabric/fab_requirements.txt: -------------------------------------------------------------------------------- 1 | Fabric==1.8.2 2 | fabtools==0.17.0 3 | -------------------------------------------------------------------------------- /deploy/fabric/fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/deploy/fabric/fabfile.py -------------------------------------------------------------------------------- /deploy/fabric/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/deploy/fabric/settings.py -------------------------------------------------------------------------------- /deploy/fabric/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/deploy/fabric/templates/README.md -------------------------------------------------------------------------------- /deploy/fabric/templates/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/deploy/fabric/templates/nginx.conf -------------------------------------------------------------------------------- /deploy/fabric/templates/original.nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/deploy/fabric/templates/original.nginx.conf -------------------------------------------------------------------------------- /deploy/fabric/templates/webvirtmgr.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/deploy/fabric/templates/webvirtmgr.ini -------------------------------------------------------------------------------- /deploy/fabric/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/deploy/fabric/utils.py -------------------------------------------------------------------------------- /deploy/rpmbuild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/deploy/rpmbuild/README.md -------------------------------------------------------------------------------- /deploy/rpmbuild/webvirtmgr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/deploy/rpmbuild/webvirtmgr.spec -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /hostdetail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hostdetail/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/hostdetail/tests.py -------------------------------------------------------------------------------- /hostdetail/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/hostdetail/views.py -------------------------------------------------------------------------------- /images/README.md: -------------------------------------------------------------------------------- 1 | Folder need for upload ISO images (You can delete this file) 2 | -------------------------------------------------------------------------------- /instance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instance/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/instance/models.py -------------------------------------------------------------------------------- /instance/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instance/templatetags/tags_active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/instance/templatetags/tags_active.py -------------------------------------------------------------------------------- /instance/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/instance/tests.py -------------------------------------------------------------------------------- /instance/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/instance/views.py -------------------------------------------------------------------------------- /interfaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /interfaces/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/interfaces/forms.py -------------------------------------------------------------------------------- /interfaces/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/interfaces/tests.py -------------------------------------------------------------------------------- /interfaces/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/interfaces/views.py -------------------------------------------------------------------------------- /locale/da_DK/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/locale/da_DK/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/da_DK/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/locale/da_DK/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/locale/zh_CN/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/locale/zh_CN/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/manage.py -------------------------------------------------------------------------------- /networks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /networks/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/networks/forms.py -------------------------------------------------------------------------------- /networks/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/networks/tests.py -------------------------------------------------------------------------------- /networks/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/networks/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/requirements.txt -------------------------------------------------------------------------------- /secrets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /secrets/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/secrets/forms.py -------------------------------------------------------------------------------- /secrets/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/secrets/tests.py -------------------------------------------------------------------------------- /secrets/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/secrets/views.py -------------------------------------------------------------------------------- /serverlog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serverlog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/serverlog/models.py -------------------------------------------------------------------------------- /serverlog/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/serverlog/tests.py -------------------------------------------------------------------------------- /serverlog/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /servers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /servers/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/servers/forms.py -------------------------------------------------------------------------------- /servers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/servers/models.py -------------------------------------------------------------------------------- /servers/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/servers/tests.py -------------------------------------------------------------------------------- /servers/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/servers/views.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/setup.py -------------------------------------------------------------------------------- /storages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storages/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/storages/forms.py -------------------------------------------------------------------------------- /storages/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/storages/tests.py -------------------------------------------------------------------------------- /storages/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/storages/views.py -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/500.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/base_auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/base_auth.html -------------------------------------------------------------------------------- /templates/console-base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/console-base.html -------------------------------------------------------------------------------- /templates/console-spice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/console-spice.html -------------------------------------------------------------------------------- /templates/console-vnc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/console-vnc.html -------------------------------------------------------------------------------- /templates/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/create.html -------------------------------------------------------------------------------- /templates/hostdetail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/hostdetail.html -------------------------------------------------------------------------------- /templates/infrastructure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/infrastructure.html -------------------------------------------------------------------------------- /templates/instance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/instance.html -------------------------------------------------------------------------------- /templates/instances.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/instances.html -------------------------------------------------------------------------------- /templates/interface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/interface.html -------------------------------------------------------------------------------- /templates/interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/interfaces.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/logout.html -------------------------------------------------------------------------------- /templates/network.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/network.html -------------------------------------------------------------------------------- /templates/networks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/networks.html -------------------------------------------------------------------------------- /templates/secrets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/secrets.html -------------------------------------------------------------------------------- /templates/servers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/servers.html -------------------------------------------------------------------------------- /templates/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/sidebar.html -------------------------------------------------------------------------------- /templates/sidebar_close.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /templates/storage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/storage.html -------------------------------------------------------------------------------- /templates/storages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/templates/storages.html -------------------------------------------------------------------------------- /vrtManager/IPy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/vrtManager/IPy.py -------------------------------------------------------------------------------- /vrtManager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vrtManager/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/vrtManager/connection.py -------------------------------------------------------------------------------- /vrtManager/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/vrtManager/create.py -------------------------------------------------------------------------------- /vrtManager/hostdetails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/vrtManager/hostdetails.py -------------------------------------------------------------------------------- /vrtManager/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/vrtManager/instance.py -------------------------------------------------------------------------------- /vrtManager/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/vrtManager/interface.py -------------------------------------------------------------------------------- /vrtManager/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/vrtManager/network.py -------------------------------------------------------------------------------- /vrtManager/rwlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/vrtManager/rwlock.py -------------------------------------------------------------------------------- /vrtManager/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/vrtManager/secrets.py -------------------------------------------------------------------------------- /vrtManager/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/vrtManager/storage.py -------------------------------------------------------------------------------- /vrtManager/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/vrtManager/util.py -------------------------------------------------------------------------------- /webvirtmgr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webvirtmgr/local/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webvirtmgr/local/local_settings.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/local/local_settings.py.example -------------------------------------------------------------------------------- /webvirtmgr/settings-dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/settings-dev.py -------------------------------------------------------------------------------- /webvirtmgr/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/settings.py -------------------------------------------------------------------------------- /webvirtmgr/static/css/bootstrap-multiselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/css/bootstrap-multiselect.css -------------------------------------------------------------------------------- /webvirtmgr/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /webvirtmgr/static/css/signin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/css/signin.css -------------------------------------------------------------------------------- /webvirtmgr/static/css/table-sort.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/css/table-sort.css -------------------------------------------------------------------------------- /webvirtmgr/static/css/webvirtmgr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/css/webvirtmgr.css -------------------------------------------------------------------------------- /webvirtmgr/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /webvirtmgr/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /webvirtmgr/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /webvirtmgr/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /webvirtmgr/static/img/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/img/asc.gif -------------------------------------------------------------------------------- /webvirtmgr/static/img/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/img/bg.gif -------------------------------------------------------------------------------- /webvirtmgr/static/img/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/img/desc.gif -------------------------------------------------------------------------------- /webvirtmgr/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/img/favicon.ico -------------------------------------------------------------------------------- /webvirtmgr/static/js/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/Chart.min.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/bootstrap-multiselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/bootstrap-multiselect.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/infrastructure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/infrastructure.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/jquery-1.10.2.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/jquery-migrate-1.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/jquery-migrate-1.2.1.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/jquery.tablesorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/jquery.tablesorter.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/Orbitron700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/Orbitron700.ttf -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/Orbitron700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/Orbitron700.woff -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/base.css -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/base64.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/black.css -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/blue.css -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/chrome-app/tcp-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/chrome-app/tcp-client.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/des.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/des.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/display.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/input.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/jsunzip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/jsunzip.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/logo.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/playback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/playback.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/rfb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/rfb.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/ui.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/util.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/web-socket-js/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/web-socket-js/README.txt -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/web-socket-js/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/web-socket-js/WebSocketMain.swf -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/web-socket-js/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/web-socket-js/swfobject.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/web-socket-js/web_socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/web-socket-js/web_socket.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/websock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/websock.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/novnc/webutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/novnc/webutil.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/atKeynames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/atKeynames.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/bitmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/bitmap.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/cursor.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/display.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/enums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/enums.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/filexfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/filexfer.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/inputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/inputs.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/jsbn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/jsbn.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/lz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/lz.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/main.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/playback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/playback.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/png.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/png.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/prng4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/prng4.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/quic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/quic.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/resize.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/rng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/rng.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/rsa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/rsa.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/sha1.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/simulatecursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/simulatecursor.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/spicearraybuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/spicearraybuffer.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/spiceconn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/spiceconn.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/spicedataview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/spicedataview.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/spicemsg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/spicemsg.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/spicetype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/spicetype.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/thirdparty/jsbn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/thirdparty/jsbn.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/thirdparty/prng4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/thirdparty/prng4.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/thirdparty/rng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/thirdparty/rng.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/thirdparty/rsa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/thirdparty/rsa.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/thirdparty/sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/thirdparty/sha1.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/ticket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/ticket.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/utils.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/webm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/webm.js -------------------------------------------------------------------------------- /webvirtmgr/static/js/spice-html5/wire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/static/js/spice-html5/wire.js -------------------------------------------------------------------------------- /webvirtmgr/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/urls.py -------------------------------------------------------------------------------- /webvirtmgr/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webvirtmgr/utils/secret_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/utils/secret_key.py -------------------------------------------------------------------------------- /webvirtmgr/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retspen/webvirtmgr/HEAD/webvirtmgr/wsgi.py --------------------------------------------------------------------------------