Changes between Initial Version and Version 1 of Ticket #2041, comment 15
- Timestamp:
- 11/29/18 06:11:47 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2041, comment 15
initial v1 13 13 * I'm not sure about the parsing of the proxy value on the URI: maybe we should do a first pass using {{{xpra.scripts.parsing.parse_URL}}} then parse the regexp on the "proxy" option it returns 14 14 * ''python does lists by reference, full_ssh = ssh was probably a bug'' - the "ssh" attribute was actually unused, so r21139 removes it. (FYI: to keep "ssh", the pythonic way would have been: {{{full_ssh = ssh[:]}}} or {{{full_ssh = list(ssh)}}}) 15 * and don't forget the man page updates, etc 15 16 16 17 ----