Reputation: 819
Does anyone know if Subversion supports extensions?
A good example of what I mean would be Apache modules.
Any development resources?
Upvotes: 2
Views: 951
Reputation: 2135
The subversion site has a page dedicated to tools & contrib stuff. Link
There you find a lot of stuff to extend subversion. Common hook scripts include email on new commits, checking for proper log message and so on. Since you can write your own hooks (which occur on specified events such as before the actual commit, after the commit...) you can customize it almost as much as you want. The link has a big list of ready-to-use stuff.
Subversion is now managed by Apache so the above link does not work, you should look at the Red Book top level link chapter on hooks v1.7 link.
Upvotes: 4