Re: AW: AW: AW: svnlook proplist & unicode characters

2014-12-17 Thread Branko Čibej
On 17.12.2014 21:48, Matthias Ludwig wrote: > There is an error in this string "//a//o\u0308". > It should be "/a/o\u0308". But this does not change the behaviour. I've > tried it again, the problem persists. > > / -> slash for path separator > a -> name of subfolder > / -> slash for path separator

Re: Kernel CPU load on Apache/2.4.10 with SVN 1.8.10 (r1615264)

2014-12-17 Thread Mohsin
On which OS you are running svn ? Linux or Solaris ? Cheers, Mohsin -- View this message in context: http://subversion.1072662.n5.nabble.com/Kernel-CPU-load-on-Apache-2-4-10-with-SVN-1-8-10-r1615264-tp191281p191293.html Sent from the Subversion Users mailing list archive at Nabble.com.

AW: svnlook proplist & unicode characters

2014-12-17 Thread Matthias Ludwig
I've solved the problem for myself with a workaround: I use "svn proplist" instead of "svnlook proplist". The unicode chararacters gets URL-encoded. This works. Thank you very much for your suport! > -Ursprüngliche Nachricht- > Von: Matthias Ludwig [mailto:matthias.lud...@stl-softwar

AW: AW: AW: svnlook proplist & unicode characters

2014-12-17 Thread Matthias Ludwig
There is an error in this string "//a//o\u0308". It should be "/a/o\u0308". But this does not change the behaviour. I've tried it again, the problem persists. / -> slash for path separator a -> name of subfolder / -> slash for path separator o -> for "o" \u -> escaping: here comes a UTF-16 code in

Re: AW: AW: svnlook proplist & unicode characters

2014-12-17 Thread Philip Martin
"Matthias Ludwig" writes: > run(pathToSvn, pathToTest, repo, > env,pathToSvn+"\\svnlook","proplist",repo.getAbsolutePath(),"//a//o\u0308"); I'm not a Java or Windows expert. What is the encoding of "//a//o\u0308" is it UTF-8 or UTF-16? If it is UTF-16 whe

Re: Kernel CPU load on Apache/2.4.10 with SVN 1.8.10 (r1615264)

2014-12-17 Thread Charlie Smurthwaite
On 17/12/14 09:25, Charlie Smurthwaite wrote: Hi, I am running an SVN HTTP server using Apache/2.4.10 with SVN 1.8.10 (r1615264) and I am often seeing very high kernel CPU load. The CPU time seems to be consumed in the kernel by "_raw_spin_lock", with the httpd processes spending much of th

AW: AW: svnlook proplist & unicode characters

2014-12-17 Thread Matthias Ludwig
> The most common way for decomposed characters to find their way into the > repository is by using an OSX-based Subversion client to create the paths. You've right. What probably happened is that a person with an iMac created the document wich was checked in by an non OSX user. Maybe we just ha

AW: AW: svnlook proplist & unicode characters

2014-12-17 Thread Matthias Ludwig
I extendes my little test program (1) read the dir name from OS again and print the chars in hex format (2) list the svn folder via "svn list" and print the chars in hex format The java routine is attached. The output (see belos) shows that the file ist correctly written to disc and is correctly

Re: Error while committing

2014-12-17 Thread Eric Johnson
Try executing the script directly from the console. You'll have to approximate the environment that Subversion has when invoking your script. Perform the action as the correct user (apache?), with the correct working directory. If that works, then delete all the environment variables, and try again

Kernel CPU load on Apache/2.4.10 with SVN 1.8.10 (r1615264)

2014-12-17 Thread Charlie Smurthwaite
Hi, I am running an SVN HTTP server using Apache/2.4.10 with SVN 1.8.10 (r1615264) and I am often seeing very high kernel CPU load. The CPU time seems to be consumed in the kernel by "_raw_spin_lock", with the httpd processes spending much of their time waiting on calls to "futex". Here's

Re: Possible bug in error message E160020

2014-12-17 Thread Philip Martin
Benoit de Biolley writes: > Do you will create an "improvement" in the issue tracker ? It is now fixed on trunk. -- Philip Martin | Subversion Committer WANdisco // *Non-Stop Data*

RE: Error while committing

2014-12-17 Thread Somashekarappa, Anup (CWM-NR)
Hi, Same script is working fine for other repository. Thanks & Regards, Anup T S From: Branko Čibej [mailto:br...@wandisco.com] Sent: 2014, December, 17 5:59 AM To: users@subversion.apache.org Subject: Re: Error while committing On 17.12.2014 11:46, Somasheka

Re: AW: svnlook proplist & unicode characters

2014-12-17 Thread Branko Čibej
On 17.12.2014 11:27, Philip Martin wrote: > Your mail included svnlook: E160013: Pfad »/a/o¨« existiert nicht and > what I see is 'o' '0xC2' '0xA8' so the decomposed character U+0308 has > been converted to U+00A8. U+0308 is not a decomposed character; it is the combining diaeresis mark. U+00A8 is

Re: Error while committing

2014-12-17 Thread Branko Čibej
On 17.12.2014 11:46, Somashekarappa, Anup (CWM-NR) wrote: > > > Hi, > > For one of the repository we are getting the below error while committing. > > But the same script is working fine for other repositories. > > I have given full permission ( chmod 777 pre-commit ) to the script > but

Error while committing

2014-12-17 Thread Somashekarappa, Anup (CWM-NR)
Hi, For one of the repository we are getting the below error while committing. But the same script is working fine for other repositories. I have given full permission ( chmod 777 pre-commit ) to the script but it is not getting executed. May I know what could be the reason? Thanks &

Re: AW: svnlook proplist & unicode characters

2014-12-17 Thread Philip Martin
"Matthias Ludwig" writes: > run(pathToSvn, pathToTest, repo, > env,pathToSvn+"\\svnadmin","create",repo.getAbsolutePath()); > run(pathToSvn, pathToTest, repo, > env,pathToSvn+"\\svn","checkout",url,wc.getAbsolutePath()); > >