Re: How to stop delete files/directory from SVN Repo Browser

2012-08-09 Thread Ryan Schmidt
On Aug 8, 2012, at 23:46, Subodh Singh wrote: > One more question is that do we able to set deletion permission as user > based. Some specified users can delete but not all. You can use "svnlook author -t $TXN $REPOS" to see who the author of the commit is, and make decisions based on that. C

Re: How to stop delete files/directory from SVN Repo Browser

2012-08-09 Thread Ben Smith-Mannschott
On Thu, Aug 9, 2012 at 6:46 AM, Subodh Singh wrote: > Thanks Ryan, > I am able to stop deletion using pre-commit hook using svnlook. > One more question is that do we able to set deletion permission as user > based. Some specified users can delete but not all. > > Thanks > Subodh Please take som

Re: How to stop delete files/directory from SVN Repo Browser

2012-08-08 Thread Thorsten Schöning
Guten Tag Subodh Singh, am Donnerstag, 9. August 2012 um 06:46 schrieben Sie: > I am able to stop deletion using pre-commit hook using svnlook. > One more question is that do we able to set deletion permission as user > based. Some specified users can delete but not all. This depends on your sc

RE: How to stop delete files/directory from SVN Repo Browser

2012-08-08 Thread Subodh Singh
...@ryandesign.com] Sent: Tuesday, August 07, 2012 2:43 PM To: Subodh Singh Cc: Subversion Users Subject: Re: How to stop delete files/directory from SVN Repo Browser On Aug 7, 2012, at 04:00, Subodh Singh wrote: > Ryan Schmidt wrote: > >> On Aug 6, 2012, at 01:28, Subodh Singh wrote: >>

Re: How to stop delete files/directory from SVN Repo Browser

2012-08-07 Thread Ryan Schmidt
On Aug 7, 2012, at 13:50, Blair Zajac wrote: > Note that by preventing deletes you also prevent moves, because in svn a 'svn > mv A B' is the same as 'svn cp A B; svn rm A'. Also, preventing deletes isn't necessarily that useful. Someone could just as easily delete the contents of a file and c

Re: How to stop delete files/directory from SVN Repo Browser

2012-08-07 Thread Blair Zajac
On 08/07/2012 02:13 AM, Ryan Schmidt wrote: On Aug 7, 2012, at 04:00, Subodh Singh wrote: Ryan Schmidt wrote: On Aug 6, 2012, at 01:28, Subodh Singh wrote: I am new to SVN Repository. I need help to stop deletion of files/directory from Repo Browser, so that user can't commit if any dele

Re: How to stop delete files/directory from SVN Repo Browser

2012-08-07 Thread Ryan Schmidt
On Aug 7, 2012, at 04:00, Subodh Singh wrote: > Ryan Schmidt wrote: > >> On Aug 6, 2012, at 01:28, Subodh Singh wrote: >> >>> I am new to SVN Repository. I need help to stop deletion of >> files/directory from Repo Browser, so that user can't commit if any delete >> operation is occurred. I ca

Re: How to stop delete files/directory from SVN Repo Browser

2012-08-06 Thread Lorenz
Subodh Singh wrote: >I am new to SVN Repository. I need help to stop deletion of files/directory >from Repo Browser, so that user can't commit if any delete operation is >occurred. I can get this information using svnlook but after commit. I need >to catch any delete action before commit. I tried

Re: How to stop delete files/directory from SVN Repo Browser

2012-08-06 Thread Ryan Schmidt
On Aug 6, 2012, at 01:28, Subodh Singh wrote: > I am new to SVN Repository. I need help to stop deletion of files/directory > from Repo Browser, so that user can’t commit if any delete operation is > occurred. I can get this information using svnlook but after commit. I need > to catch any

Re: How to stop delete files/directory from SVN Repo Browser

2012-08-05 Thread Thorsten Schöning
Guten Tag Subodh Singh, am Montag, 6. August 2012 um 08:28 schrieben Sie: > I need > to catch any delete action before commit. I tried it using svn hooks but not > able to do so. What did you do and what didn't work? Mit freundlichen Grüßen, Thorsten Schöning -- Thorsten Schöning E-Mail

How to stop delete files/directory from SVN Repo Browser

2012-08-05 Thread Subodh Singh
Hi, I am new to SVN Repository. I need help to stop deletion of files/directory from Repo Browser, so that user can't commit if any delete operation is occurred. I can get this information using svnlook but after commit. I need to catch any delete action before commit. I tried it using svn hoo