new to subversion

2012-09-22 Thread Robert Huff

One quick question:

I've converted from csup to subversion for ports and docs.
Ports works fine, but for docs, I get messages like:

Skipped 'mn_MN.UTF-8' -- Node remains in conflict

Deleting the tree and pulling a fresh chackout has not helped.
Any suggestions?


Robert Huff

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: new to subversion

2012-09-22 Thread jb
Robert Huff roberthuff at rcn.com writes:

 
 
   One quick question:
 
   I've converted from csup to subversion for ports and docs.
 Ports works fine, but for docs, I get messages like:
 
 Skipped 'mn_MN.UTF-8' -- Node remains in conflict
 
   Deleting the tree and pulling a fresh chackout has not helped.
   Any suggestions?

Change to your top-most working copy dir (the one you obtained with checkout):
$ cd working-copy-dir
$ svn status
If you have done no local edits yet or do not care of loosing them (save it
otherwise), then do the following:
$ svn update --accept theirs-full
$ svn status

Did it help ?
jb


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: New to Subversion - Access denied issue

2007-08-20 Thread Glen Barber
Quoting gimp_user: 
 
 I have made all repository paths owner:group www:www

Permissions for subversion have always gotten to me, too.  The way I
usually get around my headaches is to chmod -R 777 the subversion root
directory.  I have not found any fallbacks to a 777 setting, because you
are using either a AuthFile or AuthzSVNAccessFile, which designates
proper permissions.  (Please, anyone correct me if I am wrong on this.)

 2. My AuthzSVNAccessFile
 AuthzSVNAccessFile /usr/local/etc/apache22/Authz_svnhome
 [/]
 * = r
 [/usr2/svnhome]
 * =r
 [project_meth: /usr2/svnhome/project_meth]
 david = rw
 test = r

I am going to assume `/usr/svnhome` is the directory where you have the
root SVN directory.  If I am right, your Authz file is wrong.  Here's
how it works:

Say my SVN root is in /usr/home/svn.  When I create the Authz file, and
I use [/], the Authz file sees /usr/home/svn as /.  Meaning, it doesn't
see anything above it.  (Think jail).

That said, the second directory entry in you Authz file
[/usr2/svnhome], unless it is a project inside your SVN, has to
change.

Better explained?:  if you have this:  http://your.host.com/svn/usr2/svnhome , 
your
file is NOT wrong... If /usr2/svnhome is where your SVN root is, it IS
wrong. 

If I have completely misunderstood your file, and what you were aiming
to accomplish, I appologize -- but I remember this is how I
misunderstood it when I started using SVN.  


I hope this helps.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


New to Subversion: Authorization failure

2007-08-13 Thread David Southwell
Hi 
I am new to subversion and have hit a problem - if anyone feels like helping 
it would be much appreciated.

I have set up subversion to run with apache.
Versions:

apache-2.2.4_2 
subversion-1.4.4_1

I can connect remotely from a client to the server, using name|password 
combination so authentication appears to work fine but authorization is 
failing. 

This is a new repository as can be seen from the output of the 
svnlook. An initial import attempt from the client fails with the client 
reporting RA Layer request failedand 403 forbidden error from the server.

Clearly I have something wrong in my authorization set up. Can anyone point me 
in the right direction?

I have chosen to use an SVNParentPath configuration for multiple repositories 
to exist under the same root with all repositories sharing the same 
AuthzSVNAccessFile. 
I have made all repository paths owner:group www:www

I have made no changes to the files created by the svnadmin create command.
 
1. Here are my entries in  hhtp.conf
# Modules include
LoadModule dav_module libexec/apache22/mod_dav.so
LoadModule dav_svn_module     libexec/apache22/mod_dav_svn.so
LoadModule authz_svn_module   libexec/apache22/mod_authz_svn.so
# Location entry:
Location /svnhome
        DAV svn
        SVNParentPath /usr2/svnhome
        SVNListParentPath on
