[PR #156] [MERGED] Django version requirement, Libxml2->lxml change, account detail validation add, some bugs #437

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

📋 Pull Request Information

Original PR: https://github.com/retspen/webvirtcloud/pull/156
Author: @catborise
Created: 6/27/2018
Status: Merged
Merged: 7/6/2018
Merged by: @retspen

Base: masterHead: master


📝 Commits (5)

  • ace30ca Libxml2 converted to lxml, django framework upgrade to 1.11.x and some bug fixes
  • a933ffb lxml change
  • 20e8b87 instance template change to instances as group of hosts. bootstrap.min.css and js updated. some info added.
  • 6a7f30d host details cpu bug fixed
  • 360dab0 Update README.md

📊 Changes

23 files changed (+353 additions, -136 deletions)

View changed files

📝 .gitignore (+1 -0)
📝 README.md (+1 -1)
accounts/migrations/0010_auto_20180625_1236.py (+35 -0)
accounts/migrations/0011_auto_20180625_1313.py (+36 -0)
accounts/migrations/0012_auto_20180625_1331.py (+37 -0)
accounts/migrations/0013_auto_20180625_1358.py (+37 -0)
📝 accounts/models.py (+5 -4)
📝 accounts/templates/accounts.html (+4 -4)
📝 accounts/urls.py (+5 -6)
📝 accounts/views.py (+22 -11)
📝 computes/views.py (+1 -1)
📝 instances/templates/instances.html (+24 -5)
📝 instances/views.py (+33 -9)
📝 static/css/bootstrap.min.css (+4 -3)
static/css/bootstrap.min.css_332 (+5 -0)
📝 static/js/bootstrap.min.js (+5 -5)
static/js/bootstrap.min.js_332 (+7 -0)
📝 vrtManager/connection.py (+11 -9)
📝 vrtManager/hostdetails.py (+10 -10)
📝 vrtManager/instance.py (+20 -20)

...and 3 more files

📄 Description

Hi retspen,
Thanks for all your efforts. I know you are very busy. I want to help some development for this project.
I am using webvirtmgr for a long time, i appreciate...
I try to use webvirtcloud and it is a great work. But i get some hiccups while installing and using.

  1. libxml2 package cannot find easily anymore. Libxml2 developer create another project which is lxml. (https://lxml.de/3.6/FAQ.html) there are many more change and development about memory management, etc. I convert libxml2 to lxml. It requires some code changes on utils.py and hostdetails.py

  2. Django version. When i try to use django 1.11 there are some changes need to be done with urls especially auth urls. I made them.

  3. There were some problems with admin user and user attributes and its forms. I modify them to make form more strict with validators.(without validation characters make it crash)


🔄 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/156 **Author:** [@catborise](https://github.com/catborise) **Created:** 6/27/2018 **Status:** ✅ Merged **Merged:** 7/6/2018 **Merged by:** [@retspen](https://github.com/retspen) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (5) - [`ace30ca`](https://github.com/retspen/webvirtcloud/commit/ace30ca95292a43d655a63f2b32d64a7727e4da2) Libxml2 converted to lxml, django framework upgrade to 1.11.x and some bug fixes - [`a933ffb`](https://github.com/retspen/webvirtcloud/commit/a933ffb00f8af7367a3f65080bfd67225390417b) lxml change - [`20e8b87`](https://github.com/retspen/webvirtcloud/commit/20e8b876e47d7df28743e8223ba054b5a49d3600) instance template change to instances as group of hosts. bootstrap.min.css and js updated. some info added. - [`6a7f30d`](https://github.com/retspen/webvirtcloud/commit/6a7f30d4a62471a1c2bf0d240fc2f40136e337ee) host details cpu bug fixed - [`360dab0`](https://github.com/retspen/webvirtcloud/commit/360dab089286898c139f20f460c8615a46303987) Update README.md ### 📊 Changes **23 files changed** (+353 additions, -136 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) 📝 `README.md` (+1 -1) ➕ `accounts/migrations/0010_auto_20180625_1236.py` (+35 -0) ➕ `accounts/migrations/0011_auto_20180625_1313.py` (+36 -0) ➕ `accounts/migrations/0012_auto_20180625_1331.py` (+37 -0) ➕ `accounts/migrations/0013_auto_20180625_1358.py` (+37 -0) 📝 `accounts/models.py` (+5 -4) 📝 `accounts/templates/accounts.html` (+4 -4) 📝 `accounts/urls.py` (+5 -6) 📝 `accounts/views.py` (+22 -11) 📝 `computes/views.py` (+1 -1) 📝 `instances/templates/instances.html` (+24 -5) 📝 `instances/views.py` (+33 -9) 📝 `static/css/bootstrap.min.css` (+4 -3) ➕ `static/css/bootstrap.min.css_332` (+5 -0) 📝 `static/js/bootstrap.min.js` (+5 -5) ➕ `static/js/bootstrap.min.js_332` (+7 -0) 📝 `vrtManager/connection.py` (+11 -9) 📝 `vrtManager/hostdetails.py` (+10 -10) 📝 `vrtManager/instance.py` (+20 -20) _...and 3 more files_ </details> ### 📄 Description Hi retspen, Thanks for all your efforts. I know you are very busy. I want to help some development for this project. I am using webvirtmgr for a long time, i appreciate... I try to use webvirtcloud and it is a great work. But i get some hiccups while installing and using. 1. libxml2 package cannot find easily anymore. Libxml2 developer create another project which is lxml. (https://lxml.de/3.6/FAQ.html) there are many more change and development about memory management, etc. I convert libxml2 to lxml. It requires some code changes on utils.py and hostdetails.py 2. Django version. When i try to use django 1.11 there are some changes need to be done with urls especially auth urls. I made them. 3. There were some problems with admin user and user attributes and its forms. I modify them to make form more strict with validators.(without validation characters make it crash) --- <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:43 +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#437
No description provided.