Re: SVN commit behaviour not consistent with other commands (such as delete or add)

2012-02-22 Thread Ryan Schmidt
On Feb 22, 2012, at 16:10, Evan Wee wrote: > However, committing with * does not work: The asterisk is interpreted by your shell; Subversion has no opportunity to see that you typed an asterisk.

Re: SVN commit behaviour not consistent with other commands (such as delete or add)

2012-02-22 Thread Blair Zajac
On 02/22/2012 02:20 PM, Konstantin Kolinko wrote: 2012/2/23 Evan Wee: Strangely, other commands with * used will work, such as svn delete, svn add, etc. Even svn commit * will work somewhat as it commits the modified and added files, but not the deleted ones. I had a discussion with others and

Re: SVN commit behaviour not consistent with other commands (such as delete or add)

2012-02-22 Thread Konstantin Kolinko
2012/2/23 Evan Wee : > > Strangely, other commands with * used will work, such as svn delete, svn > add, etc. Even svn commit * will work somewhat as it commits the modified > and added files, but not the deleted ones. > > I had a discussion with others and their explanation is that the character *

SVN commit behaviour not consistent with other commands (such as delete or add)

2012-02-22 Thread Evan Wee
Hi, This may or may not be an issue, since it could be how the OS interprets the command. Explanation as follows. Discovered an issue with running svn commit: Merge is successful [evanw@laptop] /Users/evanw/misc/rd/ => svn merge http://svn/repo/tools/release_dashboard/trunk --dry-run --- Merg

Re: commit hooks - is there a hook which is called after commit even if its not successful

2012-02-22 Thread Philip Martin
Mark Phippard writes: > On Wed, Feb 22, 2012 at 2:49 PM, Torsten Krah > wrote: > >> If commit can not fail - for which ever reason - why the doc does state that >> the hook does only run if the commit is actual successful? >> So it is possible to fail or not? > > Commits can fail. A common reas

Re: commit hooks - is there a hook which is called after commit even if its not successful

2012-02-22 Thread Mark Phippard
On Wed, Feb 22, 2012 at 2:49 PM, Torsten Krah wrote: > If commit can not fail - for which ever reason - why the doc does state that > the hook does only run if the commit is actual successful? > So it is possible to fail or not? Commits can fail. A common reason would be that a file included in

Re: commit hooks - is there a hook which is called after commit even if its not successful

2012-02-22 Thread Andy Levy
On Wed, Feb 22, 2012 at 14:49, Torsten Krah wrote: > Am 22.02.2012 18:27, schrieb Ryan Schmidt: > >> >> On Feb 22, 2012, at 09:23, Torsten Krah wrote: >> >>> the http://svnbook.red-bean.com/en/1.6/svn.ref.reposhooks.html book >>> tells about the various post-* hooks. >>> But those one are called o

Re: commit hooks - is there a hook which is called after commit even if its not successful

2012-02-22 Thread Torsten Krah
Am 22.02.2012 18:27, schrieb Ryan Schmidt: On Feb 22, 2012, at 09:23, Torsten Krah wrote: the http://svnbook.red-bean.com/en/1.6/svn.ref.reposhooks.html book tells about the various post-* hooks. But those one are called on "successfull" operations. Whats the way to implement a hook, which is

Re: Subversion restore

2012-02-22 Thread Les Mikesell
On Wed, Feb 22, 2012 at 11:52 AM, svenk1 wrote: > > Les - It is an older Centos 4.8 install.  I ran yum install subversion and > copied the repository directory to the new server.  I tried the import > because I didnt have dumps.  I don't know what I am doing. > I tried the dump but got the same m

Re: hot-backup.py

2012-02-22 Thread Ryan Schmidt
On Feb 22, 2012, at 11:56, Salari, Kamran wrote: > I am not running a server right now. Our repository is on another computer > and I access it through a network mapped drive. Please stop doing that immediately and set up a proper server.

RE: hot-backup.py

2012-02-22 Thread Salari, Kamran
Hi Mark, I am not running a server right now. Our repository is on another computer and I access it through a network mapped drive. Thanks, Kamran -Original Message- From: Mark Phippard [mailto:markp...@gmail.com] Sent: Wednesday, February 22, 2012 9:57 AM To: Salari, Kamran Cc: users

