Mercurial > public > mercurial-scm > hg-stable
diff hgext/keyword.py @ 9943:f8d779791161 stable
keyword: the CVS keyword is $RCSfile$, not $RCSFile$
http://cvsbook.red-bean.com/cvsbook.html#List%20Of%20Keywords
Fix default keyword map accordingly.
Keep $RCSFile$ for Mercurial backwards compatibility.
author | Christian Ebert <blacktrash@gmx.net> |
---|---|
date | Thu, 26 Nov 2009 10:51:17 +0100 |
parents | b6d484168350 |
children | af5f99d8195e 4b514a70ea72 |
line wrap: on
line diff
--- a/hgext/keyword.py Thu Nov 26 20:50:16 2009 +0100 +++ b/hgext/keyword.py Thu Nov 26 10:51:17 2009 +0100 @@ -111,7 +111,8 @@ 'Revision': '{node|short}', 'Author': '{author|user}', 'Date': '{date|utcdate}', - 'RCSFile': '{file|basename},v', + 'RCSfile': '{file|basename},v', + 'RCSFile': '{file|basename},v', # kept only for backwards compatibility 'Source': '{root}/{file},v', 'Id': '{file|basename},v {node|short} {date|utcdate} {author|user}', 'Header': '{root}/{file},v {node|short} {date|utcdate} {author|user}',