Staging
v0.5.0
https://foss.heptapod.net/mercurial/hgview
Raw File
Tip revision: b71e0bab8c2f62e9c1a7e297e0c72f95e773f7ed authored by David Douard on 05 June 2009, 11:41:34 UTC
close new_qt_ui branche (it's now teh default branch)
Tip revision: b71e0ba
hgqv.py
# hgqv: visual mercurial graphlog browser in PyQt4
#
# Copyright 2008-2009 Logilab
#
# This software may be used and distributed according to the terms
# of the GNU General Public License, incorporated herein by reference.

import os
from mercurial import hg, commands, dispatch
    
# every command must take a ui and and repo as arguments.
# opts is a dict where you can find other command line flags
#
# Other parameters are taken in order from items on the command line that
# don't start with a dash.  If no default value is given in the parameter list,
# they are required.

def start_hgqv(ui, repo, *args, **kwargs):
    """start hgqv log viewer
    
    This command will launch the hgqv log navigator, allowing to
    visually browse in the hg graph log, search in logs, and display
    diff between arbitrary revisions of a file.

    Keyboard shortcuts:

    Up/Down     - go to next/previous revision
    Left/Right  - display previous/next files of the current changeset
    Ctrl+F or / - display the search bar
    Ctrl+G      - displa the 'goto rev' bar
    Esc         - exit
    Enter       - run the diff viewer for the currently selected file
                  (display diff between revisions)
    Ctrl+R      - reread repo

    Configuration:

    Configuration statements goes under the section [hgqv] of the
    hgrc config file.

    If a filename is given, only launch the filelog viewer for this file.
    
    Use 'hgqv-options' command to display list of all configuration options.
    """
    rundir = repo.root

    # If this user has a username validation hook enabled,
    # it could conflict with hgqv because both will try to
    # allocate a QApplication, and PyQt doesn't deal well
    # with two app instances running under the same context.
    # To prevent this, we run the hook early before hgqv
    # allocates the app
    try:
        from hgconf.uname import hook
        hook(ui, repo)
    except ImportError:
        pass

    import sys
    sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))
    try:
        from PyQt4 import QtGui
        import hgqvlib.qt4.hgqv_rc
        from hgqvlib.qt4 import hgrepoviewer as hgqv
    except ImportError, e:
        print e
        # If we're unable to import Qt4 and qctlib, try to
        # run the application directly
        # You can specificy it's location in ~/.hgrc via
        #   [hgqv]
        #   path=
        cmd = ui.config("hgqv", "path", "hgqv") 
        os.system(cmd + " " + " ".join(args))
    else:
        # make Ctrl+C works
        import signal
        signal.signal(signal.SIGINT, signal.SIG_DFL)        
        app = QtGui.QApplication(sys.argv)
        if len(args) == 1:
            # should be a filename of a file managed in the repo
            mainwindow = hgqv.FileDiffViewer(repo, args[0])
        else:
            mainwindow = hgqv.HgRepoViewer(repo)
        mainwindow.show()
        return app.exec_()

def display_options(ui, repo, *args, **kwargs):
    """display hgqv full list of configuration options
    """
    import sys
    sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))
    from hgqvlib.config import get_option_descriptions
    options = get_option_descriptions()
    msg = """\nConfiguration options available for hgqv.
    These should be set under the [hgqv] section.\n\n"""
    msg += '\n'.join(["  - " + v for v in options]) + '\n'
    msg += """
    The 'users' config statement should be the path of a file
    describing users, like:

    -----------------------------------------------
    # file ~/.hgusers
    id=david
    alias=david.douard@logilab.fr
    alias=david@logilab.fr
    alias=David Douard <david.douard@logilab.fr>
    color=#FF0000
    
    id=ludal
    alias=ludovic.aubry@logilab.fr
    alias=ludal@logilab.fr
    alias=Ludovic Aubry <ludovic.aubry@logilab.fr>
    color=#00FF00
    -----------------------------------------------
    
    This allow to make several 'authors' under the same name, with the
    same color, in the graphlog browser.
    """
    
    ui.status(msg)
    
cmdtable = {
    "^qv": (start_hgqv,
            [],
            "hg qv [options] [filename]"),
    "^qv-options|qv-config|qv-cfg": (display_options,
                                     [],
                                     "")
}
    
back to top