Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision 4d54492de04b5f74b3d3fde8b06b7ce0e4a48927 authored by David Douard on 27 May 2009, 17:00:36 UTC, committed by David Douard on 27 May 2009, 17:00:36 UTC
1 parent 06e8455
Raw File
Tip revision: 4d54492de04b5f74b3d3fde8b06b7ce0e4a48927 authored by David Douard on 27 May 2009, 17:00:36 UTC
Crated a widget for managing file list of a revision and use it in the repo viewver.
Tip revision: 4d54492
README
hgqv intallation notes
======================

hgqv can be used either as a hg extension, or as a standalone
application.

It depends on:

- mercurial (1.0 minimum)
- PyQt4
- QScintilla and PyQScintilla
- mx.DateTime

It is very simple to use ``hgqv`` from the hg repository::

  hg clone http://www.logilab.org/hg/hgqv
  
  cd <ANY_HG_REPO>
  $PATH_TO_HGQV_DIR/bin/hgqv

On the other hand, installing ``hgqv`` is simply done using usual
``distutils`` script::

  cd $PATH_TO_HGQV_DIR
  python setup.py install

Last, you can add the following to your main .hgrc file::

  [extensions]
  qtview=path/to/hqgv/qtview.py

  [qtview]
  # your hgqv configs statements like: 
  dotradius=6
  # type hg qv-config to list available options


back to top