gitso

gitso Commit Details


Date:2008-06-15 18:14:06 (16 years 6 months ago)
Author:gerberad
Branch:master
Commit:11e1ebb6af3d426bea21d2c73a1cc552ce89ecb1
Parents: 1d05e1d50b93ad5eb212bbd43b24a46e50d6a813
Message:Fixed a couple bugs in Linux where it wouldn't find /usr/share/gitso/Gitso.py and the copyright.

Changes:

File differences

gitso/trunk/Gitso.py
319319
320320
321321
322
322
323323
324324
325325
......
374374
375375
376376
377
378
379
377
378
379
380
wx.Frame.__init__(self, parent, wx.ID_ANY, title, size=(525,400), style=wx.CLOSE_BOX | wx.MINIMIZE_BOX)
# Create a read-only box
if sys.platform == "linux":
if sys.platform.find('linux') != -1:
license = open(os.path.join(sys.path[0], '..', 'share', 'doc', 'gitso', 'copyright'), 'r')
else:
license = open('copyright', 'r')
else:
prefFile = os.path.join(os.path.expanduser("~"), ".gitso-hosts")
app = wx.PySimpleApp()
Connect(None, -1, "Gitso")
app.MainLoop()
if __name__ == "__main__":
app = wx.PySimpleApp()
Connect(None, -1, "Gitso")
app.MainLoop()
gitso/trunk/arch/linux/gitso
11
22
3
3
44
55
6
6
77
88
9
10
9
10
11
#!/usr/bin/env python
import sys, os
import sys, os, wx
sys.path.append(os.path.join(sys.path[0], '..', 'share', 'gitso'))
from gitso import Connect
from Gitso import Connect
if __name__ == "__main__":
hello = Connect()
hello.main()
app = wx.PySimpleApp()
Connect(None, -1, "Gitso")
app.MainLoop()
gitso/trunk/makegitso
6262
6363
6464
65
6566
6667
6768
`mkdir $path/usr/share/doc/gitso`;
`mkdir $path/usr/share/gitso`;
`cp arch/linux/gitso $path/usr/bin/`;
`chmod u+x $path/usr/bin`;
`cp Gitso.py $path/usr/share/gitso/`;
`cp __init__.py $path/usr/share/gitso/`;
`cp hosts.txt $path/usr/share/gitso/`;

Archive Download the corresponding diff file

Branches

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