Re: Folder-based properties

2011-02-17 Thread Nico Kadel-Garcia
On Tue, Feb 15, 2011 at 12:33 PM, Greg Long wrote: > Hi, > I am supporting a Subversion repository that has a some interesting > requirements. > >  - Log message minimum length. >  - Files in release directories must not be changed or deleted. >  - Files in template directories must not be copied.

Re: Folder-based properties

2011-02-17 Thread Thorsten Schöning
Guten Tag Greg Long, am Mittwoch, 16. Februar 2011 um 20:09 schrieben Sie: > The files are basically csv files. The software that is used to open > them will make random (and innocuous) changes to one of its internal > columns. > So every time the software is run, the files are marked as changed

Re: Folder-based properties

2011-02-16 Thread Greg Long
2011/2/16 Thorsten Schöning : > Guten Tag Greg Long, > am Mittwoch, 16. Februar 2011 um 13:15 schrieben Sie: > >> I think you misunderstand. It is OK for all authorized users to commit >> releases. What I am trying to accomplish is to make all files in a >> working copy of a release branch read-onl

Re: Folder-based properties

2011-02-16 Thread Thorsten Schöning
Guten Tag Greg Long, am Mittwoch, 16. Februar 2011 um 13:15 schrieben Sie: > I think you misunderstand. It is OK for all authorized users to commit > releases. What I am trying to accomplish is to make all files in a > working copy of a release branch read-only. Just for my interest, but what is

Re: Folder-based properties

2011-02-16 Thread Greg Long
2011/2/16 Thorsten Schöning : > Guten Tag Greg Long, > am Dienstag, 15. Februar 2011 um 18:33 schrieben Sie: > >>  - Files in release directories must not be changed or deleted. >>  - Files in template directories must not be copied.  They should be >>    extracted instead. > > Doesn't this sound l

Re: Folder-based properties

2011-02-16 Thread Thorsten Schöning
Guten Tag Greg Long, am Dienstag, 15. Februar 2011 um 18:33 schrieben Sie: > - Files in release directories must not be changed or deleted. > - Files in template directories must not be copied. They should be >extracted instead. Doesn't this sound like it should be handled with per directo

Re: Folder-based properties

2011-02-15 Thread Kevin Grover
You could create a custom property on the directory (svn ps glong:released 'WHATEVER INFO YOU WANT') and then and have a pre-commit hook that looks for the present of that property and refuses commits to those directories. You could also set attributes to read-only, but if they can't commit, it re

Folder-based properties

2011-02-15 Thread Greg Long
Hi, I am supporting a Subversion repository that has a some interesting requirements. - Log message minimum length. - Files in release directories must not be changed or deleted. - Files in template directories must not be copied. They should be extracted instead. These I have all dealt wi