Project

General

Profile

Actions

Bug #3022

open

SVN support with repositories groups

Added by Marcin Kuzminski [CTO] over 8 years ago. Updated over 7 years ago.

Status:
New
Priority:
Normal
Assignee:
-
Category:
-
Target version:
-
Start date:
06.01.2016
Due date:
% Done:

0%

Estimated time:
Sorting:
Commit Number:
Affected Version:

Description

WIP: it seems svn is not supporting repositories groups at the moment.

Will put my findings in this ticket


Related issues 1 (0 open1 closed)

Related to RhodeCode CE/EE - Task #4082: auto-build SVN apache pathsClosedJohannes Bornhold11.07.2016

Actions
Actions #1

Updated by Marcin Kuzminski [CTO] over 8 years ago

The repositories group are not supported nativly by RhodeCode due to how webdav works. A work-around solution is to define multiple paths in the apache configuration based on repositories groups.

example:

<VirtualHost *:8090>

    ## ... rest of configuration here

    <Location />
        DAV svn
        # Must be explicit path, relative not supported
        SVNParentPath /home/ubuntu/repos/
        SVNListParentPath On
        Allow from all
        Order allow,deny
    </Location>

        ## each repository group needs to have a separate entry
    <Location /example-group>
        DAV svn
        # Must be explicit path, relative not supported
        SVNParentPath /home/ubuntu/repos/example-group
        SVNListParentPath On
        Allow from all
        Order allow,deny
    </Location>

</VirtualHost>
Actions #2

Updated by Marcin Kuzminski [CTO] about 8 years ago

  • Private changed from No to Yes
Actions #3

Updated by Marcin Kuzminski [CTO] over 7 years ago

  • Private changed from Yes to No
Actions #4

Updated by Marcin Kuzminski [CTO] over 7 years ago

  • Related to Task #4082: auto-build SVN apache paths added
Actions

Also available in: Atom PDF