changeset 3408:a004164dbeef

Make annotate use linkrev instead of rev
author Brendan Cully <brendan@kublai.com>
date Sun, 15 Oct 2006 17:38:07 -0700
parents d8eba1c3ce9b
children 372999405787
files mercurial/commands.py mercurial/hgweb/hgweb_mod.py
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/commands.py	Sun Oct 15 17:37:04 2006 -0700
+++ b/mercurial/commands.py	Sun Oct 15 17:38:07 2006 -0700
@@ -628,7 +628,7 @@
         raise util.Abort(_('at least one file name or pattern required'))
 
     opmap = [['user', lambda x: ui.shortuser(x.user())],
-             ['number', lambda x: str(x.rev())],
+             ['number', lambda x: str(x.linkrev())],
              ['changeset', lambda x: short(x.node())],
              ['date', getdate], ['follow', lambda x: x.path()]]
     if (not opts['user'] and not opts['changeset'] and not opts['date']
--- a/mercurial/hgweb/hgweb_mod.py	Sun Oct 15 17:37:04 2006 -0700
+++ b/mercurial/hgweb/hgweb_mod.py	Sun Oct 15 17:38:07 2006 -0700
@@ -385,7 +385,7 @@
 
                 yield {"parity": parity,
                        "node": hex(f.node()),
-                       "rev": f.rev(),
+                       "rev": f.linkrev(),
                        "author": name,
                        "file": f.path(),
                        "line": l}