Overview
Comment: | Fixed launch of the viewer in start command |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
cb26ea490c6fa04163e3bc0b07c5bb54 |
User & Date: | vitus on 2015-11-13 16:29:47 |
Other Links: | manifest | tags |
Context
2015-11-17
| ||
06:52 | Implemented monitor. started usb code check-in: 48132590a1 user: vitus tags: trunk | |
2015-11-13
| ||
16:29 | Fixed launch of the viewer in start command check-in: cb26ea490c user: vitus tags: trunk | |
2015-11-10
| ||
15:21 | Fix first screen of wizard check-in: c97821cce1 user: vitus tags: trunk | |
Changes
Modified vws from [952b985ab1] to [42c047dc9a].
1 2 3 4 5 6 7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | - + | #!/usr/bin/python from ConfigParser import ConfigParser from argparse import ArgumentParser import fcntl import socket import errno import re |
︙ | |||
44 45 46 47 48 49 50 | 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | + + - + - + - + - + | if url is not None: continue n=line.find("address:") if n != -1: url=line[n+9:] if url.startswith('*:'): url="localhost"+url[1:] if url is None: return None |
︙ |