virt-manager/virtinst/devices/redirdev.py
Daniel P. Berrangé 48e32b429d Fix copyright header to specify GPLv2 or later, not GPLv2 only.
The copyright headers in every file were chjanged in this previous commit

  commit b6dcee8eb7
  Author: Cole Robinson <crobinso@redhat.com>
  Date:   Tue Mar 20 15:00:02 2018 -0400

    Use consistent and minimal license header for every file

Where before this they said "

  "either version 2 of the License, or (at your option) any later version."

Now they just say

  "GNU GPLv2"

This fixes it to say "GNU GPLv2 or later" again.

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
2018-04-04 16:51:37 -04:00

48 lines
1.3 KiB
Python

#
# Copyright 2011, 2013 Red Hat, Inc.
# Cole Robinson <crobinso@redhat.com>
# Marc-Andre Lureau <marcandre.lureau@redhat.com>
#
# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
from .device import Device
from ..xmlbuilder import XMLProperty
class DeviceRedirdev(Device):
XML_NAME = "redirdev"
BUS_DEFAULT = "default"
BUSES = ["usb"]
TYPE_DEFAULT = "default"
TYPES = ["tcp", "spicevmc"]
@staticmethod
def pretty_type(typ):
if typ == "tcp":
return "TCP"
if typ == "spicevmc":
return "SpiceVMC"
return typ and typ.capitalize()
def parse_friendly_server(self, serverstr):
if serverstr.count(":") != 1:
raise ValueError(_("Could not determine or unsupported "
"format of '%s'") % serverstr)
self.host, self.service = serverstr.split(":")
_XML_PROP_ORDER = ["bus", "type"]
bus = XMLProperty("./@bus",
default_cb=lambda s: "usb",
default_name=BUS_DEFAULT)
type = XMLProperty("./@type",
default_cb=lambda s: "spicevmc",
default_name=TYPE_DEFAULT)
host = XMLProperty("./source/@host")
service = XMLProperty("./source/@service", is_int=True)