Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision 383a4146e7e6159b8badedc8271908ce30d28456 authored by David Douard on 03 June 2009, 22:10:48 UTC, committed by David Douard on 03 June 2009, 22:10:48 UTC
- the find has been extracted from the main window code into a new quickbar, in relation with the HgFileView widget
- some methods have been moved to hggraph.Graph
- the HgFileView is now used in the file log navigator (and it takes advantage of the find function)
- HgDialogMixin has been extracte in its own module
1 parent f7b0253
Raw File
Tip revision: 383a4146e7e6159b8badedc8271908ce30d28456 authored by David Douard on 03 June 2009, 22:10:48 UTC
Major refactoring of the find function (and more refactors):
Tip revision: 383a414
README
hgview intallation notes
=========================

hgview 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 ``hgview`` from the hg repository::

  hg clone http://www.logilab.org/hg/hgview
  
  cd <ANY_HG_REPO>
  $PATH_TO_HGVIEW_DIR/bin/hgview

On the other hand, installing ``hgview`` 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]
  view=path/to/hqgv/hgext/hgqv.py

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


back to top