From 5bf21b22dcc28e60dca9dc4637520ee0cb9f565d Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Mon, 20 Feb 2006 16:43:48 +0000 Subject: [PATCH] - release .24 --- docs/functions.html | 15 +++++++++++++-- package.xml | 13 ++++++++++--- package2.xml | 10 ++++++---- php_http.h | 2 +- 4 files changed, 30 insertions(+), 10 deletions(-) diff --git a/docs/functions.html b/docs/functions.html index 7871ba1..02b4840 100644 --- a/docs/functions.html +++ b/docs/functions.html @@ -600,7 +600,7 @@ should also contain any parent messages.


http_querystring_object.c

HttpQueryString

-

void HttpQueryString::__construct([bool global = true[, mixed add])

+

final void HttpQueryString::__construct([bool global = true[, mixed add])

Creates a new HttpQueryString object instance.
Operates on and modifies $_GET and $_SERVER['QUERY_STRING'] if global is TRUE.

string HttpQueryString::toString()

@@ -615,6 +615,14 @@ Operates on and modifies $_GET and $_SERVER['QUERY_STRING'] if global is TRUE.Set query string entry/entries. NULL values will unset the variable.

HttpQueryString HttpQueryString::getInstance([bool global = true])

Get a single instance (differentiates between the global setting).

+

bool HttpQueryString::iconv(string ie, string oe)

+

Converts the query string from the source encoding ie to the target encoding oe.
+WARNING: Don't use any character set that can contain NUL bytes like UTF-16.

+

Returns TRUE on success or FALSE on failure.

+

string HttpQueryString::serialize()

+

Implements Serializable.

+

void HttpQueryString::unserialize(string serialized)

+

Implements Serializable.


http_request_object.c

HttpRequest

@@ -1247,6 +1255,9 @@ http.cache_log is set.

  • HttpQueryString::get()
  • HttpQueryString::set()
  • HttpQueryString::getInstance()
  • +
  • HttpQueryString::iconv()
  • +
  • HttpQueryString::serialize()
  • +
  • HttpQueryString::unserialize()
  • @@ -1358,7 +1369,7 @@ http.cache_log is set.

    -

    Generated at: Fri, 17 Feb 2006 17:34:44 +0100

    +

    Generated at: Mon, 20 Feb 2006 17:41:32 +0100

    diff --git a/package.xml b/package.xml index 2b6ad1c..61c8b62 100644 --- a/package.xml +++ b/package.xml @@ -30,11 +30,18 @@ HttpResponse - 0.23.1 - 2006-02-15 + 0.24.0 + 2006-02-20 BSD, revised beta - * Fixed http_parse_cookie(), really. + + Added If-Range header recognition. ++ Added "portrange" request option. ++ Added HttpQueryString::iconv(). ++ HttpQueryString implements Serializable (PHP-5.1). + +* Fixed bug #6804 - configure does not recognize '--without-http-zlib-compression'. +* Fixed cases where '412 Precondition failed' responses should be sent. +* Fixed message chain order in HttpRequest::getHistory(). diff --git a/package2.xml b/package2.xml index c3aa039..4e338cf 100644 --- a/package2.xml +++ b/package2.xml @@ -37,8 +37,8 @@ HttpResponse 2006-00-00 - 0.24.0dev - 0.23.0 + 0.24.0 + 0.24.0 beta @@ -48,9 +48,11 @@ HttpResponse diff --git a/php_http.h b/php_http.h index 213384f..9e67cfa 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 "0.24.0dev" +#define PHP_EXT_HTTP_VERSION "0.24.0" #ifdef HAVE_CONFIG_H # include "config.h" -- 2.30.2