Re: Subversion restore

2012-02-22 Thread David Chapman
On 2/22/2012 9:52 AM, svenk1 wrote: Les - It is an older Centos 4.8 install. I ran yum install subversion and copied the repository directory to the new server. I tried the import because I didnt have dumps. I don't know what I am doing. I tried the dump but got the same message svnadmin dump

Re: hot-backup.py

2012-02-22 Thread Mark Phippard
On Tue, Feb 21, 2012 at 7:27 PM, Salari, Kamran wrote: > I am new to Subversion, and I am using TortoiseSVN-1.7.3 and > Slik-Subversion-1.7.2 on my XP system (Service Pack 3).  I would like to > know if there is a Windows version of “hot-backup.py” which I can use.   It > appears the script in “t

Re: Subversion restore

2012-02-22 Thread Mark Phippard
On Wed, Feb 22, 2012 at 12:11 PM, svenk1 wrote: > > Hello.  I've read through some threads, but it seems that the scenarios > assume I have valid repo dumps.  I do not. > > What I have is a new server, and the backups of the old server.  I installed > what I can only assume is a much newer version

Re: Subversion restore

2012-02-22 Thread svenk1
Les - It is an older Centos 4.8 install. I ran yum install subversion and copied the repository directory to the new server. I tried the import because I didnt have dumps. I don't know what I am doing. I tried the dump but got the same message svnadmin dump /svn svn: Expected version '3' of rep

RE: hot-backup.py

2012-02-22 Thread Salari, Kamran
Thanks for responding to my question. I changed the paths for svnlook.exe and svnadmin.exe to their absolute paths. I used the following command, "hot-backup.py --help", to check the program. I got the following error ---

Re: Issue report: subversion 1.7.2 windows command line client cannot copy URL -> WC if URL contains externals

