Staging
v0.5.0
https://foss.heptapod.net/mercurial/hgview
Revision c91669648d48a19890b8b2557bc5ec5e339d6ca3 authored by Alexandre Fayolle on 25 August 2010, 14:08:47 UTC, committed by Alexandre Fayolle on 25 August 2010, 14:08:47 UTC
1 parent e4d630f
Raw File
Tip revision: c91669648d48a19890b8b2557bc5ec5e339d6ca3 authored by Alexandre Fayolle on 25 August 2010, 14:08:47 UTC
prepare bugfix release 1.2.1
Tip revision: c916696
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_HGVIEW_DIR
  python setup.py install

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

  [extensions]
  hgext.hgview=path/to/hqgv/hgext/hgview.py

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

See `hg help hgview` for more informations on available configuration
options.
back to top