Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision 608198050ce5ecffa75c35d416baa70d7d94dc6d authored by David Douard on 15 January 2010, 06:28:42 UTC, committed by David Douard on 15 January 2010, 06:28:42 UTC
model did not emit a 'layoutChanged' signal when setRepo was called, for example when changing displayed branch
1 parent fe7e3b1
Raw File
Tip revision: 608198050ce5ecffa75c35d416baa70d7d94dc6d authored by David Douard on 15 January 2010, 06:28:42 UTC
Fix HgRepoListModel
Tip revision: 6081980
hgview.bat
@echo off
rem = """-*-Python-*- script
rem -------------------- DOS section --------------------
rem You could set PYTHONPATH
python -x %~f0 %*
goto exit
 
"""
# -------------------- Python section --------------------
from PyQt4 import QtCore, QtGui
import os
import sys
import os.path as pos

try:
    import hgviewlib
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 hgviewlib.qt4.hgrepoviewer import main 
main()

DosExitLabel = """
:exit
rem """
back to top