Staging
v0.8.1
https://foss.heptapod.net/mercurial/hgview
Revision f20dac18d3ee63f9a594fb35bf1543a978372e35 authored by David Douard on 03 June 2009, 22:29:26 UTC, committed by David Douard on 03 June 2009, 22:29:26 UTC
1 parent d62399a
Raw File
Tip revision: f20dac18d3ee63f9a594fb35bf1543a978372e35 authored by David Douard on 03 June 2009, 22:29:26 UTC
make sure autoresized colums are not resized with too small or negative values
Tip revision: f20dac1
hgqv
#!/usr/bin/env python
"""
Hg repository log browser.

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

import sys, os
import os.path as pos

try:
    import hgqvlib
except ImportError:
    import stat
    execpath = pos.abspath(__file__)
    # resolve symbolic links
    statinfo = os.lstat(execpath)
    if stat.S_ISLNK(statinfo.st_mode):
        execpath = pos.abspath(pos.join(pos.dirname(execpath),
                                        os.readlink(execpath)))
    sys.path.append(pos.abspath(pos.join(pos.dirname(execpath), "..")))

from hgqvlib.qt4.hgrepoviewer import main 

main()

back to top