/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 olive/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2008-08-05 23:21:16 UTC
  • mto: This revision was merged to the branch mainline in revision 599.
  • Revision ID: jelmer@samba.org-20080805232116-uh4s76r1o5duxhdu
Fix Olive homepage URL.

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
    """ Display the AboutDialog. """
61
61
    from bzrlib.plugins.gtk import __version__, icon_path
62
62
    
63
 
    iconpath = icon_path() + os.sep
64
 
    
65
63
    dialog = gtk.AboutDialog()
66
64
    dialog.set_name("Olive")
67
65
    dialog.set_version(__version__)
68
 
    dialog.set_copyright("Copyright (C) 2006 Szilveszter Farkas (Phanatic)")
69
 
    dialog.set_website("https://launchpad.net/products/olive")
70
 
    dialog.set_website_label("https://launchpad.net/products/olive")
71
 
    dialog.set_icon_from_file(iconpath+"oliveicon2.png")
72
 
    dialog.set_logo(gtk.gdk.pixbuf_new_from_file(iconpath+"oliveicon2.png"))
 
66
    dialog.set_copyright("Copyright (C) 2006-2008 Szilveszter Farkas (Phanatic)")
 
67
    dialog.set_website("https://launchpad.net/bzr-gtk")
 
68
    dialog.set_website_label("https://launchpad.net/bzr-gtk")
 
69
    dialog.set_icon_from_file(icon_path("oliveicon2.png"))
 
70
    dialog.set_logo(gtk.gdk.pixbuf_new_from_file(icon_path("oliveicon2.png")))
73
71
    dialog.set_authors([ _i18n("Lead Developer:"),
74
72
                         "Szilveszter Farkas <szilveszter.farkas@gmail.com>",
75
73
                         _i18n("Contributors:"),
83
81
    # Destroy the dialog
84
82
    dialog.destroy()
85
83
 
 
84
 
86
85
class OliveGtk:
87
86
    """ The main Olive GTK frontend class. This is called when launching the
88
87
    program. """