# Access control Policy
        AuthzSVNAccessFile /usr/local/etc/apache22/Authz_svnhome

# try anonymous access first, resort to authentication
# if necessary
        
        Require valid-user
        AuthType Basic
        AuthName Svn Repository
        AuthUserFile /usr/local/etc/apache22/svn-auth-methusela_02
        
/Location
CustomLog       /usr/local/etc/apache22/svn_logfile %t %u %{SVN-ACTION}e 
env=SVN-ACTION       
#

2. My AuthzSVNAccessFile
#
AuthzSVNAccessFile /usr/local/etc/apache22/Authz_svnhome
[/]
* = r
[/usr2/svnhome]
* =r
[project_meth: /usr2/svnhome/project_meth]
david = rw
test = r
#

3. Output from svnlook
#
svnlook info /usr2/svnhome/project_meth

2007-08-13 03:09:11 -0700 (Mon, 13 Aug 2007)
0
#

4. http-error.log
#
httpd-error.log
[Mon Aug 13 09:30:04 2007] [error] [client 192.168.15.1] Access 
denied: 'david' MKACTIVITY project_meth:
#

5. svn_logfile
#
[13/Aug/2007:08:49:56 -0700] david list-dir '/'
[13/Aug/2007:08:51:47 -0700] david list-dir '/'
#

All help appreciated
Thanks in advance
david
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


New to Subversion - Access denied issue

2007-08-13 Thread gimp_user

I have set up subversion to run with apache.
Versions:

apache-2.2.4_2 
subversion-1.4.4_1


I can connect remotely to the server, using name|password combination appears 
to work fine. This is a new repository as can be seen from the output of the 
svnlook. An initial import attempt from the client fails with the client 
reporting RA Layer request failedand 403 forbidden error from the server.

Clearly I have something wrong in my set up. Can anyone point me in the right 
direction?

I have chosen to use an SVNParentPath configuration for multiple repositories 
to exist under the same root with all repositories sharing the same 
AuthzSVNAccessFile. 
I have made all repository paths owner:group www:www

I have made no changes to the files created by the svnadmin create command.
 
1. Here are my entries in  hhtp.conf
# Modules include
LoadModule dav_module libexec/apache22/mod_dav.so
LoadModule dav_svn_module libexec/apache22/mod_dav_svn.so
LoadModule authz_svn_module   libexec/apache22/mod_authz_svn.so
# Location entry:
Location /svnhome
DAV svn
SVNParentPath /usr2/svnhome
SVNListParentPath on
# Access control Policy
AuthzSVNAccessFile /usr/local/etc/apache22/Authz_svnhome

# try anonymous access first, resort to authentication
# if necessary

Require valid-user
AuthType Basic
AuthName Svn Repository
AuthUserFile /usr/local/etc/apache22/svn-auth-methusela_02

/Location
CustomLog   /usr/local/etc/apache22/svn_logfile %t %u %{SVN-ACTION}e 
env=SVN-ACTION   
#

2. My AuthzSVNAccessFile
#
AuthzSVNAccessFile /usr/local/etc/apache22/Authz_svnhome
[/]
* = r
[/usr2/svnhome]
* =r
[project_meth: /usr2/svnhome/project_meth]
david = rw
test = r
#

3. Output from svnlook
#
svnlook info /usr2/svnhome/project_meth

2007-08-13 03:09:11 -0700 (Mon, 13 Aug 2007)
0
#

4. http-error.log
#
httpd-error.log
[Mon Aug 13 09:30:04 2007] [error] [client 192.168.15.1] Access 
denied: 'david' MKACTIVITY project_meth:
#

5. svn_logfile
#
[13/Aug/2007:08:49:56 -0700] david list-dir '/'
[13/Aug/2007:08:51:47 -0700] david list-dir '/'
#

All help appreciated
Thanks in advance
david
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]