Known Issues in Subversion!!

2011-02-07 Thread Waseem Bokhari
Greetings! We have just replaced Subversion with VSS and pretty much conscious about Subversion known issues/Problems; Because we have a Huge databases on SVN e.g. 1000+ GBs. Please share your precautions while administrating Subversion and any while on client side.

Re: Cannot get the revision information from the scm repository :

2011-02-07 Thread Johan Corveleyn
Please do not cross-post between users@ and dev@. This is really a usage question (not about the development of subversion), so belongs on users@. [ I've left dev@ in cc for this one reply, please drop it from further replies. ] More below ... On Mon, Feb 7, 2011 at 6:45 AM, Vishal Jain

What version of Apache comes with Subversion Edge?

2011-02-07 Thread Andy Levy
I submitted this to info@CollabNet last month, but have not received a response so I'm hoping someone on the list here has this information. I'm currently using Collabnet Subversion Server 1.5.2 on Windows. Due to security vulnerabilities with Apache 2.2.8, I'm being asked to upgrade Apache to at

Re: What version of Apache comes with Subversion Edge?

2011-02-07 Thread Mark Phippard
On Mon, Feb 7, 2011 at 8:56 AM, Andy Levy andy.l...@gmail.com wrote: I submitted this to info@CollabNet last month, but have not received a response so I'm hoping someone on the list here has this information. I'm currently using Collabnet Subversion Server 1.5.2 on Windows. Due to security

Cannot get the revision information from the scm repository :

2011-02-07 Thread Vishal Jain
Hi, I am trying to build my project on Eclipse, netbeans as well as on command line I am executing mvn install I am getting following error message : Provider message: The svn command failed. Command output: svn: This client is too old to work with working copy '.'. You need to get a newer

TR: Problem upgrading to Subversion 1.6.15 on Apache 2.0.64 / or on Apache 2.2.17

2011-02-07 Thread RIBEIRO Philippe (i-BP)
Hello, Our machine is a Windows Server with : - Windows Server 2003 SP2 - Subversion 1.4.3 (installed with svn-1.4.3-setup.exe) - Apache 2.0.59 (installed with apache_2.0.59-win32-x86-no_ssl.msi) And it works very well ! I want to upgrade to last stable version of Subversion (1.6.15) and

Re: Problem upgrading to Subversion 1.6.15 on Apache 2.0.64 / or on Apache 2.2.17

2011-02-07 Thread Mark Phippard
Install CollabNet Subversion Edge. http://www.open.collab.net/downloads/subversion/ It will setup a working Apache + ViewVC server and give you a web UI for managing it. On Mon, Feb 7, 2011 at 8:47 AM, RIBEIRO Philippe (i-BP) philippe.ribe...@i-bp.banquepopulaire.fr wrote: Hello, Our

Re: Cannot get the revision information from the scm repository :

2011-02-07 Thread Thorsten Schöning
Guten Tag Vishal Jain, am Montag, 7. Februar 2011 um 06:45 schrieben Sie: svn: This client is too old to work with working copy '.'. You need to get a newer Subversion client, or to downgrade this working copy. See http://subversion.tigris.org/faq.html#working-copy-format-change for details.

linux subversion checkout hangs since server was virtualized

2011-02-07 Thread li...@joerg-buchberger.de
Hi all,   just migrated our subversion server from physical machine into a VM guest (VM host is citrix xen server).   Complete access from Windows clients is still fine now. Update, Log and Commit are fine from linux command line as well, but not fresh checkouts.    The hanging client is a 1.6.12

RE: Problem upgrading to Subversion 1.6.15 on Apache 2.0.64 / or on Apache 2.2.17

2011-02-07 Thread Cooke, Mark
-Original Message- From: RIBEIRO Philippe (i-BP) Sent: 07 February 2011 13:47 To: users@subversion.apache.org Subject: TR: Problem upgrading to Subversion 1.6.15 on Apache 2.0.64 / or on Apache 2.2.17 Hello, Our machine is a Windows Server with : - Windows Server 2003 SP2

Re: linux subversion checkout hangs since server was virtualized

2011-02-07 Thread Jörg Buchberger
​ Stefan Sperling s...@elego.de hat am 7. Februar 2011 um 16:14 geschrieben: On Mon, Feb 07, 2011 at 04:04:12PM +0100, li...@joerg-buchberger.de wrote: Hi all, just migrated our subversion server from physical machine into a VM guest (VM host is citrix xen server). Complete

Re: What version of Apache comes with Subversion Edge?

2011-02-07 Thread Andy Levy
On Mon, Feb 7, 2011 at 09:09, Mark Phippard markp...@gmail.com wrote: On Mon, Feb 7, 2011 at 8:56 AM, Andy Levy andy.l...@gmail.com wrote: I submitted this to info@CollabNet last month, but have not received a response so I'm hoping someone on the list here has this information. I'm currently

SVN post-commit hook: shadow folders

2011-02-07 Thread Schneider, Wolf
We are trying to replicate the ShadowFolders feature of VSS, whereby each checked-in file that needs it gets mirrored to a reference directory. To do this, I wrote the following script, which works well except for the actual file copy - svn copy complains about the target folder not being a

RE: SVN post-commit hook: shadow folders

2011-02-07 Thread Schneider, Wolf
Ryan wrote: rem Copy the file to the indicated shadow folder svn copy -r %REVISION% %REPURL%/%FPATH% %FOLDER%/%FNAME% I am not familiar with VSS or what exactly is meant by shadow folder... A folder into which a copy of file being checked into the VSS repository is also made. In Visual

Re: SVN post-commit hook: shadow folders

2011-02-07 Thread Ryan Schmidt
On Feb 7, 2011, at 17:33, Schneider, Wolf wrote: Based on the above log, %FOLDER% does not appears to be a URL to a Subversion repository... Is it a path to a Subversion working copy? Correct -- we are trying to make a copy in a network drive folder of the file(s) being checked into the

RE: SVN post-commit hook: shadow folders

2011-02-07 Thread Schneider, Wolf
I wrote: To do this, I wrote the following script, which works well except for the actual file copy - svn copy complains about the target folder not being a directory, although it most certainly is. My questions are a) what is wrong with my use of svn copy, and b) is there perhaps a better

RE: SVN post-commit hook: shadow folders

2011-02-07 Thread Schneider, Wolf
Sorry, missed the CRs: rem Extract the file to the indicated shadow folder svn export -r %REVISION% %REPURL%/%FPATH% %FOLDER%/%FNAME% --force exit /b == wolf This email and any attachments are intended only for the named recipient

Re: SVN post-commit hook: shadow folders

2011-02-07 Thread Ryan Schmidt
On Feb 7, 2011, at 19:08, Schneider, Wolf wrote: There _is_ a better way, using the svn export command (using svn cat only works for non-binary files) svn cat ought to work fine for all files.