--- Begin Message ---
Currently proxmox VE 7.4-16 does not allow having underscore in vm name, giving
this error:
"This is not a valid DNS name".
This is not correct because having underscores in domain names are perfectly
valid, although it's not acceptable at host names, so it should be chang
--- Begin Message ---
Signed-off-by: Amin Vakil
---
src/Toolkit.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/Toolkit.js b/src/Toolkit.js
index 67200c8..9dc28b9 100644
--- a/src/Toolkit.js
+++ b/src/Toolkit.js
@@ -129,12 +129,12 @@ Ext.apply(Ext.form.field.VTypes,
On July 31, 2023 10:39 am, Philipp Hufnagl wrote:
> Signed-off-by: Philipp Hufnagl
> ---
> src/PVE/Tools.pm | 59 +++-
> 1 file changed, 38 insertions(+), 21 deletions(-)
>
> diff --git a/src/PVE/Tools.pm b/src/PVE/Tools.pm
> index 9ffac12..ab97129 100
On July 31, 2023 10:39 am, Philipp Hufnagl wrote:
> Signed-off-by: Philipp Hufnagl
> ---
> src/PVE/API2/Storage/Status.pm | 17 +++--
> src/PVE/Storage.pm | 6 ++
> 2 files changed, 21 insertions(+), 2 deletions(-)
>
> diff --git a/src/PVE/API2/Storage/Status.pm b/sr
Signed-off-by: Philipp Hufnagl
---
src/PVE/API2/Storage/Status.pm | 17 +++--
src/PVE/Storage.pm | 6 ++
2 files changed, 21 insertions(+), 2 deletions(-)
diff --git a/src/PVE/API2/Storage/Status.pm b/src/PVE/API2/Storage/Status.pm
index 2aaeff6..1d73c96 100644
--- a
Signed-off-by: Philipp Hufnagl
---
PVE/API2/Nodes.pm | 21 -
www/manager6/Makefile | 1 +
www/manager6/form/DecompressionSelector.js | 14 ++
www/manager6/window/DownloadUrlToStorage.js | 21 +++--
4
Signed-off-by: Philipp Hufnagl
---
src/PVE/Tools.pm | 59 +++-
1 file changed, 38 insertions(+), 21 deletions(-)
diff --git a/src/PVE/Tools.pm b/src/PVE/Tools.pm
index 9ffac12..ab97129 100644
--- a/src/PVE/Tools.pm
+++ b/src/PVE/Tools.pm
@@ -92,23 +92,
Many web pages offer the download of the disk images compressed. This
patch allows the download of archives (like .gz), automatically detects
the format and decompresses it
Changes since v2:
* move compression code to the download function in common
* minor code improvements
Changes since v1