Re: OPTIONS of ... could not connect to server

2011-01-12 Thread Johan Corveleyn
On Tue, Jan 11, 2011 at 10:33 PM, Ben Kim b...@benix.tamu.edu wrote: Hi Whenever I commit, I'm getting this message. svn: Commit failed (details follow): svn: OPTIONS of 'https://svn.example.com/repos/mysite': could not connect to server (https://svn.example.com) Can anyone tell me

SVN Subversion- object level checkout

2011-01-12 Thread sourav.sroy
Hi team, We will use Tortoise SVN (Subversion) as version control system or SCM tool for our project. We are facing an issue for which we would like to get a solution. We are linking SVN to Powerbuilder 11.5. We are trying to checkout files at object level. Every .pbl file, have many files

RE: SVN Subversion- object level checkout

2011-01-12 Thread pabitra.mallick
Hi Sourav, This is one of the main problems, which we faced six months back. Then I tried to find out a solution but failed. Now you need to explore it again. Regards, Pabitra Mallick From: SOURAV ROY (WT01 - Manufacturing) Sent: Wednesday, January 12, 2011 2:28 PM To:

Postpone conflicts with ORIGINAL parts

2011-01-12 Thread Florian Weimer
I've just discovered the dc command in the interactive merge command. In my present, the ORIGINAL part is quite handy. Is there a way to include it in postponed conflicts, besides copy and paste? It seems to me that dc shows internal node numbers, not revisions and repository paths. (This is

rejected Basic challenge for one user only (Win/apache)

2011-01-12 Thread Cooke, Mark
Hello, We use TortoiseSVN from windows XP SP3 clients (required by corporate policy) to connect to repos on windows server 2003:- Apache/2.2.17 (Win32) DAV/2 mod_ssl/2.2.17 OpenSSL/0.9.8o mod_wsgi/3.3 Python/2.6.4 SVN/1.6.15 I have one single user (amongst 15 or so) who is experiencing

301 with mod_dav / https

2011-01-12 Thread fuzzy_4711
Hi, it has been frustrating for me trying to set up my public available web server to serve a svn repository also. I do not understand at all, what happens, please help. I am able to navigate with FF to https://devel.example.com/svn/test/ and see the powered by Subversion version 1.6.6 (r40053)

Re: SVN Subversion- object level checkout

2011-01-12 Thread Arwin Arni
If I understand correctly, you have a .pbl file in your repository and wish to checkout a part of it(?). As far as subversion is concerned, the .pbl file inside your repository is a single file. Even if you have a tool to parse the .pbl file, you will have to checkout the entire file and pipe

Re: SVN Subversion- object level checkout

2011-01-12 Thread Thorsten Schöning
Guten Tag sourav.s...@wipro.com, am Mittwoch, 12. Januar 2011 um 13:15 schrieben Sie: We are not able to checkout the .pbl We can check out only the folders and object level checkout is not possible as of now for us. So I wish to know if there is any other way through which we can checkout

Re: 301 with mod_dav / https

2011-01-12 Thread Jehan PROCACCIA
sorry no help, but the same problem, I can browse with firefox my repository , but on the command line I get: svn import . --username disi http://svn.it-sudparis.eu/disi/disi_pj1/; -m initial svn: Repository moved permanently to 'http://svn.it-sudparis.eu/disi/disi_pj1/'; please relocate

Re: SVN Subversion- object level checkout

2011-01-12 Thread Michael Diers
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2011-01-12 09:57, sourav.s...@wipro.com wrote: [...] We will use Tortoise SVN (Subversion) as version control system or SCM tool for our project. We are facing an issue for which we would like to get a solution. We are linking SVN to

Re: 301 with mod_dav / https

