View | Details | Raw Unified | Return to bug 23436
Collapse All | Expand All

(-)a/branches/ucs-3.2/ucs-3.2-0/virtualization/univention-virtual-machine-manager-daemon/debian/changelog (+6 lines)
 Lines 1-3    Link Here 
1
univention-virtual-machine-manager-daemon (3.0.1-1) unstable; urgency=low
2
3
  * Prevent snapshots of suspended VMs (Bug #23436)
4
5
 -- Philipp Hahn <hahn@univention.de>  Tue, 09 Jul 2013 17:55:01 +0200
6
1
univention-virtual-machine-manager-daemon (3.0.0-1) unstable; urgency=low
7
univention-virtual-machine-manager-daemon (3.0.0-1) unstable; urgency=low
2
8
3
  * Bug #28260: use SearchSanitizer to prevent regex DoS
9
  * Bug #28260: use SearchSanitizer to prevent regex DoS
(-)a/branches/ucs-3.2/ucs-3.2-0/virtualization/univention-virtual-machine-manager-daemon/umc/js/de.po (+7 lines)
 Lines 330-335   msgstr "Erstellen einer virtuellen Maschine" Link Here 
330
330
331
#: umc/js/uvmm/SnapshotGrid.js:
331
#: umc/js/uvmm/SnapshotGrid.js:
332
msgid ""
332
msgid ""
333
"Creating a snapshots is not possible, because the domain is currently suspended!"
334
msgstr ""
335
"Das Anlegen eines Sicherungspunktes ist nicht möglich, weil die Domain "
336
"momentan 'gespeichert und beendet' ist!"
337
338
#: umc/js/uvmm/SnapshotGrid.js:
339
msgid ""
333
"Creating a snapshot is not possible, because the domain does not have at "
340
"Creating a snapshot is not possible, because the domain does not have at "
334
"least one qcow2 image!"
341
"least one qcow2 image!"
335
msgstr ""
342
msgstr ""
(-)a/branches/ucs-3.2/ucs-3.2-0/virtualization/univention-virtual-machine-manager-daemon/umc/js/uvmm/SnapshotGrid.js (+5 lines)
 Lines 95-100   define([ Link Here 
95
		_addSnapshot: function() {
95
		_addSnapshot: function() {
96
			var _dialog = null, form = null;
96
			var _dialog = null, form = null;
97
97
98
			if (this.domain.suspended) {
99
					dialog.alert(_('Creating a snapshots is not possible, because the domain is currently suspended!'));
100
					return;
101
			}
102
98
			var qcow2_images = 0;
103
			var qcow2_images = 0;
99
			var snapshots_possible = array.every(this.domain.disks, function(disk) {
104
			var snapshots_possible = array.every(this.domain.disks, function(disk) {
100
				if (!disk.source) {
105
				if (!disk.source) {

Return to bug 23436