2002-10-14 Jani Taskinen <sniper@iki.fi> * ext/iconv/tests/translit-failure.phpt: This test should not print out the error (which is correct). 2002-10-14 Edin Kadribasic <edink@proventum.net> * sapi/embed/config.m4: Respect INSTALL_ROOT var. Thanks to Jani for catching this one. 2002-10-14 Tal Peer <tal@kaktos.co.il> * pear/PEAR/Installer.php: * Fixed a nasty bug preventing installation of pecl exts. 2002-10-14 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/browscap.c: Fixed bug #19649. * ext/standard/tests/general_functions/001.phpt: Added float printing tests. 2002-10-14 Sebastian Bergmann <sb@sebastian-bergmann.de> * main/php_network.h: Revert to 1.34. 2002-10-14 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/formatted_print.c: Fixed a bug (introduced in previous patch) that caused non-double values to be converted to 0 by printf/sprint functions when %f format is specified. 2002-10-14 Zeev Suraski <zeev@zend.com> * NEWS win32/registry.c: Change the 'security level' of registry entries to PHP_INI_SYSTEM. They're in the system hive in the registry, so only people with administrative priveleges can add stuff in there. 2002-10-14 Derick Rethans <d.rethans@jdimedia.nl> * sapi/cli/php_cli.c: - Revert, got tricked by a stale object file 2002-10-14 Yasuo Ohgaki <yohgaki@ohgaki.net> * run-tests.php: Fixed warnings 2002-10-14 Edin Kadribasic <edink@proventum.net> * sapi/embed/config.m4: Install lib into $(prefix)/lib. Make $(prefix)/lib before trying to copy the lib into it. 2002-10-14 Derick Rethans <d.rethans@jdimedia.nl> * run-tests.php: - Added the TEST_PHP_USER environment variable with which you can specify additional directories with tests to run. This is ideal for having your own test suite on your system. You can specify more directories by seperating them with a ",", for example: TEST_PHP_USER=/dat/dev/xdebug/tests,/dat/dev/srm/tests make test * sapi/cli/php_cli.c: - Fix CLI 2002-10-14 Sebastian Bergmann <sb@sebastian-bergmann.de> * main/php_network.h: Whitespace fixes. * main/php_network.h: Fix Win32 build. 2002-10-14 Wez Furlong <wez.php@thebrainroom.net> * main/streams.c: *cough* Fix inverted logic for the assert. 2002-10-14 Jani Taskinen <sniper@iki.fi> * ext/snmp/snmp.c: This is not zval.. 2002-10-14 Wez Furlong <wez.php@thebrainroom.net> * ext/standard/file.c main/streams.c: - fgets($fp) (with no length parameter) now uses a buffer as long as the the next line available from the $fp. Previously, there was a 1KB limit. * ext/standard/tests/file/userstreams.phpt: Add a sanity check and more verbose output in the case of an error. * main/network.c: Implement better SSL error handling. * main/user_streams.c: Fix stream_eof result interpretation (and thus the user-streams test). 2002-10-13 Wez Furlong <wez.php@thebrainroom.net> * main/streams.c: Remove some old code. * main/network.c main/php_network.h: A much better probable fix for #16114. * main/network.c: Probable fix for #16114 * main/streams.c: Fix a nasty nasty bug: When not enough data to satisfy a read was found in the buffer, fgets modifies the buf pointer to point to the position to store the next chunk. It then returned the modified buf pointer, instead of a pointer to the start of the buffer. Also added some infrastructure for making fgets grow the buffer on-demand to the correct line-size. Since streams uses reasonable chunk sizes, the performance of the realloc's should be pretty good; in the best case, the line is already found completely in the buffer, so the returned buffer will be allocated to precisely the correct size. In the worst case, where the buffer only contains part of the line, we get a realloc per buffer fill. The reallocs are either the size of the remainder of the line, or the chunk_size (if the buffer sill does not contain a complete line). Each realloc adds an extra byte for a NUL terminator. I think this will perform quite well using the default chunk size of 8K. * main/php_network.h ext/standard/fsock.c main/network.c: (php_socket_errno) win32 errno compatible macro. (php_socket_strerror) win32 compatible strerror replacement. Add an E_NOTICE when a socket write fails. 2002-10-13 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/dl.c: - Fixed bug #19885, dl() no longer gives a fatal error when a module could not be loaded. (Derick) 2002-10-13 Sascha Schumann <sascha@schumann.cx> * sapi/thttpd/thttpd_patch: Redo the patch on Linux, the cygwin diff seems to be a bit broken. * sapi/thttpd/thttpd_patch: PHP + thttpd (+IRCG) build using CYGWIN now * sapi/thttpd/config.m4: Remove set .x * sapi/thttpd/config.m4: Use if block rather than an or expression 2002-10-13 Derick Rethans <d.rethans@jdimedia.nl> * ext/session/tests/004.phpt ext/session/tests/005.phpt ext/session/tests/014.phpt ext/session/tests/015.phpt ext/session/tests/018.phpt ext/session/tests/020.phpt ext/session/tests/021.phpt: - Hardcode dependent ini setting 2002-10-13 Martin Jansen <mail@martin-jansen.de> * pear/pear.m4: * Add missing PHP_SUBST(awk). 2002-10-13 Yasuo Ohgaki <yohgaki@ohgaki.net> * ext/pgsql/pgsql.c: Fixed proto. Clean up. * ext/pgsql/pgsql.c: Need to init connstring when there are 2 args. 2002-10-13 Shane Caraveo <shane@caraveo.com> * sapi/cgi/CREDITS sapi/cgi/README.FastCGI sapi/cgi/cgi_main.c: make fastcgi usage threadsafe, ready for future multithreaded fastcgi implementation get rid of environment overwriting but hooking into php's environment function set $_ENV correctly for mod_fastcgi add -b to specify binding for fastcgi new readme file with information for running under apache2.0 and iis 2002-10-13 Yasuo Ohgaki <yohgaki@ohgaki.net> * ext/pgsql/pgsql.c ext/pgsql/php_pgsql.h: Introduce connect_type option to pg_connect(). pg_connect(conn_str, conn_type) is allowed. 2002-10-13 Shane Caraveo <shane@caraveo.com> * main/php_variables.c main/php_variables.h: make php_import_environment_variables overwritable so fastcgi can correctly set $_ENV. * sapi/cgi/libfcgi/os_unix.c: fixes for unix, untested remove exit calls fix a couple function definitions 2002-10-13 Jani Taskinen <sniper@iki.fi> * ext/db/tests/.cvsignore: ignore test.dbm * ext/standard/tests/file/.cvsignore: These should be ignored. 2002-10-13 Shane Caraveo <shane@caraveo.com> * sapi/cgi/libfcgi/os_win32.c: fix shutdown issues * sapi/cgi/libfcgi/os_win32.c: fix invalid handle issue that shutdown php fastcgi prematurly fix checking os name for impersonation 2002-10-13 Yasuo Ohgaki <yohgaki@ohgaki.net> * ext/pgsql/php_pgsql.h ext/pgsql/pgsql.c: Enable pg_escape_bytea(). 2002-10-13 Ilia Alshanetsky <ilia@prohost.org> * ext/ftp/ftp.c: Fixed ZTS build Fixed 2 ZTS related warnings 2002-10-13 Wez Furlong <wez.php@thebrainroom.net> * ext/standard/http_fopen_wrapper.c: Make PHP follow 301 correctly. 2002-10-12 Jani Taskinen <sniper@iki.fi> * NEWS: Add note about fhttpd removal. * sapi/cgi/config.m4: - Removed sapi/fhttpd (this webserver is dead) 2002-10-12 Pierre-Alain Joye <paj@pearfr.org> * pear/ITX.xml: No more needed here 2002-10-12 Derick Rethans <d.rethans@jdimedia.nl> * run-tests.php: - woohooo! Automatic build test submits! 2002-10-12 Stig Bakken <ssb@fast.no> * pear/tests/pear_config.phpt: * update test 2002-10-12 James Cox <james@blog.at> * NEWS: mention vpopmail. 2002-10-12 Derick Rethans <d.rethans@jdimedia.nl> * ext/session/tests/015.phpt: - Hardcode setting which affects the test * ext/standard/tests/file/003.inc ext/standard/tests/file/003.phpt: - Make the test do what it says 2002-10-12 Sander Roobol <phy@wanadoo.nl> * ext/domxml/php_domxml.c: Typo 2002-10-12 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/url.c: Fixed a bug introduced by previous patch. 2002-10-12 Pierre-Alain Joye <paj@pearfr.org> * pear/tests/pear_system.phpt: Add test for single directory creation this test actually fails 2002-10-12 Jani Taskinen <sniper@iki.fi> * NEWS: added cybercash to the killed exts list.. 2002-10-12 Stig Bakken <ssb@fast.no> * pear/package-PEAR.xml: * 1.0b1 is today * pear/PEAR/Command/Package.php pear/package-PEAR.xml pear/template.spec: * added "pear makerpm" command for wrapping PEAR packages in RPMs * pear/System.php pear/tests/pear_system.phpt: * rename System::type to System::which * pear/PEAR/Command/Common.php: * CLI layout adjustment 2002-10-12 Stefan Esser <s.esser@e-matters.de> * ext/standard/url.c: I already said that this construct was wrong... most probably fixes bug #19876 2002-10-12 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/info.c: Fixed memory leaks. 2002-10-12 Jani Taskinen <sniper@iki.fi> * sapi/pi3web/config.m4: Use AC_ARG_WITH instead of PHP_ARG_WITH. 2002-10-12 Wez Furlong <wez.php@thebrainroom.net> * main/streams.c: paranoia 2002-10-12 Jani Taskinen <sniper@iki.fi> * sapi/embed/config.m4: Fix typo 2002-10-12 Wez Furlong <wez.php@thebrainroom.net> * main/streams.c: Write in blocks of the current chunk_size for a stream. Should resolve problems with network writes. 2002-10-12 Jani Taskinen <sniper@iki.fi> * sapi/cgi/config.m4: ws fix 2002-10-12 Edin Kadribasic <edink@proventum.net> * sapi/embed/.cvsignore sapi/embed/CREDITS: Added .cvsignore and CREDITS. 2002-10-12 Stig Bakken <ssb@fast.no> * pear/pear.m4: * look for awk, fix for #19819 2002-10-12 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbstring.c: changed INI restriction to enable per-directory settings. 2002-10-12 Jani Taskinen <sniper@iki.fi> * sapi/embed/config.m4: Add the proper install lines. * ext/fribidi/config.m4: Made the fribidi-config search a bit better. * NEWS: Add the removed extensions. 2002-10-12 Edin Kadribasic <edink@proventum.net> * pear/Makefile.frag: Install sapi/embed header file as well. 2002-10-12 Jani Taskinen <sniper@iki.fi> * sapi/embed/config.m4: Default to shared. 2002-10-12 Stig Bakken <ssb@fast.no> * pear/PEAR/Installer.php: * verify md5 checksums during install * pear/PEAR/Common.php: * include platform file attribute! * pear/package-PEAR.xml: * package updates 2002-10-11 Jani Taskinen <sniper@iki.fi> * sapi/embed/config.m4: - Removed the unnecessary extra configure option --enable-shared-embed - Changed --enable-embed to accept parameters shared/static and default to static build. 2002-10-11 Tal Peer <tal@kaktos.co.il> * ext/fribidi/tests/001.phpt: Use var_dump instaed of plain echo 2002-10-11 Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> * ext/iconv/tests/translit-failure.phpt ext/iconv/tests/translit-utf8.phpt: Improved the test cases so that they will be skipped rather than failed, if libiconv is not used. 2002-10-11 Markus Fischer <mfischer@guru.josefine.at> * ext/standard/tests/strings/explode.phpt: - Document were the first test came from. 2002-10-11 Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> * ext/iconv/config.m4 ext/iconv/iconv.c: *** empty log message *** * ext/iconv/iconv.c: Fixed possible compile-time failure 2002-10-11 Jani Taskinen <sniper@iki.fi> * ext/gd/tests/bug19266.phpt ext/gd/tests/bug19366.phpt: Renamed and fixed constant * ext/iconv/config.m4: ws fix 2002-10-11 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/tests/strings/explode.phpt: Added test for explode() function. * ext/standard/php_string.h: Fixed bug #19865 2002-10-11 Christian Stocker <chregu@phant.ch> * ext/domxml/tests/001.phpt: text and comment nodes do not have children... test was wrong, implementation is right :) * ext/domxml/php_domxml.c: node->attributes returns null, if there are no attributes. 2002-10-11 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/tests/array/var_export.phpt ext/standard/var.c: - Fix problem with var_export when objects with numeric indexes were exported. We now skip those, as there is no way to export valid code for it. 2002-10-11 Jani Taskinen <sniper@iki.fi> * ext/iconv/tests/translit-failure.phpt: fix typo. 2002-10-11 Derick Rethans <d.rethans@jdimedia.nl> * ext/gd/gd.c: - Change constant name 2002-10-11 Sander Roobol <phy@wanadoo.nl> * ext/standard/string.c: Fixed problems with the new nl2br() and beautified the code a little. Closes #19858. 2002-10-11 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/tests/strings/nl2br.phpt: - Add case for bug 19858 * ext/gd/tests/bug19266.phpt: - Skip if an external lib gd is used (which always has this crash-bug) * ext/gd/gd.c: - Add indetified for bundled GD 2002-10-11 Edin Kadribasic <edink@proventum.net> * main/config.w32.h.in: Revert Stig's patch. Windows build should work again. 2002-10-11 Derick Rethans <d.rethans@jdimedia.nl> * ext/iconv/iconv.c: - Style polizei :) 2002-10-11 Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> * ext/iconv/iconv.c: Reformatted. * ext/iconv/config.m4 ext/iconv/iconv.c: Added ICONV_IMPL and ICONV_VERSION constants. * ext/iconv/tests/translit-failure.phpt: Added set_time_limit(); We should stop it in some time. See the comment in the script for detail. 2002-10-11 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/standard/formatted_print.c: Fix ZTS build. 2002-10-11 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/string.c: Switched from localeconv to localeconv_r, which is apparently thread-safe. 2002-10-10 Jani Taskinen <sniper@iki.fi> * NEWS: SP 2002-10-10 Stig Bakken <ssb@fast.no> * pear/PEAR/Installer.php: * the actual implementation of the installroot option 2002-10-10 Melvyn Sopacua <msopacua@idg.nl> * tests/lang/034.phpt: Sorry, shouldn't use undo on packetloss connections 2002-10-10 Sterling Hughes <sterling@bumblebury.com> * ext/standard/array.c: revert patch 2002-10-10 Sebastian Bergmann <sb@sebastian-bergmann.de> * main/config.w32.h.in: Break it again (after 4.3.0-pre1 :-) 2002-10-10 Andrei Zmievski <andrei@php.net> * main/php_version.h configure.in: Back to 4.3.0-dev. 2002-10-10 Melvyn Sopacua <msopacua@idg.nl> * ext/iconv/tests/translit-failure.phpt: Another small test for iconv transliteration, from GNU libiconv testkit 2002-10-10 Derick Rethans <d.rethans@jdimedia.nl> * makedist: - Argh... test before commit 2002-10-10 Andrey Hristov <andrey@webgate.bg> * ext/standard/string.c: ws fixes 2002-10-10 Ilia Alshanetsky <ilia@prohost.org> * NEWS: Bug fix news. 2002-10-10 Derick Rethans <d.rethans@jdimedia.nl> * makedist: - Fix typo * makedist: - Update makedist script 2002-10-10 Andrei Zmievski <andrei@php.net> * tests/lang/034.phpt: Fix the test after Ilia's patch. 2002-10-10 Sebastian Bergmann <sb@sebastian-bergmann.de> * main/config.w32.h.in: Revert to revision 1.13 for 4.3.0-pre1. 2002-10-10 Andrei Zmievski <andrei@php.net> * configure.in main/php_version.h: Update to 4.3.0-pre1. 2002-10-10 Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> * ext/mbstring/tests/025.inc: Fixed the encoding * ext/mbstring/tests/022.inc ext/mbstring/tests/023.inc ext/mbstring/tests/024.inc ext/mbstring/tests/025.inc ext/mbstring/tests/025.phpt ext/mbstring/tests/021.inc: Updated the test cases so that they use mb_regex_set_options. Added a test for mb_regex_set_options. 2002-10-10 Jon Parise <jon@csh.rit.edu> * CODING_STANDARDS: Adding a new item (number 11) that explains why it's important to use emalloc() and friends in place of the standard C library functions. 2002-10-10 Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> * ext/mbstring/php_mbregex.c: Fixed mb_regex_set_options() * ext/mbstring/config.m4: --disable-mbregex had no effect 2002-10-10 Melvyn Sopacua <msopacua@idg.nl> * ext/iconv/tests/translit-utf8.phpt: It used to be 003 * tests/lang/034.phpt: Fix platform dependencies, setlocale output, bug #19836 Testing numerics, so set numeric. If the platform doesn't support this category, passing this test is more likely to be coincedence than expected behavior. 2002-10-10 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/formatted_print.c ext/standard/string.c: This patch fixes handling of floats on locales where decimal point is not a '.'. Problem is best demonstrated by bug #17079. 2002-10-10 Melvyn Sopacua <msopacua@idg.nl> * run-tests.php: When you say string, match at least one char in EXPECTF section Plus a little protection against globbing like ext/foo/tests/* or worse. * ext/ctype/tests/002.phpt: Fix platform dependencies, setlocale output, bug #19836 2002-10-10 Ilia Alshanetsky <ilia@prohost.org> * ext/pfpro/pfpro.c: Fixed a few more memory leaks. 2002-10-10 Yasuo Ohgaki <yohgaki@ohgaki.net> * NEWS: Fixed entry 2002-10-10 Jani Taskinen <sniper@iki.fi> * ext/standard/css.c ext/standard/info.c: - Fix the text alignment to be about same in any browser. * ext/fribidi/fribidi.c: Be consistent with other extensions. * ext/pfpro/pfpro.c ext/pfpro/php_pfpro.h: - Cleaned up some code and used the proper macros for ZTS stuff. - Fixed a memleak. - Fixed a bug in pfpro_process() when response contains only 2 entries. (random garbage added in the end of the value + key sometimes wrong) 2002-10-10 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Install.php: * add --installroot / -R option to install/upgrade commands * pear/PEAR/Common.php: * $this->destdir is not used * pear/packages/XML_RPC-1.0.3.tar pear/packages/XML_RPC-1.0.4.tar: * upgrade XML_RPC to 1.0.4 * pear/package-PEAR.xml: * fix Archive_Tar dependency * pear/PEAR/Command/Common.php: * options displayed in "pear help" did not have option parameters listed 2002-10-10 Jani Taskinen <sniper@iki.fi> * ext/pfpro/config.m4: - Fixed the payflowpro version check and cleaned up this a bit. 2002-10-09 Jani Taskinen <sniper@iki.fi> * ext/standard/css.c: Revert previous change, it did not fix anything. 2002-10-09 Melvyn Sopacua <msopacua@idg.nl> * ext/iconv/tests/Quotes.UTF-8 ext/iconv/tests/translit-utf8.inc ext/iconv/tests/translit-utf8.phpt: Test for standard transliteration. Original check-translit from GNU libiconv-1.8 2002-10-09 Stig Bakken <ssb@fast.no> * pear/PEAR/Remote.php: * fix a diff/patch screwup 2002-10-09 James Cox <james@blog.at> * ext/standard/css.c: overrule <center> 2002-10-09 Derick Rethans <d.rethans@jdimedia.nl> * ext/iconv/tests/003.inc ext/iconv/tests/003.phpt ext/iconv/tests/bug16069.inc ext/iconv/tests/bug16069.phpt: - Use a more descriptive filename 2002-10-09 Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> * ext/iconv/tests/003.inc ext/iconv/tests/003.phpt ext/iconv/tests/translit.inc ext/iconv/tests/translit.phpt: Renamed the test case files in order to avoid confusion 2002-10-09 Jan Lehnardt <jan@dasmoped.net> * ext/qtdom/config.m4: - fix alignment * ext/pspell/config.m4: - note aspell * ext/readline/readline.c: - fix build on FreeBSD, verified by thies. 2002-10-09 Sterling Hughes <sterling@bumblebury.com> * ext/standard/array.c: clean these functions up using zend_parse_parameters and nuke the use of HASH_OF() which is inappropriate in these cases... * ext/standard/array.c: small cleanups... 2002-10-09 Colin Viebrock <colin@easydns.com> * ext/standard/info.c: no charsets, only basic entity escaping 2002-10-09 Derick Rethans <d.rethans@jdimedia.nl> * ext/gd/tests/bug19266.phpt: - Skip when GD is not available 2002-10-09 Andrey Hristov <andrey@webgate.bg> * ext/standard/string.c: ws fixes. 2002-10-09 Derick Rethans <d.rethans@jdimedia.nl> * ext/gd/tests/bug19266.phpt: - Added test case for bug #19266 2002-10-09 Zak Greant <zak@mysql.com> * ext/mysql/php_mysql.c: Removed spurious code. Thanks Derick 2002-10-09 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/php_string.h ext/standard/string.c: Optimizations to various php string functions substr_count(), strrev(), nl2br(), php_addslashes() and php_memnstr(). * ext/sybase/php_sybase_db.c: Fixed memory leaks. 2002-10-09 Zak Greant <zak@mysql.com> * ext/mysql/php_mysql.c: Minor tweak - using memcpy(), instead of strcpy() for static strings. Gives better performance. Thanks Zeev. 2002-10-09 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/iconv/tests/translit.phpt: added @ to suppress a notice. 2002-10-09 Zak Greant <zak@mysql.com> * ext/mysql/php_mysql.c: Possible fix for bug #19529 (thanks Rasmus, Arjen and Monty) Major changes to _restore_connection_defaults - added code block to finds and releases the active mysql result (if any) - this should prevent the 'Commands out of sync' error that would be raised when a query is made when unfreed results exist Minor changes to _restore_connection_defaults - replaced calls to mysql_real_query with mysql_query - we probably should not be using mysql_real_query without checking to see if we have a version that supports the function. - given that we control the query strings here and do not need to worry about binary safety, I am using mysql_query instead - see the bug report for further discussion 2002-10-09 Pierre-Alain Joye <paj@pearfr.org> * pear/tests/pear_config.phpt: Add cache_ttl, cache_dir to expect output Update text for username, password Tests pass now 2002-10-09 Andrey Hristov <andrey@webgate.bg> * ext/standard/tests/strings/003.phpt: Test case for str_shuffle(). * ext/standard/string.c: Returning to the old behavior of str_shuffle() a bit. Now the passed string is left unmodified and the shuffled string is returned. 2002-10-09 Markus Fischer <mfischer@guru.josefine.at> * ext/imap/php_imap.c: - Fix protos (resource instead of int for stream_id, fix some return protos, consistent usage of options instead of flags). - Make imap_ping,imap_setquota and imap_setacl return a real (bool) now. 2002-10-09 Sascha Schumann <sascha@schumann.cx> * php.ini-dist: Emphasize a couple of points 2002-10-09 Markus Fischer <mfischer@guru.josefine.at> * NEWS: - Update 2002-10-09 Zak Greant <zak@mysql.com> * ext/mysql/php_mysql.c: Set default value for mysql.connect_timeout to -1. This setting matches the setting in php.ini-dist and ensures that the default behavior is to leave connect_timeout alone. 2002-10-09 George Schlossnagle <george@omniti.com> * sapi/apache/mod_php4.c: fixed return values for php_response_handler 2002-10-08 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/tests/strings/nl2br.phpt: Added nl2br() test * ext/standard/tests/strings/strrev.phpt: Added test for strrev() function. 2002-10-08 Andrei Zmievski <andrei@php.net> * ext/tokenizer/EXPERIMENTAL: Tokenizer has been stable for some time now. 2002-10-08 Ilia Alshanetsky <ilia@prohost.org> * ext/imap/php_imap.c: Fixed bug #19280 2002-10-08 Jani Taskinen <sniper@iki.fi> * main/php_version.h: revert version here too.. 2002-10-08 Colin Viebrock <colin@easydns.com> * ext/standard/css.c: don't define fonts ... use the browser defaults 2002-10-08 Derick Rethans <d.rethans@jdimedia.nl> * ext/session/tests/021.phpt: - hardcode default rewriting tags * run-tests.php: - Fix .exp output 2002-10-08 Andrei Zmievski <andrei@php.net> * configure.in: Revert to 4.3.0. 2002-10-08 Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> * ext/mbstring/mbstring.c ext/mbstring/mbregex.c: ZTS fixes 2002-10-08 Melvyn Sopacua <msopacua@idg.nl> * ext/sysvmsg/config.m4: Fix config bug reported by Jan Lehnart. Keep it simple, and the size of a pointer is always known, duh. 2002-10-08 Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> * ext/mbstring/mbregex.c: Removed table generating code. The return values of isalnum() may vary by the locale setting. 2002-10-08 Ilia Alshanetsky <ilia@prohost.org> * ext/mbstring/mbregex.c: Fixed memory leak. 2002-10-08 Tal Peer <tal@twisthost.com> * ext/fribidi/tests/001.phpt: Enhanced test to also check charsets CP1255 and ISO-8859-8 2002-10-08 Ilia Alshanetsky <ilia@prohost.org> * NEWS: Apache 2 news 2002-10-08 Pierre-Alain Joye <paj@pearfr.org> * pear/PEAR.php: Sorry Derick, generated the wrong patch and we don't need to recreate an array ;) 2002-10-08 Derick Rethans <d.rethans@jdimedia.nl> * pear/PEAR.php: - Fix for deprecated function * ext/mcrypt/tests/vectors.txt: - Add the source file too * ext/mcrypt/tests/blowfish.phpt: - Add blowfish compatibility test 2002-10-08 Andrey Hristov <andrey@webgate.bg> * ext/standard/string.c: Now str_shuffle() has the randomization characteristics of shuffle(). str_shuffle() won't return anymore the randomized string and thus will be consistent with shuffle(). Since this function is new to 4.3.0 no BC problems. 2002-10-08 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/tests/aggregation/aggregate_properties_by_regexp.phpt: - Skip if the function is not available (in case pcre was not compiled in). * run-tests.php: - Show easier parseable and greppable output * run-tests.php: - Use getenv, as $_ENV is not available when variables_order= in php.ini does not include "E". 2002-10-08 Tal Peer <tal@twisthost.com> * ext/fribidi/tests/002.phpt: Added test to check if charsets constants are defined 2002-10-08 Derick Rethans <d.rethans@jdimedia.nl> * ext/mbstring/mbregex.c: - Please do not use notices for debug information * Makefile.global: - Drop dependency on fixed php.ini * ext/standard/tests/strings/implode.phpt: - Use error_reporting E_ALL * tests/strings/004.phpt run-tests.php: - Drop requirement for php.ini-dist - Adjust test script to hard code ini settings * php.ini-dist php.ini-recommended: - Document correct default * php.ini-recommended php.ini-dist: - Do not change those from the default in Zend/zend_highlight.h 2002-10-08 George Schlossnagle <george@omniti.com> * main/SAPI.c: headers code cleanup * sapi/apache/php_apache.c: header code cleanup 2002-10-08 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/mbstring/php_mbregex.c ext/mbstring/php_mbregex.h: Fix ZTS build. 2002-10-08 Jani Taskinen <sniper@iki.fi> * tests/func/.cvsignore tests/lang/.cvsignore tests/strings/.cvsignore tests/.cvsignore tests/basic/.cvsignore tests/classes/.cvsignore pear/tests/.cvsignore ext/zip/tests/.cvsignore ext/zlib/tests/.cvsignore pear/Console/tests/.cvsignore ext/sysvmsg/tests/.cvsignore ext/xml/tests/.cvsignore ext/xslt/tests/.cvsignore ext/standard/tests/serialize/.cvsignore ext/standard/tests/strings/.cvsignore ext/standard/tests/time/.cvsignore ext/standard/tests/versioning/.cvsignore ext/standard/tests/file/.cvsignore ext/standard/tests/general_functions/.cvsignore ext/standard/tests/math/.cvsignore ext/standard/tests/reg/.cvsignore ext/standard/tests/array/.cvsignore ext/standard/tests/assert/.cvsignore ext/standard/tests/aggregation/.cvsignore ext/session/tests/.cvsignore ext/skeleton/tests/.cvsignore ext/standard/tests/.cvsignore ext/pcntl/tests/.cvsignore ext/pgsql/tests/.cvsignore ext/pspell/tests/.cvsignore ext/openssl/tests/.cvsignore ext/mbstring/tests/.cvsignore ext/mcrypt/tests/.cvsignore ext/mcve/tests/.cvsignore ext/ncurses/tests/.cvsignore ext/iconv/tests/.cvsignore ext/interbase/tests/.cvsignore ext/domxml/tests/.cvsignore ext/exif/tests/.cvsignore ext/gmp/tests/.cvsignore ext/db/tests/.cvsignore ext/dbx/tests/.cvsignore ext/dio/tests/.cvsignore ext/crack/tests/.cvsignore ext/ctype/tests/.cvsignore ext/cybermut/tests/.cvsignore ext/bz2/tests/.cvsignore: Add php.* to be ignored. * run-tests.php: ws fixes 2002-10-08 Sascha Schumann <sascha@schumann.cx> * configure.in: add support for adding /usr/lib to the linkline by default 2002-10-08 George Schlossnagle <george@omniti.com> * sapi/apache/mod_php4.c sapi/apache/php_apache.c: sync with head. add optional content type param to send_http_header * main/SAPI.c main/main.c main/php_main.h: sync with head 2002-10-08 Jani Taskinen <sniper@iki.fi> * NEWS: style polizei 2002-10-08 Stig Bakken <ssb@fast.no> * main/config.w32.h.in: * make these variables configurable from environment on Windows: PEAR_INSTALLDIR PHP_BINDIR PHP_CONFIG_FILE_PATH PHP_CONFIG_FILE_SCAN_DIR PHP_DATADIR PHP_EXTENSION_DIR PHP_INCLUDE_PATH PHP_LIBDIR PHP_LOCALSTATEDIR PHP_PREFIX PHP_SYSCONFDIR 2002-10-08 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * ext/ming/config.m4: Get rid of redundant loop * ext/ming/config.m4: FreeBSD ming port sticks ming.h in /usr/local/include/ming/ming.h and we weren't finding it there. * sapi/apache/php_apache_http.h: zlib.h being included before ssl.h needs to be handled here too 2002-10-07 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * ext/zlib/config0.m4: Make zlib-dir actually mean something during the check 2002-10-07 Dan Kalowsky <dank@deadmime.org> * ext/standard/quot_print.c: Fix for bug #19798 (submitted by mclap@simpage.mv.ru) 2002-10-07 Melvyn Sopacua <msopacua@idg.nl> * NEWS: Add xslt milestones 2002-10-07 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * ext/zlib/config0.m4: Argh! Revert. I'm on drugs. Was linking in a newer libz when I checked this. 2002-10-07 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/tests/strings/strpos.phpt ext/standard/tests/strings/strstr.phpt ext/standard/tests/strings/substr_count.phpt: Added tests for strstr(), strpos() and substr_count() functions. 2002-10-07 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * ext/zlib/config0.m4: Oops, should still define that. Didn't think I needed it as nothing in ext/zlib checks it, but it is checked elsewhere. * ext/zlib/config0.m4: This restriction is no longer true after the streams changes. 2002-10-07 Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> * ext/mbstring/php_mbregex.c: Fixed typo. 2002-10-07 Markus Fischer <mfischer@guru.josefine.at> * NEWS: - Update 2002-10-07 Tal Peer <tal@twisthost.com> * ext/fribidi/tests/001.phpt: Initial commit of fribidi_log2vis test 2002-10-07 Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> * ext/mbstring/tests/022.inc ext/mbstring/tests/022.phpt ext/mbstring/tests/023.inc ext/mbstring/tests/023.phpt ext/mbstring/tests/024.inc ext/mbstring/tests/024.phpt ext/mbstring/tests/021.inc ext/mbstring/tests/021.phpt: Added test cases for mbregex * ext/mbstring/php_mbregex.h ext/mbstring/mbstring.c ext/mbstring/mbstring.h ext/mbstring/php_mbregex.c: Lots of clean-up for upcoming mbstring merging event. Added mb_regex_set_options(). The Options parameters of various mbregex functions are now deprecated. 2002-10-07 Colin Viebrock <colin@easydns.com> * php.ini-dist: Document session.save_path option in php.ini 2002-10-07 Andrei Zmievski <andrei@php.net> * ext/pcre/php_pcre.c: Use a copy of locale instead of the original. Fixes bug #19482. 2002-10-07 Derick Rethans <d.rethans@jdimedia.nl> * NEWS: 2. :) 2002-10-07 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * NEWS: . 2002-10-07 David Viner <dviner@yahoo-inc.com> * ext/xslt/tests/008.phpt ext/xslt/tests/xslt_set_object.xsl: adding test of xslt_set_object --dviner 2002-10-07 Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> * ext/mbstring/php_mbregex.c: fixed mb_split() * ext/mbstring/php_mbregex.c: fixed mb_split (the value of third parameter treated wrongly) 2002-10-07 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * ext/standard/dir.c: readdir() was returning NULL instead of FALSE when used on an invalid directory handle. If someone forgot to check (as someone here did) that the opendir() succeeded, and then followed the documented usage by checking readdir()!==FALSE things would go awry. The ZEND_FETCH_RESOURCE macro explicitly does a RETURN_NULL on failure which is not what we want in this case, so work around it. No need to change it for the OO case since the object is not created if the opendir fails. 2002-10-07 Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> * ext/mbstring/php_mbregex.c: MFH 2002-10-07 Stefan Esser <s.esser@e-matters.de> * ext/mbstring/mbfilter.c: never smash the stack... * ext/mbstring/mbfilter.c: fixing possible off by one in error case 2002-10-07 Sander Roobol <phy@wanadoo.nl> * run-tests.php: Temporary (?) workaround (?) for is_executable() on Windows. 2002-10-07 Stefan Esser <s.esser@e-matters.de> * main/rfc1867.c: MFH: closing protected variables hole * main/rfc1867.c: Closing protected variables hole 2002-10-07 Zeev Suraski <zeev@zend.com> * main/output.c: Whitespace 2002-10-07 Jani Taskinen <sniper@iki.fi> * ext/fbsql/config.m4: Fix obvious error.. 2002-10-07 Jan Lehnardt <jan@dasmoped.net> * ext/fbsql/config.m4: - fix typo and improve error message 2002-10-07 Sascha Schumann <sascha@schumann.cx> * ext/session/tests/021.phpt: Call ob_flush to force the buffer contents to go through the rewriter. 2002-10-07 Marc Boeren <M.Boeren@guidance.nl> * ext/dbx/tests/003.phpt ext/dbx/tests/004.phpt ext/dbx/tests/005.phpt ext/dbx/tests/006.phpt ext/dbx/tests/007.phpt ext/dbx/tests/008.phpt ext/dbx/tests/dbx_test.p: Tests will be skipped if a tester does not explicitly specify the test-database setup in dbx_test.p. 2002-10-07 Sascha Schumann <sascha@schumann.cx> * main/streams.c: stdio buffers data in user land. By calling fflush(3), this data is sent to the kernel using write(2). fsync'ing a file descriptor is not required -- writing to a fd has the same affect as calling fflush after each fwrite. * ext/session/session.c: Print out warning only, if a variable was actually migrated 2002-10-07 Melvyn Sopacua <msopacua@idg.nl> * ext/xslt/tests/009.phpt: MFH * run-tests.php: Add --EXPECTF-- section: 'sprintf' for EXPECT sections. See for usage example ext/xslt/tests/009.phpt. 2002-10-06 Melvyn Sopacua <msopacua@idg.nl> * ext/xslt/tests/009.phpt: (xslt tests) Add test for memory leaks, caused by inapproreate use of the struct. Memory leak is caused by at least 2 errors on handle. 2002-10-06 Wez Furlong <wez.php@thebrainroom.net> * main/streams.c: Try to ensure that we return the number of bytes requested during fread(). 2002-10-06 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/session/session.c: Silence warning. 2002-10-06 Sander Roobol <phy@wanadoo.nl> * tests/lang/029.phpt: Skip this test if we're not using ZE2 * ext/standard/tests/strings/add-and-stripcslashes.phpt: We're testing stripCslashes() here :) * ext/standard/tests/strings/add-and-stripcslashes.phpt: Some more weird tests on Derick's request :) * ext/standard/tests/strings/add-and-stripcslashes.phpt ext/standard/tests/strings/bin2hex.phpt ext/standard/tests/strings/chr_ord.phpt ext/standard/tests/strings/chunk_split.phpt ext/standard/tests/strings/count_chars.phpt ext/standard/tests/strings/crc32.phpt ext/standard/tests/strings/trim.phpt: Some string tests 2002-10-06 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/tests/array/array_change_key_case.phpt ext/standard/tests/array/array_chunk.phpt ext/standard/tests/array/array_count_values.phpt: - Add new tests for: array_change_key_case, array_chunk and array_count_values. 2002-10-06 Sander Roobol <phy@wanadoo.nl> * ext/standard/string.c: MFH * ext/standard/string.c: Fix another leak in implode() 2002-10-06 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * ext/gd/libgd/gd_topal.c: MFH fixes 19704 and 19781 * ext/gd/libgd/gd_topal.c: Fix for bug 19781 2002-10-06 Derick Rethans <d.rethans@jdimedia.nl> * tests/strings/004.phpt: - Fix highlight_string test. 2002-10-06 Ilia Alshanetsky <ilia@prohost.org> * ext/session/session.c: Code cleanup. Thanks Andi. 2002-10-06 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * ext/standard/basic_functions.c ext/standard/info.c ext/standard/info.h run-tests.php: Add php_ini_scanned_files() so "make test" can tell you when you have additional .ini files that are scanned. 2002-10-06 Sander Roobol <phy@wanadoo.nl> * ext/standard/basic_functions.c: MFH * ext/standard/basic_functions.c: You can't detect NULL nicely - false is better and more PHPish. 2002-10-06 Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> * ext/mbstring/php_mbregex.c: Fix build. Thanks to Sebastian, Rasmus. 2002-10-06 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * ext/mbstring/php_mbregex.c: Fix build 2002-10-06 Sander Roobol <phy@wanadoo.nl> * ext/standard/basic_functions.c: Fixed getopt() - made it actually work 2002-10-06 Melvyn Sopacua <msopacua@idg.nl> * ext/xslt/README.XSLT-BACKENDS ext/xslt/php_sablot.h ext/xslt/sablot.c ext/xslt/xslt.c: MFB 2002-10-06 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/tests/strings/url_t.phpt: Added expected data to parse_url() test * ext/standard/url.c: Added a much faster parse_url() implementation. This also fixes a number of bugs in the old parse_url() implementation. 2002-10-06 Melvyn Sopacua <msopacua@idg.nl> * ext/xslt/tests/public.xml: MFH * ext/xslt/tests/public.xml: missed this, needed by 007.phpt 2002-10-06 Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> * ext/mbstring/mbfilter.c: merging * ext/mbstring/php_mbregex.c: Added support for aliases of the encoding names. * ext/mbstring/php_mbregex.c: added support for aliases of the encodings. 2002-10-06 Melvyn Sopacua <msopacua@idg.nl> * ext/xslt/sablot.c: whitespace 2002-10-06 Zeev Suraski <zeev@zend.com> * main/output.c ext/standard/basic_functions.c ext/standard/var.c: Revert the implicit_flush mess. Do not revert it again under any circumstances! Yasuo/anybody else - if there are issues with implicit_flush, please inform me and I will fix them. 2002-10-06 Sander Roobol <phy@wanadoo.nl> * ext/standard/string.c: MFH * ext/standard/string.c: Fixed segfault and memory leak in the new implementation of implode() * ext/standard/tests/strings/implode.phpt ext/standard/tests/strings/str_repeat.phpt: Add testcases for implode() and str_repeat() 2002-10-06 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/mbstring/mbfilter.c: HAVE_MBSTRING awareness. * ext/mbstring/mbregex.c: HAVE_MBREGEX awareness. 2002-10-06 Zeev Suraski <zeev@zend.com> * ext/standard/basic_functions.c main/output.c main/php_output.h: Begin the cleanup - remove ob_flush_all() 2002-10-06 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * ext/gd/libgd/gd.c: MFH * ext/gd/libgd/gd.c: WS fix - although the entire libgd directory is horrendously formatted. However, since we are forking existing code, fixing it would make it much harder to merge any Boutell patches (if they ever come out with any). * ext/gd/libgd/gd.c: Oops * ext/gd/libgd/gd_topal.c: Ok, perhaps it's too late at night, but I see absolutely no reason for this chunk of code here. Why is it writing a palette.map file to disk in the middle of this function? Looks like leftover debug code, and this particular code seems to be crashing on OSX as per bug #19704. * ext/gd/libgd/gd.c: MFH bug fix for #19700 * ext/gd/libgd/gd.c: Fix for bug #19700 - code by Wez 2002-10-06 Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> * ext/mbstring/php_mbregex.c: made messages more consistent 2002-10-06 Sebastian Bergmann <sb@sebastian-bergmann.de> * sapi/servlet/README: Add note about javax.servlet package. 2002-10-06 Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> * ext/mbstring/php_mbregex.c: Warnings for empty regular expressions 2002-10-06 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * ext/gd/config.m4 ext/gd/libgd/gd.h ext/gd/libgd/gd_gif_in.c NEWS: MFH the read-only GIF support * ext/gd/libgd/gd.h ext/gd/libgd/gd_gif_in.c NEWS ext/gd/config.m4: As discussed a while ago, decoding GIF images is not considered a Unisys LZW patent violation so we can distribute read-only GIF support with our bundled GD2. The patent also expires in 2003, which is quickly approaching, so we can roll in write support soon unless things change. 2002-10-06 Frank M. Kromann <frank@kromann.info> * ext/fbsql/fbsql.dsp: Adding missing include path's to non TS projects * ext/fbsql/php_fbsql.c: Fixing comment allowing the module to compile again 2002-10-05 Melvyn Sopacua <msopacua@idg.nl> * ext/xslt/README.XSLT-BACKENDS: (xslt dev-doc) Revert 1.6-1.7 - no need to change names on stable ext. * ext/xslt/php_sablot.h ext/xslt/sablot.c ext/xslt/xslt.c: (xslt) Introduce revised interaction with Sablotron backend. ATTENTION: interaction with Sablotron backend, now uses the API prefered by the Ginger Alliance. Test it for BC issues. It also changes internals of the abstraction, to resolve issues that would arrise with invalid argument or parameter arrays. New functions: * xslt_set_object, similar to xml_set_object * xslt_setopt, set global options for a processor instance. Introduces new constants, related to the xslt_setopt function. Removes a warning, when skipping argument array with NULL. 2002-10-05 Andrei Zmievski <andrei@php.net> * main/php_version.h configure.in: Change HEAD version to 4.4.0-dev. 2002-10-05 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/tests/strings/url_t.phpt: - Add parse_url() tests (expect will follow later)url_t.phpt 2002-10-05 Andrei Zmievski <andrei@php.net> * NEWS: *** empty log message *** 2002-10-05 Melvyn Sopacua <msopacua@idg.nl> * ext/xslt/tests/005.phpt ext/xslt/tests/006.phpt ext/xslt/tests/007.phpt ext/xslt/tests/args.xsl ext/xslt/tests/param.xsl ext/xslt/tests/qa.dtd ext/xslt/tests/test.xml: (xslt tests) Add test for new backend API (005.phpt), new function (006.phpt) and a crash test (007.phpt) 006.phpt also tests handling of public entities, which is in essence new to the extension, since there was no way to turn it on. 2002-10-05 Wez Furlong <wez.php@thebrainroom.net> * ext/bz2/bz2.c: This got omitted from an earlier commit. EOF related checks for bzip2 streams. * NEWS: sp 2002-10-05 Melvyn Sopacua <msopacua@idg.nl> * ext/xslt/tests/004.phpt: (xslt tests) Test for reference to a non-existing scheme handler. 2002-10-05 Bertrand Mansion <bmansion@mamasam.com> * pear/HTML/Select.php: Fix bug for select of type multiple. Thanks to Alan Morey for reporting it. 2002-10-05 Melvyn Sopacua <msopacua@idg.nl> * ext/xslt/sablot.c: (xslt: error_print) Fixes a leak when multiple error messages are issued during a transformation. * NEWS: remove tests entry. Fix patch entry to contain function name 2002-10-05 Wez Furlong <wez.php@thebrainroom.net> * ext/standard/file.c main/php_network.h main/streams.c: EOF related fixes. * ext/standard/info.c: Revert. The problem lies elsewhere. * ext/standard/info.c: Fix Win32 build as PHP_CONFIG_FILE_SCAN_DIR is not #defined. * ext/standard/tests/file/userstreams.phpt ext/zlib/zlib_fopen_wrapper.c main/memory_streams.c main/network.c main/php_streams.h main/streams.c main/user_streams.c ext/standard/php_fopen_wrapper.c: This seems to resolve the issues with fgets. I've moved EOF detection into the streams layer; a stream reader implementation should set stream->eof when it detects EOF. Fixed test for user streams - it still fails but that is due to an output buffering bug. 2002-10-05 Markus Fischer <mfischer@guru.josefine.at> * ext/mysql/php_mysql.c: - Remove superfluous E_WARNING if mysql_connect() fails; there's already an E_WARNING a few lines above. 2002-10-04 David Viner <dviner@yahoo-inc.com> * ext/xslt/php_sablot.h ext/xslt/php_xslt.h ext/xslt/sablot.c ext/xslt/xslt.c: adding the xslt_set_object function (as per discussion on php-dev and the newly created sab-php@gingerall.cz) --dviner * ext/xslt/sablot.c ext/xslt/xslt.dsp: adding segfault detection as proposed by Lenar L�hmus [lenar@vision.ee] --dviner 2002-10-04 Stefan Esser <s.esser@e-matters.de> * ext/ftp/ftp.c: some FTP servers return 32bit port numbers. 2002-10-04 Brian France <list@firehawksystems.com> * main/fopen_wrappers.c: Fixed a problem where opendir with <path>/ and having <path>/ in open_basedir ini option didn't work. It was removing the trailing slashes and then addeding it back to only one of the string, now it adds it back to to both if needed. 2002-10-04 Stefan Esser <s.esser@e-matters.de> * ext/standard/ftp_fopen_wrapper.c: some broken ftp servers return 32bit port numbers. 2002-10-04 Ilia Alshanetsky <ilia@prohost.org> * sapi/apache2filter/sapi_apache2.c: A slightly better content-type check. * sapi/apache2filter/README: Added a note on how to enable .phps support. 2002-10-04 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * run-tests.php: Return to old counting where every test is counted (even those of skipped extensions). Inform about the number of extensions tested and skipped. This makes the test summary more compareable. Maybe i'll add a parameter/env-var to skip extension tests. That way we could fasten tests for changes in the core. But it has to wait some days. 2002-10-04 Ilia Alshanetsky <ilia@prohost.org> * sapi/apache2filter/sapi_apache2.c: Added .phps support to Apache 2. It can be enabled by adding AddType application/x-httpd-php-source .phps to httpd.conf 2002-10-04 Sterling Hughes <sterling@bumblebury.com> * ext/standard/string.c: have implode use the smart_str_*() functions, this should speed things up quite a bit... 2002-10-04 Martin Jansen <mail@martin-jansen.de> * pear/PEAR/Registry.php: * Nuke warning when $php_errormsg is not set. 2002-10-04 Sascha Schumann <sascha@schumann.cx> * main/streams.c: Fix EOF cases Noticed by: Ilia * main/streams.c: Interrupt loop, if the stream op fails. * main/main.c: Nuke warning * main/network.c main/streams.c: Add a few notes 2002-10-04 Wez Furlong <wez.php@thebrainroom.net> * ext/mime_magic/mime_magic.c: Make that error message more meaningful for systems like my SuSE 7.0 with an apparently broken magic file. * main/network.c main/php_streams.h main/streams.c: replace dont_block with a flag. 2002-10-04 Ilia Alshanetsky <ilia@prohost.org> * main/streams.c: Fixed bug #19746 2002-10-04 Sascha Schumann <sascha@schumann.cx> * main/network.c main/php_streams.h main/streams.c: Improve the general behaviour of stream_gets and fix its semantics with regard to sockets. The behaviour should be aligned with PHP 4.2 now. This has been verified to some degree. If the underlying stream operations block when no new data is readable, we need to take extra precautions. If there is buffered data available, we check for a EOL. If it exists, we pass the data immediately back to the caller. This saves a call to the read implementation and will not block where blocking is not necessary at all. If the stream buffer contains more data than the caller requested, we can also avoid that costly step and simply return that data. 2002-10-04 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * ext/standard/dir.c: Kill a few more warnings * ext/sockets/sockets.c: Kill warning 2002-10-04 Jani Taskinen <sniper@iki.fi> * NEWS: combine those ob_* entries and keep the attention line on top 2002-10-04 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/standard/basic_functions.c: return FALSE on error * main/output.c: suggest paranthesis around || and && 2002-10-04 Sander Roobol <phy@wanadoo.nl> * ext/standard/string.c: Fixed a bug in the new implementation of str_repeat() 2002-10-04 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/string.c: - dot :) 2002-10-04 Sterling Hughes <sterling@bumblebury.com> * ext/standard/string.c: fix a memory leak in implode() * ext/standard/string.c: Make the glue argument to implode() optional, if it is not specified default to using "". 2002-10-04 Andrei Zmievski <andrei@php.net> * NEWS: that was reverted for now 2002-10-04 Melvyn Sopacua <msopacua@idg.nl> * ext/xslt/tests/002.phpt ext/xslt/tests/003.phpt ext/xslt/tests/skipif.inc ext/xslt/tests/xslt_set_error_handler.php: Improve testkit for xslt. 002.phpt and 003.phpt are regression tests for reported bugs. 004.phpt has been known to cause problems in some Sab/PHP combinations. No known reports in bug db for that one. Added skip mechanism * ext/xslt/sablot.c: (xslt_set_error_handler) Fixes array 'fields' argument to contain correct information. Patch by Lenar Lohmus. 2002-10-04 Sebastian Bergmann <sb@sebastian-bergmann.de> * main/config.w32.h.in: Add PHP_CONFIG_FILE_SCAN_DIR. 2002-10-04 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * main/php_ini.c ext/standard/info.c main/build-defs.h.in main/main.c NEWS configure.in: As discussed, add --with-config-file-scan-dir compile-time switch defining a directory which will be scanned for *.ini files after the main php.ini file has been parsed. This makes it much easier to automatically deploy a modular PHP since adding extensions which have their own ini switches can now be done by simply dropping a foo.ini file in the right directory and restarting. A list of parsed ini files is maintained and shown on the phpinfo page. 2002-10-04 Sean Bright <elixer@erols.com> * ext/standard/tests/math/hexdec.phpt: Add missing ?> 2002-10-04 Sascha Schumann <sascha@schumann.cx> * ext/standard/math.c: peek at freebsd's libc and fix _php_math_basetozval PR: #19733 * ext/standard/tests/math/hexdec.phpt: overflow check for _php_math_basetozval * ext/standard/filestat.c: Fix php_stat brokenness. 2002-10-03 Sascha Schumann <sascha@schumann.cx> * ext/session/tests/019.phpt: remove trans_sid=1 * ext/session/tests/020.phpt ext/session/tests/021.phpt: 20: rewriter uses arg_seperator.output for modifying URLs 21: rewriter handles <form> and <fieldset> correctly * ext/session/tests/018.phpt ext/session/tests/019.phpt: 19: serializing references test case using globals 18: rewriter correctly handles attribute names which contain dashes 2002-10-03 Jani Taskinen <sniper@iki.fi> * NEWS: sigh..is this so hard? 2002-10-03 Andrei Zmievski <andrei@php.net> * ext/wddx/php_wddx.h ext/wddx/php_wddx_api.h ext/wddx/wddx.c: Revert the patch for now. We'll be branching on Saturday the way it's implemented is a bit half-baked. We can always merge it into the branch at a later point. 2002-10-03 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * run-tests.php: $val not in first param to sprintf 2002-10-03 Andrey Hristov <andrey@webgate.bg> * ext/standard/string.c: ws fixes. 2002-10-03 Sascha Schumann <sascha@schumann.cx> * ext/session/tests/017.phpt: code from ancient bug #5271 setting $_SESSION before session_start() should not cause segfault * ext/session/tests/016.phpt: invalid session.save_path should not cause a segfault * ext/session/tests/015.phpt: use_trans_sid should not affect SID * ext/session/tests/004.phpt ext/session/tests/005.phpt ext/session/tests/006.phpt ext/session/tests/007.phpt ext/session/tests/008.phpt ext/session/tests/009.phpt ext/session/tests/010.phpt ext/session/tests/011.phpt ext/session/tests/012.phpt ext/session/tests/013.phpt ext/session/tests/014.phpt ext/session/tests/001.phpt ext/session/tests/002.phpt ext/session/tests/003.phpt: editing 2002-10-03 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * main/streams.c: fix position handling 2002-10-03 Sascha Schumann <sascha@schumann.cx> * ext/session/tests/014.phpt: A script should not be able to modify session.use_trans_sid * ext/session/tests/013.phpt: There should not be any warning with regard to redefining SID * ext/session/tests/012.phpt: Registering _SESSION should not segfault. * ext/session/tests/010.phpt ext/session/tests/011.phpt: Mini test cases for fixed segfaults * ext/session/session.c: session_decode should not segfault * ext/session/tests/004.phpt ext/session/tests/005.phpt ext/session/tests/006.phpt ext/session/tests/007.phpt ext/session/tests/008.phpt: Remove ob_start() * ext/session/tests/009.phpt: Add test for unset($_SESSION["x"]); behaviour * ext/session/tests/003.phpt ext/session/tests/004.phpt ext/session/tests/005.phpt ext/session/tests/006.phpt ext/session/tests/007.phpt ext/session/tests/008.phpt ext/session/tests/skipif.inc ext/session/tests/001.phpt: make tests work with CLI * ext/session/session.c: Don't emit warning, if there is nothing to send 2002-10-03 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/string.c: Optimized str_repeat() function, it is now 10x faster on 1 byte multipliers and 5-6x faster on multi-byte multipliers. 2002-10-03 Yasuo Ohgaki <yohgaki@ohgaki.net> * main/output.c ext/standard/var.c ext/standard/basic_functions.c: Fixed broken code by Derick. ob_implicit_flush() and ob_flush_all() are stopped working. var_dump() and hightlisht_string() outputs buffer contents wrongly with ob_implicit_flush(). Everyone should be happy now. It was only OG(implicit_flush) interpretation issue after all. 2002-10-03 Andrey Hristov <andrey@webgate.bg> * php.ini-recommended: colon written instead of semi-colon. 2002-10-03 Stefan Esser <s.esser@e-matters.de> * ext/ftp/ftp.c ext/ftp/ftp.h: swapped conditions to correct the logic 2002-10-03 Andrey Hristov <andrey@webgate.bg> * ext/standard/html.c: few ws fixes. 2002-10-03 James Moore <James@phpuk.org> * main/output.c: Keep comments and code in sync. 2002-10-03 Stefan Esser <s.esser@e-matters.de> * EXTENSIONS: Tell everyone that I am the ext/ftp maintainer... * NEWS: Added news entry about ftp_ssl_connect() * ext/ftp/ftp.c ext/ftp/ftp.h ext/ftp/php_ftp.c ext/ftp/php_ftp.h: Added ftp_ssl_connect() for FTP over SSL. 2002-10-03 Zeev Suraski <zeev@zend.com> * main/main.c: Guys, please keep K&R. 2002-10-03 Sebastian Bergmann <sb@sebastian-bergmann.de> * main/output.c: Fix warnings. 2002-10-03 Derick Rethans <d.rethans@jdimedia.nl> * tests/func/008.phpt tests/func/009.phpt: - Fix descriptions * tests/strings/004.phpt: - Add highlight_string buffering test 2002-10-03 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: typing 2002-10-03 Derick Rethans <d.rethans@jdimedia.nl> * tests/func/008.phpt tests/func/009.phpt: - Add tests 2002-10-03 Andrey Hristov <andrey@webgate.bg> * ext/standard/basic_functions.c: ws fixes. 2002-10-03 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/basic_functions.c ext/standard/var.c sapi/cli/php_cli.c main/output.c: - Revert changed to implicit_flush behavior. The new behavior was not intended in the first place. 2002-10-03 Andrey Hristov <andrey@webgate.bg> * NEWS: Added some info about new functions and changed functionality in old ones. 2002-10-03 Yasuo Ohgaki <yohgaki@ohgaki.net> * sapi/cli/php_cli.c: Shouldn't enable implicit_flush like this. Most problems are fixed. If you find internal function that does not follow my comment, please fix it or let me know. * ext/standard/basic_functions.c: Fixed broken higlight_string() 2002-10-03 Stefan Esser <s.esser@e-matters.de> * ext/ftp/ftp.h ext/ftp/php_ftp.c ext/ftp/php_ftp.h ext/ftp/ftp.c: renamed ftp_async_* into ftp_nb_* 2002-10-03 Jan Lehnardt <jan@dasmoped.net> * ext/wddx/php_wddx_api.h ext/wddx/wddx.c ext/wddx/php_wddx.h: - Added wddx_serialize_type(). Allows users to cast values to WDDX types 2002-10-03 Yasuo Ohgaki <yohgaki@ohgaki.net> * ext/standard/var.c: Prevent unwanted fluhsing. * main/output.c: Added comment for php_output_set_status(). Please use this function if you would like to prevent unwanted flush by implicit_flush=On or ob_implicit_flush(). 2002-10-03 Sascha Schumann <sascha@schumann.cx> * ext/session/tests/001.phpt ext/session/tests/003.phpt ext/session/tests/004.phpt ext/session/tests/005.phpt ext/session/tests/006.phpt ext/session/tests/007.phpt ext/session/tests/008.phpt: Purge ini_set calls and replace through INI sections. 2002-10-03 Andi Gutmans <andi@zend.com> * ext/session/session.c: - Fix ZTS build 2002-10-03 Yasuo Ohgaki <yohgaki@ohgaki.net> * ext/mbstring/tests/007.phpt: Update test * main/php_output.h main/output.c ext/mbstring/tests/007.inc ext/standard/basic_functions.c: Added ob_flush_all() that flushes bufferred contents until it actually sent/printed. 2002-10-03 Sascha Schumann <sascha@schumann.cx> * php.ini-dist: move gc_maxlifetime one up * php.ini-recommended: Add recommened entries, including disabling the session bug/feature * php.ini-dist: Add new session options * ext/session/php_session.h ext/session/session.c: Make the interpretation of gc_probability configurable by adding session.gc_dividend. The probability of running gc on each request is then gc_probability/gc_dividend. * ext/session/tests/008.phpt: Reenable E_WARNING and test session.bug_compat_warn in addition. * ext/session/tests/007.phpt: session_destroy resets the sid, so we need to set it again here * ext/session/tests/008.phpt: Verify PHP 4.2 compatibility: global is used albeit register_globals=0 * ext/session/session.c: Use ZEND_SET_SYMBOL_WITH_LENGTH correctly (hopefully) It strikes me as awkward that a Zend API user needs to take care of doing the engine's reference counting. This fixes a memory overrun in a testcase. All ZEND_SET_* calls should be correct now. * ext/session/session.c: (track_init) Use is_ref/refcount parameters of SET_SYMBOL macros (save_current_state) Prevent a possible deadlock which occurs when the track vars are inaccessible * ext/session/tests/007.phpt: Verify PHP 4.2 compatibility: unset($c) with enabled register_globals 2002-10-03 Yasuo Ohgaki <yohgaki@ohgaki.net> * ext/standard/string.c: Forgot 1 byte for \0 * ext/standard/string.c: Save memory 2002-10-03 Sascha Schumann <sascha@schumann.cx> * ext/session/session.c: Align behaviour with 4.2 with regard to register_globals=1 session_register("c"); unset($c); $c = time(); If a user unsets a global session variable, it is not a reference to a $_SESSION slot anymore. During serialization, PHP 4.2 will not find the respective entry in $_SESSION and fall back to the global sym table. 2002-10-03 Yasuo Ohgaki <yohgaki@ohgaki.net> * main/output.c: Added missing proto and foldings. * ext/zlib/zlib.c main/output.c main/php_output.h: Move wrong output buffer usage check to ob_gzhandler init. Export some output buffer functions. 2002-10-03 Sascha Schumann <sascha@schumann.cx> * ext/session/php_session.h ext/session/session.c: Nuke PS(vars), we keep the state of registered session variables now completely in PS(http_session_vars). This avoids bugs which are caused by a lack of synchronization between the two hashes. We also don't need to worry about prioritizing one of them. Add session.bug_compat_42 and session.bug_compat_warn which are enabled by default. The logic behind bug_compat_42: IF bug_compat_42 is on, and IF register_globals is off, and IF any value of $_SESSION["key"] is NULL, and IF there is a global variable $key, then $_SESSION["key"] is set to $key. The extension emits this warning once per script, unless told otherwise. "Your script possibly relies on a session side-effect which existed until PHP 4.2.3. Please be advised that the session extension does not consider global variables as a source of data, unless register_globals is enabled. You can disable this functionality and this warning by setting session.bug_compat_42 or session.bug_compat_warn. 2002-10-03 Yasuo Ohgaki <yohgaki@ohgaki.net> * main/output.c: Made some functions inline. Added static for unexported functions. * NEWS: Rename pg_data_seek() to pg_result_seek(). Give a correct credit for Marcus and Wez. * ext/mysql/php_mysql.c ext/pgsql/pgsql.c ext/pgsql/php_pgsql.h: Rename pg_data_seek() to pg_result_seek(). Added mysql_result_seek() which is alias of mysql_data_seek(). * main/output.c main/php_output.h ext/standard/basic_functions.c: Added ob_get_clean() and ob_get_flush(). Someone requested this feature before. 2002-10-03 Ilia Alshanetsky <ilia@prohost.org> * sapi/apache2filter/php_functions.c: Added missing TSRMLS_DC to php_apache_lookup_uri() 2002-10-02 David Reid <dreid@jetnet.co.uk> * ext/standard/file.c: Add more BeOS support... * main/safe_mode.c: Add some more BeOS support. 2002-10-02 Daniela Mariaschi <mariaschi@libero.it> * ext/interbase/interbase.c: syntax to avoid error while reading data from file in ibase_blob_import 2002-10-02 Jani Taskinen <sniper@iki.fi> * NEWS: stylissimo * tests/lang/.cvsignore tests/strings/.cvsignore pear/tests/.cvsignore tests/.cvsignore tests/basic/.cvsignore tests/classes/.cvsignore tests/func/.cvsignore ext/sysvmsg/tests/.cvsignore ext/xml/tests/.cvsignore ext/xslt/tests/.cvsignore ext/zip/tests/.cvsignore ext/zlib/tests/.cvsignore pear/Console/tests/.cvsignore ext/standard/tests/strings/.cvsignore ext/standard/tests/time/.cvsignore ext/standard/tests/versioning/.cvsignore ext/standard/tests/general_functions/.cvsignore ext/standard/tests/math/.cvsignore ext/standard/tests/reg/.cvsignore ext/standard/tests/serialize/.cvsignore ext/standard/tests/.cvsignore ext/standard/tests/aggregation/.cvsignore ext/standard/tests/array/.cvsignore ext/standard/tests/assert/.cvsignore ext/standard/tests/file/.cvsignore ext/pspell/tests/.cvsignore ext/session/tests/.cvsignore ext/skeleton/tests/.cvsignore ext/ncurses/tests/.cvsignore ext/openssl/tests/.cvsignore ext/pcntl/tests/.cvsignore ext/pgsql/tests/.cvsignore ext/iconv/tests/.cvsignore ext/interbase/tests/.cvsignore ext/mbstring/tests/.cvsignore ext/mcrypt/tests/.cvsignore ext/mcve/tests/.cvsignore ext/dbx/tests/.cvsignore ext/dio/tests/.cvsignore ext/domxml/tests/.cvsignore ext/exif/tests/.cvsignore ext/gmp/tests/.cvsignore ext/bz2/tests/.cvsignore ext/crack/tests/.cvsignore ext/ctype/tests/.cvsignore ext/cybermut/tests/.cvsignore ext/db/tests/.cvsignore run-tests.php: unify these files to conform with the new files created by run-tests.php 2002-10-02 Sascha Schumann <sascha@schumann.cx> * ext/session/session.c: Fix harmless memory leaks and simplify track_vars_init. 2002-10-02 Ilia Alshanetsky <ilia@prohost.org> * NEWS: Notes about additions to Apache 2 sapi. 2002-10-02 Stig Bakken <ssb@fast.no> * pear/package-PEAR.xml: * we're releasing 1.0 along with PHP 4.3, so this is 1.0RC1 * pear/PEAR/Command/Remote.php pear/PEAR/Common.php pear/PEAR/Remote.php: * add support for http proxy authorization (thanks Arnaud) 2002-10-02 Ilia Alshanetsky <ilia@prohost.org> * sapi/apache2filter/php_functions.c: Added apache_response_headers(), apache_note(), apache_getenv() and apache_setenv() functions. The getallheaders() is renamed to apache_request_headers() and an getallheaders() is aliased to it. Added a better error reporting mechanism to apache_lookup_uri() and virtual(). 2002-10-02 Andrey Hristov <andrey@webgate.bg> * ext/standard/string.c ext/standard/tests/strings/002.phpt: Making strrchr() binary safe. Test case added. * ext/standard/string.c: Making strstr() binary safe. * ext/standard/string.c: Ws fix. Forgot to add this in the previous commit. * ext/standard/string.c: ws fixes. 2002-10-02 Derick Rethans <d.rethans@jdimedia.nl> * ext/curl/curl.c: - Added CURLOPT_FTP_USE_EPSV option. (Patch by Alex Howansky <alex@wankwood.com>) 2002-10-02 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * NEWS: Better... * main/output.c NEWS: Fix implicit_flush * main/output.c: Modified get_status(): Display chunk_size allways and size which is in most cases initial_size as well as block_size only when used. * ext/zlib/zlib.c main/output.c: Revisted Wez patch: chunk_size 0 means cahce the whole output. So we must apply the default before calling php_enable_output_compression(). I have left the default setting in the rinit function even though i do think it is not necessary. 2002-10-02 Colin Viebrock <colin@easydns.com> * ext/standard/info.c: Fix for SRM module (and maybe others). Header rows are now not HTML escaped, so make sure you do this yourself in the modules. 2002-10-02 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * main/streams.c: Another missing variable init * main/streams.c: Missing variable init 2002-10-02 Harald Radi <harald.radi+coding.php@nme.at> * ext/com/COM.c: fixes bugs #19156 and #19544 2002-10-02 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * acinclude.m4 configure.in: Check for C99 conformance of snprintf. 2002-10-02 Sascha Schumann <sascha@schumann.cx> * acinclude.m4: Another Linux x86 system returns ELIMIT so we need to check errno as well before assuming that pread/pwrite work. * NEWS: Reflect actual stance wrt cli/cgi 2002-10-02 Yasuo Ohgaki <yohgaki@ohgaki.net> * ext/pgsql/pgsql.c: Fixed pg_escape_typea() * ext/pgsql/pgsql.c: Clean up a little. 2002-10-02 Sascha Schumann <sascha@schumann.cx> * ext/session/config.m4 ext/session/mod_files.c acinclude.m4: The pread/pwrite macros check for a bug in the Linux glibc now. The bug causes the kernel not to return -1/EAGAIN. The new test case has been borrowed from the Linux Test Project. This also fixes a bug which apparently caused HAVE_PREAD/WRITE to be defined even if the more complex checks failed (ac_cv_func_NAME=no was set albeit with no difference). 2002-10-02 Yasuo Ohgaki <yohgaki@ohgaki.net> * tests/func/006.phpt: Improve test to show output bufferring bypass bug clearly. * ext/pgsql/pgsql.c NEWS: Added pg_unescape_bytea(). Fixed pg_data_seek(). php_pgsql_unescape_bytea(PQunescapeBytea) is shamelessly stolen from PostgreSQL 7.3 :) * ext/pgsql/mysql_users.php: Add some example functions for mysql users. * NEWS: pg_data_seek() * ext/pgsql/php_pgsql.h ext/pgsql/pgsql.c: Added pg_data_seek(). pg_result_seek() woudl be better name, but there is mysql_data_seek()... * ext/pgsql/pgsql.c ext/pgsql/php_pgsql.h NEWS: Added pg_ping() * ext/pgsql/php_pgsql.h ext/pgsql/tests/11pg_meta_data.phpt ext/pgsql/tests/11pg_metadata.phpt ext/pgsql/tests/pg_meta_data.inc ext/pgsql/tests/pg_metadata.inc NEWS ext/pgsql/pgsql.c: Rename pg_metadata() to pg_meta_data() to confirm naming standard 2002-10-02 Jani Taskinen <sniper@iki.fi> * run-tests.php: - Run ext/* tests only for those modules that are actually compiled into the php binary. (faster) - Skip search of .phpt files if they are passed as parameters 2002-10-01 Stefan Esser <s.esser@e-matters.de> * ext/standard/filestat.c: repairing the chaos utime("filename", NULL) is not only valid but a MUST on linux if you are not the owner... 2002-10-01 Sascha Schumann <sascha@schumann.cx> * ext/session/mod_files.c: Disable pread/pwrite for now until we can clarify why it should be impossible to write a check for a broken OS feature. * ext/session/php_session.h ext/session/session.c: The session extension ensures now that get_session_var can rely on the state of $_SESSION/$HTTP_SESSION_VARS. It does not look up symbols in the global symbol table anymore. This was achieved by actually planting references between every $_SESSION["x"] and $x, not only when restoring a session, but also when registering a session variable (in a register_globals=1 context). Upon registering a new variable, this memory leak continues to show up, regardless of register_globals. ext/session/session.c(272) : Freeing 0x0818F01C (12 bytes), script=test Obviously, the newly allocated empty zval is not properly freed. If anyone has any idea on how to fix that, please step forward. 2002-10-01 Yasuo Ohgaki <yohgaki@ohgaki.net> * tests/lang/031.phpt: WS and added missing output. It seems this bug is fixed in latest version at least. * main/output.c: FMH. Implicit flush. * main/output.c: MFH 2002-10-01 Zeev Suraski <zeev@zend.com> * ext/mbstring/php_unicode.c: Fix warnings 2002-10-01 Yasuo Ohgaki <yohgaki@ohgaki.net> * NEWS: Bug fix * main/output.c: Fixed bug #17825. Double zval_ptr_dtor(). * NEWS: Implicit flush fix 2002-10-01 Jani Taskinen <sniper@iki.fi> * configure.in: - Revert the removal of dlopen check here. 2002-10-01 Yasuo Ohgaki <yohgaki@ohgaki.net> * main/output.c: Fixed implicit flush. 2002-10-01 Jani Taskinen <sniper@iki.fi> * ext/standard/config.m4 configure.in: - Removed unnecessary dlopen checks. (this is done in Zend.m4 already) * NEWS: some typos fixed.. 2002-09-30 Yasuo Ohgaki <yohgaki@ohgaki.net> * main/output.c: Users can shoot themselves by their own output handler always. Therefore, this check is overkill and it should be documented limitation, IMO. Anyway, a little optimization. 2002-09-30 David Reid <dreid@jetnet.co.uk> * ext/standard/config.m4: Use the built in autoconf test for fnmatch. Simply using the AC_CHECK_FUNCS seems to give false positives on beos and reading the comments on other systems as well. 2002-09-30 Wez Furlong <wez.php@thebrainroom.net> * ext/session/mod_files.c: Add header file required for pread/pwrite (on my system at least). * ext/zlib/zlib.c main/output.c: Fix infinite recursion bug when using zlib output compression. Cause: the chunk size is taken from the zlib.output_compression setting, which is 0 or 1. This causes the block_size for output buffer to be set to 0 (1 / 2) and thus causes infinite recursion in php_ob_allocate(). Solution: use a value of 0 for the chunk size which will use the default sizes. Also add a sanity check which will default the block_size to 1 if it ends up as 0. 2002-09-30 Edin Kadribasic <edink@proventum.net> * sapi/cgi/.cvsignore: Those can be safely ignored. 2002-09-30 Derick Rethans <d.rethans@jdimedia.nl> * ext/overload/php_overload.h: - Fix ZE2 build when overload is enabled 2002-09-30 Yasuo Ohgaki <yohgaki@ohgaki.net> * NEWS: Fixed typo. 2002-09-30 Uwe Steinmann <uwe@steinmann.cx> * ext/hyperwave/hw.c: - make_objrec_from_array() gets a second parameter to handle key/pairs of the form key=value and key:value. - Proper treatment of the attribute SQLStmt 2002-09-30 Yasuo Ohgaki <yohgaki@ohgaki.net> * Makefile.global: Remove space * ext/pgsql/pgsql.c ext/pgsql/php_pgsql.h: Added pg_fetch_assoc(). Fixed proto. Added/fixed comments. 2002-09-30 Wez Furlong <wez.php@thebrainroom.net> * NEWS: Even better. * NEWS: Slight grammar fix. 2002-09-30 Yasuo Ohgaki <yohgaki@ohgaki.net> * NEWS: Consolidate some entries. * NEWS: Fixed my name :) * NEWS: Added pg_fetch_assoc() * ext/pgsql/pgsql.c: Use PGSQL_CONV_FORCE_NULL as it is supposed. PGSQL_CONV_FORCE_NULL inserts NULL to field instead of NULL string for string type tuples. * ext/pgsql/pgsql.c: Use of PGSQL_CONV_INGORE_NOT_NULL as it is supposed. Change comment a little. 2002-09-30 Tim Toohey <php@toowards.com> * ext/gd/libgd/gd.c: fix gdImageCopyResampled() for non-constant alpha layer 2002-09-30 Derick Rethans <d.rethans@jdimedia.nl> * NEWS: - Rewording 2002-09-30 Sascha Schumann <sascha@schumann.cx> * ext/standard/url_scanner_ex.c: sync * ext/standard/url_scanner_ex.re: Fix my stupid mistake which broke <form> handling * Makefile.global: Apparently, Solaris 2.6's find is overwhelmed with more than 2 -names per invocation (add some parantheses and it segfaults). And thus, we split the clean target up. 2002-09-30 Yasuo Ohgaki <yohgaki@ohgaki.net> * ext/pgsql/pgsql.c: Fix TODO desc * ext/pgsql/pgsql.c: Remove unused def. Add TODO. * ext/pgsql/pgsql.c: Improve error message. Fix proto. 2002-09-30 Jon Parise <jon@csh.rit.edu> * ext/standard/basic_functions.h ext/standard/basic_functions.c: - Added getopt() for parsing command line options and arguments. 2002-09-30 Jason Greene <jason@inetgurus.net> * ext/sockets/php_sockets.h ext/sockets/sockets.c: Fix thread safety issue 2002-09-30 Yasuo Ohgaki <yohgaki@ohgaki.net> * NEWS: Added warning for CLI and CGI SAPI changes. Fixed wrong description for 4.2.0. 2002-09-30 Sascha Schumann <sascha@schumann.cx> * acinclude.m4: remove unused lines 2002-09-29 Wez Furlong <wez.php@thebrainroom.net> * ext/ncurses/ncurses_functions.c: Prevent possible problems with two resource ids referencing the same panel. 2002-09-29 Jani Taskinen <sniper@iki.fi> * sapi/nsapi/config.m4: Possible fix for #19290 2002-09-29 Ilia Alshanetsky <ilia@prohost.org> * main/main.c: Fixed a mem leak inside the path resolving code. 2002-09-29 Markus Fischer <mfischer@guru.josefine.at> * NEWS: - Update 2002-09-29 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/tests/math/floorceil.phpt: Removed the ceil(-0.5); test. The return value is depedant on system's libc and even when proper value '-0' is returned, var_dump() converts it to 0 anyway. 2002-09-29 Jani Taskinen <sniper@iki.fi> * ext/session/session.c main/main.c: ws fix 2002-09-29 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/tests/math/floorceil.phpt: Corrected ceil(-0.5) output value, it is 0 not -0. 2002-09-29 Jani Taskinen <sniper@iki.fi> * ext/fribidi/fribidi.c: Make it compile with the latest _release_ too.. 2002-09-29 Ilia Alshanetsky <ilia@prohost.org> * ext/session/session.c: Fixed a crash, which would occur when save_handler is invalid. 2002-09-29 Sascha Schumann <sascha@schumann.cx> * Makefile.global: Fix some typos * sapi/fastcgi/Makefile.frag sapi/fastcgi/config.m4 win32/phpembed.dsp main/php_embed.c main/php_embed.h sapi/cgi/Makefile.frag sapi/cgi/config.m4 sapi/cli/Makefile.frag sapi/cli/config.m4 sapi/embed/config.m4 sapi/embed/php_embed.c sapi/embed/php_embed.h Makefile.global acinclude.m4 configure.in: Follow Yasuo's suggestion and build sapi program's under the sapi-specific directory. Move sapi-specific makefile fragments to their respective directory. Create an embed sapi module which resides in its own dir now. 2002-09-29 Ilia Alshanetsky <ilia@prohost.org> * ext/session/session.c: Fixed bug #17281 * ext/session/session.c: Fixed bugs #16995 and #19392 * NEWS: Bug fixing news. * ext/gd/libgd/gd.c: Fixed bug #19366 2002-09-29 Derick Rethans <d.rethans@jdimedia.nl> * main/php_embed.c main/php_embed.h: - Fix Edin's name 2002-09-29 Edin Kadribasic <edink@proventum.net> * main/php_embed.c main/php_embed.h win32/phpembed.dsp Makefile.global configure.in: Added php/embed toolkit for embedding PHP engine into C/C++ applications. See my post to php-dev on the subject. 2002-09-28 Ilia Alshanetsky <ilia@prohost.org> * NEWS: Bug fixing news 2002-09-28 Wez Furlong <wez.php@thebrainroom.net> * ext/ncurses/ncurses_fe.c ext/ncurses/ncurses_functions.c ext/ncurses/php_ncurses_fe.h: Added ncurses_getyx(). * NEWS: WS * NEWS: More streams related news. * ext/standard/file.c ext/standard/file.h ext/standard/http_fopen_wrapper.c ext/standard/tests/file/userstreams.phpt main/user_streams.c ext/standard/basic_functions.c: Rename streams functions to fit with naming conventions, adding aliases for old functions where required. Make use of recent changes to chunk size and timeout setting code. * main/network.c main/php_network.h: remove chunk size setting code (it's now in streams.c). Move timeout setting code. * main/php_streams.h main/streams.c: Differentiate between write buffer and streams read buffer sizes. Add options for timeout and chunk size; previously these were only set-able for socket streams. 2002-09-28 Stig Bakken <ssb@fast.no> * pear/scripts/php-config.in: * added --libs option 2002-09-28 Ilia Alshanetsky <ilia@prohost.org> * main/main.c: Fixed bug #13936 2002-09-28 Sergey Kartashoff <gluke@biosys.net> * ext/mnogosearch/CREDITS ext/mnogosearch/php_mnogo.c: - Site mirror detection and popularity rank has been added to mnogosearch extension 2002-09-28 Wez Furlong <wez.php@thebrainroom.net> * ext/ncurses/ncurses_functions.c: Fix crash bug and return value. 2002-09-28 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * main/fopen_wrappers.c: MFH fix for bug 19292 * main/fopen_wrappers.c: Uh, this is what I meant to do. Fix for #19292 * main/fopen_wrappers.c: Probable fix for bug #19292 2002-09-28 Tal Peer <tal@twisthost.com> * ext/fribidi/fribidi.c: - Eliminated LFs 2002-09-28 James Moore <James@phpuk.org> * ext/fribidi/fribidi.c: Make ext/fribidi compile against latest fribidi CVS 2002-09-28 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/iconv/tests/002.phpt: Synch with README.TESTING 2002-09-28 Wez Furlong <wez.php@thebrainroom.net> * main/php_streams.h main/streams.c main/user_streams.c: Allow user streams/wrappers to implement fstat(), opendir() and stat(). * ext/standard/file.c: Add missing folding marker. 2002-09-28 Derick Rethans <d.rethans@jdimedia.nl> * NEWS: - Consistency 2002-09-28 Yasuo Ohgaki <yohgaki@ohgaki.net> * ext/standard/dir.c: It must be GLOB_NOCHECK instead of GLOB_NOMATCH. GLOB_NOMATCH does not make sense at all. 2002-09-28 Markus Fischer <mfischer@guru.josefine.at> * NEWS: - Don't forget whom to blame ... ;) 2002-09-27 Wez Furlong <wez.php@thebrainroom.net> * ext/standard/basic_functions.c ext/standard/file.c ext/standard/file.h: Implement stream_select() which works just like socket_select, but only on streams. * ext/ncurses/ncurses.c ext/ncurses/ncurses_fe.c ext/ncurses/ncurses_functions.c ext/ncurses/php_ncurses.h ext/ncurses/php_ncurses_fe.h: More ncurses functions and constants. * ext/ncurses/config.m4 ext/ncurses/ncurses.c ext/ncurses/ncurses_fe.c ext/ncurses/ncurses_functions.c ext/ncurses/php_ncurses.h ext/ncurses/php_ncurses_fe.h: Implement some more window routines, add pad functions. Add panel functions when libpanel is also detected. Register STDSCR constant during ncurses_init(). 2002-09-27 Colin Viebrock <colin@easydns.com> * ext/standard/info.c: fix formating by breaking on to separate lines 2002-09-27 Edin Kadribasic <edink@proventum.net> * ext/gd/gd.dsp ext/gd/gd_bundled.dsp: (Edin) Fixed bug #19595 (Missing functions for GD2 format handling). 2002-09-27 Jani Taskinen <sniper@iki.fi> * ext/standard/dir.c: ws 2002-09-27 Hartmut Holzgraefe <hartmut@six.de> * ext/standard/dir.c: /tmp/cvsmLUuXQ 2002-09-27 Edin Kadribasic <edink@proventum.net> * ext/standard/credits_ext.h ext/standard/credits_sapi.h: Update credits. * sapi/cli/CREDITS: Those two have enough credits already :) 2002-09-27 Tal Peer <tal@twisthost.com> * ext/fribidi/CREDITS: - Fixed case in extension name 2002-09-27 Jani Taskinen <sniper@iki.fi> * NEWS: style polizei 2002-09-27 Yasuo Ohgaki <yohgaki@ohgaki.net> * ext/standard/dir.c: No need to define GLOB_NOMATCH. 2002-09-27 Derick Rethans <d.rethans@jdimedia.nl> * ext/ldap/config.m4: - Fix for bug #19633 (wrong directories in ext/ldap/config.m4). - Fix for bug #19633 (wrong directories in ext/ldap/config.m4). 2002-09-27 Wez Furlong <wez.php@thebrainroom.net> * ext/sysvsem/sysvsem.c: Really *really* fix the segfault bug #17274 and bug #19627 this time. 2002-09-27 Jan Lehnardt <jan@dasmoped.net> * ext/standard/info.c: - be more conservative ;) 2002-09-27 Wez Furlong <wez.php@thebrainroom.net> * NEWS: And a couple more. * NEWS: Add some bug #'s to make Markus happier :-) * EXTENSIONS: Typo 2002-09-27 Markus Fischer <mfischer@guru.josefine.at> * NEWS: - Update. 2002-09-27 Dan Kalowsky <dank@deadmime.org> * EXTENSIONS: They seem to be working... 2002-09-26 Colin Viebrock <colin@easydns.com> * NEWS: document changes 2002-09-26 Derick Rethans <d.rethans@jdimedia.nl> * win32/install.txt: - Added Sambar install notes (patch by Steffen <com@sambarserver.info>) 2002-09-26 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/standard/credits.c ext/standard/info.c ext/standard/info.h: Fix ZTS build. 2002-09-26 Colin Viebrock <colin@easydns.com> * ext/standard/info.h ext/standard/credits.c ext/standard/info.c: update credits page with proper HTML, fix HTML escaping, and a few tweaks 2002-09-26 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/standard/string.c: Fix warning. * ext/standard/html.c ext/standard/html.h ext/wddx/php_wddx_api.h ext/wddx/wddx.c: Fix ZTS build. 2002-09-26 Ilia Alshanetsky <ilia@prohost.org> * ext/session/session.c: Fixed bug #11643 2002-09-26 Colin Viebrock <colin@easydns.com> * sapi/apache/php_apache.c ext/standard/css.c ext/standard/info.c main/php_ini.c sapi/aolserver/aolserver.c: fix phpinfo() output for better browser BC 2002-09-26 Jani Taskinen <sniper@iki.fi> * ext/session/session.c: Fix bug: #14991 (changing session.use_trans_sid does not work in scripts) 2002-09-26 Wez Furlong <wez.php@thebrainroom.net> * main/streams.c: Fix for #19580. (Incorrectly warning about lost data when that is not the case on systems without fopencookie). * ext/standard/html.c: Emit a warning when an unsupported charset is requested in htmlentities. Fixed #18521. 2002-09-26 Jani Taskinen <sniper@iki.fi> * NEWS: style,consistency.. 2002-09-26 Derick Rethans <d.rethans@jdimedia.nl> * NEWS: - Cleaning up 2002-09-26 Tal Peer <tal@twisthost.com> * ext/fribidi/fribidi.c: - Fixed fatal error 2002-09-26 Wez Furlong <wez.php@thebrainroom.net> * ext/standard/file.h main/streams.c main/user_streams.c ext/standard/file.c: Fix segfault in wrapper error log mechanism when errors are logged on second and subsequent events. Implement very simple recursion protection for user streams written like this: class urlEncodeStream { var $fp = NULL; function stream_open($path, $mode, $options, &$opened_path) { $this->fp = fopen($path, $mode); // <-- this recurses infinitely return is_resource($this->fp); } } file_register_wrapper('urlencode', 'urlEncodeStream'); $fp = fopen('urlencode:///tmp/outputfile.txt', 'w'); Noticed by: Yasuo. 2002-09-26 Jan Lehnardt <jan@dasmoped.net> * ext/standard/dir.c: - GLOB_NOMATCH and GLOB_NOESCAPE are only defined in win32/glob.h - fixes build on FreeBSD 4.6 2002-09-26 Tal Peer <tal@twisthost.com> * ext/fribidi/README ext/fribidi/fribidi.c: - Reverted back to old param parsing api (and eliminated a segfault by doing that) - Added the CapRTL charset -- should be used for testing on machines without Hebrew/Arabic/Persian fonts - Changed the note about deprecated behaviour from E_WARNING to E_NOTICE 2002-09-26 Wez Furlong <wez.php@thebrainroom.net> * ext/standard/http_fopen_wrapper.c ext/standard/file.c ext/standard/file.h: Remove an unused variable and a now-unused function. * ext/bz2/bz2.c ext/standard/file.h ext/standard/ftp_fopen_wrapper.c ext/standard/http_fopen_wrapper.c ext/standard/php_fopen_wrapper.c ext/zlib/zlib_fopen_wrapper.c main/php_streams.h ext/standard/basic_functions.c ext/standard/file.c: Rename file_get_wrapper_data -> file_get_meta_data. It now always returns useful information for all streams. Unified that data with socket_get_status and made socket_get_status an alias for file_get_meta_data. Fix Location header following which was broken in this commit: http://cvs.php.net/diff.php/php4/ext/standard/http_fopen_wrapper.c?r1=1.41&r2=1.42&ty=h 2002-09-26 Yasuo Ohgaki <yohgaki@ohgaki.net> * ext/standard/dir.c: Remove dup 2002-09-26 Hartmut Holzgraefe <hartmut@six.de> * EXTENSIONS: temporarily giving some orphands a new home 2002-09-26 Georg Richter <georg.richter@phpev.de> * EXTENSIONS: maintainers for the famous mysql extension 2002-09-26 Markus Fischer <mfischer@guru.josefine.at> * NEWS: - Add missing bug fixes. 2002-09-26 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/standard/dir.c: Fix ZTS build. Fix warning. 2002-09-26 Hartmut Holzgraefe <hartmut@six.de> * ext/standard/dir.c: fix windows build 2002-09-26 Markus Fischer <mfischer@guru.josefine.at> * php.ini-recommended: - Merge url_rewriter.tags description from Sascha. 2002-09-26 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/mbstring/mbstring.dsp win32/php4dll.dsp win32/php4dllts.dsp: Sync MSVC project files. 2002-09-26 Tal Peer <tal@twisthost.com> * ext/fribidi/EXPERIMENTAL: - Initial commit 2002-09-26 Wez Furlong <wez.php@thebrainroom.net> * NEWS: Note that the GD functions now also work with remote files. * ext/mbstring/config.m4 ext/mbstring/mbstring.c ext/mbstring/mbstring.h ext/mbstring/php_unicode.c ext/mbstring/php_unicode.h ext/mbstring/unicode_data.h: (PHP mb_convert_case) Add function that will convert the case of a string Respecting it's encoding (or the internal encoding). 2002-09-26 Hartmut Holzgraefe <hartmut@six.de> * ext/standard/dir.c: glob should now be ZTS/open_basedir/safe_mode aware (finally) * ext/standard/file.c: symbolic constants for fnmatch flags added 2002-09-25 Yasuo Ohgaki <yohgaki@ohgaki.net> * php.ini-dist: on -> On * php.ini-recommended: Merge changes from php.ini-dist 2002-09-25 Sascha Schumann <sascha@schumann.cx> * ext/ircg/ircg.c: Add support for LIST 2002-09-25 Andrey Hristov <andrey@webgate.bg> * ext/standard/tests/strings/001.phpt: Test case for strspn()/strcspn(). * ext/standard/string.c: Added common handler for strspn() and strcspn(). Almost of the code is identical. Modified to accept up to 4 params. Last 2 optional start & len. They are analogic to start & len of substr(). So the behavior when start & len are used is like strspn(substr($s,$start,$len),$good_chars) and strcspn(substr($s,$start,$len), $bad_chars) 2002-09-25 Sascha Schumann <sascha@schumann.cx> * php.ini-dist: add note about url_rewriter.tags 2002-09-25 Andrey Hristov <andrey@webgate.bg> * ext/standard/basic_functions.c ext/standard/php_string.h ext/standard/string.c: str_shuffle() function added. Like shuffle() for arrays - however the algorithm for creating the permutation is quite simple. More like the implementation of shuffle() for 4.2.1 . 2002-09-25 Andrei Zmievski <andrei@php.net> * ext/standard/reg.h: *** empty log message *** 2002-09-25 Martin Jansen <mail@martin-jansen.de> * pear/PEAR.php: * Fix bug #19269. This patch makes popErrorHandling() pop the first _two_ elements from the error handler stack to prevent un-necessary memory consumption. 2002-09-25 Sterling Hughes <sterling@bumblebury.com> * EXTENSIONS: add two extensions - and orphan them. 2002-09-25 Sascha Schumann <sascha@schumann.cx> * NEWS main/main.c php.ini-dist: We are about to enter 2003, sending two-digit years does not make too much sense anymore. According to an article from '98, only Netscape 3.x was affected anyway. * EXTENSIONS NEWS: style police 2002-09-25 Wez Furlong <wez.php@thebrainroom.net> * ext/standard/exec.c ext/standard/file.c ext/posix/posix.c ext/recode/recode.c ext/interbase/interbase.c ext/ming/ming.c ext/pdf/pdf.c ext/bz2/bz2.c ext/ftp/php_ftp.c: Make these all work with persistent streams too. * main/main.c main/network.c main/php.h main/php_network.h main/php_streams.h main/streams.c ext/standard/basic_functions.c ext/standard/file.c ext/standard/file.h ext/standard/fsock.c: Implement persistent streams. (for pfsockopen). Juggle some includes/definitions. Tidy up streams use in ext/standard/file.c 2002-09-25 Sterling Hughes <sterling@bumblebury.com> * EXTENSIONS: if this makes people happier about me not working on these anymore, so be it :) 2002-09-25 Andrei Zmievski <andrei@php.net> * ext/standard/reg.c ext/standard/reg.h: Fix bug #17570. 2002-09-25 Tal Peer <tal@twisthost.com> * ext/fribidi/fribidi.c: - Update proto 2002-09-25 Ilia Alshanetsky <ilia@prohost.org> * ext/session/session.c: Fixed bugs #18167 & #16859 2002-09-25 Sascha Schumann <sascha@schumann.cx> * ext/session/mod_files.c: Improve error messages 2002-09-25 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/datetime.c: prevent segv on Windows with negative localtime values. 2002-09-25 Sascha Schumann <sascha@schumann.cx> * ext/standard/url_scanner_ex.c: Sync * ext/standard/url_scanner_ex.re: Allow - as part of an attribute PR: #19573 * php.ini-dist ext/standard/url_scanner_ex.re: Fix #13472 by making it possible to append the <input> stuff after <fieldset> for xhtml compliance. * ext/standard/url_scanner_ex.c: Sync with .re * ext/standard/url_scanner_ex.re: Allow malformed HTML such as <a onClick=window.open("/hardware/somevar.php?hinfoid=","chgti") ..> where ["'] are part of the attribute value. 2002-09-24 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/reg.c: Fixed bug #17957 2002-09-24 Zeev Suraski <zeev@zend.com> * ext/standard/basic_functions.c: Fix indirection 2002-09-24 Wez Furlong <wez.php@thebrainroom.net> * ext/standard/html.c: Fix for #19570: last character in translation table is omitted. 2002-09-24 Sascha Schumann <sascha@schumann.cx> * ext/mime_magic/mime_magic.c: Fix typo * ext/mime_magic/config.m4: Replace underscores with dashes in --enable-mime-magic 2002-09-24 Wez Furlong <wez.php@thebrainroom.net> * ext/standard/file.c: Fix EOL markers for file() so that Mac EOL work correctly. 2002-09-23 Jani Taskinen <sniper@iki.fi> * NEWS: yadda yadda.. 2002-09-23 Wez Furlong <wez.php@thebrainroom.net> * main/streams.c: Correct a buglet in the newly introduced buffer code. 2002-09-23 Jani Taskinen <sniper@iki.fi> * ext/ldap/ldap.c: MFH: fix for bug #17915 2002-09-23 Tal Peer <tal@twisthost.com> * ext/fribidi/fribidi.c: - Fixed build on Win32 (and made the ext use a newer API) - Various CS fixes - Converted the parameter parsing to the new API 2002-09-23 Wez Furlong <wez.php@thebrainroom.net> * NEWS: include(URL). * main/streams.c: Ensure that the seekable stream returned for include("http://") under win32 is based on a temporary file rather than a memory stream. * main/php_streams.h: Enable include("http://....") under win32 by downloading to a temporary stream so that flex will get on nicely with the content. 2002-09-23 Ilia Alshanetsky <ilia@prohost.org> * sapi/apache2filter/php_apache.h sapi/apache2filter/sapi_apache2.c: Fixed bug #17466 2002-09-23 Wez Furlong <wez.php@thebrainroom.net> * NEWS: Reflect recent streams changes. * main/user_streams.c: Remove allow_url_fopen checks from the user streams code. Rationale: user streams might not be implementing network access, and the administrator can disable the file_register_wrapper function and other network access functions if s/he does not want to allow this functionality. * ext/standard/file.h: WS * main/streams.c ext/standard/basic_functions.h ext/standard/file.c ext/standard/file.h ext/standard/http_fopen_wrapper.c main/network.c php.ini-dist php.ini-recommended: Implement a default_socket_timeout and auto_detect_line_endings ini options. Also move user_agent from BG to FG. 2002-09-23 David Reid <dreid@jetnet.co.uk> * sapi/apache2filter/config.m4: Allow this to build on beos with it's bizarre linking. 2002-09-23 Wez Furlong <wez.php@thebrainroom.net> * ext/standard/basic_functions.c: basic_functions.c 2002-09-23 Sascha Schumann <sascha@schumann.cx> * sapi/thttpd/thttpd_patch: Force /nocache/ entities to be delivered completely, even if a broken proxy ignores our anti-cache headers and sends an IMS request. 2002-09-23 Wez Furlong <wez.php@thebrainroom.net> * main/streams.c: Hopefully fix the other warnings that my last warning-fixing commit caused. 2002-09-23 Sascha Schumann <sascha@schumann.cx> * ext/standard/filestat.c: (PHP touch) Remove an extraneous time() call. Yasuo added this line in rev 1.90 for no apparent reason. 2002-09-23 Wez Furlong <wez.php@thebrainroom.net> * ext/ftp/ftp.c main/streams.c main/php_streams.h: fix some warnings. 2002-09-23 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/standard/string.c: Fix warning. 2002-09-23 Zeev Suraski <zeev@zend.com> * main/output.c: Fix bug #19525 2002-09-23 Sascha Schumann <sascha@schumann.cx> * ext/session/session.c: (php_get_session_var) Always return FAILURE if no data source was found. Noticed by: Sebastian Bergmann 2002-09-23 Wez Furlong <wez.php@thebrainroom.net> * ext/standard/tests/file/userstreams.phpt main/memory_streams.c main/php_streams.h main/streams.c main/user_streams.c: Revise buffer/seek code a little. Tidy up user streams even more. Make test case quite aggressive. 2002-09-23 Zeev Suraski <zeev@zend.com> * main/php_ini.c: Compat fix * sapi/cgi/cgi_main.c: We leak quite a few things intentionally, if you want to debug it - enable explicitly please.. 2002-09-23 Ilia Alshanetsky <ilia@prohost.org> * sapi/apache2filter/sapi_apache2.c: Fixed bug #17662 2002-09-23 Jason Greene <jason@inetgurus.net> * ext/sockets/sockets.c ext/sockets/win32_socket_constants.h: Implement contstants on win32 2002-09-23 Wez Furlong <wez.php@thebrainroom.net> * main/network.c main/php_network.h main/php_streams.h main/streams.c main/user_streams.c main/memory_streams.c ext/bz2/bz2.c ext/standard/file.c ext/standard/http_fopen_wrapper.c ext/standard/php_fopen_wrapper.c ext/zlib/zlib_fopen_wrapper.c ext/curl/curlstreams.c: Implement read buffering in streams. Eliminate similar code from network.c. Implement fgets equivalent at the streams level, which can detect the mac, dos and unix line endings and handle them appropriately. The default behaviour is unix (and dos) line endings. An ini option to control this behaviour will follow. 2002-09-23 Sascha Schumann <sascha@schumann.cx> * sapi/thttpd/thttpd.c: Use generic getnameinfo for address-to-name translation, if available. This adds support for IPv6 addresses. 2002-09-22 Ilia Alshanetsky <ilia@prohost.org> * main/fopen_wrappers.c: Fixed bug #19395 2002-09-22 Derick Rethans <d.rethans@jdimedia.nl> * ext/gd/gd_bundled.dsp: - update project file (no precompiled headers) * ext/standard/mail.c: - Unbreak build 2002-09-22 James Cox <james@blog.at> * ext/standard/mail.c: typo 2002-09-21 Sascha Schumann <sascha@schumann.cx> * ext/ircg/ircg.c ext/ircg/php_ircg.h: (PHP) Add ircg_eval_ecmascript_params This function turns a flat ecmascript parameter string, including escapes back into an array. 5-10 times speedup when compared to user implementation. 2002-09-21 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/ftp_fopen_wrapper.c: - Fix ZTS build 2002-09-21 Ilia Alshanetsky <ilia@prohost.org> * NEWS: news about various strip_tags() fixes. * ext/standard/tests/strings/strip_tags.phpt: Added a test script for strip_tags() function. * ext/standard/string.c: Fixed bug #7472 as well as many other bugs with strip_tags implementation. 2002-09-21 Sascha Schumann <sascha@schumann.cx> * sapi/thttpd/thttpd_patch: Immediately unmap /nocache/ entries, so that the mmc cache does not get polluted too much. 2002-09-21 Andrey Hristov <andrey@webgate.bg> * ext/standard/array.c: ws fixes. 2002-09-21 Ilia Alshanetsky <ilia@prohost.org> * sapi/apache/mod_php4.c: Fixed bug #15038, original patch by: phpman@toowards.com * ext/standard/datetime.c: Fixed bug #12934 locatime() now returns an error message when passed a negative value. 2002-09-21 Sascha Schumann <sascha@schumann.cx> * ext/standard/formatted_print.c: Add '+' modifier. + A sign (+ or -) always be placed before a number produced by a signed conversion. By default a sign is used only for negative numbers. A + overrides a space if both are used. 2002-09-21 Markus Fischer <mfischer@guru.josefine.at> * win32/sendmail.c: - Forgot to add an extra space. 2002-09-21 Andrey Hristov <andrey@webgate.bg> * ext/standard/tests/array/008.phpt: Test case for array_intersect() and array_intersect_assoc() * ext/standard/basic_functions.c ext/standard/php_array.h ext/standard/array.c: New function added - array_intersect_assoc() similar to array_intersect() but the keys are also used in the comparison. So the result is a subset of the result of array_intersect(). Test will be committed too. 2002-09-21 Tal Peer <tal@twisthost.com> * ext/fribidi/fribidi.c: Changed version from NO_VERSION_YET to 0.1 2002-09-21 Sascha Schumann <sascha@schumann.cx> * ext/session/session.c: Because track vars are always initialized, get_session_var failed to work in the register_globals=1 case. It is now possible again to store session variables in global vars. 2002-09-21 Zeev Suraski <zeev@zend.com> * sapi/apache2filter/php_apache.h sapi/apache2filter/php_functions.c sapi/apache2filter/sapi_apache2.c: Fix double initialization 2002-09-20 Derick Rethans <d.rethans@jdimedia.nl> * win32/php4ts_cli.rc win32/php4dllts.rc win32/php4ts.rc: - Fix line-endings - Changed afxres.h to winres.h to make it compile when MFC is not installed (see http://www.winprog.org/tutorial/errors.html, "Fatal error RC1015: cannot open include file 'afxres.h'.") 2002-09-20 Sander Roobol <phy@wanadoo.nl> * main/main.c: Changing the magic_quotes_gpc setting has no effect at USER level 2002-09-20 Jani Taskinen <sniper@iki.fi> * ext/yaz/config.m4: fix typo 2002-09-20 Martin Kraemer <Martin.Kraemer@fujitsu-siemens.com> * ext/cyrus/cyrus.c: Since the cyrus extension prints only one line, and no subsequent info, it should have a similar appearance as the other one-liners. Use php_info_print_table_row() instead of php_info_print_table_header(), as in the other extensions. 2002-09-20 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/string.c: Fixed bugs #12989 and #12120 2002-09-20 Sebastian Bergmann <sb@sebastian-bergmann.de> * win32/php4dll.dsp win32/php4dllts.dsp: Sync MSVC project files. 2002-09-20 Jani Taskinen <sniper@iki.fi> * ext/yaz/config.m4: Added check for yaz version into configure. 2002-09-20 Ilia Alshanetsky <ilia@prohost.org> * ext/gd/gd.c: Fixed bug #19487 2002-09-20 Jani Taskinen <sniper@iki.fi> * ext/gd/gd.c: MFH * ext/gd/gd.c: Added missing convert_to_* funcs. (should fix some crashes) 2002-09-19 Colin Viebrock <colin@easydns.com> * sapi/apache/php_apache.c ext/standard/config.m4 ext/standard/css.c ext/standard/css.h ext/standard/info.c main/php_ini.c sapi/aolserver/aolserver.c: Change phpinfo() to use CSS styling instead of HTML code. It doesn't render as nicely as it used to on older browsers, but it does result in smaller files, and opens the door to using your own CSS to style it differently. There is a patch to Zend/zend_ini.c, but I don't have enough Karma, so Derick has the patch. * ext/calendar/cal_unix.c ext/calendar/calendar.c ext/calendar/easter.c: change my email address 2002-09-19 Ilia Alshanetsky <ilia@prohost.org> * ext/sysvmsg/config.m4: Fixed bug #19504 Alligned 'Enable sysvmsg support' message. 2002-09-19 Derick Rethans <d.rethans@jdimedia.nl> * ext/exif/config.m4 ext/hwapi/config.m4 ext/mbstring/config.m4 ext/mime_magic/config.m4: - Align configure --help messages 2002-09-19 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/exec.c ext/standard/exec.h: Fixed bug #19313 Fixed argument count check for system/exec/passthru functions Added a check to system/exec/passthru functions to make sure execution parameter is not blank before attempting to execute it. * ext/standard/datetime.c: Fixed bug #19414 2002-09-19 Derick Rethans <d.rethans@jdimedia.nl> * EXTENSIONS: - Add fribidi extension * ext/imap/php_imap.c: - Fix typo 2002-09-19 Zeev Suraski <zeev@zend.com> * ext/standard/basic_functions.c: Fix the last part of bug #13982 (ignore_user_abort() settings were 'leaking' between requests) * main/main.c: Fix connection_status() 2002-09-19 Dan Kalowsky <dank@deadmime.org> * TODO: adding ODBC todo's 2002-09-19 Adam Dickmeiss <adam@indexdata.dk> * ext/yaz/php_yaz.c: Remove compatibility for old YAZ versions (use ZOOM API only) * ext/yaz/php_yaz.c: New option for yaz_connect: charset 2002-09-19 Sascha Schumann <sascha@schumann.cx> * ext/dba/config.m4 ext/dba/dba_cdb.c ext/dba/install_cdb.sh: Add support for cdb-0.75 The install_cdb.sh script fills the gap of installing header files and creating a cdb library which programs can link against. 2002-09-19 Dan Kalowsky <dank@deadmime.org> * ext/imap/php_imap.c: white space fix 2002-09-18 Zeev Suraski <zeev@zend.com> * win32/php4dllts.dsp: Fix debug build options (looks like VC doesn't maintain indentation in the .dsp... Sorry Sebastian :) * sapi/webjames/webjames.c sapi/roxen/roxen.c sapi/servlet/servlet.c sapi/thttpd/thttpd.c sapi/tux/php_tux.c sapi/nsapi/nsapi.c sapi/phttpd/phttpd.c sapi/pi3web/pi3web_sapi.c sapi/fastcgi/fastcgi.c sapi/isapi/php4isapi.c sapi/cgi/cgi_main.c sapi/cli/php_cli.c sapi/apache2filter/sapi_apache2.c sapi/caudium/caudium.c sapi/aolserver/aolserver.c sapi/apache/mod_php4.c sapi/apache2filter/php_functions.c main/main.c main/php_main.h sapi/activescript/php4activescript.c: another startup initialization fix - only ISAPI and CGI SAPI's tested, minor compile buglets might occur in other SAPIs, but should be trivial to fix... 2002-09-18 James Cox <james@blog.at> * ext/standard/info.c: white background please 2002-09-18 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/datetime.c: Fixed bug #19446 * ext/standard/image.c: Added additional handlers for compressed swf files, which require entire file to be downloaded for successful decompression. 2002-09-18 Dan Kalowsky <dank@deadmime.org> * ext/imap/php_imap.c: Patch for Bug #19402 provided by Kevin Way (kevin.way@overtone.org) 2002-09-18 Wez Furlong <wez.php@thebrainroom.net> * ext/standard/tests/file/userstreams.phpt main/user_streams.c: Tidy up some user stream code. Add a small test case (not yet complete). 2002-09-18 Hartmut Holzgraefe <hartmut@six.de> * ext/standard/string.c: setlocale() will now accept multiple locale arguments, first match wins 2002-09-17 Tal Peer <tal@kaktos.co.il> * ext/fribidi/fribidi.c: * ext/fribidi/README ext/fribidi/fribidi.c: * The second argument of fribidi_log2vis now accepts a constant. The old way (using strings) is still available but deprecated. 2002-09-17 Hartmut Holzgraefe <hartmut@six.de> * ext/standard/head.c: it should not only work for the failure case but also not fail (segfault) on the working case * ext/standard/basic_functions.c: stupid lino-typo .... :( * ext/standard/basic_functions.c ext/standard/head.c: headers_sent() may now return information about where output started using the optional $file and $line reference parameters 2002-09-17 Zeev Suraski <zeev@zend.com> * main/main.c: MFH * NEWS: Update NEWS * main/main.c: Call zend_post_startup() - use local copies of the function, class and constant tables in the startup thread 2002-09-16 Tal Peer <tal@kaktos.co.il> * ext/fribidi/CREDITS: oops. * ext/fribidi/CREDITS: Added myself 2002-09-16 Jani Taskinen <sniper@iki.fi> * NEWS: tuning * ext/fribidi/README ext/fribidi/config.m4 ext/fribidi/fribidi.c ext/fribidi/fribidi.php ext/fribidi/php_fribidi.h: - Require Fribidi 0.10.4 -> no more glib needed. - Cleaned up a bit. * sapi/isapi/php4isapi.c: Should fix #19425 2002-09-16 Anantha Kesari H Y <hyanantha@novell.com> * netware/phplib.imp: Updatation of symbols exported for NetWare 2002-09-15 Tal Peer <tal@kaktos.co.il> * ext/fribidi/fribidi.c: * More work on returning errors properly and freeing resources 2002-09-15 Sebastian Bergmann <sb@sebastian-bergmann.de> * win32/php4dllts.dsp: For a change, Sebastian makes Andi happy. :-) 2002-09-15 Tal Peer <tal@kaktos.co.il> * ext/fribidi/config.m4 ext/fribidi/fribidi.c ext/fribidi/php_fribidi.h: *Fixed compilation errors and enhanced the code 2002-09-15 Jon Parise <jon@csh.rit.edu> * ext/qtdom/config.m4: Line up the 'configure --help' output. 2002-09-15 Wez Furlong <wez.php@thebrainroom.net> * NEWS: PCRE news 2002-09-14 Wez Furlong <wez.php@thebrainroom.net> * ext/pcre/pcrelib/doc/pcregrep.txt ext/pcre/pcrelib/doc/pcretest.1 ext/pcre/pcrelib/doc/pcretest.html ext/pcre/pcrelib/doc/pcretest.txt ext/pcre/pcrelib/testdata/testinput1 ext/pcre/pcrelib/testdata/testinput2 ext/pcre/pcrelib/testdata/testinput6 ext/pcre/pcrelib/testdata/testoutput1 ext/pcre/pcrelib/testdata/testoutput2 ext/pcre/pcrelib/testdata/testoutput3 ext/pcre/pcrelib/testdata/testoutput4 ext/pcre/pcrelib/testdata/testoutput5 ext/pcre/pcrelib/testdata/testoutput6 ext/pcre/pcrelib/AUTHORS ext/pcre/pcrelib/COPYING ext/pcre/pcrelib/ChangeLog ext/pcre/pcrelib/LICENCE ext/pcre/pcrelib/NEWS ext/pcre/pcrelib/NON-UNIX-USE ext/pcre/pcrelib/README ext/pcre/pcrelib/RunTest ext/pcre/pcrelib/dftables.c ext/pcre/pcrelib/doc/Tech.Notes ext/pcre/pcrelib/doc/pcre.3 ext/pcre/pcrelib/doc/pcre.html ext/pcre/pcrelib/doc/pcre.txt ext/pcre/pcrelib/doc/pcregrep.1 ext/pcre/pcrelib/doc/pcregrep.html ext/pcre/pcrelib/get.c ext/pcre/pcrelib/internal.h ext/pcre/pcrelib/maketables.c ext/pcre/pcrelib/pcre.c ext/pcre/pcrelib/pcre.h ext/pcre/pcrelib/pcregrep.c ext/pcre/pcrelib/pcreposix.c ext/pcre/pcrelib/pcreposix.h ext/pcre/pcrelib/pcretest.c ext/pcre/pcrelib/study.c: Update bundled pcrelib to 3.9. 2002-09-14 Jan Lehnardt <jan@dasmoped.net> * ext/standard/http_fopen_wrapper.c: - fix typo in comment 2002-09-14 Andi Gutmans <andi@zend.com> * ext/standard/filestat.c: - Don't think we need the do { } while (0) here 2002-09-13 Andrei Zmievski <andrei@php.net> * pear/package-Console_Getopt.xml: Let's take Console_Getopt to stable release. 2002-09-13 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/file.c: Do not create the destination file, if opening of the source file failed during copy(). 2002-09-12 Stefan Esser <s.esser@e-matters.de> * ext/standard/fsock.c ext/standard/ftp_fopen_wrapper.c main/network.c main/php_network.h: made new ssl activate function the default. 2002-09-12 Jani Taskinen <sniper@iki.fi> * ext/gd/gd.c: ws fix 2002-09-12 Sebastian Bergmann <sb@sebastian-bergmann.de> * win32/php4dll.dsp win32/php4dllts.dsp: Meaningful Custom Build Step information. * win32/php4dll.dsp win32/php4dllts.dsp: Fix logic. 2002-09-12 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * README.TESTING: Update info and synch example test. 2002-09-12 Derick Rethans <d.rethans@jdimedia.nl> * ext/interbase/interbase.c ext/interbase/php_interbase.h: - Fixed linker error when HAVE_STRFTIME was not set 2002-09-12 Thies C. Arntzen <thies@thieso.net> * ext/oci8/php_oci8.h ext/oci8/oci8.c: - OCIResult() could return garbage if called on empty result-sets. (thies) 2002-09-12 Andrey Hristov <andrey@webgate.bg> * ext/standard/array.c: Fixing my zts fix. * ext/standard/array.c: Removed magic numbers about the behavior of php_array_diff - proposed by Andi and Jon Parise. 2002-09-11 Edin Kadribasic <edink@proventum.net> * ext/standard/filestat.c: My compiler likes it like this. * ext/standard/array.c: Fix ZTS build. 2002-09-11 Sterling Hughes <sterling@bumblebury.com> * ext/swf/swf.c: virtual filepath fix, don't know why i bother, the module isn't threadsafe and never will be, but still... * ext/standard/filestat.c: max this use the virtual_filepath() function and feel all threadsafe and wholesome inside 2002-09-11 Derick Rethans <d.rethans@jdimedia.nl> * ext/mysql/php_mysql.c: - Un-deprecating mysql_escape_string 2002-09-11 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * run-tests.php: Unlink output files even if test is skipped. 2002-09-11 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/array.c: - Little whitespace changes 2002-09-11 Andrey Hristov <andrey@webgate.bg> * ext/standard/tests/array/007.phpt: Regression test for array_diff() and array_diff_assoc(). The latter is newly introduced. * ext/standard/array.c ext/standard/basic_functions.c ext/standard/php_array.h: New function added : array_diff_assoc() . Like array_diff() but does additional checks on key values. Test script will be added too. 2002-09-11 Jani Taskinen <sniper@iki.fi> * ext/gd/config.m4: For now, check only when not using bundled GD lib. 2002-09-11 Sander Roobol <phy@wanadoo.nl> * ext/dba/config.m4: Fix configure 2002-09-11 Jani Taskinen <sniper@iki.fi> * ext/gd/config.m4: Added build test. Bug: #19345 * ext/iconv/iconv.c: Fix bug: #19355 (the parameter is optional) 2002-09-11 Dan Kalowsky <dank@deadmime.org> * ext/dba/config.m4: Patch for Bug #19341 submitted by list@firehawksystems.com 2002-09-11 Jani Taskinen <sniper@iki.fi> * ext/standard/string.c: tok tok.. 2002-09-11 Andrei Zmievski <andrei@php.net> * ext/pcre/php_pcre.c: - Added ability to use Perl-style ${n} subpattern references in the replacement string for preg_replace(). Takes care of bug #18442. 2002-09-11 Jani Taskinen <sniper@iki.fi> * ext/standard/string.c: ws fix * ext/standard/string.c: fix proto * ext/standard/info.c ext/standard/dir.c: ws fix 2002-09-11 Anantha Kesari H Y <hyanantha@novell.com> * ext/ftp/ftp.c: Removed unnecessary code that was added for NetWare * netware/start.c: Changed the licence to the one used by PHP Group * main/reentrancy.c: NetWare related changes/modifications 2002-09-11 Edin Kadribasic <edink@proventum.net> * NEWS: Added note about file_exits() and friends. * ext/standard/filestat.c: Fixed file_exists() on platforms using VCWD. 2002-09-10 Edin Kadribasic <edink@proventum.net> * ext/standard/array.c ext/standard/php_array.h: Fixed ZTS build. 2002-09-10 Andrei Zmievski <andrei@php.net> * ext/standard/array.c ext/standard/php_array.h: - Fixed array_merge_recursive() to avoid problems with merging cyclical arrays (bug #16064). * NEWS: *** empty log message *** 2002-09-10 Wez Furlong <wez.php@thebrainroom.net> * ext/sysvmsg/sysvmsg.c ext/sysvmsg/config.m4: Patch for BSD-ish systems from Melvyn Sopacua <msopacua@idg.nl>, slightly modified. 2002-09-10 Stefan Esser <s.esser@e-matters.de> * ext/standard/url.c: php_url_parse() replaces controlchars with '_' now. This stops fopen wrapper CR/LF injection issues. 2002-09-10 Jason Greene <jason@inetgurus.net> * ext/sockets/sockets.c: Fix crash bug and memory leak in vectors 2002-09-09 Jani Taskinen <sniper@iki.fi> * NEWS: consistent.. 2002-09-09 Stig Bakken <ssb@fast.no> * pear/packages/DB-1.2.tar pear/packages/DB-1.3.tar pear/packages/Mail-1.0.1.tar pear/packages/Mail-1.0.tar: * upgrade DB and Mail packages * pear/package-PEAR.xml: * 0.91 changelog * pear/PEAR/Frontend/Gtk.php: * no longer needed * pear/PEAR/Command/Install.php: * more consistent output * pear/PEAR/Packager.php: * remove debug output * pear/PEAR/Installer.php: * how did those DOS newlines get here? 2002-09-09 Dan Kalowsky <dank@deadmime.org> * ext/imap/php_imap.c: missed one section for #15630 * ext/imap/php_imap.c: Now this is correct for bug #15630 * ext/imap/php_imap.c: Revert that last change, it had code that wasn't ment to go in * ext/imap/php_imap.c: Re-applying compiler fix for IRIX, bug #15630 2002-09-09 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: chregu: Can you please use the new php_error_docref in new code? * ext/domxml/php_domxml.c: Fix for bug 19266 (don't allow appending nodes from 2 different documents) 2002-09-09 Andrei Zmievski <andrei@php.net> * ext/standard/array.c: - Added ability to extract() variables as references via OR'able EXTR_REFS flag. 2002-09-09 Wez Furlong <wez.php@thebrainroom.net> * ext/standard/parsedate.y: put that back... * ext/standard/parsedate.y: Revert Dericks accidental commit :-) Add an Id tag so we can see at a glance who is to blame. 2002-09-09 Dan Kalowsky <dank@deadmime.org> * NEWS: Updated for OCI8 patch * ext/oci8/config.m4: Patch for Bug #18640 (submitted by michael.mauch@gmx.de) 2002-09-09 Jani Taskinen <sniper@iki.fi> * ext/xslt/config.m4: Version check for Sablotron. 2002-09-09 Georg Richter <georg.richter@phpev.de> * ext/mysql/php_mysql.c: - renamed rollback function to _restore_connection_default - in _restore_connection_default: - unset the selected database (thx to Paul DuBois) - set session variable autocommit to default (=1) 2002-09-09 Jani Taskinen <sniper@iki.fi> * NEWS: Added the 4.2.3 entries. * main/php_version.h configure.in: Make this 4.2.4-dev for now..just in case we need it. 2002-09-09 Anantha Kesari H Y <hyanantha@novell.com> * main/php_syslog.h main/php_open_temporary_file.c main/php_ini.c main/php.h main/network.c main/mergesort.c main/main.c main/fopen_wrappers.c ext/standard/basic_functions.c: NetWare related changes/modifications 2002-09-09 Derick Rethans <d.rethans@jdimedia.nl> * ext/fribidi/php_fribidi.h: - Consistent use of macros * CODING_STANDARDS: - spaces instead of tabs * CODING_STANDARDS: - Use PHP_ instead of ZEND_ 2002-09-09 Yasuo Ohgaki <yohgaki@ohgaki.net> * NEWS: Oops. Last commit was not intentinal. It seems 4.3.0-dev has all fixes needed already. Mention Content-Type fix. * main/SAPI.c: Fixed typo. * ext/mbstring/mbstring.c: MFH. This should fix all var initilization problems finally. 2002-09-08 Jon Parise <jon@csh.rit.edu> * CODING_STANDARDS: Reword item 10 for greater clarity. 2002-09-08 Yasuo Ohgaki <yohgaki@ohgaki.net> * CODING_STANDARDS: It seems we're better to mention about missing functions. PHP_FUNCTION -> ZEND_FUNCTION 2002-09-08 Stefan Esser <s.esser@e-matters.de> * ext/standard/ftp_fopen_wrapper.c main/network.c main/php_network.h: Added possibility to reuse an old SSL session id. Ugly but needed for f.e.: debians ftpd-ssl 2002-09-08 Jani Taskinen <sniper@iki.fi> * NEWS: s/send/sent/ * NEWS: nice..nice.. 2002-09-08 Jon Parise <jon@csh.rit.edu> * ext/cyrus/config.m4: Capitalization 2002-09-08 Shane Caraveo <shane@caraveo.com> * ext/standard/ftp_fopen_wrapper.c: someone missed code requiring ssl 2002-09-08 Stefan Esser <s.esser@e-matters.de> * ext/standard/ftp_fopen_wrapper.c: ftp(s) fopen() wrapper does no longer ignore the ip returned by PASV. * NEWS: Added ftps:// fopen() wrapper to NEWS. * ext/standard/ftp_fopen_wrapper.c: Control connection gets closed in ssl mode now, too. 2002-09-08 Dan Kalowsky <dank@deadmime.org> * sapi/nsapi/config.m4: Fix for bug #19290 2002-09-08 Stefan Esser <s.esser@e-matters.de> * ext/standard/ftp_fopen_wrapper.c ext/standard/basic_functions.c: Added EXPERIMENTAL ftps fopen wrapper. For now this leaks the control connection stream because you cannot close the control connection in ssl mode before you read the data. 2002-09-08 Andi Gutmans <andi@zend.com> * makedist.ZendEngine2: - Simplify makedist 2002-09-08 Sander Roobol <phy@wanadoo.nl> * ext/standard/info.c: Fix typo 2002-09-08 Yasuo Ohgaki <yohgaki@ohgaki.net> * main/SAPI.c: Added missing charset. * main/php_variables.c: MFH * main/php_variables.c: Fix last commit. This line isn't supposed to be replaced. 2002-09-07 Wez Furlong <wez.php@thebrainroom.net> * NEWS: Mention php://output wrapper. 2002-09-07 Jan Lehnardt <jan@dasmoped.net> * ext/standard/info.c: - cosmetics 2002-09-07 Yasuo Ohgaki <yohgaki@ohgaki.net> * NEWS: Fixed typo... * ext/mbstring/mbstring.c: This should fix var handling problems finally. 2002-09-07 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/http_fopen_wrapper.c: Added a check to ensure user_agent header is not sent if user_agent value if blank. 2002-09-07 Yasuo Ohgaki <yohgaki@ohgaki.net> * NEWS: Fixed name * ext/iconv/iconv.c: Fixed errno hanlding. Patch by Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> * NEWS: Update entry * main/php_variables.c: MFB * main/php_variables.c: Fixed POST/GET/COOKIE var handling 2002-09-07 Wez Furlong <wez.php@thebrainroom.net> * ext/standard/file.c ext/standard/http_fopen_wrapper.c main/php_streams.h main/streams.c: Fix a couple of bad pointer indirections (oops). Lets stick to a single category of "http" for the "user_agent" context override. * ext/standard/php_fopen_wrapper.c: fix warning 2002-09-07 Jani Taskinen <sniper@iki.fi> * ext/gd/config.m4: This was not a good idea. 2002-09-07 Wez Furlong <wez.php@thebrainroom.net> * ext/standard/php_fopen_wrapper.c: Implement php://output wrapper, which can be used to write to the output buffer via PHPWRITE. * main/user_streams.c: Tag user streams as being URLs, so that safe mode restrictions will come into play. 2002-09-07 Hartmut Holzgraefe <hartmut@six.de> * main/SAPI.c: WebDAV MKCOL can have post data body, see rfc2518 8.3.1 2002-09-07 Sterling Hughes <sterling@bumblebury.com> * ext/standard/http_fopen_wrapper.c: commit the correct/up-to-date version * ext/standard/basic_functions.h ext/standard/file.c ext/standard/http_fopen_wrapper.c: The stream context is untested, but it should/could work :) Either way it doesn't make the rest of the code bad. Wez -- please take a looksie for me :) * php.ini-dist php.ini-recommended: add the user_agent ini option. 2002-09-07 Yasuo Ohgaki <yohgaki@ohgaki.net> * NEWS: Update entry 2002-09-07 Sergey Kartashoff <gluke@biosys.net> * ext/mnogosearch/php_mnogo.c: - New mnogosearch extension features has been added to group results by site. - Mnogosearch module fixes and cleanups. 2002-09-07 Yasuo Ohgaki <yohgaki@ohgaki.net> * ext/mbstring/mbstring.c: MFH * ext/mbstring/mbstring.c: Fixed array var handling. Patch by Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> 2002-09-07 Sander Roobol <phy@wanadoo.nl> * ext/gd/config.m4: Fix build with bundled gd when builddir!=srcdir 2002-09-07 Yasuo Ohgaki <yohgaki@ohgaki.net> * NEWS: Just in case we have 4.2.4 * ext/mbstring/mbstring.c: MFH * ext/mbstring/mbstring.c: Fixed trancated value bug when array is used 2002-09-07 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/http_fopen_wrapper.c: Fixed a massive memory leak that occurs when an opened webpage returns a non 200 return code. 2002-09-07 Markus Fischer <mfischer@guru.josefine.at> * NEWS: - This should have been in the release (but unfortunately wasn't) 2002-09-06 Jani Taskinen <sniper@iki.fi> * configure.in: Fix the errors reported by Melvyn 2002-09-06 Georg Richter <georg.richter@phpev.de> * ext/mysql/php_mysql.c: fixed typo 2002-09-06 James Cox <james@blog.at> * ext/xml/xml.c: remove uneeded def 2002-09-06 Sascha Schumann <sascha@schumann.cx> * acinclude.m4 ext/session/config.m4 ext/session/mod_files.c: Reenable pwrite/pread support The old checks supposed that pread/pwrite worked, if a declaration was found in <unistd.h>. We now actually check whether they work successfully before using them. 2002-09-06 Anantha Kesari H Y <hyanantha@novell.com> * ext/xml/xml.c: NetWare related changes/modifications 2002-09-06 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/math.c ext/standard/pageinfo.c ext/standard/parsedate.y: - argh... this is getting annoying 2002-09-06 Anantha Kesari H Y <hyanantha@novell.com> * ext/standard/math.c ext/standard/microtime.c ext/standard/pack.c ext/standard/pageinfo.c ext/standard/rand.c: NetWare related changes/modifications * netware/sendmail.h: Main functions declarations for NetWare * netware/sendmail.c: Main functions for NetWare 2002-09-06 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/link.c ext/standard/mail.c: - Please do not use spaces for indentation! - Removed redundend ifdefs 2002-09-06 Anantha Kesari H Y <hyanantha@novell.com> * ext/standard/lcg.c ext/standard/link.c ext/standard/mail.c ext/standard/info.c ext/standard/image.c: NetWare related additions/modifications 2002-09-05 Zeev Suraski <zeev@zend.com> * main/php_version.h NEWS configure.in: Go with 4.2.3 (will be posted tomorrow) 2002-09-05 Joseph Tate <jtate@mi-corporation.com> * win32/.cvsignore: 2002-09-05 Dan Kalowsky <dank@deadmime.org> * ext/standard/string.c: silence a windows build warning 2002-09-05 Jani Taskinen <sniper@iki.fi> * ext/standard/filestat.c: Remove unnecessarily commented code. * ext/standard/dl.c: Remove unnecessary commented code. * ext/gd/config.m4: Using --with-zlib-dir should work now with phpized builds too. 2002-09-05 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/filestat.c: - Unbreak build * ext/standard/filestat.c: - Tabs for indentation * ext/standard/dl.c: - Please use tabs for indentation 2002-09-05 Anantha Kesari H Y <hyanantha@novell.com> * main/php_streams.h ext/standard/dl.c ext/standard/dns.c ext/standard/file.c ext/standard/filestat.c ext/standard/flock_compat.c ext/standard/fsock.c ext/standard/fsock.h ext/standard/ftp_fopen_wrapper.c ext/standard/head.c ext/standard/http_fopen_wrapper.c: NetWare related additions/modifications 2002-09-05 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/string.c: Fixed a buffer overflow that occurs when wordwrap is unable to calculate the correct number of times the multi-byte break needs to be inserted into the string. 2002-09-05 Edin Kadribasic <edink@proventum.net> * win32/php4dllts.dsp: Added UTF-8 support to pcre on windows as suggested by Wez Furlong. 2002-09-05 Anantha Kesari H Y <hyanantha@novell.com> * ext/standard/datetime.c ext/standard/basic_functions.c ext/snmp/snmp.c ext/pcre/pcrelib/internal.h: NetWare related additions/modifications * netware/start.c: File used by extensions like LDAP, MySQL etc. 2002-09-05 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/string.c: - php_error -> php_error_docref - corrected proto of implode() (to match the docs) 2002-09-05 Anantha Kesari H Y <hyanantha@novell.com> * ext/ldap/ldap.mak: NetWare makefile for LDAP Extension * ext/ldap/ldap.c: NetWare related additions/modifications 2002-09-05 Hartmut Holzgraefe <hartmut@six.de> * ext/standard/string.c: in stristr: this check was in the wrong place, the real version was some lines below, this one assumed the type was 'string' in any case now it looks like strstr 2002-09-05 Anantha Kesari H Y <hyanantha@novell.com> * ext/ftp/ftp.c ext/ftp/php_ftp.c: NetWare related additions/modifications into FTP files * netware/setbuild.bat netware/php-nw.bat: Batch file to set build type (Release/Debug) and Apache version to be built 2002-09-05 Jani Taskinen <sniper@iki.fi> * ext/gd/config.m4: This _should_ fix those builds where gd.h might be in many places in the system. Not guaranteed, but now the path for the found gd.h is always first in the includes. * ext/gd/gd.c: Fix build with GD < 2.0.x 2002-09-04 Yasuo Ohgaki <yohgaki@ohgaki.net> * ext/pgsql/pgsql.c: php_error -> php_error_docref 2002-09-04 Stefan Esser <s.esser@e-matters.de> * main/SAPI.c: This 2 lines should have been removed when the header() code was rewritten. 2002-09-04 Jani Taskinen <sniper@iki.fi> * sapi/cgi/config.m4 sapi/pi3web/config.m4 ext/xmlrpc/config.m4 ext/xslt/config.m4 ext/zlib/config0.m4 ext/session/config.m4 ext/xml/config.m4 ext/mbstring/config.m4 ext/mysql/config.m4 ext/pdf/config.m4 ext/curl/config.m4 ext/domxml/config.m4 ext/gd/config.m4 configure.in acinclude.m4: - Added --disable-all configure option. * configure.in: MFH: Fix the missing libgcc problems. * ext/cyrus/config.m4: ws fix * ext/cyrus/config.m4: Fix the shared build (nobody ever build this as shared?) 2002-09-04 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * sapi/cgi/cgi_main.c: Fix headers when default content type is used. 2002-09-04 Martin Kraemer <Martin.Kraemer@fujitsu-siemens.com> * ext/cyrus/config.m4: The sasl.h file is in .../include/sasl/ (at least in cyrus-sasl-2.1.6) 2002-09-04 Jani Taskinen <sniper@iki.fi> * ext/sockets/config.m4: Fix bug: #19212 2002-09-04 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/overload/overload.c main/internal_functions_win32.c: Don't build ext/overload with Zend Engine 2. 2002-09-04 Dan Kalowsky <dank@deadmime.org> * ext/session/config.m4: sniper claims its safe to take these out as well. * ext/session/mod_files.c: taking out the PWRITE calls too * ext/session/mod_files.c: Taking out the PWRITE functions too... * ext/session/mod_files.c: MFH, removing PREAD for Bug #15983 * ext/session/mod_files.c: This fixes Bug #19022 and #15983 2002-09-04 Martin Kraemer <Martin.Kraemer@fujitsu-siemens.com> * ext/fbsql/config.m4: Fix bogus test 2002-09-04 Anantha Kesari H Y <hyanantha@novell.com> * netware/phplib.mak: Makefile to build for NetWare: extensions, main, netware & regex files * netware/buildlib.bat: Batch file to build extensions and files under main, netware and regex folders * ext/bcmath/libbcmath/src/config.h: To include the NetWare config file 2002-09-04 Yasuo Ohgaki <yohgaki@ohgaki.net> * php.ini-dist php.ini-recommended: Fixed mbstring.func_overload description. * ext/iconv/config.m4 ext/iconv/iconv.c ext/iconv/iconv.dsp ext/iconv/php_iconv.h ext/iconv/tests/translit.phpt: Fixed undefiend referece at build time. Fixed transilit test script. Make fixes available on Windows. Patch by Yoshimori Koizumi<readjust@deneb.freemail.ne.jp> 2002-09-04 Dan Kalowsky <dank@deadmime.org> * ext/fbsql/php_fbsql.c: Fix for bug #19155 UNTESTED. Unfortunately I don't have a way to test it hopefully the user will. * ext/fbsql/php_fbsql.h: No more C++ comments again * ext/fbsql/php_fbsql.h: No C++ comments, again! * ext/fbsql/php_fbsql.c: No C++ Comments * ext/fbsql/php_fbsql.c: No C++ comments 2002-09-03 Jani Taskinen <sniper@iki.fi> * ext/standard/basic_functions.c ext/zlib/zlib.c: Use zend_ini_string instead of the 'alias'. 2002-09-03 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * ext/skeleton/create_stubs: Check for uppercase function names in .def files - patch from David Viner 2002-09-03 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: Fix warnings again.... 2002-09-03 Jani Taskinen <sniper@iki.fi> * ext/gd/gd.c: Patch by Melvyn to make ttf/ft string functions work again. 2002-09-03 Sascha Schumann <sascha@schumann.cx> * ext/ircg/ircg.c: fix prototype 2002-09-03 Jani Taskinen <sniper@iki.fi> * NEWS: This does not belong here as it was MFHd.. 2002-09-03 Markus Fischer <mfischer@guru.josefine.at> * NEWS: - Update 2002-09-03 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbstring.c: removed #ifdef for mbstring.encoding_translation. 2002-09-03 Derick Rethans <d.rethans@jdimedia.nl> * ext/exif/exif.c: - Fix #ifdefs 2002-09-03 Yasuo Ohgaki <yohgaki@ohgaki.net> * php.ini-dist php.ini-recommended: Added mbstring.encoding_translation to php.ini-dist|recommended 2002-09-03 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbstring.dsp: *** empty log message *** * ext/mbstring/config.m4 main/config.w32.h.in: --enable-mbstr-enc-trans is abolished to prevent some problems about POST/GET/Cookie variables. the same functionality is controllable in php.ini option mbstring.encoding_translation (default:Off). 2002-09-02 Jan Lehnardt <jan@dasmoped.net> * sapi/cli/php_cli.c: - prepare non-html phpinfo output for zend extensions 2002-09-02 Markus Fischer <mfischer@guru.josefine.at> * main/config.w32.h: - MFH as suggested by Derick, see HEAD commit for more on this * main/config.w32.h.in: - Enable strcoll() for win32 build 2002-09-02 Zeev Suraski <zeev@zend.com> * main/php_version.h configure.in: Make it stick - please do not revert * LICENSE: Backport license from 4.3 2002-09-02 Jani Taskinen <sniper@iki.fi> * configure.in main/php_version.h: reset version to 4.2.3-dev (why is the change committed anyway?) 2002-09-02 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/file.c: - Fix the segmentation fault when magic_quotes_runtime was disabled as introduced in http://news.php.net/article.php?group=php.cvs&article=13690 2002-09-02 Zeev Suraski <zeev@zend.com> * main/php_version.h configure.in: Go RC2 2002-09-01 Sergey Kartashoff <gluke@biosys.net> * ext/mnogosearch/php_mnogo.c: - Udm_Cat_Path, Udm_Cat_List, Udm_Get_Doc_Count functions have been fixed to work with mnogosearch-3.2.6 and later. - Removed search words highlighting while getting document URL in mnogosearch extention 2002-09-01 Sebastian Bergmann <sb@sebastian-bergmann.de> * main/main.c main/output.c main/php_globals.h main/php_output.h NEWS php.ini-dist php.ini-recommended: Per discussion on #php.bugs (+1 from at least Derick and Jani), revert double_buffering. 2002-09-01 Jani Taskinen <sniper@iki.fi> * ext/xmlrpc/config.m4: Fix the shared build for real. (thanks to Brian France) 2002-08-31 Jan Lehnardt <jan@dasmoped.net> * ext/standard/info.c: - cosmetics 2002-08-31 Jani Taskinen <sniper@iki.fi> * NEWS: Fix it back..(what was that commit????) 2002-08-30 George Schlossnagle <george@omniti.com> * sapi/apache/mod_php4.c sapi/apache/mod_php4.h sapi/apache/sapi_apache.c: Cleaned up a bunch of code, fully integrated the class::method handler code into a single stack per handlers (for correct interleaving). Changed the syntax so that now they are of the form phpUriHandler /filename phpUriHandlerMethod Class::Method This now works for all handlers including response handlers. 2002-08-30 Adam Dickmeiss <adam@indexdata.dk> * ext/yaz/php_yaz.c: Bug fix: dont cache connection if proxy setting have changed 2002-08-30 Jani Taskinen <sniper@iki.fi> * ext/xslt/config.m4: Fix shared build * ext/xmlrpc/config.m4 ext/xmlrpc/xmlrpc-epi-php.c: MFH: Fix for bug: #19124 (shared extension build fixes) * ext/xmlrpc/xmlrpc-epi-php.c ext/xmlrpc/config.m4: Fix bug: #19124, xmlrpc extension builds ok now as shared extension. * ext/gd/config.m4: xpm.h is sometimes in /usr/include/X11 (or /usr/X11R6/include/X11) * ext/pdf/pdf.c: Fix the build when bundled gd library is used 2002-08-29 George Schlossnagle <george@omniti.com> * sapi/apache/mod_php4.c sapi/apache/sapi_apache.c: added the ability to set handlers as class methods (classes will need to be declared in a phpRequire statemenet, of course, or be otherwise available at the hook run-time (builtins)). This is currently only implemented for the uri trans handler it is usable as: phpUriHandlerCodeRef MyClass::MyMethod This can be greatly robustified from whre it stands now, but is a good proof of concept (hopefully!) 2002-08-29 Jan Lehnardt <jan@dasmoped.net> * ext/standard/info.c: - seperate registered streams. 2002-08-29 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/dns.c: Fixed the \0 check in previous patch. * ext/standard/dns.c: MFH fix for bug: #18966 * ext/standard/dns.c: Fixed bug #18966 2002-08-29 Jani Taskinen <sniper@iki.fi> * ext/mcrypt/tests/001.phpt: Remove unnecessary whitespace 2002-08-29 Ilia Alshanetsky <ilia@prohost.org> * ext/bz2/bz2.c: Added a check for a negative return value of php_stream_read, which if left uncheck can result in segv. 2002-08-29 Jan Lehnardt <jan@dasmoped.net> * main/php_ini.c: - reenable "no value" output. thanks to sebastian for pointing that out. 2002-08-29 Pierre-Alain Joye <pajoye@phpindex.com> * pear/System.php: Hope to finnally got it, fixes notice (Thx to Sebastian) 2002-08-29 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * tests/basic/011.phpt: MFH (not with cli) 2002-08-29 Jan Lehnardt <jan@dasmoped.net> * ext/standard/info.c: - fix ZTS build. thanks to edin. 2002-08-29 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: MFH (One zero to much) * ext/exif/exif.c: One zero to much 2002-08-29 Derick Rethans <d.rethans@jdimedia.nl> * ext/exif/config.m4: - EXIF is about meta data from images, not for digital cameras 2002-08-29 Jani Taskinen <sniper@iki.fi> * ext/mysql/php_mysql.c: MFH fix for bug: #19159 * ext/mysql/php_mysql.c: Fix bug: #19159, mysql_field_count was available since 3.22.24 * NEWS: I would have thought this was clear to everyone already.. * ext/exif/config.m4: revert that undiscussed change until it is really agreed upon. 2002-08-28 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/info.c: Fixed compile warning (unused variable) Added a \n separator between Addition Modules 2002-08-28 Jan Lehnardt <jan@dasmoped.net> * ext/standard/info.c main/php_ini.c: - add phpinfo() support for CLI. 2002-08-28 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * ext/standard/html.c: Description didn't match the function here 2002-08-28 George Schlossnagle <george@omniti.com> * sapi/apache/php_apache.c: added all the sub_request methods and logging methods 2002-08-28 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/config.m4: Enable EXIF by default as discussed with Rasmus 2002-08-28 George Schlossnagle <george@omniti.com> * sapi/apache/mod_php4.c sapi/apache/mod_php4.h sapi/apache/php_apache.c sapi/apache/sapi_apache.c main/SAPI.c main/SAPI.h main/main.c: Added wrapper functions for the majority of the apache API_EXPORT functions as class methods for the ApacheRequest objects. broke sapi_activate into two functions to allow for reading of headers/cookies separately from request bodies (POST stuff). Altered some of the send_headers code in mod_php4.c to prevent sending headers twice (since a phpResponseHandler needs to be able to have full freedom for setting headers using the ap_*_header* functions. 2002-08-28 Christian Stocker <chregu@phant.ch> * NEWS: correct entry about XsltObject->result_dump_*() 2002-08-28 Derick Rethans <d.rethans@jdimedia.nl> * ext/ming/ming.c: - Let's make this a little bit more professional :) * ext/domxml/php_domxml.c: - Whitespace 2002-08-28 Jason Greene <jason@inetgurus.net> * ext/sockets/sockets.c: Zero the structure so that when the tcp layer of the OS decides to ignore it, we do not think we are getting a value 2002-08-28 Dan Kalowsky <dank@deadmime.org> * ext/standard/url_scanner.c: silence build warning, added default case 2002-08-28 George Schlossnagle <george@omniti.com> * sapi/apache/sapi_apache.c sapi/apache/mod_php4.c sapi/apache/php_apache.c: added wrapper for ap_send_http_header so that phpResponseHandler is now working. Added protections to mod_php4's internal call to the same so that headers cannot be accidentally sent twice. * sapi/apache/mod_php4.c: This handler works much better when not commented out. :) 2002-08-28 Jani Taskinen <sniper@iki.fi> * ext/mcve/mcve.c: This extension is not forced to be compiled as shared. * ext/mcve/php_mcve.h: Added the header and removed some commented out stuff (wrong place anyway) * ext/mcve/mcve.c: ws fixes * ext/mbstring/mbregex.c: Fix ZTS build 2002-08-27 George Schlossnagle <george@omniti.com> * sapi/apache/mod_php4.c sapi/apache/php_apache_http.h: All handlers are now 'stacked' allowing for multiple handlers to be called in the order they are listed in the httpd.conf for a section. phpRequire is now supported (called out of the post-read request handler), and a first attempt at phpResponseHandler, a response-time type handler which is set by a <Location blah> SetHandler php-script phpResponseHandler /tmp/foo.php </Location> To allow for the stacked handlers, the entirety of zend_stack.c was imported into mod_php4.c. There is a patch pending to zend_stack.c to add the functionality so that all the redundant code can be removed. 2002-08-27 Brad House <brad@mainstreetsoftworks.com> * ext/mcve/mcve.c ext/mcve/php_mcve.h: Adding a left-out command 2002-08-27 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/gd/gd.c: Some requirements engineering: today necessary defines exists where needed. * ext/gd/gd.c: php_error_docref BUT didn't we decide to disable those functions when not supported instead of displaying an error? * ext/mbstring/mbregex.c ext/mbstring/mbstring.c ext/mbstring/php_mbregex.c ext/mbstring/mbfilter.c: php_error_docref * ext/mbstring/mbstring.c: Remove this nonsense - this makes the module unpredicable since we do not have default values in ini and more encodings will follow. 2002-08-27 George Schlossnagle <george@omniti.com> * sapi/apache/mod_php4.c: Replaced handler loading commands such that what was php_value uri_handler /tmp/foo.php is now phpUriHandler /tmp/foo.php This fixes some bugs that caused handlers to be skipped or mysteriously 'unloaded', reduces the number of calls to zend_alter_ini_entries that are necessary, as well as allows for easier implementation of stacked handlers (which comes next). Added 2 new hooks, phpPostReadHandler and phpHeaderHandler (going to the obvious places). 2002-08-27 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: MFH (fix some to long property strings) * ext/domxml/php_domxml.c: fix some to long property strings * ext/domxml/php_domxml.c: argh, domxml_doc_free is not yet ready for CVS :) * ext/domxml/php_domxml.c: stupid typo * ext/domxml/php_domxml.c: MFH (fix memleak in php_domxslt_string_to_xpathexpr) * ext/domxml/php_domxml.c: fix memleak in php_domxslt_string_to_xpathexpr 2002-08-27 Derick Rethans <d.rethans@jdimedia.nl> * NEWS: - "Use" is not a name :) 2002-08-27 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/db/db.c ext/db/php_db.h: MFH * ext/db/db.c: -php_error_docref -nuke unused variable * ext/db/php_db.h: header for last commit 2002-08-27 Jani Taskinen <sniper@iki.fi> * NEWS: cleanup 2002-08-27 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/standard/tests/file/002.phpt ext/standard/file.c: MFH * ext/db/db.c: -fix memory leak on failure -only use one function for nearly identical things -fix stripslashes not working on input directly 2002-08-26 lukas schroeder <lukas@kodics.de> * sapi/apache/php_apache.c: - add interface functions for headers_in, headers_out and err_headers_out 2002-08-26 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * run-tests.php: -reimplemented old style output (.exp, .out) -implemented diff format output -delete error logs on success * ext/standard/file.c: fix fwrite to no longer apply stripslashes on input string when magic_quotes_runtime is set On. * ext/standard/basic_functions.c: fix proto and tweak error message 2002-08-26 lukas schroeder <lukas@kodics.de> * main/main.c: - put common sapi startup code into a function 2002-08-26 George Schlossnagle <george@omniti.com> * sapi/apache/mod_php4.c sapi/apache/mod_php4.h sapi/apache/php_apache.c sapi/apache/php_apache_http.h sapi/apache/sapi_apache.c: Import of Lukas Schroeder's work to give php a full interface to apache 1.3.x's hook interface, and full class wrappers around the apache request object and it's interfaces. * main/SAPI.c main/SAPI.h main/main.c: new full apache-1.3.x hooks interface support initial import 2002-08-26 Wez Furlong <wez.php@thebrainroom.net> * ext/com/COM.c ext/com/php_COM.h: Implement com_invoke_ex, which allows the user to specify the invoke kind flags, so that custom invocations can be made. Tidy up code for com_propget and com_propset, so that it can work with objects as well as resources. 2002-08-26 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/mail.c: - Whitespace * ext/standard/mail.c: - Use escape_shell_cmd() to allow multiple extra parameters to the invocation of the mailer as used in the fifth parameter to mail(). - Use escape_shell_cmd() to allow multiple extra parameters to the invocation of the mailer as used in the fifth parameter to mail(). 2002-08-26 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * NEWS: that propably wasn't a good idea and thus already removed 2002-08-26 Jani Taskinen <sniper@iki.fi> * ext/imap/php_imap.h ext/imap/php_imap.c: MFH: bug fixes; #14410, #17503, #17999, #15595. Also some performance improvements. 2002-08-26 Pierre-Alain Joye <pajoye@phpindex.com> * pear/scripts/pearize.in: Set 'defaultuser' if 'USER' env not found * pear/PEAR/Builder.php: Replace horrendous code :) * pear/System.php: Rule 1: Never quickly fix a thing in cvs Rule 2: follow rule 1 Thx rasmus :) 2002-08-25 Jason Greene <jason@inetgurus.net> * ext/sockets/sockets.c ext/sockets/unix_socket_constants.h: Implement socket errno values for UNIX based platforms. They are all prefixed with SOCKET_ to preserve name space Win32 will follow... 2002-08-25 Sebastian Bergmann <sb@sebastian-bergmann.de> * main/network.c main/php_network.h ext/ftp/ftp.c ext/ftp/ftp.h ext/ftp/php_ftp.c: Fix ZTS build. 2002-08-25 Wez Furlong <wez.php@thebrainroom.net> * ext/standard/html.c: WS 2002-08-25 Ilia Alshanetsky <ilia@prohost.org> * ext/standard/string.c: Slight optimization of php_strtoupper & php_strtoupper functions. 2002-08-25 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/tests/002.phpt: MFB * main/fopen_wrappers.c main/network.c main/php_variables.c main/safe_mode.c main/user_streams.c: use php_error_docref() 2002-08-25 Pierre-Alain Joye <pajoye@phpindex.com> * pear/PEAR/Builder.php: Remove $_ENV usages, getenv() is used instead 'MAKE' and 'USER' are used, if 'USER' not found I set user to 'defaultuser' 2002-08-25 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/standard/basic_functions.c ext/standard/file.c: improoved error messages 2002-08-25 Pierre-Alain Joye <pajoye@phpindex.com> * pear/scripts/pearize.in: Remove $_ENV usages Remove $env arg in all functions and uses getenv instead Note only 'USER' env var is used * pear/System.php: Remove $_ENV usages, this causes problems with recommanded php.ini files Replace by getenv() 2002-08-25 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * main/output.c: Removed __output_handler as everybody seems against such implicit behaviour. Instead supply error message. 2002-08-25 Jani Taskinen <sniper@iki.fi> * NEWS: Fix long line..and typo 2002-08-25 Derick Rethans <d.rethans@jdimedia.nl> * ext/curl/config.m4: - PHP's cURL extention now requires cURL version 7.9.8 - Bump up required version number of cURL to 7.9.8 2002-08-25 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * main/output.c: Use zend_is_callable() instead of php_check_object_method_array() and drop the latter. THX to Markus Fischer - i did not recognize this function. 2002-08-25 Wez Furlong <wez.php@thebrainroom.net> * main/streams.c: Fix open_basedir. * ext/standard/file.c: Prevent possible problems with include_path. 2002-08-25 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * main/output.c: Reenable array(object,method) in ob_start() 2002-08-25 Wez Furlong <wez.php@thebrainroom.net> * main/streams.c: Hopefully really fix #18022 this time. * main/streams.c: Potential fix for Bug#18022: Streams that are pipes on systems that HAVE_FLUSHIO should not be seeked as is required for plain files on those systems. * main/streams.c: Unify error messages. * ext/standard/string.c main/php_streams.h main/streams.c: Add a "closing" parameter for filters to determine if a flush is the last flush before the stream is closed. This allows filters to finish a chunk and write footers etc. * ext/ftp/ftp.c ext/ftp/php_ftp.c main/php_streams.h: Remove php_stream_error as discussed with Rasmus. Unify error messages for ext/ftp. (which was using php_stream_error). 2002-08-24 Yasuo Ohgaki <yohgaki@ohgaki.net> * ext/pgsql/pgsql.c: Changed pg_connection_info()/pg_connection_reset()/pg_connection_busy()/pg_result_status()/pg_result_error() silently return FALSE when resource is not passed to them. * ext/mysql/php_mysql.c ext/mysql/php_mysql.h: Rename mysql_character_set_name() to mysql_client_encoding(). pg_client_encoding() is available from PHP4.0.3 and this function is available from PHP 4.3.0 2002-08-24 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/mbstring/html_entities.c: Convert to unix, related to bug 18588 2002-08-24 Zeev Suraski <zeev@zend.com> * ext/mysql/php_mysql.c: Fixlet * NEWS ext/mysql/php_mysql.c: Undeprecate mysql_db_query() * ext/mysql/php_mysql.c: mysql_db_query() should not have been deprecated 2002-08-24 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * tests/basic/002.phpt tests/basic/003.phpt tests/basic/004.phpt tests/basic/005.phpt: MFH (skip if cli) 2002-08-24 Jani Taskinen <sniper@iki.fi> * NEWS: Make this entry a little bit easier for eyes to catch. 2002-08-24 Stefan Esser <s.esser@e-matters.de> * NEWS: Added news entry * ext/standard/mail.c: MFH * ext/standard/mail.c: Overwrite control chars in parameters with whitespace instead of truncating. 2002-08-24 Georg Richter <georg.richter@phpev.de> * ext/mysql/php_mysql.c: changed zend_error -> php_error_docref() 2002-08-24 Derick Rethans <d.rethans@jdimedia.nl> * makedist: - Also make bz2 archives 2002-08-24 Den V. Tsopa <tdv@edisoft.ru> * ext/mbstring/mbfilter.c: convert encoding to cp1251,cp866 was not working, fixed 2002-08-24 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/tests/array/003.phpt: - MFH 2002-08-24 Georg Richter <georg.richter@phpev.de> * ext/mysql/php_mysql.c: changed error messages according to CODING_STANDARDS * NEWS: MySQL changes 2002-08-24 Yasuo Ohgaki <yohgaki@ohgaki.net> * ext/pgsql/pgsql.c: Fixed typo * ext/pgsql/pgsql.c: Make pg_result_status() a little more useufl by ignoring invalid parameter and return FALSE. (i.e. pg_query() may return FALSE instead of result resource) 2002-08-24 Jani Taskinen <sniper@iki.fi> * main/php_version.h configure.in: switch the version back to 4.2.3-dev here. 2002-08-24 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/standard/file.c ext/standard/filestat.c ext/standard/formatted_print.c ext/standard/fsock.c ext/standard/ftok.c ext/standard/head.c ext/standard/image.c ext/standard/info.c ext/standard/iptc.c ext/standard/levenshtein.c ext/standard/mail.c ext/standard/math.c ext/standard/md5.c ext/standard/scanf.c ext/standard/sha1.c ext/standard/string.c ext/standard/syslog.c ext/standard/type.c ext/standard/aggregation.c ext/standard/array.c ext/standard/assert.c ext/standard/basic_functions.c ext/standard/browscap.c ext/standard/cyr_convert.c ext/standard/datetime.c ext/standard/dir.c ext/standard/dl.c ext/standard/dns.c ext/standard/exec.c: php_error_docref 2002-08-24 Zeev Suraski <zeev@zend.com> * makedist: Zend and TSRM already get checked out in php4 2002-08-24 Jani Taskinen <sniper@iki.fi> * php.ini-dist php.ini-recommended: MFH * php.ini-dist php.ini-recommended: Remove relic from PHP3 days which is not useful anymore. 2002-08-24 Zeev Suraski <zeev@zend.com> * NEWS configure.in main/php_version.h: Update version number, prepare for release * ext/standard/basic_functions.c: Fix import_request_variables() * ext/standard/basic_functions.c: Fix bug #15106 2002-08-23 Zeev Suraski <zeev@zend.com> * ext/standard/mail.c: MFH security fix 2002-08-23 Jani Taskinen <sniper@iki.fi> * ext/dba/dba.c ext/dba/php_dba.h: Made this extension to use the resource stuff * ext/pgsql/pgsql.c: ws fix 2002-08-23 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/standard/tests/array/data.inc: MFH * ext/exif/exif.c ext/exif/tests/002.phpt: fixes magically mentioned in NEWS before being commited * NEWS: differentiate: Makus, Marcus 2002-08-23 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * ext/gd/gd.c: stream closing bug here too 2002-08-23 Wez Furlong <wez.php@thebrainroom.net> * ext/gd/gd.c: Fix segfault reported by Rasmus. * main/main.c: Respect safe mode setting when opening scripts and things for the ZE. 2002-08-23 Jani Taskinen <sniper@iki.fi> * NEWS: I like periods..:) 2002-08-23 Georg Richter <georg.richter@phpev.de> * ext/mysql/libmysql/my_tempnam.c: fixed bug #18643 2002-08-23 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c ext/domxml/php_domxml.h: renamed xslt_dump_* to xslt_result_dump_* to avoid confusion * ext/domxml/php_domxml.c: fix memleak in xslt->dump_mem() 2002-08-23 Georg Richter <georg.richter@phpev.de> * ext/mysql/php_mysql.c: fixed bug #19016 SSL is only available for MYSQL_VERSION_ID >= 40000 2002-08-23 Edin Kadribasic <edink@proventum.net> * NEWS: One more 2002-08-23 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * NEWS: Should probably mention this fix too. 2002-08-23 Georg Richter <georg.richter@phpev.de> * ext/mysql/php_mysql.c: fixed bug #16965 2002-08-23 Edin Kadribasic <edink@proventum.net> * NEWS: Due credit to Steph. 2002-08-23 Zeev Suraski <zeev@zend.com> * NEWS: Update NEWS (got as far as ext/standard (not inclusive) in the ext/ dir) Please take a look at it and update it if you find 'bugs'. * ext/session/session.c: Avoid changing behavior in a bug-fix release * NEWS: Update, remove somewhat useless entry (we'd have to figure out a way to update it) * main/output.c ext/zlib/zlib.c: Fix ob_gzhandler()'s handling of requests w/o compression but that do have the Accept-Encoding header * main/output.c ext/zlib/zlib.c: Fix ob_gzhandler()'s handling of requests without compression, but that do have an Accept-Encoding header 2002-08-23 Martin Jansen <mail@martin-jansen.de> * pear/File/Passwd.php: * Suppress warning when having empty lines in password file. 2002-08-23 Zeev Suraski <zeev@zend.com> * main/fopen_wrappers.c main/fopen_wrappers.h ext/standard/reg.c: Fix a few warnings (MFH) 2002-08-23 Jani Taskinen <sniper@iki.fi> * NEWS: Sync with HEAD * NEWS: Update/cleanup. 2002-08-22 Wez Furlong <wez.php@thebrainroom.net> * acinclude.m4 main/streams.c: Add a configure check to see if the seeker function in an fopencookie uses off_t or the newer, more portable "fpos_t *". The check could perhaps be more refined, as the test program will segfault on older systems (like mine) that use off_t. 2002-08-22 Ilia Alshanetsky <ilia@prohost.org> * ext/mime_magic/config.m4: Fixed a typo 2002-08-22 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/gd/gd.c: more php_error_docref * ext/gd/gd.c ext/gd/gd_ctx.c: php_error_docref... 2002-08-22 Wez Furlong <wez.php@thebrainroom.net> * main/streams.c: Fix compile warnings under win32 * ext/zlib/zlib_fopen_wrapper.c: *cough* * ext/zlib/zlib.c ext/zlib/zlib_fopen_wrapper.c: Fix error messages. 2002-08-22 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/gd/libgd/gd.c ext/gd/libgd/gd_topal.c ext/gd/libgd/gdft.c: fiw warnings 2002-08-22 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: - moved xslt_dump_ to better place - removed unused variables * ext/domxml/php_domxml.h ext/domxml/php_domxml.c: - Added XsltObject->dump_file($result,$filename[,$compression]) for dumping xslt-result directly into a file. (chregu) 2002-08-22 Edin Kadribasic <edink@proventum.net> * win32/install.txt: Sync install.txt file with the one provided in other 4.2.x distro's. 2002-08-22 Christian Stocker <chregu@phant.ch> * ext/domxml/config.m4 ext/domxml/php_domxml.c ext/domxml/php_domxml.h: - XsltObject->dump_file() will follow - bumped up needed libxslt version to 1.0.18 2002-08-22 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * sapi/apache/mod_php4.c: MFH the xbithack fix 2002-08-22 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: return version number of linked libxml2, not of the one, which it was compiled against 2002-08-22 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * CODING_STANDARDS: fix examples * ext/gd/gd.c: fix zts build 2002-08-22 Mark L. Woodward <mlwmohawk@mohawksoft.com> * ext/msession/msession.c ext/msession/reqclient.h: Removed C++ comments 2002-08-22 Edin Kadribasic <edink@proventum.net> * ext/mime_magic/mime_magic.c: magic.mime seems to be more common name for the file. * ext/mime_magic/mime_magic.c ext/mime_magic/mime_magic.dsp: Mime_magic extensions builds on windows now. 2002-08-22 Ilia Alshanetsky <ilia@prohost.org> * ext/mime_magic/config.m4 ext/mime_magic/mime_magic.c: Instead of hardcoding the path of magic.mime file, try to find the file inside common paths for the file. * ext/ncurses/ncurses_functions.c: Fixed a number of compile warnings. 2002-08-22 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * main/output.c: fix warning * main/streams.c: fix php_error_docref parameters 2002-08-22 Christian Stocker <chregu@phant.ch> * ext/xslt/php_sablot.h ext/xslt/sablot.c: - Added xslt_backend_version() and xslt_backend_name() for getting information about the processor backend. (chregu) 2002-08-22 Stefan Roehrich <stefan@roehri.ch> * ext/zlib/zlib.c: Fixed prototype. Fixed double printing of function name in docref error messages. 2002-08-22 Christian Stocker <chregu@phant.ch> * php.ini-recommended php.ini-dist: add allow_webdav_methods as option * main/SAPI.c: do not check for POST twice * sapi/apache/mod_php4.c main/SAPI.c main/main.c main/php_globals.h: - Added php.ini option "allow_webdav_methods" to allow handling of WebDAV http requests within PHP scripts. (chregu) 2002-08-22 Tim Toohey <php@toowards.com> * ext/gd/libgd/gd.h ext/gd/libgd/gd_topal.c ext/gd/libgd/gd.c ext/gd/php_gd.h ext/gd/gd.c: (PHP imagecolormatch) makes a palette image match the colours in the true-color version. (PHP imagelayereffect) extended alpha-channel mixing effects for the bundled GD library 2002-08-22 Jason Greene <jason@inetgurus.net> * ext/pcntl/pcntl.c ext/pcntl/php_pcntl.h ext/pcntl/php_signal.c ext/pcntl/php_signal.h ext/pcntl/test-pcntl.php: Changed callback hash table to be initialized and destroyed per reqeust (allows the ability to use request life zvals as handles) Nuked warnings Modified test script to adjust to new ticks backend Some slight WS fixes 2002-08-22 Jani Taskinen <sniper@iki.fi> * ext/xmlrpc/libxmlrpc/simplestring.c: kill some compile warnings * ext/standard/base64.c: style fix * ext/tokenizer/tokenizer.c: comment out unused variable * ext/domxml/php_domxml.c: kill compiler warning (unused variable) * ext/readline/config.m4: MFH * ext/readline/config.m4: Fix typo. * sapi/apache/mod_php4.c: These functions are not used elsewhere. 2002-08-21 sniper <sniper@pb1.pair.com> * sapi/apache/mod_php4.c: Fix ZTS build 2002-08-21 helly <helly@pb1.pair.com> * ext/exif/tests/003.phpt ext/exif/tests/004.phpt: These require exif and mbstring * tests/basic/012.phpt: Test argument passing for CLI * tests/basic/011.phpt: This does not work for CLI * run-tests.php: Added ARGS section to allow passing arguments to CLI tests 2002-08-21 sniper <sniper@pb1.pair.com> * ext/standard/array.c: MFH 2002-08-21 iliaa <iliaa@pb1.pair.com> * ext/standard/string.c: Added monetary.h to prevent compile warning. Fixed a memory leak inside money_format function, which occures if the parameters to the function are not valid. Fixed a segmentation fault inside money_format in the event the value to be formated is >1024 bytes. Made the return value of money_format be null terminated. * configure.in: Added a check for monetary.h needed for strfmon inside string.c 2002-08-21 helly <helly@pb1.pair.com> * ext/exif/tests/003.phpt ext/exif/tests/004.phpt: Reflect recent changes to exif.c * ext/standard/array.c: Fixes array test 004.phpt. Nice copy paste error. * ext/standard/tests/array/003.phpt: Patch from Melvyn Sopacua <msopacua@idg.nl> finally fixes it (bug 19006). 2002-08-21 sebastian <sebastian@pb1.pair.com> * ext/standard/string.c: Fix ZTS build. 2002-08-21 derick <derick@pb1.pair.com> * ext/domxml/CREDITS ext/mysql/CREDITS: - Proper format for CREDITS files 2002-08-21 steinm <steinm@pb1.pair.com> * ext/domxml/CREDITS: - gave overdue credits to christian 2002-08-21 kalowsky <kalowsky@pb1.pair.com> * ext/java/java.c: This final change enables the ext/java to compile on OSX. 2002-08-21 iliaa <iliaa@pb1.pair.com> * ext/ftp/ftp.c: Fixed compile warning. 2002-08-21 helly <helly@pb1.pair.com> * ext/standard/tests/array/003.phpt ext/standard/tests/array/004.phpt: add ini setting precision - this does not fix the real problem here * ext/mbstring/tests/020.phpt: more ini settings * main/output.c main/php_output.h: full decopling of size parameters of ob_start() and internal buffer handlers 2002-08-21 kalowsky <kalowsky@pb1.pair.com> * ext/java/config.m4 ext/java/java.c: One more patch up towards OSX compatibility... 2002-08-21 helly <helly@pb1.pair.com> * ext/standard/tests/general_functions/008.phpt: Add var_dump float format test * ext/standard/tests/general_functions/007.phpt: Add combined base64 and md5 test * ext/standard/tests/array/002.phpt ext/standard/tests/array/001.phpt: fix array tests someone must have changed precision in php.ini-dist from 14 to 12 * main/snprintf.c: make snprintf and f,g,G converions of snprintf/spprintf C99 complient * main/output.c: Ignore double_buffering for ob_start(). 2002-08-20 helly <helly@pb1.pair.com> * php.ini-dist php.ini-recommended: speling - thanks (Masaki Fujimoto), acually this wasn't my best piece of doc * main/output.c: Revert ob_start() defaults to 40K/10K until i find a better solution. 2002-08-20 kalowsky <kalowsky@pb1.pair.com> * ext/imap/config.m4: MFH or MSG... your choice... * ext/imap/config.m4: Correcting english in config * sapi/nsapi/config.m4: Bug fix for #18999 * sapi/nsapi/config.m4: Fix for Bug #18999 2002-08-20 wez <wez@pb1.pair.com> * main/streams.c: Fix newly introduced leak in the debug build. * ext/standard/basic_functions.c ext/standard/file.c ext/standard/file.h ext/standard/php_string.h ext/standard/string.c main/php_streams.h main/streams.c: Implement filter API for streams. Filters can be stacked onto a stream; more details will follow in docs and on php-dev. Implement "string.rot13" filter Allows the following script: $fp = fopen("file.txt", "r"); stream_filter_prepend($fp, "string.rot13"); // File contents will be subject to a rot13 transformation before // being output. fpassthru($fp); fclose($fp); * ext/standard/base64.c: fix vim modeline 2002-08-20 helly <helly@pb1.pair.com> * php.ini-dist php.ini-recommended: speling - thanks derick * ext/zlib/zlib.c: change to php_error_docref() * php.ini-dist php.ini-recommended: note about double_buffering * ext/standard/url_scanner_ex.c ext/standard/url_scanner_ex.re ext/zlib/zlib.c: Changed handling of output buffer sizes. * main/main.c main/output.c main/php_globals.h main/php_output.h: Changed handling of output buffer sizes. 2002-08-20 sander <sander@pb1.pair.com> * ext/standard/var_unserializer.c: MFH * ext/standard/var_unserializer.re: MFH (var_unserializer.c follows in a second) 2002-08-20 Sascha Schumann <sas@pb1.pair.com> * ext/standard/filestat.c: MFH 2002-08-20 sniper <sniper@pb1.pair.com> * ext/oci8/config.m4: remove tabs 2002-08-20 derick <derick@pb1.pair.com> * ext/standard/fsock.c: - Fix for the compiler on Compaq Tru64 4.0F PK3 (bug #18974) 2002-08-20 helly <helly@pb1.pair.com> * ext/mbstring/mbfilter.c ext/mbstring/unicode_table_ru.h: NO C++ comments 2002-08-20 edink <edink@pb1.pair.com> * ext/oci8/oci8.dsp: Windows build supports returning the sql statement which failed. * ext/dbx/dbx_sybasect.c: MFH (Remove C++ comments, bug #17628) * ext/oci8/config.m4 ext/oci8/oci8.c: Fixed build with Oracle 8.0.x (bug #18973). * ext/standard/dir.c: MFH (Fix for bug #14657, patch by Steph Fox) * win32/readdir.c win32/readdir.h: MFH (Fix for bug #11214, patch by Steph Fox) 2002-08-20 kalowsky <kalowsky@pb1.pair.com> * ext/odbc/php_odbc.c: WS fix 2002-08-19 wez <wez@pb1.pair.com> * main/network.c main/php_network.h main/php_streams.h main/streams.c ext/standard/file.c: Remove php_stream_sock_set_blocking and replace with php_stream_set_option which can be used in a similar way as ioctl() to set options for streams. Current options include buffering and blocking support. o Buffer control is support for stdio based streams. o Blocking/non-blocking is supported for stdio and socket based streams. 2002-08-19 iliaa <iliaa@pb1.pair.com> * ext/standard/microtime.c: Convert the value of tz_minuteswest inside struct timezone on Windows to minutes from seconds. 2002-08-19 sniper <sniper@pb1.pair.com> * ext/java/config.m4: Fix the build when using --with-java without any path 2002-08-19 dickmeiss <dickmeiss@pb1.pair.com> * ext/yaz/php_yaz.c: Make options piggyback and timeout work with ZOOM 2002-08-19 Zeev Suraski <zeev@pb1.pair.com> * main/fopen_wrappers.c main/fopen_wrappers.h: Fix a few warnings * ext/standard/reg.c: Fix a warning 2002-08-19 sander <sander@pb1.pair.com> * ext/standard/var_unserializer.c: Sync with var_unserializer.re * ext/standard/tests/serialize/003.phpt ext/standard/var_unserializer.re: Made unserialize handle floats with an E notation - bug #18654 Patch by Christophe Sollet <csollet@coleebris.com>. (I'll commit a new var_unserializer.c in a second) * run-tests.php: Don't know what this line was supposed to DO!?!? 2002-08-19 helly <helly@pb1.pair.com> * main/output.c: -use of php_error_docref -some more information in ob_get_status() * main/main.c: -allow changing html_errors any time changing display_errors is already -use sizeof for strftime call -removed unused #define -mention CODING_STANDARDS as documentation 2002-08-19 Rasmus Lerdorf <rasmus@pb1.pair.com> * sapi/apache/mod_php4.c: Fix xbithack bug finally (see bug #16515) 2002-08-19 edink <edink@pb1.pair.com> * sapi/cgi/cgi_main.c: MFH 2002-08-19 chregu <chregu@pb1.pair.com> * ext/domxml/php_domxml.c: w3c adjustments :) - has_attributes returns empty string if attribute is not there - parent_node returns null, if no parent 2002-08-19 edink <edink@pb1.pair.com> * sapi/cgi/cgi_main.c: Debug functions should only work in debug mode. 2002-08-19 kalowsky <kalowsky@pb1.pair.com> * sapi/cgi/cgi_main.c: MFH 2002-08-19 stas <stas@pb1.pair.com> * ext/standard/var_unserializer.c: ZE2 compatibility fix 2002-08-19 chregu <chregu@pb1.pair.com> * ext/domxml/php_domxml.c: MFH 1.174 (Make domxml_xslt_process() working again.) MDH 1.187 (DOMXML crash on removing previously created attributes) 2002-08-18 holger <holger@pb1.pair.com> * sapi/pi3web/pi3web_sapi.c: Some minor changes related to Pi3Web 2.0.1. 2002-08-18 sesser <sesser@pb1.pair.com> * sapi/apache/mod_php4.c: make POST requests work again 2002-08-18 stas <stas@pb1.pair.com> * ext/standard/var_unserializer.re: ZE2 compatibility fix 2002-08-18 holger <holger@pb1.pair.com> * sapi/pi3web/pi3web_sapi.c: Removed unused local variable header_line. 2002-08-18 iliaa <iliaa@pb1.pair.com> * ext/standard/file.c: Corrected if() syntax in previous patch. * ext/standard/file.c: Fixed a segmentation fault that would occur if an entry contained a non-terminated enclosure. Bug #12556 2002-08-18 avsm <avsm@pb1.pair.com> * ext/pdf/config.m4: include PDFLIB_SHARED_LIBADD in the pdflib test, or it fails with unresolved symbols on OpenBSD 2002-08-18 James Cox <imajes@pb1.pair.com> * ext/db/db.c: reverting to 1.73 for steph (sfox@php.net) 2002-08-18 kalowsky <kalowsky@pb1.pair.com> * ext/bcmath/bcmath.c: MFH * ext/bcmath/bcmath.c: Bug Fix #18960 - Submitted by alan_k@php.net 2002-08-17 Zeev Suraski <zeev@pb1.pair.com> * ext/odbc/php_odbc.c: Fix build * ext/session/mod_files.c: Use mtime instead of atime, as we always update the session file anyway. 2002-08-17 kalowsky <kalowsky@pb1.pair.com> * ext/imap/php_imap.c: MFH - fix Irix compiler errors 2002-08-17 sniper <sniper@pb1.pair.com> * NEWS: AFAIK, 4.3.0 will not contain ZE2.. 2002-08-17 iliaa <iliaa@pb1.pair.com> * ext/standard/pack.c: Backported memory leak fixes from the 4.3 branch 2002-08-17 kalowsky <kalowsky@pb1.pair.com> * ext/vpopmail/php_vpopmail.c: MFH * sapi/nsapi/config.m4: MFH, builds and reportadly re-enables nsapi support * ext/odbc/php_odbc.c: MFH, fixing close crash case on Windows 2002-08-17 venaas <venaas@pb1.pair.com> * configure.in: Default is enable, so better --disable-ipv6 I guess 2002-08-17 Zeev Suraski <zeev@pb1.pair.com> * sapi/apache/mod_php4.c: MFH Apache threading fix 2002-08-17 venaas <venaas@pb1.pair.com> * configure.in main/network.c: Added --enable-ipv6 and only look up AAAA in DNS when enabled 2002-08-17 kalowsky <kalowsky@pb1.pair.com> * ext/bz2/bz2.c: when I learn to type, life will be good 2002-08-17 sesser <sesser@pb1.pair.com> * main/rfc1867.c: MFH * main/rfc1867.c: IE does not use quotes but now we are safe... 2002-08-17 chregu <chregu@pb1.pair.com> * ext/domxml/php_domxml.c: More W3C conformance stuff (they returned all false before..) - DomNode->attributes() returns NULL, if not found. - DomNode->first_child() returns NULL, if not found - DomNode->last_child() returns NULL, if not found. - DomNode->namespace_uri() returns NULL, if not found. 2002-08-17 sesser <sesser@pb1.pair.com> * main/rfc1867.c: fixed the user supplied patch for bug #18792 2002-08-17 kalowsky <kalowsky@pb1.pair.com> * ext/bz2/bz2.c: Reverting back to original method as requested by Wez 2002-08-17 Rasmus Lerdorf <rasmus@pb1.pair.com> * php.ini-dist: Add warning about atime requirement for session gc 2002-08-16 sniper <sniper@pb1.pair.com> * ext/imap/php_imap.c: ws fixes 2002-08-16 kalowsky <kalowsky@pb1.pair.com> * ext/bz2/bz2.c: no calloc works like this. sorry about that. * ext/bz2/bz2.c: Fix for bug #18947 submitted by pgr75@hotmail.com * main/rfc1867.c: Fix for bug #18792 submitted by t.bubeck@reinform.de * ext/imap/php_imap.c: Silence a compiler warning, and returns the SUCCESS value on PHP_MINIT 2002-08-16 Andi Gutmans <andi@pb1.pair.com> * ext/dio/dio.c: - Use tabs instead of spaces for indentation! - Fix all sorts of ugly whitespace things. - People, please write code according to our standards even if you don't - like them. 2002-08-16 iliaa <iliaa@pb1.pair.com> * ext/standard/pageinfo.c: Fixed a compile failure in Win32 caused by previous patch. Changed else statement to comply with PHP coding standards. 2002-08-16 jason <jason@pb1.pair.com> * ext/sockets/sockets.c: Nuke warnings on strict compilers 2002-08-16 iliaa <iliaa@pb1.pair.com> * ext/standard/pageinfo.c: Added a handler for php -r '' for SAFE_MODE 2002-08-16 wez <wez@pb1.pair.com> * main/streams.c: Fix a little leak. 2002-08-16 Sterling Hughes <sterling@pb1.pair.com> * ext/standard/basic_functions.c: clean this up a bit 2002-08-16 wez <wez@pb1.pair.com> * main/safe_mode.c main/streams.c main/php_streams.h: Enhance Ilia's recent patch to query the wrapper subsystem to determine if a filename is a URL and thus if safe-mode checks should be skipped. 2002-08-16 chregu <chregu@pb1.pair.com> * ext/domxml/php_domxml.c: More on the way to W3C coformance: 2002-08-16 iliaa <iliaa@pb1.pair.com> * main/safe_mode.c: Make https:// be exempt from safe_mode checks, just like http:// & ftp:// are. * ext/standard/basic_functions.c: Added safe_mode & open_basedir check when a user is chaning ini options that specify file system paths. Fixes bug #17168. 2002-08-16 Stig Bakken <ssb@pb1.pair.com> * tests/lang/035.phpt: - Added set_exception_handler() function for registering a global, catch-all exception handling function - Added set_exception_handler() function for registering a global, catch-all exception handling function (Stig) * Makefile.global: * allow using the TESTS make variable again to determine which tests are run 2002-08-15 Zeev Suraski <zeev@pb1.pair.com> * sapi/apache/mod_php4.c: Fix a NASTY multithreading bug with in the Apache module 2002-08-15 edink <edink@pb1.pair.com> * sapi/apache2filter/apache_config.c sapi/apache2filter/sapi_apache2.c: MFH (make apache2filter work with Apache 2.0.40) 2002-08-15 Zeev Suraski <zeev@pb1.pair.com> * ext/session/php_session.h: Make unset($_SESSION['foo']) actually remove the variable from the session, if register_globals is off. * ext/fribidi/fribidi.c ext/fribidi/php_fribidi.h: Update email address 2002-08-15 kalowsky <kalowsky@pb1.pair.com> * ext/session/session.c: Correcting some english in the comment... * NEWS: marking the fix for Bug #18401 in NEWS * ext/standard/array.c: Fix for bug #18401, makes shuffle() properly generate all possibilities. Patch provided by Adam Trachtenberg <adam@trachtenberg.com> 2002-08-15 chregu <chregu@pb1.pair.com> * ext/domxml/php_domxml.h: include libxml/xinclude.h to make some compilers happy 2002-08-15 Martin Jansen <mj@pb1.pair.com> * pear/PEAR/Common.php: * Fix bug #18918. * Add some PHPdoc comments. 2002-08-15 kalowsky <kalowsky@pb1.pair.com> * ext/java/Makefile.frag: A fix suggested by chregu (who doesn't have karma) to re-enable older java JDKs to work. 2002-08-15 chregu <chregu@pb1.pair.com> * ext/domxml/php_domxml.c: proto fixes * ext/domxml/php_domxml.h ext/domxml/php_domxml.c: - Added DomNode->set_namespace(uri[,prefix]) (chregu) - Added third optional parameter (prefix) to DomDocument->create_element_ns() - generate prefix from random number, if not provided. 2002-08-15 sniper <sniper@pb1.pair.com> * NEWS: MFH * NEWS: be more verbose 2002-08-15 alan_k <alan_k@pb1.pair.com> * ext/dio/dio.c: changed default stop bits to a valid value * ext/dio/dio.c: changed default stop bits * ext/dio/dio.c ext/dio/php_dio.h: adding dio_tcsetattr and ASYNC support 2002-08-15 yohgaki <yohgaki@pb1.pair.com> * NEWS: Add 4.2.2 news just in case it's released. * NEWS: news for disabling trans-sid by default. but no entry for depreciation of --enable-trans-sid :( (from 4.2.0) 2002-08-15 kalowsky <kalowsky@pb1.pair.com> * main/win95nt.h: silencing some windows build warnings 2002-08-15 Zeev Suraski <zeev@pb1.pair.com> * ext/vpopmail/php_vpopmail.c: coming to think of it, it shouldn't be necessary at all (thanks Jani :) * ext/vpopmail/php_vpopmail.c: Fix build 2002-08-15 sniper <sniper@pb1.pair.com> * NEWS: hot, damn hot. 2002-08-14 helly <helly@pb1.pair.com> * ext/standard/info.c: do not include "php_have_iconv.h" 2002-08-14 yohgaki <yohgaki@pb1.pair.com> * ext/session/session.c php.ini-dist php.ini-recommended: MFH. Trans SID related changes. * ext/session/session.c: Forgot to update source default. 2002-08-14 kalowsky <kalowsky@pb1.pair.com> * ext/imap/php_imap.c: Comming a fix for a compile error found in Bug #15630 * ext/odbc/php_odbc.c: Silencing a compilier warning on windows * ext/java/config.m4: Updating the error message to state a difference between libraries and include. Also restoring old for search to keep BC on configure 2002-08-14 chregu <chregu@pb1.pair.com> * ext/domxml/php_domxml.c: - let DomNode->replace_child always behave correctly (acc. to W3C specs) if the newchild had the same parent as the old child, nothing happened, which seemed strange behaviout to me... 2002-08-14 kalowsky <kalowsky@pb1.pair.com> * NEWS: Giving Ilia his props * sapi/apache/mod_php4.c: Fix for Bug #9280 with regards to an Expect header. patch submitted by Ilia <ilia@prohost.org> * ext/java/config.m4: Adding a check for the binaries rather than just the directories. 2002-08-14 chregu <chregu@pb1.pair.com> * ext/domxml/php_domxml.c: DomNode->replace_node moves instead of copies node. 2002-08-14 kalowsky <kalowsky@pb1.pair.com> * ext/java/config.m4: JavaC doesn't take flags like this, Java jar does, pay attention kalowsky * ext/java/config.m4: cleaning up the displayed path (removing the ./ in the middle) * sapi/nsapi/config.m4: Fix for Bug #18794, and probably various others with nsapi * ext/odbc/php_odbc.c: correcting these to be only docref's not docref1's * ext/java/config.m4 ext/java/java.c: Adding in MSG_RESULT check and \n for configure output viewing 2002-08-14 chregu <chregu@pb1.pair.com> * ext/domxml/php_domxml.c: - fix for bug #17771 (insert_before misbeaviour (DOM L2 spec.)) - DomNode->insert_before behaves now according to W3C spec ie. new_child is moved, not copied. (chregu) 2002-08-14 kalowsky <kalowsky@pb1.pair.com> * ext/java/config.m4: Correcting mis-versioned comment * ext/java/config.m4: JAVA_INCLUDE, not JAVE_INCLUDE * ext/java/config.m4: A little more clean up on the error messages, with a sample JDK 1.3 path to libjava.so * ext/java/config.m4: correcting the AC_MSG_RESULT line * ext/java/config.m4: adding in PATH check for JavaJar as well... 2002-08-14 chregu <chregu@pb1.pair.com> * ext/domxml/php_domxml.c ext/domxml/php_domxml.h: - Added some namespace support with DomNode->add_namespace(uri, prefix) and DomDocument->create_element_ns(uri, nodename) (chregu) 2002-08-14 kalowsky <kalowsky@pb1.pair.com> * ext/java/config.m4: Fix a bug for a user provided path as eru. 2002-08-14 chregu <chregu@pb1.pair.com> * ext/domxml/php_domxml.h: bump up api version number * ext/domxml/php_domxml.c: fix for bug #18196 * ext/domxml/php_domxml.c: fix for bug #18395 (DOMXML crash on removing previously created attributes) * ext/domxml/php_domxml.c: - DomNode->child_nodes() returns empty array instead of false, if no - child nodes are found (chregu) 2002-08-14 helly <helly@pb1.pair.com> * NEWS: -remove corrupt entry until change has been completed -minor fixes -honor Derick for his idea error messages to point to the manual 2002-08-14 yohgaki <yohgaki@pb1.pair.com> * php.ini-dist php.ini-recommended: Added trans_sid security risk examples. 2002-08-14 dets <dets@pb1.pair.com> * ext/mbstring/mbfilter.c ext/mbstring/mbfilter.h ext/mbstring/mbstring.c ext/mbstring/mbstring.h ext/mbstring/unicode_table_ru.h: Revert from patch added mb_guess_encoding to previous version 2002-08-14 yohgaki <yohgaki@pb1.pair.com> * ext/mbstring/README: Add warning... It seems posting message to php-dev/php-cvs does not work! 2002-08-14 dets <dets@pb1.pair.com> * ext/mbstring/mbfilter.c ext/mbstring/mbfilter.h ext/mbstring/mbstring.c ext/mbstring/mbstring.h ext/mbstring/unicode_table_ru.h: Added new function mb_guess_encoding, based on symbols rating 2002-08-14 kalowsky <kalowsky@pb1.pair.com> * NEWS: Adding in updates for the fixes to ODBC, and markers for the pack/unpack memory leaks 2002-08-13 kalowsky <kalowsky@pb1.pair.com> * ext/odbc/php_odbc.c: Fix for Bug #17572 * ext/standard/pack.c: Fixed another memory leak, patch provided by Ilia <ilia@prohost.org> * ext/standard/pack.c: Fixes a memory leak which results when an invalid format code is specified. Patch by Ilia <ilia@prohost.org> * CODING_STANDARDS: As per the suggestion on php-dev, now please #ifdef 0_<username here> * NEWS: Updating to reflect ODBC additons and default timeout * ext/odbc/php_odbc.c: fixing my misunderstanding of the php_error_docref * ext/cpdf/cpdf.c: Removing the PHP_31 tag... 2002-08-13 helly <helly@pb1.pair.com> * CODING_STANDARDS: -better use external example -say NULL is intended -correct example * php.ini-dist php.ini-recommended: docref_root and docref_ext for php_error_docref() 2002-08-13 kalowsky <kalowsky@pb1.pair.com> * main/network.c: Correcting as per discussion with Iliaa and Edin on efnet://#php.bugs * main/network.c: Bug Fix #16113, as reflective of a php-dev convo between wez and iliaa * ext/odbc/php_odbc.c: Fixing the php_error_docref's to be compliant with the standard. 2002-08-13 helly <helly@pb1.pair.com> * CODING_STANDARDS: comments & php_error_docref * ext/exif/exif.c: some work on the messages * main/main.c: allow target anchor only for docref parameter 2002-08-13 fujimoto <fujimoto@pb1.pair.com> * Makefile.global: cleaning up include files created by PHP_DEFINE when 'make distclean'ed 2002-08-13 kalowsky <kalowsky@pb1.pair.com> * ext/qtdom/config.m4: Fix for Bug #18873 2002-08-13 Rasmus Lerdorf <rasmus@pb1.pair.com> * ext/standard/file.c ext/standard/dir.c: Missing proto * ext/oci8/oci8.c: Single-line comments please 2002-08-13 kalowsky <kalowsky@pb1.pair.com> * ext/odbc/php_odbc.c: spelling error * ext/odbc/php_odbc.c: Added more folding markers.... 2002-08-13 Rasmus Lerdorf <rasmus@pb1.pair.com> * ext/ldap/ldap.c ext/standard/basic_functions.c ext/mbstring/mbstring.c ext/xmlrpc/xmlrpc-epi-php.c main/output.c: bool not boolean * main/output.c: Use int, not integer. * ext/standard/dir.c: dir() returns an instantiated object, not a class. * ext/mcve/mcve.c: Don't use long as a type * ext/ftp/php_ftp.c: Fix typo * ext/exif/exif.c: Don't use long as a type 2002-08-13 kalowsky <kalowsky@pb1.pair.com> * ext/db/db.c: Fix for Bug #18746 by sfox and I 2002-08-13 Rasmus Lerdorf <rasmus@pb1.pair.com> * sapi/apache/php_apache.c: Fix proto 2002-08-13 kalowsky <kalowsky@pb1.pair.com> * ext/odbc/php_odbc.c: Let to php_error_docref revolution begin 2002-08-12 helly <helly@pb1.pair.com> * ext/exif/exif.c: use of php_error_docref * main/main.c main/php.h: fix for extension = "" make php_verror available * ext/gd/libgd/gd.c: -wrong fabsf define for MSVC.6 -MIN and MAX only if undefined 2002-08-12 kalowsky <kalowsky@pb1.pair.com> * ext/odbc/php_odbc.c: Point corrected by Markus * ext/odbc/php_odbc.c: Umm forgot to clean up the error messages, and add a stop for looping. * ext/odbc/php_odbc.c: cleaned up to work with OpenLink iODBC better 2002-08-12 wez <wez@pb1.pair.com> * ext/curl/config.m4 ext/curl/curl.c ext/curl/curlstreams.c ext/curl/php_curl.h ext/standard/basic_functions.c: Implement curl based wrappers. Currently read-only, and http is the only thing tested. Because of this, using them can be controlled by configure: --with-curlwrappers Use CURL for url streams Not for production use... This enables http, https, ftp and ldap protocols as streams. 2002-08-12 helly <helly@pb1.pair.com> * ext/gd/libgd/gd.c: ups wrong include committed * main/spprintf.c: increase allocation chunks * ext/gd/config.m4 ext/gd/libgd/gd.c: check for fabsf and floorf in config.m4 msvc.6 needs a define, msvc.net needs special treatment 2002-08-12 chregu <chregu@pb1.pair.com> * ext/domxml/php_domxml.c ext/domxml/php_domxml.h: - Added $DomDocument->xinclude() for substitution of XIncludes in a DomDocument (chregu) 2002-08-12 helly <helly@pb1.pair.com> * ext/gd/libgd/gd.c: more conversion fixes 2002-08-12 edink <edink@pb1.pair.com> * main/spprintf.c main/spprintf.h: Export spprintf() so that extension can link properly on win32. 2002-08-12 pbannister <pbannister@pb1.pair.com> * main/php_ini.c: Minor cleanups to path building and php*.ini search logic. Made path_seperator string static (which solves the lookup problems Sebastian saw). 2002-08-12 kalowsky <kalowsky@pb1.pair.com> * ext/odbc/php_odbc.c: okay confirmation they don't exist in another driver... they're gone 2002-08-11 helly <helly@pb1.pair.com> * ext/gd/libgd/gd.c: -quick hack to allow compilation under windows again -correct solution to follow tomorrow 2002-08-11 kalowsky <kalowsky@pb1.pair.com> * win32/php4dllts.dsp: Added the php_odbc_includes.h file * ext/odbc/php_odbc.c ext/odbc/php_odbc.h: The start of adding odbc_data_source() functionality 2002-08-11 helly <helly@pb1.pair.com> * ext/gd/libgd/gd_gd.c: missed to commit this fix: correct since this is only a flag * ext/gd/libgd/gd2copypal.c ext/gd/libgd/gd_jpeg.c ext/gd/libgd/gdft.c ext/gd/libgd/gd.c: try even more to fix those warnings..... 2002-08-11 wez <wez@pb1.pair.com> * ext/standard/http_fopen_wrapper.c: Missing word... 2002-08-11 kalowsky <kalowsky@pb1.pair.com> * ext/java/config.m4: The start of adding in MacOSX compatibility. No objections on the php-dev list from the sent patch for a week. Test and fix. * TODO: removing the TODOs done already. 2002-08-11 wez <wez@pb1.pair.com> * ext/standard/ftp_fopen_wrapper.c ext/standard/http_fopen_wrapper.c main/php_streams.h: Properly implement TSRM parameters to the new log_error function... (Thanks Marcus!) Add a convenience macro for importing a stream from a zval. 2002-08-11 helly <helly@pb1.pair.com> * ext/gd/libgd/gd_topal.c: try to get this work ... * ext/gd/libgd/gd.c ext/gd/libgd/gd_gd.c ext/gd/libgd/gd_gd2.c ext/gd/libgd/gd_jpeg.c ext/gd/libgd/gd_png.c ext/gd/libgd/gd_topal.c ext/gd/libgd/gd_wbmp.c ext/gd/libgd/gdft.c ext/gd/libgd/gdhelpers.c ext/gd/libgd/wbmp.c: try to fix those warnings..... 2002-08-11 wez <wez@pb1.pair.com> * main/network.c: More verbosity when activating SSL on a socket fails. * README.STREAMS ext/standard/ftp_fopen_wrapper.c ext/standard/http_fopen_wrapper.c main/php_streams.h main/streams.c: Introduce an error stack for wrappers, to help prevent multiple errors and warnings (some of which are bogus) when there are problems opening streams. Implement sanity check on the mode used to open ftp and http connections. This fixes Bug 12004. * main/main.c: Minor fix for html_errors=on in php_error_docref. 2002-08-11 yohgaki <yohgaki@pb1.pair.com> * ext/zlib/zlib.c php.ini-dist php.ini-recommended: Changed my mind. Let users decided whether users want larger chunk size or not. enable output_buffering also. (Marcus, Yasuo) * ext/zlib/zlib.c: Generally speaking, sending packets less than 1KB is not efficient. We're better to take some benchmarks see if removing extra buffer is actually a good idea or not. 2002-08-10 helly <helly@pb1.pair.com> * sapi/cli/php_cli.c: change order of initialisation to allow making filename available through $_SERVER variables (Bug #18657) 2002-08-10 wez <wez@pb1.pair.com> * main/streams.c: remove obsolete TSRMLS_FETCH * ext/openssl/openssl.c: correct proto 2002-08-10 Tomas V.V.Cox <cox@pb1.pair.com> * pear/System.php: ZE2 fix on calls to mkdir() (thanks Brad Bulger <tater@potatoe.com>) 2002-08-10 helly <helly@pb1.pair.com> * ext/standard/url_scanner_ex.c ext/standard/url_scanner_ex.re ext/zlib/zlib.c main/output.c: corrected handling of internal output buffers minor fixs * ext/zlib/zlib.c: no need to start additional first buffer when output compression is first buffer * ext/zlib/zlib.c: should fix all windows warnings 2002-08-10 sebastian <sebastian@pb1.pair.com> * main/network.c: Fix ZTS builds. 2002-08-09 helly <helly@pb1.pair.com> * ext/zlib/php_zlib.h ext/zlib/zlib.c php.ini-recommended ext/standard/head.c main/main.c main/output.c main/php_output.h php.ini-dist: Improved handling of output buffers (see news)\n#No trim for the string parameter... * main/main.c: docref shall either be NULL or a reference to a manual page without an extension or an external reference starting with 'http://'. 2002-08-09 georg <georg@pb1.pair.com> * ext/mysql/php_mysql.c: forgot to remove another LOCAL_INFILE opion call 2002-08-09 wez <wez@pb1.pair.com> * configure.in main/network.c ext/standard/file.c: Centralize some blocking socket related code. * ext/openssl/tests/001.phpt: syntax highlighting for vim 2002-08-09 helly <helly@pb1.pair.com> * ext/standard/head.c: possible memoryleak 2002-08-09 georg <georg@pb1.pair.com> * ext/mysql/libmysql/acinclude.m4: fixed bug #18815 2002-08-09 yohgaki <yohgaki@pb1.pair.com> * php.ini-dist: Move unserialize_callback_func description a little * php.ini-recommended: Add unserialize_callback_func to php.ini-recommended. * php.ini-recommended php.ini-dist: Added note for output_handler usage. (with Marcus and Adam's fix) 2002-08-09 James Cox <imajes@pb1.pair.com> * main/streams.c: Copy() fixed to return 1 on 0 byte files. Patch by Ilia A <ilia@prohost.org>. 2002-08-08 yohgaki <yohgaki@pb1.pair.com> * ext/standard/file.c: Remove duplicated checks. 2002-08-08 helly <helly@pb1.pair.com> * main/main.c: No missleading 2002-08-08 James Cox <imajes@pb1.pair.com> * ext/gd/libgd/gdft.c: thunder seems to have stopped 2002-08-08 hholzgra <hholzgra@pb1.pair.com> * ext/standard/info.c: reverting ' to \" to stop stupid discussions although i still do not believe the arguments are reasonable ... 2002-08-08 helly <helly@pb1.pair.com> * main/main.c: Say FIXME to non function calls and non TSRM builds. Both will currentls not show a default reference. * main/main.c main/php.h main/php_globals.h: rename php_error_func<n> to php_error_docref and support Wez idea that solves ToDo requirement to point to PHP Manual in error messages. 2002-08-08 sebastian <sebastian@pb1.pair.com> * ext/ftp/ftp.c ext/ftp/php_ftp.c: Fix warnings. 2002-08-08 helly <helly@pb1.pair.com> * ext/standard/php_mail.h: those are allways defined -> fixes warning in basic_functions.c 2002-08-08 James Cox <imajes@pb1.pair.com> * ext/gd/libgd/gdft.c: Reverting patch. after more investigation this doesn't help in all that many cases, and with Wez's better patch, sometimes degrade's quality. 2002-08-08 hholzgra <hholzgra@pb1.pair.com> * ext/standard/info.c: the order to do things is save-compile-commit no variations and make sure editor and shell are in the same dir :( * ext/standard/info.c: fix for #18782 (setting background color without making sure the text color is readable on it) someone should change all this to make use of CSS as we already have a CSS block in there, but i do not know enough about it oh, btw: changed all the ugly uses of \" in tag attriutes to ' as i was already on it ;) 2002-08-08 sesser <sesser@pb1.pair.com> * main/rfc1867.c: A full hard disk is no reason to leak memory... 2002-08-08 mfischer <mfischer@pb1.pair.com> * CODING_STANDARDS: - Add note how php_error() messages SHOULD (rfc2119) look like. 2002-08-08 georg <georg@pb1.pair.com> * ext/mysql/php_mysql.c: Ups, forgot to remove load_infile tests. Thx to Brad Bulgar 2002-08-08 kalowsky <kalowsky@pb1.pair.com> * sapi/nsapi/config.m4: fix for bug #18794, not checking for actual files 2002-08-08 yohgaki <yohgaki@pb1.pair.com> * main/php_variables.c: Add some assertion * ext/iconv/iconv.c: Forgot this one. Fix build * ext/iconv/config.m4: Fix build 2002-08-07 georg <georg@pb1.pair.com> * ext/mysql/CREDITS ext/mysql/php_mysql.c: added zend_error messages for deprecated functions inserted zak and me in author list/credits * ext/mysql/php_mysql.c: removed unsued constants (MYSQL_USE_RESULT and MYSQL_STORE_RESULT) 2002-08-07 helly <helly@pb1.pair.com> * main/php.h main/main.c: -new functions php_error_func<0> to support unified error messages 2002-08-07 phanto <phanto@pb1.pair.com> * sapi/cgi/cgi_main.c: dump memory leaks on shutdown 2002-08-07 jtate <jtate@pb1.pair.com> * ext/domxml/php_domxml.c: php_domxml.c * ext/domxml/php_domxml.c: 2002-08-07 helly <helly@pb1.pair.com> * ext/exif/exif.c: left on debug infos * ext/exif/exif.c: Ignore additional thumbnails 2002-08-07 bradmssw <bradmssw@pb1.pair.com> * ext/mcve/mcve.c ext/mcve/php_mcve.h: more syncing with libmcve-3.0 2002-08-07 yohgaki <yohgaki@pb1.pair.com> * ext/gettext/gettext.c: Fixed crash. Patch by <kilbi@rad.rwth-aachen.de> 2002-08-06 kalowsky <kalowsky@pb1.pair.com> * ext/java/java.c: A folding we will go, a folding we will go, adding the fold and vim lines to make this easier to follow 2002-08-06 markonen <markonen@pb1.pair.com> * Makefile.global acinclude.m4 configure.in: Fix the framework support * ext/iconv/iconv.c: Updated proto to match the function (fix compile bustage on osx) * Makefile.global sapi/cgi/config.m4 sapi/cli/config.m4: The link lines don't need any of $DEFS, $INCLUDES, $EXTRA_INCLUDES or $CPPFLAGS, right? Removed them. Added frameworks to $COMMON_FLAGS. 2002-08-06 bradmssw <bradmssw@pb1.pair.com> * ext/mcve/mcve.c ext/mcve/php_mcve.h: sync to libmcve-3.0 2002-08-06 Tomas V.V.Cox <cox@pb1.pair.com> * pear/PEAR/Registry.php: Changed Windows 9x detection code (reported by Alex Merz) 2002-08-06 markonen <markonen@pb1.pair.com> * sapi/cgi/config.m4 sapi/cli/config.m4 Makefile.global acinclude.m4 configure.in: Support compiling and linking against Darwin / Mac OS X frameworks 2002-08-06 kalowsky <kalowsky@pb1.pair.com> * ext/exif/exif.c: Keeping function prototype variables the same 2002-08-06 helly <helly@pb1.pair.com> * ext/exif/exif.c: datatype inconsistency found by Dan Kalowsky 2002-08-06 Sascha Schumann <sas@pb1.pair.com> * ext/standard/var_unserializer.c: Touch file 2002-08-05 phanto <phanto@pb1.pair.com> * ext/com/COM.c: removed a possible NULL pointer referencing inside an error handler * ext/com/VARIANT.c: found a memleak 2002-08-05 kalowsky <kalowsky@pb1.pair.com> * ext/imap/php_imap.c ext/imap/php_imap.h: Removing the imap_popen command... because as Jani puts it "it never worked and it never will work" until IMAP servers support this feature. 2002-08-05 venaas <venaas@pb1.pair.com> * ext/ldap/ldap.c: Made ldap_connect/bind/unbind() use zend_parse_parameters() 2002-08-05 helly <helly@pb1.pair.com> * ext/standard/info.c: Correct carset if iconv is active * main/output.c main/php_output.h: Added php_ob_handler_used to check if a specific output handler is used in c. * ext/iconv/iconv.c: ws fix * main/SAPI.c: -keep mimetype until sapi deactivation -move NULL check for sapi_apply_default_charset to proper position. * ext/iconv/iconv.c: -fix one warning -send Content-Type Header with charset 2002-08-05 alan_k <alan_k@pb1.pair.com> * pear/Console/Getopt.php: revert change - this was due to an bug in php HEAD a few days ago 2002-08-05 helly <helly@pb1.pair.com> * win32/php4dll.dsp win32/php4dllts.dsp: Add html_entities.c 2002-08-05 phanto <phanto@pb1.pair.com> * win32/php4dllts.dsp: added testcases to project file 2002-08-05 sniper <sniper@pb1.pair.com> * NEWS: consistency 2002-08-05 alan_k <alan_k@pb1.pair.com> * pear/Console/Getopt.php: Fixed array_shift messing up array_slice.. 2002-08-05 helly <helly@pb1.pair.com> * NEWS: :-) * ext/standard/basic_functions.c main/output.c main/php_output.h: -New function ob_list_handlers 2002-08-04 Shane Caraveo <shane@pb1.pair.com> * ext/standard/var_unserializer.c ext/standard/var_unserializer.re ext/standard/php_var.h: need to export var_replace and var_destroy for win32 2002-08-04 helly <helly@pb1.pair.com> * ext/mbstring/mbstring.dsp: move html_entities.c to proper place * ext/standard/info.c: -Send charset US-ASCII or ini setting default_charset. 2002-08-04 sniper <sniper@pb1.pair.com> * ext/mhash/mhash.c ext/mhash/php_mhash.h: Add PHP_MINFO_* 2002-08-04 helly <helly@pb1.pair.com> * ext/mbstring/mbfilter.c: -Correct mime_name for HTML-ENTITIES encoding is of cause US-ASCII -Full list of ASCII aliases 2002-08-04 sander <sander@pb1.pair.com> * pear/Console/Getopt.php: Nuke notice (thanks to Arnaud Limbourg) 2002-08-04 helly <helly@pb1.pair.com> * ext/mbstring/mbregex.c ext/mbstring/mbstring.c: -Fix warnings (fixed all?) 2002-08-04 georg <georg@pb1.pair.com> * ext/standard/info.c: ups.. :) 2002-08-04 gluke <gluke@pb1.pair.com> * ext/mnogosearch/php_mnogo.c: - a small fix to mnogosearch extension (affecting UDM_BROWSER_CHARSET) 2002-08-04 georg <georg@pb1.pair.com> * ext/standard/info.c: added meta tag (w3c compliance) Thx to Ilia Alshanetsky (ilia@prohost.org) 2002-08-04 helly <helly@pb1.pair.com> * ext/mbstring/mbstring.dsp: -Add new file to windows build * ext/mbstring/config.m4 ext/mbstring/html_entities.c ext/mbstring/mbfilter.c ext/mbstring/mbfilter.h ext/mbstring/tests/020.phpt: -New encoding/decoding HTML-ENTITIES. * ext/mbstring/mbstring.c: -Allow double quotes for encoding lists (if used in ini for example) -New parameter 'L' for mb_http_input() to retieve input encoding as comma separated string. comma separated string. (marcus) 2002-08-03 jflemer <jflemer@pb1.pair.com> * ext/standard/tests/general_functions/proc_open.phpt: Close pipes to avoid deadlock. Submitted By: Melvyn Sopacua <msopacua@idg.nl> 2002-08-03 kalowsky <kalowsky@pb1.pair.com> * ext/imap/php_imap.c: Cleaning up the imap_get_quotaroot return array to remove useless data 2002-08-03 Rasmus Lerdorf <rasmus@pb1.pair.com> * main/SAPI.c: Yup, sizeof() includes the space for the \0 2002-08-03 helly <helly@pb1.pair.com> * run-tests.php: -additional section INI that allows to set special ini settings on call by adding '-c foo=bar' strings to php call. Each line must have format foo=bar. This of cause only works for cli version. -made sections SKIPIF,INI,GET,POST optional 2002-08-03 gluke <gluke@pb1.pair.com> * ext/mnogosearch/index.php: * ext/mnogosearch/index.php ext/mnogosearch/php_mnogo.c: - UDM_PARAM_STORED mnogosearch parameter has been added to set stored address. 2002-08-03 Andi Gutmans <andi@pb1.pair.com> * ext/mbstring/mbstring.c ext/mbstring/mbstring.h: - Fix build on Windows. Also please don't use Java style opening function - bracket indentation. 2002-08-03 gluke <gluke@pb1.pair.com> * ext/mnogosearch/php_mnogo.h ext/mnogosearch/index.php ext/mnogosearch/php_mnogo.c: - An Udm_Make_Excerpt function has been added to mnogosearch extension to support excerpts while using with mnogosearch-3.2.5 or later. 2002-08-03 rodif_bl <rodif_bl@pb1.pair.com> * ext/standard/array.c: one last fix for array_shift 2002-08-02 jflemer <jflemer@pb1.pair.com> * ext/standard/exec.c: Fix typo in #if. Bug #17538. 2002-08-02 helly <helly@pb1.pair.com> * ext/mbstring/mbfilter.c ext/mbstring/mbfilter.h ext/mbstring/mbregex.c ext/mbstring/mbstring.c ext/mbstring/mbstring.h main/rfc1867.c: -use const to clarify code -fix tsrmls build (therefore rfc1867.c) 2002-08-02 hholzgra <hholzgra@pb1.pair.com> * ext/standard/basic_functions.c ext/standard/config.m4 ext/standard/php_string.h ext/standard/string.c: added money_format() function this is similar to C-libs strfmon(), using the same format string semantics but a different function prototype, so i decided to give it a more speaking name similar to number_format() 2002-08-02 gluke <gluke@pb1.pair.com> * ext/mnogosearch/php_mnogo.c: - UDM_PARAM_WORD_MATCH icorrect behavior has been fixed in mnogosearch extension 2002-08-02 hirokawa <hirokawa@pb1.pair.com> * ext/standard/string.c main/SAPI.c main/SAPI.h main/main.c main/php_content_types.c main/php_main.h main/php_variables.c main/rfc1867.c ext/mbstring/mbstring.c ext/mbstring/mbstring.h: made sapi_register_treat_data() to support multibyte input encoding translation without MBSTR_ENC_TRANS and changed php_treat_data to php_default_treat_data. 2002-08-01 sr <sr@pb1.pair.com> * main/SAPI.c: Fixed wrong usage of strncmp. 2002-08-01 rodif_bl <rodif_bl@pb1.pair.com> * ext/standard/array.c: array_pop wasnt setting next index 2002-08-01 sniper <sniper@pb1.pair.com> * ext/standard/array.c: That was not correct.. * ext/standard/array.c: Reset index when doing array_pop() * ext/standard/tests/array/006.phpt: Add test for the index resetting. 2002-08-01 Rasmus Lerdorf <rasmus@pb1.pair.com> * ext/standard/exec.c: Ugh 2002-08-01 kalowsky <kalowsky@pb1.pair.com> * ext/imap/php_imap.c: Adding in some BC for users to imap_get_quota() function 2002-08-01 sniper <sniper@pb1.pair.com> * ext/standard/tests/array/005.phpt ext/standard/tests/array/006.phpt: Added tests for array_shift/array_pop. * ext/standard/array.c: Nuke compile warning. * ext/standard/array.c: - Removed the DOS line endings - Changed the '//' comment (this is C, not C++) to /* */ * tests/func/006.phpt: Fix the levels. (php.ini-dist has output_buffering OFF) * tests/lang/034.phpt: Use the constant instead of string for locale type. 2002-08-01 Sascha Schumann <sas@pb1.pair.com> * ext/pgsql/config.m4: MFH *.a check 2002-08-01 helly <helly@pb1.pair.com> * main/SAPI.c: - free mimetype and statusline early if no longer needed or in deactivation 2002-08-01 Rasmus Lerdorf <rasmus@pb1.pair.com> * main/SAPI.c: Need room for the \0 here to avoid an overflow 2002-08-01 Zeev Suraski <zeev@pb1.pair.com> * ext/mbstring/mbstring.c: MFH per Rui's request 2002-08-01 rodif_bl <rodif_bl@pb1.pair.com> * ext/standard/array.c: made array_shift re-index like it did before previous fix 2002-08-01 yohgaki <yohgaki@pb1.pair.com> * main/php_variables.c: MFH Cannot take NULL w/o mbstring. 2002-07-31 jason <jason@pb1.pair.com> * NEWS: perhaps this tiem i will get it right * NEWS: Fix unwrapped entry * NEWS: Fix my broken entry 2002-07-31 Sterling Hughes <sterling@pb1.pair.com> * ext/curl/curl.c: add support for the curl dns cache 2002-07-31 helly <helly@pb1.pair.com> * ext/exif/exif.c: -fix warnings in windows build * main/SAPI.c: -problem with CLI/mbstring/output buffering 2002-07-31 Zeev Suraski <zeev@pb1.pair.com> * main/php_variables.c: Fix for non-mbstring builds. Bad Yasuo! :) * ext/mbstring/mbstring.c: Fix crash 2002-07-31 kalowsky <kalowsky@pb1.pair.com> * ext/odbc/php_odbc_includes.h: WS * ext/odbc/php_odbc.c: Just adding in an error check that seems to work here well. 2002-07-31 sniper <sniper@pb1.pair.com> * ext/standard/array.c: Reverted the patch..it breaks the original behaviour of at least array_shift. 2002-07-31 kalowsky <kalowsky@pb1.pair.com> * ext/imap/php_imap.c ext/imap/php_imap.h: removing the useless +1's on sizeof() and adding the mail_parameter for the getquot inside the imap_get_quotaroot function. thank Jani. 2002-07-30 kalowsky <kalowsky@pb1.pair.com> * ext/imap/php_imap.c: fixes a typo in the word "limit", adds the null character to the strlen, and seems to make imap_get_quotaroot return the correct values despite cclients claim of "getquotaroot list improper". 2002-07-30 rodif_bl <rodif_bl@pb1.pair.com> * ext/standard/array.c: fixed bugs 16063 and 16068 increased preformance of array_pop and array_shift 2002-07-30 sesser <sesser@pb1.pair.com> * ext/ftp/php_ftp.c: ftp_close returns now TRUE on success and FALSE on failure. 2002-07-30 kalowsky <kalowsky@pb1.pair.com> * ext/standard/filestat.c: Commiting Steph@php.net's patch to re-enable touch on Win32 machines 2002-07-30 Rasmus Lerdorf <rasmus@pb1.pair.com> * ext/ext_skel: Add --skel=dir option to ext_skel (patch from David Viner) * ext/standard/parsedate.y NEWS: Fix strtotime() "next" keyword handling. * NEWS: WTF? What sort of bogus commit was that? Fine, here you go. 2002-07-30 sniper <sniper@pb1.pair.com> * NEWS: . 2002-07-30 Rasmus Lerdorf <rasmus@pb1.pair.com> * NEWS: . * ext/standard/string.c: Fix for #18638 (str_rot13 bug) 2002-07-30 dickmeiss <dickmeiss@pb1.pair.com> * ext/yaz/php_yaz.c: Fixed proxy setting for ZOOM 2002-07-30 sniper <sniper@pb1.pair.com> * NEWS: hot, damn hot. 2002-07-29 Sterling Hughes <sterling@pb1.pair.com> * ext/xslt/sablot.c: add sablotron version, patch by Christian Stocker... 2002-07-29 dickmeiss <dickmeiss@pb1.pair.com> * ext/yaz/php_yaz.c: Make PHP part of Z39.50 implementation name * ext/yaz/php_yaz.c: Use type ext rather than raw for ZOOM record fetch 2002-07-29 kalowsky <kalowsky@pb1.pair.com> * NEWS: updating the NEWS file 2002-07-29 chregu <chregu@pb1.pair.com> * ext/domxml/php_domxml.c: - nodename is not always set, check if it really is. - make force_ref for aliases as well 2002-07-29 edink <edink@pb1.pair.com> * win32/php4dllts.dsp: Fixed windows build by adding sha1.c and sha1.h to the project file. * ext/standard/dir.c: Fixed bug #14657 (patch by Steph Fox) * win32/readdir.c win32/readdir.h: Fixed bug #11214 (patch by Steph Fox) * main/php_ini.c: First try to open php-SAPI.ini and if it fails fall back to regular php.ini file. For example cli version of PHP will first try to open php-cli.ini in the usual ini file search path and only if it fails will it try to open php.ini using the same path. 2002-07-29 Sascha Schumann <sas@pb1.pair.com> * NEWS: style police 2002-07-29 sniper <sniper@pb1.pair.com> * sapi/apache/config.m4 sapi/apache2filter/config.m4 acinclude.m4: MFH: Fix for Apache version check. 2002-07-28 sniper <sniper@pb1.pair.com> * ext/mbstring/mbstring.c: MFH 2002-07-28 yohgaki <yohgaki@pb1.pair.com> * ext/xmlrpc/config.m4: FHM * ext/xmlrpc/config.m4: Allow xmlrpc-epi header files stored under include/xmlrpc-epi 2002-07-28 derick <derick@pb1.pair.com> * ext/standard/md5.c ext/standard/sha1.c: - Copy and paste error -> unify error messages 2002-07-28 sesser <sesser@pb1.pair.com> * ext/standard/basic_functions.c ext/standard/config.m4 ext/standard/php_standard.h ext/standard/sha1.c ext/standard/sha1.h: Added sha1, sha1_file functions. * ext/standard/filestat.c: MFH 2 * ext/standard/filestat.c: MFH 2002-07-28 helly <helly@pb1.pair.com> * php.ini-dist php.ini-recommended: -add & document ini settings for exif * ext/exif/exif.c: -decode several MarkerNotes -correct offset information in debug mode 2002-07-28 tal <tal@pb1.pair.com> * pear/scripts/pear.in: * Fixed E_NOTICE on pear -V 2002-07-28 sesser <sesser@pb1.pair.com> * NEWS: (re)added /ext/ftp news 2002-07-28 sr <sr@pb1.pair.com> * main/SAPI.c ext/zlib/php_zlib.h ext/zlib/zlib.c: Commit patch as discussed on LinuxTag and posted to php-dev in June. Disables zlib.output_compression for scripts with image/ content-type header (fixes bug #16109) and makes it possible to switch zlib.output_compression during script execution before the headers are sent. 2002-07-28 sniper <sniper@pb1.pair.com> * NEWS: - Removed the 2 last entries. * README.CVS-RULES: No exceptions. 2002-07-28 yohgaki <yohgaki@pb1.pair.com> * ext/pgsql/pgsql.c: Unify error messages 2002-07-28 helly <helly@pb1.pair.com> * ext/gd/gd.c: forgot to move imeageellipse out of #ifdef HAVE_LIBGD20 2002-07-28 yohgaki <yohgaki@pb1.pair.com> * ext/mbstring/mbstring.c: MFH * ext/mbstring/mbstring.c: Fixed query string handling. Now some.php?a&b=1;c works. * main/php_variables.c: MFH 2002-07-28 tal <tal@pb1.pair.com> * pear/scripts/pear.in: pear -V now shows pear version, php version and ZE version. 2002-07-28 Stig Bakken <ssb@pb1.pair.com> * pear/package-PEAR.xml: * feature/fixed bug * pear/PEAR/Command/Install.php: * added "upgrade-all" command * pear/PEAR/Installer.php: * don't abort install if errors are found in the package, display a warning instead 2002-07-28 yohgaki <yohgaki@pb1.pair.com> * main/php_variables.c: Fixed some.php?a&b&c does not initilize $_GET['a'], $_GET['b'], $_GET['c'] when mbstr-enc-trans is disabled. 2002-07-27 phanto <phanto@pb1.pair.com> * win32/php4dllts.dsp: add dispatch.c 2002-07-27 hirokawa <hirokawa@pb1.pair.com> * ext/mbstring/mbstring.c main/SAPI.c main/SAPI.h: fixed: output encoding translation by mb_output_handler() in ext/mbstring was not usable when Content-Type is set by header(). 2002-07-27 sesser <sesser@pb1.pair.com> * ext/ftp/ftp.c: Do not leak data connection. 2002-07-26 sniper <sniper@pb1.pair.com> * ext/curl/curl.c: - Fix bug: #18509, e.g. setting CURLOPT_BINARYTRANSFER succeeds always. - Also set the binary mode ONLY if the passed value is true.. 2002-07-26 fmk <fmk@pb1.pair.com> * ext/ftp/ftp.c: Fizing ZTS build 2002-07-26 sesser <sesser@pb1.pair.com> * ext/ftp/ftp.c ext/ftp/ftp.h ext/ftp/php_ftp.c ext/ftp/php_ftp.h: [EXPERIMENTAL] Added functions for asynchronous FTP transfers 2002-07-26 helly <helly@pb1.pair.com> * ext/exif/exif.c: Missing Photoshop tags 2002-07-26 kalowsky <kalowsky@pb1.pair.com> * ext/imap/php_imap.c: forgot to make the same change to imap_get_quota... * ext/imap/php_imap.c: Minor memory fix suggested by Zeev 2002-07-26 georg <georg@pb1.pair.com> * ext/standard/datetime.c: Bugfix: #18532 Fixed week number calculation in accordance with ISO 8601 2002-07-26 sesser <sesser@pb1.pair.com> * ext/ftp/php_ftp.c: fixed cut & paste typo 2002-07-26 kalowsky <kalowsky@pb1.pair.com> * ext/imap/php_imap.c ext/imap/php_imap.h: Adding initial support for PHP imap_get_quotaroot * ext/imap/php_imap.c ext/imap/php_imap.h: (PHP imap_get_quota) updated to properly reflect the RFC 2087 as per bug #14673 per RFC 2087, closes bug #14673 (kalowsky, Sander Steffann) 2002-07-26 Sascha Schumann <sas@pb1.pair.com> * sapi/thttpd/thttpd_patch: Fix segfault due to unchecked null pointer 2002-07-26 Tomas V.V.Cox <cox@pb1.pair.com> * pear/Archive/Tar.php: In theory this will fix a problem in Window trying to delete a not closed file 2002-07-26 helly <helly@pb1.pair.com> * ext/gd/gd.c: reapply patch for imageellipse beeing wrappet to imagearc if missing 2002-07-26 sesser <sesser@pb1.pair.com> * ext/ftp/CREDITS ext/ftp/ftp.c ext/ftp/ftp.h ext/ftp/php_ftp.c ext/ftp/php_ftp.h: Added (Auto)Resuming functionality to ftp_(f)get/(f)put via optional 5th parameter. 2002-07-26 Tomas V.V.Cox <cox@pb1.pair.com> * pear/scripts/pear.bat: use -d output_buffer=0 to workarround the PHP flush() problem * pear/PEAR/Installer.php: download package if force is set * pear/package-PEAR.xml: revert my change from PHP_BINDIR to bin_dir * pear/package-PEAR.xml: Use install-as attrib for pear.bat too, so it gets installed in @bin_dir@ * pear/scripts/pear.bat: Use script arg separator '--' Clean up unused stuff * pear/PEAR/Config.php: Use DIRECTORY_SEPARATOR instead of hardcoded '/' * pear/System.php: Workarround to the empty $_ENV * pear/Console/Getopt.php: use $GLOBALS['HTTP_SERVER_VARS'] instead * pear/Console/Getopt.php: Silence NOTICE 2002-07-26 sesser <sesser@pb1.pair.com> * ext/standard/filestat.c: all functions based on php_stat are now safe mode aware... 2002-07-26 sniper <sniper@pb1.pair.com> * NEWS: When Britney learns to sing, I will quit this.. 2002-07-25 sniper <sniper@pb1.pair.com> * acinclude.m4 sapi/apache/config.m4: - Fixed bug: #18560, the macro was not defined always. * configure.in: MFH: fix bug #18570 * main/main.c: Allow setting post_max_size and upload_max_filesize in .htaccess files too * ext/imap/config.m4: Fixed bug: #18561. 2002-07-25 derick <derick@pb1.pair.com> * ext/standard/basic_functions.c: - Added parameter to print_r which returns the variable representation instead of echoing it. - Added parameter to print_r which returns the variable representation instead of echoing it. 2002-07-25 sesser <sesser@pb1.pair.com> * main/main.c: MFH * main/main.c: do not dtor empty elements 2002-07-25 derick <derick@pb1.pair.com> * ext/tokenizer/tokenizer.c: - MFH for fix for bug #16939 2002-07-25 helly <helly@pb1.pair.com> * ext/exif/exif.c: -handling of thumbnails in sub IFDs (the Photoshopway for TIFF) -Some Photoshop specific tags 2002-07-24 sesser <sesser@pb1.pair.com> * main/php_variables.c: MFH * main/php_variables.c: break out if there is no data to work on. 2002-07-24 derick <derick@pb1.pair.com> * ext/standard/head.c: - MFH for fix for bug #16626 * main/SAPI.c: - MFH for fix for bug #18268 2002-07-24 yohgaki <yohgaki@pb1.pair.com> * ext/standard/incomplete_class.c ext/standard/php_incomplete_class.h ext/standard/type.c: is_object() returns FALSE if object is a "incomplete object". Raise E_NOTICE, instead of E_ERROR, for setting/getting properties to/from a "incomplete object". 2002-07-24 steinm <steinm@pb1.pair.com> * ext/hyperwave/hw.c: - removed unused variable 2002-07-24 helly <helly@pb1.pair.com> * ext/exif/exif.c: -naming convention -better notices -(D)WORD are unsigned datatypes -started to split tygs into different arrays that would allow to handle vendor specific tags after detection of their markers 2002-07-23 Jim Winstead <jimw@pb1.pair.com> * ext/standard/credits.c: restore shane to list of members of php group (got lost somewhere along the way) 2002-07-23 holger <holger@pb1.pair.com> * sapi/pi3web/pi3web_sapi.c: Removed some outdated lines from init_request_info(). 2002-07-23 Sascha Schumann <sas@pb1.pair.com> * configure.in main/php_version.h: Working on 4.2.3 now * .cvsignore: Add autom4te.cache * ext/dbx/dbx.c: MFH remove \r * ext/dbx/dbx.c: Remove \r 2002-07-23 edink <edink@pb1.pair.com> * ext/pcre/config.m4: MFB (patch by Troels Arvin <troels@arvin.dk>). Added pcre include path to global list of includes in order to allow use of external pcre libs. * ext/pcre/config.m4: Allow pcre.h to be in $PREFIX/include/pcre since this is the case with some Linux distributions (patch by Troels Arvin <troels@arvin.dk>). 2002-07-23 sniper <sniper@pb1.pair.com> * configure.in: Fix bug: #18308. (uname -a sometimes has extra linefeeds) * configure.in: This should fix those solaris+gcc bugs when --enable-libgcc is not used * ext/gd/config.m4: Fix bug: #18479. Better error message what was not found. * NEWS: <insert funny comment here> 2002-07-22 jan <jan@pb1.pair.com> * ext/standard/datetime.c: - merge forgotten WS fix which makes non gcc compilers groan. (#17621) 2002-07-22 jmoore <jmoore@pb1.pair.com> * NEWS: Added news item about bug 13866 in response to bug 14752 2002-07-22 jason <jason@pb1.pair.com> * ext/ftp/ftp.c ext/standard/fsock.c ext/standard/ftp_fopen_wrapper.c ext/standard/http_fopen_wrapper.c main/network.c main/php_network.h: Switch streams socket abstraction to use a timeval structure instead of an integer to allow subsecond timeouts. This supports the previous behavior of fsockopen() Fixes bug #16261 2002-07-22 helly <helly@pb1.pair.com> * ext/exif/exif.c: added some more tags from WinXP changed conersion for TAG_FMT_SBYTE & BYTE 2002-07-22 Tomas V.V.Cox <cox@pb1.pair.com> * pear/install-pear.php: By the moment trust that the dependencies are good 2002-07-22 helly <helly@pb1.pair.com> * ext/exif/exif.c: added EXIF Version 2.2 Tags 2002-07-22 Tomas V.V.Cox <cox@pb1.pair.com> * pear/packages/Net_Socket-1.0.1.tar: Bundle Net_socket, needed for Net_SMTP 2002-07-22 sniper <sniper@pb1.pair.com> * ext/informix/ifx.ec: Fix typo.. 2002-07-22 georg <georg@pb1.pair.com> * NEWS: new mysql-functions for PHP 4.3.0 2002-07-22 yohgaki <yohgaki@pb1.pair.com> * ext/pgsql/pgsql.c: Copy empty_string, fixed crash. 2002-07-21 helly <helly@pb1.pair.com> * ext/exif/exif.c: unify error messages & notices 2002-07-21 georg <georg@pb1.pair.com> * ext/mysql/php_mysql.c: Automatic rollback for non committed transactions * ext/mysql/php_mysql.c: removed changes for mysql_select_db (optional parameter) Why: 1) Its not the common way to add additionally functionality for functions or features which are already implemented in SQL. Therefore also a lot of mysql functions are marked as deprecated (and will be removed in near future) 2) The implemented workaround works only when mysql_select_db was called before (fetching the databasename from mysql->conn.db). It returns invalid or inconsistent results e.g.: - when "USE databasename" via mysql_query was used - when database was dropped or grant privileges had changed. In conjunction with persistent connection, there are also some inconsistencies, cause mysql_select_db returns the databasename from an old connection. To determine the database name just use the SQL command "SELECT DATABASE()" * ext/mysql/php_mysql.c: fixed bug in mysql_real_escape_string: allocated 1 more byte for '\0' terminating character 2002-07-21 Stig Bakken <ssb@pb1.pair.com> * LICENSE: * yeah yeah * LICENSE: * split #3 into two paragraphs again, like the Apache license we once borrowed it from 2002-07-21 markonen <markonen@pb1.pair.com> * acinclude.m4 sapi/cgi/config.m4 sapi/cli/config.m4: Made PHP_ADD_LIBPATH use the $ld_runpath_switch and changed the Darwin link lines in sapi/cli and sapi/cgi to use $NATIVE_RPATHS. This is a tentative fix for #18450. 2002-07-21 Sascha Schumann <sas@pb1.pair.com> * build/build.mk build/buildcheck.sh buildconf: Move autoconf-2.13 check into buildcheck.sh where we already have version parsing code and (more importantly) proper error checking for missing autoconf. * build/build2.mk: One should not ignore AC_PROG_CPP was called before AC_PROG_CC because this error caused the Solaris issue 2002-07-21 derick <derick@pb1.pair.com> * configure.in: - Merges sascha's fix 2002-07-21 Sascha Schumann <sas@pb1.pair.com> * configure.in: Fix warning Noticed by: Derick 2002-07-21 Stig Bakken <ssb@pb1.pair.com> * pear/packages/Mail-1.0.tar pear/packages/Net_SMTP-1.0.tar: * bundle these releases * pear/Mail.php pear/package-Mail.xml: * moved to /pear cvs 2002-07-21 yohgaki <yohgaki@pb1.pair.com> * ext/pgsql/pgsql.c ext/pgsql/php_pgsql.h: Added pg_fetch_all() that fetch all rows in result. Useful and faster when there is enough memory. 2002-07-21 Stig Bakken <ssb@pb1.pair.com> * pear/HTTP.php: * already moved to /pear * pear/PEAR/Dependency.php: * support "zend" dependency type * pear/package-Net_SMTP.xml: * moved to /pear cvs * pear/package.dtd: * added missing license element * added "zend" dependency type * pear/PEAR.php: * always enable track_errors * added throwError method (simpler version of raiseError) * LICENSE: * license out of "alpha" 2002-07-20 derick <derick@pb1.pair.com> * NEWS: - Typos * configure.in: - Merge Sascha's builds tools fix * main/rfc1867.c: - Merge Stefans patch that fixes the remote vulnarability * NEWS configure.in main/php_version.h: - Update NEWS and version numbers 2002-07-20 James Cox <imajes@pb1.pair.com> * buildconf: proper patch to cvsclean for bad autoconf. 2002-07-20 Sascha Schumann <sas@pb1.pair.com> * configure.in: MFH fix for wrongly detected CPP on platforms such as Solaris where a package might be installed which actually does not contain a real compiler. 2002-07-20 sniper <sniper@pb1.pair.com> * NEWS: I love rock'n'roll...laalalaa (britney sucks) 2002-07-20 Sascha Schumann <sas@pb1.pair.com> * buildconf: reverse bad patch james, when you send me email about your patch which does not work, why don't you wait for a reply first before committing the non-working stuff? 2002-07-20 yohgaki <yohgaki@pb1.pair.com> * ext/pgsql/pgsql.c: Fixed php_pgsql_convert's bool type handling. * ext/pgsql/pgsql.c: Hmm. My PostgreSQL returns "bool" for boolean now. * ext/pgsql/pgsql.c: Fixed convetion when null string is passed to php_pgsql_convert() * ext/pgsql/pgsql.c: Fixed crash. 2002-07-20 James Cox <imajes@pb1.pair.com> * buildconf: more work for buildconf. forces a cvsclean if using a bad am. more ZE/zE2 tests. 2002-07-20 Sascha Schumann <sas@pb1.pair.com> * acinclude.m4 configure.in: Improve/fix handling of --disable-rpath Might or might not fix #18374 2002-07-19 jason <jason@pb1.pair.com> * main/network.c main/php_network.h: Fix feof() on win32 Bug #18436 2002-07-19 sniper <sniper@pb1.pair.com> * main/network.c: ws fix 2002-07-19 phanto <phanto@pb1.pair.com> * ext/rpc/com/com_wrapper.c ext/rpc/skeleton/skeleton.c ext/rpc/skeleton/skeleton.h ext/rpc/com/com.c ext/rpc/handler.h ext/rpc/rpc.c: - added a skeleton for new layers - a bit cleanup 2002-07-19 yohgaki <yohgaki@pb1.pair.com> * php.ini-recommended php.ini-dist: MFH * php.ini-dist php.ini-recommended: This option should be left enabled by default by mistake. --enable-trans-sid option is removed and this option should be disabled by default in php.ini. 1) It's insecure by nature 2) It may not work well always 3) It wasn't enabled by default used be 4) It risks security and user should enable it after realizing it's security risks. 2002-07-19 derick <derick@pb1.pair.com> * ext/ircg/ircg.c ext/interbase/interbase.c ext/informix/ifx.ec ext/iconv/iconv.c: Unify error messages 2002-07-18 phanto <phanto@pb1.pair.com> * ext/rpc/com/conversion.h ext/rpc/com/dispatch.c ext/rpc/com/php_com.h ext/rpc/com/php_variant.h ext/rpc/com/variant.c ext/rpc/com/variant.h ext/rpc/com/com.c ext/rpc/com/com.h ext/rpc/com/com_wrapper.c ext/rpc/com/com_wrapper.h ext/rpc/com/conversion.c ext/rpc/handler.h ext/rpc/hash.h ext/rpc/layer.h ext/rpc/php_rpc.h ext/rpc/rpc.c ext/rpc/rpc.h ext/rpc/rpc_proxy.c ext/rpc/rpc_proxy.h: ext/rpc/com should work now, but there's still lots of work left. 2002-07-18 yohgaki <yohgaki@pb1.pair.com> * php.ini-dist php.ini-recommended: Move down open_basedir description. 2002-07-17 sniper <sniper@pb1.pair.com> * configure.in: We have a macro for checking -R, etc. switches. (exactly same code) 2002-07-17 Andrei Zmievski <andrei@pb1.pair.com> * ext/wddx/wddx.c: Fix DL entry point. 2002-07-17 sniper <sniper@pb1.pair.com> * ext/gd/config.m4: Remove evil quotes 2002-07-17 chregu <chregu@pb1.pair.com> * ext/domxml/TODO: even more items on the TODO list * ext/domxml/php_domxml.c: nodename is not always set, check if it really is. 2002-07-17 hholzgra <hholzgra@pb1.pair.com> * tests/lang/034.phpt tests/lang/035.phpt: Zend Engine behaviour is affected by setlocale() due to use of locale aware functions like strtod(), atof(), tolower(), toupper() :( 2002-07-17 derick <derick@pb1.pair.com> * main/main.c: - set_time_limit() now returns whether it succeeded in changing the time limit. 2002-07-17 yohgaki <yohgaki@pb1.pair.com> * ext/pgsql/pgsql.c: Fixed build. 2002-07-17 sniper <sniper@pb1.pair.com> * ext/mbstring/config.m4: unbreak the shared build..again 2002-07-17 yohgaki <yohgaki@pb1.pair.com> * main/safe_mode.c: Accoding to safe_mode.h, php_checkuid() has six modes. * ext/pgsql/pgsql.c: Added safe_mode & open_basedir checks for pg_lo_export() * ext/pgsql/pgsql.c: Added open_basedir check. * php.ini-dist php.ini-recommended: Fixed open_basedir note - thanks to Sander. I also notice I have to modify pg_lo_import(), etc. It does not check open_basedir at all. It checks UID/GID, though. We are better to note how we should treat files in coding standard. * ext/mbstring/config.m4: Changed configure option order to make it clear option dependecy to users. * ext/mbstring/config.m4: Disable input encoding tranlation by default. * php.ini-recommended php.ini-dist: Added note for open_basedir 2002-07-16 sniper <sniper@pb1.pair.com> * NEWS: This is the real world.. * ext/mysql/php_mysql.c: fix protos 2002-07-16 Sascha Schumann <sas@pb1.pair.com> * sapi/thttpd/README ext/ircg/README.txt: refine 2002-07-16 georg <georg@pb1.pair.com> * NEWS: added mysql changes: - php.ini option mysql.connect_timeout - optional parameter client_flags (mysql_connect, mysql_pconnect) - automatic rollback for non commited transactions 2002-07-16 jason <jason@pb1.pair.com> * ext/standard/basic_functions.c: Prevent reenterant calls to a user tick function by flagging the function entry during call. This prevents code like the following from infinitely recursing until a crash occurs: <?php register_tick_function(a); declare(ticks=1) { function a() { print "blah\n"; } ; ; ; ; } ?> 2002-07-16 georg <georg@pb1.pair.com> * ext/mysql/php_mysql.c ext/mysql/php_mysql.h: Added support for php.ini parameter "mysql.connect_timeout" * php.ini-dist php.ini-recommended: Added php.ini option "mysql_connection.timeout" 2002-07-15 edink <edink@pb1.pair.com> * ext/mbstring/mbstring.c: MFH * ext/mbstring/mbstring.c: Fix bug #16985 (wrong count of GET/POST variables). 2002-07-15 sesser <sesser@pb1.pair.com> * main/rfc1867.c: use Zend API to access llist count 2002-07-15 hyanantha <hyanantha@pb1.pair.com> * ext/mysql/php_mysql.c: mysql_create_db and mysql_drop_db disabled for NetWare 2002-07-15 yohgaki <yohgaki@pb1.pair.com> * ext/pgsql/pgsql.c: Clean up code a little (Remove a use of magic number) Change/add appropriate comments. * NEWS: Fixed news * NEWS: header sounds like http header. header -> header file 2002-07-14 Andrei Zmievski <andrei@pb1.pair.com> * ext/pcre/php_pcre.c: Fix Bug #18341. 2002-07-14 Sascha Schumann <sas@pb1.pair.com> * NEWS: it is not really cold though * NEWS: the sun was shining a few days ago * sapi/thttpd/thttpd_patch sapi/thttpd/thttpd.c: integrate the public keep-alive patch the patch did not handle pipeling at all, so that some code had to be added from Premium thttpd persistent connections are supported, if a script sets the Content-Length header 2002-07-14 Rasmus Lerdorf <rasmus@pb1.pair.com> * ext/ming/ming.c: Fix a couple of protos 2002-07-14 Sascha Schumann <sas@pb1.pair.com> * sapi/thttpd/thttpd.c sapi/thttpd/thttpd_patch: thttpd blocks in rare circumstances where it cannot write out a small HTTP response (happened at customer sites). The response is now written out using the standard state machine. the buffer which is handed to thttpd by php is now simply dealt with as if it were a thttpd generated response (avoids code duplication). * sapi/thttpd/thttpd.c sapi/thttpd/thttpd_patch: make the sapi module hand off a buffer to thttpd for final data delivery, instead of blocking the whole process 2002-07-14 edink <edink@pb1.pair.com> * main/rfc1867.c: MFH (fixes linking errors when --enable-mbstring is used) 2002-07-14 yohgaki <yohgaki@pb1.pair.com> * ext/iconv/tests/eucjp2utf8.inc ext/iconv/tests/eucjp2utf8.phpt: Move comment. Remove a skip condition does not required. 2002-07-14 sniper <sniper@pb1.pair.com> * main/rfc1867.c: IF --disable-mbstr-enc-trans is used OR mbstring is compiled as shared extension, these functions are not available. * ext/mbstring/tests/002.inc ext/mbstring/tests/003.inc ext/mbstring/tests/004.inc ext/mbstring/tests/005.inc ext/mbstring/tests/006.inc ext/mbstring/tests/008.inc ext/mbstring/tests/009.inc ext/mbstring/tests/010.inc ext/mbstring/tests/011.inc ext/mbstring/tests/012.inc ext/mbstring/tests/013.inc ext/mbstring/tests/014.inc ext/mbstring/tests/015.inc ext/mbstring/tests/016.inc ext/mbstring/tests/017.inc ext/mbstring/tests/018.inc ext/mbstring/tests/019.inc ext/mbstring/tests/common.inc ext/mbstring/tests/common.php: .php files are in .cvsignore here * ext/mbstring/config.m4: These options are all enabled by default. (why?) 2002-07-14 yohgaki <yohgaki@pb1.pair.com> * ext/iconv/tests/eucjp2utf8.inc ext/iconv/tests/eucjp2utf8.phpt ext/iconv/tests/translit.phpt: Fix tests. Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> 2002-07-13 sander <sander@pb1.pair.com> * ext/standard/fsock.c: Fixed win32 build 2002-07-13 sniper <sniper@pb1.pair.com> * ext/iconv/iconv.c: Kill compiler warning * ext/iconv/tests/eucjp2utf8.phpt ext/iconv/tests/translit.phpt: Fix SKIPs for these tests. * ext/standard/fsock.c: nuke unused variable warning * ext/domxml/php_domxml.c: Fixed some unused variable warnings * ext/yaz/php_yaz.c: Nuke unused variable * ext/snmp/snmp.c: Kill compile warning * ext/gd/config.m4: Really fix it this time.. * ext/standard/file.c: Fixed bug: #16638. * sapi/cli/php_cli.c: Needed this to be able to test safe-mode stuff on cmd-line * ext/standard/php_string.h ext/standard/string.c: - Made the trim functions use same base function. (less code :) - Renamed php_trim2 -> php_trim (not used anyplace else, yet) - Made php_trim abit more usable for external use. (not necessary to use zvals with it anymore) * ext/gd/config.m4: Fixed the undefined reference to 'gdttf' errors when using bundled GD lib. 2002-07-13 yohgaki <yohgaki@pb1.pair.com> * ext/iconv/tests/eucjp2iso2022jp.phpt ext/iconv/tests/eucjp2utf8.phpt: Fixed tests. Patch by Yoshimori Koizumi <readjust@deneb.freemail.ne.jp> 2002-07-13 sniper <sniper@pb1.pair.com> * main/safe_mode.c: Fix bug: #18285, php_checkuid() mangled the passed path. * main/SAPI.c: - Fixed bug: #18268. If pcre is build as shared extension, we can't use php_pcre_replace() here. - Cleaned up a bit. 2002-07-12 Jani Taskinen <sniper@iki.fi> * ext/mysql/php_mysql.c: Partially reverted the netware related commit. * ext/mysql/php_mysql.c: Beauify a bit.. * ext/mysql/php_mysql.c: Some ws fixes. And removed the problems causing typedef for ushort. * ext/standard/image.c: - Fixed compile (bug #18297) on such systems which define uchar. * ext/imap/config.m4: Bail out the given path does not have the libraries in it. * ext/openssl/openssl.c: MFH * ext/openssl/openssl.c: Fixed bug: #18295. e_os.h is not supposed to be included.. 2002-07-12 Anantha Kesari H Y <hyanantha@novell.com> * netware/buildext.bat: File needed to build extensions for NetWare * ext/mysql/mysql.mak ext/mysql/php_mysql.c: Added NetWare changes 2002-07-12 Jani Taskinen <sniper@iki.fi> * ext/imap/config.m4: Make configure stop if something is wrong with libraries/linking. * ext/yaz/php_yaz.c ext/yaz/php_yaz.h: Fix ZTS build 2002-07-12 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/mbstring/mbstring.c: Remove unused variables. 2002-07-12 Jani Taskinen <sniper@iki.fi> * .cvsignore: missing entry for config.h.in * build/build.mk: .libs/ directories are created when building shared extensions. * NEWS: minor typo fixbug. * main/main.c main/rfc1867.c main/rfc1867.h: - Added predefined constants for the upload errors. - Removed the debugging error (not useful for end-users) 2002-07-11 Jani Taskinen <sniper@iki.fi> * ext/ftp/php_ftp.c: ws fix 2002-07-11 Derick Rethans <d.rethans@jdimedia.nl> * main/main.c: - Fix for bug #18283 2002-07-11 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/pgsql/pgsql.c ext/mbstring/mbstring.c php.ini-recommended php.ini-dist: added mbstring.language option in ext/mbstring. 2002-07-11 Tomas V.V.Cox <cox@idecnet.com> * pear/package-Net_SMTP.xml: typo * pear/package-Net_SMTP.xml: Prepare package.xml for Net_SMTP 2002-07-11 Sascha Schumann <sascha@schumann.cx> * sapi/apache2filter/config.m4: Break up the INSTALL_IT line into comprehensible pieces and fix a bug related to [..] quotes. * sapi/apache/config.m4: the variable interpolation was already subject to IFS treatment, which resulted in the execution of the foremost directory. we capture the output before setting IFS now 2002-07-11 Adam Dickmeiss <adam@indexdata.dk> * ext/yaz/php_yaz.c ext/yaz/php_yaz.h: yaz.max_links, yaz_log_file setting. User-defined Other Info * ext/yaz/config.m4: Include YAZ support libs (if any) 2002-07-11 Sascha Schumann <sascha@schumann.cx> * sapi/apache/config.m4 sapi/apache2filter/config.m4: Use a simple IFS; set step to interprete the httpd -v output 2002-07-11 Uwe Steinmann <uwe@steinmann.cx> * ext/hwapi/php_hwapi.h: - added missing file 2002-07-11 James Cox <james@blog.at> * ext/gd/libgd/gdft.c: adding patch from http://www.coupin.net/gd-freetype/ which makes images anti aliased (and therefore more readable). 2002-07-11 Yasuo Ohgaki <yohgaki@ohgaki.net> * ext/iconv/tests/translit.inc ext/iconv/tests/translit.phpt: Added traslit test files. Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> * ext/iconv/config.m4 ext/iconv/iconv.c: Fix #16069. Patch by Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> 2002-07-11 Jani Taskinen <sniper@iki.fi> * ext/ftp/ftp.c: Fix bug: #14052 * ext/standard/http_fopen_wrapper.c: MFH: Fix for #16337 * ext/standard/http_fopen_wrapper.c: Fixed bug: #16637, username/password needs to be urlencoded. * ext/curl/curl.c: Fixed bug: #18250 * NEWS: news-entry-robot(tm) 2002-07-10 Harald Radi <harald.radi+coding.php@nme.at> * ext/rpc/com/com.c win32/php4dllts.dsp: merging parts of the old com extension to the new rpc extension 2002-07-10 Jason Greene <jason@inetgurus.net> * ext/standard/basic_functions.c ext/standard/file.c: Fixed socket_set_timeout on win32 (Jason, Edin, Jani) * ext/standard/basic_functions.c ext/standard/file.c: Fix socket_set_timeout on win32 ( was not being included ) 2002-07-10 Georg Richter <georg.richter@phpev.de> * ext/mysql/php_mysql.c: 1) New constants: MYSQL_CLIENT_SSL for ssl connections MYSQL_CLIENT_COMPRESS for compressed protocol MYSQL_CLIENT_IGNORE_SPACES for spaces after function names MYSQL_CLIENT_INTERACTIVE for closing connections after timeout_interactive seconds 2) Optional parameter client_flags for mysql_connect and mysql_pconnect For parameter desctiption see 1. This also should fix bug #13589 3) New internal function _rollback_mysql_transactions, which is called via PHP_RSHUTDOWN_FUNCTION This fixes bug #12513 2002-07-10 Stig Bakken <ssb@fast.no> * pear/packages/DB-1.2.tar pear/packages/XML_Parser-1.0.tar pear/packages/XML_RPC-1.0.3.tar: * signed these packages 2002-07-09 Derick Rethans <d.rethans@jdimedia.nl> * ext/ftp/php_ftp.c: - Initialize var properly 2002-07-09 Stig Venaas <venaas@uninett.no> * ext/ldap/ldap.c: Hopefully fixes build with IBM's LDAP library 2002-07-09 Harald Radi <harald.radi+coding.php@nme.at> * ext/rpc/com/com.h: add file again that andrei deleted by accident (i don't want to blame anyone here) * win32/php4dllts.dsp main/config.w32.h.in main/internal_functions_win32.c: MFH 2002-07-09 Stig Bakken <ssb@fast.no> * pear/packages/HTTP-1.2.tar: * add HTTP package (signed) * pear/Console/Getopt.php: * tolerate $args being empty * pear/PEAR/Remote.php: * tiniest optimization * pear/PEAR/Registry.php: * typo 2002-07-08 Sterling Hughes <sterling@bumblebury.com> * ext/xslt/sablot.c: eek * ext/xslt/sablot.c: commit petr's sax handler patch 2002-07-08 Andi Gutmans <andi@zend.com> * ext/standard/file.h: - Add TSRMLS_DC to prototype. * ext/standard/cyr_convert.c ext/standard/file.c ext/standard/type.c: - Fix TSRMLS_* stuff 2002-07-08 Martin Jansen <mail@martin-jansen.de> * pear/File/Passwd.php: * Use CRYPT_SALT_LENGTH instead of hardcoded value. Patch by: "James E. Flemer" <jflemer@acm.jhu.edu> 2002-07-08 Jani Taskinen <sniper@iki.fi> * NEWS: news update * ext/mysql/config.m4: Fix shared build and made the logic of finding the socket location better. 2002-07-08 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/assert.c ext/standard/basic_functions.c ext/standard/browscap.c ext/standard/cyr_convert.c ext/standard/datetime.c ext/standard/dir.c ext/standard/dl.c ext/standard/dns.c ext/standard/exec.c ext/standard/file.c ext/standard/filestat.c ext/standard/formatted_print.c ext/standard/ftok.c ext/standard/head.c ext/standard/html.c ext/standard/image.c ext/standard/iptc.c ext/standard/levenshtein.c ext/standard/aggregation.c ext/standard/type.c: Unify error messages * ext/standard/type.c: - Add warning to is_*() functions if more than one argument was passed * ext/standard/array.c: Silence warning * ext/standard/array.c: Unify error messages * ext/standard/array.c: - Fix for bug #14580: Made key() binary safe 2002-07-08 Jani Taskinen <sniper@iki.fi> * main/main.c: These two can not be set in script. (so that they would have any effect) 2002-07-07 Sterling Hughes <sterling@bumblebury.com> * ext/standard/filestat.c: fix win32 build 2002-07-07 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Package.php: * added "pear sign" command * pear/PEAR/Installer.php: * use System::mktemp * check if an install is about to overwrite existing files belonging to other packages, bail out if not in "force" mode * pear/scripts/pear.in: * don't set include path if running 'pear.in' without substitutions made by the installer * sort command names in help output * pear/PEAR/Registry.php pear/tests/pear_registry.phpt: * made rebuildFileMap method public, added caching and checkFileMap method 2002-07-07 Shane Caraveo <shane@caraveo.com> * pear/PEAR/Builder.php: Let 'pear build' work on windows for building pecl extensions. A few notes: Currently only supports release builds, and of course, requires msdev! pecl packages must have package.xml and xxx.dsp files for this to work the package name in package.xml must match the name of the dsp file, so package iisfunc must have dsp iisfunc.dsp 2002-07-07 Stig Bakken <ssb@fast.no> * pear/PEAR/Packager.php: * use System::mktemp rather than PEAR_Common::mkTempDir * pear/PEAR/Frontend/CLI.php: * silence warning 2002-07-07 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c ext/domxml/php_domxml.h: - Added domxml_node_namespace_uri() (Rui Lopes). 2002-07-07 Jan Lehnardt <jan@dasmoped.net> * INSTALL: - fix #16290 2002-07-07 Jani Taskinen <sniper@iki.fi> * sapi/apache2filter/config.m4 sapi/apache/config.m4: - Fix the version check again. * NEWS: cleanup 2002-07-07 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/standard/versioning.c: Fix warning. 2002-07-07 Jason Greene <jason@inetgurus.net> * ext/sockets/sockets.c: Remove sleep workaround, and fix the actual win32 memory leak which was occurring in the error reporting system. The reason why sleepex appeared to be working was because it suppressed EWOULDBLOCK errors in the example (which was non-blocking) 2002-07-07 Jani Taskinen <sniper@iki.fi> * ext/dio/dio.c: ws fix * ext/dio/dio.c: Fix the fix properly. * acinclude.m4: MFH * acinclude.m4: PHP_EVAL_LIBLINE must not reverse the order of libraries. 2002-07-06 Jani Taskinen <sniper@iki.fi> * ext/informix/.cvsignore: Added missing .libs entry 2002-07-06 Christian Dickmann <chrisdicki@gmx.de> * pear/PEAR/Config.php pear/PEAR/Remote.php: add local XMLRPC cache 2002-07-06 Derick Rethans <d.rethans@jdimedia.nl> * ext/xmlrpc/xmlrpc-epi-php.c: - Consistent error messages 2002-07-05 Jani Taskinen <sniper@iki.fi> * ext/dio/dio.c: Fix bug: #16707 2002-07-05 Sascha Schumann <sascha@schumann.cx> * acinclude.m4: nuke another instance of newline suppression 2002-07-05 Jani Taskinen <sniper@iki.fi> * main/rfc1867.c: MFH * main/rfc1867.c: Fix typo * ext/xmlrpc/xmlrpc-epi-php.c: Fix typo. 2002-07-05 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbstring.c ext/mbstring/mbstring.h main/rfc1867.c: fixed shift_jis character corruption including 0x5c as second byte following a slash on uploaded filename. 2002-07-05 Sascha Schumann <sascha@schumann.cx> * acinclude.m4: some seds want to see a newline, so we give them a newline PR: #17072 and others * configure.in: Fix the Solaris issue where CPP was set wrongly to "cc -E", because the AIX macro invoked the CPP check before the CC check, so that autoconf did not know which $CC to use. You can now close all those bug reports about unix.h and misdetected headers. * configure.in: Remove remainings of bsd_makefile 2002-07-05 Dan Libby <dan@libby.com> * ext/xmlrpc/libxmlrpc/queue.c ext/xmlrpc/libxmlrpc/simplestring.c ext/xmlrpc/libxmlrpc/simplestring.h ext/xmlrpc/libxmlrpc/system_methods.c ext/xmlrpc/libxmlrpc/xml_element.c ext/xmlrpc/libxmlrpc/xml_to_soap.c ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c ext/xmlrpc/libxmlrpc/xmlrpc.c ext/xmlrpc/libxmlrpc/xmlrpc.h ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c ext/xmlrpc/libxmlrpc/xmlrpc_private.h ext/xmlrpc/php_xmlrpc.h ext/xmlrpc/xmlrpc-epi-php.c: merged in updates from SF project. bring php repository up to date with xmlrpc-epi version 0.51 2002-07-05 Stig Bakken <ssb@fast.no> * pear/PEAR.php: * define PEAR_ZE2 when running with Zend Engine 2 * ext/standard/versioning.c: * fix segfault in case of odd version numbers * ext/standard/versioning.c: (PHP version_compare) added "alpha" and "beta", make tests pass 2002-07-04 Sascha Schumann <sascha@schumann.cx> * acinclude.m4 configure.in: 1. PHP_CHECK_FUNC(func, lib1, lib2, ..., libn) searches for func and __func using LIBS, and if unsuccessful, searches each specified lib. Defines HAVE_FUNC, if found. If func/__func is found in library foo, HAVE_LIBFOO is defined. (Jani, me) 2. Autoconf 2.5x is more pedantic regarding locating header files. We include the proper header files now in the check. (me) 3. The nsl/bind/socket/etc checks have been rewritten using PHP_CHECK_FUNC. This ensures that no extra library is used, if the symbol is available in libc which avoids issues on BSD/OS, OpenBSD and others. (Jani) 2002-07-04 Martin Jansen <mail@martin-jansen.de> * pear/PEAR/Common.php: * Remove http:// from the proxy server string. Patch by: "michiel bakker" <michiel_bakker@hotmail.com> 2002-07-04 Jani Taskinen <sniper@iki.fi> * ext/ftp/ftp.c ext/ftp/ftp.h ext/ftp/php_ftp.c: - Added optional 3rd parameter 'recursive' to ftp_rawlist() which will do 'LIST -R' instead of 'LIST'. 2002-07-04 Marko Karppinen <karppinen@pobox.com> * Makefile.global sapi/cgi/config.m4: Moved the cgi link line to sapi/cgi/config.m4 and stopped using libtool on Darwin on it 2002-07-04 Sascha Schumann <sascha@schumann.cx> * config.sub config.guess: Upgrade to the version shipped with automake-1.6.2 * sapi/cgi/cgi_main.c: Generate content-type header, if the user did not specify one of its own. Noticed by: Edin Kadribasic <edink@proventum.net> 2002-07-03 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * main/rfc1867.c: fixed ZTS build. * ext/mbstring/mbstring.c ext/mbstring/mbstring.h: fixed ZTS build and added language check. 2002-07-03 Jani Taskinen <sniper@iki.fi> * Makefile.global ext/java/Makefile.frag pear/Makefile.frag: - Let's be tad more verbose what's happening during 'make install' 2002-07-03 Sebastian Bergmann <sb@sebastian-bergmann.de> * main/rfc1867.c: Fix ZTS build. 2002-07-03 Frank M. Kromann <frank@kromann.info> * ext/mbstring/mbstring.c: Removed unneeded check for MBSTR_ENC_TRANS * main/config.w32.h.in: Added MBSTR_ENC_TRANS to allow compilation and linking under win32 2002-07-03 Sascha Schumann <sascha@schumann.cx> * README.PARAMETER_PARSING_API: Please note that you need to use 'int' as a length type when fetching strings. 2002-07-03 Frank M. Kromann <frank@kromann.info> * ext/mbstring/mbstring.dsp: Adding _RU files to project * ext/mbstring/mbstring.c ext/mbstring/mbstring.h: Fixing ZTS build * ext/standard/php_string.h: Adding missing prototype 2002-07-03 Derick Rethans <d.rethans@jdimedia.nl> * README.PARAMETER_PARSING_API: - Fix README 2002-07-03 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbstring.c ext/mbstring/mbstring.h main/rfc1867.c: fixed shift_jis character corruption including 0x5c as second byte on uploaded filename. 2002-07-03 Sterling Hughes <sterling@bumblebury.com> * ext/curl/curl.c: formatting fixes * ext/curl/curl.c: fix bug #17963 2002-07-03 Sascha Schumann <sascha@schumann.cx> * sapi/cgi/cgi_main.c: Add CRLF after complete HTTP reply header * sapi/cgi/cgi_main.c: Use "Status: %d" instead of "HTTP/1.0 %d X" in the CGI SAPI module as per the CGI RFC. The status notation is incompatible with Apache's non-parsed-header mode "nph-*", but that has never worked before anyway. One could make the format string configurable. Noticed by: Sebastian Bergmann 2002-07-03 Edin Kadribasic <edink@proventum.net> * ext/xmlrpc/libxmlrpc/encodings.c: MFH (win32 build fix) * ext/xmlrpc/libxmlrpc/encodings.c: Fixed win32 build. 2002-07-03 Sascha Schumann <sascha@schumann.cx> * main/SAPI.c: fix typo * main/SAPI.c main/SAPI.h sapi/pi3web/pi3web_sapi.c sapi/tux/php_tux.c sapi/webjames/webjames.c ext/standard/head.c: Add sapi_header_op interface which supersedes the sapi_add_header and _ex calls. Revert the change to the sapi_add_header_ex interface. Fix various bugs: 1. header("HTTP/1.0 306 foo"); header("Location: absolute-uri"); did not work in combination with several SAPI modules, because http_status_line was never properly reset. And thus, all SAPI modules which looked at http_status_line ignored the changed http_response_code. 2. The CGI SAPI did not send out the HTTP status line at all, if http_status_line had not been set explicitly by calling header("HTTP/1.0 200 foo"); 2002-07-03 Christian Stocker <chregu@phant.ch> * pear/PEAR/WebInstaller.php: - Not maintained (and maybe not working) anymore - There's a new project PEAR_Frontend_Web which does a much better job 2002-07-03 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/basic_functions.c ext/standard/filestat.c ext/standard/php_filestat.h: - Fix windows build 2002-07-03 Uwe Steinmann <uwe@steinmann.cx> * ext/hyperwave/hw.c: - fixed bug in hwnew_new_document_from_file 2002-07-03 Jani Taskinen <sniper@iki.fi> * ext/standard/filestat.c: Fix the nasty crash. And Sterling..test next time before you commit? * ext/session/session.c: ws fix 2002-07-02 Frank M. Kromann <frank@kromann.info> * ext/standard/mail.c: Add default arguments to new internal mail function. * ext/imap/php_imap.c: Make sure To addresses are parsed correct with RFC822. * win32/sendmail.c: Oops. Last commit reverted some of sebastians changes. 2002-07-02 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: -fix datatypes for some vriables -fix comment for function exif_process_CME -force return parameters to be passed by reference 2002-07-02 Frank M. Kromann <frank@kromann.info> * win32/sendmail.c win32/sendmail.h: Switch from imap_sendmail.* to sendmail.c under Win32 * ext/fbsql/php_fbsql.c: Fixing compilation of FrontBase extension with ZTS 2002-07-02 Sterling Hughes <sterling@bumblebury.com> * ext/standard/filestat.c: use access instead of manually determining file permissions.. 2002-07-02 Frank M. Kromann <frank@kromann.info> * ext/imap/imap.dsp ext/imap/php_imap.c: Switch from imap_sendmail.* to sendmail.c under Win32 * win32/imap_sendmail.c win32/imap_sendmail.h: These files are no longer needed as the imap module will use the standard sendmail function under Win32 2002-07-02 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * main/rfc1867.c: *** empty log message *** * ext/mbstring/mbstring.h: fixed shift_jis character corruption including 0x5c as second byte on uploaded filename. * ext/mbstring/mbstring.c: fixed shift_jis character corruption including 0x5c as second byte. 2002-07-02 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/mail.c: - Be nice to users and allow them to check if the mail was send * ext/standard/mail.c: - Disable 5th parameter to mail in safemode - Disabled the fifth parameter to the mail function in safemode. 2002-07-02 Christian Dickmann <chrisdicki@gmx.de> * pear/PEAR/Command/Remote.php pear/PEAR/Frontend/CLI.php: make 'remote-info' use package.info. add deps to 'list-all' 2002-07-02 Sascha Schumann <sascha@schumann.cx> * configure.in: Avoid error messages, if the variable is empty. ./config.status: test: !=: unary operator expected 2002-07-02 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/file.c: - Fix for bug #15547 (Patch by Justin Garrett <usjgarrett@byu.edu>) 2002-07-01 Marko Karppinen <karppinen@pobox.com> * Makefile.global sapi/cli/config.m4: - You don't need libtool to build sapi/cli on Darwin. - We don't need libtool to build sapi/cli on Darwin. - You want the sapi/cli build line to be in sapi/cli, not Makefile.global. - We want the sapi/cli build line to be in sapi/cli, not Makefile.global. - He can go about his business. - You can go about your business. - Move along. - Move along. Move along. 2002-07-01 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/image.c ext/standard/info.c main/memory_streams.c: - No C++ comments 2002-07-01 Marko Karppinen <karppinen@pobox.com> * configure.in: In Darwin we have this thing called two-level namespace 2002-07-01 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.h ext/domxml/php_domxml.c: outcomment everything related to domxml_elem_set_attribute_node(). This function is not implemented and shouldn't show up at all for the time being 2002-07-01 Jani Taskinen <sniper@iki.fi> * main/main.c: Fix win32 build. 2002-07-01 James Cox <james@blog.at> * acinclude.m4: "-" is not acceptable in a #define (i have since discovered). converting all - to _ is the right thing to do. 2002-06-30 Sander Roobol <phy@wanadoo.nl> * main/main.c: Main script should not be parsed when (include|require)_once()'ed, #17720 2002-06-30 Derick Rethans <d.rethans@jdimedia.nl> * ext/ldap/ldap.c: - More error messages cleanup 2002-06-30 Jani Taskinen <sniper@iki.fi> * ext/xmlrpc/libxmlrpc/encodings.c: MFH: Fix for bug #16252 * ext/xmlrpc/libxmlrpc/encodings.c: Fix bug: #16252 * Makefile.global: This does not work with AIX find.. 2002-06-29 Jani Taskinen <sniper@iki.fi> * config.guess config.sub ltmain.sh: - Upgrade bundled libtool to 1.4.2. Following stuff mentioned at: http://www.gnu.org/software/libtool/news.html * Diagnose and warn about not-quite-working combinations of gcc and ld on Solaris. * Improved OpenBSD support. * Improved cygwin support. * Bugfixes. 2002-06-29 Sascha Schumann <sascha@schumann.cx> * ext/ircg/ircg.c ext/standard/php_smart_str.h: Fix some 8bit issues with IRCG nickname encoding and Change the underlying interface of smart_str to accept unsigned char. 2002-06-29 Derick Rethans <d.rethans@jdimedia.nl> * ext/exif/exif.c: Unify error messages part 1 * ext/gd/gd.c: - Fix GD build with GD 1.8.3 * ext/standard/array.c: - Fix for bug #17654 2002-06-29 Thies C. Arntzen <thies@thieso.net> * ext/standard/url_scanner_ex.c ext/standard/url_scanner_ex.re: fix leak 2002-06-29 Sergey Kartashoff <gluke@biosys.net> * ext/mnogosearch/README ext/mnogosearch/index.php: Search example (which demonstrates using of mnogosearch API) is updated. 2002-06-29 James Cox <james@blog.at> * acinclude.m4: fixes extensions with "-" 2002-06-29 Jani Taskinen <sniper@iki.fi> * ext/xmlrpc/xmlrpc-epi-php.c: Fix some build error on win32 (snapshot build) 2002-06-29 James Cox <james@blog.at> * ext/gd/gd_bundled.dsp: make this build too. * ext/gd/gd.dsp: removed these files from build. * acinclude.m4: really fix it. 2002-06-29 Jani Taskinen <sniper@iki.fi> * ext/xslt/sablot.c: This is not done anymore. (should fix win32 snapshot build too) 2002-06-29 James Cox <james@blog.at> * acinclude.m4: fixes bug #17453 2002-06-29 Jani Taskinen <sniper@iki.fi> * ext/pdf/config.m4: - Fix the shared problem. (the previous patch really didn't fix anything) * build/rules.mk: Removing libs/ is not a good idea * ext/db/db.c ext/db/php_db.h: Missing TSRMLS_* stuff * sapi/apache2filter/config.m4: Better fix it here too.. 2002-06-29 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * sapi/apache/config.m4: Oops, extra pipe snuck in 2002-06-28 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * sapi/apache/config.m4: Fix for bug #18055 2002-06-28 Anil Madhavapeddy <anil@recoil.org> * ext/pdf/config.m4: remember the value of ext_shared passed into the --with-pdflib, since it gets overwritten by future PHP_ARG_WITH checks in the same m4 fragment from wilfried@openbsd.org 2002-06-28 Sebastian Bergmann <sb@sebastian-bergmann.de> * sapi/apache2filter/README: Mention Apache 2.0.40. 2002-06-28 Derick Rethans <d.rethans@jdimedia.nl> * ext/db/db.c: - More gotchas... * ext/msession/msession.c: - Fix more TSRM gotchas 2002-06-28 Jani Taskinen <sniper@iki.fi> * sapi/apache2filter/config.m4: Require 2.0.40 2002-06-28 Derick Rethans <d.rethans@jdimedia.nl> * sapi/apache2filter/sapi_apache2.c: - YAAC: I hope this is the last one! * ext/imap/php_imap.c: - Fix TSRM gotcha 2002-06-28 Jani Taskinen <sniper@iki.fi> * ext/gd/gd.c: t1lib.h needs to be included here now. * ext/gd/gd.c ext/gd/php_gd.h: Moved all gd.h related stuff to gd.c * ext/gd/php_gd.h: Remove unnecessary #include's * ext/gd/gdt1.c ext/gd/gdt1.h ext/gd/config.m4: Remove unused files. 2002-06-28 Derick Rethans <d.rethans@jdimedia.nl> * ext/hyperwave/hw.c ext/icap/php_icap.c ext/imap/php_imap.c: Unify error messages 2002-06-28 Jani Taskinen <sniper@iki.fi> * ext/gd/gd.c: Fix bug: #14735 * ext/gd/gd.c: Fix bug: #17528, do not crash with empty string. * sapi/apache2filter/config.m4: Fixed bug: #17491 (honor INSTALL_ROOT) * ext/mysql/libmysql/mysql_version.h: - Fix annoying redefine warning.. * ext/gd/config.m4: - Fix bug: #17671 2002-06-28 Derick Rethans <d.rethans@jdimedia.nl> * ext/iconv/iconv.c: - Fix for bug #18039 * ext/gd/gd.c ext/gd/gd_ctx.c ext/gd/gdt1.c: Unify error messages 2002-06-28 Jani Taskinen <sniper@iki.fi> * ext/session/config.m4 ext/session/mod_mm.c ext/session/mod_mm.h ext/session/session.c: - Fixed bug: #17977, session build as shared works now with mm handler too. - Added listing of save handlers into phpinfo() output 2002-06-27 Jani Taskinen <sniper@iki.fi> * Makefile.global: Fix bug: #18008 * ext/gd/gd.c: Consistency fix. * ext/imap/php_imap.c: - Fixed bug: #15595 (and possibly others too) 2002-06-27 Sander Roobol <phy@wanadoo.nl> * ext/standard/Makefile.frag: Update configure line in phpinfo() after re-running configure without running make clean first, bug #18012. 2002-06-27 Derick Rethans <d.rethans@jdimedia.nl> * ext/filepro/filepro.c ext/ftp/php_ftp.c ext/fdf/fdf.c ext/fbsql/php_fbsql.c: Unify error messages * ext/ldap/ldap.c: - Remove \n 2002-06-27 Jani Taskinen <sniper@iki.fi> * ext/imap/php_imap.c: - Cleaning up the mess..these are NOT zvals. 2002-06-26 Jani Taskinen <sniper@iki.fi> * ext/imap/php_imap.c: MFH: fix for bug: #17999 * ext/imap/php_imap.c: - Fixed bug: #17999 - The errors should always be stored, but they are not supposed to be shown at request shutdown unless E_NOTICES are allowed. 2002-06-26 Anil Madhavapeddy <anil@recoil.org> * ext/ncurses/config.m4: use LIBNAME consistently. Useful on systems like OpenBSD where the curses library is called 'curses' and not 'ncurses' * ext/ncurses/example1.php: the ncurses_getch() is in the wrong place and never gets run 2002-06-26 Jani Taskinen <sniper@iki.fi> * ext/odbc/config.m4: Better not pollute the EXTRA_LIBS with libpaths. 2002-06-26 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * main/spprintf.c: -xbuf_resize does not need to have return value 2002-06-26 Derick Rethans <d.rethans@jdimedia.nl> * main/main.c main/php_globals.h php.ini-dist php.ini-recommended: - Implement Andrei's request for disabling memory leak reporting in debug builds. * ext/standard/credits_sapi.h: - And the SAPI too * ext/standard/credits_ext.h: - Update credits * ext/mime_magic/TODO: - Update TODO * ext/mime_magic/mime_magic.c: - Nuke some TSRMLS_FETCHes 2002-06-26 Jani Taskinen <sniper@iki.fi> * build/buildcheck.sh: silence the warning when glibtool is not found.. 2002-06-26 Derick Rethans <d.rethans@jdimedia.nl> * ext/gd/gd.c: - Fix build * Makefile.global: - Let make clean follow symlinks (tested on Linux, IRIX, Solaris, FreeBSD and Tru64) * ext/pgsql/config.m4: - Fix typo * ext/mcrypt/mcrypt.c: - Unify error messages * ext/mnogosearch/php_mnogo.c ext/msession/msession.c: Unify error messages 2002-06-26 Sascha Schumann <sascha@schumann.cx> * build/buildcheck.sh: Prefer glibtool over libtool for Mac OS X compatibility Submitted by: various people, including blakers@mac.com 2002-06-26 Derick Rethans <d.rethans@jdimedia.nl> * ext/msql/php_msql.c ext/mssql/php_mssql.c ext/mysql/php_mysql.c: Unify error messages 2002-06-26 Sascha Schumann <sascha@schumann.cx> * ext/interbase/interbase.c sapi/aolserver/aolserver.c: Fix code which makes wrong assumptions about the return value of snprintf. The AOLserver module did not use the return value, so simply drop it. 2002-06-26 Derick Rethans <d.rethans@jdimedia.nl> * ext/domxml/php_domxml.c ext/dba/dba.c ext/db/db.c: Unify error messages 2002-06-26 Andi Gutmans <andi@zend.com> * ext/standard/var.c: - No idea why this wasn't crashing before. 2002-06-26 Derick Rethans <d.rethans@jdimedia.nl> * ext/cyrus/cyrus.c ext/cybercash/cybercash.c ext/curl/curl.c ext/cpdf/cpdf.c ext/com/COM.c ext/ccvs/ccvs.c ext/calendar/easter.c ext/bcmath/bcmath.c ext/aspell/aspell.c: Unify error messages * ext/ldap/ldap.c: - Unify error messages 2002-06-25 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/gd/gd.c: map imageellipse to imagearc if missing fix warnings * ext/standard/image.c: bits/channels for gif 2002-06-25 Tomas V.V.Cox <cox@idecnet.com> * pear/scripts/pear.in: change the include_path setting to be in the php space instead of doing in the interpreter line (seems to break FreeBSD) 2002-06-25 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: should compile on windows again * ext/domxml/php_domxml.h: include libxml/parserInternals.h 2002-06-25 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/gd/gd.c ext/gd/config.m4: imageellipse is removed in 2.01 2002-06-25 Derick Rethans <d.rethans@jdimedia.nl> * NEWS: - Update NEWS 2002-06-25 Markus Fischer <mfischer@guru.josefine.at> * ext/sockets/sockets.c: - Fix proto. 2002-06-24 Jani Taskinen <sniper@iki.fi> * NEWS: Minor cleanup. 2002-06-24 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/tests/003.phpt ext/exif/tests/test3.jpg: modified test3 (old one had a warning) * ext/standard/image.c: missing return value * NEWS: cleanup * ext/exif/exif.c ext/standard/image.c ext/standard/php_image.h ext/standard/basic_functions.c: register IMAGETYPE_<xxx> constants in image.c as they are needed there. 2002-06-24 Derick Rethans <d.rethans@jdimedia.nl> * ext/gd/config.m4 ext/gd/gd.c: - Make functions not exist when they are not available. This means you can now safely do function_exists() on all gd functions. 2002-06-24 Marko Karppinen <karppinen@pobox.com> * ext/xslt/php_sablot.h ext/xslt/sablot.c: Revert to php_4_2_1 to get sablotron working again. 2002-06-24 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c ext/standard/image.c ext/standard/php_image.h: GetImageSize now allways set fields unknown to 0 and new Imagetype iff. 2002-06-24 Christian Stocker <chregu@phant.ch> * ext/domxml/TODO: added some points to the todo list 2002-06-24 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * sapi/apache2filter/sapi_apache2.c: Add runtime Apache2 thread check to ensure we don't run a non-threaded PHP inside a threaded Apache2 MPM. 2002-06-24 Martin Jansen <mail@martin-jansen.de> * pear/PEAR/Command/Remote.php: * Rephrase help text. 2002-06-24 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * sapi/apache2filter/config.m4 sapi/apache2filter/sapi_apache2.c: Turn off ZTS if Apache2 is using the prefork MPM. 2002-06-24 Jani Taskinen <sniper@iki.fi> * configure.in: - gethostname() is found in glibc (at least on Linux) and the yp_* funcs are in libnsl. Fixes bug: #17941 * NEWS: ..unless someone adds all the missing ones.. :) * ext/mcal/config.m4: Fix the shared build properly. * acinclude.m4: Fixed PHP_ADD_LIBRARY_DEFER_WITH_PATH to work with shared builds. 2002-06-24 Edin Kadribasic <edink@proventum.net> * sapi/apache2filter/CREDITS sapi/apache2filter/README sapi/apache2filter/apache_config.c sapi/apache2filter/php_apache.h sapi/apache2filter/php_functions.c sapi/apache2filter/sapi_apache2.c: MFH 2002-06-24 Jani Taskinen <sniper@iki.fi> * ext/ldap/config.m4: No need to have multiple AC_CHECK_FUNCS calls 2002-06-24 Derick Rethans <d.rethans@jdimedia.nl> * Makefile.in: - Fix make install to respect the prefix= argument (patch by Troels Arvin <troels@arvin.dk>) * ext/mcal/config.m4: - Fix building a shared extension (patch by Troels Arvin <troels@arvin.dk>) * ext/sysvsem/php_sysvsem.h ext/sysvsem/sysvsem.c ext/standard/versioning.c: - MFH 2002-06-24 Edin Kadribasic <edink@proventum.net> * win32/time.c win32/time.h: MFH 2002-06-24 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/string.c: - MFH * ext/standard/math.c: - Fix the MFH :) * ext/standard/basic_functions.c: - MFH * ext/mcrypt/mcrypt.c: - Partly MFH * ext/standard/math.c ext/gmp/config.m4: - MFH 2002-06-24 Sascha Schumann <sascha@schumann.cx> * buildconf: iterate through passed arguments 2002-06-23 Edin Kadribasic <edink@proventum.net> * win32/time.c win32/time.h: Allow dynamically compiled extensions to use gettimeofday() on win32. 2002-06-23 Sterling Hughes <sterling@bumblebury.com> * ext/imap/php_imap.c: standardize a bit (we know its enabled :) 2002-06-23 Derick Rethans <d.rethans@jdimedia.nl> * sapi/apache2filter/php_functions.c: - MFH 2002-06-23 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * main/snprintf.h: explain difference between sprintf, snprintf and spprintf * main/spprintf.h: * main/spprintf.c: -freeing memory for pbuf=NULL * main/spprintf.c: -allow pbuf = NULL in case of NO MEMORY, too * main/spprintf.c: -allways terminate buffer -allow pbuf parameter to be NULL for buffer size calculation 2002-06-23 Stefan Esser <s.esser@e-matters.de> * main/rfc1867.c: MFH: several fixes to fileupload code * ext/standard/mail.c: merged in the filtering control chars patch * ext/standard/link.c: MFH: link/symlink safe_mode/open_base_dir fix * main/SAPI.c: MFH: replace header fix, content-type header handling fix 2002-06-23 James Cox <james@blog.at> * buildconf: some people would prefer to be able to specify. So, we specify --ZendEngine2 for ZE2 builds, Zend for the rest. * build/build.mk buildconf: changing this to mv ZendEngine2 Zend instead of shell logic that isn't portable. 2002-06-23 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * main/main.c: -unlimited php_printf * ext/exif/exif.c ext/standard/basic_functions.c ext/standard/image.c ext/standard/php_image.h: -imagetype2mimetype renamed to image_type_to_mime_type * ext/exif/tests/004.phpt ext/exif/tests/test4.jpg: -new test for WinXP tags * ext/exif/tests/003.phpt: -fix test results * run-tests.php: -make it run again * main/snprintf.c: -compiler warning (missing data type) * ext/exif/tests/001.phpt: -corrected test result 2002-06-22 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c ext/standard/php_image.h: -exif version -missing constant (and notice) -corrected error messages * ext/exif/exif.c: exif_read_data returns mime-type now for image and thumbnail And exif_thumbnail now optionally returns imagetype. * ext/standard/basic_functions.c ext/standard/image.c ext/standard/php_image.h: GetImageSize now returns additional index 'MimeType' and new function imagetype2mimetype to convert php imagetypes to mime-types. * ext/standard/image.c: ws fix 2002-06-22 Stig Venaas <venaas@uninett.no> * ext/ldap/ldap.c: Better not include ldap_parse_result() and ldap_start_tls() at all in the symbol table when they are not usable. Makes it possible to check on their usability. 2002-06-22 Sander Roobol <phy@wanadoo.nl> * sapi/apache2filter/apache_config.c: Made php_admin_value work outside <location> and <directory> blocks. 2002-06-22 Andi Gutmans <andi@zend.com> * sapi/cgi/cgi_main.c: - Revert WS changes * sapi/cgi/cgi_main.c: - This shouldn't have snuck in. * sapi/cgi/cgi_main.c: - Stop using persist_alloc(). 2002-06-22 Stig Venaas <venaas@uninett.no> * ext/ldap/config.m4 ext/ldap/ldap.c: Added test for ldap_start_tls_s() 2002-06-22 Den V. Tsopa <tdv@edisoft.ru> * ext/mbstring/mbfilter.c: small fix in preprocessor directive 2002-06-21 Markus Fischer <mfischer@guru.josefine.at> * ext/ldap/ldap.c: - Fix ZTS build, see #17915. 2002-06-21 Stefan Esser <s.esser@e-matters.de> * sapi/apache2filter/sapi_apache2.c sapi/nsapi/nsapi.c sapi/apache/mod_php4.c: Fixing the same possible memory leak. 2002-06-21 Edin Kadribasic <edink@proventum.net> * main/config.w32.h.in: Made pgsql compile on win32 again. All defines regarding libpq capabilities are kept in ext/pgsql/pgsql.dsp where HAVE_PQESCAPE is already defined. 2002-06-21 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Remote.php: * typo 2002-06-21 Harald Radi <harald.radi+coding.php@nme.at> * ext/com/COM.c: removed CONST_EFREE_PERSISTENT so that andi can commit his patch 2002-06-21 Derick Rethans <d.rethans@jdimedia.nl> * main/SAPI.c main/SAPI.h sapi/pi3web/pi3web_sapi.c sapi/tux/php_tux.c ext/standard/head.c: - Added a new parameter to the header() function which overrides the HTTP response code. - Added a new parameter to the header() function which overrides the HTTP response code. 2002-06-21 Stig Bakken <ssb@fast.no> * pear/PEAR/Config.php: * bending over backwards to find sensible defaults 2002-06-21 Jani Taskinen <sniper@iki.fi> * ext/gmp/config.m4: Make this extension compile as shared extension too. 2002-06-20 Sander Roobol <phy@wanadoo.nl> * ext/mime_magic/mime_magic.c: ZTS fixes 2002-06-20 James Cox <james@blog.at> * build/build.mk: oops.. * build/build.mk: make "make snapshot" work again.. * build/build.mk: fixing to permit builds with ZE2 2002-06-20 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de> * ext/domxml/php_domxml.c: - take version of libxslt and libxml from runtime variables to make sure the reported versions correspond to the actually installed versions of libxml and libxslt 2002-06-20 Yasuo Ohgaki <yohgaki@ohgaki.net> * NEWS: Added missing NEWS entry for a bug fix. 2002-06-19 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Frontend/CLI.php pear/PEAR/Command/Remote.php pear/PEAR/Command/Registry.php pear/PEAR/Command/Install.php pear/PEAR/Registry.php pear/PEAR/Config.php pear/PEAR/Dependency.php pear/PEAR/Installer.php pear/PEAR/Common.php: - Force params to version_compare() to be strings, otherwise some comparations will fail (ex. 0.9 will be equal to 0.90) - Other minor cleanup's * pear/PEAR/Installer.php: Do NOT allow install packages with errors in its description file 2002-06-19 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/mbstring/mbstring.c: correct handling/generating of php_mbstr_default_identify_list 2002-06-19 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: - Make domxml_xslt_process() working again. 2002-06-19 Sander Roobol <phy@wanadoo.nl> * ext/standard/info.c: Made the API versions appear better on phpinfo(); 2002-06-19 Alan Knowles <alan@akbkhome.com> * pear/Date/Calc.php: Fixed Undefined index: 06 in ..... - commit to correct branch * pear/Date/Calc.php: Fixed Undefined index: 06 in ..... 2002-06-19 Jani Taskinen <sniper@iki.fi> * ext/gd/config.m4: Fix bug: #17130 2002-06-19 Edin Kadribasic <edink@proventum.net> * main/streams.c: No need to check for allow_url_fopen here. 2002-06-19 Jani Taskinen <sniper@iki.fi> * main/main.c: Use correct macro for boolean ini values. 2002-06-18 Stig Venaas <venaas@uninett.no> * ext/standard/array.c: Made array_unique() always keep the first occurrences of duplicates, making the behavior easier to understand, and maybe more useful. 2002-06-18 Andi Gutmans <andi@zend.com> * ext/bcmath/bcmath.c ext/bcmath/php_bcmath.h: - Nuke use of persist_alloc(). This can't be used with a new memory manager 2002-06-18 Stefan Esser <s.esser@e-matters.de> * main/SAPI.c: fix: appending the default charset to text/ content types never worked fix: removed double free 2002-06-18 Jan Lehnardt <jan@dasmoped.net> * ext/standard/array.c: - WS-fixes 2002-06-18 Stefan Esser <s.esser@e-matters.de> * main/SAPI.c: keep fingers away from already freed memory. 2002-06-18 Hartmut Holzgraefe <hartmut@six.de> * ext/standard/file.c: - fixed bug in enclosure handling (was still hardcoded to '"' in one place) - added possibility to pass empty enclosure if you really don't want one 2002-06-18 Sander Roobol <phy@wanadoo.nl> * ext/standard/string.c ext/standard/tests/strings/add-and-stripslashes.phpt: Fixed stripslashes when magic_quotes_sybase is enabled, and add a test for add- and stripslashes(). * ext/standard/tests/strings/add-and-stripslashes.phpt: Fix stripslashes when magic_quotes_sybase is enabled, and add a test for add- and stripslashes(). 2002-06-18 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/var.c: - Fix for bug #16065 2002-06-18 Sander Roobol <phy@wanadoo.nl> * main/SAPI.c: Patch by Michael Sisolak <msisolak@yahoo.com> to make header() honor the replace parameter. Closes #16458. 2002-06-18 Derick Rethans <d.rethans@jdimedia.nl> * ext/zlib/zlib.c: - oops... read before commit :) * ext/zlib/zlib.c: - It doesn't work from within a script... so we disallow it 2002-06-18 Tomas V.V.Cox <cox@idecnet.com> * pear/package-PEAR.xml: "Release notes"++ 2002-06-18 Markus Fischer <mfischer@guru.josefine.at> * ext/dbx/dbx_sybasect.c: - User proper macros as suggested by Marc. * ext/domxml/php_domxml.c: - Fix ZTS build. 2002-06-18 Jani Taskinen <sniper@iki.fi> * ext/mbstring/mbstring.c: Fixed bug: #17137, test pass still 2002-06-18 Edin Kadribasic <edink@proventum.net> * ext/standard/math.c: ZTS fix. * ext/standard/math.c: Check for +/- infinity in base_convert (bug #14807). 2002-06-17 Sergey Kartashoff <gluke@biosys.net> * ext/mnogosearch/php_mnogo.c: 2002-06-17 Andrei Zmievski <andrei@php.net> * NEWS: Fix. * NEWS: *** empty log message *** * ext/standard/reg.c: MFH * ext/standard/reg.c: Applied fix for #17764. 2002-06-17 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR.php: Dropped case insentive ext search in PEAR::loadExtension() * pear/PEAR.php: Typo in the folding mark 2002-06-17 Stig Bakken <ssb@fast.no> * pear/PEAR/Config.php: * php-4.2.1-installer.exe for Windows is installed in c:\php by default, but it has PHP_SYSCONFDIR set to c:\php4. workaround. 2002-06-17 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Dependency.php: Use the new PEAR::loadExtension() in checkExtension() instead of the "hack" * pear/PEAR.php: Added PEAR::loadExtension($ext) - OS independant PHP extension load * pear/PEAR.php: trailing ws 2002-06-17 Hartmut Holzgraefe <hartmut@six.de> * ext/standard/formatted_print.c: making printf/sprintf locale-aware without external dependencies * ext/standard/string.c: fixed return types for ucwords/ucfirst when passed an empty string 2002-06-17 Stig Bakken <ssb@fast.no> * pear/PEAR/Remote.php: * doh 2002-06-17 Alan Knowles <alan@akbkhome.com> * pear/PEAR/Common.php: Fixing for the coding standard :) 2002-06-17 Stig Bakken <ssb@fast.no> * pear/PEAR/Remote.php: * add xmlrpc request to debug output (verbosity level 4+) 2002-06-17 Alan Knowles <alan@akbkhome.com> * pear/PEAR/Common.php: Added Dependancy check on XML - previously pear installer failed silently 2002-06-17 Jani Taskinen <sniper@iki.fi> * ext/dbase/dbase.c: - Made dbase_get_record() and dbase_get_record_with_names use same backend function as they both do same thing, just the output is different. Fixes also bug #17762 as side effect. 2002-06-16 Stefan Esser <s.esser@e-matters.de> * ext/standard/link.c: Fixed Bug #17790 - link and symlink now check uid and open_base_dir for link and its target 2002-06-16 Hartmut Holzgraefe <hartmut@six.de> * ext/standard/formatted_print.c: reverted patch depending on not yet commited work 2002-06-16 Derick Rethans <d.rethans@jdimedia.nl> * ext/mcrypt/mcrypt.c: - Fix version in phpinfo(); 2002-06-16 Andi Gutmans <andi@zend.com> * configure.in: - Add zend_mm.c 2002-06-16 Tomas V.V.Cox <cox@idecnet.com> * pear/package-PEAR.xml: Install the pear command under the bin_dir setting intead of the fixed PHP_BINDIR 2002-06-16 Hartmut Holzgraefe <hartmut@six.de> * ext/standard/formatted_print.c: make sprinf() locale-aware (Bug# 12647) 2002-06-16 Sander Roobol <phy@wanadoo.nl> * run-tests.php tests/php.ini: Made the tests (and not only run-tests.php) actually use php.ini-dist, and removed unused php.ini file. 2002-06-16 Markus Fischer <mfischer@guru.josefine.at> * php.ini-recommended php.ini-dist: - List new session.use_only_cookies option. 2002-06-16 Stig Bakken <ssb@fast.no> * pear/scripts/pear.in pear/package-PEAR.xml: * set include_path when running "pear" 2002-06-16 Jani Taskinen <sniper@iki.fi> * ext/xmlrpc/xmlrpc-epi-php.c: Fixed bug: #17732. xmlrpc_decode_request() and xmlrpc_set_type() expect some parameters to be passed by reference. 2002-06-15 Markus Fischer <mfischer@guru.josefine.at> * ext/gd/gd.c: - Be more verbose which index causes the warning. * ext/gd/gd.c: - Don't forget to close the stream. 2002-06-15 Harald Radi <harald.radi+coding.php@nme.at> * ext/sockets/php_sockets_win.c ext/sockets/sockets.c: workaround for a win32 memleak 2002-06-15 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/gd/.cvsignore: Add new target directories. 2002-06-14 Markus Fischer <mfischer@guru.josefine.at> * NEWS: - Update Win32/mail changes, mention bundled gd library. 2002-06-14 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Installer.php: - Fix issue with the DIRECTORY_SEPARATOR, did make the install of XML_image2svg fail - TODO++ and others minor stuff 2002-06-14 Stig Bakken <ssb@fast.no> * pear/PEAR/Remote.php: * if verbosity config is > 3, display xmlrpc response * another bugfix 2002-06-14 Andrei Zmievski <andrei@php.net> * NEWS: Fix. 2002-06-14 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/gd/gd_bundled.dsp win32/php_modules.dsw: Add gd_bundled to php_modules.dsw. 2002-06-14 Alan Knowles <alan@akbkhome.com> * pear/PEAR/Command/Remote.php: remote list and remote listall, can now list non-stable packages if you set prefered_state to something else * pear/PEAR/Remote.php: Fixed XML RPC sending of args - lets try and get the right tag :) * pear/PEAR/Remote.php: Fixed XML RPC sending of args 2002-06-14 Edin Kadribasic <edink@proventum.net> * ext/gd/libgd/gd.h: Use some more sane paths for win32 version. 2002-06-14 Markus Fischer <mfischer@guru.josefine.at> * ext/gd/gd_bundled.dsp: - Remove freetype.lib and HAVE_LIBTTF; we're always linking against freetype2 anyway. 2002-06-14 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c ext/domxml/php_domxml.h: - renamed domxml_parser_reference to domxml_parser_entitiy_reference - renamed domxml_cdata_block to domxml_parser_cdata_section (more consistent with the domxml_create_XXX methods) - added domxml_parser_processing_instruction(target,data) - added domxml_parser_namespace_decl(href,prefix) * ext/domxml/php_domxml.c ext/domxml/php_domxml.h: - oops, that didn't even compile - added domxml_parser_reference(reference) * ext/domxml/php_domxml.h ext/domxml/php_domxml.c: - Added preliminary SAX-Input support. It's now possible to build a DomDocument with SAX-Events (added domxml_parser_start_document(), domxml_parser_end_document(), domxml_parser_start_element(tagname[,attributes]), domxml_parser_end_element(tagname), domxml_parser_characters(characters), domxml_parser_cdata_block(cdata), domxml_parser_comment(comment), domxml_parser_get_document(). (chregu) 2002-06-14 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/standard/datetime.c win32/sendmail.c: Remove unused local variables. 2002-06-14 Jani Taskinen <sniper@iki.fi> * ext/odbc/php_odbc_includes.h ext/odbc/php_odbc.h ext/odbc/config.m4 ext/odbc/php_odbc.c: - Fixed bug #15803 (and propably others related too, part 2/2) . Changed the configure/compile so that it doesn't "pollute" the INCLUDES anymore and thus cause trouble with other extensions which might use the same header files. (e.g. Informix) . Separated the #include statements to own file so we don't get any errors when compiling main/internal_functions.c * ext/informix/php_informix_includes.h ext/informix/stub.c ext/informix/php_informix.h ext/informix/config.m4 ext/informix/ifx.ec ext/informix/Makefile.frag: - Fixed bug #15803 (and propably others related too) . Changed the compile so that it doesn't "pollute" the INCLUDES anymore and thus cause trouble with other extensions which might use the same header files. (e.g. ODBC) . Some fixes for Informix compile problems (with the new build system) . Removed unnecessary stub.c file. 2002-06-13 Markus Fischer <mfischer@guru.josefine.at> * ext/gd/gd_bundled.dsp: - Initial MSVC makefile to create a php_gd2.dll based on the bundled libgd, works out of the box here with the right image libs and headers. * win32/sendmail.c: - We don't need the check here because the regex makes sure we never have \r\n at the end of the header. 2002-06-13 Jani Taskinen <sniper@iki.fi> * sapi/apache/mod_php4.c: Fixes bugs: #16653, #14534, #14370 2002-06-13 Pierre-Alain Joye <pajoye@phpindex.com> * pear/Date/Calc.php: Fix isValid method : wrong order for the params to checkdate() 2002-06-13 Stefan Esser <s.esser@e-matters.de> * win32/sendmail.c: Typo: == instead of = * win32/sendmail.c: - should fix bug#17753 2002-06-13 Jani Taskinen <sniper@iki.fi> * ext/openssl/openssl.c: Fixed bug: #17751 (typo) 2002-06-13 Stefan Esser <s.esser@e-matters.de> * ext/standard/mail.c: Fixed: possible bufferunderrun (worst case == invalid free bytes counter) Fixed: isXXXX macros need (unsigned char) cast Fixed: bug#17746 - control chars are now filtered within "to" and "subject" parameters 2002-06-13 Andrei Zmievski <andrei@php.net> * ext/bz2/bz2.c: Typo. 2002-06-13 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Registry.php: Change a little the dep db structure Comment the code and some clean up's 2002-06-13 Andrei Zmievski <andrei@php.net> * ext/bz2/bz2.c: Fix #17650. 2002-06-13 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Registry.php: More work on the dependencies DB (still not tested/used) 2002-06-13 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.h ext/domxml/php_domxml.c: - Added DOMXML_LOAD_DONT_KEEP_BLANKS as possible mode, if one wants really nicely formatted XML-Documents (but this can have sideeffects, if you depend on whitespaces..) - bumped up domxml-api-version number. * ext/domxml/php_domxml.c ext/domxml/php_domxml.h: - Added better error-messages (3rd parameter) and validating of DTDs (2nd parameter) to domxml_open_mem(string xml[, int mode[, array errors]]) and domxml_open_file(string filename[, int mode[, array errors]]). - Added domxml_doc_validate([array errors]) for validating existing DomDocuments with a DTD. 2002-06-13 Edin Kadribasic <edink@proventum.net> * sapi/cli/php_cli.c: MFH (fix for #17733) * sapi/cli/php_cli.c: Fix exit code (bug #17733). 2002-06-13 Derick Rethans <d.rethans@jdimedia.nl> * ext/imap/php_imap.c: - Fix for bug #14410 (Patch by C. McCohy <mccohy@kyberdigi.cz>). 2002-06-13 Jani Taskinen <sniper@iki.fi> * ext/pcre/php_pcre.c: Fix build in ZTS mode 2002-06-12 Jason Greene <jason@inetgurus.net> * NEWS: Fix entry 2002-06-12 Stig Bakken <ssb@fast.no> * pear/PEAR/Common.php: * comment typos * pear/package-PEAR.xml: * set working version to 0.91-dev * pear/Makefile.frag: * minor cleanup * LICENSE: * this should have been done last year :) 2002-06-12 Andrei Zmievski <andrei@php.net> * ext/pcre/php_pcre.c NEWS: This patch adds ability to capture string offsets in the preg_match_*() results. 2002-06-12 Jani Taskinen <sniper@iki.fi> * NEWS: typofix * ext/standard/basic_functions.c: - Fixed bug #17669. PG(magic_quotes_runtime) wasn't reset for each request. * NEWS: cleanup 2002-06-12 Andrei Zmievski <andrei@php.net> * NEWS: set_error_handler() should take methods as callbacks. Also fixed it to report invalid callbacks. * ext/overload/overload.c NEWS: Properly return the result of __call() handler. 2002-06-12 Tomas V.V.Cox <cox@idecnet.com> * pear/scripts/pear.bat: Attempt to make pear.bat work better under Windows 2002-06-12 Hartmut Holzgraefe <hartmut@six.de> * ext/standard/datetime.c ext/standard/tests/time/003.phpt: fix for bug #10616 -> mktime() with negative date offsets not working on MacOSX 2002-06-12 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: MFH (fixed domxml_get_element_by_id() ) * ext/domxml/php_domxml.c: Fixed domxml_get_element_by_id() 2002-06-12 Sascha Schumann <sascha@schumann.cx> * ext/session/session.c ext/session/php_session.h: This option enables administrators to make their users invulnerable to attacks which involve passing session ids in URLs. 2002-06-12 Markus Fischer <mfischer@guru.josefine.at> * ext/bz2/bz2.c: - MFH fixes. 2002-06-11 Markus Fischer <mfischer@guru.josefine.at> * ext/domxml/TODO: - Those have been implemented already. * main/streams.c: - Fix builtin gets() emulation (hopefully). * ext/bz2/bz2.c: - Fix bzcompress(), remove leaks and add some sanity check on emalloc()s. * TODO: - Add some recent observations with bz2. * main/streams.c: - Add missing Id tag. * main/streams.c: - Always \0 terminate data returned from _php_stream_copy_to_mem(). 2002-06-11 Pierre-Alain Joye <pajoye@phpindex.com> * pear/Date/Calc.php: Add comment to ::isLeapYear() Remove useless comment added during the last commit * pear/Date/Calc.php: Remove regexp and months checks and use the native php function checkdate() Keep year check, only 4 digits allowed 2002-06-11 Jason Greene <jason@inetgurus.net> * TODO: Forgot one * TODO: Sockets currently works great with all compilers on Solaris Update TODO 2002-06-11 Hartmut Holzgraefe <hartmut@six.de> * ext/mime_magic/TODO ext/mime_magic/mime_magic.c: now it works on streams (plus some debug code removed) * main/php_streams.h: macro definition fixed, guess it was the usual kind of cut&past bug? 2002-06-11 Edin Kadribasic <edink@proventum.net> * sapi/cli/config.m4 configure.in: Disable installing pear when --disable-cli is used since pear installer needs cli to function. 2002-06-11 Markus Fischer <mfischer@guru.josefine.at> * TODO: - These things have been done already. 2002-06-11 Jason Greene <jason@inetgurus.net> * ext/standard/fsock.c main/network.c main/php_network.h: Also fixed error handling on unix (micropatch) Closes Bug #14740 2002-06-11 Jani Taskinen <sniper@iki.fi> * ext/mysql/config.m4 NEWS: - Reverted last bogus commit and fixed the credits in NEWS. 2002-06-10 Markus Fischer <mfischer@guru.josefine.at> * ext/pcre/php_pcre.c: - Typo. 2002-06-10 Stig Bakken <ssb@fast.no> * ext/mysql/config.m4: Add --with-mysql-sock option (James Cox) 2002-06-10 Markus Fischer <mfischer@guru.josefine.at> * win32/php4dllts.dsp: - Revert zlib.lib patch. 2002-06-10 Harald Radi <harald.radi@nme.at> * ext/rpc/handler.h ext/rpc/php_rpc.h ext/rpc/rpc.c ext/rpc/rpc.h: pooling and singleton finally work * ext/rpc/tests/test1.php ext/rpc/tests/test2.php ext/rpc/tests/test3.php ext/rpc/tests/test4.php ext/rpc/tests/tests.php: new testcases 2002-06-10 Frank M. Kromann <frank@kromann.info> * php.ini-dist php.ini-recommended ext/mssql/php_mssql.h ext/mssql/php_mssql.c: Adding ini setting for max_procs 2002-06-10 Harald Radi <harald.radi@nme.at> * win32/php4dllts.dsp: mysql need zlib.lib now 2002-06-10 Sergey Kartashoff <gluke@biosys.net> * ext/mnogosearch/php_mnogo.c: 2002-06-10 Jan Lehnardt <jan@dasmoped.net> * ext/standard/array.c: - MFH (WS-fix) * ext/standard/array.c: - whitespace fix 2002-06-10 Markus Fischer <mfischer@guru.josefine.at> * ext/mysql/libmysql/config-win.h win32/php4dllts.dsp: - Fix win32/mysql. - Revert cryptic WS commit on php4dllts.dsp. 2002-06-10 Joseph Tate <jtate@mi-corporation.com> * ext/domxml/php_domxml.c: 2002-06-10 Harald Radi <harald.radi@nme.at> * win32/php4dllts.dsp: mysql need zlib.lib now * ext/mysql/libmysql/my_wincond.c ext/mysql/libmysql/my_winthread.c: fix the build 2002-06-10 Sergey Kartashoff <gluke@biosys.net> * ext/mnogosearch/php_mnogo.c: - MnoGoSearch extension compile fix with mnogosearch-3.2.4 and 3.2.5 2002-06-10 Markus Fischer <mfischer@guru.josefine.at> * ext/standard/mail.c: - WS fix, damn win32. 2002-06-10 Harald Radi <harald.radi@nme.at> * ext/standard/array.c: fix the build 2002-06-10 Markus Fischer <mfischer@guru.josefine.at> * ext/standard/file.c: - Fix proto. 2002-06-10 Sergey Kartashoff <gluke@biosys.net> * ext/mnogosearch/php_mnogo.c: 2002-06-10 Markus Fischer <mfischer@guru.josefine.at> * ext/calendar/easter.c: - Fix easter_(days|date)()s first parameter now really defaults to the current year if ommited (it was document but didn't work). 2002-06-10 Andrei Zmievski <andrei@php.net> * ext/standard/array.c NEWS: Fix bug #7045: shuffle() now provides consistent distribution of values in the array. 2002-06-09 Tomas V.V.Cox <cox@idecnet.com> * pear/Makefile.frag: Commented out old unused stuff * pear/scripts/phptar.in: Moved to pear/Archive_Tar/scripts * pear/PEAR/Frontend/Gtk.php: if (!dl(php_gtk)) die("Unable to load the php_gtk extension\n"); * pear/PEAR/Frontend/CLI.php: Beautify config-show output, some wrap changes and fix small issue with _tableRow() with line counting 2002-06-09 Jani Taskinen <sniper@iki.fi> * NEWS: cleanup 2002-06-09 Tomas V.V.Cox <cox@idecnet.com> * pear/install-pear.php: displayLine() -> outputData() * pear/PEAR/Frontend/CLI.php: - outputData($data, $command) + outputData($data, $command = '_default') 2002-06-09 Harald Radi <harald.radi@nme.at> * ext/rpc/com/com.c ext/rpc/com/com.h: reflect the new abstraction changes in the demo layer * ext/rpc/handler.h ext/rpc/php_rpc.h ext/rpc/rpc.c ext/rpc/rpc.h ext/rpc/rpc_proxy.c: - using stas' abstraction now - layer can add individual ini settings now - classentries for the loaded rpc object are created dynamically now class hirarchy looks like: rpc<-[layer]<-[object] (e.g. rpc<-com<-adodb), thus the whole class tree is reflected into php - added user-functions to mark an object as a singleton and as poolable * main/config.w32.h.in: pg_escape_* functions were not available on win32 due to a missing define 2002-06-09 Sander Roobol <phy@wanadoo.nl> * ext/dio/dio.c ext/gmp/gmp.c: Don't use headers if the module contains only one phpinfo() entry, just stick to ordinary rows. * ext/gd/config.m4 ext/gd/gd.c: Made phpinfo() show if we're using the bundled version of GD 2002-06-09 James Cox <james@blog.at> * ext/mysql/config.m4: dont test for the socket -- enables installs over NFS etc. 2002-06-09 Sander Roobol <phy@wanadoo.nl> * ext/gd/config.m4: Fixed detection of JPEG support in bundled version of GD. * ext/mysql/config.m4: Fixed configure stuff 2002-06-09 Andrei Zmievski <andrei@php.net> * ext/standard/php_rand.h ext/standard/rand.c: Make RAND_RANGE() an API macro. 2002-06-09 Jani Taskinen <sniper@iki.fi> * ext/hwapi/config.m4: De-messify * ext/mysql/config.m4: Cleaned up the mess. Now it actually works too. 2002-06-08 Christian Dickmann <chrisdicki@gmx.de> * pear/PEAR/Command/Config.php pear/PEAR/Command/Remote.php: add modes to list-all. fix a mergerbug 2002-06-08 Sascha Schumann <sascha@schumann.cx> * sapi/apache2filter/sapi_apache2.c: too many flushes are bad 2002-06-08 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Installer.php: Hopefully fixed a couple of problems with destination paths: - Bug #17529 - In Windows getting <pear>\/\<file> - Documentation under <doc_dir>/Package/Package/ 2002-06-08 Andrei Zmievski <andrei@php.net> * NEWS: *** empty log message *** 2002-06-08 James Cox <james@blog.at> * ext/mysql/config.m4: added support for --with-mysql-sock so people can specify it (eg, NFS compiles, etc) changed the default mysql.sock location to use the one from the RPM. Added /usr/local locations to the search list. (imajes) 2002-06-08 Markus Fischer <mfischer@guru.josefine.at> * ext/standard/info.c main/php_streams.h main/streams.c: - Since streams are always enabled, instead of just printing 'enabled' we tell what streams are currently registered. 2002-06-07 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Registry.php: Experimental dependencies database handling functions (not yet in production) 2002-06-07 Sebastian Bergmann <sb@sebastian-bergmann.de> * main/config.w32.h.in: Unbreak build by setting PHP_PREFIX to c:\php4 for now. * main/config.w32.h.in: Fugbix typo. 2002-06-07 Zak Greant <zak@mysql.com> * ext/mysql/libmysql/strmake.c ext/mysql/libmysql/strto.c ext/mysql/libmysql/strtoll.c ext/mysql/libmysql/strtoull.c ext/mysql/libmysql/thr_alarm.h ext/mysql/libmysql/violite.c ext/mysql/libmysql/my_pthread.h ext/mysql/libmysql/my_realloc.c ext/mysql/libmysql/my_static.c ext/mysql/libmysql/my_sys.h ext/mysql/libmysql/my_tempnam.c ext/mysql/libmysql/my_thr_init.c ext/mysql/libmysql/my_wincond.c ext/mysql/libmysql/my_winthread.c ext/mysql/libmysql/my_write.c ext/mysql/libmysql/mysql.h ext/mysql/libmysql/mysql_com.h ext/mysql/libmysql/mysql_version.h ext/mysql/libmysql/mysqld_error.h ext/mysql/libmysql/net.c ext/mysql/libmysql/raid.h ext/mysql/libmysql/config-win.h ext/mysql/libmysql/ctype.c ext/mysql/libmysql/dbug.c ext/mysql/libmysql/dbug.h ext/mysql/libmysql/default.c ext/mysql/libmysql/dll.c ext/mysql/libmysql/errmsg.c ext/mysql/libmysql/errmsg.h ext/mysql/libmysql/get_password.c ext/mysql/libmysql/global.h ext/mysql/libmysql/libmysql.c ext/mysql/libmysql/list.c ext/mysql/libmysql/m_string.h ext/mysql/libmysql/mf_casecnv.c ext/mysql/libmysql/mf_dirname.c ext/mysql/libmysql/mf_format.c ext/mysql/libmysql/mf_path.c ext/mysql/libmysql/my_compress.c ext/mysql/libmysql/my_create.c ext/mysql/libmysql/my_getwd.c ext/mysql/libmysql/my_init.c ext/mysql/libmysql/my_lib.c ext/mysql/libmysql/my_malloc.c ext/mysql/libmysql/my_open.c ext/mysql/libmysql/my_pthread.c ext/mysql/libmysql/charset.c: Updating embedded libmysql to version 3.23.48 2002-06-07 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Command/Remote.php pear/PEAR/Frontend/CLI.php: Beautify remote-info 2002-06-07 Joseph Tate <jtate@mi-corporation.com> * ext/domxml/php_domxml.c ext/domxml/php_domxml.h: Added aliases to make attr_node access functions more consistent. Old access functions are now deprecated. CVS: ---------------------------------------------------------------------- CVS: Enter Log. Lines beginning with `CVS:' are removed automatically CVS: CVS: Committing in . CVS: CVS: Modified Files: CVS: php_domxml.c CVS: ---------------------------------------------------------------------- 2002-06-07 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Command/Config.php: - Reapplied the "treat umask as octal in "config-set" command" Stig's patch - Ported the config-help command to new UI API * pear/PEAR/Frontend/CLI.php: more wrapping cases 2002-06-07 Stig Bakken <ssb@fast.no> * main/config.w32.h.in: * fix SHLIB_SUFFIX_NAME define for Windows * main/build-defs.h.in main/main.c configure.in: New constants: PHP_PREFIX and PHP_SHLIB_SUFFIX 2002-06-07 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Common.php: Remove debug code * pear/PEAR/Command/Registry.php: More info output retouchs * pear/PEAR/Common.php: Fix some minor issues with the parsing 2002-06-07 Stig Bakken <ssb@fast.no> * configure.in pear/Makefile.frag: * get rid of pearize 2002-06-07 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Command/Registry.php: Make "info" full human friendly (in deps list and lastmodified) * pear/PEAR/Command/Common.php pear/PEAR/Command/Package.php: Make $_deps_rel_trans and $_deps_type_trans globally avaible: moved from Command/Package.php -> Command/Common.php * pear/scripts/pear.in: Be nicer with the help * pear/scripts/pear.in: ws 2002-06-07 Stefan Esser <s.esser@e-matters.de> * main/rfc1867.c: - Stay always in buffer 2002-06-07 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Command/Package.php pear/PEAR/Command/Registry.php: Put back the "info" command in its full state: "Displays information about a package. The package argument may be a local package file, an URL to a package file, or the name of an installed package." Command "package-info" depreciated (again) * pear/Net/SMTP.php: fix EOL handling in AUTH (patch from Scott Carr <scarr@progbits.com>) * pear/Net/SMTP.php: ws 2002-06-06 Daniela Mariaschi <mariaschi@libero.it> * ext/interbase/interbase.c ext/interbase/php_interbase.h: Add control on Ib version. ibase_add_user(), ibase_modify_user() and ibase_delete_user() available with IB6 or later. fix bug #17184 * ext/interbase/php_interbase.h: Add control on IB version. ibase_add_user(), ibase_modify_user() and ibase_delete_user() are available with IB6 or later * ext/interbase/interbase.c: Add control on the IB version. ibase_add_user(),ibase_modify_user() and ibase_delete_user() are available with IB6 or later 2002-06-06 Markus Fischer <mfischer@guru.josefine.at> * NEWS: - Update * ext/dbx/dbx_sybasect.c: - Remove C++ comments. * ext/gd/libgd/gd.c: - Revert Ws thingy. 2002-06-06 Jani Taskinen <sniper@iki.fi> * ext/mbstring/config.m4: Changed the configure option to be --enable/disable 2002-06-06 Tomas V.V.Cox <cox@idecnet.com> * pear/Date/Calc.php: Added method Date_Calc::compareDates($day1,$month1,$year1,$day2,$month2,$year2) * pear/Date/Calc.php: ws+cs 2002-06-06 Stig Bakken <ssb@fast.no> * pear/package-PEAR.xml: * prepare 0.90 * pear/PEAR/Command/Install.php pear/PEAR/Installer.php: * add "nobuild" option to installer (-B or --nobuild option to CLI frontend) * pear/PEAR/Builder.php: * remove debug output * pear/PEAR/Builder.php: * when building, look for "package-version" subdirectory, needed for building stuff straight from tarballs * pear/PEAR/Common.php: * add PEAR_COMMON_PACKAGE_NAME_PREG constant * pear/PEAR/Frontend/CLI.php: * make displayFatalError work again 2002-06-06 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Command/Package.php: Forgot that one * pear/PEAR/Frontend/CLI.php: Wrap table contents * pear/PEAR/Command/Registry.php: Implemented "pear info <Installed Package>" command * pear/PEAR/Command/Package.php: Split the doPackageInfo() in doPackageInfo() and _infoForDisplaying() (this last one can be statically called and is used also from the "info" command) * pear/package-Mail.xml: package.xml file for the PEAR Mail package * pear/PEAR/Command/Common.php: That will really avoid PHP warnings * pear/PEAR/Command/Package.php: Fix package command 2002-06-06 Sergey Kartashoff <gluke@biosys.net> * ext/mnogosearch/php_mnogo.h ext/mnogosearch/php_mnogo.c: 2002-06-05 Jani Taskinen <sniper@iki.fi> * ext/gd/libgd/gd.c: ws and indent fixes * ext/gd/libgd/gd.c: - Fixes a segfault reported in #17584 2002-06-05 Markus Fischer <mfischer@guru.josefine.at> * win32/sendmail.c win32/sendmail.h: - Headers are now rewritten to always have \r\n line endings for SMTP. Also automatically removes superflous line breaks at the start and end of the header. 2002-06-05 Derick Rethans <d.rethans@jdimedia.nl> * ext/domxml/php_domxml.c: - Fix a problem in domxml_dump_mem(_file) with xmlKeepBlanksDefault not being set. (patch by Rob Richards <rrichards@digarc.com>) 2002-06-05 Sergey Kartashoff <gluke@biosys.net> * ext/mnogosearch/php_mnogo.c: 2002-06-05 Stefan Esser <s.esser@e-matters.de> * main/rfc1867.c: fixed multiline header detection (':' is valid within following lines) fixed fill_buffer to fill the buffer always completely 2002-06-05 Sergey Kartashoff <gluke@biosys.net> * ext/mnogosearch/php_mnogo.c ext/mnogosearch/php_mnogo.h: more mnogosearch compilation fixes 2002-06-05 Stefan Esser <s.esser@e-matters.de> * main/rfc1867.c: fixing some crashbugs that can be triggered with bogus uploads. 2002-06-05 Sergey Kartashoff <gluke@biosys.net> * ext/mnogosearch/php_mnogo.h ext/mnogosearch/php_mnogo.c: MnoGoSearch extension fixes to compile under latest mnogosearch 3.2.4 and 3.2.5. Still does not compile with them, but the work still in progress... 2002-06-04 Edin Kadribasic <edink@proventum.net> * win32/glob.c: Sync with openbsd glob.c 1.19 * win32/glob.c: Removed some leftover debugging code. 2002-06-04 Jani Taskinen <sniper@iki.fi> * ext/gd/config.m4: - Fixed the include paths for the needed libraries for bundled libgd. - Removed files which are not needed with libgd2 from the PHP_NEW_EXTENSION. 2002-06-04 Edin Kadribasic <edink@proventum.net> * ext/pcntl/php_pcntl.h ext/pcntl/pcntl.c: Added function pcntl_alarm(). 2002-06-04 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Registry.php: * sort package names in "pear list" 2002-06-04 Joseph Tate <jtate@mi-corporation.com> * ext/domxml/php_domxml.c: * ext/domxml/php_domxml.c: Bug fix to #17560 submitted by Rob Richards 2002-06-04 Mark L. Woodward <mlwmohawk@mohawksoft.com> * ext/msession/reqclient.h ext/msession/msession.c: Added persistent connections, and automattic reconnect on lost connections. Requires Phoenix 1.0 2002-06-04 Markus Fischer <mfischer@guru.josefine.at> * ext/posix/posix.c: - Fix ZTS built. 2002-06-04 Jani Taskinen <sniper@iki.fi> * ext/gd/gd.c: MFH: fix bug #17535 * ext/gd/gd.c: Fixed bug: #17535 * NEWS: fine tuning * ext/gd/config.m4: - Made the bundled libgd actually work. Fixed bug: #17244 2002-06-03 Markus Fischer <mfischer@guru.josefine.at> * ext/posix/posix.c: - Move macro code into distinct function for easier debugging as suggested by Andi. 2002-06-03 Harald Radi <h.radi@nme.at> * win32/php4dllts.dsp: fix build 2002-06-03 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * ext/standard/html.c: Make sure len is defined here 2002-06-03 Edin Kadribasic <edink@proventum.net> * NEWS ext/standard/array.c: MFH * ext/standard/array.c: Fixed array_rand() on ZTS platforms. 2002-06-03 Markus Fischer <mfischer@guru.josefine.at> * ext/posix/posix.c: - Fix isatty() and ttyname() (Closes #17323, #17333). * win32/sendmail.c: - Fix a leak and a crash. * win32/install.txt: - Add note about IIS/CGI and cgi.force_redirect gotcha 2002-06-02 Stig Bakken <ssb@fast.no> * pear/PEAR/Command.php: * fix bug that was re-introduced during merge 2002-06-02 Markus Fischer <mfischer@guru.josefine.at> * win32/sendmail.c: - Only add the To: field with the $to parameter if we don't have it in the custom header. This was the behaviour < 4.2.x (but it was broken, this one isn't). * win32/sendmail.c: - Revert fix for #14407. The From: header field IS different from the sendmail_from field which is in fact the retturn path. * win32/sendmail.c: - Try to fix most of the buffer overflows and dynamically allocate memory where applicable. 2002-06-02 Adam Dickmeiss <adam@indexdata.dk> * ext/yaz/php_yaz.c: Use ZOOM API for newer YAZ versions. * ext/yaz/config.m4: report error when YAZ cannot be found 2002-06-02 Stefan Roehrich <stefan@roehri.ch> * ext/zlib/zlib.c: Added "Vary: Accept-Encoding" header to zlib.output_compression compressed output as with obgzhandler(). 2002-06-02 Christian Dickmann <chrisdicki@gmx.de> * pear/PEAR/Frontend/CLI.php: make 'pear remote-info' work with CLI * pear/PEAR/Command/Remote.php pear/PEAR/Frontend/CLI.php: make 'pear search' work with CLI. fix a typo 2002-06-02 Markus Fischer <mfischer@guru.josefine.at> * main/main.c win32/sendmail.c: - Finish implementation of custom smtp port (introduces "smtp_port" ini config). * win32/sendmail.c: - Rephrase comment * win32/sendmail.c: - Classig problem: right idea, wrong pointer ... 2002-06-02 Christian Dickmann <chrisdicki@gmx.de> * pear/PEAR/Registry.php pear/System.php: silence unlink() and rmdir(). fix a bug where wasn't set due to wrong ini setting 2002-06-02 Stig Bakken <ssb@fast.no> * pear/PEAR/Frontend/CLI.php pear/scripts/pear.in pear/tests/pear_config.phpt pear/PEAR/Builder.php pear/PEAR/Command.php pear/PEAR/Command/Auth.php pear/PEAR/Command/Build.php pear/PEAR/Command/Common.php pear/PEAR/Command/Config.php pear/PEAR/Command/Install.php pear/PEAR/Command/Package.php pear/PEAR/Command/Registry.php pear/PEAR/Command/Remote.php pear/PEAR/Common.php pear/PEAR/Config.php pear/PEAR/Installer.php pear/package-PEAR.xml: * merge NEW_UI_API branch * pear/PEAR/Common.php pear/PEAR/Installer.php pear/scripts/pear.in pear/package-PEAR.xml: * implemented "package-info" replacement in package.xml * pear/PEAR/Installer.php: * typo? * pear/PEAR/Command/Config.php: * make output of "config-get" easier to parse * pear/PEAR/Command/Config.php: * fix some error reporting * pear/PEAR/Config.php: * less verbose * pear/PEAR/Installer.php: * fix buildcallback * pear/PEAR/Builder.php pear/PEAR/Installer.php pear/package-PEAR.xml: * "pear install" now builds and C extensions * pear/scripts/pear.in: * add custom error handler * pear/PEAR/Frontend/CLI.php: * de-obsolete display{,Fatal}Error 2002-06-01 Stig Bakken <ssb@fast.no> * pear/PEAR/Builder.php: * add some phpdoc 2002-06-01 Stefan Roehrich <stefan@roehri.ch> * ext/snmp/config.m4 acinclude.m4 ext/domxml/config.m4 ext/imap/config.m4: WS change to make very old compilers/preprocessors (e.g. HP/UX 9) happy (thanks to Andreas Ley for recognizing this). 2002-06-01 Christian Dickmann <chrisdicki@gmx.de> * pear/PEAR/Command/Config.php pear/PEAR/Command/Remote.php pear/PEAR/Config.php pear/PEAR/Frontend/CLI.php pear/PEAR/Installer.php: add 'pear search'. introduce type 'mask' to config. 2002-06-01 Sascha Schumann <sascha@schumann.cx> * sapi/apache/php_apache.c: Fix build 2002-06-01 Andi Gutmans <andi@zend.com> * configure.in: - Fix build with Engine 2 * sapi/apache/php_apache.c: - Reapply netware patch 2002-06-01 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * sapi/apache/php_apache.c: Put Netware header and comment back in. My CVS revision id got messed up somehow. 2002-06-01 Sander Roobol <phy@wanadoo.nl> * php.ini-dist php.ini-recommended: Update cracklib path and comment it out (thanks to Urs Gehrig for the hint) 2002-06-01 Frank M. Kromann <frank@kromann.info> * ext/mbstring/mbfilter.c: Makring function declarations match implementations (ZTS compilation) 2002-05-31 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * sapi/apache/php_apache.c: Oops * sapi/apache/php_apache.c: Renamed getallheaders() to apache_request_headers() and kept getallheaders() as an alias to it. Also added apache_response_headers() which returns the current response headers from Apache. 2002-05-31 Jani Taskinen <sniper@iki.fi> * ext/mbstring/config.m4: Fixed typo.. 2002-05-31 Stig Bakken <ssb@fast.no> * pear/PEAR/Frontend/CLI.php: * added missing fold 2002-05-31 Tomas V.V.Cox <cox@idecnet.com> * pear/System.php: fread already detects EOF * pear/System.php: Be able to handle strings as well as arrays in _multipleToStruct() * pear/System.php: - Make mkTemp() automatically removed temporary created files or dirs at script shutdown time - Remove unnecesarry PEAR inheritance - Some PHPDoc fixes 2002-05-31 Brad LaFountain <rodif_bl@yahoo.com> * ext/domxml/domxml.dsp ext/domxml/php_domxml.h: Changed PHP_EXPORTS to DOMXML_EXPORTS as Edin Kadribasic suggested 2002-05-31 Harald Radi <h.radi@nme.at> * ext/standard/credits_ext.h: MFH * ext/standard/credits_ext.h: added wez to the com extension * ext/com/CREDITS ext/com/VARIANT.c ext/com/com.h ext/com/conversion.c ext/com/php_COM.h ext/com/variant.h ext/com/COM.c: MFH * ext/com/CREDITS: added wez and ordered names alphabetically 2002-05-31 Venkat Raghavan S <rvenkat@novell.com> * sapi/apache/php_apache.c: Removed ugly code done as part of NetWare change, upon Andi's advice. Now, the typecasting is done for all platforms. 2002-05-31 Derick Rethans <d.rethans@jdimedia.nl> * main/rfc1867.c: - Don't issue a notice when no file was uploaded 2002-05-31 Brad LaFountain <rodif_bl@yahoo.com> * ext/domxml/php_domxml.c: initalize variable in domxml_doc_document_element() * ext/domxml/domxml.dsp: defined PHP_EXPORTS for exporting php_domobject_new() * ext/domxml/php_domxml.c ext/domxml/php_domxml.h: added the ability to use new keywork with domxmls objects "new DomDocument()" instead of xmldoc. This also allows you to create nodes without having a whole document "new DomElement("foo")". moved DOMXML_API_VERSION to php_domxml.h exposed php_domobject_new for other extensions to use removed some un-needed code 2002-05-31 Venkat Raghavan S <rvenkat@novell.com> * main/config.nw.h main/php.h main/php_compat.h sapi/apache/php_apache_http.h sapi/apache/php_apache.c sapi/apache/mod_php4.c: NetWare related changes * netware/buildsapi.bat netware/common.mif netware/php4apache.mak netware/phplib.imp netware/pwd.h: NetWare related additions / changes to build mod_php 2002-05-30 Harald Radi <h.radi@nme.at> * ext/com/COM.c: * ext/com/VARIANT.c ext/com/conversion.c ext/com/dispatch.c ext/com/COM.c: Added missing AddRef() calls in the COM extension. This should fix weird behaviour (in particular with ADODB). 2002-05-30 Sander Roobol <phy@wanadoo.nl> * pear/Console/tests/.cvsignore: Add missing .cvsignore 2002-05-30 Markus Fischer <mfischer@guru.josefine.at> * ext/session/mod_files.c: - Tell the user why his session doesn't work if he uses custom session_id()s. * win32/install.txt: - Typo * win32/install.txt: - Give some useful updates to Win32/Apache/PHP4 installation. Also mention strace for advanced users. 2002-05-30 Christian Dickmann <chrisdicki@gmx.de> * pear/PEAR/Command/Config.php pear/PEAR/Command/Remote.php pear/PEAR/Frontend/CLI.php: fix a typo. add some information to config-show 2002-05-30 Den V. Tsopa <tdv@edisoft.ru> * ext/mbstring/mbfilter_ru.c: Fixes some dummy errors (again). 2002-05-30 Jan Lehnardt <jan@dasmoped.net> * pear/tests/pear_error4.phpt: - add testcase for PEAR::delExpect() 2002-05-30 Stig Bakken <ssb@fast.no> * pear/PEAR/Config.php: * organize configuration_info array by group 2002-05-30 Venkat Raghavan S <rvenkat@novell.com> * netware/ZendEngine2.mak netware/build.bat: NetWare changes for ZE2 2002-05-30 Stig Bakken <ssb@fast.no> * pear/PEAR/Config.php pear/tests/pear_config.phpt: * applied Alan's patch adding groups and prompts 2002-05-30 Cliff Woolley <jwoolley@apache.org> * sapi/apache2filter/php_functions.c: That macro is and always was hopelessly broken, which is why it's now deprecated. 2002-05-29 Jan Lehnardt <jan@dasmoped.net> * pear/PEAR.php: - minor improvement of readability, * pear/PEAR.php: - added delExpect() API method. It allows to unset one or more expected - error codes. - requires _checkDelExpect() (private) which I added as well. - inspired by chregu (PHP-Deluxe, page 75) 2002-05-29 Christian Dickmann <chrisdicki@gmx.de> * pear/PEAR/Command/Install.php pear/PEAR/Frontend/CLI.php pear/PEAR/Installer.php pear/PEAR/Common.php: fix a bug and add UI::log 2002-05-29 Den V. Tsopa <tdv@edisoft.ru> * ext/mbstring/mbfilter.c: Added GB2312 alias for CN-GB 2002-05-29 Derick Rethans <d.rethans@jdimedia.nl> * ext/imap/php_imap.c: - Fix for bug #17503 2002-05-29 Venkat Raghavan S <rvenkat@novell.com> * netware/mktemp.h netware/sys/stat.h netware/tsrm.mak: Changes to build TSRM on NetWare 2002-05-29 Den V. Tsopa <tdv@edisoft.ru> * ext/mbstring/mbfilter_ru.c: Fixed some dummy errors. (dets) 2002-05-29 Venkat Raghavan S <rvenkat@novell.com> * netware/zend.mak: Changes to build Zend on NetWare 2002-05-29 Stig Bakken <ssb@fast.no> * pear/PEAR/Command.php: * no longer test on whether displayLine exists * pear/PEAR/Builder.php pear/PEAR/Command/Build.php: * build extensions in /var/tmp/pear-build-$USER/extname-n.n * copy built .so files * pear/PEAR/Command/Registry.php: * folding marks * pear/PEAR/Common.php: * make PEAR_Common::log work with the new UI API * pear/PEAR/Frontend/CLI.php: * for now, provoke php errors on calls to the old methods 2002-05-28 Andrei Zmievski <andrei@php.net> * acinclude.m4: Fix a bug in case statement. 2002-05-28 Stig Bakken <ssb@fast.no> * pear/PEAR/Command.php: * don't create duplicate ui objects * pear/PEAR/Frontend/CLI.php: * gotta love these extra newlines 2002-05-28 Venkat Raghavan S <rvenkat@novell.com> * netware/bisonflexzend.bat: Batch file to do the Lex / Yacc stuff for Zend * netware/common.mif: SDK directory path change 2002-05-28 Bertrand Mansion <bmansion@mamasam.com> * pear/HTML/Table.php pear/HTML/Common.php: Moved to /pear 2002-05-28 Venkat Raghavan S <rvenkat@novell.com> * netware/build.bat netware/common.mif netware/tsrm.mak netware/zend.mak: Makefiles and batch file required to build Zend and TSRM * netware/php-nw.bat: *** empty log message *** 2002-05-28 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Auth.php pear/PEAR/Command/Common.php pear/PEAR/Command/Config.php pear/PEAR/Command/Install.php pear/PEAR/Command/Package.php pear/PEAR/Command/Registry.php pear/PEAR/Command/Remote.php pear/PEAR/Frontend/CLI.php pear/PEAR/Common.php: * imported Christian Dickmann's new UI code * converted PEAR_Frontend_CLI::userDialog() to new API * pear/package-PEAR.xml: * 0.11 release coming up * pear/PEAR/Command/Package.php: * drop package-info command (deprecated by "info") * pear/tests/pear_config.phpt: * update test * pear/PEAR/Command/Build.php pear/PEAR/Builder.php pear/package-PEAR.xml: * update 0.11 release notes * move build logic into PEAR_Builder * pear/scripts/pear.in pear/PEAR/Config.php: * disable *&$^*#@ runtime ^@#*&$@ magical ^*!@@!! quoting * pear/Archive/Tar.php pear/docs/Archive_Tar.txt pear/package-Archive_Tar.xml: * sync up * pear/PEAR/Config.php: * disable magic_quotes_runtime (what a broken concept!!) while reading config files * pear/PEAR/Installer.php: * fix some errors/warnings * install data and test files now * pear/PEAR/Config.php: * added data_dir and test_dir 2002-05-27 Stig Bakken <ssb@fast.no> * pear/PEAR/Config.php: * moved the --without-pear compat defines to the right place * pear/PEAR/Config.php: * change root for documentation files to <peardir>/docs * pear/PEAR/Command/Config.php: * treat umask as octal in "config-set" command * pear/PEAR/Common.php: * use new Archive_Tar gzip autodetection * pear/package-Archive_Tar.xml: * prepare 0.9 release * pear/PEAR/Config.php: * fixed a bug in PEAR_Config::set() that broke validation of "set" parameters * pear/Archive/Tar.php: * better gzip detection (magic cookie) 2002-05-27 Andi Gutmans <andi@zend.com> * genfiles: - Hope this is the last commit in the series. Make sure that the .h file - also goes into ext/standard. I'm not sure how 4.2.1 was built with these - broken files * genfiles: - One more try. * genfiles: - Isn't Makefile.frag being called? (Weird) * genfiles: - Be a bit more verbose 2002-05-27 Sascha Schumann <sascha@schumann.cx> * ext/ircg/ircg.c: Flush data related to the streaming connection during php's rshutdown, and not during the ircg_set_current call, because it is otherwise not guaranteed that the HTTP header is sent out first. 2002-05-27 Stig Bakken <ssb@fast.no> * pear/PEAR/Installer.php pear/package-PEAR.xml: * fixes for php without zlib * pear/Archive/Tar.php pear/package-Archive_Tar.xml: * make Archive_Tar auto-detect whether zlib is needed based on file extension (.tar -> no zlib) 2002-05-27 Andi Gutmans <andi@zend.com> * makedist.ZendEngine2: - Small update 2002-05-27 Stig Bakken <ssb@fast.no> * pear/package.dtd: * update version * pear/PEAR/Command/Build.php pear/PEAR/Common.php pear/package.dtd pear/package-PEAR.xml: * first shot at "pear build" command for building extensions from C code * pear/PEAR/Command/Registry.php: * "info" command * pear/PEAR/Command/Config.php: * added config-help command * pear/PEAR/Config.php: * drop "any" as a valid preferred_state * pear/PEAR/Config.php: * more verbose docs for "verbose" :) 2002-05-26 Stig Bakken <ssb@fast.no> * pear/PEAR/Common.php: * un-indent description too * pear/PEAR/Common.php: * try being smart about de-indenting release notes from the xml * pear/PEAR/WebInstaller.php: * PEAR_Frontend_Web is coming! 2002-05-26 Andi Gutmans <andi@zend.com> * genfiles: - Small fix 2002-05-26 Edin Kadribasic <edink@proventum.net> * NEWS: I case we ever release 4.2.2. * sapi/cgi/cgi_main.c sapi/cli/php_cli.c: MFH (fix for exit()) 2002-05-26 Andi Gutmans <andi@zend.com> * genfiles: - Update genfiles for new build system 2002-05-26 Tomas V.V.Cox <cox@idecnet.com> * pear/scripts/pear.in: Added "pear -V" (show version information) 2002-05-26 Stig Bakken <ssb@fast.no> * pear/scripts/pear.in: * another help fix 2002-05-26 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Command/Config.php: Make the error handling work again since the new internal command structure 2002-05-26 Martin Jansen <mail@martin-jansen.de> * pear/package-PEAR.xml: * Add /me has helper. 2002-05-26 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Package.php: * bold column headings * pear/package-PEAR.xml: ^t 2002-05-26 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Command/Install.php pear/scripts/pear.in: "Help" fixes 2002-05-26 Edin Kadribasic <edink@proventum.net> * sapi/cgi/cgi_main.c: Merge from cli. 2002-05-26 Stig Bakken <ssb@fast.no> * pear/package-PEAR.xml: * add package.dtd to the distribution * pear/package-PEAR.xml: * roll out 0.10 * pear/PEAR/Command.php: * focus on the present * pear/PEAR/Frontend/Gtk.php: * add @nodep stuff here too * pear/PEAR/Remote.php: * be nice to PEAR_Common::detectDepdencencies() * pear/PEAR/Common.php: * more work on the dependency detector * pear/scripts/pear.in: * Console_Getopt POSIX fix * pear/PEAR.php: * phpdoc fixes (un-break the broken) 2002-05-26 Edin Kadribasic <edink@proventum.net> * sapi/cli/php_cli.c: Due to the way Zend handles exit() we cannot rely on the return code of php_execute_script. * sapi/cli/php_cli.c: Made constants persistent and fixed a memory leak. 2002-05-26 Stig Bakken <ssb@fast.no> * pear/Console/Getopt.php pear/package-Console_Getopt.xml: * POSIX getopt compatibility support (first argv element is the command) * pear/install-pear.php: * tidy output a bit * ext/standard/versioning.c: Fix segfault in version_compare() * pear/PEAR/Installer.php: * cleaned up error handling in _installFile 2002-05-25 Martin Jansen <mail@martin-jansen.de> * pear/PEAR/Command/Package.php: * Make rel_trans from doPackageInfo globally available. * Add command "package-dependencies" (shortcut "pd") to list the dependencies of a package. 2002-05-25 Stig Bakken <ssb@fast.no> * pear/PEAR/Remote.php: * typo caught by PEAR_Common::detectDependencies :) 2002-05-24 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbstring.c: reverted my patch. * ext/mbstring/config.m4 ext/mbstring/mbfilter.c ext/mbstring/mbfilter_ru.c ext/mbstring/mbfilter_ru.h ext/mbstring/mbstring.c: reverted patch to support iso2022kr. 2002-05-24 Sander Roobol <phy@wanadoo.nl> * ext/standard/info.c: Fix <head> and <body> tags in phpinfo() output (#17411) 2002-05-24 Edin Kadribasic <edink@proventum.net> * sapi/cli/php_cli.c: Register STDIN, STDOUT, and STDERR "constants" in cli in cases where script itself is not being loaded from STDIN. This enables constructs like fwrite(STDERR, "Error 42"); 2002-05-23 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/image.c ext/standard/php_image.h: - Added support for compressed SWF (Flash MX) files to getimagesize(). (Fixes feature request #17272). - Added support to getimagesize() for compressed Flash MX files. 2002-05-23 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Installer.php: TODO++ Check dependencies break on package uninstall (when no force given) * pear/PEAR/Dependency.php: Fix package dependency check (reported by Rasmus) 2002-05-23 Andrei Zmievski <andrei@php.net> * ext/pcre/php_pcre.c NEWS: This code adds string offset capturing in preg_split() results. Original patch by David Brown, modified by me. 2002-05-23 Sascha Schumann <sascha@schumann.cx> * ext/ircg/ircg.c: Revamped timeout handling to be more consistent; it disconnects users which are not associated with a stream window within 3 minutes. Improved the id generator, so that it becomes more unlikely that two or more consecutive runs/instances will yield the same ids. Improved error message collecting to run at constant time intervals. Added a facility which aims at ensuring that the extension does not shutdown(2) unrelated sockets. This has been disabled for now, because of lack of extensive testing. The current time is now easily accessible through a wrapper function. This replaces the ugly #ifdefs spread through the code. IRCG does not generate "Pragma: no-cache" headers anymore. Additionally, ircg_set_current() will not cause the HTTP header to be sent, so you can add/change headers afterwards. And some cleanup. 2002-05-23 Edin Kadribasic <edink@proventum.net> * ext/standard/math.c: MFH (patch for allowing strings in pow() args, fixes #17374) 2002-05-23 Andi Gutmans <andi@zend.com> * ext/standard/file.c: - Fix typo 2002-05-23 Wez Furlong <wez.php@thebrainroom.net> * ext/standard/tests/general_functions/proc_open.phpt: Add simple test case for proc_open * ext/standard/exec.c: Fix (stupid) segfault. #17379 2002-05-23 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/exec.c: - Fix unchecked return values with parameters to proc_open. (Fixes bug #17375) * ext/standard/file.c: - Fix errormessage and whitespace 2002-05-23 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/standard/file.c: Added 4th parameter to specify enclosure character. Patch by Dean Richard Benson <dean@vipersoft.co.uk> Spit more meaningful error messages when delim and/or enclosure char is null. 2002-05-22 Jani Taskinen <sniper@iki.fi> * run-tests.php: Skip POST data if it is empty. 2002-05-22 Andi Gutmans <andi@zend.com> * makedist.ZendEngine2: - makedist script for creating Engine 2 distribution. - Hopefully we can get a preview out in the next few days. 2002-05-22 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Command/Package.php: Trigger an error if the run-test.php file is not found Make the run-tests pear cmd run with the CGI SAPI * pear/PEAR/Dependency.php: Test first if the package exists before comparing the version (fix the version_compare() segfault) * pear/PEAR/Remote.php: Make pear -vv XXX set the XML_RPC debug flag 2002-05-22 Wez Furlong <wez.php@thebrainroom.net> * sapi/activescript/CREDITS sapi/activescript/README: Add README and CREDITS... * sapi/activescript/scriptengine.cpp: Fix bug when length was queried before the string was converted. 2002-05-21 Wez Furlong <wez.php@thebrainroom.net> * ext/com/COM.c: Add documentation comment for properties in com_print_typeinfo * ext/com/COM.c: Enhance com_print_typeinfo. The main expected use is like this, for figuring out what methods are allowed for a COM object: $ie = new COM("InternetExplorer.Application"); // Prints class definition for IE object com_print_typeinfo($ie, "InternetExplorer.Application", false); // Prints class definition for default IE event handler com_print_typeinfo($ie, "InternetExplorer.Application", true); 2002-05-21 Andrei Zmievski <andrei@php.net> * NEWS: *** empty log message *** * ext/tokenizer/tokenizer.c: Fix bug #16939. 2002-05-21 Wez Furlong <wez.php@thebrainroom.net> * ext/com/COM.c: Correct usage of convert_to_string_ex which is not allowed to zval* * ext/com/COM.c: Reformat some comments. * ext/com/COM.c: Fix a flag, remove an old comment. * ext/com/com.h ext/com/dispatch.c ext/com/php_COM.h ext/com/variant.h ext/com/COM.c: - Make sure that COM and VARIANT resources are returned as resources rather than longs. - Make the IDispatch implementation a bit more generic (and fix my mess of pointers). - Add new com_message_pump() function that acts like an interruptible usleep() that processes COM calls/events. - Add new com_print_typeinfo() function for "decompiling" the typeinfo for an interface into PHP script. This is useful for generating a skeleton for use as an event sink. - Add new com_event_sink() function for sinking events from COM objects. Usage is like this: <?php class IEEventSinker { var $terminated = false; function ProgressChange($progress, $progressmax) { echo "Download progress: $progress / $progressmax\n"; } function DocumentComplete(&$dom, $url) { echo "Document $url complete\n"; } function OnQuit() { echo "Quit!\n"; $this->terminated = true; } } $ie = new COM("InternetExplorer.Application"); $sink =& new IEEventSinker(); com_event_sink($ie, $sink, "DWebBrowserEvents2"); $ie->Visible = true; $ie->Navigate("http://www.php.net"); while(!$sink->terminated) { com_message_pump(4000); } $ie = null; ?> 2002-05-21 Hartmut Holzgraefe <hartmut@six.de> * ext/mime_magic/TODO: ZTS issues fixed * ext/mime_magic/mime_magic.c: not beautifull (yet), but should fix ZTS builds 2002-05-21 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Installer.php: files that are not installed should be removed from the registered file list (TODO--) 2002-05-21 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Registry.php: * show installed_as instead of a "calculated" path for installed packages * pear/PEAR/Installer.php: * add TODO comment 2002-05-21 Sebastian Bergmann <sb@sebastian-bergmann.de> * win32/php4dll.dsp win32/php4dllts.dsp main/config.w32.h.in: Add HAVE_MBSTR_RU support for Win32. * ext/mbstring/mbfilter_ru.c: ZTS fixes. 2002-05-21 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Registry.php: * disable wrapping for now 2002-05-21 Den V. Tsopa <tdv@edisoft.ru> * ext/mbstring/mbfilter_ru.c ext/mbstring/mbfilter_ru.h ext/mbstring/mbstring.c ext/mbstring/unicode_table_ru.h ext/mbstring/mbfilter.h ext/mbstring/mbfilter.c ext/mbstring/config.m4: Added russian codepages (koi8-r,cp1251,cp866) support. 2002-05-21 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Common.php: Some minor error verbosity updates * pear/PEAR/Command/Remote.php: doListRemote -> doRemoteList * pear/PEAR/Installer.php: Make the installation of a package fail when _installFile fails and "force" is not set 2002-05-21 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Registry.php: * list command no longer displays test and data files when listing installed files * pear/PEAR/Command/Package.php: * package-list command no longer needed ("list" does the same thing and more) * pear/PEAR/Command/Registry.php: * rename shell-test shortcut to st (was stest) * pear/PEAR/Command/Install.php pear/PEAR/Command/Package.php pear/PEAR/Command/Registry.php pear/PEAR/Command/Remote.php pear/PEAR/Command/Config.php: * added more shortcuts * pear/PEAR/Command/Package.php pear/PEAR/Command/Registry.php pear/PEAR/Command/Remote.php pear/scripts/pear.in pear/PEAR/Command/Install.php pear/PEAR/Command.php pear/PEAR/Command/Auth.php pear/PEAR/Command/Common.php pear/PEAR/Command/Config.php: * implemented shortcuts ("pv" for "package-validate" etc.) do "pear help shortcuts" to see what shortcuts exist * renamed "list-installed" command to "list" and made it able to list the contents of installed packages as well as tar/tgz/xml files * added some more/better command docs * fixed up the synopsis part in the help output * display option parameters (--foo=bar, where bar is specified in 'shortarg' as for example 'f:bar') * renamed list-remote-packages to list-remote * renamed remote-package-info to remote-info * pear/PEAR/Common.php: * make infoFromAny actually work :) * pear/PEAR/Remote.php: * better wording 2002-05-21 Edin Kadribasic <edink@proventum.net> * ext/pgsql/pgsql.dsp: MFH (fix for #17315) * ext/pgsql/pgsql.dsp: Fix for #17315. Requires client library 7.2 or greater to compile. 2002-05-20 Markus Fischer <mfischer@guru.josefine.at> * ext/posix/posix.c: - MFH fix for #17323. * ext/posix/posix.c: - Fix posix_isatty() and posix_ttyname() (Closes #17323) 2002-05-20 Stig Bakken <ssb@fast.no> * pear/PEAR/Remote.php: * disable debug in XML_RPC fallback 2002-05-20 Wez Furlong <wez.php@thebrainroom.net> * sapi/activescript/php4as_scriptengine.h sapi/activescript/scriptengine.cpp sapi/activescript/php4activescript.h: Use the GIT for inter-thread marshalling. 2002-05-20 Markus Fischer <mfischer@guru.josefine.at> * ext/zip/zip.c: - Add safe_mode/uid and open_basedir check to zip_open() (closes #16927). * ext/standard/filestat.c: - ZTS gotcha * ext/standard/filestat.c: - Add open_basedir check for all functions using php_stat() (filesize, stat, etc), closes #11563. 2002-05-20 Harald Radi <h.radi@nme.at> * sapi/activescript/classfactory.cpp sapi/activescript/scriptengine.cpp: this way it even compiles * ext/com/com.h ext/com/conversion.c ext/com/COM.c: integrating wez's patch 2002-05-20 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Remote.php: * new command setup * pear/packages/XML_RPC-1.0.2.tar pear/packages/XML_RPC-1.0.3.tar: * upgrade bundled XML_RPC package to 1.0.3 * pear/Makefile.frag pear/install-pear.php: * new installer rule that does not depend on bash * pear/PEAR/Common.php: * _infoFromAny goes public! * pear/PEAR/Installer.php: * some verbosity changes: 0 - only errors, 1 - status report when the install is done, 2 - show each operation, 3 - show file operations * pear/PEAR/Command/Install.php: * no output in verbosity level 0 * pear/PEAR/Config.php: * added PEAR_Config::removeLayer() * pear/PEAR/Command/Package.php: * remove getCommands() from here * added options to "pear cvstag": -q -Q -d -F 2002-05-20 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: MFH 2002-05-20 Stig Bakken <ssb@fast.no> * pear/scripts/pear.in: * support multiple -v and -q options * pear/package-Archive_Tar.xml: * forgot to update the release date * pear/package-Archive_Tar.xml: * fix fix * pear/Archive/docs/Tar.txt pear/Archive/Tar.php pear/package-Archive_Tar.xml: * merge 0.4 files from /pear/Archive_Tar * pear/package-Console_Getopt.xml: * prepare 0.10 * pear/PEAR/Command/Registry.php: * remove run() from this class 2002-05-20 Wez Furlong <wez.php@thebrainroom.net> * win32/php4dllts.dsp: This somehow got undone when I committed the rest... 2002-05-20 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: Fixed possible pg_lo_write() overflow and make it more fail safe. 2002-05-20 Wez Furlong <wez.php@thebrainroom.net> * win32/php4ts.dsw: Add activescript sapi to the workspace * sapi/activescript/classfactory.cpp sapi/activescript/php4activescript.c sapi/activescript/php4activescript.def sapi/activescript/php4activescript.dsp sapi/activescript/php4activescript.h sapi/activescript/php4as_classfactory.h sapi/activescript/php4as_scriptengine.h sapi/activescript/scriptengine.cpp: Implement ActiveScript interfaces. This allows use of PHP in: Client-side script in Internet Explorer Windows Scripting Host ASP and ASP.NET pages It's mostly working... give it a go. You will need to regsvr32 the php4activescript.dll manually. * main/fopen_wrappers.h main/spprintf.h: Protect C code with extern "C" * ext/com/COM.c ext/com/conversion.c ext/com/dispatch.c ext/com/php_COM.h: Added generic COM wrapper for PHP objects. 2002-05-20 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Command/Install.php: Added missing key 'doc' for -Z help * pear/PEAR/Common.php: Fix small bug making the baseinstalldir attrib persist 2002-05-20 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: Improve large object performance. pg_lo_read() and pg_lo_read_all() should perform much better now. Fixed Old API support for pg_lo_import(). 2002-05-20 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Install.php: * no need for getCommands() here * pear/PEAR/Command/Package.php: * new command setup * pear/PEAR/Command/Auth.php: * typo fixes, wrapping 2002-05-19 Stig Bakken <ssb@fast.no> * pear/package-PEAR.xml: * install pear.bat on Windows only 2002-05-19 Jani Taskinen <sniper@iki.fi> * pear/package-Archive_Tar.xml pear/package-Console_Getopt.xml pear/package-PEAR.xml: Make this actually work somewhat better.. 2002-05-19 Edin Kadribasic <edink@proventum.net> * NEWS: Give due credit to Markus. 2002-05-19 Stig Bakken <ssb@fast.no> * pear/PEAR/Dependency.php: * compat fix 2002-05-19 Markus Fischer <mfischer@guru.josefine.at> * NEWS: - Mention the availability of glob(). 2002-05-19 Tomas V.V.Cox <cox@idecnet.com> * pear/scripts/pear.in: Put "pear help options" working again * pear/PEAR/Command/Common.php: Put "pear help command" working again 2002-05-19 Sander Roobol <phy@wanadoo.nl> * run-tests.php: Fix php.ini-related stuff in run-tests.php * main/php_ini.c: get_cfg_var("get_file_path") didn't work correctly when an alternative php.ini _file_ was specified using -c 2002-05-19 Edin Kadribasic <edink@proventum.net> * main/config.w32.h.in win32/glob.c win32/glob.h win32/php4dllts.dsp ext/standard/dir.c: Added glob() support for windows. 2002-05-19 Sander Roobol <phy@wanadoo.nl> * php.ini-dist php.ini-recommended: It's get_cfg_var() not cfg_get_var() * tests/basic/.cvsignore tests/classes/.cvsignore tests/func/.cvsignore tests/lang/.cvsignore tests/strings/.cvsignore pear/tests/.cvsignore tests/.cvsignore ext/zip/tests/.cvsignore ext/zlib/tests/.cvsignore pear/XML/tests/.cvsignore ext/standard/tests/strings/.cvsignore ext/standard/tests/time/.cvsignore ext/standard/tests/versioning/.cvsignore ext/xml/tests/.cvsignore ext/xslt/tests/.cvsignore ext/standard/tests/general_functions/.cvsignore ext/standard/tests/math/.cvsignore ext/standard/tests/reg/.cvsignore ext/standard/tests/serialize/.cvsignore ext/standard/tests/.cvsignore ext/standard/tests/aggregation/.cvsignore ext/standard/tests/array/.cvsignore ext/standard/tests/assert/.cvsignore ext/standard/tests/file/.cvsignore ext/pspell/tests/.cvsignore ext/session/tests/.cvsignore ext/skeleton/tests/.cvsignore ext/mcve/tests/.cvsignore ext/ncurses/tests/.cvsignore ext/openssl/tests/.cvsignore ext/pcntl/tests/.cvsignore ext/pgsql/tests/.cvsignore ext/iconv/tests/.cvsignore ext/interbase/tests/.cvsignore ext/mbstring/tests/.cvsignore ext/mcrypt/tests/.cvsignore ext/dio/tests/.cvsignore ext/domxml/tests/.cvsignore ext/exif/tests/.cvsignore ext/gmp/tests/.cvsignore ext/db/tests/.cvsignore ext/dbplus/tests/.cvsignore ext/dbx/tests/.cvsignore ext/crack/tests/.cvsignore ext/ctype/tests/.cvsignore ext/cybermut/tests/.cvsignore ext/bz2/tests/.cvsignore run-tests.php: Fix temporary filename problems, and update .cvsignores with new extensions * Makefile.global run-tests.php: Fix make test and remove a warning * Makefile.global run-tests.php: Cleaned up run-tests.php, and fixed it on linux/unix 2002-05-19 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Package.php: * new command setup * pear/PEAR/Installer.php: * support platform-specific files * pear/OS/Guess.php: * take uname as optional constructor parameter 2002-05-19 Jani Taskinen <sniper@iki.fi> * NEWS: Typo fixes * ext/exif/exif.c ext/domxml/php_domxml.c: MFH * ext/exif/exif.c ext/domxml/php_domxml.c: DO NOT use C++ comments! 2002-05-18 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: - delete attributes as well in php_free_xml_node - more consistent naming in phpinfo() * ext/domxml/php_domxml.c: added "domxml API version" in phpinfo() output. * ext/domxml/php_domxml.c: MFH for memleak fixes in domxml_dump_mem and domxml_html_dump_mem * ext/domxml/php_domxml.c: mem leak fix for domxml_dump_node * ext/domxml/php_domxml.c: fixes memleak in html_dump_mem * ext/domxml/php_domxml.c: rename the object name for comment nodes to domcoment 2002-05-18 Markus Fischer <mfischer@guru.josefine.at> * ext/standard/dir.c: - Fix portability issues with empty results on Linux and FreeBSD, add safe_mode check and simplify code. 2002-05-18 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: MFH for memleak patch * ext/domxml/php_domxml.c: WS fixes * ext/domxml/php_domxml.c: This should fix a big bad memory leak in freeing the nodes at script end. 2002-05-17 Sascha Schumann <sascha@schumann.cx> * sapi/thttpd/thttpd.c: Improve readability of the header send function 2002-05-17 Markus Fischer <mfischer@guru.josefine.at> * NEWS: - Stuff all Win32 mail() changes together. 2002-05-17 Jon Parise <jon@csh.rit.edu> * NEWS: Credit where credit is due. 2002-05-17 Markus Fischer <mfischer@guru.josefine.at> * win32/sendmail.c win32/sendmail.h: - Win32 mail() is no longer case-sensitive when it comes to match for any headers (e.g. from:, cc:, etc). 2002-05-17 Preston L. Bannister <preston.bannister@cox.net> * win32/php4ts.dsw: Re-add "tests" project - this is the only change to file. For some reason MSVC chose to put "" around all the project file names. (Why? Ask Microsoft :). Perhaps different patch levels on MSVC6?). These files are not hand-edited. 2002-05-17 Wez Furlong <wez.php@thebrainroom.net> * ext/openssl/openssl.c: proto tweak * ext/sysvsem/sysvsem.c ext/sysvsem/php_sysvsem.h: Add an optional flag to sem_get that specifies if the semaphore should be automatically released on request shutdown. (#16986) Fix a segfault in sem_remove (#17274) 2002-05-17 Joseph Tate <jtate@mi-corporation.com> * win32/php4ts.dsw: Reverted the last commit which moved all the projects around. 2002-05-17 Cliff Woolley <jwoolley@apache.org> * sapi/apache2filter/config.m4 sapi/apache/config.m4: Allow the version checks for --with-apxs= and --with-apxs2= to work with development version of Apache, whose version strings end in "-dev", eg "Apache/2.0.37-dev". PR: 17233 Submitted by: Dale Ghent <daleg@elemental.org> * ext/standard/head.c: Only the last cookie was getting set. (You can have more than one Set-Cookie: header, as indicated by http://wp.netscape.com/newsref/std/cookie_spec.html.) PR: 16626 Submitted by: regina@hitel.net * sapi/apache2filter/php_functions.c: apache 2.0's apache_lookup_uri() was returning an array rather than an object, which contradicted both the documentation and the behavior of the same function under apache 1.3. PR: 14999 * sapi/apache2filter/apache_config.c: * restore the php_flag and php_admin_flag Apache directives which for some mysterious reason never made their way from sapi/apache to sapi/apache2filter when it was first written PR: 16629 * change the allowed locations of php_admin_value (and php_admin_flag to match) to ACCESS_CONF instead of OR_NONE to match sapi/apache. No idea why it was ever OR_NONE. PR: 16489 2002-05-17 Preston L. Bannister <preston.bannister@cox.net> * tests/php.ini: Default INI file used with run-tests.php 2002-05-16 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.h ext/domxml/php_domxml.c: - replaced domxml_doc_document_element implementation do use libxml2 method - renamed domxml_add_root to domxml_doc_add_root (and added alias for BC) - aliased $doc->get_root to domxml_document_element - added domxml_doc_set_root to change the root node (Lukas Schroeder) 2002-05-16 Preston L. Bannister <preston.bannister@cox.net> * tests/lang/031.phpt: More detailed/explanatory output. * tests/lang/029.phpt: Make failed case tell you what was different. * tests/basic/011.phpt: Make test valid for either "register globals" setting. * ext/ctype/tests/002.phpt: Restrict ctype tests to POSIX portable characters (0..127) and add numeric character tests. * ext/standard/tests/aggregation/aggregate.phpt ext/standard/tests/aggregation/aggregate_methods.phpt ext/standard/tests/aggregation/aggregate_methods_by_list.phpt ext/standard/tests/aggregation/aggregate_methods_by_regexp.phpt ext/standard/tests/aggregation/aggregate_properties.phpt ext/standard/tests/aggregation/aggregate_properties_by_list.phpt ext/standard/tests/aggregation/aggregate_properties_by_regexp.phpt ext/standard/tests/aggregation/aggregation_info.phpt ext/standard/tests/aggregation/deaggregate.phpt: Remove leading "./" from include filenames as in PHP this defeats include_path. * win32/php4ts.dsw: Add "tests" project to invoke run-tests.php (unit tests). * run-tests.php: Updated to run cleanly on Win32, and perform a more controlled test. * tests/tests.mak: Add TEST_PHP_DETAILED usage for verbose test runs. * tests/basic/002.phpt tests/basic/003.phpt tests/basic/004.phpt tests/basic/005.phpt: Fix typo in SKIP clause. * ext/standard/string.c: Adjust dirname() on Win32 to match CWD per drive semantics. * tests/dirname.phpt: dirname() checks that work for both Unix and Win32. 2002-05-16 Jani Taskinen <sniper@iki.fi> * ext/standard/filestat.c: MFH 2002-05-16 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * ext/standard/string.c: MFH just in case * ext/standard/string.c: Grr.. I keep leaving my debug in... * ext/standard/string.c: Fix for #17271 2002-05-16 Preston L. Bannister <preston.bannister@cox.net> * ext/mbstring/mbstring.c: Range check arguments to mb_strcut(). Test ext/mbstring/013.phpt causes a hard failure w/o this. * ext/mbstring/mbregex.h: Proper declaration to suppress compiler warning. 2002-05-16 Jani Taskinen <sniper@iki.fi> * ext/standard/filestat.c ext/standard/tests/file/003.inc ext/standard/tests/file/003.phpt: - Made all is_*() functions to return only boolean values. - Killed the "file not found" error for is_link(). (finally..) 2002-05-15 Preston L. Bannister <preston.bannister@cox.net> * tests/tests.dsp tests/tests.mak: Win32 project and makefile used to invoke run-tests.php 2002-05-15 Frank M. Kromann <frank@frontbase.com> * ext/mssql/php_mssql.c: Fixing the mssql_query to handle multiple results correct if the first result does not return any data. 2002-05-15 Harald Radi <h.radi@nme.at> * ext/com/conversion.c: MFH * ext/com/conversion.c: this should finally fix bug #14353 2002-05-15 Frank M. Kromann <frank@frontbase.com> * win32/sendmail.c win32/sendmail.h: Fixing line breaks * win32/imap_sendmail.c: Fixing build of IMAP extension, after changes in sendmail 2002-05-15 Markus Fischer <mfischer@guru.josefine.at> * win32/imap_sendmail.c: - Accommodate API changes to Ack(). 2002-05-15 Christian Stocker <chregu@phant.ch> * ext/domxml/config.m4: libxml2 >= 2.4.14 is needed (since quite some time ...) 2002-05-15 Jani Taskinen <sniper@iki.fi> * NEWS: Cleanup 2002-05-15 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * NEWS: Added Chinese, Korean support in mbstring. * ext/mbstring/mbfilter.c ext/mbstring/mbfilter_cn.c ext/mbstring/mbfilter_kr.c ext/mbstring/mbfilter_kr.h ext/mbstring/mbstring.c: added ISO-2022-KR support in mbstring. 2002-05-15 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Common.php: make downloadHttp() detect HTTP errors 2002-05-15 Jani Taskinen <sniper@iki.fi> * INSTALL: MFB * INSTALL: Nuke 4.1 for good this time. * INSTALL: MFH * INSTALL: Nuke .1 * EXTENSIONS: Added ctype to this list too. 2002-05-15 Markus Fischer <mfischer@guru.josefine.at> * win32/sendmail.c: - Add support for Bcc in w32/sendmail code. 2002-05-15 Derick Rethans <d.rethans@jdimedia.nl> * ext/ctype/ctype.c: - It's bundled, thus not experimental anymore 2002-05-14 Frank M. Kromann <frank@frontbase.com> * ext/mssql/php_mssql.h ext/mssql/php_mssql.c: Fixing hanfling of data type REAL. Remove extra bytes allocated by emalloc calls 2002-05-14 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbfilter_tw.c: fixed a initialization bug in euc-tw. 2002-05-14 Sascha Schumann <sascha@schumann.cx> * configure.in: some versions of autoconf pad CONFIG_FILES with a single space. accomodate that Thanks to Cliff Woolley 2002-05-14 Markus Fischer <mfischer@guru.josefine.at> * ext/standard/mail.c: - Adjust for improved error messages from win32/sendmail.c * win32/sendmail.c win32/sendmail.h: - Improve code so errors returned from the server are reported back to the user. 2002-05-14 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Config.php: Try to create the dir where the conf file resides before trying to write to it * pear/scripts/pear.in: Add "\n" after the error in usage() 2002-05-14 Markus Fischer <mfischer@guru.josefine.at> * win32/sendmail.c: - Do not include the Cc: for the first Cc'd recipient (spotted by Richard). * win32/sendmail.c win32/sendmail.h: - Convert unix to dos line endings. * win32/sendmail.c: - Try to find From: field in header, fallback to sendmail_from php.ini setting (Original patch by Michael Sisolak <msisolak@yahoo.com>, enhanced a bit). - Win32 mail() supports parsing 'From:' field from header (msisolak@yahoo.com, Markus). * win32/sendmail.c win32/sendmail.h: - MFH fix for Cc: crash * win32/sendmail.h win32/sendmail.c: - Fix win32 sendmail bug with Cc: in custom header not terminated with \r\n - Fix some obvious errors returned by the module, little cleanup. 2002-05-14 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Config.php: * convert to new command setup * pear/PEAR/Command/Auth.php: * typo 2002-05-14 Jan Lehnardt <jan@dasmoped.net> * README.CVS-RULES: - MFH * README.CVS-RULES: - fix typo, thanks to georg for spotting it. 2002-05-14 Stig Bakken <ssb@fast.no> * pear/PEAR/Remote.php: * fall back to XML_RPC if xmlrpc-epi is not loaded * pear/PEAR/Command/Auth.php: * add command definitions, split run() into one method for each command * pear/PEAR/Command/Install.php: * no need for getHelp() here anymore * pear/PEAR/Command/Common.php: * moved get{Help,Commands,Options} here * pear/scripts/pear.in: * moved the {config xxx} help message substitution to PEAR_Command_Common::getHelp 2002-05-14 Jason Greene <jason@inetgurus.net> * sapi/fastcgi/config.m4: Fix fastcgi build, may need more work 2002-05-13 Marko Karppinen <karppinen@pobox.com> * sapi/apache2filter/config.m4: Patch by Justin Erenkrantz <jerenkrantz@apache.org> for enabling --with-apxs2 build on Darwin. Omitting the change to start linking with libtool for now, though. 2002-05-13 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * ext/gd/libgd/gd.c: fix copyresampled bug in bundled gd lib 2002-05-13 Jim Jagielski <jim@jaguNET.com> * sapi/apache2filter/apache_config.c: More verbose but more generic error message when we spot multiple PHPINIDir directives 2002-05-13 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * ext/standard/filestat.c: MFH * ext/standard/filestat.c: Make sure newtime is never NULL 2002-05-13 Jan Lehnardt <jan@dasmoped.net> * README.CVS-RULES: - MFH * README.CVS-RULES: - added reference to http://cvsbook.red-bean.com/ 2002-05-13 Zeev Suraski <zeev@zend.com> * ext/standard/info.c: - Fix a buglet in printing of GPCSE arrays - Remove indirect access 2002-05-13 Andrei Zmievski <andrei@php.net> * ext/standard/array.c ext/standard/php_array.h ext/session/session.c ext/wddx/php_wddx.h ext/wddx/wddx.c pear/Console/Getopt.php ext/pcre/php_pcre.c ext/pcre/php_pcre.h: Changing email address. 2002-05-13 Derick Rethans <d.rethans@jdimedia.nl> * configure.in main/php_version.h: - Bumb version number 2002-05-13 Sander Roobol <phy@wanadoo.nl> * .cvsignore: Added confdefs.h which seems to be generated by configure 2002-05-13 Zeev Suraski <zeev@zend.com> * main/main.c ext/standard/info.c: - Centralize html_puts() again - Revolutionize phpinfo()'s speed 2002-05-13 Jon Parise <jon@csh.rit.edu> * ext/imap/php_imap.c: Instead of calling mail_fetchheader_full() to retrieve the complete header information just to extract the message envelope, call mail_fetchenvelope(), which returns just what we need. This is simpler, faster, and saves the IMAP server some work. Submitted by: Adam Kauffman <adam.kauffman@mindspring.com> 2002-05-12 Stig Bakken <ssb@fast.no> * pear/scripts/pear.in: * fix option parsing 2002-05-12 Zeev Suraski <zeev@zend.com> * main/output.c: Remove redundant code (thanks to Jani for pointing that out) 2002-05-12 Derick Rethans <d.rethans@jdimedia.nl> * configure.in main/php_version.h: - Fix version 2002-05-12 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Common.php pear/PEAR/Command/Install.php pear/scripts/pear.in pear/PEAR/Command.php pear/PEAR/Installer.php: * refactored the command/options code: - now each command class should define a "commands" property with documentation, option specs etc. - both long and short options are now supported - after recent changes to Console_Getopt, you may now have options to commands even though the same option is also valid for the pear command itself - less CLI-centric, better suited to Gtk and Web frontends 2002-05-12 Jani Taskinen <sniper@iki.fi> * NEWS: sync with branch * NEWS: short is good * NEWS: Made several entries comprehensible. 2002-05-12 Edin Kadribasic <edink@proventum.net> * NEWS: Merged safe_mode fixes into one entry. 2002-05-12 Jon Parise <jon@csh.rit.edu> * ext/imap/php_imap.c ext/imap/php_imap.h: Submitted by: Rob Siemborski <rjs3@andrew.cmu.edu> 2002-05-12 Edin Kadribasic <edink@proventum.net> * win32/install.txt: Fixed typo. * NEWS: MFH 2002-05-12 Sascha Schumann <sascha@schumann.cx> * ext/sockets/config.m4: As far as I can tell, the AC_CHECK_MEMBER could not succeed, because it does not include <sys/socket.h> which is necessary for the definition of struct msghdr. This include file is not part of ac_includes_default. Regardless, AC_CHECK_MEMBER is a autoconf-2.5x macro and thus we expand it here for 2.13 compatibility. 2002-05-12 Tomas V.V.Cox <cox@idecnet.com> * pear/scripts/pear.in: The command name is now the first arg not the second * pear/PEAR/Command/Install.php: Add "r" in cmd help * pear/scripts/pear.in: The first entry in argv is the command name, so Getopt will stop parsing more args 2002-05-12 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * ext/standard/file.c: MFH * ext/standard/file.c: Change safe-mode rule for rmdir() to match unlink() - allow is target is opened by caller or in a directory owned by caller 2002-05-12 Sascha Schumann <sascha@schumann.cx> * main/main.c: Simplify even more * main/main.c: Simplify white space handling in php_html_puts. If we encounter a ' ', we will look for the next non-' ' and set p accordingly. 2002-05-12 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/calendar/easter.c: Nuke unused local variables. 2002-05-12 Marko Karppinen <karppinen@pobox.com> * ext/calendar/calendar.c ext/calendar/easter.c ext/calendar/php_calendar.h: Add an option to calculate easter dates based on the Gregorian calendar during the years 1582-1752. Earlier this was only possible from 1753 onwards. Use the optional parameter CAL_EASTER_ROMAN with easter_days() to enable this. This is a fix for bug #12766. 2002-05-12 Sascha Schumann <sascha@schumann.cx> * ext/mbstring/config.m4: Fix this again. If you are unsure whether enable or with shall be used, please inquire on the mailing list. WITH is solely for the purpose of pointing to paths and other external entities. Note that the comment has always mentioned "--disable-mbstring" which clearly refers to enable and not with. 2002-05-12 Stig Bakken <ssb@fast.no> * pear/PEAR/Dependency.php: * fix up package dependency check 2002-05-12 Sascha Schumann <sascha@schumann.cx> * ext/standard/info.c: Use string_len information * ext/standard/info.c main/main.c main/php_ini.c main/php_main.h: reenable php_html_puts 2002-05-12 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Dependency.php: Make <dep type="pkg" rel="has"> avaible 2002-05-12 Stig Bakken <ssb@fast.no> * pear/package-Console_Getopt.xml: * fix description 2002-05-12 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbfilter.c ext/mbstring/mbfilter.h ext/mbstring/mbfilter_cn.c ext/mbstring/mbfilter_cn.h ext/mbstring/mbfilter_kr.c: added chinese HZ encoding support. fixed ascii area character conversion was not work in euc-cn and euc-kr. 2002-05-12 Daniela Mariaschi <mariaschi@libero.it> * ext/interbase/interbase.c: fix bug #17040 User can't close a connection if there are blobs opened. He must close them before to not lose data.... 2002-05-12 Sascha Schumann <sascha@schumann.cx> * ext/session/session.c: - Fix the way code was outcommented - Remove unused STR_CAT macro - Remove limits/tests based on unused macro - Implement cache_limiter(private) using private_no_expire 2002-05-12 Daniela Mariaschi <mariaschi@libero.it> * ext/interbase/interbase.c: fix bug #17040 ibase_close again..... User can't close a connection if there are blobs opened. He must close them before to not loose data.... 2002-05-12 Tomas V.V.Cox <cox@idecnet.com> * pear/package-Console_Getopt.xml: Vincent is not involved in this class :-) 2002-05-12 Jason Greene <jason@inetgurus.net> * ext/sockets/config.m4 ext/sockets/sockets.c: Fix build on IRIX for both mips and gcc 2002-05-12 Stig Bakken <ssb@fast.no> * pear/Console/tests/001-getopt.phpt pear/Console/Getopt.php: * Try again: fixed Console_Getopt::getopt so it does not steal options after the first non-option argument. Added test. * pear/tests/pear_config.phpt: * updated config key names * pear/tests/pear_registry.phpt: * exclude _lastmodified registry attrib from tests 2002-05-12 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/config.m4: fixed to support --with-mbsting=LANG. 2002-05-10 Edin Kadribasic <edink@proventum.net> * configure.in: Fixed "make install" when compiled with --disable-cli option. 2002-05-10 Markus Fischer <mfischer@guru.josefine.at> * sapi/cgi/cgi_main.c sapi/cli/php_cli.c: - Prefix the first version line with 'PHP' so it's easier to use shell tools to parse the version number (both CLI and CGI). * sapi/cli/php_cli.c sapi/cgi/cgi_main.c: - This affects both CGI and CLI sapi: Remove Zend version output from -m switch and move it over to the output of the -v switch (-v is supposed to list version numbers, not -m). 2002-05-10 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: - added fifth optional parameter to domxml_xslt_process. If set, it will output profiling information to the file stated (chregu) - introduced version numbering for this extension 2002-05-10 Martin Jansen <mail@martin-jansen.de> * pear/Makefile.frag: * package-pear.xml has been renamed to package-PEAR.xml. 2002-05-10 Edin Kadribasic <edink@proventum.net> * NEWS main/config.w32.h.in win32/crypt_win32.c win32/md5crypt.c win32/md5crypt.h win32/php4dllts.dsp: Added MD5 support for crypt() on Windows. * win32/.cvsignore: Ignoring *.aps files. * ext/pgsql/php_pgsql.h: Fix win32 build. 2002-05-09 Preston L. Bannister <preston.bannister@cox.net> * sapi/cgi/cgi_main.c: Backed out preceding change. 2002-05-09 Jani Taskinen <sniper@iki.fi> * main/php_ini.c: ws fix 2002-05-09 Preston L. Bannister <preston.bannister@cox.net> * main/php_open_temporary_file.c: Compute directory for temporary files once and use same directory for all subsequent calls. 2002-05-09 Daniela Mariaschi <mariaschi@libero.it> * ext/interbase/interbase.c: corrected parameter * ext/interbase/interbase.c: fix test 5 to pass 2002-05-09 Preston L. Bannister <preston.bannister@cox.net> * main/php_ini.c: Detect when running under IIS and default force_redirect to zero. This This means an explicit php.ini setting is no longer required. (NO extraneous whitespace changes this time (sigh)). 2002-05-09 Stig Bakken <ssb@fast.no> * pear/package-PEAR.xml pear/package-db.xml pear/package-pear.xml: * remove package-db.xml * rename package-pear.xml to package-PEAR.xml (generic format is package-PKGNAME.xml) 2002-05-09 Preston L. Bannister <preston.bannister@cox.net> * sapi/cgi/cgi_main.c: Detect when running under IIS and default force_redirect to zero. This This means an explicit php.ini setting is no longer required. (No extraneous whitespace changes this time :). 2002-05-09 Frank M. Kromann <frank@frontbase.com> * ext/mssql/php_mssql.h ext/mssql/php_mssql.c: Allow the MSSQL extension to use NT authentication 2002-05-09 James Cox <james@blog.at> * README.SUBMITTING_PATCH: this is dangerous.... 2002-05-09 Frank M. Kromann <frank@frontbase.com> * php.ini-dist php.ini-recommended: Adding ini setting that allows the MSSQL extension to use NT authentication 2002-05-09 Preston L. Bannister <preston.bannister@cox.net> * main/php_ini.c: Add check for php.ini in same directory as php.exe (or equivalent executable that loaded php4ts.dll). Check is done before looking in the Windows directory. This allows distinct php.ini files when different applications using PHP are installed on the same system. Should be backwards compatible. Note that checking for in CWD php.ini may be a security risk(?), and can now be made compile-time configurable by removing a single #define. (This time with tabs for leading indent). 2002-05-09 Jani Taskinen <sniper@iki.fi> * main/php_open_temporary_file.c sapi/cgi/cgi_main.c ext/session/session.c main/php_ini.c: Revert the last patches. 2002-05-09 Sander Roobol <phy@wanadoo.nl> * ext/session/session.c: Revert Preston's patch 2002-05-09 Jani Taskinen <sniper@iki.fi> * main/main.c: ws fix 2002-05-09 Preston L. Bannister <preston.bannister@cox.net> * main/php_ini.c: Add check for php.ini in same directory as php.exe (or equivalent executable that loaded php4ts.dll). Check is done before looks in the Windows directory. This allows distinct php.ini files when different applications using PHP are installed on the same system. Should be backwards compatible. Note that checking for php.ini in CWD may be a security risk(?), and can now be made compile-time configurable by removing a single #define. * ext/session/session.c: Change default directory for session data from /tmp (non-portable) to none. Default directory for session data (if not specified) is same (platform-specific) directory used for temporary files. This is backwards compatible and removes the need for explicitly specifying the session.save_path on Win32. * main/php_open_temporary_file.c: Compute directory for temporary files once and use same directory for all subsequent calls. * sapi/cgi/cgi_main.c: Detect when running under IIS and not require explicit setting of force_redirect. This means an explicit php.ini setting is no longer required. 2002-05-09 Edin Kadribasic <edink@proventum.net> * ext/crack/crack.dsp: No need to link libxm2 in order to build php_crack.lib 2002-05-09 Vincent Blavet <vincent@blavet.net> * pear/Archive/Tar.php: * Better handling of Windows paths (\php\any_thing or c:\php\any_thing) * Remember that inside the archive path are all the time in unix format /php/any_thing * When necessary, '\' are replaced by '/' and 'c:' are removed * Synchro with cvs:pear/Archive_Tar/Tar.php version 1.20 2002-05-09 Stig Bakken <ssb@fast.no> * pear/packages/DB-1.2.tar pear/packages/XML_Parser-1.0.tar pear/packages/XML_RPC-1.0.2.tar: * add some packages to bundle with PHP * pear/PEAR/Command/Package.php: * add "pear run-tests" command * pear/Makefile.frag: * use PEAR installer to install stuff (won't overwrite if newer versions of packages already are installed) * pear/XML/Parser.php pear/XML/Render.php pear/XML/tests/001.phpt pear/XML/tests/002.phpt pear/XML/tests/003.phpt pear/XML/tests/004.phpt pear/XML/tests/005.phpt pear/XML/tests/parser1.r pear/XML/tests/parser1.t pear/XML/tests/parser2.i pear/XML/tests/parser2.r pear/XML/tests/parser2.t pear/XML/tests/parser3.r pear/XML/tests/parser3.t pear/XML/tests/parsererror.r pear/XML/tests/parsererror.t pear/XML/tests/test.xml: * moving XML_Parser to /pear * pear/DB/msql.php pear/DB/mssql.php pear/DB/mysql.php pear/DB/oci8.php pear/DB/odbc.php pear/DB/pgsql.php pear/DB/storage.php pear/DB/sybase.php pear/DB.php pear/DB/IDEAS pear/DB/MAINTAINERS pear/DB/STATUS pear/DB/TESTERS pear/DB/common.php pear/DB/dbase.php pear/DB/fbsql.php pear/DB/ibase.php pear/DB/ifx.php: * permanently moving DB to /pear 2002-05-09 Derick Rethans <d.rethans@jdimedia.nl> * pear/scripts/phpize.in: - Fix phpize * pear/scripts/phpize.in: - Dump API NOs 2002-05-09 Jani Taskinen <sniper@iki.fi> * configure.in pear/scripts/php-config.in: Fix 'php-config --version' 2002-05-09 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/info.c: - Add PHP_API_VERSION too * ext/standard/info.c: - Show both API nos 2002-05-09 Sander Roobol <phy@wanadoo.nl> * win32/install.txt: Added notes that php.exe and not php-cli.exe should be used. * sapi/cli/php_cli.c sapi/cgi/cgi_main.c: Added the current SAPI to the output of php -v 2002-05-09 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Install.php: * show "update ok" after updates * run-tests.php: * try the installed cli binary if everything else fails (I'm starting to agree that looking too hard for a php binary is wrong) * pear/Makefile.frag: * install the old-fashioned way for just a bit longer * pear/scripts/pear.in pear/Makefile.frag pear/PEAR/Command.php pear/PEAR/Command/Auth.php pear/PEAR/Command/Config.php pear/PEAR/Command/Install.php pear/PEAR/Command/Package.php pear/PEAR/Command/Registry.php pear/PEAR/Command/Remote.php pear/PEAR/Frontend/Gtk.php pear/package-pear.xml: * add -G option to "pear" for php-gtk frontend * added Gtk stub (only creates window right now) * added command descriptions 2002-05-08 Jason Greene <jason@inetgurus.net> * ext/sockets/sockets.c: Merge overflow fix * ext/sockets/sockets.c: Fix overflow 2002-05-08 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * configure.in sapi/apache/mod_php4.c main/main.c ext/mbstring/mbfilter.h ext/mbstring/mbstring.c ext/mbstring/mbstring.h ext/mbstring/mbfilter.c: Added conversion support from script character encoding to internal character encoding. This feature is very useful for japanese who uses Shift_JIS encoding because some of characters in Shift_JIS are including '0x5c' and it causes some troubles on Zend parser. This patch is made by Masaki Fujimoto. 2002-05-08 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * main/output.c: Added estrdup() needed. Fixed typo. 2002-05-08 Aaron Bannert <aaron@apache.org> * EXTENSIONS: This is a more appropriate address for me. 2002-05-08 Zak Greant <zak@mysql.com> * ext/mysql/php_mysql.c: Minor improvement to error message for mysql_data_seek 2002-05-08 Markus Fischer <mfischer@guru.josefine.at> * run-tests.php: - Add a warning if running with safe_mode enabled. 2002-05-08 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/credits_sapi.h: - Forgot one * sapi/apache2filter/CREDITS EXTENSIONS: - Added Aaron Bannert as maintainer 2002-05-08 Frank M. Kromann <frank@frontbase.com> * ext/standard/php_smart_str.h: Kill a compiler warning on Win32 2002-05-07 Sascha Schumann <sascha@schumann.cx> * main/php.h: Due to the thread-safety changes and lots of other stuff, the current tree is not backwards compatible anymore. Bump API no. 2002-05-07 Jason Greene <jason@inetgurus.net> * ext/sockets/sockets.c: MFH BSD fix * ext/sockets/sockets.c: Fix 10830, and 17074 FreeBSD requires the exact length of the socket type 2002-05-07 Frank M. Kromann <frank@frontbase.com> * main/spprintf.c: Fixing win32 build. 2002-05-07 Sascha Schumann <sascha@schumann.cx> * main/snprintf.c main/snprintf.h: use thread-safe functions unconditionally * main/snprintf.c main/snprintf.h: Add thread-safety to some conversion functions and sync a bit with APR. 2002-05-06 Jason Greene <jason@inetgurus.net> * ext/pcntl/pcntl.c: MFH * ext/pcntl/pcntl.c: Fix invalid warning caused by bogus convert_to_* calls Fix possible invalid data in status for pcntl_waitpid() 2002-05-06 Markus Fischer <mfischer@guru.josefine.at> * ext/standard/datetime.c: - WS fix as pointed out by fabwash@hotmail.com 2002-05-06 Jason Greene <jason@inetgurus.net> * ext/pcntl/pcntl.c: MFH Fix for ZTS and crash bugs * ext/pcntl/pcntl.c: Fix type-o that broke ZTS build Fix 3 nasty crash bugs that could occur if pcntl_exec's call to execve errored 2002-05-06 Derick Rethans <d.rethans@jdimedia.nl> * configure.in main/php_version.h: - Swap back version number * NEWS: - Fix release date 2002-05-06 jim winstead <jimw@apache.org> * ext/standard/file.c: MFH: fix problem with mkdir() on freebsd * ext/standard/file.c: fix problem with mkdir() on freebsd 2002-05-06 Edin Kadribasic <edink@proventum.net> * sapi/cli/README: Update README with register_argc_argv settings override. 2002-05-06 Aaron Bannert <aaron@apache.org> * sapi/apache2filter/sapi_apache2.c: Merge two SEGV fixes from the trunk: - startup SEGV caused by delaying the initialization too long. - graceful restart SEGV caused by not re-initializing. 2002-05-06 Derick Rethans <d.rethans@jdimedia.nl> * NEWS: - Fix release day * main/php_version.h configure.in: - GO with rc2 2002-05-05 Wez Furlong <wez.php@thebrainroom.net> * ext/standard/html.c: Add support for remaining entities in HTML 4 for the UTF-8 encoding in htmlentities/htmlspecial chars. This is a fix for for #17008. 2002-05-05 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * NEWS: Clenup before I forgot. 2002-05-05 Aaron Bannert <aaron@apache.org> * sapi/apache2filter/sapi_apache2.c: Fix a graceful restart SEGV. We no longer only perform initialization on the second pass through the post_config. Now we only avoid the initialization only on the first DSO load, and on all subsequent loads we rerun the init code. * sapi/apache2filter/sapi_apache2.c: Fix an elusive and intermittent startup SEGV. The problem was the static string we were using to set an initialization flag would get remapped to a different location when Apache reloaded the DSO, causing us to not run our initialization routines. Submitted by: Justin Erenkrantz <jerenkrantz@apache.org> Reviewed by: Aaron Bannert (I added the big comment too) 2002-05-05 Stanislav Malyshev <stas@zend.com> * ext/standard/exec.c: Return right exit status 2002-05-05 Jani Taskinen <sniper@iki.fi> * sapi/cli/php_cli.c: MFH * sapi/cli/php_cli.c: Force register_argc_argv=On for CLI 2002-05-05 Thies C. Arntzen <thies@thieso.net> * ext/standard/url_scanner_ex.c: touch * ext/session/php_session.h ext/session/session.c ext/standard/url_scanner_ex.c ext/standard/url_scanner_ex.h ext/standard/url_scanner_ex.re: re-add accidentily nuked session_adapt_url() 2002-05-05 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbfilter.c ext/mbstring/unicode_table.h: bug fixed in unicode -> cp1252 table. 2002-05-05 Marko Karppinen <karppinen@pobox.com> * sapi/apache2filter/config.m4: Well that didn't last long! (Reverting previous.) * sapi/apache2filter/config.m4: Prelim. patch to enable apache2filter to link on Darwin. Submitted by: Justin Erenkrantz <jerenkrantz@apache.org> Reviewed by: markonen 2002-05-05 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/standard/reg.c: fixed problem that ereg_replace() couldn't match with line stand/end marker. * ext/mbstring/mbfilter.c ext/mbstring/mbfilter_cn.c ext/mbstring/unicode_table_cn.h: added missing areas on Unicode->CP936 conversion table. added an alias CP932 on sjis-win. 2002-05-05 Sascha Schumann <sascha@schumann.cx> * ext/standard/url_scanner_ex.c: sync * ext/standard/url_scanner_ex.re: the output buffer is flushed during request shutdown before it reaches our rshutdown, so it is safe to delete the contents of the url rewriter variables here. 2002-05-04 Zeev Suraski <zeev@zend.com> * main/output.c: We shouldn't force Content-length:, but much worse, it's wrong in many cases (basically, unless you use output buffering to buffer all of your content, it won't work; output buffering is used for lots of different things as a functional interface, and such buffers have no relation to Content-type at all). 2002-05-04 Sascha Schumann <sascha@schumann.cx> * main/output.c: Free string before overwriting it * ext/standard/url_scanner_ex.c: update * ext/standard/basic_functions.c ext/standard/url_scanner_ex.h ext/standard/url_scanner_ex.re main/output.c main/php_output.h ext/session/session.c: simplify handling of variables by maintaining two strings which are simply appended instead of traversing the hash table on each URL/form. also fix an unconditional segfault in rshutdown due to efree'ing a static char *. remove remove_var, add reset_vars. move the function declarations into the right header file. * ext/standard/basic_functions.c: ret set but unused * main/user_streams.c: these are case sensitive * ext/standard/iptc.c: c set but unused * ext/standard/iptc.c: inheader set but unused 2002-05-04 James Cox <james@wherewithal.com> * main/user_streams.c: touch. * main/user_streams.c: add $id:$ line 2002-05-04 Sascha Schumann <sascha@schumann.cx> * ext/standard/string.c: block_ended/opposite_target were set but never used * ext/standard/strnatcmp.c: don't emit code for version * main/php_variables.c: free_index is set but never used * main/user_streams.c: call_result is set but never used * sapi/cli/getopt.c: ap_php_optopt is set but never used * ext/standard/php_fopen_wrappers.h: Fix linkage of symbols * ext/standard/image.c: entry_length was set but never used * ext/standard/var_unserializer.c: update * ext/standard/var_unserializer.re: rval_temp was declared but never used * ext/standard/http_fopen_wrapper.c: redirected is set but never used * ext/standard/url_scanner_ex.c: include url.h * ext/standard/url_scanner_ex.re: include url.h to pull in declaration of php_url_encode * ext/standard/file.c: Make this code work on compilers which don't consider the address of a variable on the stack available at compile time. * ext/standard/basic_functions.c: unused var * ext/posix/posix.c: p is set, but never used. * ext/mbstring/config.m4: Turn misplaced PHP_ARG_WITH into _ENABLE and fix --enable-mbstring=shared * ext/session/config.m4: Fix --enable-session=shared * ext/xml/config.m4: Fix --enable-xml=shared 2002-05-04 Stig Venaas <venaas@uninett.no> * ext/ldap/ldap.c: Reworked result resource handling so that result is not freed until all its result entry resources are freed 2002-05-04 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/standard/reg.c: fixed a problem that ereg_replace() couldn't match with line stand/end marker. 2002-05-04 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * main/output.c: Forgot to dup strings. * main/output.c: Fixed reference to freed zval string value. * main/output.c: Fixed crash when buffer is over written in ob callback. (Bug $ 12227) Added check current output function check for Centent-Length header. 2002-05-03 Jani Taskinen <sniper@iki.fi> * NEWS: MFH * NEWS: Domxml changes go into the 4.2.x branch. 2002-05-03 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.h ext/domxml/php_domxml.c: full MFH as discussed with derick * ext/domxml/php_domxml.h ext/domxml/php_domxml.c: removed the function for domxml_node_add_child and made an alias to domxml_node_append_child for BC 2002-05-03 Stig Bakken <ssb@fast.no> * pear/OS/Guess.php: * switched from static to instance model * added matching method with glob support, some examples: $os->matchSignature('linux'); $os->matchSignature('linux-2.4*); $os->matchSignature('linux-*-i?86'); 2002-05-03 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: WS fixes * ext/domxml/php_domxml.c: one parameter too much * ext/domxml/php_domxml.c: added encoding support for domxml_dump_mem() 2002-05-03 Thies C. Arntzen <thies@thieso.net> * ext/standard/url_scanner_ex.c: forgot 2002-05-03 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/session/session.c: Fix ZTS build. 2002-05-03 Thies C. Arntzen <thies@thieso.net> * main/output.c ext/standard/url_scanner_ex.h ext/standard/url_scanner_ex.re ext/standard/basic_functions.c ext/session/session.c ext/session/php_session.h: i have also modified the session module to use this - so it doesn't need to fiddle with the output-system any more 2002-05-03 Stig Bakken <ssb@fast.no> * pear/OS/Guess.php pear/package-pear.xml: * fixed autoconf vs. pear installer replacement issue in scripts/pear.in (pear installer now substitutes "@prefix@/bin" to bin_dir ;-) * added skeleton for OS_Guess class * NEWS: * unintentional news entry :-) * pear/PEAR/Installer.php: * apply umask when installing files 2002-05-02 Stig Bakken <ssb@fast.no> * pear/PEAR/Config.php: * add umask config value 2002-05-02 Frank M. Kromann <frank@frontbase.com> * ext/mbstring/mbfilter_tw.c: Changed & to &&. * ext/mbstring/mbstring.dsp: Adding missing files to the project * ext/standard/info.c: Fixing wrong pointer 2002-05-02 Sander Roobol <phy@wanadoo.nl> * sapi/cgi/cgi_main.c: MFH * sapi/cgi/cgi_main.c: Fixed some minor typos 2002-05-02 Jason Greene <jason@inetgurus.net> * ext/sockets/sockets.c: socket_write() should just use the standard socket error macro so that errors will be consistent if the macro ever changes 2002-05-02 James Cox <james@wherewithal.com> * sapi/cgi/cgi_main.c: fix. * sapi/cgi/cgi_main.c: MFH. 2002-05-02 Sebastian Bergmann <sb@sebastian-bergmann.de> * sapi/cgi/cgi_main.c: Fix build. 2002-05-02 James Cox <james@wherewithal.com> * sapi/cgi/cgi_main.c: updated cgi warning notice. 2002-05-02 Derick Rethans <d.rethans@jdimedia.nl> * configure.in: - MFH 2002-05-02 Zeev Suraski <zeev@zend.com> * configure.in: Update comment 2002-05-02 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * main/output.c: Change nest level to send Content-Length again. It seems this is the best setting for now. PHP will not send Content-Length always. It only sends when it is possible to send. output_buffer=0 is supposed to disable chunked output, but it seems it does not disable. It also behaves a litte strange way. This should be addressed someday. It is possible Content-Length header is not set. If it happens, try to increase chunk size for now. (i.e. output_buffer=40960) I included a little debug code for me and other develpers to play with, when (NestLevel==1 && ObStatus==5), PHP sends Content-Length. 2002-05-02 Harald Radi <h.radi@nme.at> * ext/com/COM.c: MFH * ext/com/COM.c: remove temporary resources immediately return value fix 2002-05-02 Sascha Schumann <sascha@schumann.cx> * configure.in: Readd warning * configure.in: Readd warning If Mr. Taskinen feels like removing it again, he can commence a discussion. Otherwise, I'll personally disable his CVS account immediately. * configure.in: in6addr_any is defined as extern in IRIX header files, but is not actually contained in any library (sigh). Make this check fail, if the link stage does not succeed. Also avoid GCC optimization which drops the reference to ip6addr_any. Tested on IRIX 6.5.15. 2002-05-02 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/info.c: - Add Zend API No. to phpinofo() output 2002-05-02 Jani Taskinen <sniper@iki.fi> * ext/xslt/config.m4: MFH: Do not use the old expat libs. * ext/xslt/config.m4: Stop the search when the libs are found. * ext/xslt/config.m4: Added the usual search paths where to look for expat. 2002-05-02 Tomas V.V.Cox <cox@idecnet.com> * pear/package-pear.xml: Install pear.bat 2002-05-02 Sebastian Bergmann <sb@sebastian-bergmann.de> * win32/php4dll.dsp win32/php4dllts.dsp: I could swear it worked the other way before I committed. 2002-05-02 Tomas V.V.Cox <cox@idecnet.com> * pear/package-pear.xml: untabify 2002-05-02 James Cox <james@wherewithal.com> * NEWS: englishify. 2002-05-02 Sebastian Bergmann <sb@sebastian-bergmann.de> * main/.cvsignore: Add config.w32.h. * win32/php4dllts.dsp: Oops. * NEWS: Fugbix typos. * main/config.w32.h main/config.w32.h.in win32/php4dll.dsp win32/php4dllts.dsp NEWS: The Windows build can now be configures more comfortably, for instance in regard to built-in extensions. 2002-05-02 Jani Taskinen <sniper@iki.fi> * configure.in: MFH * configure.in: Remove bogus warning. * NEWS: Sync with PHP_4_2_0 branch. 2002-05-02 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * main/output.c: Fixed header output. Only need to output header when it is actually sent to client. 2002-05-02 Jon Parise <jon@csh.rit.edu> * pear/scripts/pear.in: Revert the previous commit (revision 1.40). (FreeBSD 4.5), thus producing a broken shebang line. substitution problem noted above needs to be resolved before the change is reapplied. 2002-05-02 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * main/output.c: Check buffer status * main/main.c main/output.c: Make Content-Type output always correct. * NEWS: Modify NEWS entry for Content-Length header change * main/output.c ext/zlib/zlib.c: Move Content-Length: header handling from zlib.c to output.c When output buffer is enabled and header can be sent, Content-Length: header is added always from now on. 2002-05-01 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/base64.c: - MFH * ext/standard/base64.c: - Fix String is not zero-terminated error in base64_decode 2002-05-01 Markus Fischer <mfischer@guru.josefine.at> * ext/sockets/sockets.c: - Update protos for socket_read() and socket_write(). - Set last_error in socket_write(). * ext/sockets/sockets.c: - Update protos for getpeer/getsock-name. 2002-05-01 Jason Greene <jason@inetgurus.net> * ext/sockets/sockets.c: Fix BYREF_FORCE that was not being read Fix error message 2002-05-01 Sascha Schumann <sascha@schumann.cx> * configure.in: MFH * configure.in: Add a big disclaimer regarding register_globals. It just bit me again but now on a live customer site :-/ 2002-05-01 Derick Rethans <d.rethans@jdimedia.nl> * main/php_version.h configure.in: - Update version number * main/php_version.h NEWS configure.in: - Go with 4.2.1rc1 2002-05-01 Markus Fischer <mfischer@guru.josefine.at> * ext/sockets/php_sockets.h ext/sockets/sockets.c: - Rename setopt and getopt to set_option and get_option, provide alias. * ext/sockets/sockets.c: - Fix couple of problems with socket_create_pair(): - Force fourth argument to be passed by reference - Since the argument is modified there is no need to force it to be an array since it's destroyed anyway - Only modify the argument if socketpair() was successfully - Fix string modified for error message message - Set global last_error when socketpair() fails * ext/sockets/sockets.c: - Add SOMAXCONN constant. 2002-05-01 Wez Furlong <wez.php@thebrainroom.net> * ext/openssl/openssl.c: Fix for #16885 * ext/openssl/openssl.c: No asserts in branch * ext/openssl/openssl.c: MFH fix for #16940, compiler warnings and TSRMLS build fixes. * ext/openssl/openssl.c: Probable fix for #16940. 2002-05-01 Markus Fischer <mfischer@guru.josefine.at> * ext/sockets/sockets.c: - WS fixes * NEWS: - Mention the socket_select() API change * ext/sockets/sockets.c: - MFH fix for socket_select() and some minor memory leak; NEWS entry follows. 2002-05-01 Jason Greene <jason@inetgurus.net> * ext/sockets/sockets.c: Changed socket_select to force reference copy, the older code would modify all references Also fix small memory leak. 2002-04-30 Harald Radi <h.radi@nme.at> * ext/overload/overload.c: ZE2 compatibility fixes 2002-04-30 Markus Fischer <mfischer@guru.josefine.at> * ext/sockets/sockets.c: - Forgot to update proto * ext/sockets/sockets.c: - Allow resetting the module global last_error too. 2002-04-30 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/mbstring/mbfilter_cn.c ext/mbstring/mbfilter_tw.c: More unused variables. 2002-04-30 Stanislav Malyshev <stas@zend.com> * ext/standard/aggregation.c: Fix ZE1 build 2002-04-30 Harald Radi <h.radi@nme.at> * NEWS: MFH 2002-04-30 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/mbstring/mbfilter_kr.c: Fix ZTS build. Remove unused variables. * main/config.w32.h: Add missing #define's. 2002-04-30 Harald Radi <h.radi@nme.at> * NEWS: 2002-04-30 Sebastian Bergmann <sb@sebastian-bergmann.de> * win32/php4dll.dsp win32/php4dllts.dsp: Add new ext/mbstring/mbfilter_*.c files. 2002-04-30 Sascha Schumann <sascha@schumann.cx> * ext/standard/var_unserializer.c: Touch file 2002-04-30 Dan Kalowsky <dank@deadmime.org> * ext/odbc/php_odbc.c: reverting the cursor change as it seems to break many ODBC drivers. * ext/odbc/php_odbc.c: re-setting the CURSOR back to DYNAMIC rather than FORWARD_ONLY. This change broke many other ODBC drivers (obviously testing wasn't extensive). 2002-04-30 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbfilter.c ext/mbstring/mbregex.c: fixed compile warning with Visual C++. * ext/mbstring/mbfilter_cn.c ext/mbstring/mbfilter_cn.h ext/mbstring/mbfilter_ja.c ext/mbstring/mbfilter_kr.c ext/mbstring/mbfilter_kr.h ext/mbstring/mbfilter_tw.c ext/mbstring/mbfilter_tw.h ext/mbstring/mbstring.c ext/mbstring/unicode_table_cn.h ext/mbstring/unicode_table_kr.h ext/mbstring/unicode_table_tw.h ext/mbstring/config.m4 ext/mbstring/mbfilter.c ext/mbstring/mbfilter.h: added simplified chinese, traditional chinese, korean support to mbstring. Note that this feature is experimental. 2002-04-30 Stanislav Malyshev <stas@zend.com> * ext/standard/browscap.c: ZE2 compatibility fix * ext/standard/aggregation.c: ZE2 compatibility fixes 2002-04-30 Jani Taskinen <sniper@iki.fi> * ext/standard/tests/file/003.phpt: revert last bogus change. There is bug in is_file() 2002-04-30 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de> * ext/domxml/php_domxml.c ext/domxml/php_domxml.h: - added function domxml_parser_set_keep_blanks() 2002-04-30 Frank M. Kromann <frank@frontbase.com> * ext/mbstring/mbstring.dsp: Adding missing files to project 2002-04-30 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/standard/file.c: Fix ZTS build. 2002-04-30 Wez Furlong <wez.php@thebrainroom.net> * ext/standard/http_fopen_wrapper.c: Make use of new flag so that we can buffer http headers when we know that the stream is not intended to be used in require/include. * ext/standard/file.h ext/standard/file.c ext/standard/basic_functions.c: Implement user-space funtions to operate on stream contexts. * ext/standard/tests/file/003.phpt: Fix is_file test. * main/streams.c: Remove debug code that should not have been committed. * main/network.c: Remove this; it should not have been commited * main/main.c: revert... * main/main.c main/network.c main/php_streams.h main/streams.c: Implement context option setting API. Add/amend debugging code for sockets. Add a flag that will help the http wrapper optimize itself when it is not being used for include/require. 2002-04-29 Jani Taskinen <sniper@iki.fi> * pear/pear.m4: MFH: Add the shared extension check. * ext/ming/config.m4: Never add libraries without checking that they exist and can be linked. 2002-04-29 Harald Radi <h.radi@nme.at> * ext/com/COM.c: MFH * ext/com/COM.c: RETURN_NULL() is defined with braces while RETURN_TRUE and RETURN_FALSE are defined without. seems not very consistent ? 2002-04-29 Stanislav Malyshev <stas@zend.com> * ext/standard/var.c: MFH * ext/standard/var.c: Add comments for the fix * ext/standard/var.c: Fix here too 2002-04-29 Harald Radi <h.radi@nme.at> * ext/com/COM.c: MFH * ext/com/COM.c: functions returned FALSE in case of error and the oo api returned NULL. make them both behave equal (return NULL, as FALSE can be a valid value). 2002-04-29 Stanislav Malyshev <stas@zend.com> * ext/standard/var.c: MFH serializer fix * ext/standard/var.c: Yet another serialization fix - for incomplete class 2002-04-29 Jani Taskinen <sniper@iki.fi> * ext/recode/config.m4 ext/recode/recode.c: Make it possible to use recode 3.5 too. (happy now Wez? :) * NEWS: Sync with PHP_4_2_0 branch. 2002-04-29 Markus Fischer <mfischer@guru.josefine.at> * ext/sockets/sockets.c: - Fix WS and CS a bit * ext/sockets/php_sockets.h ext/sockets/sockets.c: - Store last errno in the module global 'last_error' implicitely - Set the global 'last_error' explicitely for functions which can't return an error withing a single socket context (socket_create and socket_select) - Modified socket_last_error() to return global modules last error if no socket resource is given - Added a couple of more E_WARNING messages in case something goes foobar so the user isn't left alone in the dark. 2002-04-29 Mika Tuupola <tuupola@appelsiini.net> * pear/File/Find.php: * fixed the maxrecursion in mapTreeMultiple() 2002-04-29 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * NEWS: Added touch fix * ext/standard/filestat.c: MFH touch bag fix * NEWS: MFB * NEWS: Added NEWS entry for PostgreSQL function rename. Removed duplicate entry. 2002-04-29 Stig Bakken <ssb@fast.no> * pear/package-pear.xml: * version will be 0.10 * pear/PEAR/Packager.php: * slight cleanup * pear/PEAR/Packager.php: * call the right parent constructor * pear/PEAR/Command/Install.php: * PEAR_Installer constructor now expects only the UI object * pear/PEAR/Command/Remote.php: * PEAR_Common::downloadHttp no longer wants a config object * pear/PEAR/Common.php: * always set $this->config (use PEAR_Config::singleton) * rename setFrontend to setFrontendObject * add validPackageName method * added downloadHttp callback types setup, connfailed and writefailed * no more passing config objects around * pear/PEAR/Installer.php: * use the downloadHttp method w/callback 2002-04-29 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/ming/config.m4: shlib suffix was not defind and rint() was not found without -lm. 2002-04-28 Jani Taskinen <sniper@iki.fi> * build/rules.mk: Fixed bug: #16858 2002-04-28 Sascha Schumann <sascha@schumann.cx> * ext/standard/url_scanner_ex.c: touch file * ext/standard/url_scanner_ex.c: Touch generated file 2002-04-28 Sebastian Bergmann <sb@sebastian-bergmann.de> * main/config.w32.h main/internal_functions_win32.c win32/php4dll.dsp win32/php4dllts.dsp: Enable bundled build of ext/ctype and ext/mbstring on Win32. 2002-04-28 Stanislav Malyshev <stas@zend.com> * ext/standard/var_unserializer.c ext/standard/var_unserializer.re ext/standard/var.c: MFH: serializer/unserializer fix * ext/standard/var.c ext/standard/var_unserializer.c ext/standard/var_unserializer.re: Fix couple of nasty serializer bugs: a) When array unserializer encounters less data than it expects (like: a:1:{}) it crashes. I don't understand exactly why it does, but the fact is it does. So now it should catch "}" and bail out. b) When array/object data are serialized, the count is written by hash count. However, it can be that in-loop check fails and less data than expected will then be written into the array. Which, due to a), would crash on unserialize. So now it will write empty entries in place of entries it cannot serialize (the other choice would be make two passes on the data, which I don't like). 2002-04-28 Thies C. Arntzen <thies@thieso.net> * ext/standard/url_scanner_ex.c: timestamp * NEWS ext/session/php_session.h ext/session/session.c ext/standard/url_scanner_ex.c ext/standard/url_scanner_ex.h ext/standard/url_scanner_ex.re: revert session_set_userdata - diffent patch will come shortly 2002-04-28 Stig Bakken <ssb@fast.no> * pear/package.dtd: * forgot script element in release contents * pear/PEAR/Common.php pear/package.dtd: * package.dtd: version 1.0b7 - added <provides> element - added <script> element * pear/PEAR/Command/Remote.php: * implemented "list-remote-packages" command * pear/PEAR/Remote.php: * implemented stub for XML_RPC fallback if xmlrpc-epi is not installed 2002-04-28 Sebastian Bergmann <sb@sebastian-bergmann.de> * pear/HTML/IT.php pear/HTML/ITX.php pear/HTML/IT_Error.php: Move IT[X] to /pear. * pear/HTML/Menu.php pear/HTML/Menu_Browser.php: Move Menu* to /pear. 2002-04-28 Jani Taskinen <sniper@iki.fi> * ext/mysql/php_mysql.c: - Added optional 3rd parameter to mysql_select_db() which makes it return the previously selected database name. * ext/mysql/php_mysql.c: kill a compile warning * acinclude.m4 sapi/apache/libphp4.module.in: Fix build when openssl is enabled. * ext/standard/url_scanner_ex.c: touch file. Please commit first the .re file and afterwards the .c source. Otherwise, timestamps will be broken. * Makefile.global: Missing dependancies.. 2002-04-28 Tomas V.V.Cox <cox@idecnet.com> * pear/DB/odbc.php: Fix odbc_fetch_into() compat for 4.2.0 (reported by Nate Ward) 2002-04-28 Jani Taskinen <sniper@iki.fi> * NEWS: - Cleaned out the CVS commit conflicts.. * acinclude.m4: Fix bug: #16823 * ext/iconv/iconv.c: ws fix 2002-04-28 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/standard/tests/file/003.phpt ext/standard/tests/file/003.inc: Add test case for file_exist/is_file 2002-04-27 Sascha Schumann <sascha@schumann.cx> * ext/zlib/zlib.c: s/len/xln/ was necessary here Noticed by: Charles O Parks III * ext/zlib/zlib.c: Use a single macro to set cl header 2002-04-27 Thies C. Arntzen <thies@thieso.net> * ext/zlib/zlib.c: - If possible set Content-Length header in zlib.output_compression mode. (thies) 2002-04-27 Harald Radi <h.radi@nme.at> * ext/com/TODO: updated TODO list 2002-04-27 Thies C. Arntzen <thies@thieso.net> * ext/standard/url_scanner_ex.c: part 2 of last commit * ext/standard/url_scanner_ex.h ext/standard/url_scanner_ex.re ext/session/php_session.h ext/session/session.c: - added session_set_userdata() which enables you to specify one variable that will be kept in the browser in addition to the session-id. This only works when using trans-sid sessions (no cookie). (thies) 2002-04-27 Rasmus Lerdorf <rasmus@lerdorf.on.ca> * NEWS php.ini-dist php.ini-recommended: 2002-04-27 Harald Radi <h.radi@nme.at> * ext/com/COM.c ext/com/com.h: MFH * ext/com/COM.c: don't set CLSCTX_REMOTE_SERVER if NULL is passed as servername 2002-04-27 Jani Taskinen <sniper@iki.fi> * ext/mysql/config.m4: MFH: fix for bug #16743 * ext/mysql/config.m4: Fix bug: #16743 2002-04-26 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/standard/filestat.c ext/standard/php_filestat.h ext/standard/basic_functions.c: Fixed bug #16861. touch sets wrong atime or mtime when they are not specified. touch silently failed when HAVE_UTIME is not defined. (This needs more consideration. Which platform does not support it?) 2002-04-26 Sascha Schumann <sascha@schumann.cx> * ext/session/session.c: three less strlen invocations * sapi/apache2filter/config.m4 sapi/apache/config.m4: be a bit more verbose about what is wrong 2002-04-26 Harald Radi <h.radi@nme.at> * ext/com/com.h: this patch should fix a bug where intermediate comvals were not released before they were freed. this caused outproc com server to belive that they still referenced even when the php process already terminated. 2002-04-26 Dan Kalowsky <dank@deadmime.org> * ext/odbc/php_odbc.c: bug fix for bug #15758, a double free'ing of an ODBC connection 2002-04-26 Sascha Schumann <sascha@schumann.cx> * sapi/apache/libphp4.module.in: Fix external builds * configure.in: reuse known values * ext/mbstring/mbstring.h ext/mbstring/php_mbregex.c: Improve use of module_globals macros 2002-04-26 Jani Taskinen <sniper@iki.fi> * sapi/apache2filter/config.m4 sapi/apache/config.m4: MFH: fix bug: #16791 (more reliable version check) * sapi/apache2filter/config.m4 sapi/apache/config.m4: - Fix for bug: #16791. (more reliable test) 2002-04-26 Tomas V.V.Cox <cox@idecnet.com> * pear/DB/pgsql.php: E_ALL fix when DSN is given as an array 2002-04-25 jim winstead <jimw@apache.org> * ext/standard/url_scanner_ex.c: update generated file * ext/standard/url_scanner_ex.re: Do not add redundant id attribute. It doesn't make the output any more standards compliant. 2002-04-25 Edin Kadribasic <edink@proventum.net> * ext/mysql/config.m4: MFH * ext/mysql/config.m4: Some systems have mysql socket in /var/run/mysql * ext/oracle/oracle.c: MFB * ext/oracle/oracle.c: Fix the fix. * ext/oracle/oracle.c: Fix win32 build 2002-04-25 Colin Viebrock <colin@easydns.com> * pear/Net/Dig.php pear/Crypt/CBC.php: moved into /pear 2002-04-25 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/standard/string.c: fixed directory access problem when direcory name is encoded in japanese Shift_JIS encoding. 2002-04-25 Jani Taskinen <sniper@iki.fi> * ext/standard/exec.c: MFH: fix for bug #16811 2002-04-25 Stig Bakken <ssb@fast.no> * pear/PEAR/Installer.php: * fix warning 2002-04-25 Sascha Schumann <sascha@schumann.cx> * ext/standard/url_scanner_ex.c: Touch generated file to increase timestamp 2002-04-25 Harald Radi <h.radi@nme.at> * main/win95nt.h: already defined in zend_config.win32.h 2002-04-25 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/tests/17result.phpt ext/pgsql/tests/result.inc: Added test for pg_fetch_*() functions * ext/pgsql/pgsql.c: Revert last 2 commits. 2002-04-25 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/exec.c: - Fix for bug #16811 * ext/com/conversion.c: - MFH: fix for bug #14353 * ext/com/conversion.c: - Fix for bug #14353 * ext/standard/url_scanner_ex.c ext/standard/url_scanner_ex.re: - Fix for bug 16810 (XHTML compliance) 2002-04-25 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/config.m4: Fix version in message 2002-04-25 Jani Taskinen <sniper@iki.fi> * NEWS: fine-tuning * ext/xslt/config.m4: Only support the new libexpat. 2002-04-25 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/php_pgsql.h ext/pgsql/pgsql.c: pg_client_encoding/pg_set_client_encoding should be compiled always. Recent libpq has PQclientEncoding/PQsetClientEncoding regarless of multibyte support enabled or not. Reported by c@cornelia-boenigk.de 2002-04-24 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: Remove result_type from pg_fetch_object() proto. It still accepts 3rd argument, but passing 3rd argument does not make sense for pg_fetch_object(). * ext/pgsql/pgsql.c: It does not make any sense to have a PGSQL_BOTH as a default for pg_fetch_object() Noticed by c@cornelia-boenigk.de 2002-04-24 Dan Kalowsky <dank@deadmime.org> * ext/odbc/php_odbc.c: clearing up some code to remove any possible confusion in variable counts 2002-04-24 Jani Taskinen <sniper@iki.fi> * ext/mysql/config.m4: MFH * ext/mysql/config.m4: - Fixed a typo.. 2002-04-24 Stanislav Malyshev <stas@zend.com> * main/output.c: MFH * main/output.c: Init output_start_* to avoid "output started at ZZZZZ" messages (which may result when output started while zend is neither compiling nor executing - e.g., when file upload fails). 2002-04-24 Andrei Zmievski <andrei@ispi.net> * NEWS: *** empty log message *** 2002-04-24 Jani Taskinen <sniper@iki.fi> * ext/imap/php_imap.c: MFH * ext/imap/php_imap.c: - Do the ssl_onceonlyinit() as last. This is how c-client creates the linkage.c (used by Pine). 2002-04-24 Andrei Zmievski <andrei@ispi.net> * ext/standard/array.c: MFH. 2002-04-24 Jani Taskinen <sniper@iki.fi> * ext/imap/.cvsignore: - Missing .libs line.. 2002-04-24 Andrei Zmievski <andrei@ispi.net> * ext/standard/array.c: Fix Bug #14795. * ext/standard/array.c: Fix unwanted type conversion in array_merge_recursive (Bug #14990). 2002-04-24 Jani Taskinen <sniper@iki.fi> * ext/recode/config.m4 ext/recode/php_recode.h ext/recode/recode.c: One big mess is a bit less mess now. 2002-04-24 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/mbstring/mbstring.c: Fixed typo. Compiler compiled with this typo somehow. 2002-04-24 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de> * NEWS: - Put news item about changes of domxml in 2002-04-24 Derick Rethans <d.rethans@jdimedia.nl> * NEWS: Merge fixes * NEWS: - Layout and release date 2002-04-24 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * NEWS: Added NEWS for recent multibyte related fixes. 2002-04-24 Jani Taskinen <sniper@iki.fi> * ext/domxml/php_domxml.c: Fix ZTS build. * NEWS: Added the 4.2.1 entries here too. * NEWS: Forgot this one.. * NEWS: Added entry for the SID fix. * sapi/apache/mod_php4.c: This was not supposed to be committed.. * php.ini-recommended sapi/apache/mod_php4.c: MFH * php.ini-recommended: fixed the comment.. 2002-04-24 Aaron Bannert <aaron@apache.org> * sapi/apache2filter/sapi_apache2.c: Apache does a full load, unload, load cycle for each DSO module. This patch makes sure that any startup actions that are performed for PHP don't happen until the second load (the second call to the post_config hook), and it also prevents subsequent calls to the initialization routines. Suggested By: Cliff Woolley PR: 16475, 16754 2002-04-24 Stig Bakken <ssb@fast.no> * pear/PEAR/Registry.php: * add "_lastmodified" timestamp to registry files (don't trust filemtime) 2002-04-23 Jani Taskinen <sniper@iki.fi> * ext/java/Makefile.in: Make sure the extension will be named java.so 2002-04-23 Stig Bakken <ssb@fast.no> * pear/package-pear.xml: 0.9.1 release notes ++ * pear/PEAR/Common.php: * make validator work again 2002-04-23 Jani Taskinen <sniper@iki.fi> * ext/java/README: MFH * ext/java/README: Fixed the extension name. 2002-04-23 Stig Bakken <ssb@fast.no> * pear/package-db.xml: * roll out 1.2 release 2002-04-23 Jani Taskinen <sniper@iki.fi> * ext/gd/config.m4: MFH * ext/gd/config.m4: Wrong variable used here.. * configure.in: ws fix 2002-04-23 Markus Fischer <mfischer@guru.josefine.at> * ext/posix/posix.c: - Fix proto. * ext/pcntl/pcntl.c: - MFH fix for #16766. * ext/pcntl/pcntl.c: - Fix pcntl_waitpid() [Fixes #16766]. 2002-04-23 Sascha Schumann <sascha@schumann.cx> * ext/session/mod_files.c: Add #ifdef.. around F_SETFD. 2002-04-23 Derick Rethans <d.rethans@jdimedia.nl> * ext/cyrus/cyrus.c ext/ldap/ldap.c: Fix TSRMLS_CC thingies. * ext/cyrus/cyrus.c ext/ldap/ldap.c: Fix TSRMLS_CC 2002-04-23 Sascha Schumann <sascha@schumann.cx> * ext/session/mod_files.c: MFH: Rip out use of O_EXCL * ext/session/session.c: MFH define_sid issue 2002-04-23 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * win32/readdir.c: fixed access problem when japanese Shift_JIS character is used as directory name. Some characters in Shift_JIS are including 0x5c (slash) as second byte. 2002-04-23 Mika Tuupola <tuupola@appelsiini.net> * pear/File/Find.php: * added $maxrecursion parameter to mapTreeMultiple() 2002-04-23 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de> * ext/domxml/php_domxml.c: - replace_child() will not add a child twice - domxml_open_mem() drops old optional parameter to switch between reading from a string or a file. - new optional parameter for domxml_open_mem() which set the mode how the document shall be parsed 2002-04-23 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/mbstring/mbstring.c: MFH Fix empty output when no conversion is done. Fix possible problem with wide chars. 2002-04-23 Hartmut Holzgraefe <hartmut@six.de> * sapi/apache/php_apache.c: apache_child_terminate() returns status as bool proto fixes 2002-04-23 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/mbstring/mbstring.c: Remove unneeded 'return'. * ext/mbstring/mbstring.c: Fix possible wide char prolem. Fix empty output when no conversion is performed. 2002-04-23 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Remote.php: * use PEAR_Common::downloadHttp() * pear/PEAR/Common.php: * downloadHttp: pass the total number of bytes downloaded as parameter to the 'done' callback * pear/PEAR/Common.php: * moved these "class variables" to global variables and added static methods for getting them: maintainer_roles, release_states, dependency_types, dependency_relations, file_roles, replacement_types * added downloadHttp method with status callback support (can be used by installers to show download progress) 2002-04-23 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de> * ext/domxml/php_domxml.h: - added new function DomDocument->ids (subject to change) * ext/domxml/php_domxml.c: - get_element_by_id() doesn't use xpath anymore but searches in xmlDoc->ids as provided by libxml. - New function DomDocument->ids() returns a list of ids (subject to change) - replace_node() doesn't make a copy of the new node if it has no parents 2002-04-23 Sascha Schumann <sascha@schumann.cx> * acinclude.m4: No need for an ifelse here (which was lacking a char anyway :-) 2002-04-23 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/php_pgsql.h ext/pgsql/tests/12pg_insert.phpt ext/pgsql/tests/13pg_select.phpt ext/pgsql/tests/14pg_update.phpt ext/pgsql/tests/pg_delete.inc ext/pgsql/tests/pg_insert.inc ext/pgsql/tests/pg_select.inc ext/pgsql/tests/pg_update.inc ext/pgsql/pgsql.c: Make pg_convert/pg_insert/pg_select/pg_update/pg_delete a bit more flexible. pg_convert() may ignore, NOT NULL and/or DEFAULT. pg_insert/pg_update/pg_select/pg_update may return query string. 2002-04-23 Jani Taskinen <sniper@iki.fi> * main/rfc1867.c: MFH the possible crash bug fix and warning -> notice change. * sapi/apache/mod_php4.c: This was not supposed to be uncommented..yet. * sapi/apache/mod_php4.c sapi/apache/php_apache.c sapi/apache/php_apache_http.h sapi/apache/sapi_apache.c: Part 4 of apache sapi build fixes: - Fixed many conflicts caused by bogus includes, e.g the infamous XtOffset redefinition warning is gone now. * sapi/apache/apMakefile.tmpl sapi/apache/config.m4 sapi/apache/libphp4.module.in: Part 3 of static apache build fixes: - Use the PHP_CFLAGS when compiling the php4 module in apache tree. - Use the apache include dir only when compiling sapi/apache o Fixes the fnmatch.h issue Wez complained about :) * configure.in: Part 2 of static apache build fixes: - Added 2 variables to be used in libphp4.module o Apparently autoconf 2.53 screws abs_srcdir - Made INCLUDES and EXTRA_INCLUDES available to be used with AC_OUTPUT() o Not related to the static apache build issues * acinclude.m4: Part 1 of commits to fix some issues with static apache (1.3.x) compile: - Made the OPENSSL_INCDIR available to be added in the PHP_CFLAGS in libphp4.module - Make it possible to set SAPI specific include dirs * NEWS: Missing date for 4.2.0 * main/rfc1867.c: Changed the error for 'no upload' to E_NOTICE so that it doesn't pollute the logs too much. 2002-04-22 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * win32/readdir.c: fixed access problem when japanese Shift_JIS character is used as directory name. Some characters in Shift_JIS are including 0x5c (slash) as second byte. 2002-04-22 Sascha Schumann <sascha@schumann.cx> * ext/standard/php_smart_str.h: remove unnecessary casts * ext/session/mod_files.c: Set the close-on-exec flag for fds. Child processes should not inherit the fd. Also rip out the broken O_EXCL use. Our file names are not unique and this left a small window open where creating a session file would fail (a, b notice that the file does not exist; a creates the file successfully; b tries to create, but fails due to O_EXCL). 2002-04-22 Jim Jagielski <jim@jaguNET.com> * sapi/apache2filter/apache_config.c: Typo in error string 2002-04-22 Harald Radi <h.radi@nme.at> * ext/rpc/rpc.c ext/rpc/rpc_proxy.c: set up a proxy object when requesting a reference to a variable * ext/standard/php_smart_str.h: fixes a warning when compiling under win32 2002-04-22 Marko Karppinen <karppinen@pobox.com> * sapi/apache2filter/config.m4: Refine the OS X support a bit * sapi/apache2filter/config.m4: Merged the Mac OS X compile changes from the Apache 1.3 SAPI. --with-apxs2 should now work on Mac OS X / Darwin. * NEWS: Prettify the NEWS entries * CREDITS: Let's pretend this is up-to-date now 2002-04-22 Harald Radi <h.radi@nme.at> * ext/rpc/com/com.c ext/rpc/handler.h ext/rpc/rpc.c ext/rpc/rpc.h ext/rpc/rpc_proxy.c ext/rpc/rpc_proxy.h: changes related to the latest commit of the zend engine 2002-04-22 Edin Kadribasic <edink@proventum.net> * sapi/apache2filter/php4apache2.dsp: Reverting my previous patch. 2002-04-22 Derick Rethans <d.rethans@jdimedia.nl> * NEWS: - Fix date 2002-04-22 Martin Jansen <mail@martin-jansen.de> * pear/PEAR/WebInstaller.php: * Due to the recent changes in the installer stuff, the webinstaller is not supported at the moment. 2002-04-22 Sascha Schumann <sascha@schumann.cx> * ext/pgsql/pgsql.c: hash keys lengths include the NUL-byte, so we need to copy one byte less. also add missing commas in the INSERT clause. Noticed by: Yasuo Ohgaki 2002-04-21 Jani Taskinen <sniper@iki.fi> * ext/domxml/tests/.cvsignore: missing .cvsignore 2002-04-21 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbstring.c: small performance improvement when pass is selected as input encoding. 2002-04-21 Edin Kadribasic <edink@proventum.net> * sapi/apache2filter/php4apache2.dsp: Added ..\..\..\php_build\lib\apache2 to libpath and ..\..\..\php_build\include\apache2 to includepath 2002-04-21 Richard Heyes <richard@phpguru.org> * pear/File/SearchReplace.php: * Moving to it's own package 2002-04-21 Wez Furlong <wez.php@thebrainroom.net> * ext/gd/libgd/gd.c ext/gd/libgd/gd.h ext/gd/libgd/gd_png.c ext/gd/libgd/gdft.c ext/gd/libgd/webpng.c: Apply that patch I wrote ages ago that fixes some problems with true-color vs palette based handling. Also implements the gdImageStringFTEx function. 2002-04-21 Tomas V.V.Cox <cox@idecnet.com> * pear/DB/STATUS pear/DB/oci8.php: Added oci8 tableInfo (thanks Bertrand Mansion <bmansion@mamasam.com>!) * pear/DB/tests/oci8/mktable.inc: Include the correct file * pear/DB/tests/oci8/connect.inc: Use the right include_path * pear/DB/tests/oci8/02fetch.phpt pear/DB/tests/oci8/03simplequery.phpt pear/DB/tests/oci8/04numcols.phpt pear/DB/tests/oci8/05sequences.phpt pear/DB/tests/oci8/06prepexec.phpt pear/DB/tests/oci8/07errornative.phpt pear/DB/tests/oci8/08affectedrows.phpt pear/DB/tests/oci8/09numrows.phpt pear/DB/tests/oci8/10errormap.phpt pear/DB/tests/oci8/12tableinfo.phpt pear/DB/tests/oci8/13limit.phpt: - Added test for the new tableInfo() - Fixed include_path's for tests 2002-04-21 Martin Jansen <mail@martin-jansen.de> * pear/DB/TESTERS: * Fix CVS username 2002-04-21 Stig Bakken <ssb@fast.no> * pear/PEAR/Installer.php: * more uniform "level 2 debug messages" * don't add dirname(file) to install path if install-as attribute is set 2002-04-21 Sascha Schumann <sascha@schumann.cx> * ext/pgsql/pgsql.c: refactoring in pgsql_do_connect and some "leaner" code in pgsql_add_quotes * ext/pgsql/pgsql.c: Avoid allocating resources, if we know that the input array is empty. Also pass tsrmls to do_exec. * ext/pgsql/pgsql.c: speling fix and s/FAILURE/HASH_KEY_NON_EXISTANT/ * ext/pgsql/pgsql.c: The default has been changed to assume failure, because there were 5-10 cases of failure and one success. * ext/pgsql/pgsql.c: Add PGSQL_RETURN_OID which encapsulates the LONG_MAX check etc. Add a few missing smart_str_0's. Remove a "(" in a probably less-tested #ifdef.. branch * ext/pgsql/config.m4: Also support --disable-shared installations of pgsql 2002-04-21 Stig Bakken <ssb@fast.no> * pear/package-pear.xml: * set version to 0.9.1-dev * pear/package-pear.xml pear/scripts/pear.in: * PHP_PREFIX constant is not defined, use bin_dir pear config instead 2002-04-21 Sascha Schumann <sascha@schumann.cx> * ext/pgsql/pgsql.c: My patch as posted to php-dev + warnings/errors fixed as seen in Yasuo's reply. 2002-04-21 Martin Jansen <mail@martin-jansen.de> * pear/PEAR/Installer.php: * Remove package directory if empty during uninstall process * Don't baseinstalldir for documentation. 2002-04-21 Jani Taskinen <sniper@iki.fi> * ext/java/config.m4: Tiny typo.. 2002-04-21 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Command/Remote.php: Bail on no HTTP.php present in the system Let "pear download" act ala wget * pear/PEAR/Common.php: typo 2002-04-21 Sascha Schumann <sascha@schumann.cx> * ext/standard/php_smart_str.h ext/standard/var.c: simplify and improve speed of smart_str_print_long. also add a variant for unsigned numbers. 2002-04-21 Sterling Hughes <sterling@bumblebury.com> * ext/xslt/sablot.c: expletives deleted. * ext/xslt/sablot.c: some more fixes towards making it work again 2002-04-20 Sascha Schumann <sascha@schumann.cx> * ext/dio/dio.c: allocate space for NUL 2002-04-20 Derick Rethans <d.rethans@jdimedia.nl> * ext/recode/recode.c: - initialize globals properly 2002-04-20 jim winstead <jimw@apache.org> * ext/gd/config.m4: include the checks for various support libraries to --with-gd=php section. the libgd stuff needs some additional checks to handle the presence/absence of things like libpng, but this helps when most things are included. * ext/gd/config.m4: s/.o/.c/ 2002-04-20 Sterling Hughes <sterling@bumblebury.com> * ext/dio/dio.c: realloc buffer down 2002-04-20 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * README.TESTING: Removed for consistency with current build system. 2002-04-20 Sascha Schumann <sascha@schumann.cx> * ext/mbstring/config.m4: If I don't want mbstring, I also don't want this transparent encoding thingee which caused an undefined reference in main.o. 2002-04-20 Wez Furlong <wez.php@thebrainroom.net> * ext/mailparse/README: The PECL version probably will not compile with PHP 4.2 unless they check it out on the branch. I have a tarball ready-to-go from my site, so add a not about it. 2002-04-20 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/tests/large_object.inc ext/pgsql/pgsql.c: Make pg_lo_import()/pg_lo_unlink()/pg_lo_open()/pg_lo_export() work with oid larger than 2^31. 2002-04-20 Derick Rethans <d.rethans@jdimedia.nl> * ext/mailparse/.cvsignore ext/mailparse/CREDITS ext/mailparse/EXPERIMENTAL ext/mailparse/README: - Fix mailparse dir for release * main/php_version.h configure.in: - Update version numbers * configure.in main/php_version.h: Go with 4.2.0 * ext/mailparse/.cvsignore: MFH: Missing .cvsignore file * ext/mailparse/.cvsignore: - Add missing .cvsignore 2002-04-20 Sander Roobol <phy@wanadoo.nl> * .cvsignore: Another .cvsignore update * sapi/webjames/.cvsignore sapi/servlet/.cvsignore sapi/thttpd/.cvsignore sapi/tux/.cvsignore sapi/pi3web/.cvsignore sapi/roxen/.cvsignore sapi/isapi/.cvsignore sapi/nsapi/.cvsignore sapi/phttpd/.cvsignore sapi/fastcgi/.cvsignore sapi/fhttpd/.cvsignore sapi/cgi/.cvsignore sapi/cli/.cvsignore sapi/apache/.cvsignore sapi/apache2filter/.cvsignore sapi/caudium/.cvsignore sapi/.cvsignore sapi/aolserver/.cvsignore regex/.cvsignore pear/scripts/.cvsignore ext/yp/.cvsignore ext/zip/.cvsignore ext/zlib/.cvsignore ext/xslt/.cvsignore ext/yaz/.cvsignore ext/xmlrpc/libxmlrpc/.cvsignore ext/xml/expat/.cvsignore ext/xmlrpc/.cvsignore ext/wddx/.cvsignore ext/xml/.cvsignore ext/tokenizer/.cvsignore ext/vpopmail/.cvsignore ext/w32api/.cvsignore ext/sybase_ct/.cvsignore ext/sysvsem/.cvsignore ext/sysvshm/.cvsignore ext/sybase/.cvsignore ext/sockets/.cvsignore ext/standard/.cvsignore ext/swf/.cvsignore ext/snmp/.cvsignore ext/session/.cvsignore ext/shmop/.cvsignore ext/skeleton/.cvsignore ext/qtdom/.cvsignore ext/readline/.cvsignore ext/recode/.cvsignore ext/pgsql/.cvsignore ext/posix/.cvsignore ext/pspell/.cvsignore ext/pdf/.cvsignore ext/pfpro/.cvsignore ext/pcntl/.cvsignore ext/pcre/.cvsignore ext/overload/.cvsignore ext/ovrimos/.cvsignore ext/oracle/.cvsignore ext/odbc/.cvsignore ext/openssl/.cvsignore ext/oci8/.cvsignore ext/notes/.cvsignore ext/ncurses/.cvsignore ext/mssql/.cvsignore ext/mysql/.cvsignore ext/mysql/libmysql/.cvsignore ext/msession/.cvsignore ext/msql/.cvsignore ext/mnogosearch/.cvsignore ext/mime_magic/.cvsignore ext/ming/.cvsignore ext/mcrypt/.cvsignore ext/mhash/.cvsignore ext/ldap/.cvsignore ext/mbstring/.cvsignore ext/mcal/.cvsignore ext/ircg/.cvsignore ext/java/.cvsignore ext/ingres_ii/.cvsignore ext/interbase/.cvsignore ext/imap/.cvsignore ext/informix/.cvsignore ext/icap/.cvsignore ext/iconv/.cvsignore ext/gmp/.cvsignore ext/hyperwave/.cvsignore ext/gettext/.cvsignore ext/fribidi/.cvsignore ext/ftp/.cvsignore ext/gd/.cvsignore ext/fbsql/.cvsignore ext/fdf/.cvsignore ext/filepro/.cvsignore ext/dbx/.cvsignore ext/dio/.cvsignore ext/domxml/.cvsignore ext/exif/.cvsignore ext/dbase/.cvsignore ext/dbplus/.cvsignore ext/db/.cvsignore ext/dba/.cvsignore ext/curl/.cvsignore ext/cybercash/.cvsignore ext/cybermut/.cvsignore ext/cyrus/.cvsignore ext/crack/.cvsignore ext/ctype/.cvsignore ext/com/.cvsignore ext/cpdf/.cvsignore ext/bz2/.cvsignore ext/calendar/.cvsignore ext/ccvs/.cvsignore ext/.cvsignore ext/aspell/.cvsignore ext/bcmath/.cvsignore: Removed makefiles from most .cvsignores and some minor cleanups. * ext/gd/libgd/.cvsignore: Added missing .cvsignore 2002-04-20 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: Added comment to fix large OID value handling later. Fixed wrong conversion specifiers. * ext/pgsql/pgsql.c: Added missing 'd'. * ext/pgsql/pgsql.c: Some cleanup. More OID range related fixes. * ext/pgsql/pgsql.c: Fixed OID overflow. If value is larger than MAX_LONG, pg_last_oid() returns string to keep correct value. * ext/pgsql/php_pgsql.h: Added API version for C programs * ext/pgsql/pgsql.c: Remove warnings. Fixed OID overflow bug. Fixed type convertion bug. 2002-04-20 Jani Taskinen <sniper@iki.fi> * NEWS: We call them "extension"..and again, missing period. :-p 2002-04-19 Sterling Hughes <sterling@bumblebury.com> * ext/xslt/sablot.c: throw a warning if encoding support not available... * TODO: update todo a bit * ext/xslt/php_sablot.h ext/xslt/sablot.c: make it work with dom processing, this allows DOM tree caching to avoid re-parsing the same data. Currently very beta -- DO NOT USE. Will be cleaning this up over the next few days... Need this in here for version history, and to show other people 2002-04-19 Adam Dickmeiss <adam@indexdata.dk> * ext/yaz/php_yaz.c: fix warning * ext/yaz/php_yaz.c: Indentation;) * ext/yaz/php_yaz.c: fix warning 2002-04-19 Andrei Zmievski <andrei@php.net> * ext/pcre/php_pcre.c: Revert bogus patch. 2002-04-19 Harald Radi <h.radi@nme.at> * win32/php4dllts.dsp: MFH 2002-04-19 Derick Rethans <d.rethans@jdimedia.nl> * ext/pcre/php_pcre.c: - Fix warnings in VC 2002-04-19 Stig Bakken <ssb@fast.no> * pear/PEAR/Config.php: * add http_proxy config setting * pear/PEAR/Installer.php: * make "pear install package.xml" possible, so you can install a package without building a tarball first * pear/PEAR/Command/Install.php: * reintroduce (un)install -r option for Registeration only * pear/PEAR.php: * fix phpdoc 2002-04-19 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: Fixed pg_insert/update/select/delete overflow. * ext/pgsql/tests/08escape.phpt ext/pgsql/tests/10pg_convert.phpt ext/pgsql/tests/11pg_metadata.phpt ext/pgsql/tests/escape.inc: Update tests * ext/pgsql/pgsql.c: Added "NOT NULL" check and do not add converted variable when field is NULL and HAS DEFAULT. (php_pgsql_convert) * ext/pgsql/pgsql.c: Changed "default" -> "has default" (metadata) Fixed comment. Do not use magic number. 2002-04-19 Wez Furlong <wez.php@thebrainroom.net> * ext/bz2/bz2.c ext/standard/fsock.c ext/zlib/zlib.c ext/zlib/zlib_fopen_wrapper.c main/network.c main/streams.c NEWS: Make scheme part decoding rfc2396 compliant. Change zlib:// and bzip2:// to compress.zlib:// and compress.bzip2:// Tidy up old socket/network code/comments. 2002-04-19 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/openssl/openssl.c ext/standard/http_fopen_wrapper.c: Remove compiler warnings * ext/session/tests/001.phpt ext/session/tests/002.phpt ext/session/tests/003.phpt ext/session/tests/004.phpt ext/session/tests/005.phpt ext/session/tests/006.phpt: Fixed file include error * ext/xslt/sablot.c: Remove warning. * ext/mbstring/tests/019.phpt: Fixed test title (strlen -> mb_strlen) * ext/pgsql/pgsql.c: Leave "" (null string) when converting. * ext/iconv/iconv.c: Remove warnings * php.ini-dist php.ini-recommended: Added mbstring.func_overload directive * ext/mbstring/config.m4: Fixed messages * php.ini-dist: Remove gargabe * ext/mbstring/config.m4: Enable mbstring by default. * php.ini-dist php.ini-recommended: Added description to mbstring ini entries * main/php_ini.c: Avoid defining/using S_ISDIR macro. 2002-04-18 Derick Rethans <d.rethans@jdimedia.nl> * sapi/isapi/php4isapi.c: - MFH for bug in Sambar 5.2 * sapi/isapi/php4isapi.c: - Gaurd for problems in fault servers (fixes problem with Sambar 5.2) 2002-04-18 Aaron Bannert <aaron@apache.org> * sapi/apache2filter/README: Document the new PHPINIDir directive in the apache2filter/README. * sapi/apache2filter/apache_config.c sapi/apache2filter/php_apache.h sapi/apache2filter/sapi_apache2.c: This patch implements a new Apache2 directive called PHPINIDir that allows the specification of the php.ini directory from within the Apache configuration. If left unset, the default is to defer to the hard-coded php paths. When set, the supplied path is made relative to Apache's internal ServerRoot setting. Example: PHPINIDir "conf" 2002-04-18 Martin Jansen <mail@martin-jansen.de> * pear/PEAR/Command.php: * Add API documentation. 2002-04-18 Sebastian Bergmann <sb@sebastian-bergmann.de> * main/internal_functions_win32.c: Allow for PCRE to be disabled. * ext/mysql/php_mysql.c: Make use of HAVE_MYSQL. Reviewed by: Sterling. * main/internal_functions_win32.c: Conditionally include mbstring.h. 2002-04-18 Aaron Bannert <aaron@apache.org> * sapi/apache2filter/sapi_apache2.c: Fix an intermittent SEGV when an error bubbled up from PHP before our server context was set. Now if that happens we simply don't log against any particular server config (vhost). Obtained from bug report by: Balazs Nagy <js@iksz.hu> 2002-04-18 Sebastian Bergmann <sb@sebastian-bergmann.de> * main/config.w32.h main/internal_functions_win32.c: Add HAVE_CALENDAR, HAVE_COM, HAVE_SESSION and HAVE_TOKENIZER to enable/disable these extensions, respectively. It is now possible to build PHP on Win32 with just ext/standard and ext/pcre. The latter is needed by the former, because at least the aggregation functions use PCRE. 2002-04-18 Aaron Bannert <aaron@apache.org> * sapi/apache2filter/sapi_apache2.c: Fix an intermittent SEGV when an error bubbled up from PHP before our server context was set. Now if that happens we simply don't log against any particular server config (vhost). Obtained from bug report by: Balazs Nagy <js@iksz.hu> * sapi/apache2filter/sapi_apache2.c: It makes more sense to do the null-pointer check *before* trying to use it. (Also fix a typo that Cliff pointed out: "safe" --> "save".) Obtained from: Ryan Morgan <rmorgan@covalent.net> 2002-04-18 Sander Roobol <phy@wanadoo.nl> * ext/xslt/sablot.c: Removed redefinition of MIN() * ext/dbx/dbx.c: Removing unused variable 2002-04-18 Stig Bakken <ssb@fast.no> * pear/pear.m4: * another file that should not have been MFH'ed 2002-04-18 Derick Rethans <d.rethans@jdimedia.nl> * ext/dba/config.m4 ext/dba/dba_cdb.c ext/dba/dba_db2.c ext/dba/dba_db3.c ext/dba/dba_dbm.c ext/dba/dba_gdbm.c ext/dba/dba_ndbm.c: - Make DBA compile as a shared module * ext/dba/config.m4 ext/dba/dba_cdb.c ext/dba/dba_db2.c ext/dba/dba_db3.c ext/dba/dba_dbm.c ext/dba/dba_gdbm.c ext/dba/dba_ndbm.c: - MFH: Make DBA compile as a shared module again 2002-04-18 Sebastian Bergmann <sb@sebastian-bergmann.de> * main/config.w32.h: Some cleanup for the Win32 build configuration. 2002-04-18 Hartmut Holzgraefe <hartmut@six.de> * ext/standard/tests/general_functions/003.phpt ext/standard/levenshtein.c: MFH fix for #16473 2002-04-18 Harald Radi <h.radi@nme.at> * ext/com/conversion.c ext/com/COM.c: MFH * ext/com/conversion.c: whitespace fixes 2002-04-18 Alan Brown <abrown@pobox.com> * ext/com/COM.c: Missing break; causes fallthrough which actually causes heap corruption in the debugging version despite being just plain wrong. Also placed a default "Unavailable" message when the object does not populate the EXCEPINFO structure. Also removed a minor memory leak. * ext/com/conversion.c: When V_BSTR() is NULL, we pass a NULL pointer into php_OLECHAR_to_char() which reports an exception. Better to map a NULL string pointer to ZVAL_NULL. 2002-04-17 Sebastian Bergmann <sb@sebastian-bergmann.de> * main/internal_functions_win32.c: Whitespace fixes. * main/internal_functions_win32.c: Only include php_bcmath.h when WITH_BCMATH=true. * main/internal_functions_win32.c: Give HAVE_MYSQL meaning on Win32. * main/internal_functions_win32.c: Give HAVE_UODBC meaning on Win32. * main/internal_functions_win32.c: Give HAVE_LIBEXPAT and HAVE_WDDX meaning on Win32. * main/internal_functions_win32.c: Give HAVE_FTP meaning on Win32. * main/internal_functions_win32.c: Remove bogus includes. * main/php_ini.c: Patch by Marcus B�rger. 2002-04-17 Mika Tuupola <tuupola@appelsiini.net> * pear/File/Passwd.php: * added lock(), unlock(), isLocked() and getCvsUser() methods. 2002-04-17 Stig Bakken <ssb@fast.no> * pear/scripts/phpize.in: * revert buildv5 changes * pear/PEAR/Packager.php: * doooh! 2002-04-17 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de> * ext/xmlrpc/xmlrpc-epi-php.c: - fixed memory leak 2002-04-17 Sebastian Bergmann <sb@sebastian-bergmann.de> * main/internal_functions_win32.c: SPACEs->TAB. * ext/overload/overload.c ext/tokenizer/tokenizer.c: Beautify. * main/internal_functions_win32.c: Forgot adding phpext_tokenizer_ptr. * win32/php4dll.dsp win32/php4dllts.dsp main/internal_functions_win32.c: Enable ext/tokenizer by default on Win32, too. Since there is no HAVE_TOKENIZER flag, it cannot be turned off in config.w32.h. 2002-04-16 Wez Furlong <wez.php@thebrainroom.com> * main/php_streams.h main/streams.c pear/scripts/pear.in pear/scripts/pearize.in main/php.h ext/zlib/zlib_fopen_wrapper.c ext/standard/php_fopen_wrapper.c ext/zlib/zlib.c ext/standard/ftp_fopen_wrapper.c ext/standard/http_fopen_wrapper.c ext/standard/dir.c ext/bz2/bz2.c ext/standard/basic_functions.c: Always initialize wrappers, regardless of PG(allow_url_fopen). Add is_url field to wrapper structure; the stream wrapper openers will disallow opening is is_url && !PG(allow_url_fopen). Add infrastructure for stat($url) and opendir($url). Tidy up/centralize code that locates and instantiates wrappers for the various operations. Implement opendir for plain files. Make the PHP opendir and dir functions use the streams implementations. Add modelines for syntax highlighting the pear scripts in vim 2002-04-16 Stig Bakken <ssb@fast.no> * pear/DB.php: * added DB::isConnection * phpdoc fixes 2002-04-16 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * main/php_ini.c: fix cli/cgi -c <path>|<file> 2002-04-16 Aaron Bannert <aaron@apache.org> * sapi/apache2filter/sapi_apache2.c: It makes more sense to do the null-pointer check *before* trying to use it. (Also fix a typo that Cliff pointed out: "safe" --> "save".) Obtained from: Ryan Morgan <rmorgan@covalent.net> 2002-04-16 Sterling Hughes <sterling@bumblebury.com> * ext/xslt/sablot.c: move xslt_error and xslt_errno down to functions, in order to make logical room for the xslt_dom_* functions 2002-04-16 Wez Furlong <wez.php@thebrainroom.com> * ext/zlib/zlib.c: remove old code 2002-04-16 Sander Roobol <phy@wanadoo.nl> * ext/w32api/w32api.c: MFH (#16628) * ext/w32api/w32api.c: Added missing function to function_entry 2002-04-16 Stig Bakken <ssb@fast.no> * pear/PEAR/Common.php: * started working on analyzeSourceCode and detectDependencies methods 2002-04-16 Jani Taskinen <sniper@iki.fi> * ext/tokenizer/tokenizer.c: removed ws pollution * ext/tokenizer/tokenizer.c: Added 2 new tokens: T_CLASS_C and T_FUNC_C 2002-04-16 Derick Rethans <d.rethans@jdimedia.nl> * ext/xslt/config.m4: - MFB: Remove version number * ext/xslt/config.m4: - Remove version number here 2002-04-16 Sterling Hughes <sterling@bumblebury.com> * ext/xslt/README.XSLT-BACKENDS: update these docs, phpdoc will lag a bit :) * ext/xslt/php_sablot.h ext/xslt/sablot.c: Prefix current functions with "sax" in order to make way for dom interface backwards compatibility is maintained via function aliases xslt_sax_set_sax_handlers is a bit wierd, i guess... * ext/xslt/sablot.c: clean up the error code a tidbit 2002-04-16 Stig Bakken <ssb@fast.no> * ext/tokenizer/config.m4: * build tokenizer by default * pear/PEAR/Packager.php: * chdir back to original dir in PEAR_Packager::package * only display "cvstag" hint if CVS/Root exists 2002-04-16 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Autoloader.php pear/PEAR/Command/Remote.php: Added standar header * pear/PEAR/Command/Registry.php: Vim tags added plus some other minor text about license and author * pear/PEAR/Command/Registry.php: Be more clear when no packages are installed * pear/PEAR/Command/Package.php: Give the right error when wrong params given to package-info and fix/add help some help messages 2002-04-15 Frank M. Kromann <frank@frontbase.com> * ext/mbstring/mbstring.h: Fixing Win32 compilation of mbstring * ext/exif/exif.dsp: Fixing Win32 compilation of exit * main/php_streams.h main/spprintf.c main/spprintf.h main/streams.c: Adding PHPAPI needed for exif on Win32 2002-04-15 Mark L. Woodward <mlwmohawk@mohawksoft.com> * ext/msession/reqclient.h ext/msession/msession.c: Chages for beta3 2002-04-15 Wez Furlong <wez.php@thebrainroom.com> * main/network.c: should not be there * main/network.c: Some minor tweaks and debugging for sockets. 2002-04-15 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de> * ext/domxml/php_domxml.c: - DomNode->replace_node() now returns the node that was replace and not the new node - fixes Bug #15949 * ext/domxml/php_domxml.h ext/domxml/php_domxml.c: - added DomNode->replace_child() 2002-04-14 Sterling Hughes <sterling@bumblebury.com> * NEWS: this news entry reports a new mailparse addition a later news entry reports that mailparse has been moved to pecl 1+1 = 2 2002-04-14 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: support for WinXP tags (thanks to Rui Carmo) 2002-04-14 Thies C. Arntzen <thies@thieso.net> * ext/oci8/oci8.c: fix crash bug introduced by last commit (damncvs diff!) * ext/oci8/oci8.c: fix crash bug introduced by last commit 2002-04-14 Derick Rethans <d.rethans@jdimedia.nl> * main/php_version.h configure.in: - Swap back version numbers after tagging * configure.in main/php_version.h: - Go with RC4 2002-04-14 Jani Taskinen <sniper@iki.fi> * sapi/apache/config.m4: Make the configure fail if someone tries to use --with-apache with Apache2 2002-04-14 Markus Fischer <mfischer@guru.josefine.at> * pear/PEAR/Frontend/CLI.php: - Do not try to draw a table if there are not elements. 2002-04-14 Jani Taskinen <sniper@iki.fi> * NEWS: Fixed some entries.. * sapi/apache2filter/sapi_apache2.c: ws fixes 2002-04-14 Derick Rethans <d.rethans@jdimedia.nl> * ext/zip/zip.c: - MFH: Fix NULL-termination issue * ext/zip/zip.c: - Fix null-termination problem 2002-04-14 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbstring.c: fixed error output handler when 'pass' is choosed as output encoding. 2002-04-14 Jani Taskinen <sniper@iki.fi> * sapi/cli/config.m4: Make it possible to actually disable the CLI.. * sapi/cli/config.m4: This is experimental still * sapi/cli/config.m4: Make this work as it was supposed to work. 2002-04-14 Frank M. Kromann <frank@frontbase.com> * ext/fbsql/config.m4: /usr/lib is the default install dir on Mandrake 2002-04-14 Jani Taskinen <sniper@iki.fi> * ext/java/Makefile.in ext/java/config.m4: MFH (use of correct javac/jar binaries) * ext/java/Makefile.frag ext/java/config.m4: - Use the correct javac/jar binaries. 2002-04-13 Thies C. Arntzen <thies@thieso.net> * ext/oci8/oci8.c: MFH: ocibind: avoid warning in debug mode * ext/oci8/oci8.c: ocibind: avoid warning in debug mode if an outbound variable is NULL 2002-04-13 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * main/php_ini.c: Fix cli/cgi -c option 2002-04-13 Thies C. Arntzen <thies@thieso.net> * ext/oci8/oci8.c: MFH: Mixing OCIPlogon and OCINLogon no longer leak Oracle-Sessions. (thies) to RM: this is a real fix that _should_ be in 4.2! * ext/oci8/oci8.c: - Mixing OCIPlogon and OCINLogon no longer leak Oracle-Sessions. (thies) 2002-04-13 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c ext/domxml/php_domxml.h: - old $node->append_child() is now $node->append_sibling(), since new append_child() now behaves like excepted (= W3C standard) (chregu, uwe) 2002-04-13 Sascha Schumann <sascha@schumann.cx> * ext/gd/config.m4: s/==/=/ 2002-04-13 Markus Fischer <mfischer@guru.josefine.at> * pear/PEAR/Installer.php: - Also raise a different error message if we don't specify any package at all. 2002-04-13 Jani Taskinen <sniper@iki.fi> * sapi/apache/config.m4: - Prevent users from trying to make a static build with Apache2 using --with-apache 2002-04-13 Markus Fischer <mfischer@guru.josefine.at> * pear/PEAR/Installer.php: - Return a different error message if no package file was given at all. 2002-04-13 Rasmus Lerdorf <rasmus@php.net> * ext/gd/config.m4: oops 2002-04-13 Markus Fischer <mfischer@guru.josefine.at> * pear/Archive/Tar.php: - Properly format error message. * ext/xml/xml.c: - Fix a possible memory leak in xml_set_handler(). I stumbled over this while trying out 'pear package' which, while doing xml parsing, re-assigns the variaous callback handlers depending on the version during xml processing. If this check causes problems, let me know. 2002-04-13 Jani Taskinen <sniper@iki.fi> * pear/Makefile.in pear/Makefile.frag: - Makefile.frag is not supposed to be here.. - Net/Socket.php doesn't exist anymore 2002-04-13 Rasmus Lerdorf <rasmus@php.net> * ext/gd/libgd/gdfonts.c ext/gd/libgd/gdfonts.h ext/gd/libgd/gdfontt.c ext/gd/libgd/gdfontt.h ext/gd/libgd/gdft.c ext/gd/libgd/gdhelpers.c ext/gd/libgd/gdhelpers.h ext/gd/libgd/gdkanji.c ext/gd/libgd/gdparttopng.c ext/gd/libgd/gdtables.c ext/gd/libgd/gdtest.c ext/gd/libgd/gdtestft.c ext/gd/libgd/gdtopng.c ext/gd/libgd/gdxpm.c ext/gd/libgd/jisx0208.h ext/gd/libgd/mathmake.c ext/gd/libgd/pngtogd.c ext/gd/libgd/pngtogd2.c ext/gd/libgd/testac.c ext/gd/libgd/wbmp.c ext/gd/libgd/wbmp.h ext/gd/libgd/webpng.c ext/gd/libgd/README ext/gd/libgd/gd.c ext/gd/libgd/gd.h ext/gd/libgd/gd2copypal.c ext/gd/libgd/gd2time.c ext/gd/libgd/gd2topng.c ext/gd/libgd/gd_arc_f_buggy.c ext/gd/libgd/gd_gd.c ext/gd/libgd/gd_gd2.c ext/gd/libgd/gd_io.c ext/gd/libgd/gd_io.h ext/gd/libgd/gd_io_dp.c ext/gd/libgd/gd_io_file.c ext/gd/libgd/gd_io_ss.c ext/gd/libgd/gd_jpeg.c ext/gd/libgd/gd_png.c ext/gd/libgd/gd_ss.c ext/gd/libgd/gd_topal.c ext/gd/libgd/gd_wbmp.c ext/gd/libgd/gdcache.c ext/gd/libgd/gdcache.h ext/gd/libgd/gddemo.c ext/gd/libgd/gdfontg.c ext/gd/libgd/gdfontg.h ext/gd/libgd/gdfontl.c ext/gd/libgd/gdfontl.h ext/gd/libgd/gdfontmb.c ext/gd/libgd/gdfontmb.h ext/gd/config.m4: Initial commit of the built-in libgd based on GD-2.0.1 This initial checkin has no changes to any of the libgd code so it can be used as a basis for diffs. It also will not build currently because of this. The PHP gd checks need to be incorporated along with a bit of other config magic. It also shouldn't break the build and will only take effect if you use --with-gd=php right now. 2002-04-13 Jani Taskinen <sniper@iki.fi> * ext/posix/posix.c: MFH: For example the compile in AIX does not like these at all.. * ext/posix/posix.c: Do NOT use c++ comments in c code!!!!! 2002-04-13 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Package.php: * cvstag command: tag slide option is -f, not -F * pear/PEAR/Common.php: * missing file role message could be mistaken for missing maintainer role 2002-04-13 Jani Taskinen <sniper@iki.fi> * sapi/apache/config.m4 sapi/apache2filter/config.m4: MFH. (Prevent users from trying to build Apache 1.x module with Apache 2.x and vice-versa) * ext/standard/config.m4: MFH (forgot to commit this..sorry Derick..) 2002-04-13 Stig Bakken <ssb@fast.no> * pear/PEAR/Remote.php: * add cookie authentication to PEAR_Remote (temporarily in addition to http auth) 2002-04-12 Jani Taskinen <sniper@iki.fi> * sapi/apache2filter/config.m4 sapi/apache/config.m4: - Added checks to prevent building the DSO with wrong configure option. 2002-04-12 Aaron Bannert <aaron@apache.org> * sapi/apache2filter/sapi_apache2.c: Fix a typo and a build error detected by the lovely HPUX11 ANSI C compiler. 2002-04-12 Jani Taskinen <sniper@iki.fi> * ext/exif/exif.c: Fix the build. * ext/zlib/zlib.c: Do NOT use C++ comments in C code. 2002-04-12 jim winstead <jimw@apache.org> * RELEASE_PROCESS: remove this, since it doesn't describe the current process, and is under a silly license. 2002-04-12 Derick Rethans <d.rethans@jdimedia.nl> * main/php_version.h configure.in: - Swap back development version numbers 2002-04-12 Wez Furlong <wez.php@thebrainroom.com> * ext/openssl/openssl.c: fix build with ZE2 2002-04-12 Derick Rethans <d.rethans@jdimedia.nl> * configure.in main/php_version.h: - Go with RC3 2002-04-12 Wez Furlong <wez.php@thebrainroom.com> * main/php_streams.h: fix segfault 2002-04-12 Sascha Schumann <sascha@schumann.cx> * build/rules.mk build/rules_common.mk build/rules_pear.mk build/program.mk: Gone they are.. files related to the old build-system 2002-04-12 Jan Lehnardt <jan@dasmoped.net> * ext/pcntl/tests/001.phpt: - MFB (4_2_0) * ext/pcntl/tests/001.phpt: - fix testcase - patch by: Roman Neuhauser <neuhauser@mail.cz> 2002-04-12 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c ext/exif/tests/001.phpt ext/exif/tests/003.phpt: Ini settings for internal encoding and decoding of Unicode and JIS formatted user comments. 2002-04-12 Frank M. Kromann <frank@frontbase.com> * ext/zlib/zlib.c: Removing a unused local variable. Setting the size before returning the value in readgzfile 2002-04-12 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/mbstring/mbstring.h ext/mbstring/mbstring.c: -new function php_mb_check_encoding_list -mark module globals as const (thread safety) 2002-04-12 Sander Roobol <phy@wanadoo.nl> * ext/mbstring/tests/003.phpt: MFH * ext/mbstring/tests/003.phpt: This test should be skipped if(!cgi) 2002-04-12 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbstring.c: fixed a bug which causes crash when charset is not set. 2002-04-12 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/mbstring/mbstring.c: -fix mb_detect_order -php_mbstring_parse_encoding_list/array return 0 on any illegal input 2002-04-12 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de> * ext/domxml/php_domxml.h ext/domxml/php_domxml.c: - added method DomNode->remove_child() * ext/domxml/php_domxml.h: - fixed stupid compile error * ext/domxml/php_domxml.h ext/domxml/php_domxml.c: - insert_before(): copy node before doing the insert - append_child(): actually do an append child and not and add sibling - what is called xmlDtd in libxml is actually the class DocumentType in DOM. The domxml extension used a class DomDtd which is not defined in the DOM standard. Instead of using DomDtd DomDocumentType is now used. DomDtd has been renamed to Dtd but has not meaning anymore. - added more functions 2002-04-12 Sebastian Bergmann <sb@sebastian-bergmann.de> * win32/php4dll.dsp: Sync with php4dllts. * win32/php4dllts.dsp win32/php4dll.dsp: MFH (Reduce warning level for re2c generated files. 2002-04-12 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * run-tests.php: Enable CGI binary for testing. CGI binary should be used when it's available, since some tests cannot be performed by CLI. (And many of them are just failing now) Fixed SAPI and VERSION output. * Makefile.global: Be nice to php.ini-recommended users. php.ini-recommended uses output buffer resulting delayed output during "make test". User php.ini file is used anyway, since run-tests.php invoke php for each test from there. 2002-04-12 Rasmus Lerdorf <rasmus@php.net> * ext/exif/tests/003.phpt: This exif test was failing because the \0's in the expected output had disappeared. It may be CVS doing this. I have put the nulls back, but we may have to mark this as a binary file in th cvswrappers, or rewrite the test to not output nulls. 2002-04-12 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/xslt/config.m4: Update Sablotron version supported. * sapi/cgi/cgi_main.c main/php_ini.c sapi/cli/php_cli.c: CGI/CLI take file and dir for -c option by this. 2002-04-11 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/mbstring/mbstring.c: interpret empty to_encoding as encoding not set what results in current_internal_encoding 2002-04-11 Jani Taskinen <sniper@iki.fi> * NEWS: Fixed (again) the news entry..NEWS file is not a manual. 2002-04-11 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbstring.c: fixed a bug which causes crash when charset is not set. 2002-04-11 Harald Radi <h.radi@nme.at> * ext/gd/gd.c: fixed typo * ext/gd/gd.c: fixed type 2002-04-11 Aaron Bannert <aaron@apache.org> * sapi/apache2filter/php_apache.h sapi/apache2filter/sapi_apache2.c: Fix a problem where php-generated data was pushed down the entire output filter chain instead of just down the rest of the chain. This fix will speed up some unnecessary overhead introduced in the last patch. Suggested by: Cliff Woolley <jwoolley@apache.org> 2002-04-11 Harald Radi <h.radi@nme.at> * ext/gd/gd.c: fixed type 2002-04-11 Aaron Bannert <aaron@apache.org> * sapi/apache2filter/php_apache.h sapi/apache2filter/sapi_apache2.c: PHP filters and Apache 2 aren't quite a perfect match yet, so we have to do some trickery with the server_context to make sure it is always valid within the current thread. This patch makes sure the server_context is created in apache's post_read_request hook phase, and then registeres a cleanup that will NULL out the server context when the request goes out of scope. Then, inside the output filters, if the server_context is null we throw an error. Finally, instead of saving the output filter in the server_context, now we store the entire request_rec pointer in there. POST bodies appear to be working now, although they are very inefficient. The input filter is still just realloc()ing for whatever data comes down the input pipe, and then sending this to PHP. This means that we are doing some really nasty memory management on big POST bodies. For now this it allows for unlimited input bodies, which means that a big POST could potentially DoS a box by making it run out of memory. We might want to put a limit on here just in case, at least until we figure out how to consume input data more efficiently into php. 2002-04-11 Sebastian Bergmann <sb@sebastian-bergmann.de> * main/config.w32.h win32/php4dll.dsp win32/php4dllts.dsp: Disable ext/overload. 2002-04-11 Joseph Tate <jtate@mi-corporation.com> * win32/php4dllts.dsp win32/php4ts.dsp win32/php4ts_cli.dsp: Fixing project files so that they load 2002-04-11 Aaron Bannert <aaron@apache.org> * sapi/apache2filter/sapi_apache2.c: Don't depend on the context provided by the filter (f->ctx) anymore. In Apache 2 the input and output filter contexts are kept unique. We now only depend on SG(server_context) for each request, and assume that the same thread will process the entire request. At some point it would be wise to separate the input and output contexts. * sapi/apache2filter/sapi_apache2.c: Return the number of bytes consumed, not the number of bytes left. Suggested by: Brian Havard <brianh@kheldar.apana.org.au> 2002-04-11 Jan Lehnardt <jan@dasmoped.net> * ext/domxml/tests/001.phpt: - add quotes. Cought by: Roman Neuhauser <neuhauser@mail.cz> 2002-04-11 Aaron Bannert <aaron@apache.org> * sapi/apache2filter/sapi_apache2.c: Return the number of bytes consumed, not the number of bytes left. Suggested by: Brian Havard <brianh@kheldar.apana.org.au> 2002-04-11 Sebastian Bergmann <sb@sebastian-bergmann.de> * sapi/apache2filter/README: MFH (Update README). * sapi/apache2filter/README: Update README. 2002-04-11 Joseph Tate <jtate@mi-corporation.com> * win32/php4ts.dsp win32/php4ts.rc win32/php4ts.rc2 win32/php4ts_cli.dsp win32/php4ts_cli.rc win32/php4ts_cli.rc2 win32/resource.h win32/php4dllts.rc win32/php4dllts.rc2 win32/php4dllts.dsp: Added versioning to dll and exe files created under windows. 2002-04-11 Wez Furlong <wez.php@thebrainroom.com> * main/php_version.h: sync with PHP_MAJOR_VERSION changes to configure.in * configure.in: Apply patch for MAJOR_VERSION etc. by Joseph Tate 2002-04-11 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/mbstring/mbstring.c: Fix ZTS build 2002-04-11 Derick Rethans <d.rethans@jdimedia.nl> * ext/overload/config.m4 configure.in ext/standard/basic_functions.h ext/standard/aggregation.c ext/standard/aggregation.h ext/standard/basic_functions.c ext/standard/config.m4: - Mark Apache2, overload and aggregation as experimental 2002-04-11 Wez Furlong <wez.php@thebrainroom.com> * main/user_streams.c ext/standard/php_fopen_wrapper.c: Fix declarations (Thanks Sebastian) 2002-04-11 Alexander Merz <alexander.merz@t-online.de> * pear/Archive/Tar.php: use DIRECTORY_SEPERATOR 2002-04-11 Stig Bakken <ssb@fast.no> * configure.in: * no more pear/scripts/pear-get 2002-04-11 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/standard/base64.c: thread safe * main/snprintf.c: fix build (hopefully for BSD, too) * ext/standard/image.c: fix warning * ext/standard/tests/file/002.phpt: fix testproblem 2002-04-11 Sebastian Bergmann <sb@sebastian-bergmann.de> * sapi/apache2filter/php_apache.h sapi/apache2filter/sapi_apache2.c: MFH (Patch by Aaron Bannert <aaron@clove.org> and Cliff Woolley <jwoolley@virginia.edu>). * sapi/apache2filter/php_apache.h sapi/apache2filter/sapi_apache2.c: Patch by Aaron Bannert <aaron@clove.org> and Cliff Woolley <jwoolley@virginia.edu>. 2002-04-11 Sascha Schumann <sascha@schumann.cx> * acinclude.m4: properly reset ac_extra in PHP_NEW_EXTENSION redirect stderr to /dev/null to silence xargs Noticed by: Andrei 2002-04-11 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/skeleton/php_skeleton.h: TSRMG => TSRMLS 2002-04-10 Wez Furlong <wez.php@thebrainroom.com> * ext/iconv/iconv.c: fix warning * main/user_streams.c main/php_streams.h main/streams.c main/main.c main/network.c ext/zlib/zlib_fopen_wrapper.c ext/zlib/zlib.c ext/standard/php_fopen_wrapper.c ext/standard/php_fopen_wrappers.h ext/zlib/php_zlib.h ext/standard/file.h ext/standard/ftp_fopen_wrapper.c ext/standard/http_fopen_wrapper.c ext/standard/file.c ext/standard/Makefile.frag ext/standard/basic_functions.c ext/bz2/php_bz2.h ext/bz2/bz2.c: Implement stream context and status notification system. Bump the BC for zlib notice to a warning 2002-04-10 Jani Taskinen <sniper@iki.fi> * NEWS: - Added __FUNCTION__ and __CLASS__ constants. 2002-04-10 Stig Bakken <ssb@fast.no> * pear/package-pear.xml: * add download command to description 2002-04-10 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Command/Remote.php: Implemented "pear download <pakage>" * pear/PEAR/Packager.php: Do not show the "tag it!" message when verbose=0 * pear/PEAR/Frontend/CLI.php: Added single display() 2002-04-10 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de> * ext/hwapi/CREDITS ext/hwapi/config.m4 ext/hwapi/hwapi.cpp: - extension to access a Hyperwave Server based on the official Hypwerwave SDK. The function of this module is similar to the existing hyperwave extension but the api is very different. 2002-04-10 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * main/snprintf.c main/spprintf.c: fix a warnig and an error (found by Sebastioan) 2002-04-10 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbfilter.h ext/mbstring/mbfilter_ja.c ext/mbstring/mbfilter_ja.h ext/mbstring/mbstring.c ext/mbstring/mbstring.h ext/mbstring/CREDITS ext/mbstring/mbfilter.c: changed mbstring to make thread safe. 2002-04-10 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Command/Registry.php: Help for command "shell-test" * pear/PEAR/Command/Package.php: Added "pear package -n" (only output the created package file name) 2002-04-10 Sascha Schumann <sascha@schumann.cx> * ext/dba/dba_db2.c: ws changes * ext/dba/dba_db2.c: Replace all memsets with variable initializations Change flow of code in functions to end in the "positive" branch. Changes verified using the original php3 dba tests. * ext/dba/dba_db2.c: too quick. full speed back. * ext/dba/dba_db2.c: Please test patches which are merged into the release branch. db2 has a standard UNIX API which in turn means that it returns non-zero in error conditions. 2002-04-10 Sebastian Bergmann <sb@sebastian-bergmann.de> * win32/php4dll.dsp win32/php4dllts.dsp: Fix Win32 build. 2002-04-10 Jani Taskinen <sniper@iki.fi> * NEWS: Note about Apache2 support being experimental. * sapi/apache2filter/config.m4: MFH * sapi/apache2filter/config.m4: Let people know this stuff is experimental. 2002-04-10 Edin Kadribasic <edink@proventum.net> * pear/DB/pgsql.php: Fixed postgres connect string generation when no host is specified. 2002-04-10 Stig Bakken <ssb@fast.no> * pear/Makefile.in: * add missing continuation * pear/Makefile.in: * tabify instead of untabify :-P * pear/Makefile.in: * remove pear-get if installed * pear/Makefile.in: * keep installing the bundled files in 4.2 too 2002-04-10 Derick Rethans <d.rethans@jdimedia.nl> * ext/exif/exif.c: - Reverse patch * ext/posix/posix.c: MFH * ext/posix/posix.c: - Fix defines 2002-04-10 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * main/main.c main/php_globals.h php.ini-dist php.ini-recommended: new ini setting log_errors_max_len * ext/exif/exif.c: fix exif using vspprintf * configure.in main/php.h: make (v)spprintf available * main/spprintf.c main/spprintf.h: introducing spprintf and vspprintf * main/snprintf.c main/snprintf.h: -preface for new vpprintf 2002-04-09 Stig Bakken <ssb@fast.no> * pear/PEAR/Common.php: * ignore dirs and libfiles in older releases (changelog) * pear/PEAR/Common.php: * ignore files in older releases (changelog) 2002-04-09 jim winstead <jimw@apache.org> * ext/gmp/gmp.c: MFH * ext/gmp/gmp.c: Fix bug #15835. 2002-04-09 Stig Bakken <ssb@fast.no> * pear/Makefile.in: * MFH Makefile * pear/Schedule/At.php pear/scripts/pear.bat pear/scripts/pear.in pear/PEAR/Command/Registry.php pear/PEAR/Frontend/CLI.php pear/PEAR/Command/Auth.php pear/PEAR/Command/Common.php pear/PEAR/Command/Config.php pear/PEAR/Command/Install.php pear/PEAR/Command/Package.php pear/PEAR/Packager.php pear/PEAR/Registry.php pear/PEAR/Remote.php pear/PEAR/Uploader.php pear/PEAR/Command.php pear/PEAR/CommandResponse.php pear/PEAR/Common.php pear/PEAR/Config.php pear/PEAR/Dependency.php pear/PEAR/Installer.php pear/Net/Socket.php pear/Mail/RFC822.php pear/DB/tests/oci8/05sequences.phpt pear/HTML/Common.php pear/HTML/Form.php pear/HTML/Select.php pear/DB/pgsql.php pear/DB/tests/driver/05sequences.phpt pear/DB/tests/mysql/05sequences.phpt pear/DB/tests/sequences.inc pear/DB/oci8.php pear/DB/mysql.php pear/DB/ibase.php pear/DB/common.php pear/package-db.xml pear/package-pear.xml pear/package.dtd pear/pear.m4 pear/PEAR.php pear/DB.php: * PEAR MFH * pear/DB/common.php pear/DB.php: * drop the ondemand connect stuff for now * pear/tests/pear_config.phpt: * add preferred_state * pear/package-pear.xml: * drop file replace= attribute * pear/tests/pear_config.phpt pear/tests/pear_error.phpt pear/tests/pear_error3.phpt pear/PEAR/Frontend/CLI.php pear/XML/tests/002.phpt pear/XML/tests/003.phpt pear/scripts/.cvsignore pear/scripts/pear-get.in pear/scripts/pear.in pear/scripts/pearcmd-common.php pear/scripts/pearcmd-help.php pear/scripts/pearcmd-info.php pear/scripts/pearcmd-install.php pear/scripts/pearcmd-list.php pear/scripts/pearcmd-package.php pear/scripts/pearcmd-remote-list.php pear/scripts/pearcmd-show-config.php pear/scripts/pearcmd-uninstall.php pear/scripts/phpize.in pear/PEAR/Command/Auth.php pear/PEAR/Command/Common.php pear/PEAR/Command/Config.php pear/PEAR/Command/Install.php pear/PEAR/Command/Package.php pear/PEAR/Command/Registry.php pear/PEAR/Command/Remote.php pear/PEAR/Packager.php pear/PEAR/Registry.php pear/PEAR/Remote.php pear/DB/tests/ibase/03simplequery.phpt pear/DB/tests/ibase/04numcols.phpt pear/DB/tests/ibase/05sequences.phpt pear/DB/tests/ibase/06prepexec.phpt pear/DB/tests/ibase/10errormap.phpt pear/DB/tests/ibase/connect.inc pear/DB/tests/ibase/mktable.inc pear/DB/tests/ibase/skipif.inc pear/HTML/Form.php pear/HTML/Select.php pear/PEAR/Command.php pear/PEAR/Common.php pear/PEAR/Config.php pear/PEAR/Installer.php pear/DB/IDEAS pear/DB/STATUS pear/DB/TESTERS pear/DB/common.php pear/DB/ibase.php pear/DB/pgsql.php pear/DB/tests/db_error.phpt pear/DB/tests/db_error2.phpt pear/DB/tests/driver/setup.inc pear/DB/tests/ibase/02fetch.phpt pear/.cvsignore pear/DB.php pear/Makefile.frag pear/Makefile.in pear/PEAR.php pear/package.dtd pear/pear.m4: * partial PEAR MFH * ext/xml/xml.c: * remove extra end-fold 2002-04-09 Sterling Hughes <sterling@bumblebury.com> * sapi/apache2filter/php_functions.c: eekk -- and ssb thought my macro's were icky :) 2002-04-09 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Package.php: * package-validate uses package.xml as default param * pear/Makefile.in: * MFH: install the right expat header files * pear/Makefile.frag: * ext/xml/expat no longer has xmltok and xmlparse subdirs 2002-04-09 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Dependency.php pear/PEAR/Installer.php: Make the dependencies check look for the correct registry file 2002-04-09 Alexander Merz <alexander.merz@t-online.de> * pear/PEAR/Registry.php: Win95/98/Me doesn't support locking, please check patch on other systems 2002-04-09 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Command/Package.php: Fix package-list not showing the right Install path * pear/PEAR/Registry.php: Fix a problem when list-installed is called in a new installation 2002-04-09 James Cox <james@wherewithal.com> * pear/scripts/pear.bat: it's been changed back to php.exe 2002-04-09 Alexander Merz <alexander.merz@t-online.de> * pear/scripts/pear.bat: updated, requires PHP4.2 php-cgi 2002-04-09 Stig Bakken <ssb@fast.no> * pear/PEAR/Packager.php: * show full cvstag command * pear/PEAR/Command/Common.php: * get rid of CommandResponse stufff * pear/PEAR/Common.php: * drop file replace= attribute * pear/Makefile.frag: * remove PEAR/Uploader.php * pear/PEAR/CommandResponse.php pear/PEAR/Uploader.php: * unused files * pear/PEAR/Command/Install.php pear/PEAR/Config.php pear/PEAR/Installer.php pear/PEAR/Common.php pear/package-pear.xml pear/package.dtd: * implemented role="script" and <replace> substitution during install 2002-04-09 Sterling Hughes <sterling@bumblebury.com> * sapi/apache2filter/php_functions.c sapi/apache2filter/sapi_apache2.c: fix compile warnings 2002-04-09 Stig Bakken <ssb@fast.no> * pear/package-pear.xml: * package definition for the base PEAR system * pear/package.dtd: HEADS UP, package.xml format change: <file>foo.php</file> is now <file name="foo.php/> Added tags for configure-like substitutions. 2002-04-08 Mark L. Woodward <mlwmohawk@mohawksoft.com> * ext/msession/php_msession.h ext/msession/reqclient.h ext/msession/msession.c: Added new features for msession beta 2 2002-04-08 Jani Taskinen <sniper@iki.fi> * ext/odbc/birdstep.c ext/odbc/php_odbc.c: ws fix * ext/odbc/php_odbc.c: MFH * ext/odbc/php_odbc.c: CPP directives must start on the beginning of line 2002-04-08 Richard Heyes <richard@phpguru.org> * pear/PEAR.php: * Added getStaticProperty() for static methods. 2002-04-08 Jani Taskinen <sniper@iki.fi> * ext/standard/config.m4 ext/standard/reg.c acinclude.m4 NEWS: - Revert that change. Added a warning about this. 2002-04-08 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/mysql/libmysql/strto.c ext/mysql/libmysql/strtoll.c ext/mysql/libmysql/strtoull.c: MFH (MS VS.Net Fix). 2002-04-08 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * pear/Makefile.frag: Make pgsql header available for PECL module(s) 2002-04-08 Wez Furlong <wez.php@thebrainroom.com> * configure.in: remove streams option from branch 2002-04-08 Bertrand Mansion <bmansion@mamasam.com> * pear/HTML/Common.php pear/HTML/Select.php: htmlentities > htmlspecialchars for charset compatibility as noticed by Wojciech Gdela. 2002-04-08 Edin Kadribasic <edink@proventum.net> * win32/install.txt win32/php4ts_cli.dsp win32/pws-php4cgi.reg: Finished syncing win32 build and docs with the unix counterpart. Renamed the cli executable to php-cli.exe so somebody doesn't overwrite cgi by mistake. 2002-04-08 Jani Taskinen <sniper@iki.fi> * main/main.c: upload_max_filesize can only be set in php.ini * NEWS: and the news entry.. * ext/standard/config.m4 ext/standard/reg.c acinclude.m4: There's really no point in allowing using the system regex library. 2002-04-08 Sebastian Bergmann <sb@sebastian-bergmann.de> * win32/php4.dsp win32/php4ts.dsp: Rename Win32 executable to php.exe. 2002-04-08 Jani Taskinen <sniper@iki.fi> * ext/standard/config.m4: Using system regex lib seems not to work quite well when compiled with Apache. 2002-04-08 Derick Rethans <d.rethans@jdimedia.nl> * ext/dba/dba_db2.c: - MFH * ext/dba/dba_db2.c: - Fix wrong logic (Thanks to Alan for noticing it) 2002-04-08 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: Remove unneeded conversions from pg_convert. 2002-04-08 Tomas V.V.Cox <cox@idecnet.com> * pear/package-db.xml: Continue the list of features for PEAR DB Release version is 2.0 (apiVersion) 2002-04-08 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: Make it compile with ZTS. * ext/pgsql/README: Update README * ext/pgsql/tests/10pg_convert.phpt ext/pgsql/tests/11pg_metadata.phpt ext/pgsql/tests/12pg_insert.phpt ext/pgsql/tests/13pg_select.phpt ext/pgsql/tests/14pg_update.phpt ext/pgsql/tests/15pg_delete.phpt ext/pgsql/tests/16pg_result_status.phpt ext/pgsql/tests/informational.inc ext/pgsql/tests/pg_convert.inc ext/pgsql/tests/pg_delete.inc ext/pgsql/tests/pg_insert.inc ext/pgsql/tests/pg_metadata.inc ext/pgsql/tests/pg_result_status.inc ext/pgsql/tests/pg_select.inc ext/pgsql/tests/pg_update.inc ext/pgsql/config.m4 ext/pgsql/pgsql.c ext/pgsql/php_pgsql.h: Added pg_metadate(), pg_convert(), pg_insert(), pg_select(), pg_update() and pg_delete(). 2002-04-08 Jani Taskinen <sniper@iki.fi> * php.ini-dist php.ini-recommended: MFH 2002-04-08 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: Return proper result. 2002-04-08 Jani Taskinen <sniper@iki.fi> * ext/ming/php_ming.h ext/ming/ming.c: Some ws fixes and general cleanup. 2002-04-08 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: Added 2nd parameter for pg_result_status(). PGSQL_STATUS_LONG is for LONG result status. PGSQL_STATUS_STRING is for SQL command name successfully executed for this result. 2002-04-07 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: correcting some more whitespace 2002-04-07 Jani Taskinen <sniper@iki.fi> * ext/ming/ming.c: Fixed compile failure with ZTS build. 2002-04-07 Stig Bakken <ssb@fast.no> * pear/PEAR/Installer.php: * append "?uncompress=yes" to the package download url if zlib extension is not loaded * pear/package-db.xml: * package xml file for DB 2002-04-07 Andi Gutmans <andi@zend.com> * ext/mysql/libmysql/strto.c ext/mysql/libmysql/strtoll.c ext/mysql/libmysql/strtoull.c: - Fix build with Visual Studio .NET. The MySQL team said they'll commit - their fix a long time ago and never did. One day they'll update the - whole MySQL client library. 2002-04-07 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Common.php: Added PEAR_Common::getUserRoles() and a suggestion 2002-04-07 Hartmut Holzgraefe <hartmut@six.de> * ext/standard/levenshtein.c ext/standard/tests/general_functions/003.phpt: fix and regression test for Bug #16473 2002-04-07 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c ext/exif/tests/003.phpt ext/exif/tests/test3.jpg: -found userland solution to fix UNICODE comments (see tests/003.phpt) 2002-04-07 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Package.php pear/PEAR/Frontend/CLI.php pear/PEAR/Packager.php: * added "cvstag" command 2002-04-07 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: -fix warnings -fix layout * ext/mbstring/mbfilter.c ext/mbstring/mbregex.c ext/mbstring/mbstring.c: -fix warnings 2002-04-07 Jani Taskinen <sniper@iki.fi> * php.ini-recommended php.ini-dist: Removed relics from PHP3. 2002-04-07 Stig Bakken <ssb@fast.no> * pear/PEAR/Packager.php: * give PEAR_Packager::package an option to disable compression and make plain .tar files * pear/PEAR/Command/Install.php: * remove empty fold * pear/scripts/pear.in: * use the UI's displayFatalError method * pear/PEAR/Frontend/CLI.php: * added displayError and displayFatalError methods * pear/PEAR/Command.php: * initialize _PEAR_Command_uiobject 2002-04-07 Sterling Hughes <sterling@bumblebury.com> * configure.in: apply jan's configure check for apache2 and freebsd (relating to the use of tsrm-pth). 2002-04-07 Stig Bakken <ssb@fast.no> * pear/PEAR/Common.php: * leave error reporting to the validator * pear/PEAR/Packager.php: * more clear cvs tag hint 2002-04-07 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Command/Install.php: Just some help cleanup 2002-04-07 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Package.php: * typo * pear/PEAR/Command/Package.php: * rename package-verify command to package-validate 2002-04-07 Wez Furlong <wez.php@thebrainroom.com> * ext/standard/string.c: fix for #16469 2002-04-07 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Install.php pear/PEAR/Command/Package.php pear/PEAR/Packager.php pear/PEAR/Installer.php pear/PEAR/Common.php: * support for .tar files in PEAR_Installer * new command: package-verify * "package" command now sanity-checks the package information before making the tarball * -Z option to the install/update commands for downloading non-compressed packages 2002-04-07 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * php.ini-dist php.ini-recommended: Added pgsql.ignore_notice and pgsql.log_notice ini entry. * ext/pgsql/pgsql.c: Nuke waring with ZTS build * ext/msession/msession.c: Fixed ZTS build 2002-04-07 Jani Taskinen <sniper@iki.fi> * NEWS: Fixed bad entries. 2002-04-06 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * main/php_globals.h php.ini-dist php.ini-recommended main/main.c: new feature ignoring repeated error messages (defaults to old behaviour) 2002-04-06 Derick Rethans <d.rethans@jdimedia.nl> * ext/zip/zip.c: - MFH zip_entry_read_bug 2002-04-06 Wez Furlong <wez.php@thebrainroom.com> * ext/zlib/zlib_fopen_wrapper.c main/streams.c: Added BC support for old style zlib: wrapper. Added notice when a requested wrapper is not found. 2002-04-06 Derick Rethans <d.rethans@jdimedia.nl> * ext/zip/zip.c: - Fix zzip_entry_read 2002-04-06 Richard Heyes <richard@phpguru.org> * pear/PEAR.php: * Added registerShutdownFunc() method 2002-04-06 Wez Furlong <wez.php@thebrainroom.com> * NEWS: Inform the masses about where to get a 4.2 compatible mailparse package 2002-04-06 Sebastian Bergmann <sb@sebastian-bergmann.de> * sapi/apache/php4apache.dsp sapi/apache2filter/php4apache2.dsp sapi/fastcgi/fastcgi.dsp: MFH (.dsp fixes) 2002-04-06 Tomas V.V.Cox <cox@idecnet.com> * pear/DB/tests/oci8/05sequences.phpt: Output adapted to the new tests * pear/DB/oci8.php: Rethrow errors in nextID() to be handled by the global error handler * pear/DB/tests/sequences.inc: Backends with real sequences may don't like DELETE FROM sequence 2002-04-06 Sebastian Bergmann <sb@sebastian-bergmann.de> * sapi/fastcgi/fastcgi.dsp sapi/apache2filter/php4apache2.dsp sapi/apache/php4apache.dsp: Fix output directory. 2002-04-06 Tomas V.V.Cox <cox@idecnet.com> * pear/DB/tests/driver/05sequences.phpt pear/DB/tests/mysql/05sequences.phpt: Output adapted to the new tests * pear/DB/tests/sequences.inc: More hard tests * pear/DB/mysql.php: Work on nextID(): - Use push/popErroHandling instead of "the hack" - Optimize the speed - Rethrow errors to be catched by the error handler when set - Move the backwards compatibilty sequence system to its own function - Fix a bug when the sequence table is empty * pear/DB/common.php: Fix fail when a error object is "rethrowed" and a class error handler is set * pear/PEAR.php: Fix bug in pushErrorHandling() (fail under very specific circumstances) 2002-04-06 Sascha Schumann <sascha@schumann.cx> * acinclude.m4 pear/pear.m4 configure.in: Improve the life of external extension maintainers by not plaguing them with "./" in absolute paths. Requested by: Andrei, Wez 2002-04-06 Jani Taskinen <sniper@iki.fi> * NEWS: minor fix.. 2002-04-06 Sebastian Bergmann <sb@sebastian-bergmann.de> * sapi/apache2filter/php4apache2.dsp: Fix Debug_TS build. 2002-04-06 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/tests/notice.inc ext/pgsql/php_pgsql.h: Chages for new pg_last_notice() * ext/pgsql/pgsql.c: Make pg_last_notice() work as it is designed. It returns last notice message for connection resource specified. Added "pgsql.ignore_notice" ini entry. Added "pgsql.log_notice" ini entry. 2002-04-06 Andrei Zmievski <andrei@php.net> * ext/xmlrpc/config.m4 ext/xmlrpc/xmlrpc-epi-php.c: - Fixed a leak in xml_decode(). - Fixed it so it's possible to compile as a shared extension. 2002-04-06 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/mbstring/mbstring.c: Use get_active_function_name() for error messages. 2002-04-06 Stig Bakken <ssb@fast.no> * pear/PEAR/Common.php: * forgot htmlspecialchars in release notes 2002-04-05 Sterling Hughes <sterling@bumblebury.com> * sapi/apache2filter/sapi_apache2.c: MFH changes per doug's request 2002-04-05 Joseph Tate <jtate@mi-corporation.com> * ext/domxml/tests/001.phpt ext/domxml/tests/domxml_test.inc: Added test suite for domxml extension. * ext/domxml/php_domxml.c: MFH added unlink_node alias * ext/domxml/php_domxml.c: Added unlink_node alias for consistency 2002-04-05 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/tests/003.phpt ext/exif/tests/test3.jpg: -testing unicode user-comment * ext/exif/exif.c: -correct length for ASCII -global encoding variables * ext/mbstring/tests/016.inc ext/mbstring/tests/016.phpt: include comma separated encoding lists in test * ext/mbstring/mbstring.c: no space for comma separated encoding lists * ext/exif/exif.c: aligning # 2002-04-05 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: oops. that was an error not detected in shared library mode ... * ext/domxml/php_domxml.c ext/domxml/php_domxml.h: added domxml_parser(), domxml_parser_add_chunk() and domxml_parser_end(). It provides access to the PushParser interface of libxml2. 2002-04-05 Zeev Suraski <zeev@zend.com> * ext/bz2/php_bz2.h: Fix build 2002-04-05 Tomas V.V.Cox <cox@idecnet.com> * pear/DB/mysql.php: - Fix a problem in nextID() when the sequence table is empty - Use push/popErrorHanlding() instead of the "hack" 2002-04-05 Stig Bakken <ssb@fast.no> * ext/zlib/php_zlib.h ext/zlib/zlib.c: Add zlib.output_compression_level option 2002-04-05 Jani Taskinen <sniper@iki.fi> * NEWS: MFH the fixed entries * NEWS: Fixed some entries.. 2002-04-05 Zeev Suraski <zeev@zend.com> * ext/zlib/zlib.dsp ext/zlib/zlib.c ext/standard/file.c ext/standard/file.h ext/bz2/bz2.c ext/bz2/bz2.dsp ext/bz2/php_bz2.h: Fix gzip/bz2 builds for Windows 2002-04-05 Wez Furlong <wez.php@thebrainroom.com> * NEWS: let people know about mailparse being pickled * pear/Makefile.in: MFH: add mbstring headers to those for pear/pecl extensions 2002-04-05 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/tests/09notice.phpt: Add error message from _notice_handler() * NEWS: FMB. Fixed bug info. * NEWS: Forgot mention fixed bug that is reported by user. * ext/pgsql/pgsql.c: MFH. Fixed pg_last_notice() double free. * ext/pgsql/pgsql.c: Fix pg_last_notice() double free. * ext/pgsql/tests/09notice.phpt ext/pgsql/tests/notice.inc: Add notice message test 2002-04-05 Sascha Schumann <sascha@schumann.cx> * ext/ircg/README.txt: update regarding version numbers 2002-04-05 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/tests/escape.inc: Update message * ext/pgsql/tests/createdb.inc ext/pgsql/tests/large_object.inc ext/pgsql/tests/config.inc: Add bytea field to test table. Use table name variable. * ext/pgsql/tests/08escape.phpt ext/pgsql/tests/escape.inc ext/pgsql/tests/php.gif: Add real pg_escape_bytea() test. * ext/mbstring/mbstring.c ext/mbstring/mbstring.h: Fixed way of exporing functions. (Need PHPAPI for Win) Fixed if statement format. ("if () stmt;" should be "if () \n {stmt;}") Fixed error message so that appropriate function names are displayed. 2002-04-05 Tomas V.V.Cox <cox@idecnet.com> * pear/DB/mysql.php: ws 2002-04-05 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: Unicode is now based on php_mb_convert_encoding if available * ext/mbstring/mbstring.c ext/mbstring/mbstring.h: new function php_mb_convert_encoding 2002-04-05 Wez Furlong <wez.php@thebrainroom.com> * pear/Makefile.frag: add mbstring headers to those for pear/pecl extensions 2002-04-04 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: removed calls to wctomb, wcstombs 2002-04-04 Sterling Hughes <sterling@bumblebury.com> * win32/grp.h win32/pwd.c win32/pwd.h win32/syslog.h: mfh * win32/grp.h win32/pwd.c win32/pwd.h win32/syslog.h: i of course am the brilliant author of these files * win32/pwd.c win32/pwd.h: replace with non-gpl implementation 2002-04-04 Daniela Mariaschi <mariaschi@libero.it> * ext/interbase/interbase.c: Fixed sigfault in ibase_close (bug #15419-#15992) 2002-04-04 Sterling Hughes <sterling@bumblebury.com> * win32/syslog.h: non gpl implementation * win32/grp.h: replace grp.h with a new implementation (non-GPL) 2002-04-04 Sander Roobol <phy@wanadoo.nl> * ext/tokenizer/Makefile.frag ext/tokenizer/config.m4: Fixed build with multiple concurrent jobs (make -j) * README.UNIX-BUILD-SYSTEM: Fixed typo 2002-04-04 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c ext/pgsql/tests/08escape.phpt ext/pgsql/tests/escape.inc: MFH * ext/pgsql/tests/08escape.phpt ext/pgsql/tests/escape.inc: Fix tests 2002-04-04 Wez Furlong <wez.php@thebrainroom.com> * ext/bz2/php_bz2.h ext/bz2/bz2.c: Fix #16428 problems. Renamed the bz2 wrapper to bzip2:// 2002-04-04 Jani Taskinen <sniper@iki.fi> * ext/xml/tests/007.phpt: MFH * ext/xml/tests/007.phpt: Revert the bogus patch. 2002-04-04 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/tests/08escape.phpt ext/pgsql/tests/escape.inc: Added pg_escape_*() test 2002-04-04 Jani Taskinen <sniper@iki.fi> * ext/bz2/tests/with_files.phpt: MFH * ext/bz2/tests/with_files.phpt: added test case for file handling in bz2 2002-04-04 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: Clean up pg_escape_*() 2002-04-04 Jani Taskinen <sniper@iki.fi> * ext/mbstring/tests/.cvsignore: missing .cvsignore 2002-04-04 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: - fixed a lot of memory leaks (by Lukas Schroeder) - get_attribute() returns False instead of empty string, if attribute not found 2002-04-04 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: Fixed crash with pg_escape_*() 2002-04-04 Sascha Schumann <sascha@schumann.cx> * acinclude.m4: Add deferred libs to DLIBS instead of LIBS. Noticed by: Jani Taskinen <sniper@iki.fi> 2002-04-04 Daniela Mariaschi <mariaschi@libero.it> * ext/interbase/interbase.c: Fixed sigfault in ibase_close(). Bug #15419 #15992 2002-04-04 Jani Taskinen <sniper@iki.fi> * NEWS: minor fixes 2002-04-04 Marko Karppinen <karppinen@pobox.com> * NEWS: Added news on the Mac OS X changes and removed a duplicate line 2002-04-04 Jani Taskinen <sniper@iki.fi> * ext/standard/dl.c configure.in: - OS X support for dynamically loaded extensions. (patch by Marko) 2002-04-04 Sterling Hughes <sterling@bumblebury.com> * ext/curl/curl.c: MFH 2002-04-03 Sterling Hughes <sterling@bumblebury.com> * ext/curl/curl.c: fix bug #15150, thanks to daniel at haxx.se for the fix 2002-04-03 Jani Taskinen <sniper@iki.fi> * ext/openssl/tests/001.phpt: Fix the test..somehow got corrupted? * ext/mcal/config.m4: Partial MFH * .cvsignore: - Added the autom4te.cache to be cleaned too with cvsclean 2002-04-03 Derick Rethans <d.rethans@jdimedia.nl> * configure.in main/php_version.h: - Swap back version numbers for development * ext/exif/exif.c: - Fix build (Patch by Marcus Boerger) * ext/exif/exif.c: - Fix as suggested my Marcus * main/php_version.h configure.in: - Fix version number 2002-04-03 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * tests/func/007.phpt: Added ini_set()/ini_get()/ini_restore() test 2002-04-03 Wez Furlong <wez.php@thebrainroom.com> * ext/standard/exec.c: fix TS build * ext/standard/exec.c ext/standard/exec.h ext/standard/basic_functions.c: Tidy up win32 implementation of proc_open. Respect safe_mode_exec_dir. Implement proc_close and return process return code under win32. * ext/mailparse/tests/006.phpt: add test for mailparse_extract_part_file 2002-04-03 Stig Bakken <ssb@fast.no> * pear/DB/mysql.php: * work around a php segfault 2002-04-02 Wez Furlong <wez.php@thebrainroom.com> * main/memory_streams.c main/streams.c ext/standard/exec.c ext/standard/exec.h ext/standard/basic_functions.c ext/mailparse/php_mailparse.h ext/mailparse/try.php ext/mailparse/mailparse.c: main/streams.c * sapi/cgi/cgi_main.c: fix quoting 2002-04-02 Derick Rethans <d.rethans@jdimedia.nl> * ext/tokenizer/config.m4: - Fix layout 2002-04-02 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Install.php pear/PEAR/Installer.php: * Added "-s" (soft update) option to install/upgrade. Will make installs fail silently. * pear/PEAR/Common.php: * add Frontend support to PEAR_Common::log() * pear/PEAR/Command/Registry.php: * Implemented "shell-test" command for writing shell scripts that check whether a package is installed. Example of use: if ! pear shell-test Net_Socket; then echo "You don't have the Net_Socket package installed!" >&2 exit 1 fi * pear/PEAR/Registry.php: * just renaming some comments * pear/PEAR/Frontend/CLI.php: * add type property telling what type of frontend this class implements * pear/scripts/pear.in: * remove "exit" at the end, it causes a "false" exit code always * pear/Makefile.frag: * comment out the php files that are not necessary for the installer 2002-04-02 Kirill Maximov <kir@actimind.com> * ext/standard/quot_print.c: 2002-04-02 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/quot_print.c: - Whitespace 2002-04-02 James Cox <james@wherewithal.com> * sapi/cgi/cgi_main.c: just did... * sapi/cgi/cgi_main.c: updated the alert sent to the browser. removed the verbosity, and linked to more info. 2002-04-02 Jani Taskinen <sniper@iki.fi> * ext/imap/config.m4: Be a bit more verbose about what was not found. 2002-04-01 Jani Taskinen <sniper@iki.fi> * main/rfc1867.c: MFH * configure.in: Fix for bug: #5499 (no need to MFH this one) * main/rfc1867.c: Prevent crashing with some bogus POSTs. 2002-04-01 Richard Heyes <richard@phpguru.org> * pear/Mail/RFC822.php: * Fixed bug with new limit option * pear/Mail/RFC822.php: * Added optional limit to prevent runaway parsing * Changed recursive nature of _splitAddresses as it was barfing on large amounts of addresses (1000+) * Added approximateCount() function which will give an approximate count of how many addresses are in a string 2002-04-01 Kirill Maximov <kir@actimind.com> * ext/standard/quot_print.c ext/standard/tests/general_functions/002.phpt: (PHP quoted_printable_decode) Fixed CR/LF processing for Windows/OS2 2002-04-01 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Command/Install.php pear/PEAR/Packager.php: typo * pear/PEAR/Command/Config.php: Added layer checks and reorganize a little the code * pear/PEAR/Config.php: - Define the PEAR constants when they are not set (be nice with the "--wihout-pear" people who finally regrets) - Added method getLayers() * pear/PEAR/Command/Config.php: - Make "config-set" actually store the values - Help and error messages enhance * pear/PEAR/Command/Install.php: - Added "nodeps" option to install/upgrade/uninstall (pear install -n package.tgz) - Finish to document the install commands 2002-04-01 Kirill Maximov <kir@actimind.com> * ext/standard/quot_print.c ext/standard/tests/general_functions/002.phpt ext/standard/tests/general_functions/006.phpt: (PHP quoted_printable_decode) Fixed CR/LF processing for Windows/OS2 2002-04-01 Tomas V.V.Cox <cox@idecnet.com> * pear/scripts/pear.in: - Set some php.ini values needed by the installer - Removed unused present_array() and heading() functions 2002-04-01 Stig Bakken <ssb@fast.no> * pear/Net/Socket.php: * moved to /pear 2002-04-01 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Registry.php: People reported problems with flock(LOCK_SH) and fopen('w') * pear/PEAR/Command/Auth.php pear/PEAR/Command/Config.php pear/PEAR/Command/Registry.php: added help * pear/scripts/pear.in: Adaptation for the new help system * pear/PEAR/Command/Common.php pear/PEAR/Command/Install.php pear/PEAR/Command/Package.php pear/PEAR/Command.php: Go with the help system 2002-04-01 Stig Bakken <ssb@fast.no> * pear/package.dtd: * typo 2002-04-01 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/tests/001.phpt ext/exif/tests/002.phpt: MFH finding test files 2002-04-01 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/config.m4: MFH. Forgot to commit this when I commit fix build with PostgreSQL 6.5.x 2002-04-01 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/math.c: - MFH for fix for bug #14966 * ext/standard/math.c: - Fix for bug #14966 2002-04-01 Markus Fischer <mfischer@guru.josefine.at> * ext/exif/exif.c: - Nuke *FETCH macros. 2002-04-01 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: 2002-04-01 Mark L. Woodward <mlwmohawk@mohawksoft.com> * ext/msession/msession.c: PHP_SESSION_API not always defined. 2002-03-31 Markus Fischer <mfischer@guru.josefine.at> * ext/exif/exif.c: - Fix compilation. 2002-03-31 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Common.php: E_ALL fix * pear/PEAR/Packager.php: if (!function_exists('md5_file')) { ... 2002-03-31 Jani Taskinen <sniper@iki.fi> * ext/java/.cvsignore ext/java/Makefile.frag ext/java/Makefile.in ext/java/config.m4: Fixed the build issues reported by Stas. * ext/pspell/tests/.cvsignore: missing .cvsignore 2002-03-31 Stanislav Malyshev <stas@zend.com> * configure.in: Fix ZE2 builds 2002-03-31 Mark L. Woodward <mlwmohawk@mohawksoft.com> * ext/msession/msession.c: Fixed conditional compilation based on macros changed in ext/session/php_session.h which changed. 2002-03-31 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbregex.c ext/mbstring/unicode_table.h ext/mbstring/unicode_table_ja.h ext/mbstring/cp932_table.h ext/mbstring/mbfilter.c ext/mbstring/mbfilter_ja.c: moved static constant definitions for separeted files to fix compilation problem in Tru64. 2002-03-31 Stig Bakken <ssb@fast.no> * pear/Schedule/At.php: * updated error handling * pear/PEAR/Common.php: * E_ALL fix * pear/PEAR/Command/Auth.php: * avoid object copying * pear/PEAR/Remote.php: * oops, config object was copied * call parameters were not passed on to xmlrpc_encode_request() 2002-03-31 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: Print multibyte and SSL support is compiled in libpq or not. * ext/pgsql/config.m4 ext/pgsql/pgsql.c ext/pgsql/php_pgsql.h: Print PostgreSQL version number in phpinfo() 2002-03-31 Stig Bakken <ssb@fast.no> * pear/Makefile.frag: * install PEAR/Command/Remote.php 2002-03-31 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbfilter.c ext/mbstring/mbfilter_ja.c: revert Sascha's patch to fix compile error in Tru64. * ext/mbstring/mbstring.h: fixed crash bug in Tru64. 2002-03-30 Stig Bakken <ssb@fast.no> * configure.in: * added sys/utsname.h test 2002-03-30 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: MFH. 6.5.3 libpq build fix. 2002-03-30 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/tests/001.phpt: - corrected test-image * ext/exif/tests/test2.jpg: MFH - corrected test-image * ext/exif/exif.c: -memory leaks 2002-03-30 Rasmus Lerdorf <rasmus@php.net> * README.EXT_SKEL: Looks like mawk can't handle create_stubs - if someone is keen it would be nice to fix that, but for now just make a note that gawk may be needed. 2002-03-30 Sascha Schumann <sascha@schumann.cx> * ext/session/php_session.h ext/session/session.c: - Proper use of underscores (s/createsid/create_sid/) - Bump the API date and remove extra cpp macro - Pass TSRMLS appropiately to the create_sid function 2002-03-30 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: -compiler warnings 2002-03-30 Jani Taskinen <sniper@iki.fi> * ext/pspell/tests/.cvsignore: New file. * ext/pspell/tests/.cvsignore: another missing .cvsignore 2002-03-30 Marko Karppinen <karppinen@pobox.com> * sapi/apache/config.m4 Makefile.global acinclude.m4: Enable --with-apxs build on Mac OS X. We build an MH_BUNDLE instead of an MH_DYLIB. As all PPC code is relocatable, we don't use the libtool based shared build but go a static route. Goodbye libtool! 2002-03-30 Jani Taskinen <sniper@iki.fi> * ext/exif/tests/.cvsignore: missing .cvsignore * ext/xmlrpc/libxmlrpc/.cvsignore: missing entry (still needed here..) * ext/ming/config.m4: MFH * main/rfc1867.c: Fixed a bug with file_uploads=off -> normal post variables not set. 2002-03-30 Markus Fischer <mfischer@guru.josefine.at> * ext/ftp/php_ftp.c: - MFH fix for #16348. * ext/ftp/php_ftp.c: - Fix #16348. 2002-03-29 Marko Karppinen <karppinen@pobox.com> * .cvsignore: Mac's Find By Content indexing sprinkles these annoying files around * sapi/apache/config.m4: Prepare for MH_BUNDLE build on Mac OS X / Darwin 2002-03-29 Sander Roobol <phy@wanadoo.nl> * tests/lang/002.phpt tests/lang/003.phpt tests/lang/004.phpt tests/lang/005.phpt tests/lang/006.phpt tests/lang/007.phpt tests/lang/008.phpt tests/lang/009.phpt tests/lang/010.phpt tests/lang/012.phpt tests/lang/013.phpt tests/lang/014.phpt tests/lang/015.phpt tests/lang/016.inc tests/lang/016.phpt tests/lang/017.phpt tests/lang/022.phpt tests/lang/025.phpt tests/lang/029.phpt tests/lang/030.phpt tests/lang/031.phpt tests/lang/033.phpt: Updating tests: remove alternative syntax in tests, added a special alternative-syntax testfile. * php.ini-dist php.ini-recommended: Added crack extension to php.ini-* 2002-03-29 Mark L. Woodward <mlwmohawk@mohawksoft.com> * ext/session/session.c ext/session/php_session.h: Added field to ps_module structure to hold function pointer for the creation of the session ID string. Default PS_MOD() macro sets this to be the default creation routine. PS_MOD_SID() macro sets this to a handlers session ID creation routine. 2002-03-29 Doug MacEachern <dougm@covalent.net> * sapi/apache2filter/sapi_apache2.c: adjust to recent apr bucket api changes 2002-03-29 Jani Taskinen <sniper@iki.fi> * ext/bz2/bz2.c: MFH fix for some bug * ext/standard/tests/aggregation/aggregate.lib ext/standard/tests/aggregation/aggregate.lib.php ext/standard/tests/aggregation/aggregate.phpt ext/standard/tests/aggregation/aggregate_methods.phpt ext/standard/tests/aggregation/aggregate_methods_by_list.phpt ext/standard/tests/aggregation/aggregate_methods_by_regexp.phpt ext/standard/tests/aggregation/aggregate_properties.phpt ext/standard/tests/aggregation/aggregate_properties_by_list.phpt ext/standard/tests/aggregation/aggregate_properties_by_regexp.phpt ext/standard/tests/aggregation/aggregation_info.phpt ext/standard/tests/aggregation/deaggregate.phpt: - MFH fixes for these tests. * NEWS: - Added missing entry for mysql_info() and fixed some entries * ext/mysql/php_mysql.c: WS fix 2002-03-29 Jan Lehnardt <jan@dasmoped.net> * ext/mysql/php_mysql.c ext/mysql/php_mysql.h: - add mysql_info function 2002-03-29 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/config.m4 ext/pgsql/pgsql.c: Fix build failure with PostgreSQL 6.5.x 2002-03-29 Stig Bakken <ssb@fast.no> * ext/standard/info.c: (PHP php_uname) display runtime uname rather than compile-time uname, added an optional parameter to get single fields (like uname(1)) 2002-03-29 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * tests/lang/031.phpt: Trying to be more clear. 2002-03-29 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Remote.php: * implemented "pear list-upgrades", which will show you what releases are available on the server (shows newer releases with the same state) * pear/PEAR/Command/Package.php: * always require PEAR/Common.php * pear/PEAR/Config.php: * allow "any" as a preferred_state value * pear/PEAR/Remote.php: * pass on xmlrpc faults as pear errors 2002-03-29 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * tests/lang/032.phpt: Added class method registration test. It does not test for multiple method definitions due to test script limitation. * tests/lang/031.phpt: Change title to reasonable one. 2002-03-29 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/tests/001.phpt ext/exif/tests/test2.jpg: -fix test image * ext/exif/exif.c: -fix possible problem on low memory -fix problem on failure 2002-03-29 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * main/user_streams.c: Fix ZE2 build. 2002-03-29 Stig Bakken <ssb@fast.no> * pear/PEAR/Common.php: * fix tempfile cleanup 2002-03-28 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Package.php: * per-command fold marks * pear/PEAR/Packager.php: * regenerate package.xml with file checksums * pear/package.dtd: * default dep rel attribute to 'has' * pear/PEAR/Common.php: * accept optional tmpdir arg in mkTempDir * handle changelog releases without filelist 2002-03-28 Andrei Zmievski <andrei@php.net> * NEWS: Cleanup. 2002-03-28 Joseph Tate <jtate@mi-corporation.com> * win32/php4ts.dsp: Fixed build of php4ts Release_TSDbg under Win32 * ext/crack/crack.dsp ext/crack/CREDITS: -Crack extension now available for Win32 platforms. You will need to acquire the cracklib libraries from http://www.jtatesoftware.com/cracklib/. 2002-03-28 Stig Bakken <ssb@fast.no> * pear/PEAR/Config.php: * added preferred_state config keyword * pear/PEAR/Common.php: * added phpdoc * now ready to support multiple versions of the package format * don't parse dependencies in changelog * fix libfile parsing * default maintainer roles to 'lead' * added infoFromString() method * added xmlFromInfo() method to regenerate package.xml files 2002-03-28 Yavor Shahpasov <yavo@itenasolutions.com> * pear/HTML/Select.php: Avoid warning message in toHtml() method when no default element specified 2002-03-28 Stig Bakken <ssb@fast.no> * pear/package.dtd: * added "platform" and "md5sum" attributes to <file> 2002-03-28 Derick Rethans <d.rethans@jdimedia.nl> * configure.in: - Back out broken patch * configure.in: - Backout Makefile patch, it caused problems * configure.in: - MFB for fix build for BSD: BSD_MAKEFILE and resolver functions. (Patch by Melvyn Sopacua <msopacua@idg.nl>) * configure.in: - Fix build for BSD: BSD_MAKEFILE and resolver functions. (Patch by Melvyn Sopacua <msopacua@idg.nl>) * ext/standard/string.c: - MFH for bug 16314 * ext/sysvsem/sysvsem.c: - MFB * ext/sysvsem/sysvsem.c: - Fix build on BSDI 2002-03-28 Wez Furlong <wez.php@thebrainroom.com> * ext/standard/tests/file/002.phpt: add test for file_get_contents * ext/openssl/tests/001.phpt ext/openssl/openssl.c: Add subject hash to parsed x509 data. Make the test use file_get_contents(). * main/memory_streams.c main/network.c main/php_streams.h main/streams.c main/user_streams.c ext/standard/file.c ext/standard/ftp_fopen_wrapper.c ext/standard/http_fopen_wrapper.c ext/standard/php_fopen_wrapper.c ext/zlib/zlib_fopen_wrapper.c: Phase 3 of OO wrapper cleanup * ext/mailparse/tests/004.phpt ext/mailparse/tests/005.phpt ext/mailparse/mailparse.c: make quoted-printable encoding safe for use with digital signatures. Added some tests 2002-03-27 Jani Taskinen <sniper@iki.fi> * ext/gmp/gmp.c: MFH: fixed bug: #16237 * ext/gmp/gmp.c: Fixed bug: #16237 * sapi/cli/php_cli.c: WS fix 2002-03-27 Joseph Tate <jtate@mi-corporation.com> * ext/domxml/php_domxml.c: Fixing compile warning under Win32 2002-03-27 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * sapi/cli/php_cli.c: recorrect las checkin 2002-03-27 Derick Rethans <d.rethans@jdimedia.nl> * ext/mailparse/rfc2045.c: - MFH for multiple To: lines 2002-03-27 Hartmut Holzgraefe <hartmut@six.de> * ext/standard/string.c: fix for Bug #16314 2002-03-27 Jani Taskinen <sniper@iki.fi> * .cvsignore: autoconf 2.53 uses this directory for some temporary stuff * ext/mcve/mcve_simple_test.php ext/mcve/mcve_test1.php ext/mcve/mcve_test2.php ext/mcve/tests/mcve_simple_test.php ext/mcve/tests/mcve_test1.php ext/mcve/tests/mcve_test2.php: Moved these example scripts out of tests. * ext/ming/config.m4: - Fixed bug: #16203 2002-03-27 Wez Furlong <wez.php@thebrainroom.com> * ext/mailparse/tests/003.phpt: add test case for multiple To: lines * ext/mailparse/rfc2045.c: allow headers hash to handle multiple To: lines 2002-03-27 Hartmut Holzgraefe <hartmut@six.de> * ext/mime_magic/config.m4: not enabled by default * ext/mime_magic/mime_magic.c ext/mime_magic/php_mime_magic.h: moved 'static' prototypes to prevent warnings * ext/mime_magic/mime_magic.c ext/mime_magic/php_mime_magic.h: preparing for Content-Encoding detection 2002-03-27 Sascha Schumann <sascha@schumann.cx> * acinclude.m4: Factorize a few library/libpath-related functions * ext/mcal/config.m4: Defer linking against libmcal until we have built the extension, so that extension-supplied symbols are available. Also factorize the header file checks. Reported by: Brandon Knitter URL: http://news.php.net/article.php?group=php.dev&article=81833 * ext/mailparse/libs.mk: Remove generated file 2002-03-27 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: MFH error message consistency changes 2002-03-26 Jon Parise <jon@csh.rit.edu> * ext/mime_magic/.cvsignore: Ignore generated files. 2002-03-26 Sean Bright <elixer@erols.com> * php.ini-dist: Fix typo. 2002-03-26 Hartmut Holzgraefe <hartmut@six.de> * ext/mime_magic/mime_magic.c ext/mime_magic/php_mime_magic.h: build conflicts fixed 2002-03-26 Sander Roobol <phy@wanadoo.nl> * ext/standard/tests/array/002.phpt ext/standard/tests/array/003.phpt ext/standard/tests/array/004.phpt ext/standard/tests/array/array_data.txt ext/standard/tests/array/data.inc ext/standard/tests/array/001.phpt: MFH * ext/standard/tests/array/001.phpt ext/standard/tests/array/002.phpt ext/standard/tests/array/003.phpt ext/standard/tests/array/004.phpt ext/standard/tests/array/array_data.txt ext/standard/tests/array/data.inc: Fixed the array-tests. Broke the test up into various smaller tests. Reduced the test data because it was unmanageable. 2002-03-26 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Command/Config.php pear/PEAR/Frontend/CLI.php: E_ALL fixes * pear/PEAR/Registry.php: _lock() now returns PEAR Error or true for consistency 2002-03-26 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * sapi/cli/php_cli.c: allow other modes to work with -- correct * sapi/cli/php_cli.c: fix behaviour on -- 2002-03-26 Sascha Schumann <sascha@schumann.cx> * ext/standard/config.m4: outcomment default linking against pam due to no feedback regarding its purpose * ext/standard/url_scanner_ex.c ext/standard/url_scanner_ex.re: If an argument (<tag val=argument..) was not quoted, leave it that way. 2002-03-26 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/string.c: - MFH for bug #11244 2002-03-26 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: Remove warnings 2002-03-26 Derick Rethans <d.rethans@jdimedia.nl> * ext/openssl/openssl.c: - No asserts in the branch 2002-03-26 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: Changed error messages to be consistent with other error messages 2002-03-26 Derick Rethans <d.rethans@jdimedia.nl> * ext/dbx/dbx.c: - MFB * ext/dbx/dbx.c: - Fix comments 2002-03-26 Markus Fischer <mfischer@guru.josefine.at> * ext/standard/string.c: - Fix bug 11244 (patch by "Tal Peer" <hazgul99@hotmail.com>). 2002-03-26 Derick Rethans <d.rethans@jdimedia.nl> * ext/openssl/tests/.cvsignore ext/openssl/tests/001.phpt ext/openssl/tests/skipif.inc ext/openssl/openssl.c: - MFH for passphrase bug 2002-03-26 Jani Taskinen <sniper@iki.fi> * ext/xmlrpc/libxmlrpc/encodings.c: MFH the use of correct header file -fix * ext/xmlrpc/config.m4 ext/xslt/config.m4: MFH fixes for the iconv stuff * ext/xmlrpc/libxmlrpc/encodings.c: - Use correct header file. * acinclude.m4: MFB. (I must have been sleep-walking..) 2002-03-26 Wez Furlong <wez.php@thebrainroom.com> * ext/openssl/tests/.cvsignore ext/openssl/tests/001.phpt ext/openssl/tests/skipif.inc ext/openssl/openssl.c: Fix regular openssl_pkey_get_private($content, $phrase) syntax and add test case. This stuff should be merged into the 4.2 branch. 2002-03-25 Jani Taskinen <sniper@iki.fi> * ext/xmlrpc/php_config.h.in: Why was this here?? * ext/standard/dl.c: MFH dl() error message fix 2002-03-25 Sterling Hughes <sterling@bumblebury.com> * ext/xslt/sablot.c: Whitespace fixes 2002-03-25 Edin Kadribasic <edink@proventum.net> * sapi/cli/EXPERIMENTAL sapi/cli/README sapi/cli/config.m4 sapi/cli/php_cli.c: Hidden the existance of CLI SAPI by: - removing the NEWS entry - removing cli from make install chain - marking it EXPERIMENTAL - reverting installed name of cgi from php-cgi to php Marged max_execution_time override from head. * sapi/cli/EXPERIMENTAL: New file. * sapi/cgi/config.m4 NEWS: Hidden the existance of CLI SAPI by: - removing the NEWS entry - removing cli from make install chain - marking it EXPERIMENTAL - reverting installed name of cgi from php-cgi to php Marged max_execution_time override from head. 2002-03-25 Georg Richter <georg.richter@phpev.de> * ext/mysql/php_mysql.c: fixed prototype for mysql_ping 2002-03-25 Sterling Hughes <sterling@bumblebury.com> * ext/mysql/php_mysql.c: more zend_parse_parameters fixup * ext/mysql/php_mysql.c: Fix-up the last fix a bit Clean up mysql_list_processes 2002-03-25 Hartmut Holzgraefe <hartmut@six.de> * ext/exif/exif.c: pproto fix 2002-03-25 Sterling Hughes <sterling@bumblebury.com> * ext/mysql/php_mysql.c: clean up mysql_real_escape_string() a bit 2002-03-25 Hartmut Holzgraefe <hartmut@six.de> * ext/mime_magic/TODO: initial checkin 2002-03-24 Zak Greant <zak@mysql.com> * ext/mysql/php_mysql.c: Added mysql_table_name() alias for mysql_tablename() Improved logic of parameter parsing code for mysql_ping - made test for no arguments more explicit - combined to if blocks into one if/else if block 2002-03-24 Jan Lehnardt <jan@dasmoped.net> * tests/func/006.phpt: - MFH * tests/func/006.phpt: - added basic output buffering tests 2002-03-24 Hartmut Holzgraefe <hartmut@six.de> * ext/mime_magic/CREDITS ext/mime_magic/EXPERIMENTAL ext/mime_magic/config.m4 ext/mime_magic/mime_magic.c ext/mime_magic/php_mime_magic.h: 1st implementation of magic-file based mime_content_type(string filename) 2002-03-24 Alex Waugh <alex@alexwaugh.com> * sapi/webjames/config.m4: MFH * sapi/webjames/config.m4: Backslashes caused the build to fail with autoconf 2.52 2002-03-24 Sterling Hughes <sterling@bumblebury.com> * ext/dio/dio.c: fix freebsd compile 2002-03-24 Sander Roobol <phy@wanadoo.nl> * ext/mysql/php_mysql.c: Fixed tiny mistake in proto (tnx to Egon for spotting it). 2002-03-24 Wez Furlong <wez.php@thebrainroom.com> * main/streams.c main/user_streams.c main/php_streams.h ext/zlib/zlib_fopen_wrapper.c ext/zlib/zlib.c ext/zlib/php_zlib.h ext/standard/php_fopen_wrappers.h ext/standard/php_fopen_wrapper.c ext/standard/ftp_fopen_wrapper.c ext/standard/http_fopen_wrapper.c ext/bz2/php_bz2.h ext/bz2/bz2.c: Phase 1 of wrapper OO cleanup. 2002-03-24 Sander Roobol <phy@wanadoo.nl> * ext/mysql/php_mysql.c: Fix typo in proto. 2002-03-24 Derick Rethans <d.rethans@jdimedia.nl> * ext/mysql/php_mysql.c: - Fix proto 2002-03-24 Georg Richter <georg.richter@phpev.de> * ext/mysql/php_mysql.c: changed prototype for mysql_real_escape_string 2002-03-24 Mark L. Woodward <mlwmohawk@mohawksoft.com> * ext/msession/msession.c: Added support for session manager ID creation, works with patch submitted earlier 2002-03-24 Zak Greant <zak@mysql.com> * ext/mysql/php_mysql.c ext/mysql/php_mysql.h: Added mysql_ping() function. 2002-03-24 Georg Richter <georg.richter@phpev.de> * ext/mysql/php_mysql.c ext/mysql/php_mysql.h: a) ws fixed b) changed mysql_list_processes, mysql_stat (zend_parse_parameters) c) New functions: 1) mysql_real_escape_string this function is similar to mysql_escape_string (deprecated). it needs a mysql-connection to escape a string according to the current character set 2) mysql_character_set_name returns the current character set for the connection 3) mysql_thread_id return the pid for the current connection. This function is usefull when using mysql_list_processes 2002-03-24 Edin Kadribasic <edink@proventum.net> * sapi/cli/README sapi/cli/php_cli.c: Override max_execution_time, setting it to unlimited. 2002-03-24 Wez Furlong <wez.php@thebrainroom.com> * NEWS: News updates. 2002-03-24 Jan Lehnardt <jan@dasmoped.net> * ext/pspell/tests/01pspell_basic.phpt: - finally MFH. sorry for the inconveniance, especially Derick ;) * ext/pspell/tests/01pspell_basic.phpt ext/pspell/.cvsignore: - initial checkin of basic testcases for pspell 2002-03-24 Zak Greant <zak@mysql.com> * ext/mysql/php_mysql.c ext/mysql/php_mysql.h: (PHP mysql_list_processes) Returns a pointer to a result set containing information on the processes running in the MySQL server. (PHP mysql_stat) Returns a string containing information on the status of the MySQL server. 2002-03-24 Derick Rethans <d.rethans@jdimedia.nl> * ext/curl/curl.c: - MFH for bug #16232 (Patch by Alan Knowles <alan@akbkhome.com>) * ext/curl/curl.c: - Fix for bug #16232 (Patch by Alan Knowles <alan@akbkhome.com>) 2002-03-24 Stig Bakken <ssb@fast.no> * pear/PEAR/Registry.php: * move logic to _assertStateDir 2002-03-23 Sterling Hughes <sterling@bumblebury.com> * ext/dio/dio.c: revert out accidental code 2002-03-23 Edin Kadribasic <edink@proventum.net> * sapi/cli/README sapi/cli/TODO: Documented -r and added TODO 2002-03-23 Sterling Hughes <sterling@bumblebury.com> * ext/dio/dio.c ext/mcrypt/EXPERIMENTAL ext/xslt/EXPERIMENTAL: remove experimental status * ext/mcrypt/EXPERIMENTAL: the point can be made both ways :) * ext/xslt/sablot.c: make key identifiers case sensitive 2002-03-23 Derick Rethans <d.rethans@jdimedia.nl> * ext/xslt/EXPERIMENTAL: - Fix experimental notice 2002-03-23 Jan Lehnardt <jan@dasmoped.net> * ext/xml/tests/007.phpt: - MFH * ext/xml/tests/007.phpt: - fix "xml_parse_into_struct/umlauts in tags" testcase. It never really - worked 2002-03-23 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/basic_functions.h ext/standard/basic_functions.c: - Remove read_uploaded_file 2002-03-23 Edin Kadribasic <edink@proventum.net> * ext/bz2/tests/with_strings.phpt: MFH * ext/ncurses/tests/.cvsignore ext/xslt/tests/.cvsignore ext/mcve/tests/.cvsignore ext/mailparse/tests/.cvsignore ext/mbstring/tests/.cvsignore ext/dbplus/tests/.cvsignore ext/dio/tests/.cvsignore: .cvsignore in tests dirs cleanup 2002-03-23 jim winstead <jimw@apache.org> * NEWS: MFH * NEWS: remove inappropriate article * NEWS: MFH. * NEWS: rewrite history a bit. there is no is_enum(), it was com_isenum(). 2002-03-23 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Registry.php: The System class was modified to always return true or false instead of PEAR Errors. Changed then assertStateDir() to check for false. * pear/PEAR/Command/Package.php: Show maintainers name in package-info and show more human friendly column table names 2002-03-23 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * main/php_memory_streams.h main/streams.c: -defined php_stream_temp_new() for standard temp streams 2002-03-23 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Command/Package.php: Yet another break; forgotten * pear/PEAR/Command/Package.php: Oops, forgot the break; 2002-03-23 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * NEWS: -no german in NEWS 2002-03-23 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Command/Package.php: - Show the real dir where files would be installed (using role & config) - Introduce column wrapping 2002-03-23 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * NEWS: -removed -x -no german in NEWS * sapi/cli/php_cli.c: -removed -x -error handling for illegal switch combinations -corrected ws for one case block 2002-03-23 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Frontend/CLI.php: - Use getenv('TERM') instead of $_ENV (empty for me in 4.1.1) - Added 'linux' as bold capable list of term types - Pass the col by reference for making the wrap take effect in tableRow * pear/PEAR/Command/Install.php: fix parse error 2002-03-23 Hartmut Holzgraefe <hartmut@six.de> * ext/standard/dl.c: dl is now aware of modules compiled for php <4.1.0 which have a slightly different module_entry structure 2002-03-23 Edin Kadribasic <edink@proventum.net> * main/config.w32.h win32/crypt_win32.c win32/crypt_win32.h win32/php4dllts.dsp: MFH (crypt on win32) 2002-03-23 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/basic_functions.c ext/standard/basic_functions.h: - Added read_uploaded_file (patch by Andrew Sitnikov <sitnikov@infonet.ee>) 2002-03-23 Sebastian Bergmann <sb@sebastian-bergmann.de> * sapi/cli/php_cli.c: Nuke unused variables. 2002-03-23 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Package.php: * added package-list and package-info commands (for .tgz files) * pear/PEAR/Command/Install.php: * use switch/case for what it's worth :-) * pear/PEAR/Registry.php: * _lock() calls _assertStateDir() * pear/PEAR/Common.php: * support having a toplevel package.xml in tgz files * pear/PEAR/Frontend/CLI.php: * wordwrapping and multiline table cell support 2002-03-23 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbstring.c: fixed some errors in regression tests. * ext/mbstring/php_mbregex.c: changed license from GPL2 to PHP License. * ext/mbstring/mbregex.c: fixed compile warnings. 2002-03-23 James Cox <james@wherewithal.com> * pear/PEAR/Installer.php: "reverting" to 1.39 as per Tomas Cox's wishes. 2002-03-23 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * tests/lang/031.phpt: Fix test :) 2002-03-23 Hartmut Holzgraefe <hartmut@six.de> * ext/curl/curl.c: proto fix 2002-03-23 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * tests/lang/031.phpt: Added while(list() = each()) test 2002-03-23 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbregex.c ext/mbstring/mbstring.c: fixed some compilation warning. * ext/mbstring/tests/003.inc: fixed POST/GET argument handling. 2002-03-22 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * sapi/cli/php_cli.c: -Add -x 2002-03-22 Derick Rethans <d.rethans@jdimedia.nl> * configure.in: - Oops... I didn't mean to commit this * configure.in: MFH 2002-03-22 Jani Taskinen <sniper@iki.fi> * ext/xmlrpc/config.m4 ext/xslt/config.m4: fix the fix * ext/xslt/config.m4 ext/xmlrpc/config.m4: - Fixed minor inconvenience with iconv detection when iconv is found in libc * configure.in: MFH 2002-03-22 Stig Bakken <ssb@fast.no> * pear/PEAR/Frontend/CLI.php: * don't start table cells with a space in borderless tables * pear/PEAR/Command/Registry.php: * typo fix * pear/PEAR/Command/Config.php: * use PEAR_Frontend tables in config-show command 2002-03-22 Derick Rethans <d.rethans@jdimedia.nl> * ext/informix/ifx.ec: - oops :) * ext/informix/ifx.ec: MFH for bug 14664 * ext/informix/ifx.ec: - Fix for bug #14644 (patch by samuel_carriere@hotmail.com) 2002-03-22 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Registry.php: * now using PEAR_Frontend tables * pear/PEAR/Frontend/CLI.php: * ncurses note * pear/PEAR/Frontend/CLI.php: * table support working * added bold support for xterm/vt220/vt100 terminals * pear/scripts/pear.in: * setUIType -> setFrontendType 2002-03-22 Hartmut Holzgraefe <hartmut@six.de> * configure.in: manual is fixed to have static anchors generated from ids for the faq part 2002-03-22 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Auth.php: * rename class/methods * pear/Makefile.frag: * temporarily added: nuke old files/dirs 2002-03-22 Sascha Schumann <sascha@schumann.cx> * build/genif.sh: de-overquotation * acinclude.m4: A cli-specific extension should be named once only, not twice. Noticed by: Derick 2002-03-22 Stig Bakken <ssb@fast.no> * pear/Makefile.frag: * one last CommandUI -> Frontend change 2002-03-22 Derick Rethans <d.rethans@jdimedia.nl> * pear/XML/tests/003.phpt pear/DB/tests/db_error2.phpt pear/XML/tests/002.phpt pear/DB/tests/db_error.phpt: - Fix tests 2002-03-22 Stig Bakken <ssb@fast.no> * pear/PEAR/Frontend/CLI.php pear/PEAR/Command/Auth.php pear/PEAR/Command/Common.php pear/PEAR/Command/Install.php pear/PEAR/Command/List.php pear/PEAR/Command/Login.php pear/PEAR/Command/Package.php pear/PEAR/Command/Registry.php pear/PEAR/Remote.php pear/PEAR/Command.php pear/PEAR/Installer.php pear/Makefile.frag: * rename PEAR_CommandUI* to PEAR_Frontend* * rename PEAR/Command/Login.php to PEAR/Command/Auth.php * replace PEAR/Command/Info.php with PEAR/Command/Registry.php (will contain more commands related to the local registry) * started working on Frontend table output 2002-03-22 Derick Rethans <d.rethans@jdimedia.nl> * ext/dbx/dbx.c: MFH: Fix phpinfo() output * tests/strings/002.phpt: - Add test for sprintf()'s zero'th argument * ext/standard/formatted_print.c: - Fix handling of zero'th argument for sprintf()'s argument swapping code (Patch by Morten Poulsen <morten@afdelingp.dk>) * NEWS: - Add note about changed fopen wrappers 2002-03-22 Stig Bakken <ssb@fast.no> * pear/PEAR/Registry.php: * No point in creating the lock file directory if it does not exist (so many other things would fail anyway). Throw an error instead. 2002-03-22 Jani Taskinen <sniper@iki.fi> * ext/standard/aggregation.c: MFH fix for bug #16182 2002-03-22 Hartmut Holzgraefe <hartmut@six.de> * ext/standard/basic_functions.c ext/xslt/sablot.c main/php.h ext/pdf/pdf.c ext/readline/readline.c: getting rid of the warn_not_available alias 2002-03-21 Markus Fischer <mfischer@guru.josefine.at> * configure.in: - Fix #16206. * main/streams.c ext/recode/recode.c ext/pgsql/pgsql.c ext/pdf/pdf.c ext/gd/gd.c ext/bz2/bz2.c ext/curl/curl.c: *** empty log message *** 2002-03-21 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Command/Install.php pear/PEAR/Installer.php pear/PEAR/Registry.php pear/scripts/pear.in: - Make the rellocation of packages work as expected if the target dir doesn't exist - The "install -f" now replaces the info in the registry 2002-03-21 Markus Fischer <mfischer@guru.josefine.at> * ext/standard/file.c: - Use proper macros for php_stream_cast() return values (fixes #16211). 2002-03-21 Rasmus Lerdorf <rasmus@php.net> * ext/standard/http_fopen_wrapper.c: Just in case we do a 4.1.3, MFH the fix for #15667 * ext/standard/http_fopen_wrapper.c: Fix for bug #15667 2002-03-21 Derick Rethans <d.rethans@jdimedia.nl> * ext/pgsql/pgsql.c: - Fix PGSql Compile 2002-03-21 Jani Taskinen <sniper@iki.fi> * configure.in main/php_version.h: The changes to build system and the streams stuff alone are big enough reason to make next release 4.3.0 2002-03-21 Tomas V.V.Cox <cox@idecnet.com> * pear/scripts/pear.in: - Added command level options - Fix error handling for Getopt (it doesn't use raiseError) * pear/PEAR/Command.php pear/PEAR/Command/Common.php pear/PEAR/Command/Config.php pear/PEAR/Command/Install.php pear/PEAR/Command/List.php pear/PEAR/Command/Login.php pear/PEAR/Command/Package.php pear/PEAR/Config.php pear/PEAR/Remote.php: - Implement command level options - Removed call pass by reference - Readd $options to command::run() params 2002-03-21 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * main/memory_streams.c: -missing efree in close 2002-03-21 Jani Taskinen <sniper@iki.fi> * ext/iconv/iconv.c acinclude.m4: - MFH iconv fixes. * ext/xmlrpc/libxmlrpc/libs.mk: This file is generated and not supposed to be in CVS * ext/xmlrpc/libxmlrpc/libs.mk: This file is generated, not supposed to be here. * ext/pgsql/tests/.cvsignore: missing file * acinclude.m4 ext/iconv/iconv.c: - Fixed bug #16165 again. We check libc for iconv functions only if no path is given for --with-iconv. 2002-03-21 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: -removed old streams test code 2002-03-21 Jani Taskinen <sniper@iki.fi> * ext/exif/tests/.cvsignore: This file was missing. 2002-03-21 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: -fixed memory handling 2002-03-21 Hartmut Holzgraefe <hartmut@six.de> * ext/standard/file.h ext/standard/php_dir.h ext/standard/basic_functions.c ext/standard/config.m4 ext/standard/dir.c ext/standard/file.c: added fnmatch() and glob() functions could someone please check if i got the virtual dir stuff right? 2002-03-21 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Common.php: fix a problem handling nested directories 2002-03-21 Sascha Schumann <sascha@schumann.cx> * configure.in: Support systems without NIS functions, but with non-working libnsl 2002-03-21 Wez Furlong <wez.php@thebrainroom.com> * main/streams.c ext/standard/php_fopen_wrapper.c ext/zlib/zlib_fopen_wrapper.c ext/bz2/bz2.c: Require that wrappers use <protocol>://<path> to avoid ambiguities when filenames have ':' characters. This slightly breaks BC with the old style zlib: wrapper. 2002-03-21 Daniela Mariaschi <mariaschi@libero.it> * ext/interbase/interbase.c: fixed numeric number incorrectly rendered 2002-03-21 Sterling Hughes <sterling@bumblebury.com> * ext/bz2/bz2.c: NUL terminate * ext/bz2/CREDITS: its Bzip2 not bz2 :) * ext/bz2/bz2.c: 1) ws fixes 2) un-NUL terminate strings... Binary Data should not be NUL terminated, PHP *is* binary safe... 2002-03-21 Hartmut Holzgraefe <hartmut@six.de> * ext/xml/xml.c: proto fixes 2002-03-21 Jani Taskinen <sniper@iki.fi> * ext/xslt/config.m4: Minor detail fixed. 2002-03-21 Andrei Zmievski <andrei@ispi.net> * ext/standard/aggregation.c ext/standard/basic_functions.c: Fix compilation when PCRE is disabled. 2002-03-21 Ludovico Magnocavallo <ludo@sumatrasolutions.com> * ext/interbase/tests/001.phpt ext/interbase/tests/002.phpt ext/interbase/tests/003.phpt ext/interbase/tests/004.phpt ext/interbase/tests/005.phpt ext/interbase/tests/006.phpt: synched with HEAD, tests 1-2-3-6 pass, 5 fails but ok, 4 needs work 2002-03-21 Sander Roobol <phy@wanadoo.nl> * ext/standard/tests/array/count_recursive.phpt ext/standard/tests/math/pow.phpt: MFH: more tests for pow() and count() * ext/standard/tests/math/pow.phpt ext/standard/tests/array/count_recursive.phpt: Added tests for pow()'ing with broken exponents and some additional test for count()'ing arrays. 2002-03-21 Wez Furlong <wez.php@thebrainroom.com> * NEWS: NEWS updates 2002-03-21 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/tests/003.inc: fixed POST/GET input processing. 2002-03-21 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c main/memory_streams.c: * main/memory_streams.c: -fix missing efree 2002-03-21 Tomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Command/List.php: readd the "list" command * pear/PEAR/Command/Config.php pear/PEAR/Command/Login.php: Adapt this commands to the new config store mechanism and command params * pear/scripts/pear.in: Pass config to command factory and pass the correct command params * pear/PEAR/Command.php pear/PEAR/Command/Common.php pear/PEAR/Command/Install.php pear/PEAR/Command/Package.php: - The config object is stored by the factory method - Make install/unistall/package work again (didn't work for me) * pear/PEAR/Packager.php: Clean up unused stuff 2002-03-21 Sebastian Bergmann <sb@sebastian-bergmann.de> * php.ini-dist php.ini-recommended: MFH: ext/overload is a 'built-in' extension on Win32. * php.ini-dist php.ini-recommended: ext/overload is a 'built-in' extension on Win32. 2002-03-21 Wez Furlong <wez.php@thebrainroom.com> * ext/bz2/bz2.c: Added fold markers. * ext/bz2/bz2.c ext/bz2/php_bz2.h ext/zlib/zlib_fopen_wrapper.c: Implement bz2 streams and bz2: wrapper. You can now do this: copy("zlib:src.gz", "bz2:dest.bz2"); As with zlib, most of the functions with counterparts in file.c are now aliases to those functions. * ext/zlib/zlib.c: really nuke it... * ext/standard/file.c ext/zlib/php_zlib.h ext/zlib/zlib.c ext/zlib/zlib_fopen_wrapper.c main/php_streams.h main/streams.c: Convert the gzfile related functions into aliases for their equivalents in ext/standard/file.c, so a gzopen()ed file pointer can be used in fread, fseek etc. Improved behaviour of zlib stream. Moved passthru code into streams.c Nuked gzgetss_state as no longer needed. 2002-03-21 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: Show function name in error message. 2002-03-20 Boian Bonev <boian@bonev.com> * ext/vpopmail/config.m4: MFH vpopmail 5.2 version compatibility fix * ext/vpopmail/php_vpopmail.c: ws fix * ext/vpopmail/config.m4: fix version checking - now handle 1.2.3 and 1.2 as well 2002-03-20 Harald Radi <h.radi@nme.at> * main/memory_streams.c: fixed signed/unsigned comparison warnings 2002-03-20 Jani Taskinen <sniper@iki.fi> * acinclude.m4: MFH 2002-03-20 Derick Rethans <d.rethans@jdimedia.nl> * makedist: MFH makedist * makedist: - Fix makedist 2002-03-20 Sander Roobol <phy@wanadoo.nl> * ext/dbx/dbx.c: Some PHP-info layout fixes (\n will automatically be converted into <br />) and a comment-related fix. 2002-03-20 Boian Bonev <boian@bonev.com> * ext/vpopmail/config.m4: fix a missing [ 2002-03-20 Stefan Esser <s.esser@e-matters.de> * ext/filepro/filepro.c: MFH: filepro fixes 2002-03-20 Jani Taskinen <sniper@iki.fi> * acinclude.m4: - Should work better now.. 2002-03-20 Derick Rethans <d.rethans@jdimedia.nl> * ext/vpopmail/config.m4 acinclude.m4: - MFH iconv fix - Configure Fix for vpopmail 2002-03-20 Stefan Esser <s.esser@e-matters.de> * ext/standard/html.c: MFH of bufferoverflow fix 2002-03-20 Wez Furlong <wez.php@thebrainroom.com> * ext/zlib/zlib.c main/php_streams.h ext/standard/file.h ext/standard/php_string.h ext/standard/string.c ext/standard/file.c: Make state parameter of php_strip_tags passed by reference. Move state tracking to stream structure. * main/php_streams.h main/streams.c main/user_streams.c ext/zlib/zlib.c ext/pgsql/pgsql.c ext/standard/exec.c ext/standard/file.c ext/standard/fsock.c ext/standard/image.c ext/exif/exif.c: Streams are all tracked as resources now. Add some logic that will help track down leaks when debug is enabled. * ext/zlib/zlib.c: Add parameter here too... 2002-03-20 Sascha Schumann <sascha@schumann.cx> * Makefile.global acinclude.m4 ext/iconv/iconv.c ext/iconv/php_iconv.h: Expand the variables in PHP_EXPAND_BUILD_VARS. Make HAVE_ICONV/HAVE_LIBICONV available through the more fine-grained approach using a single include file per directive. This will significantly reduce the price of full dependencies for developers, because basically each file today includes php.h which includes php_config.h. If PHP_ATOM_INC is defined, these include files can be used. For all PHP_DEFINEs, empty files are created upon configure start. 2002-03-20 Wez Furlong <wez.php@thebrainroom.com> * ext/zlib/php_zlib.h ext/zlib/zlib_fopen_wrapper.c: add forgotten parameter 2002-03-20 Sascha Schumann <sascha@schumann.cx> * ext/mysql/config.m4: Fix building mysql client library Run client lib specific checks only when clientlib is used Remove second invocation of MYSQL_SOCK * acinclude.m4: Avoid duplicate tests and make third parameter truly optional. 2002-03-20 Jani Taskinen <sniper@iki.fi> * ext/mysql/config.m4: - Fixed (hope so :) like Sascha said. 2002-03-20 Sascha Schumann <sascha@schumann.cx> * acinclude.m4: Fix and tweak iconv macro * acinclude.m4: Don't quote too much. Now autoconf-2.13 is happy again. * acinclude.m4: Remove autoconf-2.5x specific m4_default macro. It is pointless here, because we don't need any "void" statement. There already is a statement and all it will do in the worst case is generate an empty line 2002-03-20 Stefan Esser <s.esser@e-matters.de> * main/safe_mode.c: MFH of safe_mode.c text fix 2002-03-20 Derick Rethans <d.rethans@jdimedia.nl> * ext/vpopmail/php_vpopmail.c: MFH Sascha's fix 2002-03-20 Sascha Schumann <sascha@schumann.cx> * ext/vpopmail/php_vpopmail.c: There should not be any trailing data on an #endif line * README.UNIX-BUILD-SYSTEM: add info about build system macros 2002-03-20 Markus Fischer <mfischer@guru.josefine.at> * ext/standard/metaphone.c: - MFH fix for #16176. * ext/standard/metaphone.c: - Fix for #16176. * ext/vpopmail/config.m4 ext/vpopmail/php_vpopmail.c: - MFH fix for #16120 (this also MFHs the proto fix by Sebastion which I hope is ok). 2002-03-20 Jon Parise <jon@csh.rit.edu> * acinclude.m4: This completely fixes the iconv library detection under FreeBSD (the previous fix was incomplete). We also set HAVE_ICONV and HAVE_LIBICONV based on the library that was detected. 2002-03-20 Jani Taskinen <sniper@iki.fi> * tests/quicktester.inc ext/bz2/tests/with_strings.phpt: - Fixed the bz2 tests. (and changed the usage comment to be correct) * ext/gd/config.m4: - This is not needed here * ext/openssl/config.m4 pear/pear.m4 acinclude.m4 configure.in: - Make it possible to build ext/openssl as shared extension * ext/mysql/config.m4: - Fixed bug: #14147 (partial MFH, the uncompress issue) * ext/mysql/php_mysql.c ext/mysql/config.m4: - Fixed bug: #16139 (compile failure with Mysql 4.0.1) - Some tests were only run when compiling with the bundled libs. (caused some compile warnings with external mysql libs) - Another try to fix the zlib issue..(uncompress) * ext/fdf/config.m4 ext/fdf/php_fdf.h: MFH * ext/fdf/config.m4 ext/fdf/php_fdf.h: - Fix this without breaking BC 2002-03-19 Wez Furlong <wez.php@thebrainroom.com> * main/main.c main/memory_streams.c main/php_streams.h main/streams.c: Improve behaviour of the stream casting operation. Improve interaction with fopencookie. 2002-03-19 Harald Radi <h.radi@nme.at> * ext/rpc/tests/test1.php ext/rpc/com/com.c ext/rpc/handler.h ext/rpc/rpc.c ext/rpc/rpc.h: pass function signature in zend_parse_parameters style lookup cache works now per signature (not only method name) reviewed resource management 2002-03-19 Frank M. Kromann <frank@frontbase.com> * ext/mssql/php_mssql.c: Minor change to allocated lengths for dates 2002-03-19 Jani Taskinen <sniper@iki.fi> * .cvsignore: missing entry 2002-03-19 Markus Fischer <mfischer@guru.josefine.at> * ext/vpopmail/php_vpopmail.c ext/vpopmail/config.m4: - Support vpopmail 5.2 (fixes #16120). 2002-03-19 Jani Taskinen <sniper@iki.fi> * acinclude.m4: - MFH iconv fix * acinclude.m4: - Fix the iconv detection when the functions are prefixed with lib. (e.g. in freebsd) 2002-03-19 Frank M. Kromann <frank@frontbase.com> * ext/fbsql/php_fbsql.c: Oops.. This should make I64 work on WIn32 as well * ext/fbsql/php_fbsql.c: Changing the LongInteger to return 64 bit integers as string values with all 64 bit 2002-03-19 Markus Fischer <mfischer@guru.josefine.at> * ext/ming/ming.c: - Fix bug spotted by Lukas Schroeder <lukas@edeal.de>. 2002-03-19 Stig Bakken <ssb@fast.no> * pear/Makefile.frag: * install PEAR_Command_Package * pear/PEAR/Command/Package.php: * re-add "package" command * pear/PEAR/Command/Login.php: * "pear login" finally works * pear/PEAR/Remote.php: * fix http auth bug * pear/PEAR/CommandUI/CLI.php: * add optional default parameter to userDialog method 2002-03-19 Zeev Suraski <zeev@zend.com> * main/memory_streams.c: Possibly fix a crash - Marcus, please take a look at it... * sapi/isapi/php4isapi.c win32/php4dllts.dsp main/memory_streams.c: - Fix whitespace (guys, please try to stick with the php4 tree style as far as indentation/newlines go, and also as far as using {} even on if's that have single statements) - Fix Windows build 2002-03-19 Harald Radi <h.radi@nme.at> * ext/rpc/com/com.c ext/rpc/tests/test1.php ext/rpc/rpc.h ext/rpc/handler.h ext/rpc/rpc.c: fixed memleaks added method lookup caching pass function signature to hash function callback 2002-03-19 Frank M. Kromann <frank@frontbase.com> * ext/fbsql/php_fbsql.c: Adding support for TinyInteger and LongInteger database types 2002-03-19 Wez Furlong <wez.php@thebrainroom.com> * main/php_streams.h main/streams.c main/php_network.h main/main.c main/network.c ext/standard/file.c ext/standard/file.h: fix for bug #16168 2002-03-19 Harald Radi <h.radi@nme.at> * win32/php4dllts.dsp: MFH 2002-03-19 Wez Furlong <wez.php@thebrainroom.com> * main/user_streams.c: make buffer length warnings more verbose 2002-03-19 Ludovico Magnocavallo <ludo@sumatrasolutions.com> * ext/interbase/tests/001.phpt ext/interbase/tests/002.phpt ext/interbase/tests/003.phpt ext/interbase/tests/004.phpt ext/interbase/tests/005.phpt ext/interbase/tests/006.phpt: Fixed include of interbase.inc Fixed test database path Changed v_date field in test table definition to timestamp type Reduced maximum length of double precision type to 18 Tests 001 002 003 006 pass Test 004 (BLOB test) still needs to be fixed Test 005 (Transaction) gives the right output but issues a warning 2002-03-19 Daniela Mariaschi <mariaschi@libero.it> * ext/interbase/interbase.c: fixed floating number incorrectly rendered (as mentioned by giancarlo@niccolai.ws in BUG #14755) 2002-03-19 Wez Furlong <wez.php@thebrainroom.com> * main/php_streams.h main/streams.c main/user_streams.c ext/standard/basic_functions.c ext/standard/file.h: register some constants for user streams 2002-03-19 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de> * ext/fdf/php_fdf.h: - the fdf include file shipped with the FDF toolkit is spelled in lower case (at least in version 5.0) 2002-03-19 Wez Furlong <wez.php@thebrainroom.com> * main/user_streams.c: correct copy/paste typo * main/user_streams.c: avoid possible buffer overruns when write returns a value larger than the buffer * main/streams.c main/user_streams.c: Make file_get_wrapper_data return the underlying PHP object for user-space streams. * ext/standard/file.c ext/standard/file.h ext/standard/basic_functions.c: s/fgetwrapperdata/file_get_wrapper_data/ 2002-03-19 Sascha Schumann <sascha@schumann.cx> * ext/standard/php_smart_str.h: Remove trailing ; The macro can now safely be used in constructs such as if (..) foo() else bar(); * README.SUBMITTING_PATCH: some typo fixing, and following The Little Book, omitting needless words * Makefile.global: Somewhere along the build changes, -export-dynamic was lost. Readd it. Noticed by: Stanislav Malyshev * ext/standard/url_scanner_ex.c: touch file. Please commit first the .re file and afterwards the .c source. Otherwise, timestamps will be broken. 2002-03-19 Thies C. Arntzen <thies@thieso.net> * ext/standard/php_smart_str.h ext/standard/var.c: fix #12793 - serialize will now spit a notice if the return value of __sleep is bogus. 2002-03-19 Jani Taskinen <sniper@iki.fi> * sapi/cli/.cvsignore: added missing .libs entry * ext/iconv/Makefile.in: - Not needed anymore. 2002-03-19 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * CODING_STANDARDS README.SUBMITTING_PATCH: Added README.SUBMITTING_PATCH file. Please fix/add/change. Added more description for use of assert(). 2002-03-19 Sebastian Bergmann <sb@sebastian-bergmann.de> * win32/php4dll.dsp win32/php4dllts.dsp: Add streams.c/user_streams.c to MSVC projects. 2002-03-19 Wez Furlong <wez.php@thebrainroom.com> * ext/standard/basic_functions.c ext/standard/file.h ext/standard/ftp_fopen_wrapper.c ext/standard/http_fopen_wrapper.c ext/standard/php_fopen_wrapper.c ext/standard/php_fopen_wrappers.h ext/zlib/zlib.c main/php_streams.h main/streams.c main/user_streams.c: Implement user-space streams. There's probably room for improvement, docs will following some time this week. * configure.in: add sys/poll.h header detection * main/network.c: make feof more useful on network streams 2002-03-19 Harald Radi <h.radi@nme.at> * ext/rpc/com/com.c ext/rpc/handler.h ext/rpc/rpc.c ext/rpc/rpc.dsp ext/rpc/rpc.h ext/rpc/tests/test1.php: added lookup caching and now make use of the new thread safe hashtables (not in cvs right now) 2002-03-19 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * run-tests.php: WS fix 2002-03-19 Jon Parise <jon@csh.rit.edu> * configure.in: Give one last reference to pear-get. 2002-03-19 Stig Bakken <ssb@fast.no> * pear/Makefile.frag: * pear-get gone * ext/xmlrpc/config.m4 ext/xslt/config.m4 ext/iconv/config.m4 acinclude.m4: MFH: Jani's fix to my iconv fix 2002-03-18 Vlad Krupin <phpdevel@echospace.com> * ext/ftp/ftp.c: MFH (rev. 1.49) * ext/ftp/ftp.c: Fix ftp_size() returning bogus results. 2002-03-18 Sebastian Bergmann <sb@sebastian-bergmann.de> * win32/crypt_win32.c win32/crypt_win32.h: Fugbix typo. 2002-03-18 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/fsock.c: MFH socket fix * ext/standard/fsock.c: - MFH for bugfix for bug #10001 2002-03-18 Frank M. Kromann <frank@frontbase.com> * win32/crypt_win32.c win32/crypt_win32.h: Adding note about permission to distribute this code under the PHP license * main/config.w32.h: Adding HAVE_SHUTDOWN on win32. Needed for the sockets extension to compile 2002-03-18 Markus Fischer <mfischer@guru.josefine.at> * ext/oci8/oci8.c: - Let OCIError() also return the sql statement which failed and the exact position into the statement where it failed (if applicable). Patch by Daniel Ceregatti <vi@sh.nu>. 2002-03-18 Wez Furlong <wez.php@thebrainroom.com> * ext/standard/fsock.c: fix error message which appeared even if no ssl mode was selected * main/network.c: Fix for bug #10001: a timeout event prevents further reads. The Bug DB has a patch that should be applied to fsock.c on the 4.2 branch. 2002-03-18 Zeev Suraski <zeev@zend.com> * main/php_streams.h main/streams.c: Fix build under Release_TS Maybe separating TSRMLS away wasn't such a good idea (sorry Wez :) 2002-03-18 Wez Furlong <wez.php@thebrainroom.com> * main/network.c: Fix for bugs #16148, #11199, #10092: fread from socket will never free memory. This patch should also be applied to php_sockread_internal in fsock.c in the 4.2 branch. * main/streams.c: fix non-TS build... * main/php_globals.h: Shouldn't have made it into my last commit. * main/php_globals.h main/php_memory_streams.h main/php_network.h main/php_streams.h main/streams.c main/memory_streams.c main/network.c ext/zlib/zlib_fopen_wrapper.c main/main.c ext/zlib/php_zlib.h ext/zlib/zlib.c ext/standard/fsock.c ext/standard/ftp_fopen_wrapper.c ext/standard/http_fopen_wrapper.c ext/standard/image.c ext/standard/php_fopen_wrapper.c ext/standard/php_fopen_wrappers.h ext/standard/php_image.h ext/standard/file.h ext/standard/file.c ext/mailparse/mailparse.c ext/ftp/ftp.c ext/exif/exif.c: TSRMLS related work on streams, as discussed with Zeev. 2002-03-18 Stig Bakken <ssb@fast.no> * pear/scripts/.cvsignore pear/scripts/pear-get.in pear/scripts/pearcmd-common.php pear/scripts/pearcmd-help.php pear/scripts/pearcmd-info.php pear/scripts/pearcmd-install.php pear/scripts/pearcmd-list.php pear/scripts/pearcmd-package.php pear/scripts/pearcmd-remote-list.php pear/scripts/pearcmd-show-config.php pear/scripts/pearcmd-uninstall.php: * get rid of this hack 2002-03-18 Hartmut Holzgraefe <hartmut@six.de> * ext/curl/curl.c: proto fixes 2002-03-18 Stig Bakken <ssb@fast.no> * pear/tests/pear_config.phpt pear/PEAR/CommandUI/CLI.php pear/scripts/pear.in pear/PEAR/Command/Common.php pear/PEAR/Command/Config.php pear/PEAR/Command/Install.php pear/PEAR/Command/Login.php pear/PEAR/Command.php pear/PEAR/Config.php pear/PEAR/Remote.php pear/DB/common.php pear/Makefile.frag pear/DB.php: * Refactoring of "pear" command internals. Highlights: - user interface abstraction, making a Gtk installer should only be a matter of implementing PEAR_CommandUI_Gtk plus a "pear-gtk" executable - separated code into command classes, able to specify one or more commands - no more "pear-get" :-) * fixed use of PEAR_Config::singleton to avoid object copying 2002-03-18 Edin Kadribasic <edink@proventum.net> * NEWS: MFH * NEWS: -r is in the release branch. 2002-03-18 Sascha Schumann <sascha@schumann.cx> * ext/ircg/config.m4: If --with-ircg=foo was specified, default to --with-ircg-config=foo/bin/ircg-config. 2002-03-18 Derick Rethans <d.rethans@jdimedia.nl> * configure.in: - MFH: backing out requirement on C++ compiler 2002-03-18 Sascha Schumann <sascha@schumann.cx> * regex/Makefile.in: unused makefile.in 2002-03-18 Wez Furlong <wez.php@thebrainroom.com> * ext/zlib/zlib_fopen_wrapper.c: fix warning * main/memory_streams.c: fix TSRM build * ext/recode/php_recode.h ext/recode/recode.c: Fix build. Warning about TSRM testing still applies. * main/memory_streams.c main/php_memory_streams.h: tidyup use of STREAMS_DC macros * ext/standard/basic_functions.c: having streams is now the default 2002-03-18 Zeev Suraski <zeev@zend.com> * win32/php4dllts.dsp: Move stream files into the right folders 2002-03-18 Stanislav Malyshev <stas@zend.com> * ext/zlib/zlib.dsp: Update .dsp * ext/dotnet/dotnet.dsp: Fix build * ext/bz2/bz2.dsp: Update .dsp 2002-03-18 Zeev Suraski <zeev@zend.com> * ext/standard/basic_functions.c: Fix build * main/streams.c: Make Sebastian happy 2002-03-18 Sascha Schumann <sascha@schumann.cx> * ext/standard/basic_functions.c main/php.h: Rename HAVE_PHP_STREAM to PHP_HAVE_STREAMS, because 1.) a PHP-specific symbol should be in the php namespace, and 2.) there are multiple streams and the old configure parameter was plural, too. * ext/standard/var_unserializer.c: touch file 2002-03-18 Zeev Suraski <zeev@zend.com> * ext/zlib/zlib.c main/main.c main/php_streams.h main/streams.c ext/standard/basic_functions.c ext/standard/file.c: Fix the build and all of the outstanding VC++ warnings 2002-03-18 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * README.TESTING: -c option is for path. * ext/mbstring/tests/002.inc ext/mbstring/tests/003.inc ext/mbstring/tests/004.inc ext/mbstring/tests/005.inc ext/mbstring/tests/006.inc ext/mbstring/tests/008.inc ext/mbstring/tests/009.inc ext/mbstring/tests/010.inc ext/mbstring/tests/011.inc ext/mbstring/tests/012.inc ext/mbstring/tests/013.inc ext/mbstring/tests/014.inc ext/mbstring/tests/015.inc ext/mbstring/tests/016.inc ext/mbstring/tests/017.inc ext/mbstring/tests/018.inc ext/mbstring/tests/019.inc: Use common.inc instead of common.php for ease of use (rm -f *.php for failed test files) 2002-03-18 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: -streams are no longer an option * main/memory_streams.c main/php_memory_streams.h: -temp streams are now clean (Thanks to Wez) 2002-03-18 Shane Caraveo <shane@caraveo.com> * php.ini-dist php.ini-recommended: add new ini item for fastcgi * sapi/cgi/cgi_main.c sapi/cgi/libfcgi/include/fcgios.h sapi/cgi/libfcgi/os_win32.c: add security impersonation feature for running under IIS security * sapi/fastcgi/fastcgi.c: Add impersonation feature for running under IIS 2002-03-18 jim winstead <jimw@apache.org> * Makefile.global: make test: '-c' flag doesn't work like this expects (it takes a directory, not a file), and this isn't necessary. * ext/standard/string.c ext/standard/tests/strings/wordwrap.phpt: MFH * ext/standard/tests/strings/wordwrap.phpt ext/standard/string.c: Fix calculation of output buffer size in wordwrap(). (Thanks to Wez.) 2002-03-18 Wez Furlong <wez.php@thebrainroom.com> * README.STREAMS: correct grammar * README.STREAMS: Add some rules for stream implementors. 2002-03-18 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: -use php_stream_make_seekable 2002-03-17 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * main/memory_streams.c main/php_memory_streams.h: -added temporary streams -added stream debug code 2002-03-17 Wez Furlong <wez.php@thebrainroom.com> * main/network.c main/php_network.h main/php_streams.h main/streams.c ext/zlib/php_zlib.h ext/zlib/zlib.c ext/zlib/zlib_fopen_wrapper.c main/main.c ext/standard/ftp_fopen_wrapper.c ext/standard/http_fopen_wrapper.c ext/standard/image.c ext/standard/php_fopen_wrapper.c ext/standard/php_fopen_wrappers.h ext/pgsql/pgsql.c ext/standard/basic_functions.c ext/ftp/php_ftp.c ext/gd/gd.c ext/mailparse/mailparse.c ext/ming/ming.c ext/exif/exif.c: Streams now make more use of the memory manager, so tracking down leaking streams should be easier. 2002-03-17 Jani Taskinen <sniper@iki.fi> * ext/iconv/config.m4 ext/xmlrpc/config.m4 ext/xslt/config.m4 acinclude.m4: - Made one test/setup macro for iconv and fixed it to check for libc first. 2002-03-17 Stefan Esser <s.esser@e-matters.de> * main/safe_mode.c: SAFE_MODE restriction error message fixed if the file doesn't exist * ext/standard/basic_functions.c: move_uploaded_files checks open_basedir now 2002-03-17 Jason Greene <jason@inetgurus.net> * ext/pcntl/pcntl.c: Remove already included file 2002-03-17 Jani Taskinen <sniper@iki.fi> * configure.in: Fix build. 2002-03-17 Sander Roobol <phy@wanadoo.nl> * ext/gd/php_gd.h: Fixed compile error about gdImageColorResolve (#14426, #15000). 2002-03-17 Harald Radi <h.radi@nme.at> * ext/standard/var_unserializer.c ext/standard/var_unserializer.re: removed anoying warnings * win32/php4dllts.dsp: reduced warninglevel to remove the annoying warnings from the re2c generated code 2002-03-17 James Cox <james@wherewithal.com> * NEWS: NEWS is my friend... * NEWS: s/-/ ./ * NEWS: no, really update it 2002-03-17 Jani Taskinen <sniper@iki.fi> * main/Makefile.in: - This is not used anymore. 2002-03-17 James Cox <james@wherewithal.com> * NEWS: updated NEWS 2002-03-17 Wez Furlong <wez.php@thebrainroom.com> * main/php_streams.h main/streams.c main/fopen_wrappers.h README.STREAMS: Fix for php_stream_gets when the implementation does not support it natively (Thanks Marcus). Implement php_stream_make_seekable() and add STREAM_MUST_SEEK as an option to php_stream_open_wrapper(). See README.STREAMS for usage. * main/fopen_wrappers.h main/php_network.h: tidy up the headers (streams related) * main/network.c main/php_network.h ext/standard/fsock.c: Fix for Bug #16121: make unix socket names binary safe. * run-tests.php: fix problems with cgi/cli sapi when running tests 2002-03-17 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: * main/streams.c: -fix bug with wrappers 2002-03-17 Markus Fischer <mfischer@guru.josefine.at> * ext/vpopmail/config.m4: - Let configure also detect installation in standard unix paths. - Properly format error message. 2002-03-17 Shane Caraveo <shane@caraveo.com> * sapi/cgi/libfcgi/os_win32.c: fix closing pipes fix buffer overrun 2002-03-17 Markus Fischer <mfischer@guru.josefine.at> * ext/pcntl/pcntl.c: - Fix some compiler warnings and errors. 2002-03-17 Wez Furlong <wez.php@thebrainroom.com> * ext/ming/ming.c ext/standard/fsock.c: fix win32 warning and ming leak 2002-03-16 Stig Bakken <ssb@fast.no> * pear/PEAR/Config.php: * added optional layer parameter to get() method * added isDefinedLayer() method 2002-03-16 Markus Fischer <mfischer@guru.josefine.at> * ext/pcntl/pcntl.c ext/pcntl/php_pcntl.h: - WS and code style fix. 2002-03-16 Harald Radi <h.radi@nme.at> * win32/php4dllts.dsp: project file for ZendEngine2 migration * main/internal_functions_win32.c: no message 2002-03-16 Jani Taskinen <sniper@iki.fi> * ext/ming/ming.c: - Fixed some typos. 2002-03-16 Markus Fischer <mfischer@guru.josefine.at> * ext/mailparse/mailparse.c ext/pcntl/pcntl.c: - Some more TSRMLS fixes. 2002-03-16 Harald Radi <h.radi@nme.at> * ext/standard/fsock.c: fixed TSRM build 2002-03-16 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: -quick hack to bug in streams....but where? * ext/exif/exif.c: -disabling debug * ext/standard/image.c: -formatting * ext/exif/exif.c: -fix bug for not correct terminated comments -switch to streams * main/Makefile.in main/memory_streams.c main/php.h main/php_memory_streams.h: -added memory streams * main/streams.c: -copy_stream_to_stream returns size if maxlen == PHP_STREAM_COPY_ALL * ext/exif/exif.c: -fix bug with not correctly terminated comments 2002-03-16 Wez Furlong <wez.php@thebrainroom.com> * main/streams.c: fix ftell/fseek in stdio streams * ext/interbase/interbase.c: fix build problem for interbase * ext/zlib/zlib_fopen_wrapper.c ext/zlib/zlib.c ext/standard/fsock.c: Fix some issues with gzFile and fsockopen. 2002-03-16 Andi Gutmans <andi@zend.com> * main/streams.c: - Indentation fix. Never do: if (expr) { } else It should be: if (expr) { } else { 2002-03-16 Wez Furlong <wez.php@thebrainroom.com> * main/php.h: add HAVE_PHP_STREAM macro for extensions to test which fileio functions to use * ext/standard/basic_functions.c ext/standard/file.c ext/standard/file.h: s/get_file_contents/file_get_contents/ 2002-03-16 Harald Radi <h.radi@nme.at> * ext/rpc/RPC_HOWTO ext/rpc/com/com.c ext/rpc/com/com.h ext/rpc/handler.h ext/rpc/php_rpc.h ext/rpc/rpc.c ext/rpc/rpc.h ext/rpc/tests/test1.php: blah 2002-03-16 Wez Furlong <wez.php@thebrainroom.com> * ext/standard/file.c ext/standard/file.h: Ooops. * main/streams.c ext/standard/file.c ext/standard/basic_functions.c: Implement get_file_contents() as discussed (briefly!) by myself, Derick and Sterling on php-dev some months ago. It returns the file contents as a string, and uses mmap if possible. 2002-03-16 Markus Fischer <mfischer@guru.josefine.at> * ext/standard/mail.c: - WS fix. * ext/standard/mail.c: - Don't forget to close the handle. 2002-03-16 Wez Furlong <wez.php@thebrainroom.com> * ext/ming/ming.c: correct some problems with ming * ext/zlib/zlib_fopen_wrapper.c main/main.c main/network.c main/php_streams.h main/streams.c: Hopefully fix resource usage so that we have no leaks and don't segfault. * README.STREAMS: fix typo * main/main.c: work around apache segfault for the moment * ext/gd/gd.c ext/hyperwave/hw.c main/php_streams.h main/streams.c README.STREAMS TODO: Tweak the API to be more consistent. Update docs. 2002-03-16 Markus Fischer <mfischer@guru.josefine.at> * ext/standard/mail.c ext/standard/php_mail.h ext/standard/basic_functions.c ext/mbstring/mbstring.c: - Raise warning when trying to execute non-executeable shell for mail delivery binary. 2002-03-16 Harald Radi <h.radi@nme.at> * ext/rpc/rpc.c: TSRM fix 2002-03-16 Wez Furlong <wez.php@thebrainroom.com> * main/network.c: fsock.c did it this way, so it must be OK... * main/network.c: bring back ptrdiff_t * main/streams.c: Hopefully fix probs with apache. * NEWS: update NEWS 2002-03-16 Sander Roobol <phy@wanadoo.nl> * Makefile.frag: Fixed build with multiple concurrent jobs: zend_indent.c, zend_highlight.c and zend_compile.c require zend_language_parser.h 2002-03-16 Stefan Esser <s.esser@e-matters.de> * ext/standard/html.c: fixed possible bufferoverflow in get_next_char malformed input to htmlentities/htmlspecialchars with utf-8 encoding crashed the server ex: htmlentities("\xfd...(30times)", ENT_NOQUOTES, "utf-8"); 2002-03-16 Andi Gutmans <andi@zend.com> * win32/php4dllts.dsp: - Add streams.c and php_streams.h to project. 2002-03-16 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/tests/002.inc ext/mbstring/tests/003.inc ext/mbstring/tests/004.inc ext/mbstring/tests/005.inc ext/mbstring/tests/006.inc ext/mbstring/tests/006.phpt ext/mbstring/tests/008.inc ext/mbstring/tests/009.inc ext/mbstring/tests/010.inc ext/mbstring/tests/010.phpt ext/mbstring/tests/011.inc ext/mbstring/tests/012.inc ext/mbstring/tests/013.inc ext/mbstring/tests/014.inc ext/mbstring/tests/014.phpt ext/mbstring/tests/015.inc ext/mbstring/tests/016.inc ext/mbstring/tests/017.inc ext/mbstring/tests/018.inc ext/mbstring/tests/019.inc ext/mbstring/tests/019.phpt: fixed some errors of mbstring in regression tests. * ext/mbstring/mbstring.c ext/mbstring/php_mbregex.c ext/mbstring/tests/005.inc ext/mbstring/tests/006.inc ext/mbstring/tests/006.phpt ext/mbstring/tests/007.phpt ext/mbstring/tests/009.inc ext/mbstring/tests/010.inc ext/mbstring/tests/010.phpt ext/mbstring/tests/014.inc ext/mbstring/tests/014.phpt ext/mbstring/tests/016.inc: fixed errors of mbstring in regression tests. 2002-03-16 Jani Taskinen <sniper@iki.fi> * NEWS: - Do not use @ when you're merging the fixes to the release branch. Instead, edit the NEWS file manually. 2002-03-16 Wez Furlong <wez.php@thebrainroom.com> * main/php_streams.h main/streams.c: some minor docu-in-header changes 2002-03-16 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * main/network.c: Quick fix build error when ptrdiff_t is not defined in types.h or sys/types.h * main/streams.c: ZTS build fix 2002-03-16 Wez Furlong <wez.php@thebrainroom.com> * ext/ftp/php_ftp.c ext/standard/file.c main/php_streams.h main/streams.c: Allow php_stream_copy_to_stream to do nothing when used with code that calculates a max length of zero. (Thanks again Marcus). 2002-03-16 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/standard/image.c: -use of corrected stream seek 2002-03-16 Wez Furlong <wez.php@thebrainroom.com> * main/streams.c: some tweaks for seek/read used in image.c (thanks Marcus) * ext/standard/fsock.c ext/standard/html.c main/php_network.h ext/ftp/php_ftp.c ext/standard/file.c: This should help with some build problems/warnings under win32. Someone still needs to add the streams.c file to the MSVC project/workspace though (there are so many that I don't really know what I am doing :-). 2002-03-16 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/standard/image.c: -new streams 2002-03-16 Wez Furlong <wez.php@thebrainroom.com> * main/main.c main/network.c main/php_network.h main/php_streams.h main/streams.c: more *'s * ext/zlib/php_zlib.h ext/zlib/zlib.c ext/zlib/zlib_fopen_wrapper.c: change * formatting * ext/standard/file.c ext/standard/file.h ext/standard/fsock.c ext/standard/ftp_fopen_wrapper.c ext/standard/html.c ext/standard/html.h ext/standard/http_fopen_wrapper.c ext/standard/php_fopen_wrappers.h ext/standard/php_image.h: * formatting, plus remove some old fopen wrappers * ext/standard/exec.c ext/standard/basic_functions.c ext/recode/recode.c ext/pgsql/pgsql.c ext/pdf/pdf.c ext/ming/ming.c ext/mailparse/mailparse.c ext/hyperwave/hw.c ext/gd/gd.c ext/ftp/ftp.c ext/ftp/ftp.h: change * formatting 2002-03-16 jim winstead <jimw@apache.org> * ext/zlib/setup.stub ext/yaz/setup.stub ext/yp/setup.stub ext/sysvsem/setup.stub ext/sysvshm/setup.stub ext/shmop/setup.stub ext/sybase/setup.stub ext/sybase_ct/setup.stub ext/recode/setup.stub ext/session/setup.stub ext/readline/setup.stub ext/pdf/setup.stub ext/pgsql/setup.stub ext/pcre/setup.stub ext/oracle/setup.stub ext/ovrimos/setup.stub ext/odbc/setup.stub ext/mysql/setup.stub ext/oci8/setup.stub ext/mnogosearch/setup.stub ext/msql/setup.stub ext/mcrypt/setup.stub ext/mhash/setup.stub ext/ldap/setup.stub ext/imap/setup.stub ext/informix/setup.stub ext/hyperwave/setup.stub ext/gd/setup.stub ext/gettext/setup.stub ext/filepro/setup.stub ext/fdf/setup.stub ext/dbase/setup.stub ext/bcmath/setup.stub ext/dba/setup.stub ext/interbase/setup.stub: the 'setup' script was removed more than two years ago. these can be safely removed from the 4.2 branch, too. 2002-03-16 Andi Gutmans <andi@zend.com> * main/php_streams.h: - More whitespace. I really can't do the other files though... * main/streams.c: - Change one strncpy() to strlcpy(). - Big indentation patch. I don't have strength to do all of the changed - files but here's a good example. Please try and keep to the coding - standards even if you think they suck :) - Things to keep in mind: - void *foo and not void * foo; - if() { and not if()<TAB>{ - } else { and not {\nelse - - The streams stuff looks very cool though! :) 2002-03-15 Harald Radi <h.radi@nme.at> * ext/rpc/com/com.c ext/rpc/rpc.dsp ext/rpc/rpc.h ext/rpc/tests/test1.php ext/rpc/handler.h ext/rpc/php_rpc.h ext/rpc/rpc.c: ongoing development ... 2002-03-15 Jani Taskinen <sniper@iki.fi> * NEWS: MFH * NEWS: This entry belongs under 4.2.0. 2002-03-15 Harald Radi <h.radi@nme.at> * NEWS: MFH 2002-03-15 Wez Furlong <wez.php@thebrainroom.com> * main/php_network.h main/php_streams.h main/streams.c tests/strings/003.phpt main/fopen_wrappers.c main/fopen_wrappers.h main/internal_functions.c.in main/main.c main/network.c ext/zlib/zlib_fopen_wrapper.c ext/standard/http_fopen_wrapper.c ext/standard/image.c ext/standard/info.c ext/standard/php_fopen_wrapper.c ext/standard/php_fopen_wrappers.h ext/standard/php_image.h ext/zlib/php_zlib.h ext/zlib/zlib.c ext/standard/exec.c ext/standard/file.c ext/standard/file.h ext/standard/fsock.c ext/standard/fsock.h ext/standard/ftp_fopen_wrapper.c ext/standard/html.c ext/standard/html.h ext/standard/basic_functions.c ext/pgsql/pgsql.c ext/recode/recode.c ext/ming/ming.c ext/pdf/pdf.c ext/mailparse/mailparse.c ext/hyperwave/hw.c ext/interbase/interbase.c ext/ftp/ftp.c ext/ftp/ftp.h ext/ftp/php_ftp.c ext/gd/gd.c ext/exif/exif.c ext/bz2/bz2.c ext/curl/curl.c configure.in: New PHP streams... 2002-03-15 Harald Radi <h.radi@nme.at> * ext/com/COM.c: MFH * ext/com/COM.c: fixed a bug that caused php to crash in php_COM_get_ids_of_names() (Harald, Paul) 2002-03-15 Jani Taskinen <sniper@iki.fi> * NEWS: MFH * NEWS: - Corrected these entries. (catched by Derick) * NEWS: - Fixed grammar, made some entries make more sense...etc. (proof read please :) 2002-03-15 Derick Rethans <d.rethans@jdimedia.nl> * ext/domxml/php_domxml.c: - Fix proto (again) * ext/domxml/php_domxml.c: - proto fixes 2002-03-15 jim winstead <jimw@apache.org> * main/php.h: don't redefine NDEBUG if it is already defined. yeesh. 2002-03-15 Daniela Mariaschi <mariaschi@libero.it> * ext/interbase/php_interbase.h ext/interbase/interbase.c: added new ibase_fetch_assoc() php function 2002-03-15 Stig Bakken <ssb@fast.no> * ext/xmlrpc/config.m4 ext/xslt/config.m4: * MFH: "new and improved" iconv test * ext/iconv/config.m4: * MFH: yet another iconv fix * ext/xslt/config.m4 ext/xmlrpc/config.m4: * "new and improved" iconv test 2002-03-15 Harald Radi <h.radi@nme.at> * ext/rpc/handler.h ext/rpc/php_rpc.h ext/rpc/rpc.c ext/rpc/rpc.h: fixed HashTable allocation 2002-03-15 Stig Bakken <ssb@fast.no> * ext/dba/config.m4: * fix for db3 from ports on freebsd 2002-03-15 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * sapi/cli/CREDITS: 2002-03-15 Andi Gutmans <andi@zend.com> * main/php.h: - Revert assert fix until it becomes clear what was wrong with my previous - fix. I don't see any warnings when building with VC++ English. 2002-03-15 Stig Bakken <ssb@fast.no> * ext/iconv/config.m4: * yet another iconv config fix, should be able to handle most or all configurations now (giconv/iconv, static libs only, iconv in libc etc.) 2002-03-15 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * main/php.h: Avoid warnings under VC. * NEWS: Added some fix. Clean up a bit. 2002-03-15 Wez Furlong <wez.php@thebrainroom.com> * ext/standard/var.c: it's late; no more commits from me tonight... * ext/standard/var.c: should have diffed first... * ext/standard/var.c: fix for ZE2 compile 2002-03-15 Harald Radi <h.radi@nme.at> * ext/rpc/.cvsignore ext/rpc/CREDITS ext/rpc/EXPERIMENTAL ext/rpc/README ext/rpc/com/com.c ext/rpc/handler.h ext/rpc/layer.h ext/rpc/php_rpc.h ext/rpc/rpc.c ext/rpc/rpc.dsp ext/rpc/tests/test1.php: rpc apstraction module does only work with ZendEngine2 2002-03-14 Rasmus Lerdorf <rasmus@php.net> * main/safe_mode.c: MFH of safe_mode.c typo 2002-03-14 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/var.c: - Fix bug #16078 2002-03-14 Zeev Suraski <zeev@zend.com> * ext/standard/info.c: Change case for consistency * ext/standard/info.c: MFH 2002-03-14 Stefan Esser <s.esser@e-matters.de> * main/safe_mode.c: fixed a typo within checkuid 2002-03-14 Andi Gutmans <andi@zend.com> * main/config.w32.h: - Define HAVE_ASSERT_H under Windows. There was a macro redefinition before - this. 2002-03-14 Zeev Suraski <zeev@zend.com> * main/php_version.h configure.in: Good suggestion, but I'm not sure we want to start receiving bug reports with that version 2002-03-14 Wez Furlong <wez.php@thebrainroom.com> * ext/standard/var.c: fix buglet 2002-03-14 Sterling Hughes <sterling@bumblebury.com> * main/php_version.h configure.in: update version 2002-03-14 Zeev Suraski <zeev@zend.com> * configure.in main/php_version.h: Childish, are we? 2002-03-14 Jani Taskinen <sniper@iki.fi> * configure.in main/php_version.h: - Fixed version 2002-03-14 Zeev Suraski <zeev@zend.com> * ext/standard/info.c: Make it clearer what this entry means * configure.in main/php_version.h: Fix version number 2002-03-14 Derick Rethans <d.rethans@jdimedia.nl> * ext/xmlrpc/xmlrpc-epi-php.c: - Whitespace part 1 2002-03-14 Stefan Esser <s.esser@e-matters.de> * ext/filepro/filepro.c: fixed: last commit had debug code in it * ext/filepro/filepro.c: fixed whitespace fixed lots of possible bufferoverflows fixed memoryleak 2002-03-14 Sebastian Bergmann <sb@sebastian-bergmann.de> * sapi/apache2filter/README sapi/apache2filter/sapi_apache2.c: MFH (Apache2Filter update). 2002-03-14 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/standard/var.c: Fixed var_dump() crash when there is recursion. 2002-03-14 Stefan Roehrich <sr@linux.de> * NEWS: Added NEWS entry for gzencode() change. * NEWS: Fixed NEWS entry, make it consistent with other entries. 2002-03-14 Sebastian Bergmann <sb@sebastian-bergmann.de> * sapi/apache2filter/README: Add note on which version of Apache 2 this SAPI module is compatible with. 2002-03-14 Sean Bright <elixer@erols.com> * CODING_STANDARDS: Translate to English. 2002-03-14 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * main/php.h CODING_STANDARDS configure.in: Include/enable assert.h/assert() when it is available 2002-03-14 Jani Taskinen <sniper@iki.fi> * main/config.w32.h: MFH fix for the include_path issue * main/config.w32.h: - Fixed bug: #16047, #15865, and propably a few more.. 2002-03-13 Ludovico Magnocavallo <ludo@sumatrasolutions.com> * pear/DB/ibase.php: fixed typo in modifyLimitQuery() beginning of error code interpretation for tests compliance 2002-03-13 Stefan Roehrich <sr@linux.de> * NEWS: Fixed NEWS entry. * ext/zlib/tests/003.phpt ext/zlib/zlib.c: Fix for #15930 in release branch. * ext/zlib/tests/001.phpt ext/zlib/zlib.c: Fix for #14939 in release branch. 2002-03-13 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * sapi/cli/php_cli.c: -release merge 2002-03-13 Jason Greene <jason@inetgurus.net> * ext/standard/credits_ext.h: Regenerate Credits for Release * scripts/credits ext/overload/CREDITS ext/w32api/CREDITS: Merge credits fixes * ext/overload/CREDITS ext/w32api/CREDITS: Fix CREDIT files, remove email address * scripts/credits: Ignore extensions/sapis named skeleton 2002-03-13 Sascha Schumann <sascha@schumann.cx> * acinclude.m4: > might not sufficiently update a timestamp. echo > should be good enough and should be implemented by the shell. 2002-03-13 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/standard/credits_ext.h: Fix credits. 2002-03-13 Jason Greene <jason@inetgurus.net> * ext/standard/credits_sapi.h: Update credits in release branch * ext/standard/credits_sapi.h: Update Credits * ext/standard/credits_ext.h: Update Credits in release branch * ext/standard/credits_ext.h: Update Credits 2002-03-13 Sascha Schumann <sascha@schumann.cx> * ext/session/session.c: Because of the feature "don't try to send a cookie, if the sid was contained in get/post variables" (which I still am not convinced of completely), we need a separate variable which determines whether to define SID in the event that a cookie was not sent. Noticed by: Matt Allen * acinclude.m4: Some simplifications in PHP_ADD_SOURCES* * pear/pear.m4 acinclude.m4 configure.in: a bit of refactoring and making always_shared a nop in every day life 2002-03-13 Stig Bakken <ssb@fast.no> * ext/xmlrpc/config.m4 ext/xslt/config.m4: * MFH: another libconv->libiconv typo * ext/xmlrpc/config.m4 ext/xslt/config.m4: * another libconv->libiconv typo 2002-03-13 Sascha Schumann <sascha@schumann.cx> * pear/pear.m4 acinclude.m4 configure.in: Provide context-specific functions which yield the directories of extensions (PHP 4 configure vs. self-contained module) * ext/cpdf/config.m4 ext/cybercash/config.m4: Fix leftovers from yesterday (s/PHP_EXTENSION/PHP_NEW_EXTENSION/). 2002-03-13 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: Return attribute name in node_name(), if it's a XML_ATTRIBUTE_NODE * ext/domxml/php_domxml.c: Return #document in node_name(), if it's a XML_DOCUMENT_NODE 2002-03-13 Sebastian Bergmann <sb@sebastian-bergmann.de> * sapi/apache2filter/sapi_apache2.c: Sync with Apache2 Filter API change. 2002-03-13 Boian Bonev <boian@bonev.com> * ext/vpopmail/php_vpopmail.c: fix all comments in protos 2002-03-13 Wez Furlong <wez.php@thebrainroom.com> * ext/standard/aggregation.c: I've altered my diagnosis of segfault/leak problem * ext/standard/aggregation.c: Fix some issues with ZE2, but now have some leaks. 2002-03-13 Tomas V.V.Cox <cox@idecnet.com> * pear/tests/pear_error.phpt: No more lines on this test * pear/PEAR.php: phpdoc update * pear/PEAR.php pear/tests/pear_error3.phpt: Fix error handling selection when both class and global are set 2002-03-13 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/mbstring/mbfilter.c: Fixed a compiler warning 2002-03-13 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/tests/001.phpt: -remove filetime from test * ext/exif/exif.c: -handling * ext/exif/tests/001.phpt: -remove filetime from test 2002-03-12 Thomas V.V.Cox <cox@idecnet.com> * pear/DB/pgsql.php: Updated the regex of simpleQuery to support "(" and new lines 2002-03-12 Andi Gutmans <andi@zend.com> * ext/standard/aggregation.c: - Compile fixes for Engine 2 * ext/sybase_ct/php_sybase_ct.c ext/sybase/php_sybase_db.c ext/standard/var_unserializer.re ext/standard/browscap.c ext/standard/var_unserializer.c ext/pgsql/pgsql.c ext/odbc/php_odbc.c ext/mysql/php_mysql.c ext/mssql/php_mssql.c ext/msql/php_msql.c ext/fbsql/php_fbsql.c: - Allow duality between Engine 1 & 2 using ZEND_STANDARD_CLASS_DEF_PTR 2002-03-12 Frank M. Kromann <frank@frontbase.com> * main/config.w32.h: Changed to PHP_CONFIG_FILE_PATH use the environment variable SystemRoot 2002-03-12 Sascha Schumann <sascha@schumann.cx> * ext/zlib/config0.m4: missed zlib.c * ext/mysql/libmysql/Makefile.in ext/mysql/Makefile.in: nuke old makefiles * ext/aspell/Makefile.in ext/aspell/config.m4 ext/cpdf/config.m4 ext/cpdf/Makefile.in: php_new_extension * ext/xmlrpc/Makefile.in ext/xmlrpc/libxmlrpc/Makefile.in: old makefiles * ext/readline/Makefile.in ext/readline/config.m4: php_new_extension * ext/pcre/Makefile.in ext/pcre/pcrelib/Makefile.in: remove old makefiles * ext/odbc/Makefile.in ext/odbc/config.m4 ext/pcntl/config.m4 ext/pcntl/Makefile.in ext/ncurses/Makefile.in ext/ncurses/config.m4 ext/hyperwave/config.m4 ext/hyperwave/Makefile.in: php_new_extension * ext/db/config.m4: forgot to add _NEW_ * ext/db/config.m4 ext/db/Makefile.in ext/cybercash/config.m4 ext/cybercash/Makefile.in: php_new_extension * ext/xml/expat/Makefile.in ext/xml/Makefile.in: Remove old Makefile templates * ext/ctype/Makefile.in ext/ctype/config.m4: extension converted automatically to PHP_NEW_EXTENSION. Manually confirmed 2002-03-12 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c ext/exif/test.txt ext/exif/tests/001.phpt: -usability -tests 2002-03-12 Sascha Schumann <sascha@schumann.cx> * ext/zlib/config0.m4 ext/zlib/Makefile.in: php_new_extension * ext/zip/Makefile.in ext/zip/config.m4 ext/yp/Makefile.in ext/yp/config.m4 ext/yaz/Makefile.in ext/yaz/config.m4 ext/xslt/Makefile.in ext/xslt/config.m4 ext/wddx/Makefile.in ext/wddx/config.m4 ext/vpopmail/Makefile.in ext/vpopmail/config.m4 ext/tokenizer/Makefile.in ext/tokenizer/config.m4 ext/sysvshm/Makefile.in ext/sysvshm/config.m4 ext/sysvsem/Makefile.in ext/sysvsem/config.m4 ext/sybase_ct/Makefile.in ext/sybase_ct/config.m4 ext/sybase/Makefile.in ext/sybase/config.m4 ext/swf/Makefile.in ext/swf/config.m4 ext/sockets/Makefile.in ext/sockets/config.m4 ext/snmp/Makefile.in ext/snmp/config.m4 ext/shmop/Makefile.in ext/shmop/config.m4 ext/recode/Makefile.in ext/recode/config.m4 ext/qtdom/Makefile.in ext/qtdom/config.m4 ext/pspell/Makefile.in ext/pspell/config.m4 ext/posix/Makefile.in ext/posix/config.m4 ext/pgsql/Makefile.in ext/pgsql/config.m4 ext/pfpro/Makefile.in ext/pfpro/config.m4 ext/pdf/Makefile.in ext/pdf/config.m4 ext/ovrimos/Makefile.in ext/ovrimos/config.m4 ext/overload/Makefile.in ext/overload/config.m4 ext/oracle/Makefile.in ext/oracle/config.m4 ext/openssl/Makefile.in ext/openssl/config.m4 ext/oci8/Makefile.in ext/oci8/config.m4 ext/muscat/Makefile.in ext/muscat/config.m4 ext/msql/Makefile.in ext/msql/config.m4 ext/msession/Makefile.in ext/msession/config.m4 ext/mnogosearch/Makefile.in ext/mnogosearch/config.m4 ext/ming/Makefile.in ext/ming/config.m4 ext/mhash/Makefile.in ext/mhash/config.m4 ext/mcve/Makefile.in ext/mcve/config.m4 ext/mcrypt/Makefile.in ext/mcrypt/config.m4 ext/mcal/Makefile.in ext/mcal/config.m4 ext/mbstring/Makefile.in ext/mbstring/config.m4 ext/mailparse/Makefile.in ext/mailparse/config.m4: extension converted automatically to PHP_NEW_EXTENSION. Manually confirmed * ext/ircg/config.m4: add makefile fragment manually * ext/ldap/Makefile.in ext/ldap/config.m4 ext/ircg/Makefile.in ext/ircg/config.m4 ext/interbase/Makefile.in ext/interbase/config.m4: extension converted automatically to PHP_NEW_EXTENSION. Manually confirmed * ext/informix/config.m4: add makefile fragment manually * ext/ingres_ii/Makefile.in ext/ingres_ii/config.m4 ext/informix/Makefile.in ext/informix/config.m4 ext/imap/Makefile.in ext/imap/config.m4 ext/icap/Makefile.in ext/icap/config.m4 ext/gmp/Makefile.in ext/gmp/config.m4 ext/gettext/Makefile.in ext/gettext/config.m4 ext/gd/Makefile.in ext/gd/config.m4 ext/ftp/Makefile.in ext/ftp/config.m4 ext/fribidi/Makefile.in ext/fribidi/config.m4 ext/filepro/Makefile.in ext/filepro/config.m4 ext/fdf/Makefile.in ext/fdf/config.m4 ext/fbsql/Makefile.in ext/fbsql/config.m4 ext/domxml/Makefile.in ext/domxml/config.m4 ext/dio/Makefile.in ext/dio/config.m4 ext/dbx/Makefile.in ext/dbx/config.m4 ext/dbplus/Makefile.in ext/dbplus/config.m4 ext/dbase/Makefile.in ext/dbase/config.m4 ext/dba/Makefile.in ext/dba/config.m4 ext/cyrus/Makefile.in ext/cyrus/config.m4 ext/cybermut/Makefile.in ext/cybermut/config.m4 ext/curl/Makefile.in ext/curl/config.m4 ext/crack/Makefile.in ext/crack/config.m4 ext/ccvs/Makefile.in ext/ccvs/config.m4 ext/calendar/Makefile.in ext/calendar/config.m4 ext/bz2/Makefile.in ext/bz2/config.m4 ext/exif/Makefile.in ext/exif/config.m4: extension converted automatically to PHP_NEW_EXTENSION. Manually confirmed * ext/Makefile.in: unused file 2002-03-12 Stig Bakken <ssb@fast.no> * ext/iconv/config.m4: * MFH: fix compile problem on platforms without iconv in libc * ext/iconv/config.m4: * fix compile problem on platforms without iconv in libc 2002-03-12 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: -return size of thumbnail even if it not read 2002-03-12 Stefan Roehrich <sr@linux.de> * ext/zlib/tests/003.phpt ext/zlib/zlib.c: (PHP gzencode) Reimplementation of gzencode(). Now works as documented (gzencode(string data [, int level [, int encoding_mode]])), should fix #15930. * ext/zlib/tests/001.phpt ext/zlib/zlib.c: (PHP gzinflate) Workaround for bug #14939 (buffer error in gzinflate()). Fixed prototype and added test for #14939. 2002-03-12 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/tests/001.phpt: -reflect changes -find image from run-tests.php 2002-03-12 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: forgot SEPARATE_ZVAL, produced segfaults. segfaulted only in 4_2_0 (not in HEAD and 4_0_7, strange...) 2002-03-12 Andreas Karajannis <Andreas.Karajannis@gmd.de> * ext/odbc/config.m4: Removed sqlrte from SAP DB liblist as it is not needed. 2002-03-12 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * README.TESTING: Catch up with recent test scripts changes 2002-03-12 Markus Fischer <mfischer@guru.josefine.at> * ext/domxml/php_domxml.c: - Remove *FETCH() statements. - Clean up WS and parenthesis indentation. 2002-03-12 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: nicer (optional) formated output in dump_mem and dump_mem_file 2002-03-12 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/standard/array.c: Fix TSRMLS_CC. 2002-03-12 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/standard/string.c: Change php_addslashes() a little. Since most users do not use magic_quote_sybase, be nicer to users not using magic_quote_sybase. * ext/standard/array.c: Make use of TSRMLS_C/D * tests/bin-info.inc run-tests.php: Fix PHP version and sapi printed so that it does not print bogus version and sapi name. 2002-03-12 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * EXTENSIONS: -reflect new state of ext/exif * ext/exif/php_exif.h ext/exif/exif.c ext/exif/test.txt: -support for array tags -better memory handling -support for thumbnails in TIFF format -new functions exif_imagetype * ext/standard/image.c ext/standard/php_image.h: -fixed bug 15174 -support for some broken jpegs: bug 13213 -better memory handling -initial jpeg2000 support (only jpc not jp2,jb2,jpx) 2002-03-12 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * pear/DB/tests/driver/setup.inc: Make pear tests find scripts needed at least. 2002-03-12 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/standard/image.c: -merged a wrong line -one compiling issue 2002-03-12 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/session/tests/skipif.inc: Add missing skipif.inc * run-tests.php: Do not search php binary in search path, since we are not testing older builds. Print SAPI used. * run-tests.php: Use CGI binary when CGI SAPI is there. Make "php run-tests.php" work with cli SAPI. 2002-03-12 Jani Taskinen <sniper@iki.fi> * ext/odbc/php_odbc.h: MFH * ext/odbc/php_odbc.h: - Fix more possible bugs (bug #16008 related) 2002-03-11 Derick Rethans <d.rethans@jdimedia.nl> * ext/imap/php_imap.h: - MFH for bug #16008 * ext/imap/php_imap.h: - fix bug #16008 2002-03-11 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c ext/domxml/php_domxml.h: implemented domxml_elem_get_elements_by_tagname new function domxml_doc_get_elements_by_tagname new function domxml_doc_get_element_by_id (chregu) 2002-03-11 Markus Fischer <mfischer@guru.josefine.at> * ext/iconv/iconv.c: - Slightly unify error/warning messages. - Switch to zend_parse_parameters(). - Fix whitespaces. 2002-03-11 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * EXTENSIONS: -Change status of ext/exif * ext/standard/image.c ext/standard/php_image.h ext/exif/exif.c: -fixes: memory handling & corrupted files 2002-03-11 Shane Caraveo <shane@caraveo.com> * win32/php4ts.dsp: fix on more build config 2002-03-11 Sander Roobol <phy@wanadoo.nl> * ext/bz2/bz2.c ext/mcve/mcve.c: Maintain headers 2002-03-11 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * sapi/cli/CREDITS sapi/cli/php_cli.c: -passing arguments to CLI, see: php -h 2002-03-11 Stig Bakken <ssb@fast.no> * Makefile.global: * make "make test TESTS=..." work again * pear/PEAR/Registry.php: * added file locking * added file name to package map 2002-03-11 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: Print function names in error messages 2002-03-11 Ben Mansell <ben@zeus.com> * sapi/fastcgi/README.Apache: Instructions for using FastCGI-PHP with Apache * sapi/fastcgi/README.FastCGI: Improved documentation for FastCGI SAPI. Documents the environment variable tunings and the new command line usage. * sapi/fastcgi/fastcgi.c: Add command line option to FastCGI SAPI to make it bind & listen to a socket. This makes setting up 'remote' fastcgi much easier. 2002-03-11 Sascha Schumann <sascha@schumann.cx> * ext/xml/config.m4: Add global include path, so that other extensions can access the expat header. * pear/Makefile.frag configure.in: Invoke pear-related targets conditionally and rename install-data-local target to install-pear. Also remove PEAR_DIR, because it is unused. * configure.in: Use standard PHP shell check syntax * configure.in: You don't need a C++ compiler to build 100% of PHP (and the largest part of the extensions), so I don't see a reason why PHP should not build on a system without a C++ compiler. If your extension uses C++ objects, put PHP_REQUIRE_CXX into your config.m4. This should also be removed from the 4.2.0 branch, because it will cause portability problems otherwise. * sapi/thttpd/README: MFH: refining supported thttpd version * sapi/thttpd/README: Add a note regarding which version we support 2002-03-11 Sebastian Bergmann <sb@sebastian-bergmann.de> * sapi/cgi/libfcgi/os_win32.c: Fix warning, hope this is okay. 2002-03-11 Shane Caraveo <shane@caraveo.com> * win32/php4ts.dsp: fix include paths for fcgi headers 2002-03-11 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: WS and indent * ext/pgsql/pgsql.c: Add comments for constants. Remove unneeded constants included by mistake. * ext/standard/reg.c: Small memory leak fix that does not matter much. * ext/pgsql/pgsql.c: Fix possible build error under Windows. 2002-03-11 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/standard/math.c: Fix thread-safe build. 2002-03-11 Jason Greene <jason@inetgurus.net> * ext/sockets/sockets.c: Fix WS 2002-03-10 jim winstead <jimw@apache.org> * ext/standard/math.c: handle numeric strings. this means we're less picky about the argument types, but the math functions aren't generally that picky. 2002-03-10 Markus Fischer <mfischer@guru.josefine.at> * ext/standard/syslog.c: - Fix protos. * ext/iconv/iconv.c: - MFH fix for #15799. 2002-03-10 Shane Caraveo <shane@caraveo.com> * win32/php4ts.dsp: fix output directory * sapi/cgi/cgi_main.c: woohoo, take some credit! * sapi/cgi/cgi_main.c: children should be zero by default, enable by setting PHP_FCGI_CHILDREN env var. * win32/php4ts.dsp: Update makefile for compiling with fastcgi under windows * sapi/cgi/libfcgi/LICENSE.TERMS sapi/cgi/libfcgi/fcgi_stdio.c sapi/cgi/libfcgi/fcgiapp.c sapi/cgi/libfcgi/include/fastcgi.h sapi/cgi/libfcgi/include/fcgi_config.h sapi/cgi/libfcgi/include/fcgi_config_x86.h sapi/cgi/libfcgi/include/fcgi_stdio.h sapi/cgi/libfcgi/include/fcgiapp.h sapi/cgi/libfcgi/include/fcgiappmisc.h sapi/cgi/libfcgi/include/fcgimisc.h sapi/cgi/libfcgi/include/fcgio.h sapi/cgi/libfcgi/include/fcgios.h sapi/cgi/libfcgi/os_unix.c sapi/cgi/libfcgi/os_win32.c sapi/cgi/libfcgi/strerror.c sapi/cgi/cgi_main.c: combine fastcgi capability with regular cgi binary include fastcgi library for ease of windows builds NOTE: included fastcgi library is modified for thread safety, but fastcgi support in cgi_main.c is only written for single threaded serving. This does not present any issue for using fastcgi. 2002-03-10 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/tests/007.phpt: fixed wrong include file. * ext/mbstring/tests/skipif.inc: fixed module name iconv->mbstring. 2002-03-10 Stefan Esser <s.esser@e-matters.de> * main/rfc1867.c: Fix: Now returns correct Content-Type for Opera 6.01 * main/rfc1867.c: Fix: Now returns correct Content-Type with Opera 6.01 2002-03-10 Markus Fischer <mfischer@guru.josefine.at> * ext/iconv/iconv.c: - Fix crash in iconv_set_encoding(). [Closes #15799] 2002-03-10 Jani Taskinen <sniper@iki.fi> * ext/standard/tests/aggregation/aggregate.lib ext/standard/tests/aggregation/aggregate.lib.php ext/standard/tests/aggregation/aggregate.phpt ext/standard/tests/aggregation/aggregate_methods.phpt ext/standard/tests/aggregation/aggregate_methods_by_list.phpt ext/standard/tests/aggregation/aggregate_methods_by_regexp.phpt ext/standard/tests/aggregation/aggregate_properties.phpt ext/standard/tests/aggregation/aggregate_properties_by_list.phpt ext/standard/tests/aggregation/aggregate_properties_by_regexp.phpt ext/standard/tests/aggregation/aggregation_info.phpt ext/standard/tests/aggregation/deaggregate.phpt: - Renamed aggregate.lib.php -> aggregate.lib (.php files are always deleted bycvsclean) 2002-03-09 Jani Taskinen <sniper@iki.fi> * Makefile.in build/rules.mk: - Fixed bug #15748 (fixed otherwise in 4.3.0-dev) * ext/domxml/config.m4: MFH fix for bug #15686 and some exslt fix. * ext/domxml/config.m4: - Fixed bug: #15686 * ext/ming/config.m4: MFH fix for #15190 * ext/ming/config.m4: - Fixed bug: #15190 2002-03-09 Thomas V.V.Cox <cox@idecnet.com> * pear/DB/IDEAS: more wishes :-) 2002-03-09 Ludovico Magnocavallo <ludo@sumatrasolutions.com> * pear/DB/STATUS: updated status for ibase with working tests * pear/DB/tests/ibase/05sequences.phpt: new test, passed 2002-03-09 Sander Roobol <phy@wanadoo.nl> * ext/standard/datetime.c: Oops... 1 digit is allowed too! Reverting my fix. 2002-03-09 Stig Bakken <ssb@fast.no> * pear/HTML/Form.php: * added addPlain() by Ted Shieh 2002-03-09 Jason Greene <jason@inetgurus.net> * ext/sockets/sockets.c: MFH: Recent Bug Fixes * ext/sockets/sockets.c: Fix build on win32 * ext/sockets/sockets.c: Fixed bug where NULL specified in sec was not waiting infinately as it should Fixed bug where socket_select was not producing an error message on error Fixed bug where -1 was getting returned instead of FALSE in socket_recv(), socket_send(), socket_sendto(), and socket_select() 2002-03-09 Jani Taskinen <sniper@iki.fi> * main/main.c: MFH * ext/ctype/ctype.c: MFH the MacosX compile fix. * ext/session/session.c: whitespace.. * main/main.c: - Commented out the space escaping. Works now as it did before. 2002-03-08 Joseph Tate <jtate@mi-corporation.com> * ext/domxml/php_domxml.c: - Fixed a coredump involved in the domxml_unlink() function. Refer to bug #14522 for more details. 2002-03-08 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: implemented domxml_elem_get_attribute_node(attrname) (chregu) 2002-03-08 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: -support for out of section data 2002-03-08 Sander Roobol <phy@wanadoo.nl> * tests/basic/003.phpt tests/basic/004.phpt tests/basic/005.phpt ext/session/tests/001.phpt ext/session/tests/002.phpt ext/session/tests/003.phpt ext/session/tests/004.phpt ext/session/tests/005.phpt ext/session/tests/006.phpt pear/tests/pear_error.phpt tests/basic/002.phpt ext/exif/tests/002.phpt ext/gmp/tests/002.phpt: Fixed many tests, mostly incorrect paths. 2002-03-08 Joseph Tate <jtate@mi-corporation.com> * ext/domxml/config.m4: Added linking files to make build compatible with RH 7.2's updated libxslt packages. Should not break when compiling with older versions. This may fix bug #15942 as well. Configure was giving a Warning message without these lines when --with-xslt was specified. 2002-03-08 Sander Roobol <phy@wanadoo.nl> * ext/standard/datetime.c: (php_date) Fixed 'r' modifier to always return two digits for the day value (see RFC 822) (#15952). 2002-03-08 Sascha Schumann <sascha@schumann.cx> * ext/ircg/ircg.c: Add identifier which terminates a connection upon receiving a specific CTCP message. The message must come from the specified user or will be ignored. This can be used to disconnect a large number of users when an event adjourns. Improve error reporting by notifying the IRC server why a HTTP connection failed. Fix a prototype comment * ext/ircg/config.m4: Adding an existing fragment is implicitly done by PHP_EXTENSION 2002-03-08 Ludovico Magnocavallo <ludo@sumatrasolutions.com> * pear/DB/TESTERS: added interbase tester (myself) =) * pear/DB/STATUS: changed status of ibase error mapping support to implemented, but without tests * pear/DB/tests/ibase/02fetch.phpt pear/DB/tests/ibase/03simplequery.phpt pear/DB/tests/ibase/04numcols.phpt pear/DB/tests/ibase/06prepexec.phpt pear/DB/tests/ibase/10errormap.phpt pear/DB/tests/ibase/connect.inc pear/DB/tests/ibase/mktable.inc pear/DB/tests/ibase/skipif.inc: all tests working except tests 6 and 10, still broken * pear/DB/ibase.php: beginning of error mapping support for Interbase added ibaseRaiseError() method and errorcode_map hash 2002-03-08 Hartmut Holzgraefe <hartmut@six.de> * ext/ctype/ctype.c: reimplementation using macro instead of function pointer ( Bug #15951 ) 2002-03-08 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/test.txt ext/exif/example.php ext/exif/exif.c: -change IsColor from non zero to 1 -new test and example for documentation 2002-03-08 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: domxml_elem_remove_attribute(attibutename) is now implemented (chregu) 2002-03-08 Edin Kadribasic <edink@proventum.net> * sapi/cli/php_cli.c: Cleaned up previous commit. * sapi/cli/php_cli.c: - Added -r option to the CLI version of PHP which executes a piece of PHP code directly from the commmand line. 2002-03-08 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: added formatting option to domxml_dump_mem() (chregu) 2002-03-08 Jani Taskinen <sniper@iki.fi> * main/main.c: - MFH (fix for the phpinfo() output) 2002-03-08 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/tests/001.phpt: -Changes according to exif.c 1.55 * ext/exif/exif.c: -Support for IFD Arrays * ext/exif/exif.c ext/standard/image.c: TIFF support for 'non' digicam files 2002-03-07 Joseph Tate <jtate@mi-corporation.com> * ext/domxml/php_domxml.c: Commented out a few lines that were causing a segfault in the unlink code. This fixes bug #14522. I've tested that it does not cause a segfault under RH 7.2, and retains all functionality. I recommend that this patch be considered for the PHP_4_2_0 tree as well, as having a function that core dumps every time is a bad thing(TM). 2002-03-07 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/gd/config.m4: revert my patch to fix freetype2 related problem. 2002-03-07 Jani Taskinen <sniper@iki.fi> * main/main.c: - Fixed the phpinfo() tables not to blow up when using very long configure line. * ext/exif/exif.c: - Fixed some compile warnings and removed bogus comments. 2002-03-07 Sascha Schumann <sascha@schumann.cx> * ext/session/tests/001.phpt ext/session/tests/003.phpt ext/session/tests/004.phpt ext/session/tests/005.phpt ext/session/tests/006.phpt: These tests currently depend on register_globals=1 2002-03-07 Jason Greene <jason@inetgurus.net> * NEWS: Merge News Entry * NEWS: News update 2002-03-07 Sascha Schumann <sascha@schumann.cx> * Makefile.global: remove -module, it is added by configure.in * Makefile.global: Update test target from rules.mk 2002-03-07 Jon Parise <jon@csh.rit.edu> * ext/ftp/ftp.c: MFH r1.45: header file correction 2002-03-07 Jason Greene <jason@inetgurus.net> * ext/mysql/config.m4 ext/mysql/libmysql/libmysql.c: Disallow mysql's 'LOAD LOCAL' when safe mode is enabled 2002-03-07 Sascha Schumann <sascha@schumann.cx> * Makefile.global: Readd ZEND_EXTRA_LIBS (as in Makefile.in rev 1.106). 2002-03-07 Jon Parise <jon@csh.rit.edu> * ext/ftp/ftp.c: Correct the header file ordering. From 'man 3 inet' (FreeBSD 4.5): 2002-03-07 Derick Rethans <d.rethans@jdimedia.nl> * build/build2.mk: - Fix typo in warning suppressor 2002-03-07 Frank M. Kromann <frank@frontbase.com> * main/config.w32.h: Revert uppercase directory name to lower case. 2002-03-07 Sascha Schumann <sascha@schumann.cx> * configure.in: ze2 handling 2002-03-07 Frank M. Kromann <frank@frontbase.com> * main/config.w32.h win32/crypt_win32.c win32/crypt_win32.h win32/php4dllts.dsp: Enabling crypt() on Win32 2002-03-07 Sascha Schumann <sascha@schumann.cx> * configure.in: Build libphp4.la as a module which can be dlopened. This should not make a difference on common platforms, but maybe esoteric ones. 2002-03-07 Joseph Tate <jtate@mi-corporation.com> * ext/domxml/php_domxml.c: Reverting the reverted patch. I hope this is the last time. No added functionality. Just a bug fix of #15918 * ext/domxml/php_domxml.c: Reverting patch at Derick's request. Reverted to 1.118 2002-03-07 Sascha Schumann <sascha@schumann.cx> * acinclude.m4: Fix typo 2002-03-07 Frank M. Kromann <frank@frontbase.com> * ext/mbstring/unicode_table.h ext/mbstring/unicode_table_ja.h ext/mbstring/cp932_table.h ext/mbstring/mbfilter.c ext/mbstring/mbfilter_ja.c ext/mbstring/mbstring.dsp: Making mbstring compile under WIn32 2002-03-07 Joseph Tate <jtate@mi-corporation.com> * ext/domxml/php_domxml.c: Added type attributes to XML_DTD_NODE and XML_ATTRIBUTE_NODE element types. Reported in bug #15918. 2002-03-07 Sascha Schumann <sascha@schumann.cx> * NEWS: some more information 2002-03-07 Sebastian Bergmann <sb@sebastian-bergmann.de> * NEWS: Add NEWS entry for the new build system. 2002-03-07 Joseph Tate <jtate@mi-corporation.com> * ext/domxml/php_domxml.c: Added type attribute wrappers to the remaining node types that did not have them. I.e. XML_ATTRIBUTE_NODE and XML_CDATA_SECTION_NODE. Mentioned in Bug #15918. * ext/domxml/TODO: Added TODO item to modify new_child so that more than just element nodes can be created. 2002-03-07 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/var_unserializer.c: - Remove CVS things 2002-03-07 Sascha Schumann <sascha@schumann.cx> * ext/standard/var_unserializer.c: touch file * configure.in: From APR CVS. fitz 02/03/07 07:37:09 Modified: build apr_hints.m4 Log: update for Mac OS X. -traditional-cpp is no longer recommended. 2002-03-07 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/gd/config.m4: reverted my patch to fix freetype2 related problem. 2002-03-07 Sascha Schumann <sascha@schumann.cx> * ext/dbplus/config.m4: Bad extension. Still using AC_ADD_INCLUDE! * sapi/webjames/.cvsignore sapi/servlet/.cvsignore sapi/thttpd/.cvsignore sapi/tux/.cvsignore sapi/pi3web/.cvsignore sapi/roxen/.cvsignore sapi/isapi/.cvsignore sapi/nsapi/.cvsignore sapi/phttpd/.cvsignore sapi/fastcgi/.cvsignore sapi/fhttpd/.cvsignore sapi/caudium/.cvsignore sapi/cgi/.cvsignore sapi/cli/.cvsignore sapi/aolserver/.cvsignore sapi/apache/.cvsignore sapi/apache2filter/.cvsignore main/.cvsignore regex/.cvsignore ext/zlib/.cvsignore ext/zip/.cvsignore ext/yp/.cvsignore ext/xslt/.cvsignore ext/yaz/.cvsignore ext/xmlrpc/.cvsignore ext/xmlrpc/libxmlrpc/.cvsignore ext/xml/.cvsignore ext/xml/expat/.cvsignore ext/wddx/.cvsignore ext/vpopmail/.cvsignore ext/w32api/.cvsignore ext/sysvshm/.cvsignore ext/tokenizer/.cvsignore ext/sybase_ct/.cvsignore ext/sysvsem/.cvsignore ext/swf/.cvsignore ext/sybase/.cvsignore ext/sockets/.cvsignore ext/standard/.cvsignore ext/snmp/.cvsignore ext/skeleton/.cvsignore ext/session/.cvsignore ext/shmop/.cvsignore ext/readline/.cvsignore ext/recode/.cvsignore ext/pspell/.cvsignore ext/qtdom/.cvsignore ext/posix/.cvsignore ext/pdf/.cvsignore ext/pfpro/.cvsignore ext/pgsql/.cvsignore ext/pcre/pcrelib/doc/.cvsignore ext/pcre/pcrelib/testdata/.cvsignore ext/pcre/.cvsignore ext/pcre/pcrelib/.cvsignore ext/ovrimos/.cvsignore ext/pcntl/.cvsignore ext/oracle/.cvsignore ext/overload/.cvsignore ext/oci8/.cvsignore ext/odbc/.cvsignore ext/openssl/.cvsignore ext/ncurses/.cvsignore ext/notes/.cvsignore ext/mysql/libmysql/.cvsignore ext/muscat/.cvsignore ext/mysql/.cvsignore ext/msql/.cvsignore ext/mssql/.cvsignore ext/mnogosearch/.cvsignore ext/msession/.cvsignore ext/mhash/.cvsignore ext/ming/.cvsignore ext/mcal/.cvsignore ext/mcrypt/.cvsignore ext/mailparse/tests/.cvsignore ext/mbstring/.cvsignore ext/java/.cvsignore ext/ldap/.cvsignore ext/mailparse/.cvsignore ext/interbase/.cvsignore ext/ircg/.cvsignore ext/imap/.cvsignore ext/informix/.cvsignore ext/ingres_ii/.cvsignore ext/hyperwave/.cvsignore ext/icap/.cvsignore ext/iconv/.cvsignore ext/gettext/.cvsignore ext/gmp/.cvsignore ext/fribidi/.cvsignore ext/ftp/.cvsignore ext/gd/.cvsignore ext/fdf/.cvsignore ext/filepro/.cvsignore ext/domxml/.cvsignore ext/exif/.cvsignore ext/fbsql/.cvsignore ext/dbx/.cvsignore ext/dio/.cvsignore ext/dbase/.cvsignore ext/dbplus/.cvsignore ext/cyrus/.cvsignore ext/db/.cvsignore ext/dba/.cvsignore ext/curl/.cvsignore ext/cybercash/.cvsignore ext/cybermut/.cvsignore ext/cpdf/.cvsignore ext/crack/.cvsignore ext/ctype/.cvsignore ext/ccvs/.cvsignore ext/com/.cvsignore ext/bcmath/libbcmath/src/.cvsignore ext/bz2/.cvsignore ext/calendar/.cvsignore ext/aspell/.cvsignore ext/bcmath/.cvsignore ext/bcmath/libbcmath/.cvsignore .cvsignore ext/ext_skel: Remove .libs from .cvsignores, except /. * TODO.BUILDv5: phpize is already working, remove from todo * sapi/webjames/.cvsignore sapi/webjames/Makefile.in sapi/webjames/config.m4 sapi/thttpd/.cvsignore sapi/thttpd/Makefile.in sapi/thttpd/config.m4 sapi/tux/.cvsignore sapi/tux/Makefile.in sapi/tux/config.m4 sapi/servlet/Makefile.in sapi/servlet/config.m4 sapi/roxen/config.m4 sapi/servlet/.cvsignore sapi/servlet/Makefile.frag sapi/roxen/.cvsignore sapi/roxen/Makefile.in sapi/pi3web/.cvsignore sapi/pi3web/Makefile.in sapi/pi3web/config.m4 sapi/nsapi/Makefile.in sapi/nsapi/config.m4 sapi/phttpd/.cvsignore sapi/phttpd/Makefile.in sapi/phttpd/config.m4 sapi/isapi/.cvsignore sapi/isapi/Makefile.in sapi/isapi/config.m4 sapi/nsapi/.cvsignore sapi/cgi/Makefile.in sapi/cgi/config.m4 sapi/cli/.cvsignore sapi/cli/Makefile.in sapi/cli/config.m4 sapi/fastcgi/.cvsignore sapi/fastcgi/Makefile.in sapi/fastcgi/config.m4 sapi/fhttpd/.cvsignore sapi/apache2filter/Makefile.in sapi/apache2filter/config.m4 sapi/caudium/.cvsignore sapi/caudium/Makefile.in sapi/caudium/config.m4 sapi/cgi/.cvsignore sapi/apache2filter/.cvsignore sapi/aolserver/.cvsignore sapi/aolserver/Makefile.in sapi/aolserver/config.m4 sapi/apache/.cvsignore sapi/apache/Makefile.in sapi/apache/config.m4 pear/scripts/phpize.in regex/.cvsignore sapi/.cvsignore sapi/Makefile.in sapi/README ext/zlib/.cvsignore pear/.cvsignore pear/Makefile.frag pear/Makefile.in pear/pear.m4 ext/xslt/.cvsignore ext/yaz/.cvsignore ext/yp/.cvsignore ext/zip/.cvsignore ext/xmlrpc/.cvsignore ext/xmlrpc/config.m4 ext/xmlrpc/libxmlrpc/xmlrpc.m4 ext/xml/.cvsignore ext/xml/config.m4 ext/xml/expat/.cvsignore ext/w32api/.cvsignore ext/wddx/.cvsignore ext/sybase_ct/.cvsignore ext/sysvsem/.cvsignore ext/sysvshm/.cvsignore ext/vpopmail/.cvsignore ext/swf/.cvsignore ext/sybase/.cvsignore ext/sockets/.cvsignore ext/standard/.cvsignore ext/standard/Makefile.frag ext/standard/Makefile.in ext/standard/config.m4 ext/snmp/.cvsignore ext/session/config.m4 ext/shmop/.cvsignore ext/skeleton/.cvsignore ext/readline/.cvsignore ext/recode/.cvsignore ext/session/.cvsignore ext/session/Makefile.in ext/pgsql/.cvsignore ext/posix/.cvsignore ext/pspell/.cvsignore ext/qtdom/.cvsignore ext/pdf/.cvsignore ext/pdf/config.m4 ext/pfpro/.cvsignore ext/pcre/pcrelib/.cvsignore ext/pcre/pcrelib/doc/.cvsignore ext/pcre/pcrelib/testdata/.cvsignore ext/ovrimos/.cvsignore ext/pcntl/.cvsignore ext/pcre/.cvsignore ext/pcre/config.m4 ext/openssl/.cvsignore ext/oracle/.cvsignore ext/overload/.cvsignore ext/mysql/libmysql/.cvsignore ext/mysql/libmysql/mysql.m4 ext/ncurses/.cvsignore ext/notes/.cvsignore ext/oci8/.cvsignore ext/odbc/.cvsignore ext/mysql/.cvsignore ext/mysql/config.m4 ext/muscat/.cvsignore ext/msql/.cvsignore ext/mssql/.cvsignore ext/msession/.cvsignore ext/mnogosearch/.cvsignore ext/ming/.cvsignore ext/mhash/.cvsignore ext/mcrypt/.cvsignore ext/mcal/.cvsignore ext/mbstring/.cvsignore ext/ldap/.cvsignore ext/java/.cvsignore ext/ircg/.cvsignore ext/ircg/Makefile.frag ext/ircg/config.m4 ext/interbase/.cvsignore ext/informix/.cvsignore ext/informix/Makefile.frag ext/ingres_ii/.cvsignore ext/imap/.cvsignore ext/iconv/.cvsignore ext/icap/.cvsignore ext/hyperwave/.cvsignore ext/gmp/.cvsignore ext/gettext/.cvsignore ext/ftp/.cvsignore ext/gd/.cvsignore ext/fribidi/.cvsignore ext/filepro/.cvsignore ext/fdf/.cvsignore ext/fbsql/.cvsignore ext/exif/.cvsignore ext/domxml/.cvsignore ext/domxml/config.m4 ext/dio/.cvsignore ext/dbx/.cvsignore ext/dbplus/.cvsignore ext/dbase/.cvsignore ext/db/.cvsignore ext/dba/.cvsignore ext/cyrus/.cvsignore ext/cybermut/.cvsignore ext/cybercash/.cvsignore ext/curl/.cvsignore ext/ctype/.cvsignore ext/crack/.cvsignore ext/cpdf/.cvsignore ext/com/.cvsignore ext/ccvs/.cvsignore ext/calendar/.cvsignore ext/bz2/.cvsignore ext/bcmath/libbcmath/src/Makefile.in ext/bcmath/libbcmath/src/.cvsignore ext/bcmath/libbcmath/.cvsignore ext/bcmath/libbcmath/Makefile.in ext/bcmath/config.m4 ext/bcmath/.cvsignore ext/bcmath/Makefile.in ext/aspell/.cvsignore ext/ext_skel build/sysv_makefile build/shtool build/ltlib.mk build/fastgen.sh build/library.mk build/dynlib.mk build/bsd_makefile build/build2.mk scan_makefile_in.awk dynlib.m4 configure.in TODO.BUILDv5 acinclude.m4 README.SELF-CONTAINED-EXTENSIONS Makefile.in .cvsignore Makefile.frag Makefile.global: Please welcome the new build system. If you encounter any problems, please make sure to email sas@php.net directly. An introduction can be found on http://schumann.cx/buildv5.txt 2002-03-07 Derick Rethans <d.rethans@jdimedia.nl> * NEWS: - Update NEWS 2002-03-07 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/mbstring/tests/002.inc ext/mbstring/tests/003.inc ext/mbstring/tests/004.inc ext/mbstring/tests/005.inc ext/mbstring/tests/006.inc ext/mbstring/tests/008.inc ext/mbstring/tests/009.inc ext/mbstring/tests/010.inc ext/mbstring/tests/011.inc ext/mbstring/tests/012.inc ext/mbstring/tests/013.inc ext/mbstring/tests/014.inc ext/mbstring/tests/015.inc ext/mbstring/tests/016.inc ext/mbstring/tests/017.inc ext/mbstring/tests/018.inc ext/mbstring/tests/019.inc ext/mbstring/tests/019.phpt ext/mbstring/tests/common.inc ext/mbstring/tests/common.php: Rename common.php to common.inc for easier deletion of garbages. e.g. "rm -f *.php" 2002-03-07 Jason Greene <jason@inetgurus.net> * NEWS: MFH 2002-03-07 Hartmut Holzgraefe <hartmut@six.de> * ext/mcve/mcve.c: more proto stuff 2002-03-07 Jason Greene <jason@inetgurus.net> * NEWS: Add news entries representing the sockets rework. 2002-03-07 Hartmut Holzgraefe <hartmut@six.de> * ext/mcve/mcve.c: proto fixes: - changed 'double' to 'float' - changed 'int' to 'resource' where appropriate - format change: proto has to be on a single line and description on the very next one, some tools still rely on this 2002-03-06 Dan Kalowsky <dank@deadmime.org> * NEWS: iconv is back 2002-03-06 Derick Rethans <d.rethans@jdimedia.nl> * main/php_version.h configure.in: - Bump version numbers on HEAD 2002-03-06 Jani Taskinen <sniper@iki.fi> * NEWS: - Cleaned this abit (no such long stuff should be here if it can be found in Manual...and if it's not in manual yet, ADD IT! - Also moved some of the major changes in the beginning where people might even notice them. We should re-arrange this better btw. 2002-03-06 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/tests/001.phpt ext/exif/tests/002.phpt ext/exif/tests/test1.jpg ext/exif/tests/test2.jpg: - standard test scripts for exif * ext/exif/exif.c: -comments 2002-03-06 James Cox <james@awpimajes.com> * NEWS: fixed my foobarred news entry 2002-03-06 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: -comments 2002-03-06 Jason Greene <jason@inetgurus.net> * ext/sockets/php_sockets.h ext/sockets/sockets.c: Sockets Rework Patch 3 of 3 Nuked all fd code Rewrote socket_select to use arrays instead of the fd code (This has the side-effect of fixing quite a few bugs) 2002-03-06 Derick Rethans <d.rethans@jdimedia.nl> * ext/interbase/interbase.c: - Fix for bug #12383 and #14755: 105.05$ becomes 105.5$ (Patch by: Giancarlo Niccolai <giancarlo@niccolai.org>) 2002-03-06 James E. Flemer <jflemer@acm.jhu.edu> * ext/standard/dir.c: (PHP opendir) Changed CHECKUID_ALLOW_ONLY_DIR to CHECKUID_ALLOW_ONLY_FILE so that relative paths (vs absolute) work correctly. 2002-03-06 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/test.txt: -updated test to reflect third parameter of exif_read_data * ext/exif/exif.c: -missing efree -incorrect index/length computing: left from jhead 2002-03-06 Dan Kalowsky <dank@deadmime.org> * ext/standard/html.c: quelling a warning, and ensuring now undefined behavior * ext/posix/posix.c: When #if BLAHING a section, ensure to make it's prototype included. Returns build capability to MacOSX. 2002-03-06 Derick Rethans <d.rethans@jdimedia.nl> * ext/sybase_ct/php_sybase_ct.c ext/sybase/php_sybase_db.c: - Add 'appname' parameter to sybase_connect. (Patch by Christophe Sollet <csollet@coleebris.com>) * sapi/cgi/cgi_main.c: - Put them back (and do it right) 2002-03-06 Sascha Schumann <sascha@schumann.cx> * ext/session/session.c: Do the estrdups after checking for parameter constraints. No real memory leaks though, because they are catched by the memory manager. * ext/session/mod_mm.c: Did not revert back enough. This patch does not make sense, because it enforces the existence of a single directory. * ext/session/session.c: SID shall be defined to name=id, if the client did not supply a cookie. * ext/session/mod_files.c ext/session/mod_user.c ext/session/php_session.h ext/session/session.c: Merge in session API changes (carry around tsrm context) Now PHP_SESSION_API is defined to the date of the last change, so that externa source-code can handle changes more gracefully. * ext/session/session.c: Always initialize the track-vars 2002-03-06 Derick Rethans <d.rethans@jdimedia.nl> * sapi/cgi/cgi_main.c: - Remove unused variables * ext/posix/posix.c: - More ZTS fixes * ext/iconv/iconv.c: - Fix build with ZTS 2002-03-06 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/test.txt: -updated test * ext/exif/exif.c ext/exif/php_exif.h: -new working thumbnail code -everything uses new data structures -new function exif_thumbnail 2002-03-06 Sascha Schumann <sascha@schumann.cx> * ext/session/mod_files.c ext/session/mod_mm.c ext/session/mod_user.c ext/session/php_session.h ext/session/session.c: Weep out all recent commits of Yasuo. I don't have time right now to leave in the good ones and remove only the bad ones. There are some semantical changes which I reject, because they aim at fixing a bug which is at a completely other location. Then SID does not gefined anymore properly. (This broken patch has not been sent to me at all.) Also, there were *so* many whitespace changes which already make these commits bogus. 2002-03-06 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/session/mod_mm.c: Fixed typo :) * ext/session/mod_mm.c: Use static mm file save path. Now we can safely stop web server at start up when there is an error. Older mm uses static mm file path anyway. * ext/session/mod_files.c: Fix crash bug #14232 * ext/session/mod_mm.c: Make php start even with wrong save_path. 2002-03-06 Jason Greene <jason@inetgurus.net> * ext/sockets/php_sockets.h ext/sockets/sockets.c: Socket Rework Patch 2 Redesigned socket_recv() as outlined on php-dev Modified socket_last_error() to no longer clear the error Added socket_clear_error() Fixed socket_set_nonblock() Added socket_set_block() Fixed a proto Saved 1 byte of RAM : ) 2002-03-06 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/session/session.c: Oops. Fix compile failure * ext/session/session.c: Using session_save_path() after starting session is obvious error. Riase E_NOTICE error instead of E_WARNING. Since it is valid if user uses session_save_path() with session_module_name(). * ext/session/session.c: Return FALSE when session_module_name() failed. Fix a little leak. * ext/session/session.c: Raise error when session module failed to open or read * ext/session/mod_user.c ext/session/php_session.h: More TSRM work * ext/session/session.c ext/session/mod_user.c ext/session/mod_files.c: Remove TSRMLS_FETCH() and use TSRMLS_C/TSRMLS_D 2002-03-05 Markus Fischer <mfischer@guru.josefine.at> * NEWS: - Added recent changes done in ext/posix 2002-03-05 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/session/mod_mm.c: Fixed crash with mm save handler * ext/session/session.c: Fix bug #15322 and fix a little memory leak 2002-03-05 Zeev Suraski <zeev@zend.com> * ext/session/session.c: MFH * ext/session/session.c: Make $_SESSION and $HTTP_SESSION_VARS links to each other 2002-03-05 Stig Bakken <ssb@fast.no> * pear/tests/pear_config.phpt: * PEAR_Config test complete 2002-03-05 James Cox <james@awpimajes.com> * win32/install.txt: adding installation comments for 4.1.2 2002-03-05 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: -fixes -changed internal data structures 2002-03-05 Stig Bakken <ssb@fast.no> * pear/tests/merge.input pear/tests/pear_config.phpt pear/tests/toonew.conf pear/tests/user2.input: * update PEAR_Config test * pear/PEAR/Config.php: * fix singleton() so it actually works * insert file format version in written files * add getSetValues() method for listing the valid values for a set value 2002-03-05 Dan Kalowsky <dank@deadmime.org> * ext/odbc/php_odbc.c: Breaking BC, but making odbc_fetch_into behavior more consistent 2002-03-05 Markus Fischer <mfischer@guru.josefine.at> * ext/posix/php_posix.h ext/posix/posix.c: - Introduced posix_errno() (get error number from last error message) and posix_strerror() (convert error number into error string). - Do not output any error message if any of the function fails with FALSE return value. The proper way now is to call posix_errno() and posix_strerror() after encountering an error condition. - Function not support on a system no longer issue a 'not available' error but simply don't exist so we can safely use 'function_exists'. - Fixed protos. - Use new parameter parsing API. - posix_uname() may be aware of 'domainname' (GNU extension) - posix_getgrnam(), posix_getgrgid(): the returned information does no longer contains mixture of string and numbered keys (hash / array) but contains key 'member' with an array of all members in a list (or an empty array). This breaks BC but is the right thing IMHO. 2002-03-05 Stig Bakken <ssb@fast.no> * pear/PEAR.php: * fix PEAR::setErrorHandling() settings so they apply when using raiseError() 2002-03-05 Derick Rethans <d.rethans@jdimedia.nl> * pear/DB/tests/driver/15quote.phpt pear/DB/tests/driver/02fetch.phpt pear/DB/tests/driver/03simplequery.phpt pear/DB/tests/driver/04numcols.phpt pear/DB/tests/driver/05sequences.phpt pear/DB/tests/driver/06prepexec.phpt pear/DB/tests/driver/08affectedrows.phpt pear/DB/tests/driver/09numrows.phpt pear/DB/tests/driver/10errormap.phpt pear/DB/tests/driver/13limit.phpt pear/DB/tests/driver/14fetchmode_object.phpt pear/DB/tests/driver/01connect.phpt pear/DB/tests/db_factory.phpt pear/DB/tests/db_ismanip.phpt pear/DB/tests/db_parsedsn.phpt ext/xml/tests/001.phpt ext/xml/tests/002.phpt ext/xml/tests/003.phpt ext/xml/tests/004.phpt pear/DB/tests/db_error.phpt tests/basic/002.phpt: - More test fixes * ext/standard/tests/array/array_search.phpt ext/standard/tests/file/001.phpt ext/standard/tests/general_functions/004.phpt ext/standard/tests/math/abs.phpt ext/standard/tests/math/pow.phpt ext/standard/tests/math/round.phpt ext/standard/tests/strings/trim.phpt ext/standard/tests/strings/wordwrap.phpt ext/standard/tests/array/001.phpt ext/standard/tests/aggregation/aggregate.phpt ext/standard/tests/aggregation/aggregate_methods.phpt ext/standard/tests/aggregation/aggregate_methods_by_list.phpt ext/standard/tests/aggregation/aggregate_methods_by_regexp.phpt ext/standard/tests/aggregation/aggregate_properties.phpt ext/standard/tests/aggregation/aggregate_properties_by_list.phpt ext/standard/tests/aggregation/aggregate_properties_by_regexp.phpt ext/standard/tests/aggregation/aggregation_info.phpt ext/standard/tests/aggregation/deaggregate.phpt: - Fix tests to work with CLI * ext/mcrypt/tests/001.phpt: - Fix mcrypt tests 2002-03-05 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * README.TESTING: Fixed wrong description about CLI sapi usage. Currently "make test" is running test script as ./sapi/cli/php -c php.ini-dist run-tests.php "make test" does not work... I'm supposing this will be changed to use CGI sapi for now. * README.TESTING: Added README.TESTING 2002-03-05 Sebastian Bergmann <sb@sebastian-bergmann.de> * win32/pws-php4cgi.reg win32/install.txt: s/php.exe/php-cgi.exe/. 2002-03-05 Dan Kalowsky <dank@deadmime.org> * ext/odbc/birdstep.c: Added a comment for future reference 2002-03-05 Jason Greene <jason@inetgurus.net> * ext/sockets/sockets.c: Style Improvement 2002-03-05 Stig Bakken <ssb@fast.no> * pear/PEAR/Config.php pear/tests/pear_config.phpt: * fixed a couple of bugs in PEAR_Config revealed by test 2002-03-05 Frank M. Kromann <frank@frontbase.com> * ext/dbase/dbase.c: Killing compiler warning * ext/dbase/dbf_rec.c: Making dbase compule under WIn32 * main/php_ini.c: Killing compiler warning on Win32 2002-03-04 Dan Kalowsky <dank@deadmime.org> * ext/iconv/config.m4 ext/iconv/php_iconv.h: Fix for Bug 14423. Enables FreeBSD to use iconv functionality. 2002-03-04 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/test.txt: - also test TIFF support in GetImageSize * ext/exif/exif.c: - Read IsColor for TIFF 2002-03-04 Sebastian Bergmann <sb@sebastian-bergmann.de> * win32/php4.dsp win32/php4ts.dsp: Rename Win32 SAPI/CGI binary to php-cgi.exe. 2002-03-04 Jon Parise <jon@csh.rit.edu> * main/php_ticks.c: Silence a warning under Solaris 8 (WorkShop Compilers 5.0 98/12/15 C 5.0). 2002-03-04 Derick Rethans <d.rethans@jdimedia.nl> * NEWS: - Update NEWS with changes by Shane for "fix force redirect crash under multithreaded compile". (This is only in the published Windows binaries) * php.ini-dist: - MFH for: add stuff here also. * sapi/cgi/cgi_main.c: - MFH for: add comment for IIS users * php.ini-recommended: - MFH for: document force-redirect in php.ini * sapi/cgi/cgi_main.c: - MFH for: This is much better. With FORCE_CGI_REDIRECT turned on by default for compilation, we can now define this in the ini file. So it can be turned on for apache, turned off for IIS which does not have a redirect issue. Alternately, a different 'REDIRECT_STATUS' environment var can be defined in case some web server out there needs it. new ini vars cgi.force_redirect 0|1 cgi.redirect_status_env ENV_VAR_NAME * sapi/cgi/cgi_main.c: - MFH for: fix force redirect crash under multithreaded compile should be discused: fix redirect detection to only work with apache or netscape, where we know they set an environment variable regarding redirect. IIS has no security issue here. Don't know about other windows web servers. 2002-03-04 Sascha Schumann <sascha@schumann.cx> * ext/standard/info.c: Add apparently missing include 2002-03-04 Derick Rethans <d.rethans@jdimedia.nl> * main/config.w32.h main/php.h: - MFH for: turn on force redirect for windows * main/main.c: - Some more speed (and more consistency) 2002-03-04 Sascha Schumann <sascha@schumann.cx> * main/php_ini.c main/php_main.h main/main.c ext/standard/info.c: Supply php_html_puts which escapes a whole string.. now fully works in ZTS mode, too. 2002-03-04 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/standard/image.c: Silence warning. 2002-03-04 Sascha Schumann <sascha@schumann.cx> * ext/standard/info.c: revert last commit, puts does more through putc. * ext/standard/info.c: Use PHPWRITE to output data. Because this just outputs diagnostic information, a few spaces won't hurt (and multiple ones are rendered as one by browsers anyway). Micro-benchmarks which use phpinfo() as a mean to generate output will yield more through-put now (35 req/s vs. 83 req/s in tux). 2002-03-04 Derick Rethans <d.rethans@jdimedia.nl> * sapi/apache/config.m4: - Fix for bug #15572 (Patch by Ralf Nyr�n <ralf.nyren@educ.umu.se>) 2002-03-04 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * EXTENSIONS: -expose the fact i am working on exif as discussed with Rasmus * ext/standard/image.c: - TIFF support for GetImageSize TIFF support for GetImageSize * ext/exif/exif.c: - disabled debug information - added missing width/height from primary ifd for TIFF 2002-03-04 James Cox <james@awpimajes.com> * ext/odbc/php_birdstep.h ext/odbc/php_birstep.h: typos suck. 2002-03-04 Jason Greene <jason@inetgurus.net> * ext/sockets/sockets.c: Style mismatch: Jon's catch 2002-03-04 Stanislav Malyshev <stas@zend.com> * ext/standard/datetime.c: cygwin fix 2002-03-04 Jon Parise <jon@csh.rit.edu> * ext/session/session.c main/output.c: Silence warning under Solaris 8 (WorkShop Compilers 5.0 98/12/15 C 5.0). 2002-03-04 Derick Rethans <d.rethans@jdimedia.nl> * makerpm: - Fix a path and remove --with-imap 2002-03-04 Stig Bakken <ssb@fast.no> * pear/PEAR/Config.php: PEAR_Config rewrite: * Now supports (in theory) an arbitrary number of config "layers" (different sets of configuration data with a defined priority). * Specify the type of config values so different frontends can make user-friendly configuration interfaces. Valid types are currently "string", "integer", "file", "directory", "set" and "password". The set type lets you specify a limited set of values that the config values must be selected from. Password values are stored base64-encoded. * Added phpdoc comments and some docs for config values. * Added singleton method. 2002-03-04 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: -addition to last change: php_image.h must be included now 2002-03-04 James Cox <james@awpimajes.com> * ext/odbc/php_velocis.h ext/odbc/setup.stub ext/odbc/velocis.c main/build-defs.h.in ext/odbc/birdstep.c ext/odbc/config.m4 ext/odbc/php_birstep.h ext/odbc/php_odbc.c ext/odbc/php_odbc.h: Changing the Velocis extension to now be called Birdstep, due to a product/company change. added aliases for Velocis to the birdstep functions. 2002-03-04 Sascha Schumann <sascha@schumann.cx> * ext/standard/url_scanner_ex.c ext/standard/url_scanner_ex.re: Restore use of inline * build/build2.mk build/buildcheck.sh: Remove note, suppress warning * sapi/tux/php_tux.c: Reduce operations in the ub_write loop. * sapi/tux/php_tux.c: Free status line, initialize number_vec, correctly account for the number of bytes in the document, avoid strcpy/strlen. 2002-03-04 Rasmus Lerdorf <rasmus@php.net> * ext/standard/php_image.h ext/exif/exif.c: Let getimagesize() and read_exif_data() share the same constants to promote a little bit of code reuse here on two very similar problems. 2002-03-04 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/test.php ext/exif/test.txt: -Updated test.txt and provided test.php * ext/exif/exif.c: -Added TIFF support -Changed parameters after checking bugdatabase and discussion with Rasmus: 1st=Filename, 2nd=NeededSections 2002-03-04 Jason Greene <jason@inetgurus.net> * ext/sockets/sockets.c: Patch 1 of 3 (2 in 3 still in progress) of sockets rework Abstracted string -> ipv4 value conversion which unifies all functions Standardized Host Lookups Fixed Broken host error values Fixed error detection in sendmsg Added some safety struct zeroing Modified bind to consitentlyy use sockaddr_storage(not just for AF_UNIX) 2002-03-03 Zak Greant <zak@mysql.com> * build/buildcheck.sh: Added message regarding expected error messages for ./buildconf 2002-03-03 James E. Flemer <jflemer@acm.jhu.edu> * main/safe_mode.c: Added case for root directory when mode is not CHECKUID_ALLOW_ONLY_DIR. * main/safe_mode.c: Added case for root directory when mode is CHECKUID_ALLOW_ONLY_DIR. * ext/standard/dir.c: Added safe_mode checks on path. 2002-03-03 Thomas V.V.Cox <cox@idecnet.com> * pear/DB/MAINTAINERS: Updated maintainers 2002-03-03 Derick Rethans <d.rethans@jdimedia.nl> * NEWS: - Tidy up NEWS a little bit 2002-03-03 Alex Waugh <alex@alexwaugh.com> * sapi/webjames/README sapi/webjames/config.m4: Updated build instructions 2002-03-02 Derick Rethans <d.rethans@jdimedia.nl> * ext/pgsql/pgsql.c: - Make the 2nd parameter to pgsql_fetch_* support NULL in case 3 parameters are supplied, but you do not want to provide a row number yourself. - Make the 2nd parameter to pgsql_fetch_* support NULL in case 3 parameters are supplied, but you do not want to provide a row number yourself. 2002-03-02 Hartmut Holzgraefe <hartmut@six.de> * ext/standard/math.c: php has no 'double', only 'float' * ext/mcve/mcve.c ext/mcve/php_mcve.h: tab/space mixture cleand up, editor config comments added, minor proto fixes * ext/standard/aggregation.c main/output.c: typo fix 2002-03-02 Zeev Suraski <zeev@zend.com> * ext/session/session.c: MFH - crash bug fix * ext/session/session.c: Fix another crash bug 2002-03-02 Hartmut Holzgraefe <hartmut@six.de> * ext/ctype/config.m4: enable ctype functions by default 2002-03-02 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: Wrong brackets by rasmus...but sorry the fault was mine because i missed them... i also decided to call the first working version 1.0a by the way: currently i am working on tiff files and it looks like it may work 2002-03-02 Zeev Suraski <zeev@zend.com> * main/php_version.h configure.in: Bump those up too in case we ever release * configure.in main/php_version.h: Fix version number * ext/session/session.c: MFH - crash bug fix * ext/session/session.c: Fix a crash bug in the session module 2002-03-02 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/string.c: - Fix warning message for join(). * ext/mcve/CREDITS ext/tokenizer/CREDITS ext/dbx/CREDITS: - Fix CREDITS files * ext/gd/gd.c: - Make GD functions only available if they really exist (Patch by matslin@orakel.ntnu.no) 2002-03-02 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/mbstring/tests/001.phpt ext/mbstring/tests/002.inc ext/mbstring/tests/002.phpt ext/mbstring/tests/003.inc ext/mbstring/tests/003.phpt ext/mbstring/tests/004.inc ext/mbstring/tests/004.phpt ext/mbstring/tests/005.inc ext/mbstring/tests/005.phpt ext/mbstring/tests/006.inc ext/mbstring/tests/006.phpt ext/mbstring/tests/007.inc ext/mbstring/tests/007.phpt ext/mbstring/tests/008.inc ext/mbstring/tests/008.phpt ext/mbstring/tests/009.inc ext/mbstring/tests/009.phpt ext/mbstring/tests/010.inc ext/mbstring/tests/010.phpt ext/mbstring/tests/011.inc ext/mbstring/tests/011.phpt ext/mbstring/tests/012.inc ext/mbstring/tests/012.phpt ext/mbstring/tests/013.inc ext/mbstring/tests/013.phpt ext/mbstring/tests/014.inc ext/mbstring/tests/014.phpt ext/mbstring/tests/015.inc ext/mbstring/tests/015.phpt ext/mbstring/tests/016.inc ext/mbstring/tests/016.phpt ext/mbstring/tests/017.inc ext/mbstring/tests/017.phpt ext/mbstring/tests/018.inc ext/mbstring/tests/018.phpt ext/mbstring/tests/019.inc ext/mbstring/tests/019.phpt ext/mbstring/tests/common.php ext/mbstring/tests/skipif.inc: Add mbstring tests * build/rules.mk: Use php.ini-dist as default config file for testing. 2002-03-02 Rasmus Lerdorf <rasmus@php.net> * ext/exif/exif.c: Fix a couple of warnings 2002-03-02 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/iconv/iconv.c: Improved iconv usage with libc's iconv. No overrun. More efficient memory allocation. Hopefully, all bugs reported for iconv will be resolved when users are using libc iconv. * ext/iconv/tests/eucjp2iso2022jp.inc ext/iconv/tests/eucjp2iso2022jp.phpt ext/iconv/tests/eucjp2sjis.inc ext/iconv/tests/eucjp2sjis.phpt ext/iconv/tests/eucjp2utf8.inc ext/iconv/tests/eucjp2utf8.phpt ext/iconv/tests/002.phpt: Add more tests for iconv 2002-03-02 Stig Bakken <ssb@fast.no> * pear/tests/pear_autoloader.phpt pear/tests/pear_config.phpt pear/tests/pear_error.phpt pear/tests/pear_error2.phpt pear/tests/pear_error3.phpt pear/tests/pear_error4.phpt pear/tests/pear_registry.phpt: * more cli test fixes * pear/DB/tests/db_error.phpt pear/DB/tests/db_error2.phpt pear/DB/tests/db_parsedsn.phpt pear/DB/tests/mysql/02fetch.phpt pear/DB/tests/mysql/03simplequery.phpt pear/DB/tests/mysql/04numcols.phpt pear/DB/tests/mysql/05sequences.phpt pear/DB/tests/mysql/06prepexec.phpt pear/DB/tests/mysql/09numrows.phpt pear/DB/tests/mysql/10errormap.phpt pear/DB/tests/mysql/12tableinfo.phpt pear/DB/tests/mysql/13limit.phpt pear/DB/tests/mysql/14fetchmode_object.phpt pear/tests/pear_config.phpt pear/tests/pear_error.phpt: * updated tests to work with cli * pear/tests/pear1.phpt: fix test * run-tests.php: * work with sapi/cli 2002-03-01 Rasmus Lerdorf <rasmus@php.net> * ext/odbc/config.m4: In case we do a 4.1.3, add this trivial fix 2002-03-01 Edin Kadribasic <edink@proventum.net> * main/main.c: Added PHP_SAPI constant which contains the name of running SAPI. 2002-03-01 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/url_scanner_ex.re ext/standard/url_scanner_ex.c: - Fix for Sun WorkShop 6 update 2 compiler (Bug #15812) 2002-03-01 Andrei Zmievski <andrei@ispi.net> * TODO: *** empty log message *** 2002-03-01 Derick Rethans <d.rethans@jdimedia.nl> * ext/interbase/interbase.c: - Add support for returning NULL values from Interbase resultsets (Patch by Daniela Mariaschi <mariaschi@libero.it>) 2002-03-01 Jani Taskinen <sniper@iki.fi> * NEWS: - We haven't got the branch yet.. - Some typo fixes and correct grammar. 2002-03-01 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/msession/msession.c: Fix compiler warnings and header file path. 2002-03-01 Zeev Suraski <zeev@zend.com> * ext/standard/array.c: Fix php_splice() to work with large values 2002-03-01 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/README: Update doc * TODO: Added todo item for Java extention documentation. * TODO-4.2.txt TODO: Merge TODO-4.2.txt into TODO. 2002-03-01 Stig Bakken <ssb@fast.no> * pear/PEAR/Command.php pear/PEAR/Command/Common.php pear/PEAR/Command/Install.php: * code for install/uninstall/upgrade complete, not yet tested 2002-03-01 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * main/output.c: Do explicit test againt to FAILURE. 2002-03-01 Stig Bakken <ssb@fast.no> * pear/PEAR/Packager.php: * output a reminder to set CVS tags after packaging * build/rules.mk: * use cli sapi to run tests 2002-03-01 Shane Caraveo <shane@caraveo.com> * php.ini-dist: add stuff here also. * sapi/cgi/cgi_main.c: add comment for IIS users fix some whitespace 2002-03-01 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/php_exif.h ext/exif/test.txt ext/exif/.cvsignore ext/exif/exif.c: +Support for Photographer/Editor Copyright as associative array as this is a new feature the change (optionally being an array) has to be mentioned in documentation. +New function exif_headername can be used to read the internal Tag namelist (was mainly created for debugging purpose but maybe somone writes code to create/update exif headers here). +An internal version number is present. +A testpage is supplied test.txt describes how the test works. +The oldfunction read_exif_data has got an alias exif_read_data As the old version of this module is very buggy i decided to implement the testpage (test.txt) and to create the alias. The test script only works with the alias as the old version does not pass tests. By the way it seems a good way to prepend 'exif_' to all functions in the module. 2002-03-01 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/snmp/snmp.c: Fix compiler warnings * ext/standard/var.c ext/zlib/zlib.c main/main.c main/output.c main/php_output.h ext/standard/basic_functions.c ext/session/session.c: Added ob_get_status() to get array of buffers and it's status. (DO NOT document this function yet) Fixed crash bug with ob_end_*() function. ob_end_*() will not delete buffers that may not be deleted. php_start_ob_buffer() and php_ob_set_internal_handler() takes parameter for if the buffer created may be deleted or not. Added 3rd parameter "bool erase" to ob_start(). If FALSE, buffer may not be deleted until script finshes. Changed ob_*() function that have void return type to bool. All ob_*() functions return TRUE for success, FALSE for failure. 2002-03-01 Shane Caraveo <shane@caraveo.com> * php.ini-recommended: document force-redirect in php.ini * sapi/cgi/cgi_main.c: This is much better. With FORCE_CGI_REDIRECT turned on by default for compilation, we can now define this in the ini file. So it can be turned on for apache, turned off for IIS which does not have a redirect issue. Alternately, a different 'REDIRECT_STATUS' environment var can be defined in case some web server out there needs it. new ini vars cgi.force_redirect 0|1 cgi.redirect_status_env ENV_VAR_NAME * sapi/cgi/cgi_main.c: fix force redirect crash under multithreaded compile should be discused: fix redirect detection to only work with apache or netscape, where we know they set an environment variable regarding redirect. IIS has no security issue here. Don't know about other windows web servers. * main/config.w32.h main/php.h: turn on force redirect for windows 2002-02-28 Jani Taskinen <sniper@iki.fi> * ext/crack/config.m4: - Fixed a typo. (caught by jtate@php.net) 2002-02-28 Rasmus Lerdorf <rasmus@php.net> * ext/gd/gd.c: Change fatal errors to warnings - fix bug #15797 2002-02-28 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/basic_functions.c ext/standard/var.c: - Make it a boolean 2002-02-28 Brad House <brad@mainstreetsoftworks.com> * ext/mcve/mcve.c: Fix proto for mcve_initconn 2002-02-28 Edin Kadribasic <edink@proventum.net> * NEWS: Inserted a note about CGI binary name change. 2002-02-28 Marc Boeren <M.Boeren@guidance.nl> * ext/dbx/howto_extend_dbx.html: Updating docs (Mc) 2002-02-28 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/exif.c: Changed file to match CODING_STANDARDS except function names that match jhead.c project. I think it is acceptable using naming conventions of other projects when borrowing code. 2002-02-28 Edin Kadribasic <edink@proventum.net> * main/php_ini.c: Removed CWD from php_ini_search_path when using CLI SAPI. 2002-02-28 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/sysvshm/sysvshm.c sapi/aolserver/aolserver.c sapi/apache2filter/php_functions.c ext/mcrypt/mcrypt.c ext/mhash/mhash.c: Use {NULL, NULL, NULL} to terminate function entry. 2002-02-28 Edin Kadribasic <edink@proventum.net> * sapi/cgi/config.m4: Default name of CGI binary changed to php-cgi. 2002-02-28 Marc Boeren <M.Boeren@guidance.nl> * NEWS: Added entry that I forgot when comitting the code (Mc) 2002-02-28 Sebastian Bergmann <sb@sebastian-bergmann.de> * win32/imap_sendmail.c scripts/conv_z_macros sapi/apache2filter/php_apache.h sapi/apache2filter/php_functions.c sapi/isapi/php4isapi.c sapi/apache/mod_php4.h sapi/apache/php_apache.c sapi/apache2filter/apache_config.c pear/XML/Parser.php pear/PEAR/Command/Install.php pear/Schedule/At.php pear/PEAR/Command/Common.php pear/PEAR/Dependency.php pear/PEAR/Installer.php pear/PEAR/Packager.php pear/PEAR/Registry.php pear/PEAR/Remote.php pear/PEAR/Uploader.php pear/Net/Dig.php pear/Net/SMTP.php pear/PEAR/Command.php pear/PEAR/CommandResponse.php pear/PEAR/Common.php pear/PEAR/Config.php pear/Mail/mail.php pear/Mail/sendmail.php pear/Mail/smtp.php pear/Net/Curl.php pear/File/SearchReplace.php pear/HTML/Common.php pear/HTML/IT.php pear/HTML/ITX.php pear/HTML/IT_Error.php pear/HTML/Menu_Browser.php pear/HTML/Page.php pear/HTML/Processor.php pear/HTML/Select.php pear/Experimental/Image/gbutton.php pear/Experimental/Image/gtext.php pear/File/Find.php pear/File/Passwd.php pear/DB/odbc.php pear/DB/storage.php pear/DB/sybase.php pear/Date/Human.php pear/Experimental/Image/color_helper.php pear/DB/msql.php pear/DB/mssql.php pear/DB/mysql.php pear/DB/oci8.php pear/DB/ifx.php pear/DB/dbase.php pear/DB/fbsql.php pear/DB/ibase.php pear/DB/common.php pear/Console/Getopt.php pear/Archive/Tar.php pear/CMD.php pear/HTTP.php pear/Mail.php pear/PEAR.php pear/System.php main/php_open_temporary_file.h main/php_output.h main/php_reentrancy.h main/php_sprintf.c main/php_streams.h main/php_ticks.c main/php_ticks.h main/reentrancy.c main/safe_mode.c main/snprintf.h main/streams.c main/build-defs.h.in main/fopen_wrappers.h main/network.c main/php_content_types.c main/php_globals.h main/php_logos.c main/php_network.h main/php_open_temporary_file.c ext/zlib/zlib_fopen_wrapper.c main/SAPI.h ext/xslt/xslt.c ext/yaz/php_yaz.c ext/yaz/php_yaz.h ext/zip/php_zip.h ext/zip/zip.c ext/xslt/php_xslt.h ext/xslt/sablot.c ext/xmlrpc/xmlrpc-epi-php.c ext/xslt/php_sablot.h ext/xmlrpc/php_xmlrpc.h ext/wddx/wddx.c ext/xml/xml.c ext/w32api/test_dll/test_dll.c ext/wddx/php_wddx.h ext/w32api/examples/uptime.php ext/w32api/test_dll/dll_test.h ext/w32api/w32api.c ext/w32api/php_w32api.h ext/sysvshm/sysvshm.c ext/tokenizer/php_tokenizer.h ext/tokenizer/tokenizer.c ext/vpopmail/php_vpopmail.c ext/sysvsem/sysvsem.c ext/sysvshm/php_sysvshm.h ext/sybase_ct/php_sybase_ct.h ext/sysvsem/php_sysvsem.h ext/standard/url_scanner_ex.h ext/standard/url_scanner_ex.re ext/standard/versioning.c ext/sybase/php_sybase_db.h ext/standard/reg.c ext/standard/reg.h ext/standard/scanf.c ext/standard/scanf.h ext/standard/syslog.c ext/standard/type.c ext/standard/uniqid.c ext/standard/uniqid.h ext/standard/url.c ext/standard/url.h ext/standard/url_scanner_ex.c ext/standard/php_metaphone.h ext/standard/php_parsedate.h ext/standard/php_rand.h ext/standard/php_smart_str.h ext/standard/php_smart_str_public.h ext/standard/php_standard.h ext/standard/php_string.h ext/standard/php_type.h ext/standard/php_var.h ext/standard/php_versioning.h ext/standard/quot_print.c ext/standard/quot_print.h ext/standard/rand.c ext/standard/php_image.h ext/standard/php_iptc.h ext/standard/php_lcg.h ext/standard/php_link.h ext/standard/php_mail.h ext/standard/php_math.h ext/standard/info.h ext/standard/iptc.c ext/standard/lcg.c ext/standard/link.c ext/standard/mail.c ext/standard/math.c ext/standard/md5.c ext/standard/md5.h ext/standard/metaphone.c ext/standard/microtime.c ext/standard/microtime.h ext/standard/pack.c ext/standard/pack.h ext/standard/pageinfo.c ext/standard/pageinfo.h ext/standard/php_assert.h ext/standard/php_browscap.h ext/standard/php_crypt.h ext/standard/php_dir.h ext/standard/php_ext_syslog.h ext/standard/php_fopen_wrapper.c ext/standard/php_fopen_wrappers.h ext/standard/php_ftok.h ext/standard/file.h ext/standard/filestat.c ext/standard/flock_compat.c ext/standard/flock_compat.h ext/standard/formatted_print.c ext/standard/fsock.h ext/standard/ftok.c ext/standard/ftp_fopen_wrapper.c ext/standard/head.c ext/standard/head.h ext/standard/html.c ext/standard/html.h ext/standard/http_fopen_wrapper.c ext/standard/image.c ext/standard/info.c ext/standard/aggregation.h ext/standard/assert.c ext/standard/base64.c ext/standard/base64.h ext/standard/browscap.c ext/standard/crc32.c ext/standard/crc32.h ext/standard/credits.c ext/standard/credits.h ext/standard/crypt.c ext/standard/cyr_convert.c ext/standard/cyr_convert.h ext/standard/dir.c ext/standard/dns.c ext/standard/dns.h ext/standard/exec.h ext/standard/file.c ext/snmp/snmp.c ext/standard/aggregation.c ext/snmp/php_snmp.h ext/shmop/php_shmop.h ext/shmop/shmop.c ext/session/mod_files.h ext/session/mod_mm.c ext/session/mod_mm.h ext/session/mod_user.c ext/session/mod_user.h ext/session/php_session.h ext/readline/readline.c ext/recode/php_recode.h ext/recode/recode.c ext/session/mod_files.c ext/qtdom/qtdom.h ext/readline/php_readline.h ext/posix/posix.c ext/pspell/php_pspell.h ext/pspell/pspell.c ext/qtdom/qtdom.c ext/posix/php_posix.h ext/pcntl/php_pcntl.h ext/pcntl/php_signal.c ext/pcntl/php_signal.h ext/pcre/php_pcre.c ext/pcre/php_pcre.h ext/pdf/php_pdf.h ext/pcntl/pcntl.c ext/overload/overload.c ext/overload/php_overload.h ext/ovrimos/ovrimos.c ext/oracle/oracle.c ext/odbc/php_odbc.h ext/odbc/php_velocis.h ext/odbc/velocis.c ext/openssl/openssl.c ext/odbc/php_odbc.c ext/notes/php_notes.h ext/oci8/oci8.c ext/ncurses/ncurses_fe.c ext/ncurses/ncurses_functions.c ext/ncurses/php_ncurses.h ext/ncurses/php_ncurses_fe.h ext/notes/php_notes.c ext/mysql/php_mysql.h ext/ncurses/ncurses.c ext/mssql/php_mssql.c ext/mssql/php_mssql.h ext/mysql/php_mysql.c ext/msql/php_msql.c ext/msql/php_msql.h ext/mnogosearch/php_mnogo.c ext/mnogosearch/php_mnogo.h ext/msession/php_msession.h ext/mhash/mhash.c ext/mbstring/mbstring.h ext/mcve/mcve.c ext/mailparse/php_mailparse.h ext/mailparse/rfc2045appendurl.c ext/mbstring/mbstring.c ext/mailparse/mailparse.c ext/ircg/ircg_scanner.c ext/ircg/ircg_scanner.re ext/ircg/php_ircg.h ext/ldap/ldap.c ext/imap/php_imap.h ext/ircg/ircg.c ext/imap/php_imap.c ext/hyperwave/hg_comm.h ext/hyperwave/hw.c ext/hyperwave/hw_error.h ext/hyperwave/php_hyperwave.h ext/icap/php_icap.c ext/gmp/php_gmp.h ext/hyperwave/hg_comm.c ext/gmp/gmp.c ext/gd/gdt1.c ext/gd/gdt1.h ext/gd/php_gd.h ext/ftp/ftp.h ext/ftp/php_ftp.c ext/ftp/php_ftp.h ext/gd/gd.c ext/fribidi/php_fribidi.h ext/ftp/ftp.c ext/filepro/php_filepro.h ext/fribidi/fribidi.c ext/fbsql/php_fbsql.h ext/fdf/php_fdf.h ext/filepro/filepro.c ext/domxml/php_domxml.h ext/fbsql/php_fbsql.c ext/dbplus/php_dbplus.h ext/dio/dio.c ext/dio/php_dio.h ext/domxml/php_domxml.c ext/dbplus/dbplus.c ext/dbplus/php_dbplus.c ext/dbase/dbase.c ext/dbase/php_dbase.h ext/dba/php_dba.h ext/dba/dba_dbm.c ext/dba/dba_gdbm.c ext/dba/dba_ndbm.c ext/dba/dba_cdb.c ext/dba/dba_db2.c ext/dba/dba_db3.c ext/dba/dba.c ext/db/db.c ext/db/php_db.h ext/cyrus/cyrus.c ext/cyrus/php_cyrus.h ext/cybermut/cybermut.c ext/cybermut/php_cybermut.h ext/cybercash/cybercash.h ext/ctype/ctype.c ext/ctype/php_ctype.h ext/crack/crack.c ext/crack/php_crack.h ext/cpdf/php_cpdf.h ext/cpdf/cpdf.c ext/ccvs/ccvs.c ext/ccvs/ccvs.h ext/bz2/bz2.c ext/bz2/php_bz2.h ext/bcmath/php_bcmath.h ext/bcmath/bcmath.c ext/aspell/php_aspell.h ext/aspell/aspell.c build/rules_pear.mk build/sysv_makefile build/rules.mk build/rules_common.mk build/mkdep.awk build/program.mk build/ltlib.mk build/fastgen.sh build/library.mk build/build2.mk build/dynlib.mk build/bsd_makefile build/build.mk dynlib.m4 header run-tests.php: Maintain headers. 2002-02-28 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * CODING_STANDARDS: Recommend ZEND_* macro over PHP_* macro as discussed in php-dev. 2002-02-28 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/exif/exif.c ext/exif/php_exif.h: Fix headers. 2002-02-28 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * README.CVS-RULES: Added how to put bug ID in commit message. 2002-02-28 Rasmus Lerdorf <rasmus@php.net> * main/rfc1867.c: That code made no sense - fix it to do what was originally intended 2002-02-28 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/iconv/iconv.c: Fix iconv. Patch by (itai@siftology.com) 2002-02-28 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> * ext/exif/php_exif.h ext/exif/exif.c ext/exif/CREDITS: +Added UNICODE support for Comments +Added Description,Artist +Added missing memory deallocation +Corrected error with multiple comments +Corrected handling of ExifVersion, Tag has 4 ASCII characters *WITHOUT* NUL +Corrected handling of Thumbnailsize if current source detects size < 0 +Changed all fields to char* that do not have a maximum length in EXIF standard +Undocumented second Parameter ReadAll frees memory to early -> moved to third position default changed to false -> faster +New second Parameter [true|false] to specify whether or not to to read thumbnails -> reading is timeconsumpting suppose default should be false -> done so 2002-02-27 Rasmus Lerdorf <rasmus@php.net> * php.ini-dist: Drop this default to 12 to avoid some of the .000000000000001 questions. I can't imagine much of a BC issue, and we aren't changing existing php.ini files anyway. If someone can think of a problem with this, please speak up 2002-02-27 Brad House <brad@mainstreetsoftworks.com> * ext/mcve/CREDITS ext/mcve/Makefile.in ext/mcve/config.m4 ext/mcve/mcve.c ext/mcve/mcve.php ext/mcve/php_mcve.h ext/mcve/tests/001.phpt ext/mcve/tests/mcve_simple_test.php ext/mcve/tests/mcve_test1.php ext/mcve/tests/mcve_test2.php: Initial MCVE extension added (Credit Card Processing) 2002-02-27 Andrei Zmievski <andrei@ispi.net> * ext/overload/EXPERIMENTAL ext/overload/README: This has been scaring people off. 2002-02-27 Jani Taskinen <sniper@iki.fi> * NEWS: - Missed this one.. 2002-02-27 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/basic_functions.c: - Fix proto 2002-02-27 Adam Dickmeiss <adam@indexdata.dk> * ext/yaz/php_yaz.c ext/yaz/php_yaz.h: Implemented yaz_schema. Cleanup. 1.8 YAZ required 2002-02-27 Jani Taskinen <sniper@iki.fi> * configure.in main/php_version.h: Fixed minor typo. 2002-02-27 Derick Rethans <d.rethans@jdimedia.nl> * main/php_version.h: - Oops... wishful thinking here :) * main/php_version.h configure.in: - Update version number 2002-02-27 James Cox <james@awpimajes.com> * NEWS: correcting grammar so it's readable 2002-02-27 Sebastian Bergmann <sb@sebastian-bergmann.de> * NEWS: Add 4.1.2 NEWS entries to HEAD. 2002-02-27 Zeev Suraski <zeev@zend.com> * main/php_version.h NEWS configure.in: Go with 4.1.2 2002-02-27 Sebastian Bergmann <sb@sebastian-bergmann.de> * sapi/servlet/servlet.java: URLEncoder.encode(string) is deprecated in the Java 2 SDK 1.4. 2002-02-26 Andi Gutmans <andi@zend.com> * main/php_main.h main/main.c: - Hopefully fix the shutdown_memory_manager() stuff. Part of my previous - patch seems to have gotten lost 2002-02-26 Derick Rethans <d.rethans@jdimedia.nl> * ext/session/session.c: - Bring error message back 2002-02-26 Sebastian Bergmann <sb@sebastian-bergmann.de> * main/main.c: TSRM Cleanup. 2002-02-26 Andi Gutmans <andi@zend.com> * main/main.c main/php_main.h: - Pass shutdown_memory_manager the TSRMLS context. 2002-02-26 Rasmus Lerdorf <rasmus@php.net> * NEWS: There are no fdf changes in this branch as far as I can see. Not sure where this NEWS item came from. * NEWS: Remove gd NEWS item * ext/gd/config.m4: This line makes no sense to me 2002-02-26 Zeev Suraski <zeev@zend.com> * NEWS: Beautify 2002-02-26 Dan Kalowsky <dank@deadmime.org> * ext/odbc/php_odbc.c: Bug fix 15719 as submited by Joseph Southwell and allows NULL values in ODBC 2002-02-26 Edin Kadribasic <edink@proventum.net> * ext/standard/dl.c: Allow use of dl() when CLI is compiled with ZTS (bug #15717). 2002-02-25 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pspell/pspell.c: Fix pspell function entry 2002-02-25 jim winstead <jimw@apache.org> * sapi/apache/config.m4: make it more clear that --with-apache and --with-apxs only work with apache 1.x. 2002-02-25 Thomas V.V.Cox <cox@idecnet.com> * pear/DB/ibase.php: Experimental support for handling all the parameters accepted by ibase_connect(). 2002-02-25 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * NEWS: Add news for mm save handler and multiple SAPI start up problem fix * ext/session/mod_mm.c ext/session/session.c: MFH - Fixed CGI (or other SAPI) start up failure when mm save handler is used 2002-02-24 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * pear/DB/pgsql.php: fixed error message handling with PostgreSQL 7.2 2002-02-24 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/var.c: - Fix the fix.. no need to escape " in single quotes * ext/standard/var.c: - Add slashes around string output * win32/install.txt: - Update with XP (Thanx to Jan for the patch) 2002-02-24 Stig Bakken <ssb@fast.no> * pear/package.dtd: * fix broken dtd 2002-02-24 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/wddx/wddx.c: Make phpinfo() look nicer. 2002-02-23 Markus Fischer <mfischer@guru.josefine.at> * ext/xslt/sablot.c: - Fix info output (Peter Neuman <neuman_peter@hotmail.com>). 2002-02-23 Thomas V.V.Cox <cox@idecnet.com> * pear/package.dtd: DTD corrections (make it require minimal data for installer) 2002-02-23 Stig Bakken <ssb@fast.no> * pear/PEAR/Command/Common.php pear/PEAR/Command/Install.php pear/PEAR/Command.php pear/PEAR/CommandResponse.php pear/PEAR/Packager.php: * started implementing new "cross-environment" command API 2002-02-23 Holger Zimmermann <zimpel@t-online.de> * sapi/pi3web/pi3web_sapi.h sapi/pi3web/pi3web_sapi.c: Fixed functionality to read in server variables. 2002-02-23 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * pear/DB/MAINTAINERS pear/DB/pgsql.php: updated message format for PostgreSQL 7.2. 2002-02-23 Thomas V.V.Cox <cox@idecnet.com> * pear/README: Point readers to pear web * pear/TODO: outdated TODO not needed for the moment 2002-02-23 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * NEWS: NEWS updated. * ext/mbstring/mbstring.c ext/gd/config.m4 ext/fdf/Makefile.in: - fixed configuration problem as shared extension for fdf. - fixed configuration problem as shared extension for gd with freetype1. - default output encoding of mbstring changed to pass to fix initialization problem. * ext/gd/config.m4: fixed configure error with freetype1. * ext/mbstring/mbstring.c ext/mbstring/php_mbregex.c: fixed a comment and default output encoding changed to pass. * ext/mbstring/mbfilter.c: php.h included. 2002-02-22 Christian Stocker <chregu@phant.ch> * pear/HTML/ITX.php: E_ALL fix 2002-02-22 Vincent Blavet <vincent@blavet.net> * pear/PEAR/Installer.php pear/PEAR/Packager.php: * Packager : Changing the order of the files in the package archive file. The package.xml file is now at the 'root' of the archive, the files tree are under a 'packagename'-'packageversion' folder * Installer : installing the knew archive format AND supporting the existing format 2002-02-22 Frank M. Kromann <frank@frontbase.com> * ext/fbsql/php_fbsql.c: Return true on update success. 2002-02-22 Rasmus Lerdorf <rasmus@php.net> * NEWS: Keep track of what has gone into 4.1.2 so far 2002-02-22 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/session/session.c: Fix crash bug. 4th parameter is not incremental value, but it's assigned. * ext/pspell/pspell.c: Fix crash bug 15607 2002-02-21 Stefan Esser <s.esser@e-matters.de> * main/rfc1867.c: fixing boundary check before someone other does it... 2002-02-21 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/standard/math.c ext/standard/php_math.h ext/standard/basic_functions.c: Added fmod() function 2002-02-21 Mika Tuupola <tuupola@appelsiini.net> * pear/File/Find.php: * Update PHPDoc. 2002-02-21 Sebastian Bergmann <sb@sebastian-bergmann.de> * win32/php4dllts.dsp win32/php4dll.dsp: Add aggregation to Win32 build. 2002-02-21 Andrei Zmievski <andrei@ispi.net> * ext/standard/basic_functions.h ext/standard/php_standard.h ext/standard/tests/aggregation/.cvsignore ext/standard/tests/aggregation/aggregate.lib.php ext/standard/tests/aggregation/aggregate.phpt ext/standard/tests/aggregation/aggregate_methods.phpt ext/standard/tests/aggregation/aggregate_methods_by_list.phpt ext/standard/tests/aggregation/aggregate_methods_by_regexp.phpt ext/standard/tests/aggregation/aggregate_properties.phpt ext/standard/tests/aggregation/aggregate_properties_by_list.phpt ext/standard/tests/aggregation/aggregate_properties_by_regexp.phpt ext/standard/tests/aggregation/aggregation_info.phpt ext/standard/tests/aggregation/deaggregate.phpt ext/standard/aggregation.c ext/standard/aggregation.h ext/standard/basic_functions.c ext/standard/Makefile.in NEWS: Adding object aggregation capability along with tests. 2002-02-21 Sean Bright <elixer@erols.com> * acinclude.m4: Fix for bug #15605 2002-02-20 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: "o|a|b" is not valid ZE code. changed to "o|ab" 2002-02-20 Vincent Blavet <vincent@blavet.net> * pear/scripts/pearwin.php: Config variables must be set between "" while using pear.bat windows script * pear/Archive/Tar.php: * Correct bug while using windows dir separator. It is now supported 2002-02-20 Rasmus Lerdorf <rasmus@php.net> * ext/standard/crc32.c ext/standard/crc32.h: Split CRC32 table out into a header file so other code can use it 2002-02-20 Derick Rethans <d.rethans@jdimedia.nl> * ext/iconv/iconv.c: - Fix for bug #15628 (for real now :) * sapi/nsapi/nsapi-readme.txt: - Reformatting * ext/iconv/iconv.c: - Fix for bug #15638 2002-02-19 David Hedbor <david@hedbor.org> * sapi/caudium/caudium.c: Fixed environment hashing again. 2002-02-19 Derick Rethans <d.rethans@jdimedia.nl> * genfiles: - Fix removal of #line lines * EXTENSIONS: - Update to note that I'm the mcrypt extension maintainer 2002-02-19 Marc Boeren <M.Boeren@guidance.nl> * EXTENSIONS: changed comment for dbx module 2002-02-19 Dan Kalowsky <dank@deadmime.org> * EXTENSIONS: 2002-02-18 Martin Jansen <mail@martin-jansen.de> * pear/PEAR.php: ='typo' 2002-02-18 Marc Boeren <M.Boeren@guidance.nl> * ext/dbx/dbx.c ext/dbx/dbx_sybasect.h: Oops: source copy&paste should be done with care :) (Mc) * ext/dbx/CREDITS ext/dbx/Makefile.in ext/dbx/dbx.c ext/dbx/dbx.dsp ext/dbx/dbx_sybasect.c ext/dbx/dbx_sybasect.h ext/dbx/tests/002.phpt ext/dbx/tests/005.phpt ext/dbx/tests/006.phpt ext/dbx/tests/dbx_test.p: Added support for Sybase-CT to dbx module (Mc). 2002-02-18 Ludovico Magnocavallo <ludo@sumatrasolutions.com> * pear/DB/ibase.php: fixed typo 2002-02-17 Martin Jansen <mail@martin-jansen.de> * pear/scripts/pearcmd-info.php: * Fix for bug #15500 2002-02-17 Stig Bakken <ssb@fast.no> * pear/package.dtd: * allow <license> in both <package> and <release> * added <changelog> element * added "data" role for files * allow nested <dir> elements 2002-02-17 Alex Waugh <alex@alexwaugh.com> * sapi/webjames/webjames.c: Updated to new TSRM macros 2002-02-17 Mika Tuupola <tuupola@appelsiini.net> * pear/File/Find.php: * added mapTreeMultiple() method. 2002-02-17 Jon Parise <jon@csh.rit.edu> * pear/Makefile.in: Image/Remote.php and Mail/mime.php have moved to the pear/ repository. 2002-02-15 Andrei Zmievski <andrei@ispi.net> * NEWS: Fix. 2002-02-15 Jason Greene <jason@inetgurus.net> * ext/sockets/sockets.c: Fix parse string (Since arg6 is initialized at null this still catches the wrong param condition) 2002-02-15 Dan Kalowsky <dank@deadmime.org> * ext/odbc/php_odbc.c: fix for bug 15516, patch submitted by torben@php.net 2002-02-15 Derick Rethans <d.rethans@jdimedia.nl> * sapi/cgi/cgi_main.c sapi/cli/php_cli.c: - Make the errorcode 255. (Doing docs right away) 2002-02-15 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/config.m4: Fix problem with sesssion_pgsql module 2002-02-15 Sean Bright <elixer@erols.com> * ext/xslt/config.m4: Fix cosmetic bug. (#15142) 2002-02-14 Derick Rethans <d.rethans@jdimedia.nl> * sapi/cgi/cgi_main.c sapi/cli/php_cli.c sapi/pi3web/pi3web_sapi.c main/main.c: - Let php_execute_script return 0 on failure and 1 on sucess, and change SAPIs accordingly. (Andrei, Derick) 2002-02-14 Adam Daniel <adaniel2@cinci.rr.com> * pear/HTML/Page.php: changed html tags to lowercase and added Nils-Fredrik G. Kaland's suggested array support to toHtml 2002-02-14 Edin Kadribasic <edink@proventum.net> * sapi/cli/php_cli.c: Turned implicit_flush on. Cleaned up help text. * sapi/cli/README: Added README file for CLI SAPI. 2002-02-14 Derick Rethans <d.rethans@jdimedia.nl> * ext/ncurses/ncurses.c: - Remove duplicate constant 2002-02-13 Frank M. Kromann <frank@frontbase.com> * ext/sockets/sockets.dsp: Fixing release and debug build on Win32 2002-02-13 Vincent Blavet <vincent@blavet.net> * pear/scripts/pearwin.php: * Synchronize pearwin script with pearcmd-xxx.php commands * Still work to do * pear/scripts/pearcmd-list.php: * user system/user config rather than default value 2002-02-13 Yavor Shahpasov <yavo@itenasolutions.com> * pear/HTML/Select.php: Initialize $this->_values to avoid warrnings in case _values property is not set * pear/Schedule/At.php: White spaces. 2002-02-13 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/dbx/dbx_pgsql.c: Fix memory leaks. 2002-02-13 Marc Boeren <M.Boeren@guidance.nl> * ext/dbx/dbx_pgsql.c: Fixed bug where users with empty passwords could not connect. (Mc) 2002-02-13 Vincent Blavet <vincent@blavet.net> * pear/scripts/pearwin.php: - Adding support for remote-list command (with XML-RPC installed) - Start support of show-config (still work to do ...) 2002-02-13 Andrei Zmievski <andrei@ispi.net> * NEWS: Ack. 2002-02-13 Stig Bakken <ssb@fast.no> * pear/PEAR/Installer.php: * "pear-get install Auth" works now * pear/PEAR/Remote.php: * don't use ext/overload yet * pear/scripts/pearcmd-remote-list.php: * print package name 2002-02-12 Jason Greene <jason@inetgurus.net> * NEWS: Fix entry 2002-02-12 Jan Lehnardt <jan@lehnardt.de> * pear/DB/mysql.php: - added default case for mysql_select_db error handling. It throws a - DB_ERROR (unknown error) in the default case. * pear/DB.php pear/DB/mysql.php: - added support for different error messages for the following cases: - - if a user with unsufficient permissions trys to select a database - PEAR::DB previously threw a "no database selected" error instead - of a more proper "insufficient permissions". This is fixed now. - - if a user selects a nonexistant database PEAR::DB threw a - "no database selected" error instead of "no such database". - This is fixed as well. - - I added two new constants to DB.php and a simple case construct to - DB/mysql.php which can be easily extended to achive the above. I - hope this is ok. - Thanks to Till Gerken for mentioning this. 2002-02-12 Andrei Zmievski <andrei@ispi.net> * NEWS: Fix-up. 2002-02-12 Sascha Schumann <sascha@schumann.cx> * main/network.c: Irix defines AF_INET6, but lacks IPv6 support, including struct sockaddr_in6. 2002-02-12 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: Initialize automatic persistent connection reset flag 2002-02-12 Andrei Zmievski <andrei@ispi.net> * ext/pcre/php_pcre.h ext/pcre/php_pcre.c: Fix a long-standing infelicity that resulted in extra regex information not being passed to PCRE functions. * ext/pcre/php_pcre.h ext/pcre/php_pcre.c: Expose pcre_get_compiled_regex as an API function. 2002-02-11 Mark L. Woodward <mlwmohawk@mohawksoft.com> * ext/msession/msession.c: Added one more tweak for 4.0.x compatibility. Used "#warning" to inform users of a hard dependency. (If #warning is unaccptable, let me know!) 2002-02-11 Sebastian Bergmann <sb@sebastian-bergmann.de> * sapi/servlet/README: Fugbix typo. 2002-02-11 Martin Jansen <mail@martin-jansen.de> * pear/HTTP.php: * Fix bug #15423. 2002-02-11 Richard Heyes <richard.heyes@heyes-computing.net> * pear/Mail/mime.php pear/Mail/mimeDecode.php pear/Mail/mimePart.php pear/Mail/xmail.dtd pear/Mail/xmail.xsl: * Removed these files as they're now in /pear/Mail_Mime 2002-02-11 Markus Fischer <mfischer@guru.josefine.at> * ext/ldap/ldap.c: - Fix protos. 2002-02-10 Sean Bright <elixer@erols.com> * ext/gmp/gmp.c: '0b' could be the beginning of a hex string (without leading '0x') so if the user specifies base 16, use that instead. * ext/gmp/tests/003.phpt: Add a new test for GMP base recognition. * ext/gmp/gmp.c: Fix for bugs #10133 and #15454. Bug #15454 results from a bug in GMP. If you pass in a string '0xABCD' and specify a base of 0, GMP figures out that it is hex and skips over the 0x characters. If you specify base 16, then it doesn't skip those chars. This was confirmed with the following test program: int main() { char *str_one, *str_two; mpz_t num_one, num_two; mpz_init_set_str (num_one, "0x45", 0); str_one = mpz_get_str(NULL, 10, num_one); mpz_init_set_str (num_two, "0x45", 16); str_two = mpz_get_str(NULL, 10, num_two); printf("%s / %s\n", str_one, str_two); mpz_clear (num_one); mpz_clear (num_two); return 0; } We now take anything that starts with 0[xX] as hexidecimal and anything that starts 0[bB] as binary (this is what GMP does internally). We also no longer force the base to 10 or 16, but instead let GMP decide what the best base is, be it hex, dec, or octal. 2002-02-10 Jason Greene <jason@inetgurus.net> * ext/standard/basic_functions.c ext/standard/php_var.h ext/standard/var.c: Renamed zval_debug_dump() to debug_zval_dump() 2002-02-10 Thomas V.V.Cox <cox@idecnet.com> * pear/PEAR/Common.php: Now System will return false on fail * pear/tests/pear_system.phpt: test suite for the System class * pear/System.php: - Now error will be triggered with trigger_error(). When a command fails the function will return false - In-line documentation update 2002-02-10 Thies C. Arntzen <thies@thieso.net> * ext/oci8/oci8.c ext/oci8/php_oci8.h: only rollback at script end if there is something to rollback. 2002-02-10 Stig Venaas <venaas@uninett.no> * ext/ftp/ftp.c main/network.c main/php_network.h: Added php_sockaddr_size() in network.c (and the header file). This is used in ftp.c to make sure connect() and bind() is called with size argument which is exactly the size of the relevant sockaddr_xx structure 2002-02-10 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * pear/Mail/mime.php: Mail/mime/get has wrong parameter name. 2002-02-10 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/tokenizer/tokenizer.c: TSRM fixes. 2002-02-10 Jason Greene <jason@inetgurus.net> * ext/standard/basic_functions.c ext/standard/php_var.h ext/standard/var.c: internal information such as refcounts, and the true type names (Jason) 2002-02-10 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/mbstring/mbstring.c: Fix typo 2002-02-09 Andrei Zmievski <andrei@ispi.net> * ext/tokenizer/php_tokenizer.h ext/tokenizer/tokenizer.c: *** empty log message *** 2002-02-09 Stig Bakken <ssb@fast.no> * ext/tokenizer/tokenizer.c: * ZTS fix 2002-02-08 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/tokenizer/.cvsignore ext/tokenizer/tokenizer.dsp win32/php_modules.dsw php.ini-dist php.ini-recommended: Add MSVC workspace for tokenizer extension. Add php_tokenizer.dll entries to php.ini-*. 2002-02-08 Thies C. Arntzen <thies@thieso.net> * ext/oci8/oci8.c ext/oci8/php_oci8.h: - got rid of unneded calls to OCIAttrGet when reexecuting the same query - only invalidate the define list after all rows from a REFCORSOR are read, "normal" corsors will now remember their column defines. this means that ocigetcolumn[name|type|..] will from now on work even after the result set has been read. 2002-02-08 Stig Bakken <ssb@fast.no> * ext/tokenizer/.cvsignore ext/tokenizer/CREDITS ext/tokenizer/EXPERIMENTAL ext/tokenizer/Makefile.in ext/tokenizer/config.m4 ext/tokenizer/php_tokenizer.h ext/tokenizer/tokenizer.c ext/tokenizer/tokenizer.php: Added Andrei's tokenizer extension 2002-02-08 Mark L. Woodward <mlwmohawk@mohawksoft.com> * ext/msession/msession.c: Backward compatibility to 4.0.6 does not have "HAVE_PHP_SESSION" define Renamed PHP_4_x_API to PHP_4_x 2002-02-07 Sterling Hughes <sterling@bumblebury.com> * ext/session/php_session.h ext/session/session.c: move to the ZEND_DECLARE_MODULE_GLOBALS() and ZEND_EXTERN_MODULE_GLOBALS macros 2002-02-07 Martin Jansen <mail@martin-jansen.de> * pear/scripts/pearcmd-remote-list.php: * Better error handling. * pear/HTTP.php: * Partially fix bug #15423. 2002-02-07 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * main/output.c: Legacy code removed. This line incorrectly removes buffer. This line was correct only when ouput.c does not support nested output buffers. Fixed bug #15178 2002-02-07 Thomas V.V.Cox <cox@idecnet.com> * pear/DB/common.php pear/DB/oci8.php: Moved the array_change_key_case() PHP func definition to common * pear/DB/ibase.php: change column case to lower in compatibility mode * pear/DB/ibase.php: ws 2002-02-06 Frank M. Kromann <frank@frontbase.com> * ext/fbsql/php_fbsql.c: Convert pLists to output character set before parsing the list * ext/fbsql/php_fbsql.c: Added order by clause in fbsql_list_tables(). Table names will now be sorted. * ext/fbsql/php_fbsql.c ext/fbsql/php_fbsql.h: Adding fbsql_table_name() aliased fbsql_tablename() for compatibility with MySQL 2002-02-06 Derick Rethans <d.rethans@jdimedia.nl> * ext/odbc/config.m4: - Fix for bug 15404 2002-02-06 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/mbstring/mbstring.c: Remove unused line * ext/mbstring/mbstring.c: Fixed crash with mb_output_handler() When mb_output_hanlder is applied muiltiple times, PHP does not output. This should be fixed also. 2002-02-06 Thomas V.V.Cox <cox@idecnet.com> * pear/System.php: added 'System::type()' (show the full path of a command) Copied almost verbatim from Stig's PEAR_Dependency::checkProgram() 2002-02-06 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c ext/pgsql/php_pgsql.h: Clean up code. Removed PHP_PGSQL_API macro. Define pgsql_globals_id * ext/pgsql/pgsql.c ext/pgsql/php_pgsql.h: Make module specified functions to static. Added TSRMLS_D/C, get rid of one TSRMLS_FETCH. 2002-02-05 Andi Gutmans <andi@zend.com> * ext/wddx/wddx.c ext/standard/array.c: - Add TSRMLS_FETCH()'s needed for the new object overloading in ZE2. 2002-02-05 Mark L. Woodward <mlwmohawk@mohawksoft.com> * ext/msession/msession.c: Sorry guys, PHP 4.0.6's ZEND_MODULE_API_NO is whacked, it has an extra zero, thus ZEND_MODULE_API_NO >= xxxx, will not work for about 18000 years. Added better checking, and cleaned up some of the #ifdef you seem to love so much. 2002-02-05 Hartmut Holzgraefe <hartmut@six.de> * ext/msession/msession.c: removed the new-style parameter parser code for bc *and* readability reasons, changed the remaining #ifdefs to check the api version directly instead of using the not really related OLD_ZEND_PARAM macro 2002-02-05 David Eriksson <david@2good.com> * ext/satellite/.cvsignore ext/satellite/Makefile.in ext/satellite/README ext/satellite/class.c ext/satellite/class.h ext/satellite/common.c ext/satellite/common.h ext/satellite/config.m4 ext/satellite/corba.c ext/satellite/corba.h ext/satellite/enum.c ext/satellite/enum.h ext/satellite/findtype.c ext/satellite/findtype.h ext/satellite/hashtable.c ext/satellite/hashtable.h ext/satellite/multiple_components.patch ext/satellite/namedvalue_to_zval.c ext/satellite/namedvalue_to_zval.h ext/satellite/object.c ext/satellite/object.h ext/satellite/php_orbit.c ext/satellite/php_orbit.h ext/satellite/struct.c ext/satellite/struct.h ext/satellite/typecode.c ext/satellite/typecode.h ext/satellite/typemanager.c ext/satellite/typemanager.h ext/satellite/zval_to_namedvalue.c ext/satellite/zval_to_namedvalue.h: - Removed Satellite. It is now part of PEAR. 2002-02-05 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * main/output.c: pval -> zval Check number of parameters * main/main.c php.ini-dist: register_globals=off is defualt for 4.2.0 2002-02-05 Jani Taskinen <sniper@iki.fi> * ext/session/session.c: Let's be consistent and use zval instead of pval * ext/session/php_session.h ext/session/session.c: Export php_session_start(). * configure.in: The extensions build as shared were installed into wrong place even as the layout was PHP. 2002-02-04 Jaroslaw Kolakowski <J.Kolakowski@students.mimuw.edu.pl> * ext/domxml/php_domxml.c: Fixed compile error 2002-02-04 Mark L. Woodward <mlwmohawk@mohawksoft.com> * ext/msession/msession.c: More 4.0.6 compatibility. * ext/msession/msession.c: Restored backward compatibility to PHP 4.0.6 2002-02-04 Thomas V.V.Cox <cox@idecnet.com> * pear/DB/TESTERS: Added How To Run Tests 2002-02-04 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/crack/crack.c ext/mailparse/mailparse.c: Fix ZTS startup crash 2002-02-04 Thies C. Arntzen <thies@thieso.net> * ext/oracle/config.m4: add oracle 9 detection for oracle-module 2002-02-04 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/mbstring/mbstring.c: Remove TSRMLS_FETCH() does not need * ext/msession/msession.c ext/domxml/php_domxml.c: Fix ZTS build 2002-02-03 jim winstead <jimw@apache.org> * makedist: don't include old changelogs in distribution, either 2002-02-03 Adam Dickmeiss <adam@indexdata.dk> * Makefile.in configure.in: Zend config sets ZEND_EXTRA_LIBS. Bugs 14452, 14602, 14616, 14824 2002-02-03 Martin Jansen <mail@martin-jansen.de> * pear/DB/ibase.php: * nextID() and tableInfo() support by Lutz Brueckner <lb@lamuella.de>. 2002-02-03 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/session/mod_files.c ext/session/session.c: Revert last commit. Last patch has problem for the 1st request. * ext/session/mod_files.c ext/session/session.c: Fixed crash when save_path is invalid. Fixed crash when user save handler is incorrectly used. Fixed crash when session read failed. * ext/iconv/tests/001.phpt ext/iconv/tests/002.inc ext/iconv/tests/002.phpt ext/iconv/tests/skipif.inc: Added UCS4 test * sapi/roxen/roxen.c: MFH 2002-02-02 Shane Caraveo <shane@caraveo.com> * sapi/isapi/stresstest/getopt.c sapi/isapi/stresstest/getopt.h: now needs getopt * sapi/isapi/stresstest/stresstest.cpp sapi/isapi/stresstest/stresstest.dsp: an update to stresstest 2002-02-02 Sebastian Bergmann <sb@sebastian-bergmann.de> * sapi/cgi/cgi_main.c sapi/fastcgi/fastcgi.c sapi/pi3web/pi3web_sapi.c sapi/servlet/servlet.c: Remove obsolete CG(extended_info) = 0 calls, we already do this in zend_set_default_compile_time_values(). * ext/calendar/french.c ext/calendar/julian.c: Consistency. * ext/calendar/gregor.c ext/calendar/jewish.c: Fix a warning. 2002-02-02 Jon Parise <jon@csh.rit.edu> * configure.in: Revert revision 1.294. This commit broke things in interesting ways under FreeBSD. By adding these default header files to every header check, a number of subsequent checks failed (due to unsatisfied header file dependencies). This occured because <netinet/in.h>, for example, requires <sys/types.h>. In other words, these default includes are not autonomous and don't make workable defaults. 2002-02-02 Sebastian Bergmann <sb@sebastian-bergmann.de> * main/fopen_wrappers.c: Fix thread-safe build. 2002-02-02 Stig Bakken <ssb@fast.no> * pear/DB/odbc.php: * use seqname_format option * pear/DB/common.php pear/DB/fbsql.php pear/DB/mssql.php pear/DB/mysql.php pear/DB/oci8.php pear/DB/odbc.php pear/DB/pgsql.php: * the actual name of the sequences or sequence emulation tables may now be configured with the "seqname_format" option * pear/package.dtd: * add some missing attributes 2002-02-01 Andrei Zmievski <andrei@ispi.net> * ext/standard/array.c: Converted extract() to use smart_str for variable name manipulation. This sped it up a bit. 2002-02-01 James E. Flemer <jflemer@acm.jhu.edu> * main/fopen_wrappers.c main/fopen_wrappers.h: Changed php.ini directive 'safe_mode_include_dir' to accept a (semi)colon separated path, rather than a single directory. Also moved checking of said path into a separate path for code readability. 2002-02-01 Andrei Zmievski <andrei@ispi.net> * NEWS: Added is_a() function. 2002-02-01 Adam Dickmeiss <adam@indexdata.dk> * ext/yaz/php_yaz.c: Fixes in MARC decoder (base adress, DANmarc case). 2002-02-01 Thomas V.V.Cox <cox@idecnet.com> * pear/DB.php: Fix remote security risk, pointed out by Wolfram Kriesing * pear/DB/tests/db_parsedsn.phpt pear/DB.php: Added support for passing special backend params in DSN. Ex: ibase://user:pass@localhost/db?role=foo&dialect=bar 2002-02-01 Thies C. Arntzen <thies@thieso.net> * ext/readline/readline.c: remove some crap 2002-02-01 James Cox <james@awpimajes.com> * php.gif php4.gif php4.spec.in: 2 years is ages.... and no way temporary. changed the php4 logo to a versionless one. 2002-02-01 Derick Rethans <derick@vl-srm.net> * ext/gd/gd.c: - Fix for bug 14899 (patch by Sander Roobol <sander@php.net>) 2002-02-01 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/iconv/iconv.c: Fixed bug with encodings that has 0 byte in strings. Patch by <itai@siftology.com> Fixed possible problem with encodings that a char can be larger than 4 bytes. 2002-01-31 James Cox <james@awpimajes.com> * LICENSE: updating license to 2002 (hasn't been done since 2000) 2002-01-31 Boian Bonev <boian@bonev.com> * ext/vpopmail/php_vpopmail.c: fix comment 2002-01-31 Martin Jansen <mail@martin-jansen.de> * pear/HTTP.php: * Fix bug #15313 2002-01-31 Bertrand Mansion <bmansion@mamasam.com> * pear/HTML/Table.php: Thanks to Arnaud Limbourg: - phpDoc and cosmetic fixes 2002-01-31 Derick Rethans <derick@vl-srm.net> * ext/standard/dl.c: - Fix for bug 15311 (type mismatch of php_dl when #ifndef HAVE_LIBDL) 2002-01-31 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * sapi/roxen/roxen.c: A fix for the bug number 13231 & 11699. Makes the roxen support compile. Patch by Lars Wilhelmsen <lars@sral.org> 2002-01-31 Derick Rethans <derick@vl-srm.net> * ext/openssl/openssl.c: - Fix for openssl_pkcs7_sign segfaults (patch by Christian Stocker <chregu@php.net>) 2002-01-31 Stig Bakken <ssb@fast.no> * pear/scripts/pearize.in: * lowercase tags and attributes * pear/Makefile.in: * remove broken rule for rebuilding Makefile 2002-01-31 Edin Kadribasic <edink@proventum.net> * main/main.c: Ignore register_globals for $argc and $argv under CLI SAPI. 2002-01-30 Edin Kadribasic <edink@proventum.net> * acinclude.m4 configure.in sapi/cli/Makefile.in: Enable extensions to specify that they are not supposed to be built with the CLI SAPI. This is done by passing "nocli" as the 3rd parameter to PHP_EXTENSION macro. 2002-01-30 Dan Kalowsky <dank@deadmime.org> * ext/odbc/php_odbc.c: Fix for bug #14803 2002-01-30 Sebastian Bergmann <sb@sebastian-bergmann.de> * sapi/servlet/README: Fugbix typo. Update path to /lib/optional. 2002-01-30 Stig Bakken <ssb@fast.no> * pear/Makefile.in: * don't make command libs executable * pear/scripts/pear-get.in pear/scripts/pear.in pear/scripts/pearcmd-common.php pear/scripts/pearcmd-help.php pear/scripts/pearcmd-info.php pear/scripts/pearcmd-install.php pear/scripts/pearcmd-list.php pear/scripts/pearcmd-package.php pear/scripts/pearcmd-remote-list.php pear/scripts/pearcmd-show-config.php pear/scripts/pearcmd-uninstall.php pear/Makefile.in: * modularize "pear" and "pear-get" commands somewhat. checking options etc. is done for both in pearcmd-common.php. * pear/PEAR/Common.php: * silence warning * pear/HTML/Form.php: * XHTML fixes by Hans Westerbeek * pear/package.dtd: * bring DTD up to date 2002-01-30 Thies C. Arntzen <thies@thieso.net> * ext/oci8/oci8.c: enable "user-interrupts" 2002-01-29 Chuck Hagenbuch <chuck@horde.org> * pear/DB/mysql.php: Fix errors caused by not checking for variables before using them. 2002-01-29 Sebastian Bergmann <sb@sebastian-bergmann.de> * win32/php_modules.dsw: Overload is built-in. 2002-01-29 Stig Bakken <ssb@fast.no> * pear/DB/oci8.php: typo :) 2002-01-28 Stig Bakken <ssb@fast.no> * pear/Net/Socket.php: * doc comments, add setTimeout() and getStatus(), thanks to Mads Mohr Christensen <mohr@slamkode.dk> 2002-01-28 Sterling Hughes <sterling@designmultimedia.com> * EXTENSIONS: Commit for mr. torben: Add XSLT to extensions file, mark sablot obsolete 2002-01-28 Jon Parise <jon@csh.rit.edu> * ext/standard/math.c: These are now defined in zend_config.w32.h. 2002-01-28 Thomas V.V.Cox <cox@idecnet.com> * pear/DB/dbase.php: PEAR dbase driver. Supports, connect, fetch modes, row limit, numrows and numcols. 2002-01-28 jim winstead <jimw@apache.org> * ext/interbase/Makefile.in: testing checkin 2002-01-27 Jon Parise <jon@csh.rit.edu> * ext/standard/math.c: zend_isinf() is already defined in Zend/zend_config.w32.h for Win32. 2002-01-27 Sterling Hughes <sterling@designmultimedia.com> * ext/bz2/bz2.c: fix proto's for Herr. Holzraefe. int -> resource 2002-01-27 Chuck Hagenbuch <chuck@horde.org> * pear/Net/SMTP.php: command spacing 2002-01-27 fabrice aeschbacher <fabrice.aeschbacher@laposte.net> * ext/interbase/php_interbase.h ext/interbase/interbase.c: add ibase_add_user(), ibase_modify_user(), ibase_delete_use() 2002-01-27 Jon Parise <jon@csh.rit.edu> * ext/standard/math.c: Use the zend_* versions of finite(), isinf(), and isnan(), as defined in php_config.h. Redefine the zend_* versions in the case of Win32. This fixes the build on systems that don't provide a native version of, say, isinf() (e.g. Solaris). * sapi/cgi/getopt.c sapi/cli/getopt.c ext/xml/xml.c: Add a note that this statement will never be reached. * ext/standard/mail.c: Add a comment indicating that this return statement will never be reached. * ext/sockets/sockets.c: Use socklen_t (instead of int) where appropriate. * ext/sockets/sockets.c: Because php_network.h includes <sys/socket.h>, it must be included after _XPG4_2 is defined. This fixes the build under Solaris 8. 2002-01-27 Sterling Hughes <sterling@designmultimedia.com> * ext/standard/pack.c: don't throw fatal errors, throw E_WARNING instead. * ext/curl/curl.c: hopefully fix --with-openssl issues * ext/bz2/bz2.c: Source code cleanup * ext/bz2/bz2.c: Update code to last working version to avoid recent breaks. 2002-01-27 Marko Karppinen <karppinen@pobox.com> * acinclude.m4: Enable developers to use PHP_ARG_ENABLE and PHP_ARG_WITH silently to maintain legacy configure options without clutter in the configure help and checking output. 2002-01-26 Marko Karppinen <karppinen@pobox.com> * configure.in: - Reorganized stuff in configure.in and added a few comments - Added a check for ApplicationServices/ApplicationServices.h (Mac OS X) - Added AC_PROG_CPP, AC_PROG_CXX and AC_PROG_CXXCPP - Improved the IPv6 check to fail on Mac OS X (there's no IPv6 there yet) 2002-01-26 Vincent Blavet <vincent@blavet.net> * pear/PEAR/Packager.php: * Remove the use of a temp dir * Tar archive is now doing the same work with less overhead 2002-01-25 Marko Karppinen <karppinen@pobox.com> * configure.in: Improve detection of resolv.h on versions of Darwin, FreeBSD and Solaris (this requires post-2.13 autoconf, but 2.13 ignores it gracefully) * configure.in: Relying only on host_alias is wrong 2002-01-25 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/session/mod_mm.c: We need mm file for each user. 2002-01-25 Derick Rethans <derick@vl-srm.net> * ext/xmlrpc/config.m4: - Fix for bug #15227: Compiling the CGI binary with xmlrpc fails to build/link expat * ext/standard/basic_functions.c: - Fixed highlight_* (make it more robust) 2002-01-25 Hartmut Holzgraefe <hartmut@six.de> * ext/ctype/EXPERIMENTAL: no longer experimental 2002-01-25 Derick Rethans <derick@vl-srm.net> * ext/standard/basic_functions.c: - Added optional parameter to highlight_string and highlight_file which makes these functions return a highlighted string instead of dumping to standard output. (Derick) - Added optional parameter to highlight_string and highlight_file which makes these functions return a highlighted string instead of dumping to standard output. 2002-01-25 Rasmus Lerdorf <rasmus@php.net> * ext/standard/array.c: (extraxt) add EXTR_IF_EXISTS and EXTR_PREFIX_IF_EXISTS flags 2002-01-25 Derick Rethans <derick@vl-srm.net> * ext/domxml/php_domxml.c: - Fix for bug #14934: type property not set in comment nodes (domxml) 2002-01-25 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/session/mod_mm.c: Add sapi postfix for mm save path. cli/cgi would not complain about mm save handler with this. 2002-01-25 Doug MacEachern <dougm@covalent.net> * sapi/apache2filter/sapi_apache2.c: adjust to ap_get_brigade() API change 2002-01-25 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * php.ini-recommended php.ini-dist: Added "pgsql.auto_reset_persistent" ini entry to catch broken connection always with pg_pconnect(). (Default Off in source and php.ini-*) This option requires a little overhead for pg_pconnect(). * ext/pgsql/pgsql.c ext/pgsql/php_pgsql.h: Added "auto_reset_presistent" ini entry. 2002-01-24 Marko Karppinen <karppinen@pobox.com> * build/buildcheck.sh: Latest libtools output a multiline version info. Deal with that * ext/standard/parsedate.y: Ignore ordinal suffixes on numbers (bug #15210) 2002-01-24 Edin Kadribasic <edink@proventum.net> * sapi/cli/config.m4: Added --disable-cli option. * NEWS: Made entry more consistent. 2002-01-24 Sascha Schumann <sascha@schumann.cx> * configure.in: fix typo, found by edin 2002-01-24 Andrei Zmievski <andrei@ispi.net> * ext/wddx/wddx.c: Revert back to using <char> element for newlines. 2002-01-24 Thomas V.V.Cox <cox@idecnet.com> * pear/CODING_STANDARDS: correct url 2002-01-24 Marko Karppinen <karppinen@pobox.com> * acinclude.m4: Added a case for Darwin / Mac OS X to PHP_SHLIB_SUFFIX_NAME * php.ini-dist php.ini-recommended: Corrected a confusing comment (see bug #14972) 2002-01-24 Sascha Schumann <sascha@schumann.cx> * Makefile.in acinclude.m4 configure.in ext/ircg/config.m4: Don't build CLI, if an extension requests that. In this case, the ircg extension refers to thttpd-specific symbols which causes the build of the cli sapi module to fail. 2002-01-24 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * NEWS: Change NEWS entry according to pgsql source change. * ext/pgsql/pgsql.c: Revert last 2 commit. Instead, make php_pgsql_do_connect() to catch broken connection always. 2002-01-24 Vincent Blavet <vincent@blavet.net> * pear/scripts/pearwin.php pear/PEAR/Installer.php: * Call the PEAR_Registry constructor with the optional parameter * pear/PEAR/Registry.php: * Adding the ability to set the PEAR_INSTALL_DIR while creating the Registry object (in the same way as Installer.php) * pear/Archive/Tar.php: * Adding support of extraction of remote archive http://www/archive.tgz * Correct bug while using Windows root path c:\xxx\yyy in extract fct 2002-01-24 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * NEWS: Added pgsql connection reset feature. Add my name to --enable-safe-mode fix. * ext/pgsql/pgsql.c: Add a little more fault tolerance for pg_host, pg_tty and more. * ext/pgsql/pgsql.c: No more httpd restart is required when PostgreSQL is rebooted. 2002-01-24 James Cox <james@awpimajes.com> * INSTALL: updated INSTALL to be more relevant.. more fixes coming (at some point) 2002-01-23 Vincent Blavet <vincent@blavet.net> * pear/scripts/pearwin.php: * Add uninstall command * Add list-installed command 2002-01-23 Thomas V.V.Cox <cox@idecnet.com> * pear/System.php: Return false when the directory can not be created in mkDir() * pear/DB/tests/driver/.cvsignore: cvsignore 2002-01-23 Frank M. Kromann <frank@frontbase.com> * ext/fbsql/php_fbsql.c: Fixing spelling error in FrontBase section Changed som int to unsigned int to remove compiler warnings * php.ini-dist php.ini-recommended: Fixing spelling error in FrontBase section 2002-01-23 Sebastian Bergmann <sb@sebastian-bergmann.de> * win32/php4ts.dsw win32/php4ts_cli.dsp: Add workspace to build CLI SAPI Module on Win32. * sapi/cli/php_cli.c: Give Edin Kadribasic his due credits. 2002-01-23 Edin Kadribasic <edink@proventum.net> * sapi/cli/php_cli.c: No need to dupe this string in cli sapi (Bug #15181). 2002-01-23 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * EXTENSIONS: Added comment for pgsql module. 2002-01-23 Hartmut Holzgraefe <hartmut@six.de> * EXTENSIONS: claiming maintainance ownership of ext/calendar * apidoc-zend.txt: added info about FETCH macros (written over a year ago but somehow never commited) 2002-01-22 Jaroslaw Kolakowski <J.Kolakowski@students.mimuw.edu.pl> * ext/domxml/php_domxml.c: Simplified domxml_substitute_entities_default() function 2002-01-22 Sterling Hughes <sterling@designmultimedia.com> * ext/curl/curl.c: just init CURL_GLOBAL_SSL 2002-01-22 Thomas V.V.Cox <cox@idecnet.com> * pear/DB/ibase.php: - Fix a problem with the cast to array from ibase_fetch_object (reported by Ludovico Magnocavallo <ludo@sumatrasolutions.com>) - Removed old, unsupported, unused DB_ibase->fetchRow() (remember that fetchRow is a method from DB_result not DB_driver) 2002-01-22 Jan Lehnardt <jan@lehnardt.de> * pear/File/Find.php: - whitespace fix * pear/File/Find.php: - initialize $matches to avoid error message on unset variable if no matches are found. 2002-01-22 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: Getting rid of some compile warnings (thanks to markus for pointing me in the right direction :) ) 2002-01-22 Sean Bright <elixer@erols.com> * ext/standard/string.c: Fix for bug #15130. Way too much effort for this bug, but cleaned up code a bit, use zend_parse_parameters(), etc, etc. We only look for extensions in the basename, not the full path. 2002-01-21 Jaroslaw Kolakowski <J.Kolakowski@students.mimuw.edu.pl> * ext/domxml/php_domxml.h ext/domxml/php_domxml.c: Added domxml_substitute_entities_default() function 2002-01-21 Chris Jarecki <zenderx@ipro.pl> * ext/domxml/php_domxml.c: - fixed bug caused by libxml2 in xpath_register_ns() - registered namespaces are now persistent 2002-01-21 Jon Parise <jon@csh.rit.edu> * pear/Archive/Tar.php pear/Makefile.in: Adding Archive/Tar.php to php4/pear/. This is needed in order for the phptar script (php4/pear/scripts/phptar) to be useful, so it makes sense to make Archive/Tar.php a standard component. 2002-01-21 Martin Jansen <mail@martin-jansen.de> * pear/HTML/IT.php: * Add possibility to load external files in template. (Patch by Christian Dickmann <chrisdicki@gmx.de>.) 2002-01-21 Hartmut Holzgraefe <hartmut@six.de> * acinclude.m4: removed check macros no longer needed due to CLI work (plus reverting last commit, was in wrong dir :( ) * acinclude.m4: removed check macros no longer needed due to CLI work 2002-01-21 Dan Kalowsky <dank@deadmime.org> * ext/odbc/php_odbc.c: this closes off a number of ODBC bugs. 2002-01-21 Derick Rethans <derick@vl-srm.net> * main/network.c: - Fix for bug #15057: getimagesize() crashes when offline (on MacOSX) 2002-01-21 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/pgsql.c: Fixed typo and proto 2002-01-20 Edin Kadribasic <edink@proventum.net> * sapi/cgi/cgi_main.c: Fixed bug #9041 and others in the same class (patch by pete.lee@ubs.com) 2002-01-20 Markus Fischer <mfischer@guru.josefine.at> * ext/standard/datetime.c: - Fix crash with invalid localtime on Win32 systems. 2002-01-20 Doug MacEachern <dougm@covalent.net> * sapi/apache2filter/sapi_apache2.c: adjust to ap_get_brigade and input filter api changes 2002-01-20 Sebastian Bergmann <sb@sebastian-bergmann.de> * pear/Cache.php pear/Cache.xml pear/Makefile.in: Move Cache to /pear. * pear/Makefile.in: Move Payment_Verisign to /pear. * pear/Makefile.in pear/Log.php: Move Benchmark, Math, Numbers to /pear. Remove Log, it was already in /pear. 2002-01-20 Hartmut Holzgraefe <hartmut@six.de> * ext/fbsql/php_fbsql.c: cut&paste errors in protos fixed * ext/domxml/php_domxml.c: proto fix 2002-01-20 Sebastian Bergmann <sb@sebastian-bergmann.de> * TODO: Fixed by Sean Bright's commit. 2002-01-20 Sean Bright <elixer@erols.com> * ext/db/db.c: Forgot to remove the return from a void function * ext/db/db.c ext/db/php_db.h: These PHP3_* macros aren't defined in the code, so these haven't been doing anything for some time now (at least since 4.0 was released). So let's go ahead and remove those. 2002-01-20 Edin Kadribasic <edink@proventum.net> * TODO-4.2.txt: Removed entry implemented in cli sapi. * main/.cvsignore main/Makefile.in sapi/cli/Makefile.in acinclude.m4 configure.in ext/ncurses/config.m4 ext/pcntl/config.m4 ext/readline/config.m4: Modified the build system to make certain extensions (pcntl, ncurses, pcntl) only with cgi/cli sapi's. This was done by adding 3rd optional parameter to PHP_EXTENSION macro which should be set to "cli" if the extension only makes sense for that class of api's. * ext/readline/.cvsignore: Added missing entry to .cvsignore 2002-01-20 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * header: Get rid of needless spaces * README.CVS-RULES: Revert my last commit 2002-01-19 Edin Kadribasic <edink@proventum.net> * TODO: Removed two issues resolved by the introduction of sapi/cli. * sapi/cli/php_cli.c: Merged patch from sapi/cgi. 2002-01-19 Jaroslaw Kolakowski <J.Kolakowski@students.mimuw.edu.pl> * ext/domxml/php_domxml.c: - Fixed passing parameters to domxml_xslt_process(). Now they can be either strings or XPath expressions. - Several minor fixes in domxml_xslt_process(). 2002-01-19 Martin Jansen <mail@martin-jansen.de> * pear/Crypt/HCEMD5.php: * Fix bug #13189. 2002-01-19 Wez Furlong <wez.php@thebrainroom.com> * ext/mailparse/rfc2045cdecode.c: Make the decoder less strict to allow for brain-dead mailers that mark messages as 7bit but then include 8bit chars in the body. Thanks to Dan Fitzpatrick for bringing this to my attention. 2002-01-19 Thomas V.V.Cox <cox@idecnet.com> * pear/DB/common.php pear/DB.php: Stores limit_from and limit_count as DB_result proporties instead of DB_common. Fixs bug when doing queries inside limitQuery results. * pear/DB/common.php: ws * pear/DB/oci8.php: Removed unecesary check and only change the case of the keys when data is returned (fetchInto()) 2002-01-19 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * main/main.c: Make --enable-safe-mode useful 2002-01-18 Shane Caraveo <shane@caraveo.com> * sapi/cgi/cgi_main.c: reimplement extension listing 2002-01-18 Thomas V.V.Cox <cox@idecnet.com> * pear/DB/tests/driver/02fetch.phpt pear/DB/tests/driver/03simplequery.phpt pear/DB/tests/driver/04numcols.phpt pear/DB/tests/driver/06prepexec.phpt pear/DB/tests/driver/08affectedrows.phpt pear/DB/tests/driver/15quote.phpt: removed unneeded require_once "DB.php"; * pear/DB/odbc.php: - Fix fetch row by number (ODBC starts at 1) - New "navision" syntax (this driver doesn't support fetchs by number, so emulate row limit by skipping rows) 2002-01-18 Markus Fischer <mfischer@guru.josefine.at> * ext/domxml/php_domxml.c: - More WS fixes 2002-01-18 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: shite :) too much WS fixes. leave the licence as it was... * ext/domxml/php_domxml.c: - WS fixes (replaced " " by \t) 2002-01-18 Thomas V.V.Cox <cox@idecnet.com> * pear/DB/STATUS pear/DB/odbc.php: added affectedRows() and test in numRows() if the backend is capable of not to return this info 2002-01-18 Christian Stocker <chregu@phant.ch> * ext/domxml/php_domxml.c: - added optional parameters format and level for domxml_dump_node() * ext/domxml/php_domxml.c ext/domxml/php_domxml.h: - added macro DOMXML_PARAM_ONE - added function domxml_dump_node($doc,$node). Dumps a node plus all children into a string. (chregu) * ext/domxml/php_domxml.h ext/domxml/php_domxml.c: - Added function domxml_node_get_content() (chregu) * ext/domxml/config.m4 ext/domxml/php_domxml.c ext/domxml/php_domxml.h: - added DOMXML_PARAM_THREE macro - renamed domxml_dumpmem to domxml_dump_mem, added alias for domxml_dumpmem - domxml_has_attributes was missing in in zend_function_entry - added function domxml_dump_file($filename,[$compression]). Dumps XML to a file and uses compression, if specified (chregu) - added exslt integration (see http://exslt.org for details). To be configured with --with-dom-exslt[=DIR] (and --with-dom-xslt) (chregu, jaroslaw) 2002-01-18 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * README.CVS-RULES: Fix typo 2002-01-17 Adam Dickmeiss <adam@indexdata.dk> * ext/yaz/php_yaz.c ext/yaz/php_yaz.h: New function yaz_es_result: Z395.0 Extended Services Result. 2002-01-17 Ilia Alshanetsky <ilia@prohost.org> * ext/shmop/shmop.c: Fixed shmop_read to append \0 to returned string in shmop_read to eliminate Zend warnings 2002-01-17 Thies C. Arntzen <thies@thieso.net> * ext/session/session.c: guys, shoot me if i'm wrong, but when we have set register_globals to off we should _not_ touch any global variables at any time, right? so all session register/unregister should only work on $HTTP_SESSION_VARS and $_SESSION. this patch fixes at least one spot where we were touching globals even with register_globals set to off. * ext/oci8/oci8.c: - Added 3 new optional parameters to OCIFetchStatement(). They control the number of rows to skip at the beginning of the cursor, the maximun numer of rows that should be fetched and the format of the returned array. 2002-01-17 Sterling Hughes <sterling@designmultimedia.com> * NEWS: Fix attribution, its Petr's patch, not mine :) * NEWS: Little cleanup, add information about Sablotron 0.8 * ext/xslt/config.m4: Update for Sablotron .8 2002-01-17 Thomas V.V.Cox <cox@idecnet.com> * pear/DB/pgsql.php: Test for results in _pgFieldFlags (thanks Brian Abent <brian@onlineinfo.net>) 2002-01-17 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/domxml/config.m4: Use libxml2 header if there are older version. Reported by <jwagoner@wlion.com> 2002-01-17 Jaroslaw Kolakowski <J.Kolakowski@students.mimuw.edu.pl> * ext/domxml/php_domxml.c ext/domxml/php_domxml.h: Added XsltStylesheet class with methods: - domxml_xslt_stylesheet(string), - domxml_xslt_stylesheet_doc(DomDocument), - domxml_xslt_stylesheet_file(filename), - process(DomDocument,parameters array) - previously domxml_xslt_process(). 2002-01-16 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/session/session.c: Export php_session_register_module/serializer 2002-01-16 Rasmus Lerdorf <rasmus@php.net> * ext/snmp/config.m4: Fix typo 2002-01-16 Marc Boeren <M.Boeren@guidance.nl> * ext/dbx/dbx_mysql.c: mysql_db_query is deprecated, fixed by using mysql_select_db and mysql_query (Mc). 2002-01-16 Bertrand Mansion <bmansion@mamasam.com> * pear/HTML/Table.php: Changes by René Jensen : - Remove duplicate test - Nicer html output for nested table level comment. 2002-01-16 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/session/php_session.h: Export php_session_register_module/serializer. 2002-01-16 Thomas V.V.Cox <cox@idecnet.com> * pear/DB/tests/driver/15quote.phpt: add quote data test 2002-01-15 Andrei Zmievski <andrei@ispi.net> * ext/pcre/php_pcre.c NEWS: - Fixed a bug with matching string containing null bytes. 2002-01-14 Chris Jarecki <zenderx@ipro.pl> * ext/domxml/php_domxml.c: - using macro in xpath_register_ns() - fixed protos in xpath functions 2002-01-14 Martin Jansen <mail@martin-jansen.de> * pear/Date/Calc.php: * Fix for bug #15032. 2002-01-14 Stefan Esser <s.esser@e-matters.de> * main/SAPI.c: MFH: fix for bug #14776 * main/SAPI.c: fix for bug #14776 2002-01-14 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbregex.c: fixed an error in mbstring caused by confliction with regex. 2002-01-13 Edin Kadribasic <edink@proventum.net> * acinclude.m4 sapi/cli/Makefile.in: Fixed build in the directory other than $top_srcdir. 2002-01-13 Thomas V.V.Cox <cox@idecnet.com> * pear/DB/ibase.php: Added modifyLimitQuery(). Only avaible for the Firebird syntax (ibase(firebird)://user:pass@host/db) (contributed by Ludovico Magnocavallo <ludo@sumatrasolutions.com>) * pear/DB/tests/db_parsedsn.phpt: Two tests more * pear/DB/mysql.php: Added support for socket and port options in connect() * pear/DB/pgsql.php: better DSN handling * pear/DB/tests/db_parsedsn.phpt: Test update * pear/DB.php: New DSN "protcocol(protocol_opts)" format support: phptype://user:pass@protocol(proto_opts)/database ex: pgsql://user@unix()/pear mysql://user@unix(/path/to/socket)/pear pgsql://user:pass@word@tcp(somehost:7777)/pear 2002-01-13 Rasmus Lerdorf <rasmus@php.net> * NEWS: 4.1.1 NEWS entry block was missing from the HEAD tree 2002-01-13 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/gd/config.m4: fixed some link error of gd's configure. 2002-01-13 Edin Kadribasic <edink@proventum.net> * sapi/cli/Makefile.in Makefile.in: This should fix cli build when running 'make install' directly. 2002-01-13 Chris Jarecki <zenderx@ipro.pl> * ext/domxml/php_domxml.c ext/domxml/php_domxml.h: - Added xpath_register_ns() function. 2002-01-12 Edin Kadribasic <edink@proventum.net> * sapi/cli/Makefile.in: Fixed CLI build when the main SAPI is built as a shered library. * Makefile.in acinclude.m4 configure.in sapi/cli/.cvsignore sapi/cli/Makefile.in sapi/cli/config.m4: Modified the build system to always build CLI SAPI. 2002-01-12 Gavin Sherry <swm@linuxworld.com.au> * ext/dba/dba_db2.c: My bad. Left some stray debugging code in previous commit. * ext/dba/dba_db2.c: See the update to dba_db3.c * ext/dba/dba_db3.c: This fixes the notorious "mode 'c' fails" bug (see bugs - 10380, 10798, 11732). The bug originates from the fact that mode "c" for db3 sets 'type' to DB_UNKNOWN and mode DB_CREATE when the database already exists. The underlying library raises an error at this logical discrepancy: obviously one cannot create a database of unknown type. 2002-01-12 Vlad Krupin <phpdevel@echospace.com> * ext/imap/php_imap.c: Fixed segfault in imap_bodystruct() when called with an invalid message number. Now it fails with a warning instead. 2002-01-11 Jaroslaw Kolakowski <J.Kolakowski@students.mimuw.edu.pl> * ext/domxml/php_domxml.c ext/domxml/php_domxml.h: Added domxml_node_replace_node() function. 2002-01-11 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/Makefile.in ext/mbstring/config.m4 ext/mbstring/mbregex.c ext/mbstring/mbregex.h ext/mbstring/mbstring.c ext/mbstring/mbstring.h ext/mbstring/php_mbregex.c: Added multi-byte enabled regex functions. 2002-01-11 Markus Fischer <mfischer@guru.josefine.at> * ext/standard/file.c: - mkdir(): made second (mode) parameter optional, default to 0777 switched to zend_parse_parameters(). 2002-01-11 Thomas V.V.Cox <cox@idecnet.com> * pear/HTTP.php: - Added HTTP::head($url) which sends a "HEAD" HTTP command to a server and returns the headers as an associative array - Call-time pass-by-reference fixes * pear/tests/pear1.phpt: submit a test that will fail due to php bug #14744 2002-01-10 Frank M. Kromann <frank@frontbase.com> * ext/fbsql/php_fbsql.c ext/fbsql/php_fbsql.h: Adding functions to get BLOB/CLOB size from a lob_handle. Added descriptions on most protos 2002-01-10 Andrei Zmievski <andrei@ispi.net> * NEWS ext/standard/array.c: Fix the recursive counting, it was broken for associative or non-sequential arrays. Also update NEWS file. 2002-01-10 Derick Rethans <d.rethans@jdimedia.nl> * main/main.c: - Make an E_NOTICE error type show 'Notice' instead of 'Warning'. 2002-01-10 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/session/mod_mm.c: Fix startup crash 2002-01-10 Markus Fischer <mfischer@guru.josefine.at> * ext/dio/dio.c: - Unified error messages. - Improved argument handling in dio_fcntl(). 2002-01-10 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/session/mod_mm.c: Revert last commit 2002-01-10 Sascha Schumann <sascha@schumann.cx> * ext/session/mod_mm.c: Improved code for handling PS(save_path) Don't MFH before further testing * ext/session/mod_mm.c: Ws fix * ext/standard/filestat.c: (PHP touch) Operate on a stack buffer.. no need for allocating newtime on the heap. * ext/standard/filestat.c: Add three-parameter touch() which enables users to set mtime/atime to different values. 2002-01-10 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/pgsql/tests/dropdb.inc: Fix bug in test script * ext/session/mod_mm.c: MFH * ext/session/mod_mm.c: Make use of save_path for mm file. Patch by Henning Schmiedehausen <hps@intermeta.de> Closes bug 14808 2002-01-10 Sascha Schumann <sascha@schumann.cx> * ext/session/tests/003.phpt ext/session/tests/004.phpt ext/session/tests/005.phpt ext/session/tests/006.phpt: Make these tests succeed with non-standard settings 2002-01-10 Markus Fischer <mfischer@guru.josefine.at> * ext/domxml/php_domxml.h: - Fix compilation. (Christian Stocker) 2002-01-10 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * header: Year update * EXTENSIONS: shmop got a new maintainer 2002-01-09 jim winstead <jimw@apache.org> * ext/standard/tests/math/pow.phpt NEWS ext/standard/basic_functions.c ext/standard/math.c ext/standard/php_math.h: Rename finite/isinf/isnan to more standard is_*() names. * ext/standard/type.h ext/standard/php_type.h ext/standard/type.c ext/standard/basic_functions.h ext/standard/php_standard.h ext/standard/basic_functions.c main/rfc1867.c: Move type-handling functions into ext/standard/type.c (which had a few otherwise unused functions in it). 2002-01-09 Martin Jansen <mail@martin-jansen.de> * pear/XML/Parser.php: * Whitespace. 2002-01-09 Markus Fischer <mfischer@guru.josefine.at> * ext/sockets/sockets.c: - Correct some protos. 2002-01-09 Derick Rethans <d.rethans@jdimedia.nl> * ext/standard/tests/array/count_recursive.phpt ext/standard/array.c: - Fix bug introduced in earlier patch 2002-01-09 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/shmop/README ext/shmop/php_shmop.h ext/shmop/shmop.c: MFH. Bugs 10530,10656,14784 2002-01-09 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de> * ext/pgsql/pgsql.c: - fixed typo in deprecated functionname 2002-01-09 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/shmop/README ext/shmop/config.m4 ext/shmop/php_shmop.h ext/shmop/shmop.c: - shmop_open has a new flag for read/write access, 'w' - eliminated a segfault when trying to write to a SHM_RDONLY segment - eliminated a segfault when an invalid flag which starts with 'a' or 'c' is passed - updated creators' email addresses - changed error messages to say shmop_* instead of shm* to correspond with new shmop_* function names Patch by Ilia Alshanetsky (ilia@prohost.org) 2002-01-09 Jani Taskinen <sniper@iki.fi> * ext/domxml/php_domxml.h: - Fixed compile with older libxml. * configure.in: - Fixed the creation of pear-get script. * acinclude.m4 configure.in: Reverted Hartmut's patch as it caused more trouble than it solved. * ext/readline/config.m4: whitespace 2002-01-08 Jan Lehnardt <jan@lehnardt.de> * pear/HTML/Form.php pear/HTML/Page.php: fix two warnings, thanks to Erik Hjortsberg <erik@hysteriskt.nu> 2002-01-08 Jaroslaw Kolakowski <J.Kolakowski@students.mimuw.edu.pl> * ext/domxml/php_domxml.c ext/domxml/php_domxml.h: A Changed names of functions: - htmldoc() to html_doc(), - htmldocfile() to html_doc_file(), - domxml_htmldumpmem() to domxml_html_dump_mem(), - htmldumpmem() to html_dump_mem(). 2002-01-08 Jani Taskinen <sniper@iki.fi> * ext/ext_skel: Some whitespace fixes (naugthy me :) and make use of PHP_CHECK_LIBRARY macro instead of AC_CHECK_LIB. 2002-01-08 Sterling Hughes <sterling@designmultimedia.com> * ext/sockets/sockets.c: Changed proto via Georg Richter's request. 2002-01-08 Jaroslaw Kolakowski <J.Kolakowski@students.mimuw.edu.pl> * ext/domxml/php_domxml.h ext/domxml/php_domxml.c ext/domxml/config.m4: - Added functions: htmldoc(), htmldocfile(), domxml_htmldumpmem(). - Added error handling for the libxml library. - Added preliminary DOM XSLT support: -- uses the libxslt library, -- operates on DOM objects, not strings, -- functions: domxml_xslt_process(), domxml_xslt_version(). 2002-01-07 James Cox <james@awpimajes.com> * win32/install.txt: browscap url fix, plus removed ^M references. it should look nice on any os. * win32/install.txt: changed the instructions for php with win32 + apache. Recommending using sapi over cgi binary, since cgi binary and apache don't mix well security wise. 2002-01-07 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp> * ext/session/session.c: MFH * NEWS: New PostgreSQL functions 2002-01-07 Egon Schmid <eschmid@s.netic.de> * ext/mbstring/mbstring.c: Fixed some protos. 2002-01-07 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> * ext/mbstring/mbstring.c ext/mbstring/mbstring.h: added mb_get_info() to get internal settings of mbstring. 2002-01-07 Markus Fischer <mfischer@guru.josefine.at> * ext/domxml/php_domxml.c: - Fix domxml_node_unlink_node() proto and return value. 2002-01-07 Thomas V.V.Cox <cox@idecnet.com> * pear/HTTP.php: ws 2002-01-06 Stig Venaas <venaas@uninett.no> * ext/ftp/ftp.c ext/ftp/ftp.h: Added IPv6 support * main/network.c main/php_network.h: hostconnect now divides the timeout with no. of addresses. If a connection attempt times out, it goes on to the next. Unless each timeout would be <5s. Added php_any_addr() that fills out the any address for IPv6 and IPv4. 2002-01-06 Thomas V.V.Cox <cox@idecnet.com> * pear/scripts/pear-get.in pear/scripts/pear.in: use the new Console_Getopt::readPHPArgv() function to read args * pear/Console/Getopt.php: Added readPHPArgv() function that will safely read the $argv PHP array across different PHP configurations. Will take care on register_globals and register_argc_argv ini directives and the new $_SERVER vars 2002-01-06 Edin Kadribasic <edink@proventum.net> * sapi/cli/.cvsignore sapi/cli/CREDITS sapi/cli/Makefile.in sapi/cli/config.m4 sapi/cli/getopt.c sapi/cli/php_cli.c sapi/cli/php_getopt.h: Added CLI (command line intrerface) sapi. * main/SAPI.h main/main.c: Added argc and argv in request_info needed for the new cli sapi. Modified registering $argc and $argv to support cli sapi. 2002-01-06 Stig Venaas <venaas@uninett.no> * ext/sockets/php_sockets.h ext/sockets/sockets.c main/network.c main/php_network.h configure.in: Added some consts for arguments in network.c declarations. Moved php_sockaddr_storage to php_network.h and added check for struct sockaddr_storage 2002-01-06 Thomas V.V.Cox <cox@idecnet.com> * pear/DB/tests/driver/setup.inc: pgsql->mysql 2002-01-06 Stig Bakken <ssb@fast.no> * ChangeLog.2001.gz: * archive the 2001 changelog 2002-01-06 Thomas V.V.Cox <cox@idecnet.com> * pear/DB/tests/pgsql/09numrows.phpt pear/DB/tests/mysql/09numrows.phpt: this test is no longer here * pear/DB/tests/driver/01connect.phpt pear/DB/tests/driver/02fetch.phpt pear/DB/tests/driver/03simplequery.phpt pear/DB/tests/driver/04numcols.phpt pear/DB/tests/driver/05sequences.phpt pear/DB/tests/driver/06prepexec.phpt pear/DB/tests/driver/08affectedrows.phpt pear/DB/tests/driver/09numrows.phpt pear/DB/tests/driver/10errormap.phpt pear/DB/tests/driver/13limit.phpt pear/DB/tests/driver/14fetchmode_object.phpt pear/DB/tests/driver/README pear/DB/tests/driver/connect.inc pear/DB/tests/driver/mktable.inc pear/DB/tests/driver/setup.inc pear/DB/tests/driver/skipif.inc: Multi-Driver portability test * pear/DB/tests/errors.inc pear/DB/tests/limit.inc pear/DB/tests/numrows.inc pear/DB/tests/tableinfo.inc: test updates * pear/DB/oci8.php: - use count(*) instead of count(a, b) - preserve the error handler when testing the sequence - missing E_ALL fixes * pear/DB/oci8.php: - change the case of column names to lower case when "optimize=portability" (use a slow php array_change_key_case() until PHP get its C native version avaible. Please do it!) - Improved error reporting in connection 2002-01-05 Markus Fischer <mfischer@guru.josefine.at> * ext/domxml/php_domxml.c: - Refuse attribute nodes on add_child() and add list destructor for PI nodes. (Christian Stocker) - Fix append_child() according to add_child(). - Fix some protos, minor code and warning message cosmetics. 2002-01-05 jim winstead <jimw@apache.org> * ext/standard/tests/strings/wordwrap.phpt ext/standard/string.c: More tweaking of wordwrap() with the cut parameter set. It was being a little too aggressive and cutting words without breaking at spaces first. (A couple of tests were incorrect.) * ext/standard/tests/strings/wordwrap.phpt ext/standard/string.c: New memcpy()-based wordwrap() implementation. The simple case (single-character break, no forced break) appears to be about 60% faster, and there's simply no comparison for non-simple cases with non-trivial amounts of text. The old algorithm was O(n^2) (with an unfortunately large constant factor) because of the use of strncat(), the new one is O(n). Added some more tests, too. 2002-01-05 Thomas V.V.Cox <cox@idecnet.com> * pear/scripts/pear-get.in pear/scripts/pear.in: Added check for $argv avaible (thanks Michael H�rtl <mhaertl@pressline.de>) 2002-01-05 jim winstead <jimw@apache.org> * ext/standard/math.c: Fix the Win32 compile. 2002-01-05 Egon Schmid <eschmid@s.netic.de> * ext/standard/math.c ext/standard/basic_functions.c: Fixed some protos. 2002-01-05 jim winstead <jimw@apache.org> * ext/standard/math.c: Apparently multi_convert_to_double_ex() didn't quite do what I thought. Still need to handle numeric strings. * ext/standard/tests/math/pow.phpt ext/standard/basic_functions.c ext/standard/math.c ext/standard/php_math.h: Fixed pow(), and added finite(), isinf(), and isnan(). Also fixed pow() tests. * ext/standard/tests/math/pow.phpt: good grief, positive powers of 0 are well-defined. (code fix coming.) * ext/standard/reg.c: Be more aggressive in making sure that substring matches are valid in ereg_replace before trying to use them. 2002-01-05 Zak Greant <zak@jobvillage.com> * ext/standard/tests/array/array_data.txt: Surprising how tests can fail when they don't have any supporting data :) Thanks for the catch Jan and Jim 2002-01-04 Jon Parise <jon@csh.rit.edu> * main/rfc1867.c: Nuke unused variable warning (end_arr). 2002-01-04 Stig Venaas <venaas@uninett.no> * ext/ldap/ldap.c ext/ldap/php_ldap.h: Made ldap_modify() an alias for ldap_mod_replace(). The two were identical. 2002-01-04 jim winstead <jimw@apache.org> * ext/standard/tests/strings/wordwrap.phpt ext/standard/string.c: Fixed segfault in wordwrap() when wrapping to zero width and using multi-character break or trying to force cut (bug #12768, now fails and issues a warning because forcing a zero-width cut doesn't make sense). Also converted to new paramater-passing API and avoid making an extra copy of the return values. 2002-01-04 Sterling Hughes <sterling@designmultimedia.com> * ext/dio/dio.c: Added the O_NOCTTY option, for terminal i/o. 2002-01-04 Hartmut Holzgraefe <hartmut@six.de> * configure.in: first PHP_EXTENSION_LIBS casualty :( 2002-01-04 Ben Mansell <ben@zeus.com> * sapi/fastcgi/fastcgi.c: Added log_message function to the FastCGI sapi, so you can see error output from scripts 2002-01-04 Hartmut Holzgraefe <hartmut@six.de> * ext/ncurses/config.m4: ncurses is useless in webserver modules * ext/xmlrpc/config.m4 ext/xslt/config.m4: more unquoted messages with kommas fixed * ext/mcrypt/config.m4: always quote messages with [...], *especialy* when using kommas in the text * ext/domxml/php_domxml.c: proto fixes * ext/pcntl/config.m4: use predefined function instead of hardcoded test * ext/pcntl/pcntl.c ext/odbc/velocis.c: proto fix * CODING_STANDARDS: small clarification 2002-01-04 Sascha Schumann <sascha@schumann.cx> * genfiles: Remove #line's from var_unserializer.c 2002-01-04 Hartmut Holzgraefe <hartmut@six.de> * ext/readline/config.m4: check for library existance before adding them * acinclude.m4: two new check functions for use in config.m4 file 2002-01-04 Sebastian Bergmann <sb@sebastian-bergmann.de> * ext/mssql/.cvsignore: Update .cvsignore. 2002-01-03 Frank M. Kromann <frank@frontbase.com> * ext/mssql/php_mssql.c: Making error handling thread safe. Thanks to Paco Ortiz <fjortiz@comunet.es> 2002-01-03 Hartmut Holzgraefe <hartmut@six.de> * acinclude.m4 configure.in: make configure more robust if extensions add libraries without checking for their existance first old behaviour was to fail on the next library check with misleading messages, now configure will work but make will fail with a 'lib not found' message * ext/standard/string.c: fix for bug #14832: basename with 2nd parm corrupts source string 2002-01-03 Markus Fischer <mfischer@guru.josefine.at> * ext/ftp/php_ftp.c: - Now use ZE's builtin zend_zval_type_name(). * ext/domxml/php_domxml.c: - domxml_node_add_child(): Perform deep copy before adding child to prevent double memory freeing. * ext/ftp/php_ftp.c: - FTP_BINARY is more common instead of FTP_IMAGE. 2002-01-03 Thies C. Arntzen <thies@thieso.net> * ext/standard/dir.c: protos fixes by Wolfgang Drews 2002-01-03 Egon Schmid <eschmid@s.netic.de> * ext/ftp/php_ftp.c: Please, no punctuation mark at the end of the description. 2002-01-02 Zak Greant <zak@jobvillage.com> * ext/standard/basic_functions.c: Adding key_exists alias for array_key_exists, at the request of One-Who-Shall-Not-Be-Named-Because-He-Is-On-Vacation 2002-01-02 Stig Bakken <ssb@fast.no> * pear/DB/tests/db_error.phpt pear/DB/tests/db_error2.phpt pear/tests/pear_error.phpt: * PEAR.php line number changes again * pear/tests/pear_registry.phpt: * registry files renamed from .inf to .reg, update test * pear/PEAR/Installer.php: * support "pear-get install XML_RPC" * pear/Makefile.in pear/scripts/.cvsignore pear/scripts/pear-get.in pear/scripts/pear.in: * start splitting "pear" command into "pear" and "pear-get" * pear/PEAR/Remote.php: * use new overloading API properly 2002-01-02 Markus Fischer <mfischer@guru.josefine.at> * ext/ftp/php_ftp.c: - Corrected proto for ftp_connect() (new optional parameter for initial custom timeout). * ext/ftp/ftp.c ext/ftp/ftp.h ext/ftp/php_ftp.c ext/ftp/php_ftp.h: - Added ftp_set_option(), ftp_get_option() and support for setting a custom timeout. 2002-01-02 jim winstead <jimw@apache.org> * ext/gd/gd.c: jpeg2wbmp,png2wbmp: fix prototypes; _php_image_convert: simplify argument count checking 2002-01-02 Markus Fischer <mfischer@guru.josefine.at> * ext/ftp/php_ftp.c: - Fixed ftp_fget() and ftp_mkdir() protos. * ext/ftp/php_ftp.c: - Corrected proto for ftp_fget(). 2002-01-01 Markus Fischer <mfischer@guru.josefine.at> * ext/ftp/php_ftp.c ext/ftp/php_ftp.h: - Switched to zend_parse_parameters(), unified error/warning messages, use real resources instead of integers, adjusted prototypes (hope I got them all). * NEWS: - Summarize dbase fixes. 2002-01-01 Adam Dickmeiss <adam@indexdata.dk> * ext/yaz/php_yaz.c: Removal of non-essential parameters for non-piggyback search.