Re: Check-out fails with LANG=C

2013-07-17 Thread Michael Pruemm
Daniel Shahaf daniel.shahaf.name> writes: > > Michael Pruemm wrote on Tue, Jul 09, 2013 at 16:00:38 +0200: > > Note: instead of the error message I got a core dump. That happened before, > > too. The check-out went about as far as in the other failing cases. > > I su

Re: Why so many open connections?

2013-07-11 Thread Michael Pruemm
Branko Čibej wandisco.com> writes: > No. Pools encapsulate all resource management -- including file handles > and sockets (connections), not only allocated memory. > > This document explains how pools should be used: > > http://subversion.apache.org/docs/community-guide/conventions.html#apr-po

Why so many open connections?

2013-07-11 Thread Michael Pruemm
I'm trying to learn to use the svn api via the Python swig bindings for 1.8.0. So I wrote some naive code that calls svn_client_log5 and in the callback does something like this: foreach file in changed_paths: svn_client_ls3() The pool passed to svn_client_ls3 is the one passed to the

Re: Check-out fails with LANG=C

2013-07-09 Thread Michael Pruemm
On Tue, Jul 9, 2013 at 7:11 PM, Stefan Sperling wrote: > Can you please file a new issue pointing to this thread? Done. Issue 4391. - Michael

Re: Check-out fails with LANG=C

2013-07-09 Thread Michael Pruemm
For file:// access I had to mount the repository via NFS, and access is much slower. LANG=$l1 time svn co file:///... -r244060 C8-32-$l1-file C8-32-en_US.UTF-8-file 32.32user 21.51system 5:36.36elapsed 16%CPU (0avgtext+0avgdata 519408maxresident)k 1101632inputs+1799224outputs (4major+36982minor)p

Re: Check-out fails with LANG=C

2013-07-09 Thread Michael Pruemm
On Tue, Jul 9, 2013 at 3:44 PM, Stefan Sperling wrote: > Michael, does this only happen with ra_serf? Can you please test > with svn://, or svn+ssh://, or file:// access? > Here are the results with 32-bit 1.8.0 using svn+ssh: LANG=$l1 time svn co svn+ssh://... -r244060 C8-32-$l1-svnssh 17.71us

Re: Check-out fails with LANG=C

2013-07-09 Thread Michael Pruemm
On Tue, Jul 9, 2013 at 3:24 PM, Andreas Krey wrote: > svn wants to convert file names in the repository to filename > on the local disk by using the locally set LANG. This is a > rather stupid idea, but that is the way it is. > Yes, I know. The whole point is that with 1.7.10 it works, but with

Check-out fails with LANG=C

2013-07-09 Thread Michael Pruemm
When checking out one of the subsystems from our repository, the check-out always fails for one of my colleagues with the following error messages after about 2/3 of the files: svn: E155009: Failed to run the WC DB work queue associated with '$HOME/C8-32-C-serf/CCS/db/src', work item 9694 (file-in

Re: Bug in SVN

2013-06-14 Thread Michael Pruemm
Nikitha Annaji vayavyalabs.com> writes: > I was trying to display the log message between the dates 2013-06-13 and 2013-06-14 by the following command "svn log -r {2013-06-14}:{2013-06-13}", if no one has committed from the mentioned date then the log should be empty but it is showing the last co

List changes in a working copy in format of "svn log -v"?

2010-08-26 Thread Michael Pruemm
If I need to create a working copy with specific features and bug fixes, I may backdate certain directories, or even use specific branches for directories: svn update -r 1234 dir1 svn switch http://host/branches/x...@1122 dir2 If I then create a tag from my working copy svn copy . http:

Re: svn checkout - special characters in file name are not encoding properly

2010-08-12 Thread Michael Pruemm
Olivier Sannier wrote: Csaba Raduly wrote: On Wed, Aug 11, 2010 at 4:49 PM, Michael Pruemm wrote: But don't forget that different platforms may use different UTF-8 encodings for the same filename. Huh? There's only one UTF-8 encoding for each Unicode code point. Are you t

Re: svn checkout - special characters in file name are not encoding properly

2010-08-11 Thread Michael Pruemm
Vincent Lefevre wrote: However, I'd expect many will just assume that the user wants filenames to be encoded according to the current locale. If everybody follows this convention, there is no problem, apart from user errors during locale configuration. You're asking the user, and even all users

"svn copy" or svn:externals?

2010-08-11 Thread Michael Pruemm
We are in the process of converting our old source code repository to svn. The old repository is flat, all modules are stored on the same level. We have a build tool that, given a configuration file, checks out all modules that form an individual application and place them in an appropriate hie