GNOME Bugzilla – Bug 378738
Incorrect usage of CVS header tags
Last modified: 2006-11-27 15:17:07 UTC
For example in gimp-new-layer-dialog you can find: <revision lang="de"> <revnumber>$Revision$</revnumber> <date>2005-11-03</date> <authorinitials>a.w</authorinitials> </revision> That's wrong, actually it should be $Revision: without $ and with : in the end. Only in that case it will be replaced automatically. <revision lang="fr"> <revnumber>$Revision: 1.7 $</revnumber> <date>2006-01-28</date> <authorinitials>j.h</authorinitials> </revision> See docs here: http://www.eyrie.org/~eagle/notes/cvs/file-headers.html
Thanks for the bug report. I'll fix it right away ...
-> assign
If that is so, why does the webpage you pasted tell us to use $Revision$ then?
You should use either $Revision$ or $Revision:...$ (with the dots replaced by the actual revision number. Thus, if you start a new file, just use $Revision$ and CVS (or actually RCS) will do the substitution to the second form and will take care of updating the version then. See also http://www.stud.uni-hannover.de/stud/serv/cvsdoc/cvs_17.html
The problem here is that some files in the gimp-help-2 CVS module have the substitution mode set incorrectly. To fix this, use 'cvs admin -kkv <file>'.
According to the ChangeLog this is FIXED.