Firstly, thanks for taking the time to read this and possibly comment on it.
Summary
After setting a custom SVN property on a file and committing, I cannot get the "svn log" command, with various options set, to display the property after I commit it. I have followed this example from the SVN redbook to no avail (Searchability sub-section).
My environment
Server: I am using 32-bit SubVersion Server version 1.6.15 running on 64-bit Windows Server 2008 R2
Client: TortoiseSVN 1.6.16 running on 32-bit Windows XP Pro SP3.
The repo is a test repo with no hooks of any kind available.
My scenario
After setting a custom property named active-projects on a a file named test.txt and committing that change to the repository I attempt to execute the following:
svn log --with-all-revprops --xml [url_to_test.txt]
The use of the --with-all-revprops is supposed to show me my custom property but alas, the above returned valid information in XML format but did not include the revprops element with a property named active-projects and its respective value.
Attempting to execute the following in the local directory, containing test.txt yielded the same results as above:
svn log --with-all-revprops --xml test.txt
What is interesting is that I can see the above property on that file at that URL via my repo browser. If I execute the following in the local directory, containing test.txt, the value of the property is returned as expected:
svn propget active-projects test.txt
Conclusions
So, any ideas why I cannot find my precious active-projects custom property via the svn log command using either the URL or the local path? It may be that I have misunderstood the concept or am missing some vital piece of server configuration. Your insight is appreciated.