2011-01-12 Thread fuzzy_4711
Remove the lines: Alias /svn /home/svn Directory /home/svn AllowOverride all /Directory Apache is confused because you have told it you want it to serve /svn as static files located in /home/svn (the Alias directive and the Directory /home/svn

Re: 301 with mod_dav / https

2011-01-12 Thread Jehan PROCACCIA
Le 12/01/2011 15:05, fuzzy_4711 a écrit : Remove the lines: Alias /svn /home/svn Directory /home/svn AllowOverride all /Directory Apache is confused because you have told it you want it to serve /svn as static files located in /home/svn (the Alias

Re: 301 with mod_dav / https

2011-01-12 Thread Ryan Schmidt
On Jan 12, 2011, at 07:55, Jehan PROCACCIA wrote: the problem is mentioned here http://svnbook.red-bean.com/en/1.1/svn-book.html#svn-ap-b-sect-1.2.15 Let's not refer to the ancient Subversion 1.1 book anymore. The current version of the book no longer seems to have that section, but that

Re: 301 with mod_dav / https

2011-01-12 Thread Ryan Schmidt
On Jan 12, 2011, at 08:12, Jehan PROCACCIA wrote: Ryan Schmidt wrote: Remove the lines: Alias /svn /home/svn Directory /home/svn AllowOverride all /Directory Apache is confused because you have told it you want it to serve /svn as static files

Re: 301 with mod_dav / https

2011-01-12 Thread fuzzy_4711
Original-Nachricht Le 12/01/2011 15:05, fuzzy_4711 a écrit : Remove the lines: Alias /svn /home/svn Directory /home/svn AllowOverride all /Directory Apache is confused because you have told it you want it to serve /svn as static

Re: 301 with mod_dav / https

2011-01-12 Thread fuzzy_4711
On Jan 12, 2011, at 08:12, Jehan PROCACCIA wrote: Ryan Schmidt wrote: Remove the lines: Alias /svn /home/svn Directory /home/svn AllowOverride all /Directory Apache is confused because you have told it you want it to serve /svn as static files

Re: 301 with mod_dav / https

2011-01-12 Thread Jehan PROCACCIA
Le 12/01/2011 15:17, Ryan Schmidt a écrit : On Jan 12, 2011, at 08:12, Jehan PROCACCIA wrote: Ryan Schmidt wrote: Remove the lines: Alias /svn /home/svn Directory /home/svn AllowOverride all /Directory Apache is confused because you have told it you

Re: 301 with mod_dav / https

2011-01-12 Thread fuzzy_4711
Do apache needs to have RW on /var/svn/disi/* ? for now it is user svn only Yup, you got it. Put your apache user into group svn. And give those rights recursive to your repository directory. drwxrwsr-x 7 apache svn . repository/ -fuz

Re: 301 with mod_dav / https

2011-01-12 Thread Jehan PROCACCIA
Le 12/01/2011 15:46, fuzzy_4711 a écrit : Do apache needs to have RW on /var/svn/disi/* ? for now it is user svn only Yup, you got it. Put your apache user into group svn. And give those rights recursive to your repository directory. drwxrwsr-x 7 apache svn . repository/ -fuz OK,

client crash on merge --reintegrate

2011-01-12 Thread Becker, Thomas
Hello, When trying to reintegrate a branch into trunk the SVN client (version 1.6.15) crashed. It asked me to send the log file, so here it is. The server had version 1.6.5, upgrading the server to 1.6.15 didn't help. On the other hand, a client with version 1.6.12 didn't crash.

Re: 301 with mod_dav / https

2011-01-12 Thread Jehan PROCACCIA
Le 12/01/2011 15:46, fuzzy_4711 a écrit : Do apache needs to have RW on /var/svn/disi/* ? for now it is user svn only Yup, you got it. Put your apache user into group svn. And give those rights recursive to your repository directory. drwxrwsr-x 7 apache svn . repository/ -fuz I was

RE: 301 with mod_dav / https

2011-01-12 Thread Cooke, Mark
-Original Message- From: Jehan PROCACCIA [mailto:jehan.procac...@it-sudparis.eu] Sent: 12 January 2011 17:03 To: fuzzy_4...@gmx.de Cc: Ryan Schmidt; users@subversion.apache.org Subject: Re: 301 with mod_dav / https Le 12/01/2011 15:46, fuzzy_4711 a écrit : Do apache needs

Merge Failing

2011-01-12 Thread SUMNER Andrew
Sorry if anyone gets this twice - I originally mailed to users at subversion dot tigris dot org on the advice of somebody, but when I actually went to the site it suggested this mailing list. I am attempting to merge the project trunk into a branch but after nearly 10 minutes it fails with the

Re: 301 with mod_dav / https

2011-01-12 Thread Nico Kadel-Garcia
On Wed, Jan 12, 2011 at 10:20 AM, Jehan PROCACCIA jehan.procac...@it-sudparis.eu wrote: Le 12/01/2011 15:46, fuzzy_4711 a écrit : Do apache needs to have RW on /var/svn/disi/* ? for now it is user svn only Yup, you got it. Put your apache user into group svn. And give those rights

Re: 301 with mod_dav / https

2011-01-12 Thread fuzzy_4711
Unfortunately, this is a long-standing security problem. It means that other non-suexec or user id Apache tools, such as Perl or PHP based modules, now have direct write access to your repository, now have arbitrary write access to the repository. In particular, they can directly do rm -rf

Re: How to get svn-bisect?

2011-01-12 Thread Tech Geek
I would like to point out to guys on this list who may be looking for the svn-bisect tool (just like I was) that it is being included in the next release of Debian [1] and in the backported version of Debian [2]. Also see [3] if you are using a Linux distribution that does not include the

project vs. repository

2011-01-12 Thread Alan Taylor
Greetings, Some time ago I created my repo with: svnadmin create /srv/svn/cfg This has been operating fine for over a year, but I now have a problem because I want to add another project. Unfortunately I think the original repo creation command should have been: svnadmin create /srv/svn My

Re: SVN Hooks to require log message, limit size and file type

2011-01-12 Thread David Weintraub
On Tue, Jan 11, 2011 at 8:46 PM, David Xie ddxie...@gmail.com wrote: Hello, I am looking for a hook to require log message when commit. I succeded to do it. At the same time, I want to limit size less than 10MB and forbid .zip .7z .rar file type. I found some hooks from internet, tried

project vs. repository

2011-01-12 Thread Alan Taylor
Greetings, Some time ago I created my repo with: svnadmin create /srv/svn/cfg This has been operating fine for over a year, but I now have a problem because I want to add another project. Unfortunately I think the original repo creation command should have been: svnadmin create /srv/svn My

Add Directory to SVN - and Permssion - Please clarify

2011-01-12 Thread santhosh kumar
Hi I want to add some directories to a SVN tree and give permission to individual users. Please help me to do it. Example: I want to create directories A, B , C , D, E to a SVN Tree and the Directory A can be only accessed by User1, B by User2, C by User 3, D by User4, E by User 5. Thanks in

RE: Add Directory to SVN - and Permssion - Please clarify

2011-01-12 Thread Cooke, Mark
-Original Message- From: santhosh kumar [mailto:santhoshkal...@gmail.com] Sent: 13 January 2011 07:02 To: users@subversion.apache.org Subject: Add Directory to SVN - and Permssion - Please clarify Hi I want to add some directories to a SVN tree and give permission to

RE: project vs. repository

2011-01-12 Thread Cooke, Mark
-Original Message- From: alan.james.tay...@gmail.com [mailto:alan.james.tay...@gmail.com] On Behalf Of Alan Taylor Sent: 13 January 2011 00:22 To: users@subversion.apache.org Subject: project vs. repository Greetings, Some time ago I created my repo with: svnadmin create

Re: SVN Subversion- object level checkout

2011-01-12 Thread Daniel Becroft
On Thu, Jan 13, 2011 at 5:24 PM, amit.sas...@wipro.com wrote: Hello Micheal, Thanks for your mail. We are using Tortoise SVN-1.6.7 alongwith Power Builder 11.5. We want to lock (check-out) the core power builder object from SVN so that only one user can modify the object for that time.