26
from bzrlib.branch import Branch
27
from bzrlib.errors import NotBranchError, NoRepositoryPresent
28
from bzrlib.trace import mutter
26
30
from bzrlib.plugins.gtk import icon_path
34
license_file = os.path.join(os.path.dirname(__file__), "COPYING")
35
if os.path.exists(license_file):
36
return file(license_file).read()
37
# Fall back to just license name if we can't find the file
38
return "GPLv2 or later"
44
credits = pickle.load(file("credits.pickle"))
28
50
class AboutDialog(gtk.AboutDialog):
29
51
def __init__(self):
30
52
super(AboutDialog, self).__init__()
31
53
self.set_name("Bazaar GTK")
32
54
self.set_version(bzrlib.plugins.gtk.version_string)
33
55
self.set_website("http://bazaar-vcs.org/BzrGtk")
34
self.set_license("GNU GPL v2 or later")
35
self.set_icon(gtk.gdk.pixbuf_new_from_file(icon_path("bzr-icon-64.png")))
56
self.set_license(read_license())
57
self.set_logo(gtk.gdk.pixbuf_new_from_file(icon_path("bzr-icon-64.png")))
58
credits = load_credits()
59
if credits is not None:
60
(authors, documenters, artists, translators) = credits
61
self.set_authors(authors)
62
self.set_documenters(documenters)
63
self.set_artists(artists)
64
self.set_translator_credits("\n".join(translators))
36
65
self.connect ("response", lambda d, r: d.destroy())