[PHP-CVS] cvs: php4 / NEWS /main/streams userspace.c

2003-06-16 Thread Sara Golemon
pollita Mon Jun 16 15:13:39 2003 EDT

  Modified files:  
/php4/main/streams  userspace.c 
/php4   NEWS 
  Log:
  Add context property to userspace streams object.
  
  
Index: php4/main/streams/userspace.c
diff -u php4/main/streams/userspace.c:1.8 php4/main/streams/userspace.c:1.9
--- php4/main/streams/userspace.c:1.8   Tue Jun 10 16:03:42 2003
+++ php4/main/streams/userspace.c   Mon Jun 16 15:13:39 2003
@@ -16,7 +16,7 @@
+--+
 */
 
-/* $Id: userspace.c,v 1.8 2003/06/10 20:03:42 imajes Exp $ */
+/* $Id: userspace.c,v 1.9 2003/06/16 19:13:39 pollita Exp $ */
 
 #include php.h
 #include php_globals.h
@@ -185,6 +185,7 @@
zval **args[4]; 
int call_result;
php_stream *stream = NULL;
+   zval *zcontext = NULL;
 
/* Try to catch bad usage without preventing flexibility */
if (FG(user_stream_current_filename) != NULL  strcmp(filename, 
FG(user_stream_current_filename)) == 0) {
@@ -201,6 +202,17 @@
object_init_ex(us-object, uwrap-ce);
ZVAL_REFCOUNT(us-object) = 1;
PZVAL_IS_REF(us-object) = 1;
+
+   if (context) {
+   MAKE_STD_ZVAL(zcontext);
+   php_stream_context_to_zval(context, zcontext);
+   add_property_zval(us-object, context, zcontext);
+   /* The object property should be the only reference,
+  'get rid' of our local reference. */
+   zval_ptr_dtor(zcontext);
+   } else {
+   add_property_null(us-object, context);
+   }

/* call it's stream_open method - set up params first */
MAKE_STD_ZVAL(zfilename);
Index: php4/NEWS
diff -u php4/NEWS:1.1424 php4/NEWS:1.1425
--- php4/NEWS:1.1424Sat Jun 14 20:31:08 2003
+++ php4/NEWS   Mon Jun 16 15:13:39 2003
@@ -15,6 +15,7 @@
   . mail.force_extra_paramaters. (Derick)
 
 - Improved streams support: (Wez)
+  . Added context property to userspace streams object. (sara)
   . stream_socket_client() - similar to fsockopen(), but more powerful. 
   . stream_socket_server() - Creates a server socket. 
   . stream_socket_accept() - Accept a client connection.



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-06-16 Thread Jani Taskinen
sniper  Mon Jun 16 15:58:25 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Nothing to see here, move along.
  
Index: php4/NEWS
diff -u php4/NEWS:1.1425 php4/NEWS:1.1426
--- php4/NEWS:1.1425Mon Jun 16 15:13:39 2003
+++ php4/NEWS   Mon Jun 16 15:58:24 2003
@@ -3,10 +3,9 @@
 ? ? ??? 200?, Version 5.0.0
 
 ## Note the changed grouping. Try add your entries to appropriate places
-## to enchance the readability of this file. Using @ is discouraged.
+## to enhance the readability of this file. Using @ is discouraged.
 ## (This file will be cleaned up before release.)
 
-- Mnogosearch extension updated. Now can compile with mnogosearch-3.2.11+
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
 
@@ -14,8 +13,9 @@
   . session.hash_function and session.hash_bits_per_character. (Sascha)
   . mail.force_extra_paramaters. (Derick)
 
-- Improved streams support: (Wez)
-  . Added context property to userspace streams object. (sara)
+- Improved the streams support: (Wez)
+  . Improved performance of readfile(), fpassthru() and some internal streams
+operations under Win32.
   . stream_socket_client() - similar to fsockopen(), but more powerful. 
   . stream_socket_server() - Creates a server socket. 
   . stream_socket_accept() - Accept a client connection.
@@ -23,17 +23,16 @@
   . stream_copy_to_stream()
   . stream_get_line() - Reads either the specified number of bytes or until 
 the ending string is found. (Ilia)
+  . Added context property to userspace streams object. (Sara)
   . Added generic crypto interface for streams.
 (supports dynamic loading of OpenSSL)
-  . Improved performance of readfile(), fpassthru() and some internal streams
-operations under Win32.
   . Added lightweight streaming input abstraction to the Zend Engine scanners
 to provide uniform support for include()'ing data from PHP streams across
 all platforms.
   . Added 'string.base64' stream filter. (Moriyoshi)
   . Renamed stream_register_wrapper() to stream_wrapper_register(). (Derick)
 
-- Improved GD extension: (Pierre-Alain Joye, Ilia)
+- Improved the GD extension: (Pierre-Alain Joye, Ilia)
. imagefilter() - Apply different filters to image.
 (Only available with bundled GD library)
. Antialiased drawing support:
@@ -113,4 +112,3 @@
 ### Add everything that MIGHT get merged to some PHP 4 branch 
 ### (before PHP 5.0.0 is released), below.
 
-- Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia) -- move to 4.3.3 NEWS



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-CVS] cvs: php4 / NEWS /main/streams userspace.c

2003-06-16 Thread Wez Furlong
zval.refcount != rsrc.refcount

We should probably addref the resource refcount here to avoid pain
somewhere else.

--Wez.

On Mon, 16 Jun 2003, Sara Golemon wrote:

 + MAKE_STD_ZVAL(zcontext);
 + php_stream_context_to_zval(context, zcontext);
 + add_property_zval(us-object, context, zcontext);
 + /* The object property should be the only reference,
 +'get rid' of our local reference. */
 + zval_ptr_dtor(zcontext);


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-06-13 Thread Jani Taskinen
sniper  Fri Jun 13 10:31:55 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Added missing NEWS entry
  
Index: php4/NEWS
diff -u php4/NEWS:1.1421 php4/NEWS:1.1422
--- php4/NEWS:1.1421Mon Jun  9 14:12:36 2003
+++ php4/NEWS   Fri Jun 13 10:31:54 2003
@@ -73,6 +73,7 @@
   . str_split() - Breaks down a string into an array of elements based on 
 length. (Ilia)
   . array_walk_recursive(). (Ilia)
+  . array_combine(). (Andrey)
 
 - Added optional parameter to get_browser() to make it return an array. (Jay)
 - Added optional parameter to openssl_sign() to specify the hashing algorithm.



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-06-13 Thread Jani Taskinen
sniper  Fri Jun 13 10:35:54 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Missing entry
  
Index: php4/NEWS
diff -u php4/NEWS:1.1422 php4/NEWS:1.1423
--- php4/NEWS:1.1422Fri Jun 13 10:31:54 2003
+++ php4/NEWS   Fri Jun 13 10:35:54 2003
@@ -62,6 +62,7 @@
   . iconv_mime_encode()
 
 - Added misc. new functions:
+  . ldap_sasl_bind(). ([EMAIL PROTECTED], Jani)
   . imap_getacl(). (Dan, Holger Burbach)
   . file_put_contents(). (Sterling)
   . proc_nice() - Changes priority of the current process. (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS /ext/standard string.c /ext/standard/tests/strings bug24098.phpt

2003-06-09 Thread Ilia Alshanetsky
iliaa   Mon Jun  9 14:12:36 2003 EDT

  Added files: 
/php4/ext/standard/tests/stringsbug24098.phpt 

  Modified files:  
/php4   NEWS 
/php4/ext/standard  string.c 
  Log:
  Fixed bug #24098 (Crash in pathinfo() due to double var initialization).
  
  # This is a php5 specific bug, no MFB needed
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1420 php4/NEWS:1.1421
--- php4/NEWS:1.1420Fri May 30 17:19:56 2003
+++ php4/NEWS   Mon Jun  9 14:12:36 2003
@@ -100,6 +100,7 @@
 
 - Fixed is_executable() to be available also on Windows. (Shane)
 - Fixed dirname() and strip_tags() to be binary-safe. (Moriyoshi)
+- Fixed bug #24098 (crash in pathinfo()). (Ilia)
 - Fixed bug #21985 and #22064 (various mb_send_mail() issues). (Moriyoshi)
 - Fixed bug #21600 (Assign by reference function call changes variable 
   contents). (Zeev)
Index: php4/ext/standard/string.c
diff -u php4/ext/standard/string.c:1.387 php4/ext/standard/string.c:1.388
--- php4/ext/standard/string.c:1.387Mon May 26 20:42:39 2003
+++ php4/ext/standard/string.c  Mon Jun  9 14:12:36 2003
@@ -18,7 +18,7 @@
+--+
  */
 
-/* $Id: string.c,v 1.387 2003/05/27 00:42:39 msopacua Exp $ */
+/* $Id: string.c,v 1.388 2003/06/09 18:12:36 iliaa Exp $ */
 
 /* Synced with php 3.0 revision 1.193 1999-06-16 [ssb] */
 
@@ -1268,7 +1268,6 @@
if ((opt  PHP_PATHINFO_EXTENSION) == PHP_PATHINFO_EXTENSION) {
char *p;
int idx;
-   int ret_len;
int have_basename = ((opt  PHP_PATHINFO_BASENAME) == 
PHP_PATHINFO_BASENAME);
 
/* Have we alrady looked up the basename? */

Index: php4/ext/standard/tests/strings/bug24098.phpt
+++ php4/ext/standard/tests/strings/bug24098.phpt
--TEST--
Bug #24098 (pathinfo() crash)
--FILE--
?php
var_dump(pathinfo(/dsds.asa));
?
--EXPECT--
array(3) {
  [dirname]=
  string(1) /
  [basename]=
  string(8) dsds.asa
  [extension]=
  string(3) asa
}



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-CVS] cvs: php4 / NEWS

2003-06-02 Thread Jani Taskinen
On Sat, 31 May 2003, Derick Rethans wrote:

On Fri, 30 May 2003, Jani Taskinen wrote:

 sniper   Fri May 30 17:19:56 2003 EDT
 
   Modified files:  
 /php4NEWS 
   Log:
   Beginning of restructuring NEWS to make it more readable.

hm,, you stripped a lot of information. f.e. nobody knows now what the 
mail.force_extra_parameters php.ini setting is good for. I'd favor a 
bit more descriptive line for it. 

Read the php.ini-dist..
NEWS is not the place to document parameters. Documentation
is for that.

--Jani




-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-05-31 Thread Jani Taskinen
sniper  Fri May 30 17:19:56 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Beginning of restructuring NEWS to make it more readable.
  Index: php4/NEWS
diff -u php4/NEWS:1.1419 php4/NEWS:1.1420
--- php4/NEWS:1.1419Fri May 30 15:57:39 2003
+++ php4/NEWS   Fri May 30 17:19:56 2003
@@ -1,95 +1,111 @@
 PHPNEWS
 |||
 ? ? ??? 200?, Version 5.0.0
-- Updated wddx_deserialize() to take an open stream as an argument. (Andrei)
-- Changed exif extension to consider php.ini option magic_quotes_runtime.
-  (Marcus)
+
+## Note the changed grouping. Try add your entries to appropriate places
+## to enchance the readability of this file. Using @ is discouraged.
+## (This file will be cleaned up before release.)
+
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
-- Renamed stream_register_wrapper() to stream_wrapper_register(). (Derick)
-- Fixed dirname() and strip_tags() to be binary-safe. (Moriyoshi)
-- Fixed bug #22386 (Using browscap causes segfault). (Jay)
-- Fixed bug #22895 (PHP cli outputs errors in text AND html). (Marcus)
-- Fixed bug #21985 and #22064 (various mb_send_mail() issues). (Moriyoshi)
-- Fixed bug #21600 (Assign by reference function call changes variable contents).
-  (Zeev)
-- Fixed bug #21007 (html_errors off text-only output in phpinfo). (Marcus)
-- Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
-- Fixed bug #20155 (xmlrpc compile problem with ZE2). (Derick, Jan Schneider)
+
+- New php.ini options:
+  . session.hash_function and session.hash_bits_per_character. (Sascha)
+  . mail.force_extra_paramaters. (Derick)
+
+- Improved streams support: (Wez)
+  . stream_socket_client() - similar to fsockopen(), but more powerful. 
+  . stream_socket_server() - Creates a server socket. 
+  . stream_socket_accept() - Accept a client connection.
+  . stream_socket_get_name() - Get local or remote name of socket.
+  . stream_copy_to_stream()
+  . stream_get_line() - Reads either the specified number of bytes or until 
+the ending string is found. (Ilia)
+  . Added generic crypto interface for streams.
+(supports dynamic loading of OpenSSL)
+  . Improved performance of readfile(), fpassthru() and some internal streams
+operations under Win32.
+  . Added lightweight streaming input abstraction to the Zend Engine scanners
+to provide uniform support for include()'ing data from PHP streams across
+all platforms.
+  . Added 'string.base64' stream filter. (Moriyoshi)
+  . Renamed stream_register_wrapper() to stream_wrapper_register(). (Derick)
+
+- Improved GD extension: (Pierre-Alain Joye, Ilia)
+   . imagefilter() - Apply different filters to image.
+(Only available with bundled GD library)
+   . Antialiased drawing support:
+ o imageantialias() - (de)active antialias
+ o imageline() and imagepolygon() antialias support
+
 - Changed the length parameter in fgetss() to be optional. (Moriyoshi)
 - Changed ini parser to allow for handling of quoted multi-line values. (Ilia)
 - Changed get_extension_funcs() to return list of the built-in Zend Engine 
   functions if zend is specified as the module name. (Ilia)
-- Changed is_executable() to be available also on Windows. (Shane)
 - Changed array_search() to accept also objects as a needle. (Moriyoshi)
 - Changed ext/mcrypt to require libmcrypt version 2.5.6 or greater. (Derick)
