Re: best practice: accessing svn data without co

2011-08-09 Thread Les Mikesell
Viewvc has an option to generate a tarball download for any path/revision. On 8/9/2011 1:33 PM, David Weintraub wrote: Take a look at Sventon (http://sventon.org). It's a web-based Subversion interface, and I believe it can be setup to allow users to download folders as tarballs. On Tue, Aug 9

Re: best practice: accessing svn data without co

2011-08-09 Thread David Weintraub
Take a look at Sventon (http://sventon.org). It's a web-based Subversion interface, and I believe it can be setup to allow users to download folders as tarballs. On Tue, Aug 9, 2011 at 2:27 PM, Jan Ciesko (GMAIL) wrote: > Dear SVN users > > I would like to ask the following: is there a way to acc

Re: best practice: accessing svn data without co

2011-08-09 Thread Geoff Hoffman
On Tue, Aug 9, 2011 at 11:27 AM, Jan Ciesko (GMAIL) wrote: > Dear SVN users > > I would like to ask the following: is there a way to access svn data on the > svn server without checking data out? I would need to create temporal tar'ed > archive of a versioned directory that is then attached to a w

Re: best practice: accessing svn data without co

2011-08-09 Thread Andreas Krey
On Tue, 09 Aug 2011 20:27:53 +, Jan Ciesko (GMAIL) wrote: > Dear SVN users > > I would like to ask the following: is there a way to access svn data on > the svn server without checking data out? 'svn cat $URL' and 'svn ls $URL' come to mind. But not easy to get a tree with those. > I would

best practice: accessing svn data without co

2011-08-09 Thread Jan Ciesko (GMAIL)
Dear SVN users I would like to ask the following: is there a way to access svn data on the svn server without checking data out? I would need to create temporal tar'ed archive of a versioned directory that is then attached to a website. Both web- and svn-server are running on the same system.