You'll have to explain exactly how you're doing this.
Unlike other RCS and possibly CVS, Subversion doesn't automatically expand Keywords. There are two parts to using keywords:
- Setting the
svn:keywords
property in the file to the keywords you want to expand. These are limited to:
- URL
- Author
- Date
- Id
- Revision
- Putting the Keyword inside your file surrounded by dollar signs.
Like this:
$Author$
This will expand to:
$Author: dweintaub$
Are you doing all of that?
The whole idea of keyword expansion is now considered an out of date concept that wasn't really all that good an idea. As long as your code is in Subversion, you can get all of this (and more) without doing Keyword expansion.
A lot of time, this was used to see what versions of the software was used in compilation. However, if you're compiling code, there are simply better ways of embedding in the revision data. For example, you probably are using a build system that creates build numbers. A better thing to do is to simply embed the build number in a single file as its compiled, so you can view it in an About Box.
So, if you really can't get this to work, it isn't all that bad. It's saving you from a practice that is no longer considered a good idea for CM.