up vote 12 down vote favorite
6
share [g+] share [fb]

I'm using VisualSVN Server to host an SVN repo, and for some automation work, I'd like to be able to get specific versions via the http[s] layer.

I can get the HEAD version simply via an http[s] request to the server (httpd?) - but is there any ability to specify the revision, perhaps as a query-string? I can't seem to find it...

I don't want to do a checkout unless I can help it, as there are a lot of files in the specific folder, and I don't want them all - just one or two.

link|improve this question

feedback

5 Answers

up vote 7 down vote accepted

I don't think so, but this question should be sent to the VisualSVN team, they're usually very prompt in their answers.

link|improve this answer
2  
OK, I've re-posted to groups.google.com/group/visualsvn - cheers. – Marc Gravell Oct 1 '08 at 13:43
feedback

Better late than never; https://entire/Path/To/Folder/file/?p=REV

?p=Rev specifies the revision

link|improve this answer
1  
This worked for me with the VisualSVN server web interface. Thanks! – dnewcome Jan 26 '11 at 20:42
This worked for me too. Thanks. – ianstigator Nov 14 '11 at 4:23
2  
This answer deserves acceptance! – gregorej Nov 17 '11 at 10:02
feedback

Dunno if you've already found the answer to this question but in regular svn server on apache you can get to a particular revision with:

http://host/!svn/bc/REVISION_NUMBER/path/to/file.ext
  • host & REVISION_NUMBER are obvious
  • /path/to/file.ext is relative to repo root

I've never used visualsvn so your mileage may vary.

link|improve this answer
Interesting; I'll take a look – Marc Gravell Feb 22 '09 at 19:42
VisualSVN doesn't use that format. See @chhenni's answer above. – Jon Adams Jun 21 '11 at 17:09
feedback

Subversion does not publicly document the Uris it uses internally to access that information. (And where it is documented, it is explicitly stated that this can change in future versions)

To access this information on the web you could use a web viewer (E.g. websvn, viewvc).

If you want to access it from your own program you could also use a client binding like SharpSvn.

using (SvnClient client = new SvnClient())
using (FileStream fs = File.Create("c:\\temp\\file.txt"))
{
    // Perform svn cat http://svn.collab.net/svn/repos/trunk/COMMITTERS -r 23456 
    //                    > file.txt

    SvnCatArgs a = new SvnCatArgs();
    a.Revision = 23456;
    client.Cat(new Uri("http://svn.collab.net/svn/repos/trunk/COMMITTERS"), a, fs);
}

[Update 2008-12-31: One of the next few versions of Subversion will start documenting public urls you can use for retrieving old versions.]

link|improve this answer
Interesting - very, very interesting. I'll give that a whirl. – Marc Gravell Oct 3 '08 at 6:49
feedback

This:

Use of WebDAV in Subversion

should help.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.