0ab97a4010
virtman-default-to-xen-pv.patch - Update to virt-manager 1.0.0 * virt-manager: Snapshot support * New tool virt-xml: Edit libvirt XML in one shot from the command line. Check out some examples: http://www.redhat.com/archives/libvir-list/2014-January/msg01226.html * Improved defaults: qcow2, USB2, host CPU model, guest agent channel, … * Introspect command line options like –disk=? or –network=help * The virt-image tool will be removed before the next release, speak up if you have a good reason not to remove it. * virt-manager: Support arm vexpress VM creation * virt-manager: Add guest memory usage graphs (Thorsten Behrens) * virt-manager: UI for editing devices (Cédric Bosdonnat) * Spice USB redirection support (Guannan Ren) * UI and command line support (Stefan Berger) * UI and command line support (Giuseppe Scrivano) * UI and command line support (Chen Hanxiao) * command line support (Chen Hanxiao) * virt-manager: support for glusterfs storage pools (Giuseppe Scrivano) * cli: New options –memory, –features, –clock, –metadata, –pm * Greatly improve app responsiveness when connecting to remote hosts * Lots of UI cleanup and improvements virt-manager-1.0.0.tar.bz2 - Dropped the following patches by taking a newer upstream tarball virt-manager-0.10.0.tar.bz2 Add-memory-stats-widget-also-to-manager-tree-view.patch Attempt-empty-path-on-virDomainBlockStats.patch Base-mem-statistics-on-virDomainMemoryStats-if-avail.patch virtinst-add-cache-modes.patch virtinst-allow-ide-hdb.patch virtinst-clone-disks.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=143
31 lines
1.4 KiB
Diff
31 lines
1.4 KiB
Diff
This patch reverses the commit described below. The commit causes a serious
|
|
mouse tracking slowdown. See bnc#731218.
|
|
|
|
Subject: manager: Properly show vm desc in tooltip w/ special xml characters
|
|
From: Cole Robinson crobinso@redhat.com Mon Sep 26 11:05:55 2011 -0400
|
|
Date: Mon Sep 26 11:07:52 2011 -0400:
|
|
Git: 0a7640c593a54a6a3f558583d82f8b27c7a7d1d1
|
|
|
|
Index: virt-manager-0.10.1/virtManager/manager.py
|
|
===================================================================
|
|
--- virt-manager-0.10.1.orig/virtManager/manager.py
|
|
+++ virt-manager-0.10.1/virtManager/manager.py
|
|
@@ -676,7 +676,7 @@ class vmmManager(vmmGObjectUI):
|
|
row.insert(ROW_SORT_KEY, name)
|
|
row.insert(ROW_MARKUP, markup)
|
|
row.insert(ROW_STATUS_ICON, status_icon)
|
|
- row.insert(ROW_HINT, util.xml_escape(hint))
|
|
+ row.insert(ROW_HINT, hint)
|
|
row.insert(ROW_IS_CONN, bool(conn))
|
|
row.insert(ROW_IS_CONN_CONNECTED,
|
|
bool(conn) and conn.state != conn.STATE_DISCONNECTED)
|
|
@@ -789,7 +789,7 @@ class vmmManager(vmmGObjectUI):
|
|
desc = vm.get_description()
|
|
if not uiutil.can_set_row_none:
|
|
desc = desc or ""
|
|
- row[ROW_HINT] = util.xml_escape(desc)
|
|
+ row[ROW_HINT] = desc
|
|
except libvirt.libvirtError, e:
|
|
if util.exception_is_libvirt_error(e, "VIR_ERR_NO_DOMAIN"):
|
|
return
|