Custom Query (230 matches)
Results (37 - 39 of 230)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#183 | fixed | Having issues with OSX client | ||
Description |
I'm using a MAC client 0.12.8 and Ubuntu server (0.8.12.1-1 & 0.0.7.33-1). Applications don't start at all, but Desktops do. Server log files attached. |
|||
#230 | fixed | IRC link on Dev page broken | ||
Description |
the IRC link on http://winswitch.org/dev/ points to localhost:10000 instead of a web url |
|||
#201 | fixed | Incorrect check for started X server | ||
Description |
In trying to get a WinSwitch/xpra server on Ubuntu to work with a WinSwitch/xpra client on OSX, I had to fight with xmodmap a bit (need to use Alt for Eclipse, emacs, etc.). I found the check for running X server not to be quite right. The following diff is for an older version of winswitch/client/client_base.py (I can't use the latest due to https://xpra.org/trac/ticket/92), so the lines aren't current but their content hasn't changed.
The first change fixes the search of lines for "org.x.startx". In the old form, line.find returns -1 for any line without a match, triggering on the very first line ("
The second change corrects the check for a process that's running now ("0" in The changes below work on my MacBookPros at home and at work with 10.5 and 10.6: 432c432 < if line.find("org.x.startx$"): --- > if "org.x.startx" in line: 436c436 < started = parts[1]=="0" --- > started = parts[1]=="-" I hope this helps. -Alexey |