Re: Moving an existing Repository to a newly created repository

2011-06-25 Thread Thorsten Schöning
Guten Tag Tech Geek, am Freitag, 24. Juni 2011 um 20:28 schrieben Sie: > I tried using export/import command and also SVN move command from > TSVN client but I am not able to figure out what's is the correct way > to do this. What you need is svnadmin dump and load and your process is not trivial

Snow Leopard 10.6.7 showing wrong version on http://myserver/svn page

2011-06-25 Thread davmar
Hi, I've upgraded from 10.6's native version of 1.6.15 to 1.6.17 using .dmg as well as using MacPorts. I've followed the installers directions to update the envvars file on my remote server, as well .profile on the client side and vice, versa If I run snvserv --version on the server I get the co

Re: Moving an existing Repository to a newly created repository

2011-06-25 Thread Tech Geek
We are trying to reorganize some our projects and hence repositories so that it makes some kind of logical sense (naming wise). Our existing repository that we want to move i.e. ProjectA has very few commits (4 to 5) in it and we do not care if the revision numbers change as long as we have commit

svnsync issue - 'svn:entry:committed-date' is disallowed

2011-06-25 Thread Umang Vanjara
Hi, We are trying to mirror some SVN repositories using svnsync. We are following the steps as outlined here - http://svnbook.red-bean.com/nightly/en/svn.reposadmin.maint.html#svn.reposadmin.maint.replication However, some of the repositories run into this error svnsync: Storage of non-regular

Re: Snow Leopard 10.6.7 showing wrong version on http://myserver/svn page

2011-06-25 Thread Ryan Schmidt
On Jun 25, 2011, at 14:38, davmar wrote: > I've upgraded from 10.6's native version of 1.6.15 to 1.6.17 using .dmg as > well as using MacPorts. > I've followed the installers directions to update the envvars file on my > remote server, as well .profile on the client side and vice, versa If I run

Re: Snow Leopard 10.6.7 showing wrong version on http://myserver/svn page

2011-06-25 Thread davmar
Hey thanks Ryan for the quick response and clear description of the problem. What would you do in this case? Would I have to uninstall the native apache2 on the mac server and re-install using MacPorts. It sounds like it could be messy. Thanks, Dav Ryan Schmidt-80 wrote: > > On Jun 25, 2011,

Re: Snow Leopard 10.6.7 showing wrong version on http://myserver/svn page

2011-06-25 Thread Ryan Schmidt
On Jun 25, 2011, at 15:43, davmar wrote: > What would you do in this case? > Would I have to uninstall the native apache2 on the mac server and > re-install using MacPorts. > It sounds like it could be messy. What do you want to do? First of all I was not clear whether you were running Mac OS X

Re: Snow Leopard 10.6.7 showing wrong version on http://myserver/svn page

2011-06-25 Thread davmar
I used the .dmg installer on both the client Macs and the server Mac. The .dmg is advertised to come with "everything" needed for both. Yea, the Mac OSX Server GUI is why I decided to go with putting the repository on the server. As you asked, I would like to upgrade the server to 1.6.17. I've

Partial export

2011-06-25 Thread Gerald Britton
I use svn export to create a clean directory from my repository. Works great! Later though, I had found some bugs. So, I fixed them in my working copy, tested them and had some others verify my work. Then I committed them to my repository. Next thing, replace the files in the directory I created

Re: Snow Leopard 10.6.7 showing wrong version on http://myserver/svn page

2011-06-25 Thread davmar
Hi, Yes, as I expected this is turning into a mess for someone who is unfamiliar with Apache2 and Subversion. Doesn't seem to be as easy as outlined above. I did follow the instructions listed but nothing really seems to be happening. ps -aef returns: 0 61079 1 0 0:00.01 ?? 0:0

Re: Snow Leopard 10.6.7 showing wrong version on http://myserver/svn page

2011-06-25 Thread Ryan Schmidt
On Jun 25, 2011, at 20:45, davmar wrote: > Yes, as I expected this is turning into a mess for someone who is unfamiliar > with Apache2 and > Subversion. Doesn't seem to be as easy as outlined above. > I did follow the instructions listed but nothing really seems to be > happening. > > ps -aef r

Re: Snow Leopard 10.6.7 showing wrong version on http://myserver/svn page

2011-06-25 Thread davmar
You actually nailed the diagnosis but dav_svn_module doesn't seem to be doing its thing: I copied the entire httpd.conf from the Apple Apache2 into the MacPorts Apache2 instead of just editing it. So I am now have the MacPorts apache2 running but when typing in http://myserver/svn , I am not gett

Re: Snow Leopard 10.6.7 showing wrong version on http://myserver/svn page

2011-06-25 Thread Ryan Schmidt
On Jun 25, 2011, at 21:34, davmar wrote: > I copied the entire httpd.conf from the Apple Apache2 into the MacPorts > Apache2 instead of just editing it. So I am now have the MacPorts apache2 > running but when typing in http://myserver/svn , I am not getting the svn > page. What are you getting i

Re: Snow Leopard 10.6.7 showing wrong version on http://myserver/svn page

2011-06-25 Thread davmar
This is what I get when grep for dav or svn in the httpd.conf: bash-3.2$ cat httpd.conf | grep dav LoadModule dav_module modules/mod_dav.so LoadModule dav_fs_module modules/mod_dav_fs.so LoadModule dav_svn_module modules/mod_dav_svn.so Include conf/extra/httpd-dav.conf bash-3.2$ cat httpd.conf |

Re: Snow Leopard 10.6.7 showing wrong version on http://myserver/svn page

2011-06-25 Thread Ryan Schmidt
On Jun 25, 2011, at 22:09, davmar wrote: > This is what I get when grep for dav or svn in the httpd.conf: If you want http://myserver/svn to be served by mod_dav_svn, there's going to have to be a "" block somewhere that tells Apache to do that. Consult the Subversion documentation for what nee

Re: Snow Leopard 10.6.7 showing wrong version on http://myserver/svn page

2011-06-25 Thread davmar
Yea apologies about that Reading the docs now. Wouldn't have gotten to this point without your help though. I might need it again though. Thanks! D Ryan Schmidt-80 wrote: > > On Jun 25, 2011, at 22:09, davmar wrote: > >> This is what I get when grep for dav or svn in the httpd.conf: > >

Re: Snow Leopard 10.6.7 showing wrong version on http://myserver/svn page

2011-06-25 Thread davmar
So it looks good now, the repository page is showing up (without the version though) but that is okay. Thanks again! I wanted to authenticate against my Open Directory LDAP server, the docs don't go over this and web seems to assume you will be using the native Mac GUI to do this, which took 3 cl