-- Changed uniqid() parameters to be optional and allow any prefix length. (Marcus)
-- Added imap_getacl(). (Dan, Holger Burbach)
-- Added unlink() method to wrapper operations, routed userland unlink through
-  wrappers, and implemented plainfiles and ftp unlink methods. (Sara)
-- Added encoding detection feature for expat XML parser. (Adam Dickmeiss, Moriyoshi)
-- Added missing multibyte(unicode) support and numeric entity support to
-  html_entity_decode(). (Moriyoshi)
-- Added opendir() and stat() related support to ftp:// wrapper. (Sara)
-- Added IPv6 support to ext/sockets. (Sara)
-- Added context options to http_fopen_wrapper 'method', 'header', 'content'. (Sara)
-- Added domdocument-create_document_fragment() and documentfragment-open_mem() 
-  methods to domxml. (Rob Richards, Chregu)
-- Added domelement-set_attribute_node() method (bug #17638). (Rob Richards)
+- Changed uniqid() parameters to be optional and allow any prefix length.
+  (Marcus)
+
+- Added new methods to ext/domxml: (Rob Richards, Chregu, Lukas Schröder)
+  . domdocument-create_document_fragment()
+  . documentfragment-open_mem()
+  . domelement-set_attribute_node()
+  . domxmlnode-get_path()
+
+- Added new iconv functions. (Moriyoshi)
+  . iconv_strlen()
+  . iconv_substr()
+  . iconv_strpos()
+  . iconv_strrpos()
+  . iconv_mime_decode()
+  . iconv_mime_encode()
+
+- Added misc. new functions:
+  . imap_getacl(). (Dan, Holger Burbach)
+  . file_put_contents(). 

Re: [PHP-CVS] cvs: php4 / NEWS

2003-05-31 Thread Derick Rethans
On Fri, 30 May 2003, Jani Taskinen wrote:

 sniperFri May 30 17:19:56 2003 EDT
 
   Modified files:  
 /php4 NEWS 
   Log:
   Beginning of restructuring NEWS to make it more readable.

hm,, you stripped a lot of information. f.e. nobody knows now what the 
mail.force_extra_parameters php.ini setting is good for. I'd favor a 
bit more descriptive line for it. 

Derick

-- 
my other box is your windows PC
-
 Derick Rethans http://derickrethans.nl/ 
 International PHP Magazine  http://php-mag.net/
-

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-05-30 Thread Marcus Boerger
helly   Thu May 29 10:19:47 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  MFH to 4.3.3
  
Index: php4/NEWS
diff -u php4/NEWS:1.1414 php4/NEWS:1.1415
--- php4/NEWS:1.1414Wed May 28 21:34:02 2003
+++ php4/NEWS   Thu May 29 10:19:47 2003
@@ -50,7 +50,6 @@
 - Added stream_copy_to_stream() function. (Wez)
 - Added memory mapping support under win32 to improve performance of
   readfile(), fpassthru() and some internal streams operations. (Wez)
-- Added DBA handler 'inifile' to support ini files. (Marcus)
 - Added input filter support. See README.input_filter. (Rasmus)
 - Added session.hash_function and session.hash_bits_per_character. (Sascha)
 - Added lightweight streaming input abstraction to the Zend Engine scanners



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-05-30 Thread Marcus Boerger
helly   Thu May 29 11:47:09 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  MFH-Update
  
Index: php4/NEWS
diff -u php4/NEWS:1.1415 php4/NEWS:1.1416
--- php4/NEWS:1.1415Thu May 29 10:19:47 2003
+++ php4/NEWS   Thu May 29 11:47:08 2003
@@ -60,7 +60,6 @@
 - Added proc_nice() function. Changes priority of the current process. (Ilia)
 - Added pcntl_getpriority() and pcntl_setpriority() functions. (Ilia)
 - Added idate(), date_sunrise() and date_sunset() functions. (Moshe Doron)
-- Added long options into CLI  CGI (e.g. --version). (Marcus)
 - Added strpbrk() function. Searches a string for a list of characters. (Ilia)
 - Added stream_get_line() function. Reads either the specified number of bytes
   or until the ending string is found. (Ilia)
@@ -72,8 +71,6 @@
 - Added str_split() function. Breaks down a string into an array of elements 
   based on length. (Ilia)
 - Added array_walk_recursive() function. (Ilia)
-- Added new command line parameters -B, -F, -R and -E which allow to process stdin
-  line by line (See 'php -h' or 'man php' for more). (Marcus)
 - Added string.base64 stream filter. (Moriyoshi)
 - Added domxml_node_get_path(). (Lukas Schröder)
 - Added iconv related functions. (Moriyoshi)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-05-29 Thread Jani Taskinen
sniper  Wed May 28 21:34:02 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Sync with PHP 4.3.2 NEWS
  Index: php4/NEWS
diff -u php4/NEWS:1.1413 php4/NEWS:1.1414
--- php4/NEWS:1.1413Wed May 28 20:30:53 2003
+++ php4/NEWS   Wed May 28 21:34:02 2003
@@ -1,8 +1,6 @@
 PHPNEWS
 |||
 ? ? ??? 200?, Version 5.0.0
-- fdf crash with ZTS builds fixed (see Bug #14877)
-- fdf crash with ZTS builds fixed (see Bug #14877)
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
 - Renamed stream_register_wrapper() to stream_wrapper_register(). (Derick)
@@ -97,16 +95,253 @@
. imageline antialias support
. imagepolygon antialias support
 
+29 May 2003, Version 4.3.2
+- Syncronized bundled GD library with GD 2.0.12. (Ilia)
+- Removed support for GDLIB version 1.x.x (php_gd.dll) on Windows. (Edin)
+- Enabled read-only GIF support in the bundled GDLIB (php_gd2.dll) on Windows.
+  (Sebastian, Edin)
+- Improved dba extension (Marcus)
+  . Added support for internal error handling of Berkeley db libraries.
+  . Disallowed Berkeley db versions 4.1.0 to 4.1.24 due to locking problems.
+  . Disallowed linkage of Berkeley db submodules against libraries with
+different major versions.
+  . Disallowed configuring of more than one Berkeley db handler. 
+  . Reenabled dba_popen() with new persistent STDIO streams.
+- Added a new Apache 2.0 SAPI module (sapi/apache2handler) based on the old 
+  version (sapi/apache2filter). (Ian Holsman, Justin Erenkrantz)
+- Added disable_classes php.ini option to allow administrators to disable
+  certain classes for security reasons. (Harald)
+- Added man page for CLI version of PHP. (Marcus)
+- Added --clean option into phpize. (Jani)
+- Added --ldflags option into php-config. (Jani)
+- Added imagesavealpha() and imageistruecolor() functions. (Pierre)
+- Added XBM support for bundled GD library. (Marcus)
+- Added session_regenerate_id() function. (Sascha)
+- Added zlib_get_coding_type() function which returns the coding type used for 
+  output compression. (Moriyoshi)
+- Added OCIPasswordChange() which allows renewing expired Oracle users. (Maxim)
+- Added memory_get_usage(). Only available when PHP is configured with 
+  --enable-memory-limit. (Andrey)
+- Added improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
+- Added XBM and WBMP support for getimagesize(). (Marcus)
+- Added KOI8-R, CP866, and CP1251 support for htmlentities(). 
+  (Antony Dovgal, Moriyoshi)
+- Added domdocument-free() to free XML-documents from memory. (Rob Richards)
+- Fixed a bug in error reporting with the CLI for start-up errors. (Derick)
+- Fixed spurious fsync calls during socket communication. (Sascha)
+- Fixed a possible vhost issue in thttpd. (Sascha, [EMAIL PROTECTED])
+- Fixed including from HTTP URLs. (Sascha)
+- Fixed a lot of memory leaks in domxml. (Rob Richards, Chregu)
+- Fixed a bug in GD's truecolor TTF handling. (Derick)
+- Fixed several 64-bit problems. (Dave)
+- Fixed several errors in hwapi extension. Objects weren't handled properly.
+  (Uwe)
+- Fixed bug #23788 (str|preg_replace() clobber the array elements). (Ilia)
+- Fixed bug #23765 (file uploads ignored due to case sensitivity). (Sara)
+- Fixed bug #23738 (ifx_copy_blob() crash). (Jani)
+- Fixed bug #23661 (mysql_fetch_array() gives no warning when an invalid 
+  argument was passed as result_type). (Derick)
+- Fixed bug #23619 (set_error_handler() registered handler not called for
+  object instances). (Jani, [EMAIL PROTECTED])
+- Fixed bug #23606 (Unable to build --with-db4 (db4.1.25)). (Marcus)
+- Fixed bug #23567 (pfsockopen() returns dead connections). (Wez)
+- Fixed bug #23539 (curl_exec() produces strange results). ([EMAIL PROTECTED])
+- Fixed bug #23527 (PostScript Type 1 fonts do not render properly).
+  ([EMAIL PROTECTED], Ilia)
+- Fixed bug #23402 (crash with improper use of mssql_bind()). (Frank)
+- Fixed bug #23371 (configure falsely detects c-client using SSL). (Jani)
+- Fixed bug #23340 (fopen on multiple URLs causes memory corruption). (Wez)
+- Fixed bug #23298 (serialize cuts off floats  doubles). (Ilia, Marcus)
+- Fixed bug #23232 (safe_mode does not honor PHP_AUTH_* in apache2). (Ilia)
+- Fixed bug #23225 (money_format() didn't handle erroneous return of strfmon).
+  (Ilia, [EMAIL PROTECTED])
+- Fixed bug #23201 (set_file_buffer() crashes with stdio streams). (Ilia)
+- Fixed Bug #23188 (CDB databases created with 'c' mode do not work). (Marcus)
+- Fixed bug #23187 (memory leaks in sybase_connect/sybase_pconnect). (Ilia)
+- Fixed bug #23162 (user_error() crashs if error message  1024 bytes).
+  (Jay, Marcus, Moriyoshi)
+- Fixed bug #23152 ($http_response_header empty on invalid URLs). (Ilia)
+- Fixed bug #23102 (integer overflow in exif_iif_add_value()). (Ilia)
+- Fixed bug #23099 

[PHP-CVS] cvs: php4 / NEWS

2003-04-12 Thread Moriyoshi Koizumi
moriyoshi   Sat Apr 12 18:02:26 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  NFN
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1398 php4/NEWS:1.1399
--- php4/NEWS:1.1398Tue Apr  8 15:43:56 2003
+++ php4/NEWS   Sat Apr 12 18:02:26 2003
@@ -12,6 +12,7 @@
 - Fixed bug #21007 (html_errors off text-only output in phpinfo). (Marcus)
 - Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
 - Fixed bug #20155 (xmlrpc compile problem with ZE2). (Derick, Jan Schneider)
+- Made dirname() / strip_tags() binary-safe. (Moriyoshi)
 - Changed the length parameter in fgetss() to be optional. (Moriyoshi)
 - Changed ini parser to allow for handling of quoted multi-line values. (Ilia)
 - Changed get_extension_funcs() to return list of the built-in Zend Engine 



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-04-06 Thread Jani Taskinen
sniper  Sun Apr  6 08:04:21 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  reorder
  
Index: php4/NEWS
diff -u php4/NEWS:1.1391 php4/NEWS:1.1392
--- php4/NEWS:1.1391Sat Apr  5 20:30:53 2003
+++ php4/NEWS   Sun Apr  6 08:04:21 2003
@@ -1,8 +1,6 @@
 PHPNEWS
 |||
 ? ? ??? 200?, Version 5.0.0
-- Added domxml_doc_create_document_fragment() and
-  domxml_document_fragment_open_mem(string) method (Christian)
 - Fixed bug #23009 (pg_select with timestamp). (Marcus, Jay)
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
@@ -23,6 +21,8 @@
 - Changed array_search() to accept also objects as a needle. (Moriyoshi)
 - Changed ext/mcrypt to require libmcrypt version 2.5.6 or greater. (Derick)
 - Changed uniqid() parameters to be optional and allow any prefix length. (Marcus)
+- Added domxml_doc_create_document_fragment() and 
+  domxml_document_fragment_open_mem() methods. (Christian)
 - Added domxml_elem_set_attribute_node() method (bug #17638). (Rob Richards)
 - Added optional parameter to get_browser() to make it return an array. (Jay)
 - Added optional parameter to openssl_sign() to specify the hashing algorithm.



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-04-03 Thread Christian Stocker
chregu  Thu Apr  3 05:24:53 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  new domxml_elem_set_attribute_node() should have gone into NEWS, but I forgot..
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1388 php4/NEWS:1.1389
--- php4/NEWS:1.1388Wed Apr  2 20:30:52 2003
+++ php4/NEWS   Thu Apr  3 05:24:53 2003
@@ -1,6 +1,7 @@
 PHPNEWS
 |||
 ? ? ??? 200?, Version 5.0.0
+- Added domxml_elem_set_attribute_node() method (bug #17638). (Rob Richards)
 - Fixed bug #23009 (pg_select with timestamp). (Marcus, Jay)
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-04-03 Thread Jani Taskinen
sniper  Thu Apr  3 06:04:16 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  reorder
  
Index: php4/NEWS
diff -u php4/NEWS:1.1389 php4/NEWS:1.1390
--- php4/NEWS:1.1389Thu Apr  3 05:24:53 2003
+++ php4/NEWS   Thu Apr  3 06:04:16 2003
@@ -1,7 +1,6 @@
 PHPNEWS
 |||
 ? ? ??? 200?, Version 5.0.0
-- Added domxml_elem_set_attribute_node() method (bug #17638). (Rob Richards)
 - Fixed bug #23009 (pg_select with timestamp). (Marcus, Jay)
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
@@ -22,6 +21,7 @@
 - Changed array_search() to accept also objects as a needle. (Moriyoshi)
 - Changed ext/mcrypt to require libmcrypt version 2.5.6 or greater. (Derick)
 - Changed uniqid() parameters to be optional and allow any prefix length. (Marcus)
+- Added domxml_elem_set_attribute_node() method (bug #17638). (Rob Richards)
 - Added optional parameter to get_browser() to make it return an array. (Jay)
 - Added optional parameter to openssl_sign() to specify the hashing algorithm.
   ([EMAIL PROTECTED], Derick)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-CVS] cvs: php4 / NEWS

2003-04-03 Thread Jani Taskinen

Please take a few minutes and read all the entries in this file.
(the ones for PHP 5)

I've been trying to keep the different 'types' of entries grouped
so please, try putting your entries in correct places.

 
--Jani



On Thu, 3 Apr 2003, Christian Stocker wrote:

chregu Thu Apr  3 05:24:53 2003 EDT

  Modified files:  
/php4  NEWS 
  Log:
  new domxml_elem_set_attribute_node() should have gone into NEWS, but I forgot..
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1388 php4/NEWS:1.1389
--- php4/NEWS:1.1388   Wed Apr  2 20:30:52 2003
+++ php4/NEWS  Thu Apr  3 05:24:53 2003
@@ -1,6 +1,7 @@
 PHPNEWS
 |||
 ? ? ??? 200?, Version 5.0.0
+- Added domxml_elem_set_attribute_node() method (bug #17638). (Rob Richards)
 - Fixed bug #23009 (pg_select with timestamp). (Marcus, Jay)
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi





-- 
- For Sale! -


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-04-01 Thread Jani Taskinen
sniper  Tue Apr  1 11:02:31 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  crap removal
  
Index: php4/NEWS
diff -u php4/NEWS:1.1386 php4/NEWS:1.1387
--- php4/NEWS:1.1386Mon Mar 31 20:30:50 2003
+++ php4/NEWS   Tue Apr  1 11:02:31 2003
@@ -1,7 +1,6 @@
 PHPNEWS
 |||
 ? ? ??? 200?, Version 5.0.0
-- now addslashes() do it also on cybase magic mode(moshe).
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
 - Fixed bug #22386 (Using browscap causes segfault). (Jay)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-03-31 Thread Jani Taskinen
sniper  Mon Mar 31 18:26:12 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Householding..
  
Index: php4/NEWS
diff -u php4/NEWS:1.1384 php4/NEWS:1.1385
--- php4/NEWS:1.1384Sun Mar 30 20:30:48 2003
+++ php4/NEWS   Mon Mar 31 18:26:12 2003
@@ -1,13 +1,9 @@
 PHPNEWS
 |||
 ? ? ??? 200?, Version 5.0.0
-- Added optional parameter to openssl_sign() to specify the hashing
-  algorithm to use. ([EMAIL PROTECTED], Derick)
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
-- Fixed bug #22386 (Using browscap causes segfault). This fix
-  also adds an optional bool argument to get_browser() that
-  makes the return value an array instead of an object. (jay)
+- Fixed bug #22386 (Using browscap causes segfault). (Jay)
 - Fixed bug #22895 (PHP cli outputs errors in text AND html). (Marcus)
 - Fixed bug #22059 (ftp_chdir causes segfault). (Sara)
 - Fixed bug #21985 and #22064 (various mb_send_mail() issues). (Moriyoshi)
@@ -24,6 +20,9 @@
 - Changed array_search() to accept also objects as a needle. (Moriyoshi)
 - Changed ext/mcrypt to require libmcrypt version 2.5.6 or greater. (Derick)
 - Changed uniqid() parameters to be optional and allow any prefix length. (Marcus)
+- Added optional parameter to get_browser() to make it return an array. (Jay)
+- Added optional parameter to openssl_sign() to specify the hashing algorithm.
+  ([EMAIL PROTECTED], Derick)
 - Added file_set_contents() function. (Sterling)
 - Added mail_force_extra_paramaters php.ini option which forces the addition 
   of the specified parameters to be passed as extra parameters to the sendmail 



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-03-30 Thread Marcus Boerger
helly   Sun Mar 30 09:30:46 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  update
  
Index: php4/NEWS
diff -u php4/NEWS:1.1382 php4/NEWS:1.1383
--- php4/NEWS:1.1382Wed Mar 26 12:05:16 2003
+++ php4/NEWS   Sun Mar 30 09:30:46 2003
@@ -6,10 +6,12 @@
 - Fixed bug #22386 (Using browscap causes segfault). This fix
   also adds an optional bool argument to get_browser() that
   makes the return value an array instead of an object. (jay)
+- Fixed bug #22895 (PHP cli outputs errors in text AND html). (Marcus)
 - Fixed bug #22059 (ftp_chdir causes segfault). (Sara)
 - Fixed bug #21985 and #22064 (various mb_send_mail() issues). (Moriyoshi)
 - Fixed bug #21600 (Assign by reference function call changes variable contents).
   (Zeev)
+- Fixed bug #21007 (html_errors off text-only output in phpinfo). (Marcus)
 - Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
 - Fixed bug #20155 (xmlrpc compile problem with ZE2). (Derick, Jan Schneider)
 - Changed the length parameter in fgetss() to be optional. (Moriyoshi)
@@ -58,7 +60,7 @@
   based on length. (Ilia)
 - Added array_walk_recursive() function. (Ilia)
 - Added new command line parameters -B, -F, -R and -E which allow to process stdin
-  line by line (See php -h for more). (Marcus)
+  line by line (See 'php -h' or 'man php' for more). (Marcus)
 - Added string.base64 stream filter. (Moriyoshi)
 - Added domxml_node_get_path(). (Lukas Schröder)
 - Added iconv related functions. (Moriyoshi)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-03-24 Thread Jani Taskinen
sniper  Mon Mar 24 18:26:32 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  reorder
  
Index: php4/NEWS
diff -u php4/NEWS:1.1380 php4/NEWS:1.1381
--- php4/NEWS:1.1380Mon Mar 24 14:04:44 2003
+++ php4/NEWS   Mon Mar 24 18:26:32 2003
@@ -1,15 +1,15 @@
 PHPNEWS
 |||
 ? ? ??? 200?, Version 5.0.0
+- Moved extensions to PECL (http://pear.php.net/): (James, Tal)
+  . ext/fribidi
 - Fixed bug #22386 (Using browscap causes segfault). This fix
   also adds an optional bool argument to get_browser() that
   makes the return value an array instead of an object. (jay)
-- Moved extensions to PECL (http://pear.php.net/): (James, Tal)
-  . ext/fribidi
-- Fixed bug #21600 (Assign by reference function call changes variable contents).
-  (Zeev)
 - Fixed bug #22059 (ftp_chdir causes segfault). (Sara)
 - Fixed bug #21985 and #22064 (various mb_send_mail() issues). (Moriyoshi)
+- Fixed bug #21600 (Assign by reference function call changes variable contents).
+  (Zeev)
 - Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
 - Fixed bug #20155 (xmlrpc compile problem with ZE2). (Derick, Jan Schneider)
 - Changed the length parameter in fgetss() to be optional. (Moriyoshi)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-03-14 Thread Jani Taskinen
sniper  Fri Mar 14 19:45:26 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  And this never existed in any release either..
  
Index: php4/NEWS
diff -u php4/NEWS:1.1377 php4/NEWS:1.1378
--- php4/NEWS:1.1377Thu Mar 13 17:52:25 2003
+++ php4/NEWS   Fri Mar 14 19:45:22 2003
@@ -362,8 +362,6 @@
 - Made mime_magic and ZIP extensions available on Windows. (Edin)
 - Added xslt_backend_version() and xslt_backend_name() for getting
   information about the processor backend. (chregu)
-- Added php.ini option allow_webdav_methods to allow handling of
-  WebDAV http requests within PHP scripts. (chregu)
 - Added ImageColorMatch() and ImageLayerEffect() functions which are only 
   available when using the bundled GD library. (ttoohey)
 - Made major improvents to the pcntl extension. (Jason)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-03-13 Thread Jani Taskinen
sniper  Thu Mar 13 12:02:49 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  hrm
  
Index: php4/NEWS
diff -u php4/NEWS:1.1374 php4/NEWS:1.1375
--- php4/NEWS:1.1374Wed Mar 12 20:33:35 2003
+++ php4/NEWS   Thu Mar 13 12:02:45 2003
@@ -1,9 +1,6 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 5.0.0
-- Add the file_set_contents() function, as a complement to the
-  file_get_contents()
-  function. (Sterling)
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
 - Fixed bug #21600 (Assign by reference function call changes variable contents).
@@ -20,6 +17,7 @@
 - Changed array_search() to accept also objects as a needle. (Moriyoshi)
 - Changed ext/mcrypt to require libmcrypt version 2.5.6 or greater. (Derick)
 - Changed uniqid() parameters to be optional and allow any prefix length. (Marcus)
+- Added file_set_contents() function. (Sterling)
 - Added mail_force_extra_paramaters php.ini option which forces the addition 
   of the specified parameters to be passed as extra parameters to the sendmail 
   binary. These parameters will always replace the value of the 5th parameter



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-03-13 Thread Sara Golemon
pollita Thu Mar 13 15:18:16 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1375 php4/NEWS:1.1376
--- php4/NEWS:1.1375Thu Mar 13 12:02:45 2003
+++ php4/NEWS   Thu Mar 13 15:18:15 2003
@@ -7,6 +7,7 @@
   (Zeev)
 - Fixed bug #22059 (ftp_chdir causes segfault). (Sara)
 - Fixed bug #21985 and #22064 (various mb_send_mail() issues). (Moriyoshi)
+- Fixed bug #21534 (typo in gmp_gcdext() causes incorrect results). (Sara)
 - Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
 - Fixed bug #20155 (xmlrpc compile problem with ZE2). (Derick, Jan Schneider)
 - Changed the length parameter in fgetss() to be optional. (Moriyoshi)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-03-13 Thread Jani Taskinen
sniper  Thu Mar 13 17:52:25 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  this is in the PHP_4_3 branch...
  
Index: php4/NEWS
diff -u php4/NEWS:1.1376 php4/NEWS:1.1377
--- php4/NEWS:1.1376Thu Mar 13 15:18:15 2003
+++ php4/NEWS   Thu Mar 13 17:52:25 2003
@@ -7,7 +7,6 @@
   (Zeev)
 - Fixed bug #22059 (ftp_chdir causes segfault). (Sara)
 - Fixed bug #21985 and #22064 (various mb_send_mail() issues). (Moriyoshi)
-- Fixed bug #21534 (typo in gmp_gcdext() causes incorrect results). (Sara)
 - Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
 - Fixed bug #20155 (xmlrpc compile problem with ZE2). (Derick, Jan Schneider)
 - Changed the length parameter in fgetss() to be optional. (Moriyoshi)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-03-11 Thread Jani Taskinen
sniper  Tue Mar 11 20:09:27 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  This was merged into PHP_4_3 branch..
  
Index: php4/NEWS
diff -u php4/NEWS:1.1372 php4/NEWS:1.1373
--- php4/NEWS:1.1372Mon Mar 10 22:13:05 2003
+++ php4/NEWS   Tue Mar 11 20:09:27 2003
@@ -68,7 +68,6 @@
   . Support for float modifier.
   . Detection of numeric values inside strings passed as high  low.
   . Proper handle the situations where high == low.
-- Added XBM support for bundled GD library. (Marcus)
 - Added imagefilter() function. Allows application of various filters.
   Only available with bundled GD. (Pierre-Alain Joye, Ilia)
 - Added antialiased drawing support to bundled GD. (Pierre-Alain Joye, Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-03-10 Thread Jani Taskinen
sniper  Mon Mar 10 09:10:30 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  this is in the 4_3 branch
  
Index: php4/NEWS
diff -u php4/NEWS:1.1369 php4/NEWS:1.1370
--- php4/NEWS:1.1369Fri Mar  7 20:31:50 2003
+++ php4/NEWS   Mon Mar 10 09:10:30 2003
@@ -1,7 +1,6 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 5.0.0
-- 64-bit correction to variables passed to zend_parse_parameters (Dave)
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
 - Fixed bug #21600 (Assign by reference function call changes variable contents).



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-03-10 Thread Jani Taskinen
sniper  Mon Mar 10 22:13:05 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  This went to 4_3 branch
  
Index: php4/NEWS
diff -u php4/NEWS:1.1371 php4/NEWS:1.1372
--- php4/NEWS:1.1371Mon Mar 10 20:34:01 2003
+++ php4/NEWS   Mon Mar 10 22:13:05 2003
@@ -1,7 +1,6 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 5.0.0
-- 64-bit corrections to parameters to OnUpdateInt Bug #20994 (Dave)
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
 - Fixed bug #21600 (Assign by reference function call changes variable contents).



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-03-07 Thread Jani Taskinen
sniper  Fri Mar  7 13:38:05 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  These will be already in 4.3.x
  
Index: php4/NEWS
diff -u php4/NEWS:1.1367 php4/NEWS:1.1368
--- php4/NEWS:1.1367Thu Mar  6 20:32:47 2003
+++ php4/NEWS   Fri Mar  7 13:38:04 2003
@@ -1,7 +1,6 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 5.0.0
-- 64-bit correction to variables passed to zend_parse_parameters (Dave)
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
 - Fixed bug #21600 (Assign by reference function call changes variable contents).



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-03-04 Thread Jani Taskinen
sniper  Tue Mar  4 08:50:24 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  remove this from here as it belongs elsewhere
  
Index: php4/NEWS
diff -u php4/NEWS:1.1364 php4/NEWS:1.1365
--- php4/NEWS:1.1364Sat Mar  1 20:32:38 2003
+++ php4/NEWS   Tue Mar  4 08:50:24 2003
@@ -1,7 +1,6 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 5.0.0
-- Crash bug fix.  If config-file-scan-dir is set and contains .ini files
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
 - Fixed bug #21600 (Assign by reference function call changes variable contents).



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-03-04 Thread Jani Taskinen
sniper  Tue Mar  4 09:17:39 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  These are in the branch.
  
Index: php4/NEWS
diff -u php4/NEWS:1.1365 php4/NEWS:1.1366
--- php4/NEWS:1.1365Tue Mar  4 08:50:24 2003
+++ php4/NEWS   Tue Mar  4 09:17:38 2003
@@ -69,10 +69,8 @@
   . Detection of numeric values inside strings passed as high  low.
   . Proper handle the situations where high == low.
 - Added XBM support for bundled GD library. (Marcus)
-- Added imagesavealpha() function. (Jukka Holappa, Pierre-Alain Joye)
 - Added imagefilter() function. Allows application of various filters.
   Only available with bundled GD. (Pierre-Alain Joye, Ilia)
-- Added imageistruecolor(). Only available with GD2. (Pierre-Alain Joye)
 - Added antialiased drawing support to bundled GD. (Pierre-Alain Joye, Ilia)
. imageantialias($im, $flag) to (de)active antialias
. imageline antialias support



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS configure.in /ext/ftp ftp.c /ext/openssl xp_ssl.c /ext/standard basic_functions.c file.c file.h fsock.c streamsfuncs.c /main network.c php_network.h /main/streams php_stream_transport.h transports.c xp_socket.c

2003-02-28 Thread Wez Furlong
wez Fri Feb 28 14:53:21 2003 EDT

  Modified files:  
/php4   NEWS configure.in 
/php4/ext/ftp   ftp.c 
/php4/ext/openssl   xp_ssl.c 
/php4/ext/standard  basic_functions.c file.c file.h fsock.c 
streamsfuncs.c 
/php4/main  network.c php_network.h 
/php4/main/streams  php_stream_transport.h transports.c xp_socket.c 
  Log:
  New user-space functions:
. stream_socket_client() - similar to fsockopen(), but more powerful.
. stream_socket_server() - Creates a server socket.
. stream_socket_accept() - Accept a client connection.
. stream_socket_get_name() - Get local or remote name of socket.
  
  Tidy up some leaks and debug printfs.
  Move more streams functions into streamsfuncs.c and streamsfuncs.h.
  
  
  Index: php4/NEWS
diff -u php4/NEWS:1.1361 php4/NEWS:1.1362
--- php4/NEWS:1.1361Thu Feb 27 10:52:38 2003
+++ php4/NEWS   Fri Feb 28 14:53:19 2003
@@ -21,8 +21,16 @@
   of the specified parameters to be passed as extra parameters to the sendmail 
   binary. These parameters will always replace the value of the 5th parameter
   to mail(), even in safe mode. (Derick)
+- Added new transport layer for sockets and associated functions. (Wez)
+  . stream_socket_client() - similar to fsockopen(), but more powerful.
+  . stream_socket_server() - Creates a server socket.
+  . stream_socket_accept() - Accept a client connection.
+  . stream_socket_get_name() - Get local or remote name of socket.
+  . generic crypto interface for streams (supports dynamic loading of OpenSSL)
+- Added memory mapping support under win32 to improve performance of
+  readfile(), fpassthru() and some internal streams operations. (Wez)
 - Added DBA handler 'inifile' to support ini files. (Marcus)
-- Added filter support. See README.input_filter. (Rasmus)
+- Added input filter support. See README.input_filter. (Rasmus)
 - Added session.hash_function and session.hash_bits_per_character. (Sascha)
 - Added lightweight streaming input abstraction to the Zend Engine scanners
   that provides uniform support for include()'ing data from PHP streams across
Index: php4/configure.in
diff -u php4/configure.in:1.427 php4/configure.in:1.428
--- php4/configure.in:1.427 Thu Feb 27 12:43:36 2003
+++ php4/configure.in   Fri Feb 28 14:53:19 2003
@@ -1,4 +1,4 @@
-dnl ## $Id: configure.in,v 1.427 2003/02/27 17:43:36 wez Exp $ -*- sh -*-
+dnl ## $Id: configure.in,v 1.428 2003/02/28 19:53:19 wez Exp $ -*- sh -*-
 dnl ## Process this file with autoconf to produce a configure script.
 
 divert(1)
@@ -461,6 +461,8 @@
 getrusage \
 gettimeofday \
 gmtime_r \
+inet_ntoa \
+inet_ntop \
 isascii \
 link \
 localtime_r \
Index: php4/ext/ftp/ftp.c
diff -u php4/ext/ftp/ftp.c:1.81 php4/ext/ftp/ftp.c:1.82
--- php4/ext/ftp/ftp.c:1.81 Fri Feb 28 02:25:14 2003
+++ php4/ext/ftp/ftp.c  Fri Feb 28 14:53:19 2003
@@ -17,7 +17,7 @@
+--+
  */
 
-/* $Id: ftp.c,v 1.81 2003/02/28 07:25:14 sniper Exp $ */
+/* $Id: ftp.c,v 1.82 2003/02/28 19:53:19 wez Exp $ */
 
 #include php.h
 
@@ -135,7 +135,9 @@
tv.tv_sec = timeout_sec;
tv.tv_usec = 0;
 
-   ftp-fd = php_hostconnect(host, (unsigned short) (port ? port : 21), 
SOCK_STREAM, tv TSRMLS_CC);
+   ftp-fd = php_network_connect_socket_to_host(host,
+   (unsigned short) (port ? port : 21), SOCK_STREAM,
+   0, tv, NULL, NULL TSRMLS_CC);
if (ftp-fd == -1) {
goto bail;
}
Index: php4/ext/openssl/xp_ssl.c
diff -u php4/ext/openssl/xp_ssl.c:1.3 php4/ext/openssl/xp_ssl.c:1.4
--- php4/ext/openssl/xp_ssl.c:1.3   Fri Feb 28 02:25:14 2003
+++ php4/ext/openssl/xp_ssl.c   Fri Feb 28 14:53:20 2003
@@ -16,7 +16,7 @@
   +--+
 */
 
-/* $Id: xp_ssl.c,v 1.3 2003/02/28 07:25:14 sniper Exp $ */
+/* $Id: xp_ssl.c,v 1.4 2003/02/28 19:53:20 wez Exp $ */
 
 #include php.h
 #include ext/standard/file.h
@@ -288,7 +288,6 @@
method = TLSv1_server_method();
break;
default:
-   printf(unknown method\n);
return -1;
 
}
@@ -307,19 +306,16 @@
}
 
if (!SSL_set_fd(sslsock-ssl_handle, sslsock-s.socket)) {
-   printf(failed to set fd %d\n, sslsock-s.socket);
handle_ssl_error(stream, 0 TSRMLS_CC);
}
 
if (cparam-inputs.session) {
-   printf(sess=%p\n, cparam-inputs.session);
if (cparam-inputs.session-ops != php_openssl_socket_ops) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, supplied session 
stream must be an SSL enabled stream);
} else {
SSL_copy_session_id(sslsock-ssl_handle, 
((php_openssl_netstream_data_t*)cparam-inputs.session-abstract)-ssl_handle);
}
  

[PHP-CVS] cvs: php4 / NEWS

2003-02-28 Thread Wez Furlong
wez Fri Feb 28 20:28:50 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  New!
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1362 php4/NEWS:1.1363
--- php4/NEWS:1.1362Fri Feb 28 14:53:19 2003
+++ php4/NEWS   Fri Feb 28 20:28:50 2003
@@ -27,6 +27,7 @@
   . stream_socket_accept() - Accept a client connection.
   . stream_socket_get_name() - Get local or remote name of socket.
   . generic crypto interface for streams (supports dynamic loading of OpenSSL)
+- Added stream_copy_to_stream() function. (Wez)
 - Added memory mapping support under win32 to improve performance of
   readfile(), fpassthru() and some internal streams operations. (Wez)
 - Added DBA handler 'inifile' to support ini files. (Marcus)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-02-27 Thread Jani Taskinen
sniper  Thu Feb 27 10:52:39 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  ..if only all lakes were kossu..
  
Index: php4/NEWS
diff -u php4/NEWS:1.1360 php4/NEWS:1.1361
--- php4/NEWS:1.1360Wed Feb 26 20:44:34 2003
+++ php4/NEWS   Thu Feb 27 10:52:38 2003
@@ -1,10 +1,6 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 5.0.0
-- Added an extra ini setting (mail_force_extra_paramaters) which forces
-  the addition of the specified parameters to be passed as extra
-  parameters to the sendmail binary. These parameters will always replace
-  the value of the 5th parameter to mail(), even in safe mode. (Derick)
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
 - Fixed bug #21600 (Assign by reference function call changes variable contents).
@@ -21,9 +17,13 @@
 - Changed array_search() to accept also objects as a needle. (Moriyoshi)
 - Changed ext/mcrypt to require libmcrypt version 2.5.6 or greater. (Derick)
 - Changed uniqid() parameters to be optional and allow any prefix length. (Marcus)
+- Added mail_force_extra_paramaters php.ini option which forces the addition 
+  of the specified parameters to be passed as extra parameters to the sendmail 
+  binary. These parameters will always replace the value of the 5th parameter
+  to mail(), even in safe mode. (Derick)
 - Added DBA handler 'inifile' to support ini files. (Marcus)
 - Added filter support. See README.input_filter. (Rasmus)
-- Added session.hash_function and session.hash_bits_per_character. (Sascha)
+- Added session.hash_function and session.hash_bits_per_character. (Sascha)
 - Added lightweight streaming input abstraction to the Zend Engine scanners
   that provides uniform support for include()'ing data from PHP streams across
   all platforms (Wez, Zend Engine).
@@ -60,6 +60,7 @@
   . Detection of numeric values inside strings passed as high  low.
   . Proper handle the situations where high == low.
 - Added XBM support for bundled GD library. (Marcus)
+- Added imagesavealpha() function. (Jukka Holappa, Pierre-Alain Joye)
 - Added imagefilter() function. Allows application of various filters.
   Only available with bundled GD. (Pierre-Alain Joye, Ilia)
 - Added imageistruecolor(). Only available with GD2. (Pierre-Alain Joye)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-02-25 Thread Moriyoshi Koizumi
moriyoshi   Tue Feb 25 15:41:07 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  NEWS update
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1358 php4/NEWS:1.1359
--- php4/NEWS:1.1358Mon Feb 24 11:01:38 2003
+++ php4/NEWS   Tue Feb 25 15:41:07 2003
@@ -9,6 +9,7 @@
 - Fixed bug #21985 and #22064 (various mb_send_mail() issues). (Moriyoshi)
 - Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
 - Fixed bug #20155 (xmlrpc compile problem with ZE2). (Derick, Jan Schneider)
+- Changed the length parameter in fgetss() to be optional. (Moriyoshi)
 - Changed ini parser to allow for handling of quoted multi-line values. (Ilia)
 - Changed get_extension_funcs() to return list of the built-in Zend Engine 
   functions if zend is specified as the module name. (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-02-24 Thread Jani Taskinen
sniper  Mon Feb 24 11:01:39 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  BFN
  
Index: php4/NEWS
diff -u php4/NEWS:1.1357 php4/NEWS:1.1358
--- php4/NEWS:1.1357Sat Feb 22 21:45:10 2003
+++ php4/NEWS   Mon Feb 24 11:01:38 2003
@@ -3,8 +3,10 @@
 ? ? ??? 200?, Version 5.0.0
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
-- Fixed bug #21985 and #22064 (various mb_send_mail() issues). (Moriyoshi)
+- Fixed bug #21600 (Assign by reference function call changes variable contents).
+  (Zeev)
 - Fixed bug #22059 (ftp_chdir causes segfault). (Sara)
+- Fixed bug #21985 and #22064 (various mb_send_mail() issues). (Moriyoshi)
 - Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
 - Fixed bug #20155 (xmlrpc compile problem with ZE2). (Derick, Jan Schneider)
 - Changed ini parser to allow for handling of quoted multi-line values. (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-02-22 Thread Jani Taskinen
sniper  Sat Feb 22 21:24:51 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Style
  
Index: php4/NEWS
diff -u php4/NEWS:1.1355 php4/NEWS:1.1356
--- php4/NEWS:1.1355Sat Feb 22 20:32:03 2003
+++ php4/NEWS   Sat Feb 22 21:24:51 2003
 -1,9 +1,6 
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 5.0.0
-- Added dba handler inifiles to support ini files. (Marcus)
-- Input Filter support added. See  README.input_filter. (Rasmus)
-- Updated IFX_VERSION entry to work with new Version output of ESQL/C (Corne')
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
 - Fixed bug #21985 and #22064 (various mb_send_mail() issues). (Moriyoshi)
 -17,6 +14,8 
 - Changed array_search() to accept also objects as a needle. (Moriyoshi)
 - Changed ext/mcrypt to require libmcrypt version 2.5.6 or greater. (Derick)
 - Changed uniqid() parameters to be optional and allow any prefix length. (Marcus)
+- Added DBA handler 'inifiles' to support ini files. (Marcus)
+- Added filter support. See README.input_filter. (Rasmus)
 - Added session.hash_function and session.hash_bits_per_character. (Sascha)
 - Added lightweight streaming input abstraction to the Zend Engine scanners
   that provides uniform support for include()'ing data from PHP streams across



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS

2003-02-22 Thread Marcus Boerger
helly   Sat Feb 22 21:45:11 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Fix the name
  # but yes Jani your sentence has better style
  
Index: php4/NEWS
diff -u php4/NEWS:1.1356 php4/NEWS:1.1357
--- php4/NEWS:1.1356Sat Feb 22 21:24:51 2003
+++ php4/NEWS   Sat Feb 22 21:45:10 2003
 -14,7 +14,7 
 - Changed array_search() to accept also objects as a needle. (Moriyoshi)
 - Changed ext/mcrypt to require libmcrypt version 2.5.6 or greater. (Derick)
 - Changed uniqid() parameters to be optional and allow any prefix length. (Marcus)
-- Added DBA handler 'inifiles' to support ini files. (Marcus)
+- Added DBA handler 'inifile' to support ini files. (Marcus)
 - Added filter support. See README.input_filter. (Rasmus)
 - Added session.hash_function and session.hash_bits_per_character. (Sascha)
 - Added lightweight streaming input abstraction to the Zend Engine scanners



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4 / NEWS /ext/standard md5.c sha1.c

2003-02-20 Thread Derick Rethans
derick  Thu Feb 20 05:32:35 2003 EDT

  Modified files:  
/php4   NEWS 
/php4/ext/standard  md5.c sha1.c 
  Log:
  - Also add the optional raw output parameter to md5_file and sha1_file.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1352 php4/NEWS:1.1353
--- php4/NEWS:1.1352Thu Feb 20 02:13:59 2003
+++ php4/NEWS   Thu Feb 20 05:32:33 2003
@@ -20,8 +20,9 @@
 - Added lightweight streaming input abstraction to the Zend Engine scanners
   that provides uniform support for include()'ing data from PHP streams across
   all platforms (Wez, Zend Engine).
-- Added optional parameter to sha1() and md5() which makes them return 
-  the digest as binary data. (Michael Bretterklieber [EMAIL PROTECTED], Derick)
+- Added optional parameter to sha1(), sha1_file(), md5() and md5_file() which
+  makes them return the digest as binary data. (Michael Bretterklieber
+  [EMAIL PROTECTED], Derick)
 - Added proc_nice() function. Changes priority of the current process. (Ilia)
 - Added pcntl_getpriority() and pcntl_setpriority() functions. (Ilia)
 - Added idate(), date_sunrise() and date_sunset() functions. (Moshe Doron)
Index: php4/ext/standard/md5.c
diff -u php4/ext/standard/md5.c:1.31 php4/ext/standard/md5.c:1.32
--- php4/ext/standard/md5.c:1.31Thu Feb 20 01:56:37 2003
+++ php4/ext/standard/md5.c Thu Feb 20 05:32:35 2003
@@ -16,7 +16,7 @@
+--+
 */
 
-/* $Id: md5.c,v 1.31 2003/02/20 06:56:37 derick Exp $ */
+/* $Id: md5.c,v 1.32 2003/02/20 10:32:35 derick Exp $ */
 
 /* 
  * md5.c - Copyright 1997 Lachlan Roche 
@@ -69,11 +69,13 @@
 }
 /* }}} */
 
-/* {{{ proto string md5_file(string filename)
+/* {{{ proto string md5_file(string filename [, bool raw_output])
Calculate the md5 hash of given filename */
 PHP_NAMED_FUNCTION(php_if_md5_file)
 {
-   zval  **arg;
+   char  *arg;
+   int   arg_len;
+   zend_bool raw_output = 0;
char  md5str[33];
unsigned char buf[1024];
unsigned char digest[16];
@@ -81,21 +83,19 @@
int   n;
FILE  *fp;
 
-   if (ZEND_NUM_ARGS() != 1 || zend_get_parameters_ex(1, arg) == FAILURE) {
-   WRONG_PARAM_COUNT;
+   if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, s|b, arg, arg_len, 
+raw_output) == FAILURE) {
+   return;
}
 
-   convert_to_string_ex(arg);
-
-   if (PG(safe_mode)  (!php_checkuid(Z_STRVAL_PP(arg), NULL, 
CHECKUID_CHECK_FILE_AND_DIR))) {
+   if (PG(safe_mode)  (!php_checkuid(arg, NULL, CHECKUID_CHECK_FILE_AND_DIR))) {
RETURN_FALSE;
}
 
-   if (php_check_open_basedir(Z_STRVAL_PP(arg) TSRMLS_CC)) {
+   if (php_check_open_basedir(arg TSRMLS_CC)) {
RETURN_FALSE;
}
 
-   if ((fp = VCWD_FOPEN(Z_STRVAL_PP(arg), rb)) == NULL) {
+   if ((fp = VCWD_FOPEN(arg, rb)) == NULL) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, Unable to open file);
RETURN_FALSE;
}
@@ -115,9 +115,12 @@
 
fclose(fp);
 
-   make_digest(md5str, digest);
-
-   RETVAL_STRING(md5str, 1);
+   if (raw_output) {
+   RETURN_STRINGL(digest, 20, 1);
+   } else {
+   make_digest(md5str, digest);
+   RETVAL_STRING(md5str, 1);
+   }
 }
 /* }}} */
 
Index: php4/ext/standard/sha1.c
diff -u php4/ext/standard/sha1.c:1.6 php4/ext/standard/sha1.c:1.7
--- php4/ext/standard/sha1.c:1.6Thu Feb 20 01:56:37 2003
+++ php4/ext/standard/sha1.cThu Feb 20 05:32:35 2003
@@ -16,7 +16,7 @@
+--+
 */
 
-/* $Id: sha1.c,v 1.6 2003/02/20 06:56:37 derick Exp $ */
+/* $Id: sha1.c,v 1.7 2003/02/20 10:32:35 derick Exp $ */
 
 #include stdio.h
 #include php.h
@@ -67,11 +67,13 @@
 
 /* }}} */
 
-/* {{{ proto string sha1_file(string filename)
+/* {{{ proto string sha1_file(string filename [, bool raw_output])
Calculate the sha1 hash of given filename */
 PHP_FUNCTION(sha1_file)
 {
-   zval  **arg;
+   char  *arg;
+   int   arg_len;
+   zend_bool raw_output = 0;
char  sha1str[41];
unsigned char buf[1024];
unsigned char digest[20];
@@ -79,21 +81,19 @@
int   n;
FILE  *fp;
 
-   if (ZEND_NUM_ARGS() != 1 || zend_get_parameters_ex(1, arg) == FAILURE) {
-   WRONG_PARAM_COUNT;
+   if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, s|b, arg, arg_len, 
+raw_output) == FAILURE) {
+   return;
}
 
-   convert_to_string_ex(arg);
-
-   if (PG(safe_mode)  (!php_checkuid(Z_STRVAL_PP(arg), NULL, 
CHECKUID_CHECK_FILE_AND_DIR))) {
+   if (PG(safe_mode)  (!php_checkuid(arg, NULL, CHECKUID_CHECK_FILE_AND_DIR))) {
RETURN_FALSE;
}
 
-   if (php_check_open_basedir(Z_STRVAL_PP(arg) TSRMLS_CC)) {

[PHP-CVS] cvs: php4 / NEWS

2003-02-20 Thread Jani Taskinen
sniper  Thu Feb 20 08:42:29 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  style
  
Index: php4/NEWS
diff -u php4/NEWS:1.1353 php4/NEWS:1.1354
--- php4/NEWS:1.1353Thu Feb 20 05:32:33 2003
+++ php4/NEWS   Thu Feb 20 08:42:29 2003
@@ -1,7 +1,6 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 5.0.0
-- Added session.hash_function and session.hash_bits_per_character. (Sascha)
 - Input Filter support added. See  README.input_filter. (Rasmus)
 - Updated IFX_VERSION entry to work with new Version output of ESQL/C (Corne')
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
@@ -17,12 +16,12 @@
 - Changed array_search() to accept also objects as a needle. (Moriyoshi)
 - Changed ext/mcrypt to require libmcrypt version 2.5.6 or greater. (Derick)
 - Changed uniqid() parameters to be optional and allow any prefix length. (Marcus)
+- Added session.hash_function and session.hash_bits_per_character. (Sascha)
 - Added lightweight streaming input abstraction to the Zend Engine scanners
   that provides uniform support for include()'ing data from PHP streams across
   all platforms (Wez, Zend Engine).
 - Added optional parameter to sha1(), sha1_file(), md5() and md5_file() which
-  makes them return the digest as binary data. (Michael Bretterklieber
-  [EMAIL PROTECTED], Derick)
+  makes them return the digest as binary data. (Michael Bretterklieber, Derick)
 - Added proc_nice() function. Changes priority of the current process. (Ilia)
 - Added pcntl_getpriority() and pcntl_setpriority() functions. (Ilia)
 - Added idate(), date_sunrise() and date_sunset() functions. (Moshe Doron)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-19 Thread Wez Furlong
wez Wed Feb 19 09:59:26 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  News about the ZE stream thing
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1346 php4/NEWS:1.1347
--- php4/NEWS:1.1346Wed Feb 19 01:33:43 2003
+++ php4/NEWS   Wed Feb 19 09:59:26 2003
@@ -14,6 +14,9 @@
 - Changed array_search() to accept also objects as a needle. (Moriyoshi)
 - Changed ext/mcrypt to require libmcrypt version 2.5.6 or greater. (Derick)
 - Changed uniqid() parameters to be optional and allow any prefix length. (Marcus)
+- Added lightweight streaming input abstraction to the Zend Engine scanners
+  the provides uniform support for include()'ing data from PHP streams across
+  all platforms (Wez, Zend Engine).
 - Added optional parameter to sha1() and md5() which makes them return 
   the digest as binary data. (Michael Bretterklieber [EMAIL PROTECTED], Derick)
 - Added proc_nice() function. Changes priority of the current process. (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-19 Thread Wez Furlong
wez Wed Feb 19 10:07:45 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  typo..
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1347 php4/NEWS:1.1348
--- php4/NEWS:1.1347Wed Feb 19 09:59:26 2003
+++ php4/NEWS   Wed Feb 19 10:07:45 2003
@@ -15,7 +15,7 @@
 - Changed ext/mcrypt to require libmcrypt version 2.5.6 or greater. (Derick)
 - Changed uniqid() parameters to be optional and allow any prefix length. (Marcus)
 - Added lightweight streaming input abstraction to the Zend Engine scanners
-  the provides uniform support for include()'ing data from PHP streams across
+  that provides uniform support for include()'ing data from PHP streams across
   all platforms (Wez, Zend Engine).
 - Added optional parameter to sha1() and md5() which makes them return 
   the digest as binary data. (Michael Bretterklieber [EMAIL PROTECTED], Derick)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP-CVS] cvs: php4 / NEWS

2003-02-19 Thread Derick Rethans
On Thu, 20 Feb 2003, Sascha Schumann wrote:

 sas   Thu Feb 20 01:56:18 2003 EDT
 
   Modified files:  
 /php4 NEWS 
   Log:
   update
   
 Index: php4/NEWS
 diff -u php4/NEWS:1.1349 php4/NEWS:1.1350
 --- php4/NEWS:1.1349  Wed Feb 19 20:33:17 2003
 +++ php4/NEWS Thu Feb 20 01:56:18 2003
 @@ -1,6 +1,7 @@
  PHP 4  NEWS
  |||
  ? ? ??? 200?, Version 5.0.0
 +- Added session_regenerate_id(). (Sascha)

It was added for 4.3.2, not for 5.0.0, so I don't see why it should be 
put here too? AFAIK the NEWS from the branch is merged into here too 
(usually by Jani).

Derick

-- 
Stop mad cowboy disease!
-
 Derick Rethans http://derickrethans.nl/ 
 PHP Magazine - PHP Magazine for Professionals   http://php-mag.net/
-


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-19 Thread Sascha Schumann
sas Thu Feb 20 01:57:42 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  update
  
Index: php4/NEWS
diff -u php4/NEWS:1.1350 php4/NEWS:1.1351
--- php4/NEWS:1.1350Thu Feb 20 01:56:18 2003
+++ php4/NEWS   Thu Feb 20 01:57:42 2003
@@ -2,6 +2,7 @@
 |||
 ? ? ??? 200?, Version 5.0.0
 - Added session_regenerate_id(). (Sascha)
+- Added session.hash_function and session.hash_bits_per_character. (Sascha)
 - Input Filter support added. See  README.input_filter. (Rasmus)
 - Updated IFX_VERSION entry to work with new Version output of ESQL/C (Corne')
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-19 Thread Jani Taskinen
sniper  Thu Feb 20 02:13:59 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  This is added in 4.3.2
  
Index: php4/NEWS
diff -u php4/NEWS:1.1351 php4/NEWS:1.1352
--- php4/NEWS:1.1351Thu Feb 20 01:57:42 2003
+++ php4/NEWS   Thu Feb 20 02:13:59 2003
@@ -1,7 +1,6 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 5.0.0
-- Added session_regenerate_id(). (Sascha)
 - Added session.hash_function and session.hash_bits_per_character. (Sascha)
 - Input Filter support added. See  README.input_filter. (Rasmus)
 - Updated IFX_VERSION entry to work with new Version output of ESQL/C (Corne')



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-18 Thread Jani Taskinen
sniper  Wed Feb 19 01:33:43 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  cleanup, documentation belongs elsewhere
  
Index: php4/NEWS
diff -u php4/NEWS:1.1345 php4/NEWS:1.1346
--- php4/NEWS:1.1345Tue Feb 18 20:32:20 2003
+++ php4/NEWS   Wed Feb 19 01:33:43 2003
@@ -1,14 +1,6 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 5.0.0
-- Added new parameter to sha1() and md5() which return the digest as
-  binary data. (Michael Bretterklieber [EMAIL PROTECTED], Derick)
-- Added proc_nice() function, which allows changing priority of the current
-  process. (Ilia)
-- Added pcntl_getpriority() and pcntl_setpriority() functions, which can be 
-  used to fetch and change priority of any process. (Ilia)
-- Added idate(), date_sunrise() and date_sunset() functions. (Moshe Doron)
-- Added support for long options in CLI  CGI (e.g. --version). (Marcus)
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
 - Fixed bug #21985 and #22064 (various mb_send_mail() issues). (Moriyoshi)
@@ -21,22 +13,25 @@
 - Changed is_executable() to be available also on Windows. (Shane)
 - Changed array_search() to accept also objects as a needle. (Moriyoshi)
 - Changed ext/mcrypt to require libmcrypt version 2.5.6 or greater. (Derick)
-- Changed uniqid() parameters to be optional and allow any prefix length.
-  (Marcus)
+- Changed uniqid() parameters to be optional and allow any prefix length. (Marcus)
+- Added optional parameter to sha1() and md5() which makes them return 
+  the digest as binary data. (Michael Bretterklieber [EMAIL PROTECTED], Derick)
+- Added proc_nice() function. Changes priority of the current process. (Ilia)
+- Added pcntl_getpriority() and pcntl_setpriority() functions. (Ilia)
+- Added idate(), date_sunrise() and date_sunset() functions. (Moshe Doron)
+- Added long options into CLI  CGI (e.g. --version). (Marcus)
 - Added strpbrk() function. Searches a string for a list of characters. (Ilia)
 - Added stream_get_line() function. Reads either the specified number of bytes
   or until the ending string is found. (Ilia)
-- Added optional parameter to mkdir() which makes directory creation recursive.
-  (Ilia)
-- Added optional parameter to file() which can be used to make the result array
-  not contain the line endings and to skip empty lines. (Ilia)
-- Added get_headers() function. Used to retrieve headers sent by the browser
-  for the specified URL. (Ilia)
+- Added optional parameter to mkdir() to make directory creation recursive. (Ilia)
+- Added optional parameter to file() which makes the result array not contain
+  the line endings and to skip empty lines. (Ilia)
+- Added get_headers() function. Returns headers sent by the server of 
+  the specified URL. (Ilia)
 - Added str_split() function. Breaks down a string into an array of elements 
   based on length. (Ilia)
-- Added array_walk_recursive() function. Applies user function recursively 
-  to an array. (Ilia)
-- Added command line parameters -B, -F, -R and -E which allow to process stdin
+- Added array_walk_recursive() function. (Ilia)
+- Added new command line parameters -B, -F, -R and -E which allow to process stdin
   line by line (See php -h for more). (Marcus)
 - Added string.base64 stream filter. (Moriyoshi)
 - Added domxml_node_get_path(). (Lukas Schröder)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-17 Thread Jani Taskinen
sniper  Mon Feb 17 22:27:56 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  style polizei
  
Index: php4/NEWS
diff -u php4/NEWS:1.1342 php4/NEWS:1.1343
--- php4/NEWS:1.1342Mon Feb 17 20:44:53 2003
+++ php4/NEWS   Mon Feb 17 22:27:55 2003
@@ -3,11 +3,9 @@
 ? ? ??? 200?, Version 5.0.0
 - Added proc_nice() function, which allows changing priority of the current
   process. (Ilia)
-- Added pcntl_getpriority()  pcntl_setpriority(), which can be used to
-  fetch  change priority of any process. (Ilia)
-- new idate() function.
-  new date_sunrise() function.
-  new date_sunset() function.
+- Added pcntl_getpriority() and pcntl_setpriority() functions, which can be 
+  used to fetch and change priority of any process. (Ilia)
+- Added idate(), date_sunrise() and date_sunset() functions. (Moshe Doron)
 - Added support for long options in CLI  CGI (e.g. --version). (Marcus)
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-15 Thread Ilia Alshanetsky
iliaa   Sat Feb 15 17:07:50 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  New feature news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1338 php4/NEWS:1.1339
--- php4/NEWS:1.1338Thu Feb 13 14:48:48 2003
+++ php4/NEWS   Sat Feb 15 17:07:49 2003
@@ -6,6 +6,7 @@
 - Fixed bug #22059 (ftp_chdir causes segfault). (Sara)
 - Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
 - Fixed bug #20155 (xmlrpc compile problem with ZE2). (Derick, Jan Schneider)
+- Changed ini parser to allow for handling of quoted multi-line values. (Ilia)
 - Changed get_extension_funcs() to return list of the built-in Zend Engine 
   functions if zend is specified as the module name. (Ilia)
 - Changed is_executable() to be available also on Windows. (Shane)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-13 Thread Jani Taskinen
sniper  Thu Feb 13 12:01:29 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  change history
  
Index: php4/NEWS
diff -u php4/NEWS:1.1336 php4/NEWS:1.1337
--- php4/NEWS:1.1336Thu Feb 13 02:16:19 2003
+++ php4/NEWS   Thu Feb 13 12:01:28 2003
@@ -63,13 +63,13 @@
 - Removed extensions: (Jan, Jani, Sebastian)
   . ext/aspell
   . ext/ccvs
-  . ext/cybercash
   . ext/icap
   . sapi/fastcgi
   . sapi/fhttpd
-- Moved extensions to PECL (http://pear.php.net/): (James, Derick)
+- Moved extensions to PECL (http://pear.php.net/): (James, Derick, George)
   . ext/vpopmail
   . ext/cybermut
+  . ext/cybercash
 - ZLIB extension is now built-in in the Windows distribution.
   External extension (php_zlib.dll) has been removed. (Edin)
 - Fixed a crash when using invalid color index with imagecolortransparent().



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS /ext/ftp ftp.c

2003-02-13 Thread Sara Golemon
pollita Thu Feb 13 14:48:49 2003 EDT

  Modified files:  
/php4   NEWS 
/php4/ext/ftp   ftp.c 
  Log:
  Bug #22059. ftp_chdir() causes segfault.  efree(ftp-pwd) was being called without 
knowing for certain that ftp-pwd
  actually pointed anywhere.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1337 php4/NEWS:1.1338
--- php4/NEWS:1.1337Thu Feb 13 12:01:28 2003
+++ php4/NEWS   Thu Feb 13 14:48:48 2003
@@ -3,6 +3,7 @@
 ? ? ??? 200?, Version 5.0.0
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
+- Fixed bug #22059 (ftp_chdir causes segfault). (Sara)
 - Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
 - Fixed bug #20155 (xmlrpc compile problem with ZE2). (Derick, Jan Schneider)
 - Changed get_extension_funcs() to return list of the built-in Zend Engine 
Index: php4/ext/ftp/ftp.c
diff -u php4/ext/ftp/ftp.c:1.76 php4/ext/ftp/ftp.c:1.77
--- php4/ext/ftp/ftp.c:1.76 Thu Jan 30 23:54:57 2003
+++ php4/ext/ftp/ftp.c  Thu Feb 13 14:48:49 2003
@@ -17,7 +17,7 @@
+--+
  */
 
-/* $Id: ftp.c,v 1.76 2003/01/31 04:54:57 pollita Exp $ */
+/* $Id: ftp.c,v 1.77 2003/02/13 19:48:49 pollita Exp $ */
 
 #include php.h
 
@@ -473,7 +473,8 @@
return 0;
}
 
-   efree(ftp-pwd);
+   if (ftp-pwd)
+   efree(ftp-pwd);
 
if (!ftp_putcmd(ftp, CWD, dir)) {
return 0;
@@ -494,7 +495,8 @@
return 0;
}
 
-   efree(ftp-pwd);
+   if (ftp-pwd)
+   efree(ftp-pwd);
 
if (!ftp_putcmd(ftp, CDUP, NULL)) {
return 0;



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-11 Thread Ilia Alshanetsky
iliaa   Tue Feb 11 17:49:22 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  New function news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1332 php4/NEWS:1.1333
--- php4/NEWS:1.1332Mon Feb 10 22:07:39 2003
+++ php4/NEWS   Tue Feb 11 17:49:22 2003
@@ -13,6 +13,8 @@
 - Changed uniqid() parameters to be optional and allow any prefix length.
   (Marcus)
 - Added improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
+- Added strpbrk() function, which can search a string for a list of 
+  characters. (Ilia)
 - Added stream_get_line() function. This function will read either 
   the specified number of bytes or until the ending string is found. (Ilia)
 - Added optional parameter to mkdir() which makes directory creation recursive.



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-11 Thread Jani Taskinen
sniper  Tue Feb 11 21:58:13 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  news news news..
  
Index: php4/NEWS
diff -u php4/NEWS:1.1333 php4/NEWS:1.1334
--- php4/NEWS:1.1333Tue Feb 11 17:49:22 2003
+++ php4/NEWS   Tue Feb 11 21:58:13 2003
@@ -13,43 +13,41 @@
 - Changed uniqid() parameters to be optional and allow any prefix length.
   (Marcus)
 - Added improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
-- Added strpbrk() function, which can search a string for a list of 
-  characters. (Ilia)
-- Added stream_get_line() function. This function will read either 
-  the specified number of bytes or until the ending string is found. (Ilia)
+- Added strpbrk() function. Searches a string for a list of characters. (Ilia)
+- Added stream_get_line() function. Reads either the specified number of bytes
+  or until the ending string is found. (Ilia)
 - Added optional parameter to mkdir() which makes directory creation recursive.
   (Ilia)
 - Added optional parameter to file() which can be used to make the result array
   not contain the line endings and to skip empty lines. (Ilia)
-- Added get_headers() function, it can be used to retrieve headers sent
-  by the browser for the specified URL. (Ilia)
-- Added str_split() function, this function can break down a string into an
-  array of elements based on length. (Ilia)
+- Added get_headers() function. Used to retrieve headers sent by the browser
+  for the specified URL. (Ilia)
+- Added str_split() function. Breaks down a string into an array of elements 
+  based on length. (Ilia)
 - Added man page for CLI version of PHP. (marcus)
-- Added array_walk_recursive() function that can apply user function 
-  recursively to an array. (Ilia)
-- Added command line parameters -B, -F, -R and -E which allow to process
-  stdin line by line (See php -h for more). (Marcus)
+- Added array_walk_recursive() function. Applies user function recursively 
+  to an array. (Ilia)
+- Added command line parameters -B, -F, -R and -E which allow to process stdin
+  line by line (See php -h for more). (Marcus)
 - Added string.base64 stream filter. (Moriyoshi)
-- Added domxml_node_get_path() (Lukas Schröder)
-- Added iconv related functions (Moriyoshi)
+- Added domxml_node_get_path(). (Lukas Schröder)
+- Added iconv related functions. (Moriyoshi)
   . iconv_strlen()
   . iconv_substr()
   . iconv_strpos()
   . iconv_strrpos()
   . iconv_mime_decode()
   . iconv_mime_encode()
-- Added new range() functionality (Ilia)
+- Added new range() functionality. (Ilia)
   . Support for float modifier.
   . Detection of numeric values inside strings passed as high  low.
   . Proper handle the situations where high == low.
 - Added XBM support for GetImageSize(). (Marcus)
 - Added XBM support for bundled GD library. (Marcus)
-- Added imagefilter() function which allows application of various filters.
-  This function is only available with bundled GD. (Pierre-Alain Joye, Ilia)
-- Added imageistruecolor(), only available with GD2. (Pierre-Alain Joye)
-- Added antialiased drawing support (Pierre-Alain Joye, Ilia), available only
-  with bundled GD:
+- Added imagefilter() function. Allows application of various filters.
+  Only available with bundled GD. (Pierre-Alain Joye, Ilia)
+- Added imageistruecolor(). Only available with GD2. (Pierre-Alain Joye)
+- Added antialiased drawing support to bundled GD. (Pierre-Alain Joye, Ilia)
. imageantialias($im, $flag) to (de)active antialias
. imageline antialias support
. imagepolygon antialias support



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-11 Thread Jani Taskinen
sniper  Tue Feb 11 23:08:29 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Man page is added in 4.3.1, moved this entry to branch
  
Index: php4/NEWS
diff -u php4/NEWS:1.1334 php4/NEWS:1.1335
--- php4/NEWS:1.1334Tue Feb 11 21:58:13 2003
+++ php4/NEWS   Tue Feb 11 23:08:29 2003
@@ -24,7 +24,6 @@
   for the specified URL. (Ilia)
 - Added str_split() function. Breaks down a string into an array of elements 
   based on length. (Ilia)
-- Added man page for CLI version of PHP. (marcus)
 - Added array_walk_recursive() function. Applies user function recursively 
   to an array. (Ilia)
 - Added command line parameters -B, -F, -R and -E which allow to process stdin



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-10 Thread Moriyoshi Koizumi
moriyoshi   Mon Feb 10 14:53:13 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  MFB: Fixed typo
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1326 php4/NEWS:1.1327
--- php4/NEWS:1.1326Mon Feb 10 14:39:43 2003
+++ php4/NEWS   Mon Feb 10 14:53:13 2003
@@ -77,8 +77,8 @@
   . ext/cybermut
 - ZLIB extension is now built-in in the Windows distribution.
   External extension (php_zlib.dll) has been removed. (Edin)
-- Fix a crash when using invalid color index with imagecolortransparent()
-  (Pierre-Alain Joye).
+- Fix a crash when using invalid color index with imagecolortransparent().
+  (Pierre-Alain Joye)
 - Fixed bug #20987 (no handling for client certificates). (Ilia)
 - Fixed bug #21039 (crash when not supplying an IV to mcrypt_generic_init).
   (Derick)
@@ -95,7 +95,7 @@
   true-color image). (Ilia)
 - Fixed a crash when converting between true-color images (png/jpeg) and
   gd1/gd2 image formats, png/jpeg - gd1/gd2 - png/jpeg conversion now
-  works correctly. (Ilia, (Pierre-Alain Joye).
+  works correctly. (Ilia, Pierre-Alain Joye).
 - Fixed a memory leak in the bundled GD library inside 
   gdImageTrueColorToPalette(). (Ilia)
 - Fixed bug #12776 (array_walk crash). (Moriyoshi)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-10 Thread Moriyoshi Koizumi
moriyoshi   Mon Feb 10 14:55:19 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  dot dot dot..
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1327 php4/NEWS:1.1328
--- php4/NEWS:1.1327Mon Feb 10 14:53:13 2003
+++ php4/NEWS   Mon Feb 10 14:55:18 2003
@@ -95,7 +95,7 @@
   true-color image). (Ilia)
 - Fixed a crash when converting between true-color images (png/jpeg) and
   gd1/gd2 image formats, png/jpeg - gd1/gd2 - png/jpeg conversion now
-  works correctly. (Ilia, Pierre-Alain Joye).
+  works correctly. (Ilia, Pierre-Alain Joye)
 - Fixed a memory leak in the bundled GD library inside 
   gdImageTrueColorToPalette(). (Ilia)
 - Fixed bug #12776 (array_walk crash). (Moriyoshi)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-10 Thread Jani Taskinen
sniper  Mon Feb 10 22:07:39 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  moved entry to branch NEWS
  
Index: php4/NEWS
diff -u php4/NEWS:1.1331 php4/NEWS:1.1332
--- php4/NEWS:1.1331Mon Feb 10 19:34:35 2003
+++ php4/NEWS   Mon Feb 10 22:07:39 2003
@@ -8,12 +8,10 @@
 - Changed get_extension_funcs() to return list of the built-in Zend Engine 
   functions if zend is specified as the module name. (Ilia)
 - Changed is_executable() to be available also on Windows. (Shane)
-- Changed array_search() to accept objects also as a needle. (Moriyoshi)
+- Changed array_search() to accept also objects as a needle. (Moriyoshi)
 - Changed ext/mcrypt to require libmcrypt version 2.5.6 or greater. (Derick)
 - Changed uniqid() parameters to be optional and allow any prefix length.
   (Marcus)
-- Added zlib_get_coding_type() function, which returns one of coding types
-  used for output compression. (Moriyoshi)
 - Added improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
 - Added stream_get_line() function. This function will read either 
   the specified number of bytes or until the ending string is found. (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-09 Thread Shane Caraveo
shane   Sun Feb  9 14:52:43 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  news entry for previous commit
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1321 php4/NEWS:1.1322
--- php4/NEWS:1.1321Fri Feb  7 16:45:02 2003
+++ php4/NEWS   Sun Feb  9 14:52:43 2003
@@ -1,6 +1,7 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 5.0.0
+- is_executable now works on windows
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
 - Added get_headers() function, it can be used to retrieve headers sent



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-09 Thread Jani Taskinen
sniper  Sun Feb  9 15:07:23 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  order, style..
  
Index: php4/NEWS
diff -u php4/NEWS:1.1322 php4/NEWS:1.1323
--- php4/NEWS:1.1322Sun Feb  9 14:52:43 2003
+++ php4/NEWS   Sun Feb  9 15:07:22 2003
@@ -1,23 +1,23 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 5.0.0
-- is_executable now works on windows
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
-- Added get_headers() function, it can be used to retrieve headers sent
-  by the browser for the specified URL.
-- Added str_split() function, this function can break down a string into an
-  array of elements based on length.
-- Added man page for CLI version of PHP. (marcus)
-- Added array_walk_recursive() function that can apply user function 
-  recursively to an array. (Ilia)
-- Fixed bug #20155 (xmlrpc compile problem with ZE2). (Derick, Jan Schneider)
 - Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
+- Fixed bug #20155 (xmlrpc compile problem with ZE2). (Derick, Jan Schneider)
 - Changed ext/mcrypt to require libmcrypt version 2.5.6 or greater. (Derick)
 - Changed uniqid() parameters to be optional and allow any prefix length.
   (Marcus)
+- Improved is_executable() to be available on Windows. (Shane)
 - Improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
 - Improved array_search() to accept objects as a needle under ZE2. (Moriyoshi)
+- Added get_headers() function, it can be used to retrieve headers sent
+  by the browser for the specified URL. (Ilia)
+- Added str_split() function, this function can break down a string into an
+  array of elements based on length. (Ilia)
+- Added man page for CLI version of PHP. (marcus)
+- Added array_walk_recursive() function that can apply user function 
+  recursively to an array. (Ilia)
 - Added command line parameters -B, -F, -R and -E which allow to process
   stdin line by line (See php -h for more). (Marcus)
 - Added string.base64 stream filter. (Moriyoshi)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP-CVS] cvs: php4 / NEWS

2003-02-09 Thread Derick Rethans
On Sun, 9 Feb 2003, Jani Taskinen wrote:

 sniperSun Feb  9 15:07:23 2003 EDT
 
   Modified files:  
 /php4 NEWS 
   Log:
   order, style..

yes, sir, yes! :-)

Derick

-- 

-
 Derick Rethans http://derickrethans.nl/ 
 PHP Magazine - PHP Magazine for Professionals   http://php-mag.net/
-


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-09 Thread Jani Taskinen
sniper  Sun Feb  9 18:09:23 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  We move, fix, change or add stuff
  
Index: php4/NEWS
diff -u php4/NEWS:1.1324 php4/NEWS:1.1325
--- php4/NEWS:1.1324Sun Feb  9 15:47:32 2003
+++ php4/NEWS   Sun Feb  9 18:09:23 2003
@@ -5,21 +5,20 @@
   . ext/fribidi
 - Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
 - Fixed bug #20155 (xmlrpc compile problem with ZE2). (Derick, Jan Schneider)
+- Changed get_extension_funcs() to return list of the built-in Zend Engine 
+  functions if zend is specified as the module name. (Ilia)
+- Changed is_executable() to be available also on Windows. (Shane)
+- Changed array_search() to accept objects also as a needle. (Moriyoshi)
 - Changed ext/mcrypt to require libmcrypt version 2.5.6 or greater. (Derick)
 - Changed uniqid() parameters to be optional and allow any prefix length.
   (Marcus)
-- Added stream_get_line(), this function will read either the specified 
-  number of bytes or until the ending string is found). (Ilia)
-- Added optional parameter to mkdir() which makes directory creation 
-  recursive. (Ilia)
-- Added option to file() command that will make the result array not contain
-  the line endings. Another option was added that if used in combination with
-  the previous option make the file() function skip over empty lines. (Ilia)
-- get_extension_funcs() can now retrieve a list of the built-in Zend Engine 
-  functions, if zend is specified as the module name. (Ilia)
-- Improved is_executable() to be available on Windows. (Shane)
-- Improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
-- Improved array_search() to accept objects as a needle under ZE2. (Moriyoshi)
+- Added improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
+- Added stream_get_line() function. This function will read either 
+  the specified number of bytes or until the ending string is found. (Ilia)
+- Added optional parameter to mkdir() which makes directory creation recursive.
+  (Ilia)
+- Added optional parameters to file() which make the result array not contain
+  the line endings and to skip empty lines. (Ilia)
 - Added get_headers() function, it can be used to retrieve headers sent
   by the browser for the specified URL. (Ilia)
 - Added str_split() function, this function can break down a string into an



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-07 Thread Ilia Alshanetsky
iliaa   Fri Feb  7 16:45:02 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  New function news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1320 php4/NEWS:1.1321
--- php4/NEWS:1.1320Thu Feb  6 17:38:09 2003
+++ php4/NEWS   Fri Feb  7 16:45:02 2003
@@ -3,6 +3,10 @@
 ? ? ??? 200?, Version 5.0.0
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
+- Added get_headers() function, it can be used to retrieve headers sent
+  by the browser for the specified URL.
+- Added str_split() function, this function can break down a string into an
+  array of elements based on length.
 - Added man page for CLI version of PHP. (marcus)
 - Added array_walk_recursive() function that can apply user function 
   recursively to an array. (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-06 Thread James Cox
imajes  Thu Feb  6 17:38:10 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  adding news about moved ext
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1319 php4/NEWS:1.1320
--- php4/NEWS:1.1319Wed Feb  5 20:33:12 2003
+++ php4/NEWS   Thu Feb  6 17:38:09 2003
@@ -1,6 +1,8 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 5.0.0
+- Moved extensions to PECL (http://pear.php.net/): (James, Tal)
+  . ext/fribidi
 - Added man page for CLI version of PHP. (marcus)
 - Added array_walk_recursive() function that can apply user function 
   recursively to an array. (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-05 Thread Ilia Alshanetsky
iliaa   Wed Feb  5 12:57:31 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  New function news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1317 php4/NEWS:1.1318
--- php4/NEWS:1.1317Tue Feb  4 05:08:41 2003
+++ php4/NEWS   Wed Feb  5 12:57:31 2003
@@ -1,6 +1,8 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 5.0.0
+- Added array_walk_recursive() function that can apply user function 
+  recursively to an array. (Ilia)
 - Fixed bug #20155 (xmlrpc compile problem with ZE2). (Derick, Jan Schneider)
 - Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
 - Changed ext/mcrypt to require libmcrypt version 2.5.6 or greater. (Derick)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-04 Thread Jani Taskinen
sniper  Tue Feb  4 05:08:42 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  NEWS ordering..
  
Index: php4/NEWS
diff -u php4/NEWS:1.1316 php4/NEWS:1.1317
--- php4/NEWS:1.1316Mon Feb  3 20:32:24 2003
+++ php4/NEWS   Tue Feb  4 05:08:41 2003
@@ -1,10 +1,6 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 5.0.0
-- Added command line parameters -B, -F, -R and -E which allow to process
-  stdin line by line (See php -h for more). (marcus)
-- Added XBM support for bundled gd library. (marcus)
-- Added XBM support for GetImageSize(). (helly)
 - Fixed bug #20155 (xmlrpc compile problem with ZE2). (Derick, Jan Schneider)
 - Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
 - Changed ext/mcrypt to require libmcrypt version 2.5.6 or greater. (Derick)
@@ -12,6 +8,8 @@
   (Marcus)
 - Improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
 - Improved array_search() to accept objects as a needle under ZE2. (Moriyoshi)
+- Added command line parameters -B, -F, -R and -E which allow to process
+  stdin line by line (See php -h for more). (Marcus)
 - Added string.base64 stream filter. (Moriyoshi)
 - Added domxml_node_get_path() (Lukas Schröder)
 - Added iconv related functions (Moriyoshi)
@@ -25,6 +23,8 @@
   . Support for float modifier.
   . Detection of numeric values inside strings passed as high  low.
   . Proper handle the situations where high == low.
+- Added XBM support for GetImageSize(). (Marcus)
+- Added XBM support for bundled GD library. (Marcus)
 - Added imagefilter() function which allows application of various filters.
   This function is only available with bundled GD. (Pierre-Alain Joye, Ilia)
 - Added imageistruecolor(), only available with GD2. (Pierre-Alain Joye)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-02-01 Thread Jani Taskinen
sniper  Sat Feb  1 07:49:35 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Correct required mcrypt version
  
Index: php4/NEWS
diff -u php4/NEWS:1.1312 php4/NEWS:1.1313
--- php4/NEWS:1.1312Fri Jan 31 09:23:18 2003
+++ php4/NEWS   Sat Feb  1 07:49:35 2003
@@ -3,7 +3,7 @@
 ? ? ??? 200?, Version 5.0.0
 - Fixed bug #20155 (xmlrpc compile problem with ZE2). (Derick, Jan Schneider)
 - Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
-- Changed ext/mcrypt to require libmcrypt version 2.5.3 or greater. (Derick)
+- Changed ext/mcrypt to require libmcrypt version 2.5.6 or greater. (Derick)
 - Changed uniqid() parameters to be optional and allow any prefix length.
   (Marcus)
 - Improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-01-31 Thread Jani Taskinen
sniper  Fri Jan 31 09:23:19 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Moved these entries to PHP_4_3 branch NEWS (for 4.3.1)
  
Index: php4/NEWS
diff -u php4/NEWS:1.1311 php4/NEWS:1.1312
--- php4/NEWS:1.1311Wed Jan 29 02:50:09 2003
+++ php4/NEWS   Fri Jan 31 09:23:18 2003
@@ -1,8 +1,6 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 5.0.0
-- Fixed bug #17448 (Print the message when OCI_SUCCESS_WITH_INFO is returned). 
-  (Maxim)
 - Fixed bug #20155 (xmlrpc compile problem with ZE2). (Derick, Jan Schneider)
 - Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
 - Changed ext/mcrypt to require libmcrypt version 2.5.3 or greater. (Derick)
@@ -10,7 +8,6 @@
   (Marcus)
 - Improved JPEG 2000 support for getimagesize(). (Marcus, Adam Wright)
 - Improved array_search() to accept objects as a needle under ZE2. (Moriyoshi)
-- Added OCIPasswordChange() which allows renewing expired Oracle users. (Maxim)
 - Added string.base64 stream filter. (Moriyoshi)
 - Added domxml_node_get_path() (Lukas Schröder)
 - Added iconv related functions (Moriyoshi)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS phpdoc-zh/reference/filesystem/functions flock.xml fread.xml rename.xml rmdir.xml unlink.xml

2003-01-12 Thread Derick Rethans
derick  Sun Jan 12 07:45:19 2003 EDT

  Modified files:  
/phpdoc-zh/reference/filesystem/functions   flock.xml fread.xml 
rename.xml rmdir.xml 
unlink.xml 
/php4   NEWS 
  Log:
  - Update NEWS to show 5.0.0
  
  
Index: phpdoc-zh/reference/filesystem/functions/flock.xml
diff -u phpdoc-zh/reference/filesystem/functions/flock.xml:1.2 
phpdoc-zh/reference/filesystem/functions/flock.xml:1.3
--- phpdoc-zh/reference/filesystem/functions/flock.xml:1.2  Sun Dec 22 04:17:53 
2002
+++ phpdoc-zh/reference/filesystem/functions/flock.xml  Sun Jan 12 07:45:17 2003
@@ -1,6 +1,7 @@
-?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
-!-- splitted from ./en/functions/filesystem.xml, last change in rev 1.2 --
+?xml version=1.0 encoding=gb2312?
+!-- $Revision: 1.3 $ --
+!-- $Author: dallas $ --
+!-- EN-Revision: 1.4 Maintainer: lm92 Status: ready --
   refentry id=function.flock
refnamediv
 refnameflock/refname
Index: phpdoc-zh/reference/filesystem/functions/fread.xml
diff -u phpdoc-zh/reference/filesystem/functions/fread.xml:1.2 
phpdoc-zh/reference/filesystem/functions/fread.xml:1.3
--- phpdoc-zh/reference/filesystem/functions/fread.xml:1.2  Sat Nov  9 21:22:55 
2002
+++ phpdoc-zh/reference/filesystem/functions/fread.xml  Sun Jan 12 07:45:18 2003
@@ -1,6 +1,7 @@
-?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
-!-- splitted from ./en/functions/filesystem.xml, last change in rev 1.25 --
+?xml version=1.0 encoding=gb2312?
+!-- $Revision: 1.3 $ --
+!-- $Author: dallas $ --
+!-- EN-Revision: 1.5 Maintainer: lm92 Status: ready --
   refentry id=function.fread
refnamediv
 refnamefread/refname
Index: phpdoc-zh/reference/filesystem/functions/rename.xml
diff -u phpdoc-zh/reference/filesystem/functions/rename.xml:1.2 
phpdoc-zh/reference/filesystem/functions/rename.xml:1.3
--- phpdoc-zh/reference/filesystem/functions/rename.xml:1.2 Sat Nov  9 21:03:15 
2002
+++ phpdoc-zh/reference/filesystem/functions/rename.xml Sun Jan 12 07:45:18 2003
@@ -1,6 +1,7 @@
-?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
-!-- splitted from ./en/functions/filesystem.xml, last change in rev 1.2 --
+?xml version=1.0 encoding=gb2312?
+!-- $Revision: 1.3 $ --
+!-- $Author: dallas $ --
+!-- EN-Revision: 1.4 Maintainer: lm92 Status: ready --
   refentry id=function.rename
refnamediv
 refnamerename/refname
Index: phpdoc-zh/reference/filesystem/functions/rmdir.xml
diff -u phpdoc-zh/reference/filesystem/functions/rmdir.xml:1.3 
phpdoc-zh/reference/filesystem/functions/rmdir.xml:1.4
--- phpdoc-zh/reference/filesystem/functions/rmdir.xml:1.3  Sat Nov  9 20:55:56 
2002
+++ phpdoc-zh/reference/filesystem/functions/rmdir.xml  Sun Jan 12 07:45:18 2003
@@ -1,6 +1,7 @@
 ?xml version=1.0 encoding=gb2312?
-!-- $Revision: 1.3 $ --
-!-- splitted from ./en/functions/filesystem.xml, last change in rev 1.2 --
+!-- $Revision: 1.4 $ --
+!-- $Author: dallas $ --
+!-- EN-Revision: 1.2 Maintainer: lm92 Status: ready --
   refentry id=function.rmdir
refnamediv
 refnamermdir/refname
Index: phpdoc-zh/reference/filesystem/functions/unlink.xml
diff -u phpdoc-zh/reference/filesystem/functions/unlink.xml:1.2 
phpdoc-zh/reference/filesystem/functions/unlink.xml:1.3
--- phpdoc-zh/reference/filesystem/functions/unlink.xml:1.2 Sat Nov  9 20:59:23 
2002
+++ phpdoc-zh/reference/filesystem/functions/unlink.xml Sun Jan 12 07:45:18 2003
@@ -1,6 +1,7 @@
 ?xml version=1.0 encoding=gb2312?
-!-- $Revision: 1.2 $ --
-!-- splitted from ./en/functions/filesystem.xml, last change in rev 1.2 --
+!-- $Revision: 1.3 $ --
+!-- $Author: dallas $ --
+!-- EN-Revision: 1.2 Maintainer: lm92 Status: ready --
   refentry id=function.unlink
refnamediv
 refnameunlink/refname
Index: php4/NEWS
diff -u php4/NEWS:1.1307 php4/NEWS:1.1308
--- php4/NEWS:1.1307Fri Jan 10 20:34:56 2003
+++ php4/NEWS   Sun Jan 12 07:45:18 2003
@@ -1,6 +1,6 @@
 PHP 4  NEWS
 |||
-? ? ??? 200?, Version 4.4.0
+? ? ??? 200?, Version 5.0.0
 - Fixed bug #20155: xmlrpc compile problem with zendengine2 (Derick, Jan
   Schneider)
 - Implemented string.base64 stream filter. (Moriyoshi)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP-CVS] cvs: php4 / NEWS phpdoc-zh/reference/filesystem/functionsflock.xml fread.xml rename.xml rmdir.xml unlink.xml

2003-01-12 Thread Derick Rethans
Hey

On Sun, 12 Jan 2003, Derick Rethans wrote:

 derickSun Jan 12 07:45:19 2003 EDT
 
   Modified files:  
 /phpdoc-zh/reference/filesystem/functions flock.xml fread.xml 
   rename.xml rmdir.xml 
   unlink.xml 
 /php4 NEWS 
   Log:
   - Update NEWS to show 5.0.0

erm? CVS is bugging again? :)
I only committed NEWS here.

Derick

-- 

-
 Derick Rethans http://derickrethans.nl/ 
 PHP Magazine - PHP Magazine for Professionals   http://php-mag.net/
-


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-01-07 Thread Edin Kadribasic
edink   Tue Jan  7 10:27:28 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  #17098 was MFH'ed
  
Index: php4/NEWS
diff -u php4/NEWS:1.1304 php4/NEWS:1.1305
--- php4/NEWS:1.1304Mon Jan  6 20:46:38 2003
+++ php4/NEWS   Tue Jan  7 10:27:27 2003
@@ -12,8 +12,6 @@
 - Removed support for libmcrypt 2.2.x to allow cleaner code. Another reason
   to upgrade libmcrypt to a 2.5.x series as the older ones have too many bugs
   to be safely used with PHP. (Derick)
-- Fixed bug #17098 (make Apache2 aware that PHP scripts represent dynamic data
-  and should not be cached). (Ilia)
 - Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
 - Made uniqid() parameters to be optional and allow any prefix length. (Marcus)
 - Improved array_search() so that it can accept objects as a needle under



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-01-06 Thread Moriyoshi Koizumi
moriyoshi   Mon Jan  6 20:46:39 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Trivial grammer fix
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1303 php4/NEWS:1.1304
--- php4/NEWS:1.1303Mon Jan  6 20:36:37 2003
+++ php4/NEWS   Mon Jan  6 20:46:38 2003
@@ -16,8 +16,8 @@
   and should not be cached). (Ilia)
 - Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
 - Made uniqid() parameters to be optional and allow any prefix length. (Marcus)
-- Made array_search() to accept objects as a needle under ZendEngine2.
-  (Moriyoshi)
+- Improved array_search() so that it can accept objects as a needle under
+  ZendEngine2. (Moriyoshi)
 - Added new range() functionality (Ilia)
   . Support for float modifier.
   . Detection of numeric values inside strings passed as high  low.



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP-CVS] cvs: php4 / NEWS

2003-01-04 Thread Marcus Börger
At 01:06 03.01.2003, Jani Taskinen wrote:

sniper  Thu Jan  2 19:06:24 2003 EDT

  Modified files:
/php4   NEWS
  Log:
  - Removed entries that are going to 4.3.1
  - Grouped the entries a bit.


Index: php4/NEWS
diff -u php4/NEWS:1.1297 php4/NEWS:1.1298
--- php4/NEWS:1.1297Mon Dec 30 20:33:05 2002
+++ php4/NEWS   Thu Jan  2 19:06:23 2003
@@ -1,33 +1,16 @@
 PHP 
4  NEWS

|||
 ? ? ??? 200?, Version 4.4.0
-- Improved dba extension (Marcus)
(snip)

These are not in 4.3.1:


-- Improved dba extension (Marcus)
-  . Made handler parameter of dba_(p)open() optional.
-  . Added php.ini option 'dba.default_handler' to specify a default handler.
-  . Added parameter full_info to dba_handlers() that can be set true to
-receive information about the handlers such like the library version.


These will be in 4.3.1:


-  . Added support for internal error handling of Berkeley db libraries.
-  . Disallow Berkeley db versions 4.1.0 to 4.1.24 due to locking problems.
-  . Disallow linkage of Berkeley db submodules against libraries with
-different major version.
-  . Disallow configuring of more than one Berkeley db handler.


(snip)


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-01-04 Thread Moriyoshi Koizumi
moriyoshi   Sat Jan  4 08:45:04 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  NEWS update for new iconv functions
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1299 php4/NEWS:1.1300
--- php4/NEWS:1.1299Fri Jan  3 20:34:30 2003
+++ php4/NEWS   Sat Jan  4 08:45:03 2003
@@ -1,6 +1,11 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 4.4.0
+- Added iconv related functions (Moriyoshi)
+  . iconv_strlen()
+  . iconv_substr()
+  . iconv_mime_decode()
+  . iconv_mime_encode()
 - Removed support for libmcrypt 2.2.x to allow cleaner code. Another reason
   to upgrade libmcrypt to a 2.5.x series as the older ones have too much bugs
   to be safely used with PHP. (Derick)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-01-04 Thread Derick Rethans
derick  Sat Jan  4 13:35:38 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  - Fix typo
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1300 php4/NEWS:1.1301
--- php4/NEWS:1.1300Sat Jan  4 08:45:03 2003
+++ php4/NEWS   Sat Jan  4 13:35:37 2003
@@ -7,7 +7,7 @@
   . iconv_mime_decode()
   . iconv_mime_encode()
 - Removed support for libmcrypt 2.2.x to allow cleaner code. Another reason
-  to upgrade libmcrypt to a 2.5.x series as the older ones have too much bugs
+  to upgrade libmcrypt to a 2.5.x series as the older ones have too many bugs
   to be safely used with PHP. (Derick)
 - Fixed bug #17098 (make Apache2 aware that PHP scripts represent dynamic data
   and should not be cached). (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-01-04 Thread Moriyoshi Koizumi
moriyoshi   Sat Jan  4 13:49:48 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Forgot to include these functions in the list
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1301 php4/NEWS:1.1302
--- php4/NEWS:1.1301Sat Jan  4 13:35:37 2003
+++ php4/NEWS   Sat Jan  4 13:49:48 2003
@@ -4,6 +4,8 @@
 - Added iconv related functions (Moriyoshi)
   . iconv_strlen()
   . iconv_substr()
+  . iconv_strpos()
+  . iconv_strrpos()
   . iconv_mime_decode()
   . iconv_mime_encode()
 - Removed support for libmcrypt 2.2.x to allow cleaner code. Another reason



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2003-01-02 Thread Jani Taskinen
sniper  Thu Jan  2 19:06:24 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  - Removed entries that are going to 4.3.1
  - Grouped the entries a bit.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1297 php4/NEWS:1.1298
--- php4/NEWS:1.1297Mon Dec 30 20:33:05 2002
+++ php4/NEWS   Thu Jan  2 19:06:23 2003
@@ -1,33 +1,16 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 4.4.0
-- Improved dba extension (Marcus)
-- Fixed bug #21229 (missing 3rd argument to php_module_startup). (Ilia)
-- Fixed bug #21267 (opening URLs that result in redirection to a relative
-  path was failing). (Ilia)
-- Fixed bug #21226 (parse_url handling of urls without a path). (Ilia)
-- Fixed bug #21228 (broken check for ob_gzhandler)  made ob_start() return
-  the correct value. (Ilia)
-- Fixed bug #21268 (session_decode() returned FALSE on success). (Ilia)
-- Improved dba extension (Marcus)
-  . Made handler parameter of dba_(p)open() optional.
-  . Added php.ini option 'dba.default_handler' to specify a default handler.
-  . Added parameter full_info to dba_handlers() that can be set true to 
-receive information about the handlers such like the library version.
-  . Added support for internal error handling of Berkeley db libraries.
-  . Disallow Berkeley db versions 4.1.0 to 4.1.24 due to locking problems.
-  . Disallow linkage of Berkeley db submodules against libraries with 
-different major version.
-  . Disallow configuring of more than one Berkeley db handler.
-- Fixed bug #17098 (make Apache aware that PHP scripts represent dynamic data
+- Fixed bug #17098 (make Apache2 aware that PHP scripts represent dynamic data
   and should not be cached). (Ilia)
-- Make uniqid() parameters optional and allow any prefix length. (Marcus)
-- New range() functionality (Ilia)
+- Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
+- Made uniqid() parameters to be optional and allow any prefix length. (Marcus)
+- Made array_search() to accept objects as a needle under ZendEngine2.
+  (Moriyoshi)
+- Added new range() functionality (Ilia)
   . Support for float modifier.
   . Detection of numeric values inside strings passed as high  low.
   . Proper handle the situations where high == low.
-- Let array_search() accept objects as a needle under ZendEngine2. (Moriyoshi)
-- Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
 - Added imagefilter() function which allows application of various filters.
   This function is only available with bundled GD. (Pierre-Alain Joye, Ilia)
 - Added imageistruecolor(), only available with GD2+(Pierre-Alain Joye)
@@ -36,7 +19,6 @@
. imageantialias($im, $flag) to (de)active antialias
. imageline antialias support
. imagepolygon antialias support
-
 
 27 Dec 2002, Version 4.3.0
 - Make PHP_AUTH_* variables not available in safe mode under Apache when an



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-12-30 Thread Marcus Boerger
helly   Mon Dec 30 12:58:16 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  update dba NEWS
  
Index: php4/NEWS
diff -u php4/NEWS:1.1293 php4/NEWS:1.1294
--- php4/NEWS:1.1293Mon Dec 30 11:47:04 2002
+++ php4/NEWS   Mon Dec 30 12:58:15 2002
@@ -1,9 +1,15 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 4.4.0
-- Made handler parameter of dba_(p)open() optional. (Marcus)
-- Added php.ini option 'dba.default_handler' to specify a default handler.
-  (Marcus)
+- Improved dba extension (Marcus)
+  . Made handler parameter of dba_(p)open() optional.
+  . Added php.ini option 'dba.default_handler' to specify a default handler.
+  . Added parameter full_info to dba_handlers() that can be set true to 
+receive information about the handlers such like the library version.
+  . Disallow Berkeley db versions 4.1.0 to 4.1.24 due to locking problems.
+  . Disallow linkage of Berkeley db submodules against libraries with 
+different major version.
+  . Disallow configuring of more than one Berkeley db handler.
 - Fixed bug #17098 (make Apache aware that PHP scripts represent dynamic data
   and should not be cached). (Ilia)
 - Make uniqid() parameters optional and allow any prefix length. (Marcus)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-12-30 Thread Marcus Boerger
helly   Mon Dec 30 14:18:52 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  missing dba entry
  
Index: php4/NEWS
diff -u php4/NEWS:1.1294 php4/NEWS:1.1295
--- php4/NEWS:1.1294Mon Dec 30 12:58:15 2002
+++ php4/NEWS   Mon Dec 30 14:18:52 2002
@@ -6,6 +6,7 @@
   . Added php.ini option 'dba.default_handler' to specify a default handler.
   . Added parameter full_info to dba_handlers() that can be set true to 
 receive information about the handlers such like the library version.
+  . Added support for internal error handling of Berkeley db libraries.
   . Disallow Berkeley db versions 4.1.0 to 4.1.24 due to locking problems.
   . Disallow linkage of Berkeley db submodules against libraries with 
 different major version.



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-12-30 Thread Ilia Alshanetsky
iliaa   Mon Dec 30 14:48:24 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1295 php4/NEWS:1.1296
--- php4/NEWS:1.1295Mon Dec 30 14:18:52 2002
+++ php4/NEWS   Mon Dec 30 14:48:24 2002
@@ -1,6 +1,13 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 4.4.0
+- Fixed bug #21229 (missing 3rd argument to php_module_startup). (Ilia)
+- Fixed bug #21267 (opening URLs that result in redirection to a relative
+  path was failing). (Ilia)
+- Fixed bug #21226 (parse_url handling of urls without a path). (Ilia)
+- Fixed bug #21228 (broken check for ob_gzhandler)  made ob_start() return
+  the correct value. (Ilia)
+- Fixed bug #21268 (session_decode() returned FALSE on success). (Ilia)
 - Improved dba extension (Marcus)
   . Made handler parameter of dba_(p)open() optional.
   . Added php.ini option 'dba.default_handler' to specify a default handler.



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-12-27 Thread Ilia Alshanetsky
iliaa   Fri Dec 27 15:23:29 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1291 php4/NEWS:1.1292
--- php4/NEWS:1.1291Thu Dec 26 23:03:10 2002
+++ php4/NEWS   Fri Dec 27 15:23:29 2002
@@ -1,8 +1,10 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 4.4.0
+- Fixed bug #17098 (make Apache aware that PHP scripts represent dynamic data
+  and should not be cached). (Ilia)
 - Make uniqid() parameters optional and allow any prefix length. (Marcus)
-- New range() functionality
+- New range() functionality (Ilia)
   . Support for float modifier.
   . Detection of numeric values inside strings passed as high  low.
   . Proper handle the situations where high == low.



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-12-26 Thread Edin Kadribasic
edink   Thu Dec 26 22:16:01 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Mention the fact that zlib extension is now built-in in win32 distro.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1289 php4/NEWS:1.1290
--- php4/NEWS:1.1289Thu Dec 26 21:55:37 2002
+++ php4/NEWS   Thu Dec 26 22:16:01 2002
@@ -39,6 +39,8 @@
 - Moved extensions to PECL (http://pear.php.net/): (James, Derick)
   . ext/vpopmail
   . ext/cybermut
+- ZLIB extension is now built-in in the Windows distribution.
+  External extension (php_zlib.dll) has been removed. (Edin)
 - Fix a crash when using invalid color index with imagecolortransparent()
   (Pierre-Alain Joye).
 - Fixed bug #20987 (no handling for client certificates). (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS /sapi/apache mod_php4.c

2002-12-21 Thread Andrei Zmievski
andrei  Sat Dec 21 15:12:08 2002 EDT

  Modified files:  
/php4   NEWS 
/php4/sapi/apache   mod_php4.c 
  Log:
  MFB.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1283 php4/NEWS:1.1284
--- php4/NEWS:1.1283Sat Dec 21 13:06:04 2002
+++ php4/NEWS   Sat Dec 21 15:12:07 2002
@@ -19,6 +19,8 @@
 
 
 ? ? ??? 2002, Version 4.3.0
+- Make PHP_AUTH_* variables not available in safe mode under Apache when an
+  external basic auth mechanism is used. (Philip)
 - Aliased dba_popen() to dba_open() until 4.3.1 when persistent STDIO streams
   are introduced. (Andrei)
 - Fixed a security bug in the bundled MySQL library. (Georg, Stefan)
Index: php4/sapi/apache/mod_php4.c
diff -u php4/sapi/apache/mod_php4.c:1.148 php4/sapi/apache/mod_php4.c:1.149
--- php4/sapi/apache/mod_php4.c:1.148   Sat Nov 30 22:28:21 2002
+++ php4/sapi/apache/mod_php4.c Sat Dec 21 15:12:08 2002
@@ -17,7 +17,7 @@
| PHP 4.0 patches by Zeev Suraski [EMAIL PROTECTED]  |
+--+
  */
-/* $Id: mod_php4.c,v 1.148 2002/12/01 03:28:21 sas Exp $ */
+/* $Id: mod_php4.c,v 1.149 2002/12/21 20:12:08 andrei Exp $ */
 
 #include php_apache_http.h
 
@@ -448,7 +448,7 @@
authorization = table_get(r-headers_in, Authorization);
}
if (authorization
-!auth_type(r)
+(!PG(safe_mode) || (PG(safe_mode)  !auth_type(r)))
 !strcasecmp(getword(r-pool, authorization, ' '), Basic)) {
tmp = uudecode(r-pool, authorization);
SG(request_info).auth_user = getword_nulls_nc(r-pool, tmp, ':');



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-12-20 Thread Andrei Zmievski
andrei  Fri Dec 20 20:11:44 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1281 php4/NEWS:1.1282
--- php4/NEWS:1.1281Wed Dec 18 11:38:36 2002
+++ php4/NEWS   Fri Dec 20 20:11:44 2002
@@ -14,6 +14,8 @@
 
 
 ? ? ??? 2002, Version 4.3.0
+- Aliased dba_popen() to dba_open() until 4.3.1 when persistent STDIO streams
+  are introduced. (Andrei)
 - Fixed a security bug in the bundled MySQL library. (Georg, Stefan)
 - ATTENTION! make install will *by default* install the CLI SAPI binary in 
   {PREFIX}/bin/php. If you don't disable the CGI binary, it will be



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-12-18 Thread Moriyoshi Koizumi
moriyoshi   Wed Dec 18 11:38:37 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Added entry for the new feature of array_search()
  
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1280 php4/NEWS:1.1281
--- php4/NEWS:1.1280Mon Dec 16 04:11:00 2002
+++ php4/NEWS   Wed Dec 18 11:38:36 2002
@@ -1,6 +1,7 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 4.4.0
+- Let array_search() accept objects as a needle under ZendEngine2. (Moriyoshi)
 - Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
 - Added imagefilter() function which allows application of various filters.
   This function is only available with bundled GD. (Pierre-Alain Joye, Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-12-12 Thread Moriyoshi Koizumi
moriyoshi   Thu Dec 12 08:44:19 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Jani happification
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1276 php4/NEWS:1.1277
--- php4/NEWS:1.1276Thu Dec 12 08:31:19 2002
+++ php4/NEWS   Thu Dec 12 08:44:18 2002
@@ -13,7 +13,6 @@
 
 
 ? ? ??? 2002, Version 4.3.0
-- Fixed bug #20934 (htmlspecialchars returns latin1 from UTF-8). (Moriyoshi)
 - Fixed a security bug in the bundled MySQL library. (Georg, Stefan)
 - ATTENTION! make install will *by default* install the CLI SAPI binary in 
   {PREFIX}/bin/php. If you don't disable the CGI binary, it will be
@@ -43,6 +42,7 @@
 - Fixed a memory leak in the bundled GD library inside 
   gdImageTrueColorToPalette(). (Ilia)
 - Fixed bug #12776 (array_walk crash). (Moriyoshi)
+- Fixed bug #20934 (htmlspecialchars returns latin1 from UTF-8). (Moriyoshi)
 - Fixed bugs #20270, #15702, #18600 (segfaults in ext/java). (Tony J. White)
 - Made bcmath extension thread safe. (Sander)
 - Fixed bug #19566 (get_declared_classes() segfaults). (Moriyoshi, Marcus, Andi)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-12-12 Thread Ilia Alshanetsky
iliaa   Thu Dec 12 08:52:28 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1277 php4/NEWS:1.1278
--- php4/NEWS:1.1277Thu Dec 12 08:44:18 2002
+++ php4/NEWS   Thu Dec 12 08:52:26 2002
@@ -27,6 +27,7 @@
 - Moved extensions to PECL (http://pear.php.net/): (James, Derick)
   . ext/vpopmail
   . ext/cybermut
+- Fixed bug #20927 (wordwrap crash). (Ilia)
 - Fixed bug #20796 (when register_globals is on  arrays with same names are 
   passed via get/post/cookie the data inside $_GET/$_POST/$_COOKIE can would be
   corrupted). (Ilia)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-12-11 Thread Jani Taskinen
sniper  Wed Dec 11 03:54:04 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  snow..not again..
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1273 php4/NEWS:1.1274
--- php4/NEWS:1.1273Wed Dec 11 03:31:56 2002
+++ php4/NEWS   Wed Dec 11 03:54:04 2002
@@ -6,7 +6,7 @@
   This function is only available with bundled GD. (Pierre-Alain Joye, Ilia)  
 
 ? ? ??? 2002, Version 4.3.0
-- Fixed a security bug in the embedded mysql library (Georg,Stefan)
+- Fixed a security bug in the bundled MySQL library. (Georg, Stefan)
 - ATTENTION! make install will *by default* install the CLI SAPI binary in 
   {PREFIX}/bin/php. If you don't disable the CGI binary, it will be
   installed as {PREFIX}/bin/php-cgi.



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-12-11 Thread Ilia Alshanetsky
iliaa   Wed Dec 11 18:11:32 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  GD library news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1274 php4/NEWS:1.1275
--- php4/NEWS:1.1274Wed Dec 11 03:54:04 2002
+++ php4/NEWS   Wed Dec 11 18:11:31 2002
@@ -1,9 +1,16 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 4.4.0
-- Fixed bug #20442 (upgraded bunbled expat to 1.95.5). (Ilia)
+- Fixed bug #20442 (upgraded bundled expat to 1.95.5). (Ilia)
 - Added imagefilter() function which allows application of various filters.
-  This function is only available with bundled GD. (Pierre-Alain Joye, Ilia)  
+  This function is only available with bundled GD. (Pierre-Alain Joye, Ilia)
+- Added imageistruecolor(), only available with GD2+(Pierre-Alain Joye)
+- Added antialiased drawing support (Pierre-Alain Joye, Ilia), available only
+  with bundled GD:
+   . imageantialias($im, $flag) to (de)active antialias
+   . imageline antialias support
+   . imagepolygon antialias support
+
 
 ? ? ??? 2002, Version 4.3.0
 - Fixed a security bug in the bundled MySQL library. (Georg, Stefan)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-12-07 Thread Sander Roobol
sander  Sat Dec  7 06:21:44 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Forgot to add this entry...
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1268 php4/NEWS:1.1269
--- php4/NEWS:1.1268Fri Dec  6 01:08:16 2002
+++ php4/NEWS   Sat Dec  7 06:21:44 2002
@@ -30,6 +30,7 @@
   gdImageTrueColorToPalette(). (Ilia)
 - Fixed bug #12776 (array_walk crash). (Moriyoshi)
 - Fixed bugs #20270, #15702, #18600 (segfaults in ext/java). (Tony J. White)
+- Made bcmath extension thread safe. (Sander)
 - Fixed bug #19566 (get_declared_classes() segfaults). (Moriyoshi, Marcus, Andi)
 - Fixed bug #20381 (array_merge_recursive mangles input arrays). (Moriyoshi) 
 - Added -n command switch to cli and cgi version which allows to skip php.ini



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-12-07 Thread Sander Roobol
sander  Sat Dec  7 06:27:59 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  sync with branch
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1269 php4/NEWS:1.1270
--- php4/NEWS:1.1269Sat Dec  7 06:21:44 2002
+++ php4/NEWS   Sat Dec  7 06:27:59 2002
@@ -2,8 +2,6 @@
 |||
 ? ? ??? 200?, Version 4.4.0
 - Fixed bug #20442 (upgraded bunbled expat to 1.95.5). (Ilia)
-- Fixed bug #20424 (stream_get_meta_data craches on a normal file stream).
-  (Derick, Wez)
 - Added imagefilter() function which allows application of various filters.
   This function is only available with bundled GD. (Pierre-Alain Joye, Ilia)  
 
@@ -16,8 +14,8 @@
   . ext/ccvs
   . ext/cybercash
   . ext/icap
-  . sapi/fhttpd
   . sapi/fastcgi
+  . sapi/fhttpd
 - Moved extensions to PECL (http://pear.php.net/): (James, Derick)
   . ext/vpopmail
   . ext/cybermut
@@ -35,6 +33,10 @@
 - Fixed bug #20381 (array_merge_recursive mangles input arrays). (Moriyoshi) 
 - Added -n command switch to cli and cgi version which allows to skip php.ini
   parsing at startup. (Marcus, Wez)
+- Fixed bug #19689 (absolute paths like /test/dir/ not working correctly).
+  (Ilia)
+- Fixed bug #20424 (stream_get_meta_data crashes on a normal file stream).
+  (Derick, Wez)
 - Added neutral language entry to mbstring spec. (Moriyoshi) 
 - Changed bundled gd library to consider php.ini option memory_limit. (Marcus)
 - Modified log() to accept multiple bases. (Jason)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-12-07 Thread Jani Taskinen
sniper  Sat Dec  7 07:14:43 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  sync
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1270 php4/NEWS:1.1271
--- php4/NEWS:1.1270Sat Dec  7 06:27:59 2002
+++ php4/NEWS   Sat Dec  7 07:14:42 2002
@@ -35,8 +35,6 @@
   parsing at startup. (Marcus, Wez)
 - Fixed bug #19689 (absolute paths like /test/dir/ not working correctly).
   (Ilia)
-- Fixed bug #20424 (stream_get_meta_data crashes on a normal file stream).
-  (Derick, Wez)
 - Added neutral language entry to mbstring spec. (Moriyoshi) 
 - Changed bundled gd library to consider php.ini option memory_limit. (Marcus)
 - Modified log() to accept multiple bases. (Jason)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-12-07 Thread Ilia Alshanetsky
iliaa   Sat Dec  7 11:15:47 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1271 php4/NEWS:1.1272
--- php4/NEWS:1.1271Sat Dec  7 07:14:42 2002
+++ php4/NEWS   Sat Dec  7 11:15:46 2002
@@ -19,6 +19,13 @@
 - Moved extensions to PECL (http://pear.php.net/): (James, Derick)
   . ext/vpopmail
   . ext/cybermut
+- Fixed bug #20796 (when register_globals is on  arrays with same names are 
+  passed via get/post/cookie the data inside $_GET/$_POST/$_COOKIE can would be
+  corrupted). (Ilia)
+- Fixed bug #20725 (if the upload directory cannot be written to, the POST data
+  after the uploaded file is lost). (Ilia)
+- Fixed bug #20865 (array_key_exists() fails to find NULL key). (Ilia)
+- Fixed bug #20812 (ftp_get returned NULL on success, instead of TRUE). (Ilia)
 - Fixed bug #20785 (crash when using pdf_open_memory_image() to load a
   true-color image). (Ilia)
 - Fixed a crash when converting between true-color images (png/jpeg) and



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS /sapi/fastcgi .cvsignore CREDITS Makefile.frag README.Apache README.FastCGI config.m4 fastcgi.c fastcgi.dsp php.sym php_fastcgi.h windows.txt

2002-12-05 Thread Sebastian Bergmann
sebastian   Fri Dec  6 01:08:17 2002 EDT

  Removed files:   
/php4/sapi/fastcgi  .cvsignore CREDITS Makefile.frag README.Apache 
README.FastCGI config.m4 fastcgi.c fastcgi.dsp 
php.sym php_fastcgi.h windows.txt 

  Modified files:  
/php4   NEWS 
  Log:
  Deprecate sapi/fastcgi.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1267 php4/NEWS:1.1268
--- php4/NEWS:1.1267Wed Dec  4 12:31:35 2002
+++ php4/NEWS   Fri Dec  6 01:08:16 2002
@@ -11,12 +11,13 @@
 - ATTENTION! make install will *by default* install the CLI SAPI binary in 
   {PREFIX}/bin/php. If you don't disable the CGI binary, it will be
   installed as {PREFIX}/bin/php-cgi.
-- Removed extensions: (Jan, Jani)
+- Removed extensions: (Jan, Jani, Sebastian)
   . ext/aspell
   . ext/ccvs
   . ext/cybercash
   . ext/icap
   . sapi/fhttpd
+  . sapi/fastcgi
 - Moved extensions to PECL (http://pear.php.net/): (James, Derick)
   . ext/vpopmail
   . ext/cybermut



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-12-04 Thread Moriyoshi Koizumi
moriyoshi   Wed Dec  4 11:49:59 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Bug fix news
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1264 php4/NEWS:1.1265
--- php4/NEWS:1.1264Wed Dec  4 03:31:43 2002
+++ php4/NEWS   Wed Dec  4 11:49:59 2002
@@ -20,6 +20,7 @@
 - Moved extensions to PECL (http://pear.php.net/): (James, Derick)
   . ext/vpopmail
   . ext/cybermut
+- Fixed bug #12776 (array_walk crash). (Moriyoshi)
 - Fixed bugs #20270, #15702, #18600 (segfaults in ext/java). (Tony J. White)
 - Fixed bug #19566 (get_declared_classes() segfaults). (Moriyoshi, Marcus, Andi)
 - Fixed bug #20381 (array_merge_recursive mangles input arrays). (Moriyoshi) 



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-12-04 Thread Ilia Alshanetsky
iliaa   Wed Dec  4 12:29:48 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Bug fixing news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1265 php4/NEWS:1.1266
--- php4/NEWS:1.1265Wed Dec  4 11:49:59 2002
+++ php4/NEWS   Wed Dec  4 12:29:48 2002
@@ -20,6 +20,13 @@
 - Moved extensions to PECL (http://pear.php.net/): (James, Derick)
   . ext/vpopmail
   . ext/cybermut
+- Fixed bug #20785 (crash when using pdf_open_memory_image() to load a
+  true-color image). (Ilia)
+- Fixed a crash when converting between true-color images (peg/jpeg) and
+  gd1/gd2 image formats, png/jpeg - gd1/gd2 - png/jpeg conversion now
+  works correctly. (Ilia, (Pierre-Alain Joye).
+- Fixed a memory leak in the bundled GD library inside 
+  gdImageTrueColorToPalette(). (Ilia)
 - Fixed bug #12776 (array_walk crash). (Moriyoshi)
 - Fixed bugs #20270, #15702, #18600 (segfaults in ext/java). (Tony J. White)
 - Fixed bug #19566 (get_declared_classes() segfaults). (Moriyoshi, Marcus, Andi)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-12-04 Thread Ilia Alshanetsky
iliaa   Wed Dec  4 12:31:36 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Fixed a typo.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1266 php4/NEWS:1.1267
--- php4/NEWS:1.1266Wed Dec  4 12:29:48 2002
+++ php4/NEWS   Wed Dec  4 12:31:35 2002
@@ -22,7 +22,7 @@
   . ext/cybermut
 - Fixed bug #20785 (crash when using pdf_open_memory_image() to load a
   true-color image). (Ilia)
-- Fixed a crash when converting between true-color images (peg/jpeg) and
+- Fixed a crash when converting between true-color images (png/jpeg) and
   gd1/gd2 image formats, png/jpeg - gd1/gd2 - png/jpeg conversion now
   works correctly. (Ilia, (Pierre-Alain Joye).
 - Fixed a memory leak in the bundled GD library inside 



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-11-18 Thread Edin Kadribasic
edink   Mon Nov 18 07:16:12 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Remove fribidi from the NEWS item about extensions available on windows
  for now. This is because I'm unable to get fribidi library to compile
  on windows.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1262 php4/NEWS:1.1263
--- php4/NEWS:1.1262Mon Nov 18 06:55:11 2002
+++ php4/NEWS   Mon Nov 18 07:16:12 2002
@@ -227,7 +227,7 @@
 - Added XsltObject-result_dump_mem($result) for returning xslt-result directly
   into a string and XsltObject-result_dump_file($result,$file[,$compression]) 
   for dumping into a file. ([EMAIL PROTECTED], chregu)
-- Made mime_magic, FriBidi and ZIP extensions available on Windows. (Edin)
+- Made mime_magic and ZIP extensions available on Windows. (Edin)
 - Added xslt_backend_version() and xslt_backend_name() for getting
   information about the processor backend. (chregu)
 - Added php.ini option allow_webdav_methods to allow handling of



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-11-17 Thread Ilia Alshanetsky
iliaa   Sun Nov 17 13:57:21 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Expat upgrade news.
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1260 php4/NEWS:1.1261
--- php4/NEWS:1.1260Fri Nov 15 10:07:24 2002
+++ php4/NEWS   Sun Nov 17 13:57:21 2002
@@ -1,10 +1,11 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 4.4.0
+- Fixed bug #20442 (upgraded bunbled expat to 1.95.5). (Ilia)
 - Fixed bug #20424 (stream_get_meta_data craches on a normal file stream).
   (Derick, Wez)
 - Added imagefilter() function which allows application of various filters.
-  This function is only available with bundled GD. (Pierre-Alain Joye, Ilia)
+  This function is only available with bundled GD. (Pierre-Alain Joye, Ilia)  
 
 ? ? ??? 2002, Version 4.3.0
 - ATTENTION! make install will *by default* install the CLI SAPI binary in 



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-11-15 Thread Moriyoshi Koizumi
moriyoshi   Fri Nov 15 08:36:50 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Bug fixing news
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1258 php4/NEWS:1.1259
--- php4/NEWS:1.1258Thu Nov 14 16:11:40 2002
+++ php4/NEWS   Fri Nov 15 08:36:49 2002
 -19,6 +19,7 
 - Moved extensions to PECL (http://pear.php.net/): (James, Derick)
   . ext/vpopmail
   . ext/cybermut
+- Fixed bug #20381 (array_merge_recursive mangles input arrays). (Moriyoshi) 
 - Added -n command switch to cli and cgi version which allows to skip php.ini
   parsing at startup. (Marcus, Wez)
 - Added neutral language entry to mbstring spec. (Moriyoshi) 



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / NEWS

2002-11-15 Thread Moriyoshi Koizumi
moriyoshi   Fri Nov 15 10:07:26 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  Bug fixing news
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1259 php4/NEWS:1.1260
--- php4/NEWS:1.1259Fri Nov 15 08:36:49 2002
+++ php4/NEWS   Fri Nov 15 10:07:24 2002
 -19,6 +19,7 
 - Moved extensions to PECL (http://pear.php.net/): (James, Derick)
   . ext/vpopmail
   . ext/cybermut
+- Fixed bug #19566 (get_declared_classes() segfaults). (Moriyoshi, Marcus, Andi)
 - Fixed bug #20381 (array_merge_recursive mangles input arrays). (Moriyoshi) 
 - Added -n command switch to cli and cgi version which allows to skip php.ini
   parsing at startup. (Marcus, Wez)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP-CVS] cvs: php4 / NEWS

2002-11-15 Thread Jani Taskinen

MFH?


On Fri, 15 Nov 2002, Moriyoshi Koizumi wrote:

moriyoshi  Fri Nov 15 08:36:50 2002 EDT

  Modified files:  
/php4  NEWS 
  Log:
  Bug fixing news
  
  
Index: php4/NEWS
diff -u php4/NEWS:1.1258 php4/NEWS:1.1259
--- php4/NEWS:1.1258   Thu Nov 14 16:11:40 2002
+++ php4/NEWS  Fri Nov 15 08:36:49 2002
 -19,6 +19,7 
 - Moved extensions to PECL (http://pear.php.net/): (James, Derick)
   . ext/vpopmail
   . ext/cybermut
+- Fixed bug #20381 (array_merge_recursive mangles input arrays). (Moriyoshi) 
 - Added -n command switch to cli and cgi version which allows to skip php.ini
   parsing at startup. (Marcus, Wez)
 - Added neutral language entry to mbstring spec. (Moriyoshi) 





-- 
- For Sale! -


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




  1   2   >