I'm working on a project in which we're actively using the $Id$
string generated by subversion to write the version number in the documentation. For example, we parse this string
$Id: filename 999 2009-02-23 22:51:29Z author $
and print "999" in the documentation titlepage.
But every now and then, after a commit, the information is removed and we're left with just
$Id$
This obviously breaks things a little. Does anyone know why it might be happening?
Okay, the obvious answer was correct; svn:keywords
weren't set for that file any more. But I swear they used to be! Any idea how/why svn:keywords
would have been cleared from a file without anyone noticing/doing anything on purpose?