annotate hgweb.cgi @ 199:2424676edd8c
annotate: deal with merges
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
annotate: deal with merges
This rewrite of the annotate code deals with merges:
- - find all ancestors
- - sort ancestors topologically
- - for each ancestor, pairwise annotate with parents
- - keep a cache of annotations for efficiency
manifest hash:
b960d9b9c6a7f6ba351c97675b00a1dd3004dcf1
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCnJclywK+sNU5EO8RAphZAKCkUuHh4jEJz7YwD9uzCT76GaSR/wCfUVUQ
VbGna/9jrOAFlrB3mZ3e4qg=
=yDFy
-----END PGP SIGNATURE-----
author |
mpm@selenic.com |
date |
Tue, 31 May 2005 08:56:05 -0800 |
parents |
f9d8620ef469 |
children |
e875a0cf7f3a |
rev |
line source |
159
|
1 #!/usr/bin/python
|
|
2 #
|
|
3 # An example CGI script to use hgweb, edit as necessary
|
|
4
|
|
5 import cgitb, os, sys
|
|
6 # sys.path.insert(0, "/path/to/python/lib") # if not a system-wide install
|
|
7 from mercurial import hgweb
|
|
8
|
|
9 h = hgweb.hgweb("/path/to/repo", "repository name")
|
|
10 h.run()
|