/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to about.py

  • Committer: Tom Badran
  • Date: 2007-08-22 19:30:48 UTC
  • mto: (262.2.1 bzr-gtk.134121)
  • mto: This revision was merged to the branch mainline in revision 263.
  • Revision ID: tom@badrunner.net-20070822193048-lbnig18i2h0w20q5
Add ability to hide 'ignored' files:

* Add menu item 'Show ignored files'
* Add filtering during building the file list to hide ignored files

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
import bzrlib
24
24
import gtk
25
25
import os
26
 
from bzrlib.branch import Branch
27
 
from bzrlib.errors import NotBranchError, NoRepositoryPresent
28
 
from bzrlib.trace import mutter
29
 
 
30
 
from bzrlib.plugins.gtk import icon_path
31
 
 
32
 
 
33
 
def read_license():
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"
39
 
 
40
 
 
41
 
def load_credits():
42
 
    import pickle
43
 
    try:
44
 
        credits = pickle.load(file("credits.pickle"))
45
 
    except IOError:
46
 
        credits = None
47
 
    return credits
48
 
 
 
26
from bzrlib.plugins.gtk import data_path
49
27
 
50
28
class AboutDialog(gtk.AboutDialog):
51
29
    def __init__(self):
52
30
        super(AboutDialog, self).__init__()
53
 
        self.set_name("Bazaar GTK")
54
 
        self.set_version(bzrlib.plugins.gtk.version_string)
55
 
        self.set_website("http://bazaar-vcs.org/BzrGtk")
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))
 
31
        self.set_name("Bazaar")
 
32
        self.set_version(bzrlib.version_string)
 
33
        self.set_website("http://bazaar-vcs.org/")
 
34
        self.set_license("GNU GPLv2")
 
35
        self.set_icon(gtk.gdk.pixbuf_new_from_file(os.path.join(data_path(), "bzr-icon-64.png")))
65
36
        self.connect ("response", lambda d, r: d.destroy())
66
37
 
67