Hi!

- added info on how to get 2.x
- merged mod_perl_cvs

Notes:
Maybe instead of mod_perl_cvs a short example on how to get the cvs with
anoncvs would be enough. Or the general infos (Name of Server, password,
name of project), plus anoncvs example?

1.0/faqs/mod_perl_cvs could be removed

Maybe add a line to Description stating that 2.x is BETA and 1.x is the
current stable release to be use in a production environment.

-- 
 D_OMM      +---->  http://domm.zsi.at <-----+
 O_xyderkes |       neu:  Arbeitsplatz       |   
 M_echanen  | http://domm.zsi.at/d/d162.html |
 M_asteuei  +--------------------------------+


Index: src/docs/1.0/faqs/config.cfg
===================================================================
RCS file: /home/cvspublic/modperl-docs/src/docs/1.0/faqs/config.cfg,v
retrieving revision 1.5
diff -u -r1.5 config.cfg
--- src/docs/1.0/faqs/config.cfg        18 Apr 2002 18:13:05 -0000      1.5
+++ src/docs/1.0/faqs/config.cfg        28 Apr 2002 13:00:51 -0000
@@ -16,7 +16,6 @@
         mod_perl_tuning.pod
         perl_myth.pod
         mod_perl_method_handlers.pod
-        mod_perl_cvs.pod
         Changes.pod
    )],
    copy_glob => [
Index: src/download/source.pod
===================================================================
RCS file: /home/cvspublic/modperl-docs/src/download/source.pod,v
retrieving revision 1.3
diff -u -r1.3 source.pod
--- src/download/source.pod     18 Apr 2002 15:49:05 -0000      1.3
+++ src/download/source.pod     28 Apr 2002 13:00:51 -0000
@@ -4,65 +4,136 @@
 
 =head1 Description
 
-This document explains how to get the mod_perl stable and development
-source distributions.
+This document explains how to get the mod_perl 1.x and 2.x 
+source distributions. 
+
+[META: Maybe state that mod_perl 2.x is not stable software but should be 
considered BETA ??]
 
 See also L<the binary distributions|download::binaries> and the
 L<bundles|download::bundles>.
 
-=head1 How to build the source distribution
+=head1 mod_perl 1.x
 
 Be sure to read the I<README> and I<INSTALL> documents (in the
 distribution package) and the longer L<the installation
-guide|guide::install>.
+guide|docs::1.0::guide::install>.
 
-=head1 How to get the stable source distribution
+=head2 Stable source distribution
 
 =over
 
-=item *
+=item * Master Source distribution
 
-Master Source distribution: Release http://perl.apache.org/dist
+Release http://perl.apache.org/dist
 
-=item *
+=item * CPAN
 
-CPAN: http://www.cpan.org/modules/by-module/Apache/
+http://www.cpan.org/modules/by-module/Apache/
 
-=item *
+=back
 
-SRPMs:
+=head2 Development source distribution
 
-by David Harris: http://www.davideous.com/modperlrpm/distrib/
+=over
 
-by Vladimir Ivaschenko: http://www.hazard.maks.net/apache/
+=item * The latest CVS snapshot
 
+http://cvs.apache.org/snapshots/modperl/
 
-=back
+=item * Access to the CVS repository
 
-=head1 How to get the development source distribution
+[META: delete all this text and leave only the anoncvs section ?]
 
-=over
+Just as cvs access to the Apache development tree, the mod_perl code
+pulled from cvs is not guaranteed to do anything, especially not
+compile or work.  But, that's exactly why we are using cvs, so
+everyone has access the latest version and can help see to it that
+mod_perl does compile and work on all platforms, with the various
+versions and configurations of Perl and Apache.  Patches are always
+welcome, simply testing the latest snapshots is just as, if not more
+helpful.
+
+It's recommended to subscribe to the L<modperl-cvs|maillist::list-cvs> list,
+which is the place cvs commit logs and diffs are mailed to; at least
+if you're going to work on the code.
+
+Here are the several ways to access the cvs tree.
 
-=item *
+=over 
+=item * cvsup
 
-The latest CVS snapshot: http://cvs.apache.org/snapshots/modperl/
+Cvsup has come out of the FreeBSD group. It's a client/server
+beast that offers an efficient way to sync collections of files over
+the net, and it is very CVS aware, allowing synchronisation of repositories
+or checked out files using the cvs deltas to bring the client side
+files up to date with minimal data transfer.
 
-For more information about using the cvs distribution refer to the
-L<mod_perl_cvs|faqs::mod_perl_cvs> document.
+For a FreeBSD cvsup client see:
 
-=item *
+http://www.freebsd.org/cgi/ports.cgi?query=cvsup&stype=all
 
-Anonymous CVS:
+Others (SunOS, alpha.osf, linux, Solaris2.4, HPAA 10.2, irix)
+ftp://ftp.postgresql.org/pub/CVSup/
 
-To checkout a fresh copy from anoncvs use:
+Here's a config file for the client (cvsup) to sync modperl sources.
 
-  % cvs -d ":pserver:[EMAIL PROTECTED]:/home/cvspublic" login
+ *default tag=.
+ # comment out the above if you want the raw cvs files
 
-with the password I<anoncvs>.
+ *default host=cvs.apache.org
+ *default prefix=/path/on/this/machine/to/install/
+ # a subdir for modperl will appear here ^^^
 
-  % cvs -d ":pserver:[EMAIL PROTECTED]:/home/cvspublic" co modperl
+ *default base=/path/on/this/machine/where/cvsup/will/keep/status/info
+ # you'll never need to look in the 'base' dir.
+
+ *default release=cvs delete use-rel-suffix compress
+
+ modperl
+ #apache-src
+ #apache-docs
+ #uncomment these two for the latest apache src and/or docs if you want them
+
+=item * anoncvs
+
+To checkout a fresh copy from anoncvs use with the password "anoncvs". 
+
+ % cvs -d ":pserver:[EMAIL PROTECTED]:/home/cvspublic" login
+ % cvs -d ":pserver:[EMAIL PROTECTED]:/home/cvspublic" co modperl
+
+For a basic introduction to anoncvs see http://httpd.apache.org/dev/anoncvs.txt
 
 =back
 
+=head1 mod_perl 2.x
+
+Be sure to read the I<README> and I<INSTALL> documents (in the
+distribution package) and the longer mod_perl 2.x L<installation
+guide|docs::2.0::user::install::install>.
+
+=head2 Development source distribution
+
+=over 
+
+=item * tarballs
+
+Download the httpd-2.0 (http://www.apache.org/dist/httpd/) and
+modperl-2.0 tarballs, and extract them in the same directory.
+
+=item * cvs
+
+Using anoncvs (password is "anoncvs"):
+
+ % cvs -d :pserver:[EMAIL PROTECTED]:/home/cvspublic login
+ % cvs -d :pserver:[EMAIL PROTECTED]:/home/cvspublic co modperl-2.0
+ % cvs -d :pserver:[EMAIL PROTECTED]:/home/cvspublic co httpd-2.0
+ % cd httpd-2.0/srclib
+ % cvs -d :pserver:[EMAIL PROTECTED]:/home/cvspublic co apr
+ % cvs -d :pserver:[EMAIL PROTECTED]:/home/cvspublic co apr-util
+
+=back
 
 =cut
+
+
+


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to