[fpc-devel] FPC SVN Error and Wow!

2008-11-07 Thread listmember
I was trying to get a copy of the whole FPC SVN, but at some point, I get the following error: "Server sent unexpected return value (413 Request Entity Too Large) in response to REPORT request for '/svn/fpc/!svn/vcc/default'" Does anyone have any idea why I get this "413 Request Entity Too La

Re: [fpc-devel] FPC SVN Error and Wow!

2008-11-07 Thread Felipe Monteiro de Carvalho
What svn command line are you using? Maybe you are trying to download everything, including all tags, all branches, all binary files, etc, etc. Usually you only want to download either trunk or the latest fixes branch. -- Felipe Monteiro de Carvalho _

Re: [fpc-devel] FPC SVN Error and Wow!

2008-11-07 Thread listmember
On 2008-11-07 17:40, Felipe Monteiro de Carvalho wrote: What svn command line are you using? I am using the latest stable TortoiseSVN (Windows). Maybe you are trying to download everything, including all tags, all branches, all binary files, etc, etc. Yes. I deliberately want to do that.

Re: [fpc-devel] FPC SVN Error and Wow!

2008-11-07 Thread Felipe Monteiro de Carvalho
On Fri, Nov 7, 2008 at 1:57 PM, listmember <[EMAIL PROTECTED]> wrote: > I am using the latest stable TortoiseSVN (Windows). I mean what command are you using. Something like: svn co blablabla -- Felipe Monteiro de Carvalho ___ fpc-devel maillist - f

Re: [fpc-devel] FPC SVN Error and Wow!

2008-11-07 Thread listmember
I mean what command are you using. Something like: svn co blablabla Since this is a point-n-click GUI thing, there's no command line that I know of. But the URL I am using is this: http://svn.freepascal.org/svn/fpc ___ fpc-devel maillist - fpc-d

Re: [fpc-devel] FPC SVN Error and Wow!

2008-11-07 Thread Aleksa Todorovic
So, which action from right-click menu have you chosen? SVN Checkout? -- Aleksa Todorovic Lead Programmer Eipix, Game Develoopment Company www.eipix.com On Fri, Nov 7, 2008 at 17:07, listmember <[EMAIL PROTECTED]> wrote: >> I mean what command are you using. Something like: >> >> svn co

Re: [fpc-devel] FPC SVN Error and Wow!

2008-11-07 Thread Michael Van Canneyt
On Fri, 7 Nov 2008, listmember wrote: > > I mean what command are you using. Something like: > > > > svn co blablabla > > Since this is a point-n-click GUI thing, there's no command line that I know > of. > > But the URL I am using is this: > > http://svn.freepascal.org/svn/fpc You should be

Re: [fpc-devel] FPC SVN Error and Wow!

2008-11-07 Thread listmember
You were trying to download trunk and all possible branches. Of course I am. That was and is my intention. My problem isn't disk space. Problem seems to be on the side of the server --somehow. It tells my side (client, i.e. TortoiseSVN) "413 Request Entity Too Large" at exactly the same poi

Re: [fpc-devel] FPC SVN Error and Wow!

2008-11-07 Thread listmember
On 2008-11-07 19:12, Aleksa Todorovic wrote: So, which action from right-click menu have you chosen? SVN Checkout? First 'SVN Checkout'; then --after each failure-- 'SVN Update' ___ fpc-devel maillist - fpc-devel@lists.freepascal.org http://lists.fr

Re: [fpc-devel] FPC SVN Error and Wow!

2008-11-07 Thread Michael Van Canneyt
On Fri, 7 Nov 2008, listmember wrote: > > You were trying to download trunk and all possible branches. > > Of course I am. That was and is my intention. > > My problem isn't disk space. Problem seems to be on the side of the server > --somehow. > > It tells my side (client, i.e. TortoiseSVN)

Re: [fpc-devel] FPC SVN Error and Wow!

2008-11-07 Thread listmember
And the error is quite clear: you're pushing too much data to the server. I don't have 'write' access. Not have I done any alterations to copy I have so far managed to get. What data could I be pushing to the server? Try cutting up in several smaller chunks: Browse the server repository, an

Re: [fpc-devel] FPC SVN Error and Wow!

2008-11-07 Thread Michael Van Canneyt
On Fri, 7 Nov 2008, listmember wrote: > > And the error is quite clear: you're pushing too much data to the server. > > I don't have 'write' access. Not have I done any alterations to copy I have so > far managed to get. > > What data could I be pushing to the server? The state of your curren

Re: [fpc-devel] FPC SVN Error and Wow!

2008-11-07 Thread listmember
What data could I be pushing to the server? The state of your current copy of the repository; From this the server can determine what data it should send and what not. If there are too many files, this will amount to a big request, and that could cause such an error response. H.. That make