Questions tagged [mod-dav-svn]

A module to provide HTTP access to Subversion SCM repositories via the Apache webserver.

61 questions
18
votes
1 answer

How do I list all repositories with the SVNParentPath directive on Apache+SVN?

I'm using SVN through Apache with dav_svn_module like this: DAV svn SVNParentPath C:/svn_repository AuthName "Subversion Repository" ... This lets me access my…
Michael Haren
  • 105,752
  • 40
  • 168
  • 205
14
votes
8 answers

tortoise svn giving me "Redirect cycle detected for URL 'domain/svn'"

I want to achieve a svn-root in /var/svn and repositories(projects) in there. I could get it to work in the browser (http://domain/url gives me "Collection of repositories") but the TortoiseClient is giving me the error mentioned in the title. I set…
Sebastian Saip
  • 452
  • 2
  • 5
  • 17
11
votes
2 answers

Why choose mod_dav_svn instead of svnserve & a repository browser?

Please correct me if I am wrong about my understanding of mod_dav_svn, which is that it basically serves 2 purposes: Expose the SVN repository (on the filesystem) to clients, which can be either: repository browsers (e.g. web) the 'svn' command…
user779159
  • 9,034
  • 14
  • 59
  • 89
8
votes
1 answer

Strange behaviour of mod_authz_svn

I've configured my svn server on apache2 like this: DAV svn SVNParentPath /path/to/SvnTest AuthType Basic AuthName "Subversion repository" AuthUserFile "/path/to/passwd" AuthzSVNAccessFile…
yihuang
  • 329
  • 2
  • 7
7
votes
2 answers

What are the MIME types for .NET project source code files?

Are there official MIME types for the .cs (C# source), .resx, .aspx, etc. files in a .NET project? If no official types are defined, any recommendations on good MIME types? This will be exposed via Apache and the mod_dav_svn module when viewing a…
Dylan Beattie
  • 53,688
  • 35
  • 128
  • 197
7
votes
5 answers

How to programmatically build an APR1-MD5 using PHP

Much like this question I want to generate an htpasswd file entry from PHP. However it needs to be the APR1 (Apache) style, as mentioned in the original answer (The answer did not show how to implement the APR1 style), to work with mod_dav_svn. I…
Tom
  • 702
  • 7
  • 16
6
votes
1 answer

Build all static svn client on Mac OSX, error on mod_dav_svn.so

I'm trying to build svn client on Mac OS 10.7.5. My aim is to build svn client completely static so it would not depend on any dylib to be installed. The idea is that the svn client could be copied to a disk on key, or downloaded and will work…
Periodic Maintenance
  • 1,698
  • 4
  • 20
  • 32
5
votes
4 answers

Is it possible to override the Subversion HTML pages?

I have a subversion server, providing subversion access via Apache2 and mod_dav_svn The system works fine and clients can access the repositories with SVN client such as TortoiseSVN etc. Users can also access HTML renderings of the same URLs. Can…
BParker
  • 164
  • 2
  • 12
4
votes
3 answers

How to display language syntax coloring with the DAV SVN module?

When viewing a plain text code file (i.e. ".py", ".c", ".cpp", ".m", ".as", ".js", etc.) is it possible to have the DAV SVN module render language-specific syntax coloring? That would be amazing. Currently it's all just black plain text, but it'd…
drhr
  • 2,261
  • 2
  • 17
  • 35
4
votes
3 answers

how to configure Apache + SVN webDAV directory listing

I have an subversion server running with Apache mod_dav_svn and it works nicely but the browsing ability via HTML is a bit spartan. Is there a way to customize it at all? There's two things I'd like to do to make a huge difference: separate the…
Jason S
  • 184,598
  • 164
  • 608
  • 970
4
votes
1 answer

Possible to combine `SVNListParentPath` and `SVNMasterURI`?

I have been trying to set up Apache to access subversion repositories such that: Makes use of repository collections, i.e. SVNParentPath points to a folder containing repositories. Uses SVNMasterURI to transparently proxy commits to a master…
Anders Lindahl
  • 41,582
  • 9
  • 89
  • 93
3
votes
6 answers

Allow SVN anonymous read access from localhost

I have an SVN repository that is configured to use Basic authentication through Apache httpd to limit access to specified users. To support a continuous integration server (and other read-only services) running on the same server I would like to…
Michael
  • 2,460
  • 3
  • 27
  • 47
3
votes
1 answer

Weird Apache2.2 SVN error, "Expected repository format '3' or '5'; found format '9'"

I've had a repo that I would access, using TortoiseSVN, from only the same computer on which the Subversion win32 service was running, and it's been working for a while now. I decided to try to set up mod_dav_svn to be able to get at it from…
Kev
  • 15,899
  • 15
  • 79
  • 112
3
votes
1 answer

Dynamic subversion repos via subdomains (in Apache)

I'm trying to set up a subdomain-to-repository translation in Apache. Example: foobars.domain.com -> /server/svnrepos/foobars I've tried to get this done with mod_rewrite: RewriteCond %{HTTP_HOST} !^www\.domain\.com$ [NC] RewriteCond %{HTTP_HOST}…
mmakowski
  • 129
  • 1
  • 6
3
votes
1 answer

"Requests for a collection must have a trailing slash on the URI" error

I have a svn server (VisualSVN Server 3.2), it works fine, but in a Windows Event Viewer I found many Requests for a collection must have a trailing slash on the URI. [301, #175002] [client 127.0.0.1] Could not fetch resource information. [301,…
ar099968
  • 6,963
  • 12
  • 64
  • 127
1
2 3 4 5