ljbuesch Fri Jun 8 02:07:12 2007 UTC
Modified files: /phpdoc/en/reference/curl/functions curl-exec.xml curl-setopt-array.xml curl-setopt.xml Log: Removal of personalization. http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/curl/functions/curl-exec.xml?r1=1.10&r2=1.11&diff_format=u Index: phpdoc/en/reference/curl/functions/curl-exec.xml diff -u phpdoc/en/reference/curl/functions/curl-exec.xml:1.10 phpdoc/en/reference/curl/functions/curl-exec.xml:1.11 --- phpdoc/en/reference/curl/functions/curl-exec.xml:1.10 Fri Jun 1 03:01:42 2007 +++ phpdoc/en/reference/curl/functions/curl-exec.xml Fri Jun 8 02:07:11 2007 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.10 $ --> +<!-- $Revision: 1.11 $ --> <refentry id="function.curl-exec"> <refnamediv> <refname>curl_exec</refname> @@ -16,7 +16,7 @@ Execute the given cURL session. </para> <para> - This function should be called after you initialize a cURL session and all + This function should be called after initializing a cURL session and all the options for the session are set. </para> </refsect1> http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/curl/functions/curl-setopt-array.xml?r1=1.3&r2=1.4&diff_format=u Index: phpdoc/en/reference/curl/functions/curl-setopt-array.xml diff -u phpdoc/en/reference/curl/functions/curl-setopt-array.xml:1.3 phpdoc/en/reference/curl/functions/curl-setopt-array.xml:1.4 --- phpdoc/en/reference/curl/functions/curl-setopt-array.xml:1.3 Thu Feb 15 09:24:35 2007 +++ phpdoc/en/reference/curl/functions/curl-setopt-array.xml Fri Jun 8 02:07:11 2007 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.3 $ --> +<!-- $Revision: 1.4 $ --> <refentry id="function.curl-setopt-array"> <refnamediv> <refname>curl_setopt_array</refname> @@ -78,7 +78,7 @@ </example> </para> <para> - Prior to PHP 5.1.4 you can simulate this function with: + Prior to PHP 5.1.4 this function can be simulated with: </para> <para> <example> http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/curl/functions/curl-setopt.xml?r1=1.24&r2=1.25&diff_format=u Index: phpdoc/en/reference/curl/functions/curl-setopt.xml diff -u phpdoc/en/reference/curl/functions/curl-setopt.xml:1.24 phpdoc/en/reference/curl/functions/curl-setopt.xml:1.25 --- phpdoc/en/reference/curl/functions/curl-setopt.xml:1.24 Thu Feb 15 09:24:35 2007 +++ phpdoc/en/reference/curl/functions/curl-setopt.xml Fri Jun 8 02:07:11 2007 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.24 $ --> +<!-- $Revision: 1.25 $ --> <refentry id="function.curl-setopt"> <refnamediv> <refname>curl_setopt</refname> @@ -28,7 +28,7 @@ <term><parameter>option</parameter></term> <listitem> <para> - The <literal>CURLOPT_XXX</literal> option that you want to set + The <literal>CURLOPT_XXX</literal> option to set. </para> </listitem> </varlistentry> @@ -116,7 +116,7 @@ <entry><constant>CURLOPT_FILETIME</constant></entry> <entry> &true; to attempt to retrieve the modification - date of the remote document. You can then retrieve this value using + date of the remote document. This value can be retrieved using the <parameter>CURLINFO_FILETIME</parameter> option with <function>curl_getinfo</function>. </entry> @@ -239,9 +239,9 @@ <row> <entry><constant>CURLOPT_NETRC</constant></entry> <entry> - &true; to scan your <filename>~/.netrc</filename> - file to find your username and password for the remote site that - you're establishing a connection with. + &true; to scan the <filename>~/.netrc</filename> + file to find a username and password for the remote site that + a connection is being established with. </entry> <entry> </entry> @@ -461,8 +461,8 @@ <parameter>CURLAUTH_ANYSAFE</parameter>. </para> <para> - You can use the bitwise <literal>|</literal> (or) operator to combine - more than one method. If you do this, cURL will poll the server to see + The bitwise <literal>|</literal> (or) operator can be used to combine + more than one method. If this is done, cURL will poll the server to see what methods it supports and pick the best one. </para> <para> @@ -591,7 +591,7 @@ <entry><constant>CURLOPT_SSLVERSION</constant></entry> <entry> The SSL version (2 or 3) to use. By default PHP will try to determine - this itself, although in some cases you must set this manually. + this itself, although in some cases this must be set manually. </entry> <entry> </entry> @@ -709,7 +709,7 @@ would be incorrect. <note> <para> - Don't do this without making sure your server supports the custom + Don't do this without making sure the server supports the custom request method first. </para> </note> @@ -925,7 +925,7 @@ <row> <entry><constant>CURLOPT_URL</constant></entry> <entry> - The URL to fetch. You can also set this when initializing a + The URL to fetch. This can also be set when initializing a session with <function>curl_init</function>. </entry> <entry> @@ -1078,9 +1078,9 @@ <entry> The name of a callback function where the callback function takes two parameters. The first is the cURL resource, the second is a - string with the header data to be written. Using this callback - function, it becomes your responsibility to write the header data. - Return the number of bytes written. + string with the header data to be written. The header data must + be written when using this callback function. Return the number of + bytes written. </entry> <entry> </entry> @@ -1101,9 +1101,9 @@ <entry> The name of a callback function where the callback function takes two parameters. The first is the cURL resource, and the second is a - string with the data to be read. Using this callback function, it - becomes your responsibility to read the data. Return the number of - bytes read. Return 0 to signal <literal>EOF</literal>. + string with the data to be read. The data must be read by using this + callback function. Return the number of bytes read. Return 0 to signal + <literal>EOF</literal>. </entry> <entry> </entry> @@ -1113,9 +1113,9 @@ <entry> The name of a callback function where the callback function takes two parameters. The first is the cURL resource, and the second is a - string with the data to be written. Using this callback function, it - becomes your responsibility to write the data. Must return the exact - number of bytes written or this will fail. + string with the data to be written. The data must be written by using + this callback function. Must return the exact number of bytes written + or this will fail. </entry> <entry> </entry>