├── COPYRIGHT ├── Changelog ├── README.md ├── _version.py ├── accounts ├── __init__.py ├── admin.py ├── forms.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── idle_accounts.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20161020_1643.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── apply ├── __init__.py ├── admin.py ├── apps.py ├── decorators.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20161024_1512.py │ └── __init__.py ├── models.py ├── south_migrations │ └── 0012_auto__add_field_organization_synced.py ├── tests.py ├── urls │ ├── __init__.py │ ├── application.py │ └── user.py ├── utils.py └── views │ ├── __init__.py │ └── user.py ├── auditlog ├── __init__.py ├── admin.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── signals.py ├── tests.py ├── urls.py ├── utils.py └── views.py ├── context ├── __init__.py ├── global_vars.py ├── pending_notifications.py └── session_remaining.py ├── contrib ├── CONTENTS ├── default │ └── ganetimgr-watcher ├── fabric │ ├── fabfile.py │ ├── requirements.txt │ └── utils │ │ ├── __init__.py │ │ ├── database.py │ │ ├── django.py │ │ ├── git.py │ │ ├── operations.py │ │ └── services.py ├── gunicorn │ ├── ganetimgr_jessie │ └── ganetimgr_wheezy ├── init.d │ └── ganetimgr-watcher ├── jquery-1.5.2.js ├── jquery-ui │ ├── jquery.effects.blind.js │ ├── jquery.effects.bounce.js │ ├── jquery.effects.clip.js │ ├── jquery.effects.core.js │ ├── jquery.effects.drop.js │ ├── jquery.effects.explode.js │ ├── jquery.effects.fade.js │ ├── jquery.effects.fold.js │ ├── jquery.effects.highlight.js │ ├── jquery.effects.pulsate.js │ ├── jquery.effects.scale.js │ ├── jquery.effects.shake.js │ ├── jquery.effects.slide.js │ ├── jquery.effects.transfer.js │ ├── jquery.ui.accordion.js │ ├── jquery.ui.autocomplete.js │ ├── jquery.ui.button.js │ ├── jquery.ui.core.js │ ├── jquery.ui.datepicker.js │ ├── jquery.ui.dialog.js │ ├── jquery.ui.draggable.js │ ├── jquery.ui.droppable.js │ ├── jquery.ui.mouse.js │ ├── jquery.ui.position.js │ ├── jquery.ui.progressbar.js │ ├── jquery.ui.resizable.js │ ├── jquery.ui.selectable.js │ ├── jquery.ui.slider.js │ ├── jquery.ui.sortable.js │ ├── jquery.ui.tabs.js │ └── jquery.ui.widget.js ├── nginx │ └── ganetimgr_vhost ├── vima_policy.py └── vnc_javasrc │ ├── AuthPanel.java │ ├── ButtonPanel.java │ ├── CapabilityInfo.java │ ├── CapsContainer.java │ ├── ChangeLog │ ├── ClipboardFrame.java │ ├── DesCipher.java │ ├── HTTPConnectSocket.java │ ├── HTTPConnectSocketFactory.java │ ├── InStream.java │ ├── LICENCE.TXT │ ├── MANIFEST.MF │ ├── Makefile │ ├── MemInStream.java │ ├── OptionsFrame.java │ ├── README │ ├── RecordingFrame.java │ ├── ReloginPanel.java │ ├── RfbProto.java │ ├── SessionRecorder.java │ ├── SocketFactory.java │ ├── VncCanvas.java │ ├── VncCanvas2.java │ ├── VncViewer.java │ ├── WhatsNew │ ├── ZlibInStream.java │ ├── index.html │ └── index.vnc ├── docs ├── Makefile └── source │ ├── _static │ └── images │ │ ├── applications.png │ │ ├── audit-log.png │ │ ├── cluster_info.png │ │ ├── ganetimgr_create_instance.png │ │ ├── graphs.png │ │ ├── history.png │ │ ├── image00.png │ │ ├── image01.png │ │ ├── image02.png │ │ ├── image03.png │ │ ├── image04.png │ │ ├── instance-owners.png │ │ ├── instance_details.png │ │ ├── jobs.png │ │ ├── node_groups.png │ │ ├── ss_01_main.png │ │ ├── ss_02_user_main_view.png │ │ ├── ss_03_user_statistics.png │ │ ├── ss_04_user_profile.png │ │ ├── ss_05_user_application.png │ │ ├── ss_06_vm_info.png │ │ ├── ss_07_vm_graphs.png │ │ ├── ss_08_vm_conf.png │ │ ├── ss_09_vm_actions.png │ │ ├── ss_10_admin_node.png │ │ ├── ss_11_admin_stats.png │ │ ├── ss_12_admin_jobs.png │ │ ├── ss_14_admin_application.png │ │ └── ss_15_admin_mail.png │ ├── admin.rst │ ├── conf.py │ ├── devel.rst │ ├── index.rst │ ├── install.rst │ ├── interface.rst │ ├── patches.rst │ ├── upgrade.rst │ ├── version2.md │ └── vnc.rst ├── ganeti ├── __init__.py ├── admin.py ├── decorators │ └── __init__.py ├── fixtures │ └── flatpages.json ├── forms.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── refresh_cluster_instances.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_custompermission.py │ ├── 0003_auto_20170807_1459.py │ └── __init__.py ├── models.py ├── templatetags │ ├── __init__.py │ ├── applicationstatus.py │ ├── bootstrappercent.py │ ├── days_since.py │ ├── disksizes.py │ ├── noderole.py │ ├── truncatedchars.py │ └── widget_tweaks.py ├── tests.py ├── urls │ ├── __init__.py │ ├── clusters.py │ ├── graphs.py │ ├── instances.py │ ├── jobs.py │ └── nodegroup.py ├── utils.py └── views │ ├── __init__.py │ ├── clusters.py │ ├── discovery.py │ ├── graphs.py │ ├── instances.py │ ├── jobs.py │ └── nodegroup.py ├── ganetimgr ├── __init__.py ├── settings-test.py ├── settings.py.dist ├── urls.py ├── urls │ └── __init__.py └── wsgi.py ├── locale └── el │ └── LC_MESSAGES │ ├── django.mo │ └── django.po ├── manage.py ├── middleware ├── ForceLogout.py ├── MobileDetectionMiddleware.py ├── UserMessages.py └── __init__.py ├── notifications ├── __init__.py ├── admin.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py ├── utils.py └── views.py ├── readthedocs-requirements.txt ├── requirements.txt ├── static ├── branding │ ├── logo.png │ └── logo.xcf ├── flatpagesassets │ ├── ownership.png │ ├── ownership_dropdown.png │ └── user_screen.png ├── ganetimgr │ ├── css │ │ ├── base.css │ │ ├── includes │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap-switch.css │ │ │ ├── bootstrap.min.css │ │ │ ├── daterangepicker.css │ │ │ ├── feedek.css │ │ │ ├── font-awesome.min.css │ │ │ ├── img-on-top.css │ │ │ ├── nprogress.css │ │ │ ├── resp-modal.css │ │ │ ├── select2-spinner.gif │ │ │ ├── select2.css │ │ │ ├── select2.png │ │ │ └── select2x2.png │ │ ├── smoothness │ │ │ └── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ └── theme.css │ ├── fonts │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── img │ │ ├── background_grnet.png │ │ ├── favicon.ico │ │ ├── gifs │ │ │ └── ajax-loader.gif │ │ ├── learnmore.png │ │ ├── logo.png │ │ ├── nodata.jpg │ │ ├── rule.png │ │ ├── sprites │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── video-crop.png │ └── js │ │ ├── includes │ │ ├── bootstrap-switch.min.js │ │ ├── bootstrap.min.js │ │ ├── daterangepicker.js │ │ ├── feedek.js │ │ ├── highcharts.js │ │ ├── jquery-1.10.1.min.js │ │ ├── jquery-1.10.1.min.map │ │ ├── jquery.cookie.js │ │ ├── jquery.dataTables.bootstrap.js │ │ ├── jquery.dataTables.min.js │ │ ├── jquery.min.js │ │ ├── jquery.sparkline.min.js │ │ ├── moment.min.js │ │ ├── nprogress.js │ │ └── select2.js │ │ ├── jquery_csrf_protect.js │ │ └── messages.js ├── javavnc │ └── VncViewer.jar └── noVNC │ ├── .gitmodules │ ├── LICENSE.txt │ ├── README.md │ ├── docs │ ├── LICENSE.Apache-2.0 │ ├── LICENSE.BSD-2-Clause │ ├── LICENSE.BSD-3-Clause │ ├── LICENSE.GPL-3 │ ├── LICENSE.LGPL-3 │ ├── LICENSE.MPL-2.0 │ ├── LICENSE.OFL-1.1 │ ├── LICENSE.zlib │ ├── VERSION │ ├── flash_policy.txt │ ├── links │ ├── notes │ ├── packaging.txt │ ├── release.txt │ ├── rfb_notes │ ├── rfbproto-3.3.pdf │ ├── rfbproto-3.7.pdf │ └── rfbproto-3.8.pdf │ └── include │ ├── 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 │ ├── keyboard.js │ ├── keysym.js │ ├── keysymdef.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 │ ├── websock_old.js │ └── webutil.js ├── stats ├── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── templates ├── 403.html ├── 404.html ├── 500.html ├── apply │ ├── admin_apply.html │ ├── application_list.html │ ├── apply.html │ ├── emails │ │ ├── application_rejected_mail.txt │ │ └── apply_mail.txt │ └── review.html ├── auditlog │ └── auditlog.html ├── base.html ├── clusters │ ├── cluster_nodes.html │ ├── cluster_nodes_pjax.html │ └── clusters.html ├── flatpages │ ├── default.html │ └── faq.html ├── graphs │ └── nodes-graphs.html ├── includes │ ├── analytics.html.dist │ └── banners.html ├── instances │ ├── emails │ │ ├── instance_created_mail.txt │ │ └── reinstall_mail.txt │ ├── includes │ │ ├── console-module.html │ │ └── instance_status.html │ ├── instance.html │ ├── instance_actions.html │ ├── instance_popup.html │ ├── novnc.html │ ├── rename_instance.html │ ├── user_instances_json.html │ ├── verify_action.html │ └── vnc.html ├── jobs │ ├── job_details.html │ └── jobs.html ├── news │ └── news.html ├── notifications │ ├── create.html │ ├── create_ajax.html │ ├── create_body.html │ ├── create_script.html │ └── detail.html ├── registration │ ├── activate.html │ ├── activation_complete_admin_pending.html │ ├── activation_complete_admin_pending.txt │ ├── activation_email.txt │ ├── activation_email_subject.txt │ ├── admin_approve.html │ ├── admin_approve_complete.html │ ├── admin_approve_complete_email.txt │ ├── admin_approve_email.txt │ ├── admin_approve_email_subject.txt │ ├── password_change_form.html │ ├── password_reset_complete.html │ ├── password_reset_confirm.html │ ├── password_reset_done.html │ ├── password_reset_email.html │ ├── password_reset_form.html │ ├── registration_complete.html │ ├── registration_form.html │ └── validation_expired.html ├── stats │ └── statistics.html ├── tagging │ ├── isolate.html │ ├── itags.html │ └── lock.html └── users │ ├── emails │ ├── idle_account.txt │ └── pass_change_notify_mail.txt │ ├── idle_accounts.html │ ├── login.html │ ├── mail_change.html │ ├── name_change.html │ ├── other_change.html │ ├── pass_change.html │ ├── pass_change_done.html │ ├── profile.html │ ├── user_info.html │ └── user_keys.html ├── util ├── __init__.py ├── client.py └── vapclient.py ├── version └── watcher.py /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/Changelog -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/README.md -------------------------------------------------------------------------------- /_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/_version.py -------------------------------------------------------------------------------- /accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/accounts/admin.py -------------------------------------------------------------------------------- /accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/accounts/forms.py -------------------------------------------------------------------------------- /accounts/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/management/commands/idle_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/accounts/management/commands/idle_accounts.py -------------------------------------------------------------------------------- /accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /accounts/migrations/0002_auto_20161020_1643.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/accounts/migrations/0002_auto_20161020_1643.py -------------------------------------------------------------------------------- /accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/accounts/models.py -------------------------------------------------------------------------------- /accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/accounts/tests.py -------------------------------------------------------------------------------- /accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/accounts/urls.py -------------------------------------------------------------------------------- /accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/accounts/views.py -------------------------------------------------------------------------------- /apply/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/apply/__init__.py -------------------------------------------------------------------------------- /apply/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/apply/admin.py -------------------------------------------------------------------------------- /apply/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/apply/apps.py -------------------------------------------------------------------------------- /apply/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/apply/decorators.py -------------------------------------------------------------------------------- /apply/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/apply/forms.py -------------------------------------------------------------------------------- /apply/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/apply/migrations/0001_initial.py -------------------------------------------------------------------------------- /apply/migrations/0002_auto_20161024_1512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/apply/migrations/0002_auto_20161024_1512.py -------------------------------------------------------------------------------- /apply/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apply/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/apply/models.py -------------------------------------------------------------------------------- /apply/south_migrations/0012_auto__add_field_organization_synced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/apply/south_migrations/0012_auto__add_field_organization_synced.py -------------------------------------------------------------------------------- /apply/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/apply/tests.py -------------------------------------------------------------------------------- /apply/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/apply/urls/__init__.py -------------------------------------------------------------------------------- /apply/urls/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/apply/urls/application.py -------------------------------------------------------------------------------- /apply/urls/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/apply/urls/user.py -------------------------------------------------------------------------------- /apply/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/apply/utils.py -------------------------------------------------------------------------------- /apply/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/apply/views/__init__.py -------------------------------------------------------------------------------- /apply/views/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/apply/views/user.py -------------------------------------------------------------------------------- /auditlog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auditlog/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/auditlog/admin.py -------------------------------------------------------------------------------- /auditlog/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/auditlog/migrations/0001_initial.py -------------------------------------------------------------------------------- /auditlog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auditlog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/auditlog/models.py -------------------------------------------------------------------------------- /auditlog/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/auditlog/signals.py -------------------------------------------------------------------------------- /auditlog/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/auditlog/tests.py -------------------------------------------------------------------------------- /auditlog/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/auditlog/urls.py -------------------------------------------------------------------------------- /auditlog/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/auditlog/utils.py -------------------------------------------------------------------------------- /auditlog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/auditlog/views.py -------------------------------------------------------------------------------- /context/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /context/global_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/context/global_vars.py -------------------------------------------------------------------------------- /context/pending_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/context/pending_notifications.py -------------------------------------------------------------------------------- /context/session_remaining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/context/session_remaining.py -------------------------------------------------------------------------------- /contrib/CONTENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/CONTENTS -------------------------------------------------------------------------------- /contrib/default/ganetimgr-watcher: -------------------------------------------------------------------------------- 1 | RUN=yes 2 | -------------------------------------------------------------------------------- /contrib/fabric/fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/fabric/fabfile.py -------------------------------------------------------------------------------- /contrib/fabric/requirements.txt: -------------------------------------------------------------------------------- 1 | Fabric==1.10.2 2 | -------------------------------------------------------------------------------- /contrib/fabric/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/fabric/utils/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/fabric/utils/database.py -------------------------------------------------------------------------------- /contrib/fabric/utils/django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/fabric/utils/django.py -------------------------------------------------------------------------------- /contrib/fabric/utils/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/fabric/utils/git.py -------------------------------------------------------------------------------- /contrib/fabric/utils/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/fabric/utils/operations.py -------------------------------------------------------------------------------- /contrib/fabric/utils/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/fabric/utils/services.py -------------------------------------------------------------------------------- /contrib/gunicorn/ganetimgr_jessie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/gunicorn/ganetimgr_jessie -------------------------------------------------------------------------------- /contrib/gunicorn/ganetimgr_wheezy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/gunicorn/ganetimgr_wheezy -------------------------------------------------------------------------------- /contrib/init.d/ganetimgr-watcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/init.d/ganetimgr-watcher -------------------------------------------------------------------------------- /contrib/jquery-1.5.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-1.5.2.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.effects.blind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.effects.blind.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.effects.bounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.effects.bounce.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.effects.clip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.effects.clip.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.effects.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.effects.core.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.effects.drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.effects.drop.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.effects.explode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.effects.explode.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.effects.fade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.effects.fade.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.effects.fold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.effects.fold.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.effects.highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.effects.highlight.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.effects.pulsate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.effects.pulsate.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.effects.scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.effects.scale.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.effects.shake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.effects.shake.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.effects.slide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.effects.slide.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.effects.transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.effects.transfer.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.ui.accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.ui.accordion.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.ui.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.ui.autocomplete.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.ui.button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.ui.button.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.ui.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.ui.core.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.ui.datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.ui.datepicker.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.ui.dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.ui.dialog.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.ui.draggable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.ui.draggable.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.ui.droppable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.ui.droppable.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.ui.mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.ui.mouse.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.ui.position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.ui.position.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.ui.progressbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.ui.progressbar.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.ui.resizable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.ui.resizable.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.ui.selectable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.ui.selectable.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.ui.slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.ui.slider.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.ui.sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.ui.sortable.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.ui.tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.ui.tabs.js -------------------------------------------------------------------------------- /contrib/jquery-ui/jquery.ui.widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/jquery-ui/jquery.ui.widget.js -------------------------------------------------------------------------------- /contrib/nginx/ganetimgr_vhost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/nginx/ganetimgr_vhost -------------------------------------------------------------------------------- /contrib/vima_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vima_policy.py -------------------------------------------------------------------------------- /contrib/vnc_javasrc/AuthPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/AuthPanel.java -------------------------------------------------------------------------------- /contrib/vnc_javasrc/ButtonPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/ButtonPanel.java -------------------------------------------------------------------------------- /contrib/vnc_javasrc/CapabilityInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/CapabilityInfo.java -------------------------------------------------------------------------------- /contrib/vnc_javasrc/CapsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/CapsContainer.java -------------------------------------------------------------------------------- /contrib/vnc_javasrc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/ChangeLog -------------------------------------------------------------------------------- /contrib/vnc_javasrc/ClipboardFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/ClipboardFrame.java -------------------------------------------------------------------------------- /contrib/vnc_javasrc/DesCipher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/DesCipher.java -------------------------------------------------------------------------------- /contrib/vnc_javasrc/HTTPConnectSocket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/HTTPConnectSocket.java -------------------------------------------------------------------------------- /contrib/vnc_javasrc/HTTPConnectSocketFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/HTTPConnectSocketFactory.java -------------------------------------------------------------------------------- /contrib/vnc_javasrc/InStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/InStream.java -------------------------------------------------------------------------------- /contrib/vnc_javasrc/LICENCE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/LICENCE.TXT -------------------------------------------------------------------------------- /contrib/vnc_javasrc/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: VncViewer 3 | -------------------------------------------------------------------------------- /contrib/vnc_javasrc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/Makefile -------------------------------------------------------------------------------- /contrib/vnc_javasrc/MemInStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/MemInStream.java -------------------------------------------------------------------------------- /contrib/vnc_javasrc/OptionsFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/OptionsFrame.java -------------------------------------------------------------------------------- /contrib/vnc_javasrc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/README -------------------------------------------------------------------------------- /contrib/vnc_javasrc/RecordingFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/RecordingFrame.java -------------------------------------------------------------------------------- /contrib/vnc_javasrc/ReloginPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/ReloginPanel.java -------------------------------------------------------------------------------- /contrib/vnc_javasrc/RfbProto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/RfbProto.java -------------------------------------------------------------------------------- /contrib/vnc_javasrc/SessionRecorder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/SessionRecorder.java -------------------------------------------------------------------------------- /contrib/vnc_javasrc/SocketFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/SocketFactory.java -------------------------------------------------------------------------------- /contrib/vnc_javasrc/VncCanvas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/VncCanvas.java -------------------------------------------------------------------------------- /contrib/vnc_javasrc/VncCanvas2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/VncCanvas2.java -------------------------------------------------------------------------------- /contrib/vnc_javasrc/VncViewer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/VncViewer.java -------------------------------------------------------------------------------- /contrib/vnc_javasrc/WhatsNew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/WhatsNew -------------------------------------------------------------------------------- /contrib/vnc_javasrc/ZlibInStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/ZlibInStream.java -------------------------------------------------------------------------------- /contrib/vnc_javasrc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/index.html -------------------------------------------------------------------------------- /contrib/vnc_javasrc/index.vnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/contrib/vnc_javasrc/index.vnc -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/_static/images/applications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/applications.png -------------------------------------------------------------------------------- /docs/source/_static/images/audit-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/audit-log.png -------------------------------------------------------------------------------- /docs/source/_static/images/cluster_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/cluster_info.png -------------------------------------------------------------------------------- /docs/source/_static/images/ganetimgr_create_instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/ganetimgr_create_instance.png -------------------------------------------------------------------------------- /docs/source/_static/images/graphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/graphs.png -------------------------------------------------------------------------------- /docs/source/_static/images/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/history.png -------------------------------------------------------------------------------- /docs/source/_static/images/image00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/image00.png -------------------------------------------------------------------------------- /docs/source/_static/images/image01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/image01.png -------------------------------------------------------------------------------- /docs/source/_static/images/image02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/image02.png -------------------------------------------------------------------------------- /docs/source/_static/images/image03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/image03.png -------------------------------------------------------------------------------- /docs/source/_static/images/image04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/image04.png -------------------------------------------------------------------------------- /docs/source/_static/images/instance-owners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/instance-owners.png -------------------------------------------------------------------------------- /docs/source/_static/images/instance_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/instance_details.png -------------------------------------------------------------------------------- /docs/source/_static/images/jobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/jobs.png -------------------------------------------------------------------------------- /docs/source/_static/images/node_groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/node_groups.png -------------------------------------------------------------------------------- /docs/source/_static/images/ss_01_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/ss_01_main.png -------------------------------------------------------------------------------- /docs/source/_static/images/ss_02_user_main_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/ss_02_user_main_view.png -------------------------------------------------------------------------------- /docs/source/_static/images/ss_03_user_statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/ss_03_user_statistics.png -------------------------------------------------------------------------------- /docs/source/_static/images/ss_04_user_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/ss_04_user_profile.png -------------------------------------------------------------------------------- /docs/source/_static/images/ss_05_user_application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/ss_05_user_application.png -------------------------------------------------------------------------------- /docs/source/_static/images/ss_06_vm_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/ss_06_vm_info.png -------------------------------------------------------------------------------- /docs/source/_static/images/ss_07_vm_graphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/ss_07_vm_graphs.png -------------------------------------------------------------------------------- /docs/source/_static/images/ss_08_vm_conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/ss_08_vm_conf.png -------------------------------------------------------------------------------- /docs/source/_static/images/ss_09_vm_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/ss_09_vm_actions.png -------------------------------------------------------------------------------- /docs/source/_static/images/ss_10_admin_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/ss_10_admin_node.png -------------------------------------------------------------------------------- /docs/source/_static/images/ss_11_admin_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/ss_11_admin_stats.png -------------------------------------------------------------------------------- /docs/source/_static/images/ss_12_admin_jobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/ss_12_admin_jobs.png -------------------------------------------------------------------------------- /docs/source/_static/images/ss_14_admin_application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/ss_14_admin_application.png -------------------------------------------------------------------------------- /docs/source/_static/images/ss_15_admin_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/_static/images/ss_15_admin_mail.png -------------------------------------------------------------------------------- /docs/source/admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/admin.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/devel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/devel.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/interface.rst -------------------------------------------------------------------------------- /docs/source/patches.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/patches.rst -------------------------------------------------------------------------------- /docs/source/upgrade.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/upgrade.rst -------------------------------------------------------------------------------- /docs/source/version2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/version2.md -------------------------------------------------------------------------------- /docs/source/vnc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/docs/source/vnc.rst -------------------------------------------------------------------------------- /ganeti/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ganeti/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/admin.py -------------------------------------------------------------------------------- /ganeti/decorators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/decorators/__init__.py -------------------------------------------------------------------------------- /ganeti/fixtures/flatpages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/fixtures/flatpages.json -------------------------------------------------------------------------------- /ganeti/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/forms.py -------------------------------------------------------------------------------- /ganeti/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ganeti/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ganeti/management/commands/refresh_cluster_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/management/commands/refresh_cluster_instances.py -------------------------------------------------------------------------------- /ganeti/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/migrations/0001_initial.py -------------------------------------------------------------------------------- /ganeti/migrations/0002_custompermission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/migrations/0002_custompermission.py -------------------------------------------------------------------------------- /ganeti/migrations/0003_auto_20170807_1459.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/migrations/0003_auto_20170807_1459.py -------------------------------------------------------------------------------- /ganeti/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ganeti/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/models.py -------------------------------------------------------------------------------- /ganeti/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ganeti/templatetags/applicationstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/templatetags/applicationstatus.py -------------------------------------------------------------------------------- /ganeti/templatetags/bootstrappercent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/templatetags/bootstrappercent.py -------------------------------------------------------------------------------- /ganeti/templatetags/days_since.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/templatetags/days_since.py -------------------------------------------------------------------------------- /ganeti/templatetags/disksizes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/templatetags/disksizes.py -------------------------------------------------------------------------------- /ganeti/templatetags/noderole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/templatetags/noderole.py -------------------------------------------------------------------------------- /ganeti/templatetags/truncatedchars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/templatetags/truncatedchars.py -------------------------------------------------------------------------------- /ganeti/templatetags/widget_tweaks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/templatetags/widget_tweaks.py -------------------------------------------------------------------------------- /ganeti/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/tests.py -------------------------------------------------------------------------------- /ganeti/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/urls/__init__.py -------------------------------------------------------------------------------- /ganeti/urls/clusters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/urls/clusters.py -------------------------------------------------------------------------------- /ganeti/urls/graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/urls/graphs.py -------------------------------------------------------------------------------- /ganeti/urls/instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/urls/instances.py -------------------------------------------------------------------------------- /ganeti/urls/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/urls/jobs.py -------------------------------------------------------------------------------- /ganeti/urls/nodegroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/urls/nodegroup.py -------------------------------------------------------------------------------- /ganeti/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/utils.py -------------------------------------------------------------------------------- /ganeti/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/views/__init__.py -------------------------------------------------------------------------------- /ganeti/views/clusters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/views/clusters.py -------------------------------------------------------------------------------- /ganeti/views/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/views/discovery.py -------------------------------------------------------------------------------- /ganeti/views/graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/views/graphs.py -------------------------------------------------------------------------------- /ganeti/views/instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/views/instances.py -------------------------------------------------------------------------------- /ganeti/views/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/views/jobs.py -------------------------------------------------------------------------------- /ganeti/views/nodegroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganeti/views/nodegroup.py -------------------------------------------------------------------------------- /ganetimgr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ganetimgr/settings-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganetimgr/settings-test.py -------------------------------------------------------------------------------- /ganetimgr/settings.py.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganetimgr/settings.py.dist -------------------------------------------------------------------------------- /ganetimgr/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganetimgr/urls.py -------------------------------------------------------------------------------- /ganetimgr/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganetimgr/urls/__init__.py -------------------------------------------------------------------------------- /ganetimgr/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/ganetimgr/wsgi.py -------------------------------------------------------------------------------- /locale/el/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/locale/el/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/el/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/locale/el/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/manage.py -------------------------------------------------------------------------------- /middleware/ForceLogout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/middleware/ForceLogout.py -------------------------------------------------------------------------------- /middleware/MobileDetectionMiddleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/middleware/MobileDetectionMiddleware.py -------------------------------------------------------------------------------- /middleware/UserMessages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/middleware/UserMessages.py -------------------------------------------------------------------------------- /middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notifications/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notifications/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/notifications/admin.py -------------------------------------------------------------------------------- /notifications/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/notifications/forms.py -------------------------------------------------------------------------------- /notifications/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/notifications/migrations/0001_initial.py -------------------------------------------------------------------------------- /notifications/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notifications/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/notifications/models.py -------------------------------------------------------------------------------- /notifications/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/notifications/tests.py -------------------------------------------------------------------------------- /notifications/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/notifications/urls.py -------------------------------------------------------------------------------- /notifications/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/notifications/utils.py -------------------------------------------------------------------------------- /notifications/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/notifications/views.py -------------------------------------------------------------------------------- /readthedocs-requirements.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/branding/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/branding/logo.png -------------------------------------------------------------------------------- /static/branding/logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/branding/logo.xcf -------------------------------------------------------------------------------- /static/flatpagesassets/ownership.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/flatpagesassets/ownership.png -------------------------------------------------------------------------------- /static/flatpagesassets/ownership_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/flatpagesassets/ownership_dropdown.png -------------------------------------------------------------------------------- /static/flatpagesassets/user_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/flatpagesassets/user_screen.png -------------------------------------------------------------------------------- /static/ganetimgr/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/base.css -------------------------------------------------------------------------------- /static/ganetimgr/css/includes/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/includes/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /static/ganetimgr/css/includes/bootstrap-switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/includes/bootstrap-switch.css -------------------------------------------------------------------------------- /static/ganetimgr/css/includes/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/includes/bootstrap.min.css -------------------------------------------------------------------------------- /static/ganetimgr/css/includes/daterangepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/includes/daterangepicker.css -------------------------------------------------------------------------------- /static/ganetimgr/css/includes/feedek.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/includes/feedek.css -------------------------------------------------------------------------------- /static/ganetimgr/css/includes/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/includes/font-awesome.min.css -------------------------------------------------------------------------------- /static/ganetimgr/css/includes/img-on-top.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/includes/img-on-top.css -------------------------------------------------------------------------------- /static/ganetimgr/css/includes/nprogress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/includes/nprogress.css -------------------------------------------------------------------------------- /static/ganetimgr/css/includes/resp-modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/includes/resp-modal.css -------------------------------------------------------------------------------- /static/ganetimgr/css/includes/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/includes/select2-spinner.gif -------------------------------------------------------------------------------- /static/ganetimgr/css/includes/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/includes/select2.css -------------------------------------------------------------------------------- /static/ganetimgr/css/includes/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/includes/select2.png -------------------------------------------------------------------------------- /static/ganetimgr/css/includes/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/includes/select2x2.png -------------------------------------------------------------------------------- /static/ganetimgr/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /static/ganetimgr/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /static/ganetimgr/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /static/ganetimgr/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /static/ganetimgr/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /static/ganetimgr/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /static/ganetimgr/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /static/ganetimgr/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /static/ganetimgr/css/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /static/ganetimgr/css/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /static/ganetimgr/css/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /static/ganetimgr/css/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /static/ganetimgr/css/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /static/ganetimgr/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/css/theme.css -------------------------------------------------------------------------------- /static/ganetimgr/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/ganetimgr/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/ganetimgr/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/ganetimgr/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/ganetimgr/img/background_grnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/img/background_grnet.png -------------------------------------------------------------------------------- /static/ganetimgr/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/img/favicon.ico -------------------------------------------------------------------------------- /static/ganetimgr/img/gifs/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/img/gifs/ajax-loader.gif -------------------------------------------------------------------------------- /static/ganetimgr/img/learnmore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/img/learnmore.png -------------------------------------------------------------------------------- /static/ganetimgr/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/img/logo.png -------------------------------------------------------------------------------- /static/ganetimgr/img/nodata.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/img/nodata.jpg -------------------------------------------------------------------------------- /static/ganetimgr/img/rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/img/rule.png -------------------------------------------------------------------------------- /static/ganetimgr/img/sprites/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/img/sprites/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /static/ganetimgr/img/sprites/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/img/sprites/glyphicons-halflings.png -------------------------------------------------------------------------------- /static/ganetimgr/img/video-crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/img/video-crop.png -------------------------------------------------------------------------------- /static/ganetimgr/js/includes/bootstrap-switch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/js/includes/bootstrap-switch.min.js -------------------------------------------------------------------------------- /static/ganetimgr/js/includes/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/js/includes/bootstrap.min.js -------------------------------------------------------------------------------- /static/ganetimgr/js/includes/daterangepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/js/includes/daterangepicker.js -------------------------------------------------------------------------------- /static/ganetimgr/js/includes/feedek.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/js/includes/feedek.js -------------------------------------------------------------------------------- /static/ganetimgr/js/includes/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/js/includes/highcharts.js -------------------------------------------------------------------------------- /static/ganetimgr/js/includes/jquery-1.10.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/js/includes/jquery-1.10.1.min.js -------------------------------------------------------------------------------- /static/ganetimgr/js/includes/jquery-1.10.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/js/includes/jquery-1.10.1.min.map -------------------------------------------------------------------------------- /static/ganetimgr/js/includes/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/js/includes/jquery.cookie.js -------------------------------------------------------------------------------- /static/ganetimgr/js/includes/jquery.dataTables.bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/js/includes/jquery.dataTables.bootstrap.js -------------------------------------------------------------------------------- /static/ganetimgr/js/includes/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/js/includes/jquery.dataTables.min.js -------------------------------------------------------------------------------- /static/ganetimgr/js/includes/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/js/includes/jquery.min.js -------------------------------------------------------------------------------- /static/ganetimgr/js/includes/jquery.sparkline.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/js/includes/jquery.sparkline.min.js -------------------------------------------------------------------------------- /static/ganetimgr/js/includes/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/js/includes/moment.min.js -------------------------------------------------------------------------------- /static/ganetimgr/js/includes/nprogress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/js/includes/nprogress.js -------------------------------------------------------------------------------- /static/ganetimgr/js/includes/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/js/includes/select2.js -------------------------------------------------------------------------------- /static/ganetimgr/js/jquery_csrf_protect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/js/jquery_csrf_protect.js -------------------------------------------------------------------------------- /static/ganetimgr/js/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/ganetimgr/js/messages.js -------------------------------------------------------------------------------- /static/javavnc/VncViewer.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/javavnc/VncViewer.jar -------------------------------------------------------------------------------- /static/noVNC/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/.gitmodules -------------------------------------------------------------------------------- /static/noVNC/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/LICENSE.txt -------------------------------------------------------------------------------- /static/noVNC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/README.md -------------------------------------------------------------------------------- /static/noVNC/docs/LICENSE.Apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/docs/LICENSE.Apache-2.0 -------------------------------------------------------------------------------- /static/noVNC/docs/LICENSE.BSD-2-Clause: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/docs/LICENSE.BSD-2-Clause -------------------------------------------------------------------------------- /static/noVNC/docs/LICENSE.BSD-3-Clause: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/docs/LICENSE.BSD-3-Clause -------------------------------------------------------------------------------- /static/noVNC/docs/LICENSE.GPL-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/docs/LICENSE.GPL-3 -------------------------------------------------------------------------------- /static/noVNC/docs/LICENSE.LGPL-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/docs/LICENSE.LGPL-3 -------------------------------------------------------------------------------- /static/noVNC/docs/LICENSE.MPL-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/docs/LICENSE.MPL-2.0 -------------------------------------------------------------------------------- /static/noVNC/docs/LICENSE.OFL-1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/docs/LICENSE.OFL-1.1 -------------------------------------------------------------------------------- /static/noVNC/docs/LICENSE.zlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/docs/LICENSE.zlib -------------------------------------------------------------------------------- /static/noVNC/docs/VERSION: -------------------------------------------------------------------------------- 1 | 0.4 2 | -------------------------------------------------------------------------------- /static/noVNC/docs/flash_policy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/docs/flash_policy.txt -------------------------------------------------------------------------------- /static/noVNC/docs/links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/docs/links -------------------------------------------------------------------------------- /static/noVNC/docs/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/docs/notes -------------------------------------------------------------------------------- /static/noVNC/docs/packaging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/docs/packaging.txt -------------------------------------------------------------------------------- /static/noVNC/docs/release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/docs/release.txt -------------------------------------------------------------------------------- /static/noVNC/docs/rfb_notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/docs/rfb_notes -------------------------------------------------------------------------------- /static/noVNC/docs/rfbproto-3.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/docs/rfbproto-3.3.pdf -------------------------------------------------------------------------------- /static/noVNC/docs/rfbproto-3.7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/docs/rfbproto-3.7.pdf -------------------------------------------------------------------------------- /static/noVNC/docs/rfbproto-3.8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/docs/rfbproto-3.8.pdf -------------------------------------------------------------------------------- /static/noVNC/include/Orbitron700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/Orbitron700.ttf -------------------------------------------------------------------------------- /static/noVNC/include/Orbitron700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/Orbitron700.woff -------------------------------------------------------------------------------- /static/noVNC/include/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/base.css -------------------------------------------------------------------------------- /static/noVNC/include/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/base64.js -------------------------------------------------------------------------------- /static/noVNC/include/black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/black.css -------------------------------------------------------------------------------- /static/noVNC/include/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/blue.css -------------------------------------------------------------------------------- /static/noVNC/include/chrome-app/tcp-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/chrome-app/tcp-client.js -------------------------------------------------------------------------------- /static/noVNC/include/des.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/des.js -------------------------------------------------------------------------------- /static/noVNC/include/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/display.js -------------------------------------------------------------------------------- /static/noVNC/include/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/input.js -------------------------------------------------------------------------------- /static/noVNC/include/jsunzip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/jsunzip.js -------------------------------------------------------------------------------- /static/noVNC/include/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/keyboard.js -------------------------------------------------------------------------------- /static/noVNC/include/keysym.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/keysym.js -------------------------------------------------------------------------------- /static/noVNC/include/keysymdef.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/keysymdef.js -------------------------------------------------------------------------------- /static/noVNC/include/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/logo.js -------------------------------------------------------------------------------- /static/noVNC/include/playback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/playback.js -------------------------------------------------------------------------------- /static/noVNC/include/rfb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/rfb.js -------------------------------------------------------------------------------- /static/noVNC/include/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/ui.js -------------------------------------------------------------------------------- /static/noVNC/include/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/util.js -------------------------------------------------------------------------------- /static/noVNC/include/web-socket-js/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/web-socket-js/README.txt -------------------------------------------------------------------------------- /static/noVNC/include/web-socket-js/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/web-socket-js/WebSocketMain.swf -------------------------------------------------------------------------------- /static/noVNC/include/web-socket-js/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/web-socket-js/swfobject.js -------------------------------------------------------------------------------- /static/noVNC/include/web-socket-js/web_socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/web-socket-js/web_socket.js -------------------------------------------------------------------------------- /static/noVNC/include/websock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/websock.js -------------------------------------------------------------------------------- /static/noVNC/include/websock_old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/websock_old.js -------------------------------------------------------------------------------- /static/noVNC/include/webutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/static/noVNC/include/webutil.js -------------------------------------------------------------------------------- /stats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stats/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stats/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/stats/tests.py -------------------------------------------------------------------------------- /stats/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/stats/urls.py -------------------------------------------------------------------------------- /stats/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/stats/views.py -------------------------------------------------------------------------------- /templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/403.html -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/500.html -------------------------------------------------------------------------------- /templates/apply/admin_apply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/apply/admin_apply.html -------------------------------------------------------------------------------- /templates/apply/application_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/apply/application_list.html -------------------------------------------------------------------------------- /templates/apply/apply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/apply/apply.html -------------------------------------------------------------------------------- /templates/apply/emails/application_rejected_mail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/apply/emails/application_rejected_mail.txt -------------------------------------------------------------------------------- /templates/apply/emails/apply_mail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/apply/emails/apply_mail.txt -------------------------------------------------------------------------------- /templates/apply/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/apply/review.html -------------------------------------------------------------------------------- /templates/auditlog/auditlog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/auditlog/auditlog.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/clusters/cluster_nodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/clusters/cluster_nodes.html -------------------------------------------------------------------------------- /templates/clusters/cluster_nodes_pjax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/clusters/cluster_nodes_pjax.html -------------------------------------------------------------------------------- /templates/clusters/clusters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/clusters/clusters.html -------------------------------------------------------------------------------- /templates/flatpages/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/flatpages/default.html -------------------------------------------------------------------------------- /templates/flatpages/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/flatpages/faq.html -------------------------------------------------------------------------------- /templates/graphs/nodes-graphs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/graphs/nodes-graphs.html -------------------------------------------------------------------------------- /templates/includes/analytics.html.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/includes/analytics.html.dist -------------------------------------------------------------------------------- /templates/includes/banners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/includes/banners.html -------------------------------------------------------------------------------- /templates/instances/emails/instance_created_mail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/instances/emails/instance_created_mail.txt -------------------------------------------------------------------------------- /templates/instances/emails/reinstall_mail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/instances/emails/reinstall_mail.txt -------------------------------------------------------------------------------- /templates/instances/includes/console-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/instances/includes/console-module.html -------------------------------------------------------------------------------- /templates/instances/includes/instance_status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/instances/includes/instance_status.html -------------------------------------------------------------------------------- /templates/instances/instance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/instances/instance.html -------------------------------------------------------------------------------- /templates/instances/instance_actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/instances/instance_actions.html -------------------------------------------------------------------------------- /templates/instances/instance_popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/instances/instance_popup.html -------------------------------------------------------------------------------- /templates/instances/novnc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/instances/novnc.html -------------------------------------------------------------------------------- /templates/instances/rename_instance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/instances/rename_instance.html -------------------------------------------------------------------------------- /templates/instances/user_instances_json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/instances/user_instances_json.html -------------------------------------------------------------------------------- /templates/instances/verify_action.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/instances/verify_action.html -------------------------------------------------------------------------------- /templates/instances/vnc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/instances/vnc.html -------------------------------------------------------------------------------- /templates/jobs/job_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/jobs/job_details.html -------------------------------------------------------------------------------- /templates/jobs/jobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/jobs/jobs.html -------------------------------------------------------------------------------- /templates/news/news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/news/news.html -------------------------------------------------------------------------------- /templates/notifications/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/notifications/create.html -------------------------------------------------------------------------------- /templates/notifications/create_ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/notifications/create_ajax.html -------------------------------------------------------------------------------- /templates/notifications/create_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/notifications/create_body.html -------------------------------------------------------------------------------- /templates/notifications/create_script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/notifications/create_script.html -------------------------------------------------------------------------------- /templates/notifications/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/notifications/detail.html -------------------------------------------------------------------------------- /templates/registration/activate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/registration/activate.html -------------------------------------------------------------------------------- /templates/registration/activation_complete_admin_pending.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/registration/activation_complete_admin_pending.html -------------------------------------------------------------------------------- /templates/registration/activation_complete_admin_pending.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/registration/activation_complete_admin_pending.txt -------------------------------------------------------------------------------- /templates/registration/activation_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/registration/activation_email.txt -------------------------------------------------------------------------------- /templates/registration/activation_email_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/registration/activation_email_subject.txt -------------------------------------------------------------------------------- /templates/registration/admin_approve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/registration/admin_approve.html -------------------------------------------------------------------------------- /templates/registration/admin_approve_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/registration/admin_approve_complete.html -------------------------------------------------------------------------------- /templates/registration/admin_approve_complete_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/registration/admin_approve_complete_email.txt -------------------------------------------------------------------------------- /templates/registration/admin_approve_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/registration/admin_approve_email.txt -------------------------------------------------------------------------------- /templates/registration/admin_approve_email_subject.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %}[{{site.name}}]{% trans "User account approval" %} 2 | -------------------------------------------------------------------------------- /templates/registration/password_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/registration/password_change_form.html -------------------------------------------------------------------------------- /templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/registration/password_reset_complete.html -------------------------------------------------------------------------------- /templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /templates/registration/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/registration/password_reset_email.html -------------------------------------------------------------------------------- /templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /templates/registration/registration_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/registration/registration_complete.html -------------------------------------------------------------------------------- /templates/registration/registration_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/registration/registration_form.html -------------------------------------------------------------------------------- /templates/registration/validation_expired.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/registration/validation_expired.html -------------------------------------------------------------------------------- /templates/stats/statistics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/stats/statistics.html -------------------------------------------------------------------------------- /templates/tagging/isolate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/tagging/isolate.html -------------------------------------------------------------------------------- /templates/tagging/itags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/tagging/itags.html -------------------------------------------------------------------------------- /templates/tagging/lock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/tagging/lock.html -------------------------------------------------------------------------------- /templates/users/emails/idle_account.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/users/emails/idle_account.txt -------------------------------------------------------------------------------- /templates/users/emails/pass_change_notify_mail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/users/emails/pass_change_notify_mail.txt -------------------------------------------------------------------------------- /templates/users/idle_accounts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/users/idle_accounts.html -------------------------------------------------------------------------------- /templates/users/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/users/login.html -------------------------------------------------------------------------------- /templates/users/mail_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/users/mail_change.html -------------------------------------------------------------------------------- /templates/users/name_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/users/name_change.html -------------------------------------------------------------------------------- /templates/users/other_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/users/other_change.html -------------------------------------------------------------------------------- /templates/users/pass_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/users/pass_change.html -------------------------------------------------------------------------------- /templates/users/pass_change_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/users/pass_change_done.html -------------------------------------------------------------------------------- /templates/users/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/users/profile.html -------------------------------------------------------------------------------- /templates/users/user_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/users/user_info.html -------------------------------------------------------------------------------- /templates/users/user_keys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/templates/users/user_keys.html -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/util/client.py -------------------------------------------------------------------------------- /util/vapclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/util/vapclient.py -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | 314173e7 2 | -------------------------------------------------------------------------------- /watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grnet/ganetimgr/HEAD/watcher.py --------------------------------------------------------------------------------