Re: Looking into using Subversion

2013-11-18 Thread Chris Shelton
I would suggest looking at the SVN::Notify::Mirror perl module: http://search.cpan.org/~jpeacock/SVN-Notify-Mirror-0.040/lib/SVN/Notify/Mirror.pm It includes a Perl script that is intended for using within a post-commit hook script to perform updates of a working copy after each commit. I have be

Re: Have an old SVN 1.1 DB corruption issue and need some help

2013-08-16 Thread Chris Shelton
Dana, This page of the subversion book sounds like it might be helpful in your situation: http://subversion.apache.org/faq.html#wedged-repos I am sure that switching to a FSFS repository data store with your new system is advisable. chris On Fri, Aug 16, 2013 at 1:37 PM, Dana Epp wrote: > I

Re: backlogging with subversion?

2013-04-29 Thread Chris Shelton
Trac must be installed on to the same machine that serves your subversion repository. That should simplify your decision a bit. chris On Mon, Apr 29, 2013 at 12:00 PM, Ryan Tarrant wrote: > Thanks! I'm starting to get the Trac setup on my windows client, but would > it make more sense to put t

Re: svnadmin

2012-09-07 Thread Chris Shelton
John On Fri, Sep 7, 2012 at 3:47 PM, John Maher wrote: > Is svnadmin create limited to creating a local repository? Yes. > If not then how do you use it for a URL? You don't. > If so then is there a command for creating a repository via an URL? Or > is this impossible? It is impossible to c

Re: Request for thoughts on working copy enhancement request

2011-12-21 Thread Chris Shelton
Randon, On Wed, Dec 21, 2011 at 3:10 PM, Randon Spackman < randon.spack...@hotdocs.com> wrote: > One of my common use cases for subversion is to want to split my changes > into two separate commits. In the past, I would do the following: > > ** ** > > **1) **Check out > > **2)

Re: Logging repository accesses other than commits

2011-04-01 Thread Chris Shelton
Eric, On Fri, Apr 1, 2011 at 4:32 PM, Eric wrote: > > Is there a way to maintain a log of accesses to the repository other than > commits?  Basically anything that results in incrementing the revision number > gets logged, but how do I log the event when a user downloads or checks out > someth

Re: add * ignores new files in subdirectories.

2010-08-27 Thread Chris Shelton
David, On Fri, Aug 27, 2010 at 3:59 PM, David H wrote: > > As a new user it was my expectation that 'svn add *' called from within the > root > of my version-controlled root directory would result in *all* changes that > had been > made within the file system to be scheduled for inclusion on th

Re: viewing svn logs?

2010-08-06 Thread Chris Shelton
Tom, On Fri, Aug 6, 2010 at 11:58 AM, Tom Cruickshank wrote: > Preferably real-time (or scheduled). > > ie, file(s) get added/committed/updated, etc to the svn server, and viewer > automatically displays the latest entries. > > As long as each piece of information is identified (ie. Revision, Com

Re: Perl can't find my libraries when run via the subversion post-commit script

2010-03-05 Thread Chris Shelton
Craig, On Fri, Mar 5, 2010 at 9:52 AM, Craig Thayer wrote: > Thanks again David. > > The reason for the post-commit hook is to pull certain files out of > Subversion and write them to our server. For example, if > tools/perl/trunk/lib/foo.pm is updated we want it to be copied to > /usr/lib/per

Re: Perl can't find my libraries when run via the subversion post-commit script

2010-03-04 Thread Chris Shelton
Craig, On Thu, Mar 4, 2010 at 12:20 PM, Craig Thayer wrote: > Yes, I have tested the script on the Subversion server and it runs just fine. >  And I agree it is obvious that Perl is including the directories to my > libraries (so the use lib statements are working as designed as you stated).  

Re: Hi ; how do i get Subversion to archive a python *.pyc file

2010-01-22 Thread Chris Shelton
Robert, On Fri, Jan 22, 2010 at 6:23 PM, Robert Somerville wrote: > > Subversion thinks it is a binary file and ignores it ... I suspect that this is caused by the global ignore settings, as I ran into this issue myself recently. Try: svn --no-ignore add myfile.pyc chris