Re: [Python-Dev] HTTPS read-only SVN access is denied?

2008-09-11 Thread Olemis Lang
2008/9/7, Martin v. Löwis [EMAIL PROTECTED]: Not necessarily - as you say, it's undocumented (and will remain so); in any case, I have now granted anonymous read access to that repository, through https. Thnx a lot... Formerly I could not access anything because of the aforementioned

Re: [Python-Dev] HTTPS read-only SVN access is denied?

2008-09-11 Thread Fredrik Lundh
Olemis Lang wrote: Fetching external item into 'docutils' svn: Can't connect to host 'svn.berlios.de': A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.

Re: [Python-Dev] HTTPS read-only SVN access is denied?

2008-09-11 Thread Martin v. Löwis
then check if you can reach http://svn.berlios.de via your browser, or if some firewall rule gets in the way. He probably can, but the firewall still gets in the way when he tries to do the svn checkout - his firewall is incapable of forwarding OPTIONS and other methods used by subversion.

Re: [Python-Dev] HTTPS read-only SVN access is denied?

2008-09-07 Thread Martin v. Löwis
SVN checkout over HTTPS protocol requires password. Is it intentional or just temporary server issue? I am behind a proxy that doesn't support PROPFIND requests and I can't test SVN+SSH, because 22 port is closed. Site docs keep silence about that HTTPS is used at all. Shouldn't

Re: [Python-Dev] HTTPS read-only SVN access is denied?

2008-09-04 Thread techtonik
On Thu, Sep 4, 2008 at 2:08 AM, Brett Cannon [EMAIL PROTECTED] wrote: And why not to setup HTTPS for anonymous read and authorized write access? It is not that hard to do and will solve many problems with proxies. Because it requires setting up a certificate. Certificate is already set. $

Re: [Python-Dev] HTTPS read-only SVN access is denied?

2008-09-04 Thread techtonik
On Thu, Sep 4, 2008 at 1:48 AM, Antoine Pitrou [EMAIL PROTECTED] wrote: I do not need the whole branch - only a small subset of files related to distutils. I know that bazaar can't do partial checkouts - it can only fetch the whole branch. What about mercurial? Mercurial can't do it either.

Re: [Python-Dev] HTTPS read-only SVN access is denied?

2008-09-04 Thread Amaury Forgeot d'Arc
Hello, 2008/9/4 techtonik [EMAIL PROTECTED]: On Thu, Sep 4, 2008 at 1:48 AM, Antoine Pitrou [EMAIL PROTECTED] wrote: I do not need the whole branch - only a small subset of files related to distutils. I know that bazaar can't do partial checkouts - it can only fetch the whole branch. What

Re: [Python-Dev] HTTPS read-only SVN access is denied?

2008-09-04 Thread techtonik
On Thu, Sep 4, 2008 at 5:06 PM, Amaury Forgeot d'Arc [EMAIL PROTECTED] Did you try to open your browser to (for example) http://svn.python.org/projects/python/trunk/Lib/distutils/ and download the desired files from there? Yes, but it's a waste of time. It is SVN that should be fixed unless

[Python-Dev] HTTPS read-only SVN access is denied?

2008-09-03 Thread techtonik
SVN checkout over HTTPS protocol requires password. Is it intentional or just temporary server issue? I am behind a proxy that doesn't support PROPFIND requests and I can't test SVN+SSH, because 22 port is closed. Site docs keep silence about that HTTPS is used at all. Shouldn't authentication be

Re: [Python-Dev] HTTPS read-only SVN access is denied?

2008-09-03 Thread Antoine Pitrou
techtonik techtonik at gmail.com writes: SVN checkout over HTTPS protocol requires password. Is it intentional or just temporary server issue? I am behind a proxy that doesn't support PROPFIND requests and I can't test SVN+SSH, because 22 port is closed. As a workaround, if you only need

Re: [Python-Dev] HTTPS read-only SVN access is denied?

2008-09-03 Thread techtonik
On Wed, Sep 3, 2008 at 6:08 PM, Antoine Pitrou [EMAIL PROTECTED] wrote: As a workaround, if you only need read-only access, you can use the Mercurial mirrors which should work through your proxy (AFAIK Mercurial only uses GET and POST). Type hg clone http://code.python.org/hg/trunk/; or hg

Re: [Python-Dev] HTTPS read-only SVN access is denied?

2008-09-03 Thread Brett Cannon
On Wed, Sep 3, 2008 at 3:39 PM, techtonik [EMAIL PROTECTED] wrote: On Wed, Sep 3, 2008 at 6:08 PM, Antoine Pitrou [EMAIL PROTECTED] wrote: As a workaround, if you only need read-only access, you can use the Mercurial mirrors which should work through your proxy (AFAIK Mercurial only uses GET

Re: [Python-Dev] HTTPS read-only SVN access is denied?

2008-09-03 Thread Antoine Pitrou
techtonik techtonik at gmail.com writes: I do not need the whole branch - only a small subset of files related to distutils. I know that bazaar can't do partial checkouts - it can only fetch the whole branch. What about mercurial? Mercurial can't do it either. But I don't think it matters a

Re: [Python-Dev] HTTPS read-only SVN access is denied?

2008-09-03 Thread Benjamin Peterson
On Wed, Sep 3, 2008 at 6:08 PM, Brett Cannon [EMAIL PROTECTED] wrote: On Wed, Sep 3, 2008 at 3:39 PM, techtonik [EMAIL PROTECTED] wrote: On Wed, Sep 3, 2008 at 6:08 PM, Antoine Pitrou [EMAIL PROTECTED] wrote: As a workaround, if you only need read-only access, you can use the Mercurial