annotate templates/template-vars.txt @ 406:d8abb687d501

[PATCH] Using monotone-viz/git-viz with mercurial -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 [PATCH] Using monotone-viz/git-viz with mercurial From: Vincent Danjean <vdanjean.ml@free.fr> monotone-viz is a small GTK+ application that visualizes monotone ancestry graphs. Its home page is: http://oandrieu.nerim.net/monotone-viz/ As monotone and git are similar, the author adapted the 0.9 version to display git ancestry graphs and call it git-viz. I cannot see any link from the homepage, but looking in the archive of git ML, it can be found here: http://oandrieu.nerim.net/monotone-viz/git-viz-0.1.tar.gz I few days ago, I adapted it so that it works with the last versions of git/cogito. Patches and package are available here: http://dept-info.labri.fr/~danjean/deb.html#git-viz Today, I patched hgit so that it respects the output of git-diff-tree, I added git-{diff-tree,cat-file,rev-list,rev-tree} that call hgit (2 lines scripts), and added the script 'hg-viz'. hg-viz create a .git directory and store the SHA1 of the tip in .git/HEAD and then call my git-viz. All these modifications are in the attached patch. I try it in the mercurial repository. After applying the patch, you just have to add the contrib directory in your PATH and call hg-viz. An example of what we can see is on my web page (probably not for a long time) : http://dept-info.labri.fr/~danjean/temp/hg-viz.png Vincent -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCuM50ywK+sNU5EO8RAtlvAJ425JJI9chCdSi8D+R2Af/vJEOUpACffC9e fxjJ3umBkffj5g86jWaRGZ0= =LwA2 -----END PGP SIGNATURE-----
author mpm@selenic.com
date Tue, 21 Jun 2005 18:35:32 -0800
parents c77a679e9cfa
children f8d44a2e6928
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
138
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
1 repo the name of the repo
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
2 rev a changeset.manifest revision
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
3 node a changeset node
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
4 changesets total number of changesets
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
5 file a filename
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
6 filenode a file node
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
7 filerev a file revision
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
8 filerevs total number of file revisions
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
9 up the directory of the relevant file
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
10 path a path in the manifest, starting with "/"
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
11 basename a short pathname
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
12 manifest a manifest node
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
13 manifestrev a manifest revision
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
14 date a date string
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
15 age age in hours, days, etc
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
16 line a line of text (escaped)
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
17 desc a description (escaped, with breaks)
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
18 shortdesc a short description (escaped)
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
19 author a name or email addressv(obfuscated)
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
20 p1, p2 parent nodes
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
21 p1rev, p2rev parent revs
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
22
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
23 header the global page header
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
24 footer the global page footer
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
25
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
26 files a list of file links
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
27 dirs a set of directory links
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
28 diff a diff of one or more files
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
29 annotate an annotated file
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
30 entries the entries relevant to the page
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
31
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
32 Templates and commands:
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
33 changelog(rev) - a page for browsing changesets
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
34 naventry - a link for jumping to a changeset number
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
35 filenodelink - jump to file diff
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
36 fileellipses - printed after maxfiles
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
37 changelogentry - an entry in the log
c77a679e9cfa Revamped templated hgweb
mpm@selenic.com
parents:
diff changeset
38 manifest - browse a manifest as a directory tree