You have done half what you need. Now you need to use svn propset to do the rest, as shown in the documentation , about halfway down the page:
You have done this part:
For example, let's say you have a versioned file called weather.txt that looks like this:
Here is the latest report from the front lines. $LastChangedDate$ $Rev$ Cumulus clouds are appearing more frequently as summer approaches.
Now you need to do the other half:
If the svn: Keywords property is not set for this file, Subversion will not do anything special. Now let me enable the LastChangedDate keyword replacement.
$ svn propset svn:keywords "Date Author" weather.txt property 'svn:keywords' set on 'weather.txt' $
The easiest way to set these properties using TortoiseSVN is to right-click the file, select TortoiseSVN->Properties from the pop-up menu, and then configure it there. You can find this information on the Project Settings page of the project in the TortoiseSVN documentation ; see SVN keywords about 2/3 of the way down the page. (There is no binding, but you can search for the page as soon as you get there.)
Ken white
source share