Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision 37ce4fb6f8e06394d9b8dd92a82d9002fc6f719f authored by Mads Kiilerich on 24 August 2019, 17:50:35 UTC, committed by Mads Kiilerich on 24 August 2019, 17:50:35 UTC
1 parent 5950012
Raw File
Tip revision: 37ce4fb6f8e06394d9b8dd92a82d9002fc6f719f authored by Mads Kiilerich on 24 August 2019, 17:50:35 UTC
Introduce py3 variant of tounicode
Tip revision: 37ce4fb
hgview
#!/usr/bin/env python
# hgview: visual mercurial graphlog browser in PyQt4
#
# Copyright 2008-2010 Logilab
#
# This software may be used and distributed according to the terms
# of the GNU General Public License, incorporated herein by reference.

"""
Hg repository log browser.

This may be used as a standalone application or as a hg extension. See
README file included.
"""

import sys
from os import readlink, lstat
from os.path import join, dirname, abspath, pardir, exists
from imp import load_package
import stat


execpath = abspath(__file__)
#   resolve symbolic links
statinfo = lstat(execpath)
if stat.S_ISLNK(statinfo.st_mode):
    execpath = join(dirname(execpath), readlink(execpath))
    execpath = abspath(execpath)
# if standalone, import manually
setuppath = join(dirname(dirname(execpath)), 'setup.py')
if exists(setuppath): # standalone if setup.py found in src dir
    hgviewlibpath = join(dirname(dirname(execpath)), 'hgviewlib')
    hgviewlibpath = abspath(hgviewlibpath)
    load_package('hgviewlib', hgviewlibpath)

from hgviewlib.application import main

main()
back to top