[PR #263] [MERGED] Some addition & Fixes #479

Closed
opened 2026-02-27 15:58:52 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/retspen/webvirtcloud/pull/263
Author: @catborise
Created: 11/21/2019
Status: Merged
Merged: 11/21/2019
Merged by: @retspen

Base: masterHead: master


📝 Commits (10+)

  • 3340771 connection.py getting networking format information function
  • 718388f add translate for some keywords
  • ddd3dd5 instance network revamped. Qos config for instance net is added
  • 5282d3e add translate for some keywords
  • d7f283f network qos adding, listing, backend revamped. Add network bug for nat networks solved
  • 228a094 Full VNC view distortion fixed. Add translate for some texts
  • 60684cc Live resize VM Memory activate. Redirection fix for resizing operations. Some typo & indent fix
  • 74eb800 changing video card model functionality added to options.
  • f42a910 instance.is_template checkbox enabled for user.is_staff by @honz801
  • b835286 fix datasource/templates/user_data, add newline at the end of ssh key and dont add other empty lines by @honza801

📊 Changes

15 files changed (+492 additions, -224 deletions)

View changed files

📝 console/templates/console-base.html (+1 -1)
📝 console/templates/console-vnc-full.html (+1 -1)
📝 console/templates/console-vnc-lite.html (+1 -1)
📝 create/views.py (+1 -1)
📝 datasource/templates/user_data (+2 -2)
📝 instances/templates/instance.html (+181 -56)
📝 instances/views.py (+55 -8)
📝 networks/templates/add_network_qos.html (+18 -11)
networks/templates/add_outbound_qos.html (+0 -49)
📝 networks/templates/network.html (+52 -50)
📝 networks/views.py (+12 -10)
📝 static/js/novnc/app/styles/lite.css (+2 -2)
📝 static/js/spice-html5/spice.css (+1 -1)
📝 vrtManager/connection.py (+10 -1)
📝 vrtManager/instance.py (+155 -30)

📄 Description

Hi retspen,

there are some improvements for host and instance networks.
And:

  1. Changing video card of instance functionality added
  2. Live memory change activated
  3. Instance network view changed and creation of network bug is fixed
  4. some small changes like adding translate, css fix, code reformat and add comment

thanks


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/retspen/webvirtcloud/pull/263 **Author:** [@catborise](https://github.com/catborise) **Created:** 11/21/2019 **Status:** ✅ Merged **Merged:** 11/21/2019 **Merged by:** [@retspen](https://github.com/retspen) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`3340771`](https://github.com/retspen/webvirtcloud/commit/33407719b68bf50891ced1f84cd4037e0c391170) connection.py getting networking format information function - [`718388f`](https://github.com/retspen/webvirtcloud/commit/718388ffef90db0c13f6e02e4e2028fe8591486e) add translate for some keywords - [`ddd3dd5`](https://github.com/retspen/webvirtcloud/commit/ddd3dd5f65227c288c0cf8fe3cf6918afbda0bea) instance network revamped. Qos config for instance net is added - [`5282d3e`](https://github.com/retspen/webvirtcloud/commit/5282d3e55681bf26b9ee1178bac6c432b7d1e39c) add translate for some keywords - [`d7f283f`](https://github.com/retspen/webvirtcloud/commit/d7f283f089cd1fb9c99f03b3154a1c08e9742f33) network qos adding, listing, backend revamped. Add network bug for nat networks solved - [`228a094`](https://github.com/retspen/webvirtcloud/commit/228a0949d1a0d8be13af3a8cf428d589194a96d2) Full VNC view distortion fixed. Add translate for some texts - [`60684cc`](https://github.com/retspen/webvirtcloud/commit/60684cc7b13c01ccfee30c5ec4376aac342631d5) Live resize VM Memory activate. Redirection fix for resizing operations. Some typo & indent fix - [`74eb800`](https://github.com/retspen/webvirtcloud/commit/74eb8004d70dc30f2ee563b13a640d3df89d41b7) changing video card model functionality added to options. - [`f42a910`](https://github.com/retspen/webvirtcloud/commit/f42a910d9b2864dc9d5b69019a26f407f859fd83) instance.is_template checkbox enabled for user.is_staff by @honz801 - [`b835286`](https://github.com/retspen/webvirtcloud/commit/b83528658e3ac1b9e7c39462de816b0846eb236f) fix datasource/templates/user_data, add newline at the end of ssh key and dont add other empty lines by @honza801 ### 📊 Changes **15 files changed** (+492 additions, -224 deletions) <details> <summary>View changed files</summary> 📝 `console/templates/console-base.html` (+1 -1) 📝 `console/templates/console-vnc-full.html` (+1 -1) 📝 `console/templates/console-vnc-lite.html` (+1 -1) 📝 `create/views.py` (+1 -1) 📝 `datasource/templates/user_data` (+2 -2) 📝 `instances/templates/instance.html` (+181 -56) 📝 `instances/views.py` (+55 -8) 📝 `networks/templates/add_network_qos.html` (+18 -11) ➖ `networks/templates/add_outbound_qos.html` (+0 -49) 📝 `networks/templates/network.html` (+52 -50) 📝 `networks/views.py` (+12 -10) 📝 `static/js/novnc/app/styles/lite.css` (+2 -2) 📝 `static/js/spice-html5/spice.css` (+1 -1) 📝 `vrtManager/connection.py` (+10 -1) 📝 `vrtManager/instance.py` (+155 -30) </details> ### 📄 Description Hi retspen, there are some improvements for host and instance networks. And: 1. Changing video card of instance functionality added 2. Live memory change activated 3. Instance network view changed and creation of network bug is fixed 4. some small changes like adding translate, css fix, code reformat and add comment thanks --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 15:58:52 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/webvirtcloud#479
No description provided.