Staging
v0.5.0
https://foss.heptapod.net/mercurial/hgview
Revision 32537617bd2a83bad98151828bb50443af1caa6c authored by David Douard on 16 November 2009, 22:39:37 UTC, committed by David Douard on 16 November 2009, 22:39:37 UTC
Besides the fact that at this moment of the execution of the method, self.sender() may not be self.goto_toolbar anymore (avan if it is the real source of the signal, due to the fact that calling indexFromRev may activate some other slots of self), hiding it nevertheless should not be a regression in any kind.
1 parent 30365b5
Raw File
Tip revision: 32537617bd2a83bad98151828bb50443af1caa6c authored by David Douard on 16 November 2009, 22:39:37 UTC
Always hide goto_toolbar at the end of goto method.
Tip revision: 3253761
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]
  view=path/to/hqgv/hgext/hgview.py

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


back to top