From 24035853a9019d25c215eb63249de02a80675bcc Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Fri, 19 May 2006 15:10:13 +0000 Subject: [PATCH] - release RC4 --- docs/functions.html | 6 +++++- package.xml | 19 ++++++++++--------- package2.xml | 5 ++++- php_http.h | 2 +- 4 files changed, 20 insertions(+), 12 deletions(-) diff --git a/docs/functions.html b/docs/functions.html index 7139f2a..2c1a469 100644 --- a/docs/functions.html +++ b/docs/functions.html @@ -284,6 +284,8 @@ several consecutive HTTP messages.

<?php
print_r
(http_parse_cookie("foo=bar; bar=baz; path=/; domain=example.com; comment=; secure"0, array("comment")));

stdClass Object
(
    [
cookies] => Array
        (
            [
foo] => bar
            
[bar] => baz
        
)

    [
extras] => Array
        (
            [
comment] =>
        )

    [
flags] => 16
    
[expires] => 0
    
[path] => /
    [
domain] => example.com
)
?>

+

object http_parse_params(string param)

+

Parse parameter list.

array http_get_request_headers(void)

Get a list of incoming HTTP headers.

Returns an associative array of incoming request headers.

@@ -1191,6 +1193,8 @@ http.cache_log is set.

  • http_parse_cookie
  • +
  • http_parse_params +
  • http_get_request_headers
  • http_get_request_body @@ -1419,7 +1423,7 @@ http.cache_log is set.

  • -

    Generated at: Sat, 22 Apr 2006 23:03:59 +0200

    +

    Generated at: Fri, 19 May 2006 16:55:19 +0200

    diff --git a/package.xml b/package.xml index f5c532d..104d2c6 100644 --- a/package.xml +++ b/package.xml @@ -30,17 +30,16 @@ HttpResponse - 1.0.0RC3 - 2006-04-13 + 1.0.0RC4 + 2006-05-19 BSD, revised beta - + Added missing http_request() function -+ Added missing http_request_body_encode() function -- Improved performance of the message and header parser -- Disallow $HttpMessage->prepend($HttpMessage) causing infinite recursion -* Fixed internal http_parse_headers() always returning success -* Fixed missing "parentMessage" entry in print_r($HttpMessageObject) -* Fixed possible crash if the response does not contain a status message + + Added http_parse_params() function ++ Added HTTP_URL_STRIP_ALL constant +* Fixed possible crash in progress/onfinish request callbacks +* Fixed http_redirect() and http_build_url() without arguments +* Fixed behaviour of http_build_url() when second parameter is NULL +* Enabled recursive query string merging in http_build_url() with HTTP_URL_JOIN_QUERY @@ -218,6 +217,7 @@ HttpResponse + @@ -248,6 +248,7 @@ HttpResponse + diff --git a/package2.xml b/package2.xml index af1eff6..67547a0 100644 --- a/package2.xml +++ b/package2.xml @@ -47,10 +47,11 @@ HttpResponse BSD, revised @@ -86,6 +87,7 @@ HttpResponse + @@ -113,6 +115,7 @@ HttpResponse + diff --git a/php_http.h b/php_http.h index d945565..ac5051e 100644 --- a/php_http.h +++ b/php_http.h @@ -15,7 +15,7 @@ #ifndef PHP_EXT_HTTP_H #define PHP_EXT_HTTP_H -#define PHP_EXT_HTTP_VERSION "1.0.0RC4-dev" +#define PHP_EXT_HTTP_VERSION "1.0.0RC4" #ifdef HAVE_CONFIG_H # include "config.h" -- 2.30.2