gitso

gitso Commit Details


Date:2008-05-10 15:59:39 (16 years 7 months ago)
Author:xburnerx
Branch:master
Commit:a628a44eae44547e7ca1cc59d17a175b91237a4a
Parents: f80a07664db87d18afcebd4781c1a19f0b627f6f
Message:change aboutlicense.txt to copyright

Changes:

File differences

gitso/trunk/package/usr/bin/gitso
11
22
33
4
4
55
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
216
227
238
......
6752
6853
6954
70
55
7156
7257
73
58
7459
7560
7661
......
11095
11196
11297
113
98
11499
115100
116101
#!/usr/bin/env python
# Copyright (c) 2007
# Aaron Gerber ('gerberad')
# Derek Buranen ('bur[n]er') <xburnerx@gmail.com>
# Derek Buranen ('burner') <derek@buranen.info>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, write to:
# The Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor
# Boston, MA 02110-1301, USA.
import pygtk
pygtk.require('2.0')
# Callback: showAbout
# : EVENT - About Gitso selected
def showAbout(self, widget, data=None):
license = open('aboutlicense.txt', 'r')
license = open('/usr/share/doc/gitso/copyright', 'r')
aboutDialog = gtk.AboutDialog()
aboutDialog.set_name("Gitso")
aboutDialog.set_version("0.1.1")
aboutDialog.set_version("0.4")
aboutDialog.set_authors(["Derek Buranen", "Aaron Gerber"])
aboutDialog.set_license(license.read())
aboutDialog.set_website('http://code.google.com/p/gitso')
# Callback: deleteEvent
# : EVENT - "Close" option is selected - title bar or button
# : TODO - Add "Close" button
# : TODO - "quit" promt dialog
# : TODO - "quit" prompt dialog
# : TODO - Close VNC connection
def deleteEvent(self, widget, event, data=None):
# If you return FALSE in the "deleteEvent" signal handler,

Archive Download the corresponding diff file

Branches

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