cortesi Thu Mar 28 11:21:54 2002 EDT
Modified files:
/phpdoc/en/functions curl.xml
Log:
* adding <filename> around netrc
* 3 uppercasing
* 3 rewordings
Index: phpdoc/en/functions/curl.xml
diff -u phpdoc/en/functions/curl.xml:1.32 phpdoc/en/functions/curl.xml:1.33
--- phpdoc/en/functions/curl.xml:1.32 Thu Mar 28 08:41:01 2002
+++ phpdoc/en/functions/curl.xml Thu Mar 28 11:21:54 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.32 $ -->
+<!-- $Revision: 1.33 $ -->
<reference id="ref.curl">
<title>CURL, Client URL Library Functions</title>
<titleabbrev>CURL</titleabbrev>
@@ -217,9 +217,9 @@
<listitem>
<simpara>
<parameter>CURLOPT_NETRC</parameter>: Set this option to a
- non-zero value and PHP will scan your ~./netrc file to find
- your username and password for the remote site that you're
- establishing a connection with.
+ non-zero value and PHP will scan your <filename>~./netrc</filename>
+ file to find your username and password for the remote site that
+ you're establishing a connection with.
</simpara>
</listitem>
<listitem>
@@ -249,7 +249,7 @@
<simpara>
<parameter>CURLOPT_TIMEOUT</parameter>: Pass a long as a
parameter that contains the maximum time, in seconds, that
- you'll allow the curl functions to take.
+ you'll allow the CURL functions to take.
</simpara>
</listitem>
<listitem>
@@ -287,7 +287,7 @@
<listitem>
<simpara>
<parameter>CURLOPT_SSL_VERIFYHOST</parameter>: Pass a long if
- cURL should verify the Common name of the peer certificate in the
+ CURL should verify the Common name of the peer certificate in the
SSL handshake. A value of 1 denotes that we should check for the
existence of the common name, a value of 2 denotes that we should
make sure it matches the provided hostname.
@@ -312,7 +312,7 @@
<listitem>
<simpara>
<parameter>CURLOPT_RETURNTRANSFER</parameter>: Pass a non-zero
- value if you want cURL to directly return the transfer instead
+ value if you want CURL to directly return the transfer instead
of printing it out directly.
</simpara>
</listitem>
@@ -375,7 +375,7 @@
<listitem>
<simpara>
<parameter>CURLOPT_FTPPORT</parameter>: Pass a string
- containing the which will be used to get the IP address to use
+ containing the value which will be used to get the IP address to use
for the ftp "POST" instruction. The POST instruction tells
the remote server to connect to our specified IP address. The
string may be a plain IP address, a hostname, a network
@@ -445,7 +445,7 @@
<listitem>
<para>
<parameter>CURLOPT_KRB4LEVEL</parameter>: Pass the KRB4 (Kerberos
- 4) security level. This anyone of the following strings (in
+ 4) security level. Anyone of the following strings (in
order from least powerful, to most powerful): 'clear', 'safe',
'confidential', 'private'. If the string does not match one of
these, then 'private' is used. If you set this to NULL,
@@ -519,7 +519,7 @@
<methodparam><type>int</type><parameter>ch</parameter></methodparam>
</methodsynopsis>
<para>
- This function is should be called after you initialize a CURL
+ This function should be called after you initialize a CURL
session and all the options for the session are set. Its purpose
is simply to execute the predefined CURL session (given by the
<parameter>ch</parameter>).