Re: [PHP-DOC] re: full cvs copy

2003-11-05 Thread Jesus M. Castagnetto
The emails to use to get a tarball of anything on the main php.net machines are: [EMAIL PROTECTED] and/or [EMAIL PROTECTED] --- Jeremy Johnstone <[EMAIL PROTECTED]> wrote: > What he really needs to do is just email one of the > people who has shell > access to the CVS server so that way they can

Re: [PHP-DOC] re: full cvs copy

2003-11-05 Thread Jeremy Johnstone
What he really needs to do is just email one of the people who has shell access to the CVS server so that way they can make a tarball of the directory for him. That way he will have full history on the files as he was wanting without massively attacking the server. I am not sure who all has access,

Re: [PHP-DOC] re: full cvs copy

2003-11-04 Thread Gabor Hojtsy
You could run this for each module, but it'll tax the CVS server pretty heavily, and you'll have a mess on your end (sorting). It'll work, though.. (tested very quickly; may be buggy). #--CUT EXTENSION=xml; SUFFIX="_REV-"; for f in `find . -name '*.'$EXTENSION`; do REV=`cvs log $f | grep "^revisi

[PHP-DOC] re: full cvs copy

2003-11-04 Thread Sean Coates
You could run this for each module, but it'll tax the CVS server pretty heavily, and you'll have a mess on your end (sorting). It'll work, though.. (tested very quickly; may be buggy). #--CUT EXTENSION=xml; SUFFIX="_REV-"; for f in `find . -name '*.'$EXTENSION`; do REV=`cvs log $f | grep "^revis

Re: [PHP-DOC] Re: full cvs copy

2003-11-04 Thread Gabor Hojtsy
I need all the revisions to test the part of the program that handles with outdated translated files. OK, why do you need all the previous revisions? Are the program going to need them all for its normal working? It will not work at all then... There is simply too much data to parse... Goba

Re: [PHP-DOC] Re: full cvs copy

2003-11-04 Thread Nuno Lopes
es" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, November 04, 2003 7:52 PM Subject: Re: [PHP-DOC] Re: full cvs copy > > Sorry, but what is that parameter?? I now that exists one option to retrieve > > a special revision, but I don't know how to retr

Re: [PHP-DOC] Re: full cvs copy

2003-11-04 Thread Gabor Hojtsy
Sorry, but what is that parameter?? I now that exists one option to retrieve a special revision, but I don't know how to retriece all of them. Erm, there is no parameter to get all of them. You can get the history of the file, and get all the previous revisions... I don't know of an automatic way

Re: [PHP-DOC] Re: full cvs copy

2003-11-04 Thread Nuno Lopes
Sorry, but what is that parameter?? I now that exists one option to retrieve a special revision, but I don't know how to retriece all of them. Nuno > Chechkout has a parameter to get all the revisions. It will be a > **huge** amount of data. I doubt anyone has copies of all revisions... > > Gob

Re: [PHP-DOC] Re: full cvs copy

2003-11-04 Thread Gabor Hojtsy
But then I will get only the latest revision. I need all revisions in order to test the program. Chechkout has a parameter to get all the revisions. It will be a **huge** amount of data. I doubt anyone has copies of all revisions... Goba

Re: [PHP-DOC] Re: full cvs copy

2003-11-04 Thread Nuno Lopes
But then I will get only the latest revision. I need all revisions in order to test the program. - Original Message - From: "Mehdi Achour" <[EMAIL PROTECTED]> To: "Nuno Lopes" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, November

[PHP-DOC] Re: full cvs copy

2003-11-04 Thread Mehdi Achour
Hi nuno, You can get all the repository you want using the anonymous user as explained here : http://www.php.net/anoncvs.php For the list of repositories, check this out : http://cvs.php.net/ didou Hello, I'm now trying to test the program I'm doing to translate the manual using the bro