You might try using Google and do a search such as:
allinurl:"all-wcprops" inurl:"yoururlhere"
If you then get a match like this at the end:
/.svn/all-wcprops
It means that Apache isn't configured to at the very least keep folks from checking out your repository. This is probably a tool for checking for security failures via apache rather than svn. Hope I've been helpful.
Easy enough to fix in your apache conf:
# Disallow browsing of Subversion working copy administrative dirs.
<DirectoryMatch "^/.*/\.svn/">
Order deny,allow
Deny from all
</DirectoryMatch>