I wanted to edit a log comment in the repo-browser and received an error message that no pre-revprop-change hook exists for the repository. Besides having a scary name, what is a pre-revprop-change hook and how do I create it?

link|improve this question

79% accept rate
1  
First result when googling for pre-revprop-change: svnbook.red-bean.com/en/1.0/ch05s02.html See section "Hook Scripts". – sharkin Oct 13 '08 at 10:53
1  
now this link is the second one, just after a link to this question :) – ULysses Aug 5 '10 at 10:11
feedback

3 Answers

up vote 22 down vote accepted

Basically it's a script that is launched before any property is modified on the repository, so that you can manage more precisely what's happening on your repository.

There are templates in the SVN distrib for different hooks, located in the /hooks subdirectory (*.tmpl that you have to edit and rename depending on your OS, to activate).

link|improve this answer
1  
All the instructions are in the hook template script. If you need the hook for an svnsync mirror, then the default script will need to be changed, because it only allows changes to svn:log. Svnsync changes more than this, so I simply put an exit 0 in there to allow all property changes (since this is a mirror for me only). – Matt Connolly Dec 11 '10 at 21:07
feedback

For Windows, here's a link to an example batch file that only allows changes to the log message (not other properties):

http://ayria.livejournal.com/33438.html

Basically copy the code below into a text file and name it pre-revprop-change.bat and save it in the \hooks subdirectory for your repository.

@ECHO OFF
:: Set all parameters. Even though most are not used, in case you want to add
:: changes that allow, for example, editing of the author or addition of log messages.
set repository=%1
set revision=%2
set userName=%3
set propertyName=%4
set action=%5

:: Only allow the log message to be changed, but not author, etc.
if /I not "%propertyName%" == "svn:log" goto ERROR_PROPNAME

:: Only allow modification of a log message, not addition or deletion.
if /I not "%action%" == "M" goto ERROR_ACTION

:: Make sure that the new svn:log message is not empty.
set bIsEmpty=true
for /f "tokens=*" %%g in ('find /V ""') do (
set bIsEmpty=false
)
if "%bIsEmpty%" == "true" goto ERROR_EMPTY

goto :eof

:ERROR_EMPTY
echo Empty svn:log messages are not allowed. >&2
goto ERROR_EXIT

:ERROR_PROPNAME
echo Only changes to svn:log messages are allowed. >&2
goto ERROR_EXIT

:ERROR_ACTION
echo Only modifications to svn:log revision properties are allowed. >&2
goto ERROR_EXIT

:ERROR_EXIT
exit /b 1
link|improve this answer
19  
Could have linked to the version there stackoverflow.com/questions/6155/…. I wrote that hook and posted it on SVN forum a while ago. I guess I should have put some credits in the hook comments. – Philibert Perusse Jul 10 '09 at 11:38
I'm using this script with VisualSVN 2.0.8 and TortoiseSVN 1.6.11 and it works nicely. – Mark Biek Aug 10 '10 at 18:32
11  
You can edit hooks in VisualSVN by right-clicking your repository name in VisualSVN Server and selecting "Properties...". You'll see a "Hooks" tab. In there you'll see the different types of hooks available. Select the right one, click "Edit" and paste the above code into it. Hope that helps VisualSVN users! – Django Reinhardt Sep 1 '10 at 15:50
Worked for me disabling line: if /I not "%action%" == "M" goto ERROR_ACTION. Other way, it kept saying only modifications allowed. – Nathan Mar 23 at 16:32
feedback

Here is the link to the stack overflow question with many common hooks Common Types of Subversion Hooks, including the original source of the pre-revprop-change hook for Windows cross-posted here.

You should refer there as they may get improved over time.

link|improve this answer
feedback

protected by Michael Myers Sep 13 '10 at 15:26

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.