/usr/bin/git-dag is in git-cola 1.9.3-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | #! /usr/bin/python
# -*- python-mode -*-
"""git-dag: An advanced git DAG visualizer
"""
__copyright__ = """
Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013
David Aguilar <davvid@gmail.com> and contributors
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as
published by the Free Software Foundation.
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.
"""
import os
import sys
from argparse import ArgumentParser
from os.path import abspath
from os.path import dirname
from os.path import realpath
def setup_environment():
"""Provides access to the cola modules"""
# Try to detect where it is run from and set prefix and the search path.
# It is assumed that the user installed Cola using the --prefix= option
prefix = dirname(dirname(realpath(abspath(__file__))))
# Look for modules in the source or install trees
cola_mod = os.path.join(prefix, 'cola', '__init__.py')
if os.path.exists(cola_mod):
# Source tree
sys.path.insert(1, prefix)
else:
# Install tree
install_lib = os.path.join(prefix, 'share', 'git-cola', 'lib')
sys.path.insert(1, install_lib)
setup_environment()
from cola.app import add_common_arguments
from cola.app import application_init
from cola.app import application_start
def main():
args = parse_args()
return args.func(args)
def parse_args():
parser = ArgumentParser()
parser.set_defaults(func=dag)
add_common_arguments(parser)
parser.add_argument('-c', '--count', metavar='<count>',
type=int, default=1000,
help='number of commits to display')
parser.add_argument('args', nargs='*', metavar='<args>',
help='git log arguments')
return parser.parse_args()
def dag(args):
context = application_init(args)
from cola.widgets.dag import git_dag
view = git_dag(context.model, args=args)
return application_start(context, view)
if __name__ == '__main__':
sys.exit(main())
|