1
# Modified for use with Olive:
2
# Copyright (C) 2006 by Szilveszter Farkas (Phanatic) <szilveszter.farkas@gmail.com>
3
# Original copyright holder:
4
# Copyright (C) 2005 by Canonical Ltd. (Scott James Remnant <scott@ubuntu.com>)
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
11
# This program is distributed in the hope that it will be useful,
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
# GNU General Public License for more details.
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20
"""GTK+ Branch Visualisation.
22
This is a bzr plugin that adds a new 'visualise' (alias: 'viz') command
23
which opens a GTK+ window to allow you to see the history of the branch
24
and relationships between revisions in a visual manner.
26
It's somewhat based on a screenshot I was handed of gitk. The top half
27
of the window shows the revisions in a list with a graph drawn down the
28
left hand side that joins them up and shows how they relate to each other.
29
The bottom hald of the window shows the details for the selected revision.
32
__copyright__ = "Copyright © 2005 Canonical Ltd."
33
__author__ = "Scott James Remnant <scott@ubuntu.com>"