Re: sasl mechanisms order

2010-07-27 Thread Victor Sudakov
Daniel Shahaf wrote: > > So we seem to have a stalemate situation. The SASL library believes > > the client should select the preferred mechanism, whereas the Subversion > > client relies on "the order suggested by the server". Brilliant. > > It would be more constructive to summarize the problem

Re: 503 Service Unavailable only for new files

2010-07-27 Thread Nikola Kotur
On Mon, 2010-07-26 at 17:08 +0200, Nikola Kotur wrote: > And there's nothing in error log. > > What could be the issue here? I finally figured out what was going on. It was .htaccess rule that said "ErrorDocument 404 /index.php". After commenting that out, Subversion stop complaining about err

How to manage the svn repository layout?

2010-07-27 Thread fantasy1215
In the svn repository, the repository directory layout now is awful, I plan to reorganize the layout, But I don't know what's risk I will take. Q1:If I move sub1 from / to sub2 directory, will the log and revision still remain under sub1? Q2:If I move sub1 from / to sub2 directory, the workcopy ne

RE: Memory Leak

2010-07-27 Thread Terry Dooher
> > I have a problem, apache is eating al my memory. It seems to allocate > the > > memory while I checkout or commit things. But then it don't > deallocate the > > memory after it is finish. Instead it just allocate more and more > until the > > memory is filled up. > > Only other known issue i

Re: How to manage the svn repository layout?

2010-07-27 Thread Ryan Schmidt
On Jul 27, 2010, at 06:51, fantasy1215 wrote: > In the svn repository, the repository directory layout now is awful, I plan > to reorganize the layout, But I don't know what's risk I will take. > Q1:If I move sub1 from / to sub2 directory, will the log and revision still > remain under sub1? The

Subversion 1.6 write-through proxy mirroring

2010-07-27 Thread Jim Lord
Hopefully you can point me in the right direction: I'm setting up a write-through proxy mirror. I can run: svnsync init --source-username svnsystem --source-password $pass --sync-username svnsystem --sync-password $pass file:///data/svn/vtest https://versiontest2.divxnetworks.com/svn/vtest

Source tree integrity with hashes

2010-07-27 Thread bigpilot
Hi, I was wondering if the SVN developers are planning something similar to Git's integrity verification feature using hashes. This is the one feature I really miss. Also, I would like to suggest the Whirlpool hash for this feature. Yeah, BigPilot!!!

RE: Subversion 1.6 write-through proxy mirroring

2010-07-27 Thread Jon Foster
Jim Lord wrote: > I'm setting up a write-through proxy mirror. I can run: > > svnsync init --source-username svnsystem --source-password $pass > --sync-username svnsystem --sync-password $pass > file:///data/svn/vtest > https://versiontest2.divxnetworks.com/svn/vtest > from the slave machine

Re: sasl mechanisms order

2010-07-27 Thread Alec Kloss
On 2010-07-27 09:14, Victor Sudakov wrote: [chop] > Thank you for having found this out. This is truly amazing. This means > that if perchance I touch a file in /usr/local/lib/sasl2/, my Kerberos > SSO can stop working? [chop] Well, that's pretty unlikely. It's moderately difficult to re-arrange

Re: sasl mechanisms order

2010-07-27 Thread Daniel Shahaf
Alec Kloss wrote on Tue, Jul 27, 2010 at 12:42:11 -0500: > I'd dread the day someone changed the Cyrus SASL Makefile and got them > installed in reverse order. Personally, I'd just assume the order is "arbitrary" and not rely on it to have any particular rule behind it.

Re: How to get the client hostname while user committing the code to the repository?

2010-07-27 Thread Nico Kadel-Garcia
On Mon, Jul 26, 2010 at 5:57 AM, Dharmaraj, Ramkumar wrote: > Hi, > > > > I need your help. > > > > I need the client host information in either pre or post-commit trigger. Good luck with that!! If you're using a single protocol of access, such as ssh+svn or HTTPS, it's conceivable that you coul

Re: How to get the client hostname while user committing the code to the repository?

2010-07-27 Thread ram kumar
Hi, We are using http protocal. Please find the server and client details below. We have to popup some window on the client machine either in pre or post commit operation. Prototype is working fine so need to know how to get the client ip adress or hostnmae in pre/post commit trigger. SVN Server

Re: How to get the client hostname while user committing the code to the repository?

2010-07-27 Thread Volker Kopetzky
Ramkumar, the client and server information is part of the HTTP header information. You could use apache's mod_rewrite to rout the call to an additional (warpper) script on the server to get this information. Could you please clarify more about what information is to be displayed and how the us