You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Blair Zajac <bl...@orcaware.com> on 2002/11/07 23:23:09 UTC

svn co of file ending in % doesn't work

Trying this command fails:

% svn co http://svn.orcaware.com/repos/tags/orca/0.15/
A  0.15/Makefile.in
A  0.15/INSTALL%
svn: RA layer request failed
svn: could not checkout a file
svn: GET of /repos/!svn/bc/150/tags/orca/0.15/INSTALL%25 returned
status code 400 (Bad Request)

You can see the INSTALL% file in the listing of
http://svn.orcaware.com/repos/tags/orca/0.15/

Any ideas?  I'm using apr/apr-util/httpd2 from 2002-11-05 and
svn rev 3662.

I know this used to work, but it's been a while since I've checked
out this code, so I have no idea when it stopped working.

Best,
Blair

-- 
Blair Zajac <bl...@orcaware.com>
Web and OS performance plots - http://www.orcaware.com/orca/

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: svn co of file ending in % doesn't work

Posted by Philip Martin <ph...@codematters.co.uk>.
Blair Zajac <bl...@orcaware.com> writes:

> > It seems to work here.
> 
> The repository is public.  Can you try it from your client?

I get the same error you get.

-- 
Philip Martin

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: svn co of file ending in % doesn't work

Posted by Blair Zajac <bl...@orcaware.com>.
Colin Watson wrote:
> 
> On Thu, Nov 07, 2002 at 03:58:44PM -0800, Blair Zajac wrote:
> > Philip Martin wrote:
> > > Blair Zajac <bl...@orcaware.com> writes:
> > > > svn: GET of /repos/!svn/bc/150/tags/orca/0.15/INSTALL%25 returned
> > > > status code 400 (Bad Request)
> [...]
> > > It seems to work here.
> >
> > The repository is public.  Can you try it from your client?
> 
> The client seems to be performing URL-encoding correctly; the version of
> the server is probably more relevant.

I figured out the problem.

Because I have only one public IP address to work with, I have
my Apache 1.3.27 on port 80 to forward all traffic directed to
http://svn.orcaware.com/ to forward to http://svn.orcaware.com:8000/ .
Checking out the code from port 8000 works fine.

Just to make certain it's not a mod_dav_svn issue, I copied my
main index.html to INDEX% and couldn't retrieve this either
through port 80.  Is this issue worth reporting to dev@httpd,
given that its 1.3.27?

Best,
Blair

-- 
Blair Zajac <bl...@orcaware.com>
Web and OS performance plots - http://www.orcaware.com/orca/

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: svn co of file ending in % doesn't work

Posted by Colin Watson <cj...@flatline.org.uk>.
On Thu, Nov 07, 2002 at 03:58:44PM -0800, Blair Zajac wrote:
> Philip Martin wrote:
> > Blair Zajac <bl...@orcaware.com> writes:
> > > svn: GET of /repos/!svn/bc/150/tags/orca/0.15/INSTALL%25 returned
> > > status code 400 (Bad Request)
[...]
> > It seems to work here.
> 
> The repository is public.  Can you try it from your client?

The client seems to be performing URL-encoding correctly; the version of
the server is probably more relevant.

-- 
Colin Watson                                  [cjwatson@flatline.org.uk]

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: svn co of file ending in % doesn't work

Posted by Blair Zajac <bl...@orcaware.com>.
Philip Martin wrote:
> 
> Blair Zajac <bl...@orcaware.com> writes:
> 
> > Trying this command fails:
> >
> > % svn co http://svn.orcaware.com/repos/tags/orca/0.15/
> > A  0.15/Makefile.in
> > A  0.15/INSTALL%
> > svn: RA layer request failed
> > svn: could not checkout a file
> > svn: GET of /repos/!svn/bc/150/tags/orca/0.15/INSTALL%25 returned
> > status code 400 (Bad Request)
> >
> > You can see the INSTALL% file in the listing of
> > http://svn.orcaware.com/repos/tags/orca/0.15/
> >
> > Any ideas?  I'm using apr/apr-util/httpd2 from 2002-11-05 and
> > svn rev 3662.
> 
> It seems to work here.

The repository is public.  Can you try it from your client?

Best,
Blair

-- 
Blair Zajac <bl...@orcaware.com>
Web and OS performance plots - http://www.orcaware.com/orca/

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: svn co of file ending in % doesn't work

Posted by Philip Martin <ph...@codematters.co.uk>.
Blair Zajac <bl...@orcaware.com> writes:

> Trying this command fails:
> 
> % svn co http://svn.orcaware.com/repos/tags/orca/0.15/
> A  0.15/Makefile.in
> A  0.15/INSTALL%
> svn: RA layer request failed
> svn: could not checkout a file
> svn: GET of /repos/!svn/bc/150/tags/orca/0.15/INSTALL%25 returned
> status code 400 (Bad Request)
> 
> You can see the INSTALL% file in the listing of
> http://svn.orcaware.com/repos/tags/orca/0.15/
> 
> Any ideas?  I'm using apr/apr-util/httpd2 from 2002-11-05 and
> svn rev 3662.

It seems to work here.

$ svnadmin create /tmp/repo
$ svn co http://localhost:8888/tmp/repo wc
Checked out revision 0.
$ touch wc/INSTALL%
$ svn add wc/INSTALL%
A         wc/INSTALL%
$ svn ci wc
Adding         wc/INSTALL%
Transmitting file data .
Committed revision 1.
$ rm -rf wc
$ svn co http://localhost:8888/tmp/repo wc
A  wc/INSTALL%
Checked out revision 1.
$ cat wc/.svn/wcprops/INSTALL%.svn-work 
K 25
svn:wc:ra_dav:version-url
V 31
/tmp/repo/!svn/ver/1/INSTALL%25
END


Subversion r3687.


-- 
Philip Martin

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org