Präriewolf
Präriewolf

Reputation: 819

Does Subversion Support "Extensions"?

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

Answers (2)

Olli
Olli

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.

Update for broken link

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

Hank Gay
Hank Gay

Reputation: 71969

It supports the concept of hooks, which you can use to write your own extensions. I haven't really seen a lot of prepackaged sets of hooks, though.

Upvotes: 3

Related Questions