mike Sun May 28 15:56:18 2006 UTC
Modified files:
/pecl/http http_functions.c
/pecl/http/docs functions.html
Log:
- fix log ini entries in docs
http://cvs.php.net/viewcvs.cgi/pecl/http/http_functions.c?r1=1.142&r2=1.143&diff_format=u
Index: pecl/http/http_functions.c
diff -u pecl/http/http_functions.c:1.142 pecl/http/http_functions.c:1.143
--- pecl/http/http_functions.c:1.142 Sat May 27 17:20:08 2006
+++ pecl/http/http_functions.c Sun May 28 15:56:17 2006
@@ -10,7 +10,7 @@
+--------------------------------------------------------------------+
*/
-/* $Id: http_functions.c,v 1.142 2006/05/27 17:20:08 mike Exp $ */
+/* $Id: http_functions.c,v 1.143 2006/05/28 15:56:17 mike Exp $ */
#define HTTP_WANT_SAPI
#define HTTP_WANT_CURL
@@ -565,7 +565,7 @@
* Returns FALSE on failure, or *exits* with "304 Not Modified" if the entity
is cached.
*
* A log entry will be written to the cache log if the INI entry
- * http.cache_log is set and the cache attempt was successful.
+ * http.log.cache is set and the cache attempt was successful.
*/
PHP_FUNCTION(http_cache_last_modified)
{
@@ -614,7 +614,7 @@
* Returns FALSE on failure, or *exits* with "304 Not Modified" if the entity
is cached.
*
* A log entry is written to the cache log if the INI entry
- * "http.cache_log" is set and the cache attempt was successful.
+ * "http.log.cache" is set and the cache attempt was successful.
*/
PHP_FUNCTION(http_cache_etag)
{
@@ -713,7 +713,7 @@
* Returns FALSE on failure, or *exits* on success.
*
* A log entry will be written to the redirect log, if the INI entry
- * "http.redirect_log" is set and the redirect attempt was successful.
+ * "http.log.redirect" is set and the redirect attempt was successful.
*/
PHP_FUNCTION(http_redirect)
{
http://cvs.php.net/viewcvs.cgi/pecl/http/docs/functions.html?r1=1.43&r2=1.44&diff_format=u
Index: pecl/http/docs/functions.html
diff -u pecl/http/docs/functions.html:1.43 pecl/http/docs/functions.html:1.44
--- pecl/http/docs/functions.html:1.43 Sun May 28 15:48:00 2006
+++ pecl/http/docs/functions.html Sun May 28 15:56:17 2006
@@ -198,7 +198,7 @@
the Last-Modified header is updated and the actual body will be sent.</p>
<p>Returns FALSE on failure, or *exits* with "304 Not Modified" if the entity
is cached.</p>
<p>A log entry will be written to the cache log if the INI entry<br />
-http.cache_log is set and the cache attempt was successful.</p>
+http.log.cache is set and the cache attempt was successful.</p>
<h2 id="http_cache_etag">bool http_cache_etag([string etag])</h2>
<p>Attempts to cache the sent entity by its ETag, either supplied or generated
<br />
by the hash algorithm specified by the INI setting "http.etag.mode".</p>
@@ -207,7 +207,7 @@
a "304 Not Modified" status code is issued.</p>
<p>Returns FALSE on failure, or *exits* with "304 Not Modified" if the entity
is cached.</p>
<p>A log entry is written to the cache log if the INI entry<br />
-"http.cache_log" is set and the cache attempt was successful.</p>
+"http.log.cache" is set and the cache attempt was successful.</p>
<h2 id="ob_etaghandler">string ob_etaghandler(string data, int mode)</h2>
<p>For use with ob_start(). Output buffer handler generating an ETag with<br
/>
the hash algorithm specified with the INI setting "http.etag.mode".</p>
@@ -243,7 +243,7 @@
another one than HEAD.</p>
<p>Returns FALSE on failure, or *exits* on success.</p>
<p>A log entry will be written to the redirect log, if the INI entry<br />
-"http.redirect_log" is set and the redirect attempt was successful.</p>
+"http.log.redirect" is set and the redirect attempt was successful.</p>
<h2 id="http_send_data">bool http_send_data(string data)</h2>
<p>Sends raw data with support for (multiple) range requests.</p>
<p>Returns TRUE on success, or FALSE on failure.</p>
@@ -1434,7 +1434,7 @@
</li>
</ul>
</div>
- <p><b>Generated at: Sun, 28 May 2006 17:34:52 +0200</b></p>
+ <p><b>Generated at: Sun, 28 May 2006 17:55:39 +0200</b></p>
</body>
</html>
|