You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by lenb <le...@gmail.com> on 2015/01/04 15:56:07 UTC

svn dropbox URL encoding

I keep my subversion repositories on dropbox.  I want to checkout a copy of
my project, so I requested a sharing link.  I got one but when I use svn
checkout, I got a URL not encoded message.  I then encoded the two
characters (?,=) which occur in the URL but when I then use checkout, I get
the following.  (I've changed the URL since it is a proprietary project).

svn: OPTIONS of
'https://www.dropbox.com/sh/r198XXXXXX5a/AXXXXXXXzu-G0ybr7RzlHea%3Fdl%3D0':
200 OK (https://www.dropbox.com)

I've no idea what OPTIONS means.  Can anyone help?

Thanks in advance.





--
View this message in context: http://subversion.1072662.n5.nabble.com/svn-dropbox-URL-encoding-tp191379.html
Sent from the Subversion Users mailing list archive at Nabble.com.

Re: svn dropbox URL encoding

Posted by Branko Čibej <br...@wandisco.com>.
On 04.01.2015 15:56, lenb wrote:
> I keep my subversion repositories on dropbox.  I want to checkout a copy of
> my project, so I requested a sharing link.  I got one but when I use svn
> checkout, I got a URL not encoded message.  I then encoded the two
> characters (?,=) which occur in the URL but when I then use checkout, I get
> the following.  (I've changed the URL since it is a proprietary project).
>
> svn: OPTIONS of
> 'https://www.dropbox.com/sh/r198XXXXXX5a/AXXXXXXXzu-G0ybr7RzlHea%3Fdl%3D0':
> 200 OK (https://www.dropbox.com)
>
> I've no idea what OPTIONS means.  Can anyone help?

OPTIONS is a method of the HTTP protocol, which Subversion uses (amongst
other things) to determine server capabilities.

Dropbox is not a Subversion server, so you can't use the client to
access the repository via HTTP(S) on Dropbox. What you can try to do is
set up a local directory that's mirrored on Dropbox, create the
repository ther, then use the file:// protocol to check out a working copy.

Be warned that I've never tried that, but apparently it works for some
people.

-- Brane