2012-02-22 Thread Paul Burba
On Wed, Feb 22, 2012 at 12:05 PM, Philip Martin wrote: > Paul Burba writes: > >> Index: subversion/libsvn_client/copy.c >> === >> --- subversion/libsvn_client/copy.c   (revision 1292379) >> +++ subversion/libsvn_client/copy.c   (work

Re: commit hooks - is there a hook which is called after commit even if its not successful

2012-02-22 Thread Ryan Schmidt
On Feb 22, 2012, at 09:23, Torsten Krah wrote: > the http://svnbook.red-bean.com/en/1.6/svn.ref.reposhooks.html book > tells about the various post-* hooks. > But those one are called on "successfull" operations. > Whats the way to implement a hook, which is called after commit - it > does not ma

Re: Subversion restore

2012-02-22 Thread Les Mikesell
On Wed, Feb 22, 2012 at 11:11 AM, svenk1 wrote: > > Hello.  I've read through some threads, but it seems that the scenarios > assume I have valid repo dumps.  I do not. > > What I have is a new server, and the backups of the old server.  I installed > what I can only assume is a much newer version

Re: Subversion restore

2012-02-22 Thread Dave Huang
On 2/22/2012 11:11 AM, svenk1 wrote: Hello. I've read through some threads, but it seems that the scenarios assume I have valid repo dumps. I do not. What I have is a new server, and the backups of the old server. I installed what I can only assume is a much newer version of subversion on the

Subversion restore

2012-02-22 Thread svenk1
Hello. I've read through some threads, but it seems that the scenarios assume I have valid repo dumps. I do not. What I have is a new server, and the backups of the old server. I installed what I can only assume is a much newer version of subversion on the new server. I copied my repo directo

Re: Issue report: subversion 1.7.2 windows command line client cannot copy URL -> WC if URL contains externals

2012-02-22 Thread Philip Martin
Paul Burba writes: > Index: subversion/libsvn_client/copy.c > === > --- subversion/libsvn_client/copy.c (revision 1292379) > +++ subversion/libsvn_client/copy.c (working copy) > @@ -1519,6 +1519,17 @@ > ctx->notify_baton

Re: Issue report: subversion 1.7.2 windows command line client cannot copy URL -> WC if URL contains externals

2012-02-22 Thread Paul Burba
On Wed, Feb 22, 2012 at 11:42 AM, Paul Burba wrote: > Even with this fix I'm still seeing odd behavior post-copy (the > following example uses a WC-to-WC copy, but the same problem occurs > with a URL-to-WC copy): . . > To fix this we need to remove the external via the OS then update to > restor

RE: Issue report: subversion 1.7.2 windows command line client cannot copy URL -> WC if URL contains externals

2012-02-22 Thread Bert Huijben
> -Original Message- > From: Paul Burba [mailto:ptbu...@gmail.com] > Sent: woensdag 22 februari 2012 17:42 > To: Nico Kadel-Garcia > Cc: Philip Martin; C. Michael Pilato; Subversion Development; Alexey 0 > Moudrick; users@subversion.apache.org > Subject: Re: Issue report: subversion 1.7.2

Re: Issue report: subversion 1.7.2 windows command line client cannot copy URL -> WC if URL contains externals

2012-02-22 Thread Paul Burba
On Fri, Feb 17, 2012 at 12:46 PM, Nico Kadel-Garcia wrote: > On Fri, Feb 17, 2012 at 10:54 AM, Philip Martin > wrote: >> Paul Burba writes: >> >>> I'm able to replicate this failure on my Windows box with my own >>> builds of trunk@1245285, 1.7.0 and 1.7.3.  Alexey's script works as >>> expected

commit hooks - is there a hook which is called after commit even if its not successful

2012-02-22 Thread Torsten Krah
Hi, the http://svnbook.red-bean.com/en/1.6/svn.ref.reposhooks.html book tells about the various post-* hooks. But those one are called on "successfull" operations. Whats the way to implement a hook, which is called after commit - it does not matter if successful or failed - the hook must be able t

Re: svn:externals parser API

2012-02-22 Thread Daniel Shahaf
Nikolaus Demmel wrote on Wed, Feb 22, 2012 at 14:22:26 +0100: > > Am 22.02.2012 um 11:16 schrieb Daniel Shahaf: > > > Daniel Shahaf wrote on Wed, Feb 22, 2012 at 11:31:00 +0200: > >> Stefan Sperling wrote on Wed, Feb 22, 2012 at 00:08:35 +0100: > >>> On Tue, Feb 21, 2012 at 11:50:54PM +0100, Stef

Re: svn:externals parser API

2012-02-22 Thread Nikolaus Demmel
Am 22.02.2012 um 11:16 schrieb Daniel Shahaf: > Daniel Shahaf wrote on Wed, Feb 22, 2012 at 11:31:00 +0200: >> Stefan Sperling wrote on Wed, Feb 22, 2012 at 00:08:35 +0100: >>> On Tue, Feb 21, 2012 at 11:50:54PM +0100, Stefan Sperling wrote: I think svn_wc_parse_externals_description3() shou

Re: svn:externals parser API

2012-02-22 Thread Daniel Shahaf
Daniel Shahaf wrote on Wed, Feb 22, 2012 at 11:31:00 +0200: > Stefan Sperling wrote on Wed, Feb 22, 2012 at 00:08:35 +0100: > > On Tue, Feb 21, 2012 at 11:50:54PM +0100, Stefan Sperling wrote: > > > I think svn_wc_parse_externals_description3() should do what you need. > > > Does this help you? > >

Re: svn:externals parser API

2012-02-22 Thread Daniel Shahaf
Stefan Sperling wrote on Wed, Feb 22, 2012 at 00:08:35 +0100: > On Tue, Feb 21, 2012 at 11:50:54PM +0100, Stefan Sperling wrote: > > I think svn_wc_parse_externals_description3() should do what you need. > > Does this help you? > > > > The function is mapped in the python bindings: > > > > >>> im

Re: hot-backup.py

2012-02-22 Thread Stephen Butler
On Feb 22, 2012, at 3:43 , Nico Kadel-Garcia wrote: > On Tue, Feb 21, 2012 at 7:27 PM, Salari, Kamran > wrote: > Hi everyone, > > > I am new to Subversion, and I am using TortoiseSVN-1.7.3 and > Slik-Subversion-1.7.2 on my XP system (Service Pack 3). I would like to know > if there is a Wi