On Mon, 2007-06-04 at 10:28 -0600, Paul Martz wrote: > While we're talking about SVN properties, I'll repeat my request to set the > svn:eol-style property to 'native' on all the CMakeLists.txt files. This > would really make it easier for Windows users to view and modify the > CMakeLists.txt files. > > As far as I know, this will need to be set on each file individually with > svn propset, probably easy to automate with a script. Setting autoprops in > the SVN server configuration file to set this property for *.txt files would > be a good solution for future additions.
This would be pretty easy: for F in $(find . -name CMakeLists.txt); do svn ps svn:eol-style native $F done ...but I wonder, why stop there? I think with a bit of testing, I could provide Robert with a proper ~/.subversion/config file that would automatically set this on all of our source files and set the ignores on the directories that he adds. > Thanks, > -Paul > > > > -----Original Message----- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] On Behalf Of > > Jeremy L. Moles > > Sent: Monday, June 04, 2007 9:32 AM > > To: osg users > > Subject: [osg-users] OSG Source & svn:ignore > > > > Robert, > > > > CMake currently creates upwards of about 150 files inside of > > the subversion project that are not known about or understood > > by it in any way (they're all temporary files). This can make > > it really difficult (in my opinion) to use many of the svn > > commands interactively or get a "feel" for the state of your > > current checkout. > > > > Would you be opposed to introducing "svn:ignore" properties > > for all of these files? It's not an uncommon or taboo > > practice; in fact, the feature is there to be used in this > > exact manner. Many people seem to have a kind of prejudice > > against it's use, but I believe it's only because they don't > > understand how it works. :) > > > > IF SO, I've taken the liberty of creating a very small Bash > > script that you can run while inside of the project that will > > do all the "svn ps svn:ignore" commands for you in the proper > > way (I tested it many times here). If not, well, maybe we can > > come up with some other of divorcing CMake's (necessary) > > bloat from the OSG source, if that kind of thing is important... > > > > _______________________________________________ > osg-users mailing list > osg-users@openscenegraph.net > http://openscenegraph.net/mailman/listinfo/osg-users > http://www.openscenegraph.org/ > _______________________________________________ osg-users mailing list osg-users@openscenegraph.net http://openscenegraph.net/mailman/listinfo/osg-users http://www.openscenegraph.org/