Re: Subversion: list of respositories

2011-08-01 Thread Neil Bird
Around about 01/08/11 05:02, Andy Canfield typed ... I am user andy. I can point my browser to "http://SERVER/svn/subdoc"; or even "http://SERVER/svn/fred3"; with no problem, but not "http://SERVER/svn"; -- 403 Forbidden. I think I've done everything that the documentation says I should do, but

Re: Subversion: list of respositories

2011-07-31 Thread Thorsten Schöning
Guten Tag Andy Canfield, am Montag, 1. August 2011 um 06:02 schrieben Sie: > The authz file includes these lines: > [groups] > everybody = andy,louis,spencer > [/] > @everybody = r > [subdoc:/] > andy = rw > [gamble:/] > @everybody = rw > [fred3:/] >

Re: Subversion: list of respositories

2011-07-31 Thread Nico Kadel-Garcia
On Mon, Aug 1, 2011 at 12:34 AM, Andy Canfield wrote: >> Cool, but be careful with those. If you have SELinux enabled and the >> repositories are elsewhere, for example on a separate disk for bulky >> repositories, you may need to review your SELinux settings to enable >> httpd access to the sepa

Re: Subversion: list of respositories

2011-07-31 Thread Andy Canfield
On 07/18/2011 06:27 PM, Nico Kadel-Garcia wrote: On Mon, Jul 18, 2011 at 7:10 AM, Erik Huelsmann wrote: I would think that it looks at SVNParentPath and tries to treat every subdirectory of that as a repository. Not quite. It's not "every subdirectory", it's "every child directory". Â That

Re: Subversion: list of respositories

2011-07-31 Thread Andy Canfield
On 07/18/2011 09:48 AM, Geoff Hoffman wrote: On Sat, Jul 16, 2011 at 11:06 PM, Andy Canfield mailto:andy.canfi...@pimco.mobi>> wrote: How do you get a list of repositories from svnserver? The only way I can figure out is: *ssh usern...@example.com

Re: Subversion: list of respositories

2011-07-18 Thread Ryan Schmidt
On Jul 18, 2011, at 03:53, Andy Canfield wrote: > On 07/18/2011 09:35 AM, Andy Levy wrote: >> On Sun, Jul 17, 2011 at 22:29, Andy Canfield wrote: >> >>> If I set up http://example.com/svn >>> to be a way to use apache to communicate >>> with the svn service on the example.com server then is point

Re: Subversion: list of respositories

2011-07-18 Thread Les Mikesell
On 7/18/2011 6:47 AM, Matthew Beals wrote: The simple trick to user rights I use is to make the repo owned by www-data to give Apache access and use group permissions for svn+SSH. I'm not sure if acl's work or not. I always viewed svn as just being a method to interact with individual repos... i

Re: Subversion: list of respositories

2011-07-18 Thread Matthew Beals
The simple trick to user rights I use is to make the repo owned by www-data to give Apache access and use group permissions for svn+SSH. I'm not sure if acl's work or not. I always viewed svn as just being a method to interact with individual repos... it really has no clue what is going on outs

Re: Subversion: list of respositories

2011-07-18 Thread Nico Kadel-Garcia
On Mon, Jul 18, 2011 at 7:10 AM, Erik Huelsmann wrote: > >> I would think that it looks at SVNParentPath and tries to treat every >> >> > subdirectory of that as a repository. >> >> Not quite. It's not "every subdirectory", it's "every child >> directory".  That means it will not descend into subd

Re: Subversion: list of respositories

2011-07-18 Thread Erik Huelsmann
> I would think that it looks at SVNParentPath and tries to treat every > > subdirectory of that as a repository. > > Not quite. It's not "every subdirectory", it's "every child > directory". That means it will not descend into subdirectories of > subdirectories, fir example, so they all need to

Re: Subversion: list of respositories

2011-07-18 Thread Nico Kadel-Garcia
On Mon, Jul 18, 2011 at 4:56 AM, Andy Canfield wrote: > > > On 07/18/2011 09:36 AM, Nico Kadel-Garcia wrote: >> >> On Sun, Jul 17, 2011 at 8:07 AM, Andy Levy  wrote: >>> >>> On Sun, Jul 17, 2011 at 02:06, Andy Canfield >>>  wrote: How do you get a list of repositories from svnserver? The

Re: Subversion: list of respositories

2011-07-18 Thread Andy Canfield
On 07/18/2011 09:36 AM, Nico Kadel-Garcia wrote: On Sun, Jul 17, 2011 at 8:07 AM, Andy Levy wrote: On Sun, Jul 17, 2011 at 02:06, Andy Canfield wrote: How do you get a list of repositories from svnserver? The only way I can figure out is: ssh usern...@example.com sudo bash ls

Re: Subversion: list of respositories

2011-07-18 Thread Andy Canfield
On 07/18/2011 09:35 AM, Andy Levy wrote: Please Reply to All to keep discussion on the list. List convention is to bottom-post and quote inline. Please do not top-post. On Sun, Jul 17, 2011 at 22:29, Andy Canfield wrote: If I set up http://example.com/svn to be a way to use apache to commun

Re: Subversion: list of respositories

2011-07-17 Thread Geoff Hoffman
On Sat, Jul 16, 2011 at 11:06 PM, Andy Canfield wrote: > ** > How do you get a list of repositories from svnserver? The only way I can > figure out is: > *ssh usern...@example.com > sudo bash > ls -ld /var/svn/** > And, of course, this makes an assumption about where on the server the

Re: Subversion: list of respositories

2011-07-17 Thread Nico Kadel-Garcia
On Sun, Jul 17, 2011 at 8:07 AM, Andy Levy wrote: > On Sun, Jul 17, 2011 at 02:06, Andy Canfield wrote: >> How do you get a list of repositories from svnserver? The only way I can >> figure out is: >>     ssh usern...@example.com >>     sudo bash >>     ls -ld /var/svn/* >> And, of course, this m

Re: Subversion: list of respositories

2011-07-17 Thread Andy Levy
Please Reply to All to keep discussion on the list. List convention is to bottom-post and quote inline. Please do not top-post. On Sun, Jul 17, 2011 at 22:29, Andy Canfield wrote: > If I set up http://example.com/svn to be a way to use apache to communicate > with the svn service on the example.

Re: Subversion: list of respositories

2011-07-17 Thread Andy Levy
On Sun, Jul 17, 2011 at 02:06, Andy Canfield wrote: > How do you get a list of repositories from svnserver? The only way I can > figure out is: >     ssh usern...@example.com >     sudo bash >     ls -ld /var/svn/* > And, of course, this makes an assumption about where on the server the > reposito

Subversion: list of respositories

2011-07-17 Thread Andy Canfield
How do you get a list of repositories from svnserver? The only way I can figure out is: *ssh usern...@example.com sudo bash ls -ld /var/svn/** And, of course, this makes an assumption about where on the server the repositories are located. There 'ought' to be an easier way.