gitso

gitso Commit Details


Date:2008-09-03 22:12:10 (16 years 3 months ago)
Author:gerberad
Branch:master
Commit:383feb7140d6dd9052b1be0aa671a51f02c51c01
Parents: 5e079974939bd28fea6b5a80276fcaec471b3faa
Message:Updated vnc connection settings for OS X.

Changes:

File differences

gitso/trunk/Gitso.py
173173
174174
175175
176
176
177177
178178
179179
......
194194
195195
196196
197
197
198198
199199
200
200
201201
202202
203203
self.displayHostBox(self.sampleList, host)
if sys.platform == 'darwin':
self.returnPID = os.spawnl(os.P_NOWAIT, '%sOSXvnc/OSXvnc-server' % devPath, 'OSXvnc-server', '-nopw -connectHost', '%s' % host)
self.returnPID = os.spawnl(os.P_NOWAIT, '%sOSXvnc/OSXvnc-server' % devPath, '%sOSXvnc/OSXvnc-server' % devPath, '-connectHost', '%s' % host)
elif sys.platform.find('linux') != -1:
self.returnPID = os.spawnlp(os.P_NOWAIT, 'x11vnc', 'x11vnc','-nopw','-ncache','20','-solid','black','-connect','%s' % host)
elif sys.platform == 'win32':
if sys.platform == 'darwin':
if os.path.exists("/Applications/Utilities/X11.app") :
os.spawnl(os.P_WAIT, '/usr/bin/open', 'open', '/Applications/Utilities/X11.app')
os.spawnl(os.P_WAIT, '/usr/bin/open', '/usr/bin/open', '/Applications/Utilities/X11.app')
dlg = wx.MessageDialog(self, "If it doesn't open shortly, please start it manually.", "Please wait while X11.app starts", wx.OK|wx.CENTRE|wx.ICON_INFORMATION)
dlg.ShowModal()
self.returnPID = os.spawnlp(os.P_NOWAIT, '%svncviewer/vncviewer' % devPath, 'vncviewer', '-listen', '0')
self.returnPID = os.spawnlp(os.P_NOWAIT, '%svncviewer/vncviewer' % devPath, '%svncviewer/vncviewer' % devPath, '-listen', '0')
else:
dlg = wx.MessageDialog(self, "We were unable to find X11.app in /Applications/Utilities", "To Give Support you need X11.app", wx.OK|wx.CENTRE|wx.ICON_ERROR)
dlg.ShowModal()

Archive Download the corresponding diff file

Branches

Number of commits:
Page rendered in 0.08328s using 13 queries.