From 157f23df767f997fcb314ff2a46ef932842fab5a Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Wed, 25 Apr 2007 08:16:56 +0000 Subject: [PATCH] - created branch R_1_5 --- package2.xml | 8 ++++---- php_http.h | 2 +- scripts/check_docs.php | 15 +++++++++------ 3 files changed, 14 insertions(+), 11 deletions(-) diff --git a/package2.xml b/package2.xml index b27fd1e..229886d 100644 --- a/package2.xml +++ b/package2.xml @@ -30,16 +30,16 @@ support. Parallel requests are available for PHP 5 and greater. 2007-05-01 - 1.5.3 - 1.5.0 + 1.6.0dev + 1.6.0 - stable + beta stable BSD, revised diff --git a/php_http.h b/php_http.h index 100bd47..6c20456 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.5.3dev" +#define PHP_EXT_HTTP_VERSION "1.6.0dev" #ifdef HAVE_CONFIG_H # include "config.h" diff --git a/scripts/check_docs.php b/scripts/check_docs.php index b6044fd..d1e76ba 100755 --- a/scripts/check_docs.php +++ b/scripts/check_docs.php @@ -20,20 +20,23 @@ $ext = "http"; $doc = "/home/mike/cvs/phpdoc/en/reference/$ext"; $ref = new ReflectionExtension($ext); -printf("Undocumented INI options:\n"); -foreach ($ref->getINIEntries() as $name => $tmp) { +$ini = $ref->getINIEntries(); +printf("Undocumented INI options (%d):\n", count($ini)); +foreach ($ini as $name => $tmp) { re("configuration.xml", "#$name#") or printf("\t%s (%s)\n", $name, $tmp); } printf("\n"); -printf("Undocumented stream filters:\n"); -foreach (preg_grep("/^$ext\./", stream_get_filters()) as $filter) { +$flt = preg_grep("/^$ext\./", stream_get_filters()); +printf("Undocumented stream filters (%d):\n", count($flt)); +foreach ($flt as $filter) { fe(sprintf("streamfilters/%s.xml", substr($filter, 5))) or printf("\t%s\n", $filter); } printf("\n"); -printf("Undocumented constants:\n"); -foreach ($ref->getConstants() as $name => $tmp) { +$con = $ref->getConstants(); +printf("Undocumented constants (%d):\n", count($con)); +foreach ($con as $name => $tmp) { re("constants.xml", "#$name#") or printf("\t%s (%s)\n", $name, $tmp); } printf("\n"); -- 2.30.2