[PR #316] [CLOSED] New additions & migrations & Fixes & upgrades #495

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

📋 Pull Request Information

Original PR: https://github.com/retspen/webvirtcloud/pull/316
Author: @catborise
Created: 6/3/2020
Status: Closed

Base: masterHead: master


📝 Commits (10+)

  • 4477b68 remove unused resize request from instance
  • 3fa1be6 fix code conventions for pylint
  • 3ae13a5 fix isinstance method call
  • f2bef52 fix setting title/description function (xml -> lxml)
  • 1dcbc87 get host info from compute not instance
  • f3b3610 stop getting status info before instance delete to prevent domain not found error
  • c065530 Update Ace XML Editor 1.4.10 - Move seperate dir
  • df6b58b add localhost is up checking
  • 70d4e28 add host status checking for statistic request
  • 2dd9080 show socket error & check with is True

📊 Changes

328 files changed (+53501 additions, -7308 deletions)

View changed files

.dockerignore (+25 -0)
📝 .gitignore (+2 -0)
📝 Dockerfile (+0 -1)
📝 README.md (+19 -0)
📝 accounts/__init__.py (+1 -0)
accounts/apps.py (+51 -0)
accounts/backends.py (+0 -13)
📝 accounts/forms.py (+1 -1)
accounts/migrations/0002_addAdmin.py (+0 -21)
accounts/migrations/0002_auto_20200602_1004.py (+26 -0)
accounts/migrations/0002_permissionset.py (+24 -0)
accounts/migrations/0003_permissionset.py (+24 -0)
📝 accounts/models.py (+50 -23)
📝 accounts/templates/account.html (+24 -24)
📝 accounts/templates/accounts-list.html (+37 -37)
📝 accounts/templates/accounts.html (+135 -128)
📝 accounts/templates/base_auth.html (+2 -2)
📝 accounts/templates/create_user_block.html (+9 -9)
📝 accounts/templates/create_user_inst_block.html (+8 -8)
📝 accounts/templates/login.html (+8 -8)

...and 80 more files

📄 Description

Hi retspen it is a big update:

  1. Add localization choose options / add locale files
  2. Bootstrap 4.5 migration
  3. Bootswatch Themes addition
  4. Theme change settings With sass.
  5. Python 3 style updates
  6. Many fixes
  7. Jquery ace xml updates
  8. Move settings to appsettings for online changing.
  9. Merge with real-gecko additions.
  10. Fix typos
  11. Fix accesibility for some elements
    and fix some problems...

🔄 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/316 **Author:** [@catborise](https://github.com/catborise) **Created:** 6/3/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`4477b68`](https://github.com/retspen/webvirtcloud/commit/4477b68a20aef38f9b70c09d38ab4e883863fb99) remove unused resize request from instance - [`3fa1be6`](https://github.com/retspen/webvirtcloud/commit/3fa1be61af9c3e55b863715bbf6c9adc3b3ad4c2) fix code conventions for pylint - [`3ae13a5`](https://github.com/retspen/webvirtcloud/commit/3ae13a552cee08b612c0cf6b2cef8168bcb0c648) fix isinstance method call - [`f2bef52`](https://github.com/retspen/webvirtcloud/commit/f2bef528c87bd56afffd6c09a15b1cd5d64215f0) fix setting title/description function (xml -> lxml) - [`1dcbc87`](https://github.com/retspen/webvirtcloud/commit/1dcbc879358ad739c794a8c2136ae20eaf74eb7c) get host info from compute not instance - [`f3b3610`](https://github.com/retspen/webvirtcloud/commit/f3b36107d2e338c6008c979c37bb268257e23026) stop getting status info before instance delete to prevent domain not found error - [`c065530`](https://github.com/retspen/webvirtcloud/commit/c0655309c0e60d9a30818de2d23ba90122e6cd3c) Update Ace XML Editor 1.4.10 - Move seperate dir - [`df6b58b`](https://github.com/retspen/webvirtcloud/commit/df6b58baaabedf976cc6c7236f03329015e08086) add localhost is up checking - [`70d4e28`](https://github.com/retspen/webvirtcloud/commit/70d4e2879555bdfb53da67c976b30af9a41d0a88) add host status checking for statistic request - [`2dd9080`](https://github.com/retspen/webvirtcloud/commit/2dd908027ed59730e69cd1ec63d0bfc30fbe2b6f) show socket error & check with is True ### 📊 Changes **328 files changed** (+53501 additions, -7308 deletions) <details> <summary>View changed files</summary> ➕ `.dockerignore` (+25 -0) 📝 `.gitignore` (+2 -0) 📝 `Dockerfile` (+0 -1) 📝 `README.md` (+19 -0) 📝 `accounts/__init__.py` (+1 -0) ➕ `accounts/apps.py` (+51 -0) ➖ `accounts/backends.py` (+0 -13) 📝 `accounts/forms.py` (+1 -1) ➖ `accounts/migrations/0002_addAdmin.py` (+0 -21) ➕ `accounts/migrations/0002_auto_20200602_1004.py` (+26 -0) ➕ `accounts/migrations/0002_permissionset.py` (+24 -0) ➕ `accounts/migrations/0003_permissionset.py` (+24 -0) 📝 `accounts/models.py` (+50 -23) 📝 `accounts/templates/account.html` (+24 -24) 📝 `accounts/templates/accounts-list.html` (+37 -37) 📝 `accounts/templates/accounts.html` (+135 -128) 📝 `accounts/templates/base_auth.html` (+2 -2) 📝 `accounts/templates/create_user_block.html` (+9 -9) 📝 `accounts/templates/create_user_inst_block.html` (+8 -8) 📝 `accounts/templates/login.html` (+8 -8) _...and 80 more files_ </details> ### 📄 Description Hi retspen it is a big update: 1. Add localization choose options / add locale files 2. Bootstrap 4.5 migration 3. Bootswatch Themes addition 4. Theme change settings With sass. 5. Python 3 style updates 6. Many fixes 7. Jquery ace xml updates 8. Move settings to appsettings for online changing. 9. Merge with real-gecko additions. 10. Fix typos 11. Fix accesibility for some elements and fix some problems... --- <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:55 +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#495
No description provided.