Sorry if I'm asking a basic question. I'm new to SVN.
We've just moved our backend repository from CVS to SVN. We've implemented a pre-commit hook that we use to validate the commit request. To perform this validation, the project name is required, which in SVN looks like the root folder. The guy that implemented the pre-commit hook has told me that he hasn't found a way to obtain this piece of information from within the pre-commit hook, and doesn't find it as a passed in value. So the pre-commit hook is coded to expect the first word of the Comment as the project name which get's parsed out. This works but places the burden on the developer, and is a step backwards from what we had with CVS.
Can someone point us in the right direction?