Check-in [55b9862e7a]
Not logged in
Overview
Comment:More impovement of spiceuri command
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 55b9862e7a78e24e9e425c5fc5a0b0b80187ad72
User & Date: vitus on 2019-06-07 08:28:05
Other Links: manifest | tags
Context
2019-09-16
06:59
Added readme for github mirror check-in: 241984b2e5 user: vitus tags: trunk
2019-06-07
08:28
More impovement of spiceuri command check-in: 55b9862e7a user: vitus tags: trunk
2019-06-06
15:12
Increased vesion to 0.7 check-in: bdb22341a3 user: vitus tags: trunk
Changes

Modified vws from [2f8de9739f] to [98f6d46292].

76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
            continue
        idx = line.find("address:")
        if idx != -1:
            url = line[idx+9:]
            if url.startswith('*:'):
                url = socket.getfqdn()+url[1:]
    if url is None:
        if output.endswith('(qemu)'):
            return spiceurl(sock)
        print >>sys.stderr, "ERROR parsing 'info spice' output:«",output,"»"
        return None
    return "spice://" + url.rstrip('\r')










|







76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
            continue
        idx = line.find("address:")
        if idx != -1:
            url = line[idx+9:]
            if url.startswith('*:'):
                url = socket.getfqdn()+url[1:]
    if url is None:
        if output.rstrip().endswith('(qemu)'):
            return spiceurl(sock)
        print >>sys.stderr, "ERROR parsing 'info spice' output:«",output,"»"
        return None
    return "spice://" + url.rstrip('\r')