From 94c13e35457bebb9f40a1ca867423f479325ae37 Mon Sep 17 00:00:00 2001
From: Gwynne Raskind
Date: Mon, 13 Jul 2009 08:14:46 +0000
Subject: [PATCH] - Redirects from CVS pages to SVN pages - CVS -> SVN in all
affected pages Most of this work was done by Shawn Stratton.
---
anoncvs.php | 183 ----------------------------
anonsvn.php | 153 +++++++++++++++++++++++
error.php | 4 +
include/languages.inc | 2 +-
license/contrib-guidelines-code.php | 2 +-
mirroring.php | 10 +-
search.php | 4 +-
sitemap.php | 8 +-
sites.php | 16 ++-
source.php | 4 +-
cvs-php.php => svn-php.php | 142 ++++++++++-----------
urlhowto.php | 4 +-
12 files changed, 261 insertions(+), 271 deletions(-)
delete mode 100644 anoncvs.php
create mode 100644 anonsvn.php
rename cvs-php.php => svn-php.php (72%)
diff --git a/anoncvs.php b/anoncvs.php
deleted file mode 100644
index 68967a1a3..000000000
--- a/anoncvs.php
+++ /dev/null
@@ -1,183 +0,0 @@
-What is CVS?
-
- You can find more information about CVS, and
- download clients for most major platforms, at
- the CVS Wiki.
-
-
-CVS mirroring
-
- You can also mirror the PHP CVS repository using CVSup, see
- our CVSup page for more details.
-
-
-Contribute
-
- If you would like to join PHP development or would like to
- contribute to the PHP documentation, contact the relevant
- group. You will need your own CVS account
- to contribute.
-
-
-Source and binary snapshots
-
- You may also be interested in a PHP snapshot, see
- snaps.php.net.
- Compiled snapshots for Windows users are also included.
-
-';
-site_header("Anonymous CVS Access");
-?>
-
-Anonymous CVS Access
-
-
- If you wish to get the latest PHP source tree, you can obtain it
- through anonymous CVS. You should be warned that the CVS version
- is a development version, and as such, is often unstable, and may
- not even compile properly. The advantage of using CVS, though,
- is that you can get the latest fixes and updates, without having
- to wait for the official releases.
-
-
-
- PHP uses an advanced configuration system that requires you to have
- the following tools. Re2c is only necessary for developers and can be found
- here.
- All other utilities can be obtained from
- the GNU FTP site.
-
-
-
- - autoconf: 2.13
- - automake: 1.4+
- - libtool: 1.4.x+ (except 1.4.2)
- - bison: 1.28, 1.35, 1.75, 2.0 or higher
- - flex: 2.5.4 (not higher)
- - re2c: 0.9.11+ (0.12.0+ for HEAD)
-
-
-
- If you're experiencing problems, see also the section on
- buildconf failures.
-
-
-Steps for using PHP from CVS
-
- -
- It is recommended that you configure CVS by putting this
- in your
~/.cvsrc file:
-
-cvs -z3
-update -d -P
-checkout -P
-diff -u
-
-
-
- -
- Log in to the PHP CVS server. We'll use the anonymous user cvsread
- as the username, and use phpfi as the password:
- cvs -d :pserver:cvsread@cvs.php.net:/repository login
-
-
- -
- Obtain the latest PHP source from CVS. There is a single php-src
- directory that contains all PHP branches. To get PHP from CVS,
- use the "cvs checkout -r BRANCH" notation. To checkout the
- latest, consider the following CVS commands:
- PHP 4.4:
- cvs -d :pserver:cvsread@cvs.php.net:/repository checkout -r PHP_4_4 php-src
-
- PHP 5.2:
- cvs -d :pserver:cvsread@cvs.php.net:/repository checkout -r PHP_5_2 php5
-
- PHP 5.3:
- cvs -d :pserver:cvsread@cvs.php.net:/repository checkout -r PHP_5_3 php5
-
- PHP 6:
- cvs -d :pserver:cvsread@cvs.php.net:/repository checkout php6
-
- Some tips and notes:
-
-
-
You may retrieve a specific release of PHP from CVS by using the
- -r flag in your cvs command. Some examples:
- cvs -d :pserver:cvsread@cvs.php.net:/repository checkout -r php_4_2_1 php-src
- cvs -d :pserver:cvsread@cvs.php.net:/repository checkout -r php_4_3_2 php-src
-
-
- -
- The branch names can also be used for cvs diff and merge operations.
-
- -
- You can also specify the directory name, for example, to put PHP 6 HEAD into a directory
- named php6dev:
- cvs -d :pserver:cvsread@cvs.php.net:/repository checkout -d php6dev php6
-
-
-
-
- -
- Make sure you have autoconf 2.13 or newer, automake 1.4 or newer and libtool
- 1.4.
-
-
Note that certain combinations of autoconf, automake and libtool may not
- work when used together. See below for
- details.
- Also, certain versions of autoconf may generate warnings of AC_PROG_CPP
- called before AC_PROG_CC. These messages can usually be ignored.
-
-
-
- -
- Run
./buildconf. After a while, the configure script should be generated.
-
-
- -
- From this point onwards, installation is similar to the installation of one of
- the official packages with one main difference – you must have bison 1.28 or later
- and flex 2.5.4 to compile, because the pre-generated scanner and parser
- files are not included in CVS.
-
-
-
-
- There are also other things, like the XML source code
- for the documentation, available via anonymous CVS. See
- the web-based view of the CVS
- server to see what is available. For example, to checkout the
- latest english version of the PHP manual:
- cvs -d :pserver:cvsread@cvs.php.net:/repository checkout phpdoc
-
-
-
-autoconf, automake and libtool information
-
-
- There seem to be problems with libtool 1.4.2. It is suggested
- that you use libtool 1.4, along with autoconf 2.13 and
- automake 1.4. You should also ensure that autoconf, automake
- and libtool are installed in the same directory. libtool 1.5
- will not work.
-
-
-The following combinations are known to work:
-
- - autoconf 2.13, automake 1.4 and libtool 1.4.3
- - autoconf 2.13, automake 1.5 and libtool 1.4.3
-
-
-
-Zend/zend_language_scanner.c: No such file or directory
-
-
- PHP only supports flex 2.5.4, not later versions as they broke backwards compatibility
-
-
-
diff --git a/anonsvn.php b/anonsvn.php
new file mode 100644
index 000000000..c025578ab
--- /dev/null
+++ b/anonsvn.php
@@ -0,0 +1,153 @@
+What is SVN?
+
+ You can find more information about SVN, and
+ download clients for most major platforms, at
+ the official SVN site.
+
+
+
+Contribute
+
+ If you would like to join PHP development or would like to
+ contribute to the PHP documentation, contact the relevant
+ group. You will need your own SVN account
+ to contribute.
+
+
+Source and binary snapshots
+
+ You may also be interested in a PHP snapshot, see
+ snaps.php.net.
+ Compiled snapshots for Windows users are also included.
+
+';
+site_header("SVN Access");
+?>
+
+SVN Access
+
+
+ If you wish to get the latest PHP source tree, you can obtain it
+ through SVN. You should be warned that the SVN version
+ is a development version, and as such, is often unstable, and may
+ not even compile properly. The advantage of using SVN, though,
+ is that you can get the latest fixes and updates, without having
+ to wait for the official releases.
+
+
+
+ PHP uses an advanced configuration system that requires you to have
+ the following tools. re2c is only necessary for developers and can be found
+ here.
+ All other utilities can be obtained from
+ the GNU FTP site.
+
+
+
+ - autoconf: 2.13
+ - automake: 1.4+
+ - libtool: 1.4.x+ (except 1.4.2)
+ - bison: 1.28, 1.35, 1.75, 2.0 or higher
+ - flex (PHP 5.2 and earlier): 2.5.4 (not higher)
+ - re2c: 0.13.4+
+
+
+
+ If you're experiencing problems, see also the section on
+ buildconf failures.
+
+
+Steps for using PHP from SVN
+
+
+ -
+ Obtain the latest PHP source from SVN. There is a single php-src
+ directory that contains all PHP branches and tags. To get PHP from SVN,
+ use the "svn checkout http://svn.php.net/repository/php/php-src/branches/BRANCH" notation. To checkout the
+ latest, consider the following SVN commands:
+ PHP 5.2:
+ svn checkout http://svn.php.net/repository/php/php-src/branches/PHP_5_2 php-src-5.2
+
+ PHP 5.3:
+ svn checkout http://svn.php.net/repository/php/php-src/branches/PHP_5_3 php-src-5.3
+
+ PHP 6:
+ svn checkout http://svn.php.net/repository/php/php-src/trunk php-src
+
+ The branch names can also be used for SVN diff and merge operations.
+
+
+ -
+ Make sure you have autoconf 2.13 or newer, automake 1.4 or newer and libtool
+ 1.4.
+
+
Note that certain combinations of autoconf, automake and libtool may not
+ work when used together. See below for
+ details.
+ Also, certain versions of autoconf may generate warnings of AC_PROG_CPP
+ called before AC_PROG_CC. These messages can usually be ignored.
+
+
+
+ -
+ Run
./buildconf to generate the configure script. This may take several moments.
+
+
+ -
+ From this point onwards, installation is similar to the installation of one of
+ the official packages with one main difference – you may need bison 1.28 or later
+ and flex 2.5.4 (PHP 5.2 and earlier) or re2c 0.13.4+ or later (PHP 5.3 and later) to
+ compile, because the pre-generated scanner and parser files may not
+ be included in SVN.
+
+
+
+
+ There are many other things, such as the XML source code
+ for the documentation, available via SVN. See
+ the web-based view of the SVN
+ server to see what is available. For example, to checkout the
+ latest english version of the PHP manual:
+ svn checkout http://svn.php.net/repository/phpdoc/en/trunk ./phpdoc-en
+
+
+
+autoconf, automake and libtool information
+
+
+ There seem to be problems with libtool 1.4.2. It is suggested
+ that you use libtool 1.4, along with autoconf 2.13 and
+ automake 1.4. You should also ensure that autoconf, automake
+ and libtool are installed in the same directory. libtool 1.5
+ will not work.
+
+
+The following combinations are known to work:
+
+ - autoconf 2.13, automake 1.4 and libtool 1.4.3
+ - autoconf 2.13, automake 1.5 and libtool 1.4.3
+ - autoconf 2.63, automake 1.11 and libtool 2.2.6 (with many warnings)
+
+
+
+ If you have multiple versions of autoconf installed on your computer, as is
+ common for many UNIXes, you can set the PHP_AUTOCONF and PHP_AUTOHEADER
+ variables when running buildconf to indicate which versions it should use
+ e.g.:
+ PHP_AUTOCONF=autoconf213 PHP_AUTOHEADER=autoheader213 ./buildconf
+
+
+
+Zend/zend_language_scanner.c: No such file or directory
+
+
+ PHP only supports flex 2.5.4, not later versions as they broke backwards compatibility.
+ Please note that PHP 5.3 and later do not require flex at all.
+
+
+
diff --git a/error.php b/error.php
index 482881741..63e686b1b 100644
--- a/error.php
+++ b/error.php
@@ -386,6 +386,10 @@ $uri_aliases = array (
# external shortcut aliases ;)
"dochowto" => "phpdochowto",
"projects.php" => "projects", // BC
+
+ # CVS -> SVN
+ "anoncvs.php" => "anonsvn",
+ "cvs-php.php" => "svn-php",
);
$external_redirects = array(
diff --git a/include/languages.inc b/include/languages.inc
index 356ddc26b..6e78f76ef 100644
--- a/include/languages.inc
+++ b/include/languages.inc
@@ -4,7 +4,7 @@
/*
This is a list of all manual languages hosted
- within PHP CVS modules (phpdoc-{lang})
+ within PHP SVN modules (phpdoc-{lang})
Some codes, like "kr", "tw" and "hk" are not in
conformance with the official language code standard!
diff --git a/license/contrib-guidelines-code.php b/license/contrib-guidelines-code.php
index 15dc0de89..f439616a2 100644
--- a/license/contrib-guidelines-code.php
+++ b/license/contrib-guidelines-code.php
@@ -7,7 +7,7 @@ site_header("License Information");
PHP Contributor Guidelines for Code Developers
- Before you complete the form to request a CVS id, you must understand and accept the principles under which PHP
+ Before you complete the form to request a SVN account, you must understand and accept the principles under which PHP
itself is developed. These are summarised in the next paragraph.
diff --git a/mirroring.php b/mirroring.php
index 3fb52cb20..734e563b4 100644
--- a/mirroring.php
+++ b/mirroring.php
@@ -8,15 +8,17 @@ $SIDEBAR_DATA = '
Properly working mirror sites are listed on our
mirrors page.
-
-CVS repository mirroring
+';
+/*
+SVN repository mirroring
If you are interested in using a local copy of our
- CVS repository for yourself, we provide
- CVSUp instructions
+ SVN repository for yourself, we provide
+ svnsync instructions
separately.
';
+*/
site_header("Mirroring The PHP Website");
diff --git a/search.php b/search.php
index aac8c3a4b..5144ec298 100644
--- a/search.php
+++ b/search.php
@@ -125,8 +125,8 @@ else {
In case you find any bugs, we are interested
in a detailed writeup, including JS error messages, operating system and browser
information. The source code of this feature is released under the PHP License and
- is available from the
- PHP CVS server without any support.
+ is available from the
+ PHP SVN server without any support.
PHP.net Sites List
-CVS instructions
+SVN instructions
Mirror sites
diff --git a/sites.php b/sites.php
index 3b64e3fb7..5bd1ee4f5 100644
--- a/sites.php
+++ b/sites.php
@@ -163,16 +163,24 @@ site_header("A Tourist's Guide");
process.
-
+
- The PHP project is organized with a CVS server, and this website is the web
+ The PHP project is organized with a SVN server, and this website is the web
interface to it. There you can browse the history (and latest versions) of the
source code for all of the PHP projects. For example, the php-src module is the
+ href="http://svn.php.net/php/php-src/">php-src module is the
repository for the source code to the latest version of PHP itself.
+cvs.php.net: Archived CVS Repository
+
+
+ The PHP project used to be organized under the CVS revision control system, but
+ migrated to Subversion (see above) in July of 2009. The old CVS repository is
+ archived here for posterity.
+
+
@@ -204,7 +212,7 @@ site_header("A Tourist's Guide");
This site is dedicated to automatic PHP code coverage testing. On a regular
- basis current CVS snapshots are being build and tested on this machine. After
+ basis current SVN snapshots are being build and tested on this machine. After
all tests are done the results are visualized along with a code coverage
analysis.
diff --git a/source.php b/source.php
index 36335221b..ee4f1b619 100644
--- a/source.php
+++ b/source.php
@@ -28,8 +28,8 @@ $SIDEBAR_DATA = '
Of course, if you want to see the source
of this page, we have it available.
- You can also browse the CVS repository for this website on
- cvs.php.net.
+ You can also browse the SVN repository for this website on
+ svn.php.net.
';
site_header("Show Source");
diff --git a/cvs-php.php b/svn-php.php
similarity index 72%
rename from cvs-php.php
rename to svn-php.php
index 44198b840..40e10a6ba 100644
--- a/cvs-php.php
+++ b/svn-php.php
@@ -1,26 +1,26 @@
More about CVS
+More about SVN
- You can find more information about CVS, and
+ You can find more information about SVN, and
download clients for most major platforms, at
- the CVS Wiki.
+ the official SVN site.
-Anonymous CVS access
+Anonymous SVN access
If you would like to grab PHP sources or other PHP.net
hosted project data from PHP.net, you can also use
- anonymous CVS.
+ anonymous SVN.
';
-site_header("Using CVS for PHP Development");
+site_header("Using SVN for PHP Development");
$groups = array(
"php" => "PHP Group",
@@ -31,14 +31,14 @@ $groups = array(
?>
-Using CVS for PHP Development
+Using SVN for PHP Development
$v) {
$cleaned[$k] = stripslashes($v);
}
@@ -52,37 +52,37 @@ if (count($_POST) && (!is_array($_POST['purpose']) || !count($_POST['purpose']))
// Check for errors
if (empty($_POST['id'])) {
- $error .= "You must supply a desired CVS id. ";
+ $error .= "You must supply a desired SVN user id.
";
} elseif(!preg_match('!^[a-z]\w+$!', $_POST['id'])) {
$error .= "Your user id must be >1 char long, start with ".
- "a letter and contain nothing but a-z or 0-9 and _";
+ "a letter and contain nothing but a-z, 0-9, and _
";
}
if (empty($_POST['fullname'])) {
- $error .= "You must supply your real name. ";
+ $error .= "You must supply your real name.
";
}
if (empty($_POST['realpurpose'])) {
- $error .= "You must supply a reason for requesting the CVS account. ";
+ $error .= "You must supply a reason for requesting the SVN account.
";
}
if (empty($_POST['password'])) {
- $error .= "You must supply a desired password. ";
+ $error .= "You must supply a desired password.
";
}
if (empty($_POST['email']) || !is_emailable_address($cleaned['email'])) {
- $error .= "You must supply a proper email address. ";
+ $error .= "You must supply a proper email address.
";
}
if (empty($_POST['yesno']) || $_POST['yesno'] != 'yes') {
- $error .= "You did not fill the form out correctly. ";
+ $error .= "You did not fill the form out correctly.
";
}
if (empty($_POST['group']) || !isset($groups[$_POST['group']])) {
- $error .= "You did not fill out where to send the request. ";
+ $error .= "You did not fill out where to send the request.
";
}
if (!isset($_POST['guidelines']) || !$_POST['guidelines']) {
- $error .= "You did not agree to follow the contribution guidelines. ";
+ $error .= "You did not agree to follow the contribution guidelines.
";
}
// Post the request if there is no error
if (!$error) {
$error = posttohost(
- "http://master.php.net/entry/cvs-account.php",
+ "http://master.php.net/entry/svn-account.php",
array(
"username" => $cleaned['id'],
"name" => $cleaned['fullname'],
@@ -107,7 +107,7 @@ if (count($_POST) && (!is_array($_POST['purpose']) || !count($_POST['purpose']))
?>
Thank you. Your request has been sent. You should hear something within the
- next week or so. If you haven't heard anything by around
+ next week or so. If you haven't heard anything by around
then please send an email to the appropriate mailing list:
@@ -122,46 +122,51 @@ if (count($_POST) && (!is_array($_POST['purpose']) || !count($_POST['purpose']))
forgotten you, but you haven't forgotten us! It happens. There's several of
us, and sometimes we think that someone else has taken care of your request,
and they think that we took care of it. Sorry. You can also speed up the
- process by having an existing CVS account holder who works in the area you are
+ process by having an existing SVN account holder who works in the area you are
interested in mail us to vouch for you.
- If you are not familiar with CVS, you should have a look at the various
+ If you are not familiar with SVN, you should have a look at the various
documentation resources available in the CVS Wiki. This is
- also where to get the most recent version of the CVS client.
+ href="http://subversion.tigris.org/">the official SVN site. This is
+ also where to get the most recent version of the SVN client.
- All CVS commit messages to the PHP sources get sent to the php-cvs mailing list.
- You should subscribe yourself to this mailing list. Instructions for subscribing
- are on the Mailing Lists page.
+ All SVN commit messages to the PHP sources get sent to the php-svn mailing lists.
+ You should subscribe yourself to one or more of these mailing lists. Instructions
+ for subscribing are on the Mailing Lists page.
- CVS itself is quite easy to use. You will not be able to check out your
- own copy of the CVS tree, until you receive confirmation of your account
- having been created. After that, you can follow the steps listed on the
- anonymous CVS page for checking out your tree.
- Substitute your own user name for 'cvsread' and use the password you
- submitted.
+ SVN itself is quite easy to use. You can follow the steps listed on the
+ anonymous SVN page for checking out your tree.
+ Please note that you do not have to log in to check out your tree; you will
+ not be asked for your username and password until you attempt to commit changes.
- Next, once you have your CVS tree you need to know the following commands.
+ Next, once you have your SVN tree you need to know the following commands.
They should all be executed from within the checked out tree. eg.
cd php-src.
- - cvs update -dP
+ - svn update
-
This fetches all updates made by others and brings your tree up to date.
Before starting to edit anything in the tree you should do this. Generally
- you would do this whenever you see a CVS commit message on the php-cvs
+ you would do this whenever you see a SVN commit message on the php-SVN
mailing list.
- - cvs commit
+ - svn diff
+ -
+ This displays all changes you have made anywhere in the tree in
+ unified diff format.
+ This is a very good (and strongly recommended) way to review your changes
+ before you decide to commit them.
+
+ - svn commit
-
This commits any changes you have made anywhere in the tree. A text
editor will pop up and you will need to describe the changes you made.
@@ -188,26 +193,26 @@ EOT;
All PHP development is done through a distributed revision control system
- called CVS. This helps us track changes and it makes it possible for people
+ called SVN. This helps us track changes and it makes it possible for people
located in all corners of the world to collaborate on a project without
having to worry about stepping on each others' toes.
- Please note that you do not need a CVS account to access the CVS tree, to use PHP,
- or to write PHP scripts. You only need a CVS account if you will be a
+ Please note that you do not need a SVN account to access the SVN tree, to use PHP,
+ or to write PHP scripts. You only need a SVN account if you will be a
regular contributor to the development of PHP itself.
- And once again since people just don't seem to understand this point:
+ And once again, since people just don't seem to understand this point:
- | Does Not Require CVS Account |
- Requires CVS Account |
+ Does Not Require SVN Account |
+ Requires SVN Account |
| Learning PHP |
@@ -249,7 +254,7 @@ EOT;
If you are contributing a patch, a small fix, or another minor change you do
- not need to ask for a CVS account before submitting it. Just send your patch to
+ not need to ask for a SVN account before submitting it. Just send your patch to
the internals mailing list. You
should subscribe to that
list to participate in any discussion your patch generates! Your patch may
@@ -263,7 +268,7 @@ EOT;
Submitting patches and participating in the discussion on the 'internals' list
- before requesting full CVS access is strongly suggested, so
+ before requesting full SVN access is strongly suggested, so
the PHP development team can get to know you and what you'll be contributing.
It is suggested that all PHP developers (people developing PHP
itself, not people developing in PHP) subscribe to this list.
@@ -277,55 +282,56 @@ EOT;
If you wish to contribute to the documentation please contact the translation
team for the language you wish to help with. If you have trouble finding the
team, ask on the phpdoc mailing list. Once you have made contact you may
- apply for a CVS account here by including the name of one or more people from
+ apply for a SVN account here by including the name of one or more people from
the existing translation team that referred you and of course the language
you wish to translate to.
If you have a new PEAR package you wish to contribute, propose it
- through the PEPR system on the PEAR website. If you have a new PECL
- extension you wish to contribute, bring it up on the appropriate PECL
- mailing list first.
+ through the PEPR system on
+ the PEAR website. If you have a new PECL
+ extension you wish to contribute, bring it up on the appropriate
+ PECL mailing list first.
Once your PEAR package has been approved, or you get the sense that
people generally agree that your PECL contribution is worthwhile, you
- may apply for a CVS account here. Specify the name of your PEAR package
- or PECL contribution (single word CVS module name) and also reference an
+ may apply for a SVN account here. Specify the name of your PEAR package
+ or PECL contribution (single word SVN module name) and also reference an
existing account holder who can vouch for your contribution, or provide
a link to your PEAR proposal.
- Okay, if you are still reading, then you may actually need a CVS account.
+ Okay, if you are still reading, then you may actually need a SVN account.
This is not an automatic process. Fill in the form below to
request an account. In the box next to "Purpose", describe what it is that
- you intend to do with CVS access. If it isn't clear from what you've
- described already, tell us what parts of the CVS repository you need access
+ you intend to do with SVN access. If it isn't clear from what you've
+ described already, tell us what parts of the SVN repository you need access
to (for example, "phpdoc" is the documentation tree, "php-src/ext/readline"
is the PHP readline extension). If someone told you to fill out the form
here, make sure to mention them here!
- The CVS account, once granted and activated (which could take a while, so be
+ The SVN account, once granted and activated (which could take a while, so be
patient!), gives you access to a number of things. First, and most
- importantly, it gives you access to modify those parts of the PHP CVS tree for
+ importantly, it gives you access to modify those parts of the PHP SVN tree for
which you have requested and been granted access. It also allows you to comment
on and close bugs in our bug database, and
allows you to modify the documentation notes in the annotated
- manual. Your CVS account also translates into a foo@php.net forwarding email
- address where foo is your CVS user id. Feel free to use it!
+ manual. Your SVN account also translates into a foo@php.net forwarding email
+ address where foo is your SVN user id. Feel free to use it!
-Request a CVS account
+Request a SVN account
- Please note that you do NOT need a CVS account to study PHP. You do
- NOT need a CVS account to learn PHP, to use PHP or to in any way do
+ Please note that you do NOT need a SVN account to study PHP. You do
+ NOT need a SVN account to learn PHP, to use PHP or to in any way do
anything at all with PHP. If you are sitting there wondering if you need a
- CVS account, then you don't! If an existing CVS account holder suggested you
- request an account, please mention their CVS id in the request.
+ SVN account, then you don't! If an existing SVN account holder suggested you
+ request an account, please mention their SVN id in the request.
Also note that information provided here will be sent to a public
@@ -336,7 +342,7 @@ EOT;
} // endif: no data submitted
?>
-