Menu

Tree [046f52] default tip /
 History

Read Only access


File Date Author Commit
 administration_tools 2012-05-03 Goetz Pfeiffer Goetz Pfeiffer [fca1c9] Bugfix in administration tools.
 doc 2012-05-02 Goetz Pfeiffer Goetz Pfeiffer [4a7058] The css file in "doc" no longer references rst2...
 .hgignore 2012-05-02 Goetz Pfeiffer Goetz Pfeiffer [96c84e] MANIFEST was added to .hgignore.
 .hgtags 2013-06-12 Goetz Pfeiffer Goetz Pfeiffer [046f52] Added tag version_1.2.4 for changeset 9479ad6e60b7
 LICENSE 2010-03-08 Goetz Pfeiffer Goetz Pfeiffer [31bc7b] This is the first version of hg-diff, a GUI dif...
 README 2011-11-10 Goetz Pfeiffer Goetz Pfeiffer [706a35] A README file and documentation files were adde...
 hg-diff 2013-06-12 Goetz Pfeiffer Goetz Pfeiffer [9479ad] he program's version was increased to 1.2.3.
 setup.py 2013-06-12 Goetz Pfeiffer Goetz Pfeiffer [9479ad] he program's version was increased to 1.2.3.

Read Me

About:
    hg-diff is a simple GUI program to browse mercurial revisions. It is used
    to display a summary all changes between two revisions and to display a
    graphical comparision of two versions of each changed file.

Homepage:
    http://hg-diff.sourceforge.net/
    and:
    https://sourceforge.net/projects/hg-diff/

Documentation:
    Documentation is in the directory "doc". You can read it by entering
    "file://<path-to-hg-diff>/doc/index.html" as URL in your browser.

    The documenation is also available on the web at:
    http://hg-diff.sourceforge.net/
    
    The sources are written ReStructuredText format. docutils
    (http://docutils.sourceforge.net/) is used to generate html
    documentation from this format. In the source distribution, generated
    html documentation is already included.
    
Installation:

You may install hg-diff from source:

    Download hg-diff_[version].tar.gz from this web site

    unpack with tar -xvzf hg-diff_[version].tar.gz
    chdir hg-diff

    The program uses the standard python distutils. See also
    http://docs.python.org/install/index.html for comprehensive
    documentation on this. If you have root permissions, you may install
    the program with this command:

    python setup.py install

    If you want to install the program in a separate directory for testing,
    you may execute these commands:

    mkdir $HOME/test
    python setup.py install --home=~/test
    export PYTHONPATH=~/test/lib/python:$PYTHONPATH
    export PATH=~/test/bin:$PATH