2002-04-18 Derick Rethans * 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 * 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 * pear/PEAR/Command.php: * Add API documentation. 2002-04-18 Sebastian Bergmann * 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 * 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 2002-04-18 Sebastian Bergmann * 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 * 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 * 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 2002-04-18 Sander Roobol * ext/xslt/sablot.c: Removed redefinition of MIN() * ext/dbx/dbx.c: Removing unused variable 2002-04-18 Stig Bakken * pear/pear.m4: * another file that should not have been MFH'ed 2002-04-18 Derick Rethans * 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 * main/config.w32.h: Some cleanup for the Win32 build configuration. 2002-04-18 Hartmut Holzgraefe * ext/standard/tests/general_functions/003.phpt ext/standard/levenshtein.c: MFH fix for #16473 2002-04-18 Harald Radi * ext/com/conversion.c ext/com/COM.c: MFH * ext/com/conversion.c: whitespace fixes 2002-04-18 Alan Brown * 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 * 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 * pear/File/Passwd.php: * added lock(), unlock(), isLocked() and getCvsUser() methods. 2002-04-17 Stig Bakken * pear/scripts/phpize.in: * revert buildv5 changes * pear/PEAR/Packager.php: * doooh! 2002-04-17 Uwe Steinmann * ext/xmlrpc/xmlrpc-epi-php.c: - fixed memory leak 2002-04-17 Sebastian Bergmann * 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 * 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 * pear/DB.php: * added DB::isConnection * phpdoc fixes 2002-04-16 Marcus Börger * main/php_ini.c: fix cli/cgi -c | 2002-04-16 Aaron Bannert * 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 2002-04-16 Sterling Hughes * 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 * ext/zlib/zlib.c: remove old code 2002-04-16 Sander Roobol * ext/w32api/w32api.c: MFH (#16628) * ext/w32api/w32api.c: Added missing function to function_entry 2002-04-16 Stig Bakken * pear/PEAR/Common.php: * started working on analyzeSourceCode and detectDependencies methods 2002-04-16 Jani Taskinen * 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 * ext/xslt/config.m4: - MFB: Remove version number * ext/xslt/config.m4: - Remove version number here 2002-04-16 Sterling Hughes * 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 * 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 * 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 * 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 * ext/msession/reqclient.h ext/msession/msession.c: Chages for beta3 2002-04-15 Wez Furlong * main/network.c: should not be there * main/network.c: Some minor tweaks and debugging for sockets. 2002-04-15 Uwe Steinmann * 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 * 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 * ext/exif/exif.c: support for WinXP tags (thanks to Rui Carmo) 2002-04-14 Thies C. Arntzen * 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 * 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 * sapi/apache/config.m4: Make the configure fail if someone tries to use --with-apache with Apache2 2002-04-14 Markus Fischer * pear/PEAR/Frontend/CLI.php: - Do not try to draw a table if there are not elements. 2002-04-14 Jani Taskinen * NEWS: Fixed some entries.. * sapi/apache2filter/sapi_apache2.c: ws fixes 2002-04-14 Derick Rethans * ext/zip/zip.c: - MFH: Fix NULL-termination issue * ext/zip/zip.c: - Fix null-termination problem 2002-04-14 Rui Hirokawa * ext/mbstring/mbstring.c: fixed error output handler when 'pass' is choosed as output encoding. 2002-04-14 Jani Taskinen * 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 * ext/fbsql/config.m4: /usr/lib is the default install dir on Mandrake 2002-04-14 Jani Taskinen * 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 * 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 * main/php_ini.c: Fix cli/cgi -c option 2002-04-13 Thies C. Arntzen * 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 * 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 * ext/gd/config.m4: s/==/=/ 2002-04-13 Markus Fischer * pear/PEAR/Installer.php: - Also raise a different error message if we don't specify any package at all. 2002-04-13 Jani Taskinen * sapi/apache/config.m4: - Prevent users from trying to make a static build with Apache2 using --with-apache 2002-04-13 Markus Fischer * pear/PEAR/Installer.php: - Return a different error message if no package file was given at all. 2002-04-13 Rasmus Lerdorf * ext/gd/config.m4: oops 2002-04-13 Markus Fischer * 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 * 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 * 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 * 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 * 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 * 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 * pear/PEAR/Remote.php: * add cookie authentication to PEAR_Remote (temporarily in addition to http auth) 2002-04-12 Jani Taskinen * sapi/apache2filter/config.m4 sapi/apache/config.m4: - Added checks to prevent building the DSO with wrong configure option. 2002-04-12 Aaron Bannert * 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 * ext/exif/exif.c: Fix the build. * ext/zlib/zlib.c: Do NOT use C++ comments in C code. 2002-04-12 jim winstead * RELEASE_PROCESS: remove this, since it doesn't describe the current process, and is under a silly license. 2002-04-12 Derick Rethans * main/php_version.h configure.in: - Swap back development version numbers 2002-04-12 Wez Furlong * ext/openssl/openssl.c: fix build with ZE2 2002-04-12 Derick Rethans * configure.in main/php_version.h: - Go with RC3 2002-04-12 Wez Furlong * main/php_streams.h: fix segfault 2002-04-12 Sascha Schumann * 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 * ext/pcntl/tests/001.phpt: - MFB (4_2_0) * ext/pcntl/tests/001.phpt: - fix testcase - patch by: Roman Neuhauser 2002-04-12 Marcus Börger * 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 * ext/zlib/zlib.c: Removing a unused local variable. Setting the size before returning the value in readgzfile 2002-04-12 Marcus Börger * 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 * ext/mbstring/tests/003.phpt: MFH * ext/mbstring/tests/003.phpt: This test should be skipped if(!cgi) 2002-04-12 Rui Hirokawa * ext/mbstring/mbstring.c: fixed a bug which causes crash when charset is not set. 2002-04-12 Marcus Börger * 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 * 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 * 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 * 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 * 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 * 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 * ext/mbstring/mbstring.c: interpret empty to_encoding as encoding not set what results in current_internal_encoding 2002-04-11 Jani Taskinen * NEWS: Fixed (again) the news entry..NEWS file is not a manual. 2002-04-11 Rui Hirokawa * ext/mbstring/mbstring.c: fixed a bug which causes crash when charset is not set. 2002-04-11 Harald Radi * ext/gd/gd.c: fixed typo * ext/gd/gd.c: fixed type 2002-04-11 Aaron Bannert * 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 2002-04-11 Harald Radi * ext/gd/gd.c: fixed type 2002-04-11 Aaron Bannert * 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 * main/config.w32.h win32/php4dll.dsp win32/php4dllts.dsp: Disable ext/overload. 2002-04-11 Joseph Tate * win32/php4dllts.dsp win32/php4ts.dsp win32/php4ts_cli.dsp: Fixing project files so that they load 2002-04-11 Aaron Bannert * 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 2002-04-11 Jan Lehnardt * ext/domxml/tests/001.phpt: - add quotes. Cought by: Roman Neuhauser 2002-04-11 Aaron Bannert * sapi/apache2filter/sapi_apache2.c: Return the number of bytes consumed, not the number of bytes left. Suggested by: Brian Havard 2002-04-11 Sebastian Bergmann * sapi/apache2filter/README: MFH (Update README). * sapi/apache2filter/README: Update README. 2002-04-11 Joseph Tate * 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 * 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 * ext/mbstring/mbstring.c: Fix ZTS build 2002-04-11 Derick Rethans * 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 * main/user_streams.c ext/standard/php_fopen_wrapper.c: Fix declarations (Thanks Sebastian) 2002-04-11 Alexander Merz * pear/Archive/Tar.php: use DIRECTORY_SEPERATOR 2002-04-11 Stig Bakken * configure.in: * no more pear/scripts/pear-get 2002-04-11 Marcus Börger * 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 * sapi/apache2filter/php_apache.h sapi/apache2filter/sapi_apache2.c: MFH (Patch by Aaron Bannert and Cliff Woolley ). * sapi/apache2filter/php_apache.h sapi/apache2filter/sapi_apache2.c: Patch by Aaron Bannert and Cliff Woolley . 2002-04-11 Sascha Schumann * 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 * ext/skeleton/php_skeleton.h: TSRMG => TSRMLS 2002-04-10 Wez Furlong * 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 * NEWS: - Added __FUNCTION__ and __CLASS__ constants. 2002-04-10 Stig Bakken * pear/package-pear.xml: * add download command to description 2002-04-10 Tomas V.V.Cox * pear/PEAR/Command/Remote.php: Implemented "pear download " * 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 * 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 * main/snprintf.c main/spprintf.c: fix a warnig and an error (found by Sebastioan) 2002-04-10 Rui Hirokawa * 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 * 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 * 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 * win32/php4dll.dsp win32/php4dllts.dsp: Fix Win32 build. 2002-04-10 Jani Taskinen * 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 * pear/DB/pgsql.php: Fixed postgres connect string generation when no host is specified. 2002-04-10 Stig Bakken * 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 * ext/exif/exif.c: - Reverse patch * ext/posix/posix.c: MFH * ext/posix/posix.c: - Fix defines 2002-04-10 Marcus Börger * 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 * 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 * ext/gmp/gmp.c: MFH * ext/gmp/gmp.c: Fix bug #15835. 2002-04-09 Stig Bakken * 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 * sapi/apache2filter/php_functions.c: eekk -- and ssb thought my macro's were icky :) 2002-04-09 Stig Bakken * 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 * pear/PEAR/Dependency.php pear/PEAR/Installer.php: Make the dependencies check look for the correct registry file 2002-04-09 Alexander Merz * pear/PEAR/Registry.php: Win95/98/Me doesn't support locking, please check patch on other systems 2002-04-09 Tomas V.V.Cox * 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 * pear/scripts/pear.bat: it's been changed back to php.exe 2002-04-09 Alexander Merz * pear/scripts/pear.bat: updated, requires PHP4.2 php-cgi 2002-04-09 Stig Bakken * 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 substitution during install 2002-04-09 Sterling Hughes * sapi/apache2filter/php_functions.c sapi/apache2filter/sapi_apache2.c: fix compile warnings 2002-04-09 Stig Bakken * pear/package-pear.xml: * package definition for the base PEAR system * pear/package.dtd: HEADS UP, package.xml format change: foo.php is now * 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 * pear/PEAR/Common.php: Added PEAR_Common::getUserRoles() and a suggestion 2002-04-07 Hartmut Holzgraefe * ext/standard/levenshtein.c ext/standard/tests/general_functions/003.phpt: fix and regression test for Bug #16473 2002-04-07 Marcus Börger * 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 * pear/PEAR/Command/Package.php pear/PEAR/Frontend/CLI.php pear/PEAR/Packager.php: * added "cvstag" command 2002-04-07 Marcus Börger * 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 * php.ini-recommended php.ini-dist: Removed relics from PHP3. 2002-04-07 Stig Bakken * 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 * configure.in: apply jan's configure check for apache2 and freebsd (relating to the use of tsrm-pth). 2002-04-07 Stig Bakken * 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 * pear/PEAR/Command/Install.php: Just some help cleanup 2002-04-07 Stig Bakken * pear/PEAR/Command/Package.php: * typo * pear/PEAR/Command/Package.php: * rename package-verify command to package-validate 2002-04-07 Wez Furlong * ext/standard/string.c: fix for #16469 2002-04-07 Stig Bakken * 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 * 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 * NEWS: Fixed bad entries. 2002-04-06 Marcus Börger * 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 * ext/zip/zip.c: - MFH zip_entry_read_bug 2002-04-06 Wez Furlong * 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 * ext/zip/zip.c: - Fix zzip_entry_read 2002-04-06 Richard Heyes * pear/PEAR.php: * Added registerShutdownFunc() method 2002-04-06 Wez Furlong * NEWS: Inform the masses about where to get a 4.2 compatible mailparse package 2002-04-06 Sebastian Bergmann * sapi/apache/php4apache.dsp sapi/apache2filter/php4apache2.dsp sapi/fastcgi/fastcgi.dsp: MFH (.dsp fixes) 2002-04-06 Tomas V.V.Cox * 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 * sapi/fastcgi/fastcgi.dsp sapi/apache2filter/php4apache2.dsp sapi/apache/php4apache.dsp: Fix output directory. 2002-04-06 Tomas V.V.Cox * 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 * 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 * NEWS: minor fix.. 2002-04-06 Sebastian Bergmann * sapi/apache2filter/php4apache2.dsp: Fix Debug_TS build. 2002-04-06 Yasuo Ohgaki * 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 * 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 * ext/mbstring/mbstring.c: Use get_active_function_name() for error messages. 2002-04-06 Stig Bakken * pear/PEAR/Common.php: * forgot htmlspecialchars in release notes 2002-04-05 Sterling Hughes * sapi/apache2filter/sapi_apache2.c: MFH changes per doug's request 2002-04-05 Joseph Tate * 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 * 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 * 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 * ext/bz2/php_bz2.h: Fix build 2002-04-05 Tomas V.V.Cox * 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 * ext/zlib/php_zlib.h ext/zlib/zlib.c: Add zlib.output_compression_level option 2002-04-05 Jani Taskinen * NEWS: MFH the fixed entries * NEWS: Fixed some entries.. 2002-04-05 Zeev Suraski * 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 * 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 * 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 * ext/ircg/README.txt: update regarding version numbers 2002-04-05 Yasuo Ohgaki * 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 * pear/DB/mysql.php: ws 2002-04-05 Marcus Börger * 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 * pear/Makefile.frag: add mbstring headers to those for pear/pecl extensions 2002-04-04 Marcus Börger * ext/exif/exif.c: removed calls to wctomb, wcstombs 2002-04-04 Sterling Hughes * 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 * ext/interbase/interbase.c: Fixed sigfault in ibase_close (bug #15419-#15992) 2002-04-04 Sterling Hughes * win32/syslog.h: non gpl implementation * win32/grp.h: replace grp.h with a new implementation (non-GPL) 2002-04-04 Sander Roobol * 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 * 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 * ext/bz2/php_bz2.h ext/bz2/bz2.c: Fix #16428 problems. Renamed the bz2 wrapper to bzip2:// 2002-04-04 Jani Taskinen * ext/xml/tests/007.phpt: MFH * ext/xml/tests/007.phpt: Revert the bogus patch. 2002-04-04 Yasuo Ohgaki * ext/pgsql/tests/08escape.phpt ext/pgsql/tests/escape.inc: Added pg_escape_*() test 2002-04-04 Jani Taskinen * 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 * ext/pgsql/pgsql.c: Clean up pg_escape_*() 2002-04-04 Jani Taskinen * ext/mbstring/tests/.cvsignore: missing .cvsignore 2002-04-04 Christian Stocker * 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 * ext/pgsql/pgsql.c: Fixed crash with pg_escape_*() 2002-04-04 Sascha Schumann * acinclude.m4: Add deferred libs to DLIBS instead of LIBS. Noticed by: Jani Taskinen 2002-04-04 Daniela Mariaschi * ext/interbase/interbase.c: Fixed sigfault in ibase_close(). Bug #15419 #15992 2002-04-04 Jani Taskinen * NEWS: minor fixes 2002-04-04 Marko Karppinen * NEWS: Added news on the Mac OS X changes and removed a duplicate line 2002-04-04 Jani Taskinen * ext/standard/dl.c configure.in: - OS X support for dynamically loaded extensions. (patch by Marko) 2002-04-04 Sterling Hughes * ext/curl/curl.c: MFH 2002-04-03 Sterling Hughes * ext/curl/curl.c: fix bug #15150, thanks to daniel at haxx.se for the fix 2002-04-03 Jani Taskinen * 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 * 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 * tests/func/007.phpt: Added ini_set()/ini_get()/ini_restore() test 2002-04-03 Wez Furlong * 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 * pear/DB/mysql.php: * work around a php segfault 2002-04-02 Wez Furlong * 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 * ext/tokenizer/config.m4: - Fix layout 2002-04-02 Stig Bakken * 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 * ext/standard/quot_print.c: 2002-04-02 Derick Rethans * ext/standard/quot_print.c: - Whitespace 2002-04-02 James Cox * 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 * ext/imap/config.m4: Be a bit more verbose about what was not found. 2002-04-01 Jani Taskinen * 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 * 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 * 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 * 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 * 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 * 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 * pear/Net/Socket.php: * moved to /pear 2002-04-01 Tomas V.V.Cox * 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 * pear/package.dtd: * typo 2002-04-01 Marcus Börger * ext/exif/tests/001.phpt ext/exif/tests/002.phpt: MFH finding test files 2002-04-01 Yasuo Ohgaki * ext/pgsql/config.m4: MFH. Forgot to commit this when I commit fix build with PostgreSQL 6.5.x 2002-04-01 Derick Rethans * ext/standard/math.c: - MFH for fix for bug #14966 * ext/standard/math.c: - Fix for bug #14966 2002-04-01 Markus Fischer * ext/exif/exif.c: - Nuke *FETCH macros. 2002-04-01 Marcus Börger * ext/exif/exif.c: 2002-04-01 Mark L. Woodward * ext/msession/msession.c: PHP_SESSION_API not always defined. 2002-03-31 Markus Fischer * ext/exif/exif.c: - Fix compilation. 2002-03-31 Tomas V.V.Cox * pear/PEAR/Common.php: E_ALL fix * pear/PEAR/Packager.php: if (!function_exists('md5_file')) { ... 2002-03-31 Jani Taskinen * 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 * configure.in: Fix ZE2 builds 2002-03-31 Mark L. Woodward * ext/msession/msession.c: Fixed conditional compilation based on macros changed in ext/session/php_session.h which changed. 2002-03-31 Rui Hirokawa * 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 * 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 * 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 * pear/Makefile.frag: * install PEAR/Command/Remote.php 2002-03-31 Rui Hirokawa * 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 * configure.in: * added sys/utsname.h test 2002-03-30 Yasuo Ohgaki * ext/pgsql/pgsql.c: MFH. 6.5.3 libpq build fix. 2002-03-30 Marcus Börger * 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 * 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 * 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 * ext/exif/exif.c: -compiler warnings 2002-03-30 Jani Taskinen * ext/pspell/tests/.cvsignore: New file. * ext/pspell/tests/.cvsignore: another missing .cvsignore 2002-03-30 Marko Karppinen * 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 * 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 * ext/ftp/php_ftp.c: - MFH fix for #16348. * ext/ftp/php_ftp.c: - Fix #16348. 2002-03-29 Marko Karppinen * .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 * 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 * 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 * sapi/apache2filter/sapi_apache2.c: adjust to recent apr bucket api changes 2002-03-29 Jani Taskinen * 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 * ext/mysql/php_mysql.c ext/mysql/php_mysql.h: - add mysql_info function 2002-03-29 Yasuo Ohgaki * ext/pgsql/config.m4 ext/pgsql/pgsql.c: Fix build failure with PostgreSQL 6.5.x 2002-03-29 Stig Bakken * 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 * tests/lang/031.phpt: Trying to be more clear. 2002-03-29 Stig Bakken * 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 * 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 * 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 * main/user_streams.c: Fix ZE2 build. 2002-03-29 Stig Bakken * pear/PEAR/Common.php: * fix tempfile cleanup 2002-03-28 Stig Bakken * 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 * NEWS: Cleanup. 2002-03-28 Joseph Tate * 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 * 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 * pear/HTML/Select.php: Avoid warning message in toHtml() method when no default element specified 2002-03-28 Stig Bakken * pear/package.dtd: * added "platform" and "md5sum" attributes to 2002-03-28 Derick Rethans * 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 ) * configure.in: - Fix build for BSD: BSD_MAKEFILE and resolver functions. (Patch by Melvyn Sopacua ) * 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 * 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 * 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 * ext/domxml/php_domxml.c: Fixing compile warning under Win32 2002-03-27 Marcus Börger * sapi/cli/php_cli.c: recorrect las checkin 2002-03-27 Derick Rethans * ext/mailparse/rfc2045.c: - MFH for multiple To: lines 2002-03-27 Hartmut Holzgraefe * ext/standard/string.c: fix for Bug #16314 2002-03-27 Jani Taskinen * .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 * 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 * 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 * 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 * ext/pgsql/pgsql.c: MFH error message consistency changes 2002-03-26 Jon Parise * ext/mime_magic/.cvsignore: Ignore generated files. 2002-03-26 Sean Bright * php.ini-dist: Fix typo. 2002-03-26 Hartmut Holzgraefe * ext/mime_magic/mime_magic.c ext/mime_magic/php_mime_magic.h: build conflicts fixed 2002-03-26 Sander Roobol * 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 * 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 * 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 * 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 ( * ext/standard/string.c: - MFH for bug #11244 2002-03-26 Yasuo Ohgaki * ext/pgsql/pgsql.c: Remove warnings 2002-03-26 Derick Rethans * ext/openssl/openssl.c: - No asserts in the branch 2002-03-26 Yasuo Ohgaki * ext/pgsql/pgsql.c: Changed error messages to be consistent with other error messages 2002-03-26 Derick Rethans * ext/dbx/dbx.c: - MFB * ext/dbx/dbx.c: - Fix comments 2002-03-26 Markus Fischer * ext/standard/string.c: - Fix bug 11244 (patch by "Tal Peer" ). 2002-03-26 Derick Rethans * 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 * 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 * 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 * ext/xmlrpc/php_config.h.in: Why was this here?? * ext/standard/dl.c: MFH dl() error message fix 2002-03-25 Sterling Hughes * ext/xslt/sablot.c: Whitespace fixes 2002-03-25 Edin Kadribasic * 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 * ext/mysql/php_mysql.c: fixed prototype for mysql_ping 2002-03-25 Sterling Hughes * 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 * ext/exif/exif.c: pproto fix 2002-03-25 Sterling Hughes * ext/mysql/php_mysql.c: clean up mysql_real_escape_string() a bit 2002-03-25 Hartmut Holzgraefe * ext/mime_magic/TODO: initial checkin 2002-03-24 Zak Greant * 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 * tests/func/006.phpt: - MFH * tests/func/006.phpt: - added basic output buffering tests 2002-03-24 Hartmut Holzgraefe * 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 * sapi/webjames/config.m4: MFH * sapi/webjames/config.m4: Backslashes caused the build to fail with autoconf 2.52 2002-03-24 Sterling Hughes * ext/dio/dio.c: fix freebsd compile 2002-03-24 Sander Roobol * ext/mysql/php_mysql.c: Fixed tiny mistake in proto (tnx to Egon for spotting it). 2002-03-24 Wez Furlong * 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 * ext/mysql/php_mysql.c: Fix typo in proto. 2002-03-24 Derick Rethans * ext/mysql/php_mysql.c: - Fix proto 2002-03-24 Georg Richter * ext/mysql/php_mysql.c: changed prototype for mysql_real_escape_string 2002-03-24 Mark L. Woodward * ext/msession/msession.c: Added support for session manager ID creation, works with patch submitted earlier 2002-03-24 Zak Greant * ext/mysql/php_mysql.c ext/mysql/php_mysql.h: Added mysql_ping() function. 2002-03-24 Georg Richter * 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 * sapi/cli/README sapi/cli/php_cli.c: Override max_execution_time, setting it to unlimited. 2002-03-24 Wez Furlong * NEWS: News updates. 2002-03-24 Jan Lehnardt * 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 * 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 * ext/curl/curl.c: - MFH for bug #16232 (Patch by Alan Knowles ) * ext/curl/curl.c: - Fix for bug #16232 (Patch by Alan Knowles ) 2002-03-24 Stig Bakken * pear/PEAR/Registry.php: * move logic to _assertStateDir 2002-03-23 Sterling Hughes * ext/dio/dio.c: revert out accidental code 2002-03-23 Edin Kadribasic * sapi/cli/README sapi/cli/TODO: Documented -r and added TODO 2002-03-23 Sterling Hughes * 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 * ext/xslt/EXPERIMENTAL: - Fix experimental notice 2002-03-23 Jan Lehnardt * 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 * ext/standard/basic_functions.h ext/standard/basic_functions.c: - Remove read_uploaded_file 2002-03-23 Edin Kadribasic * 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 * 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 * 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 * main/php_memory_streams.h main/streams.c: -defined php_stream_temp_new() for standard temp streams 2002-03-23 Tomas V.V.Cox * pear/PEAR/Command/Package.php: Yet another break; forgotten * pear/PEAR/Command/Package.php: Oops, forgot the break; 2002-03-23 Marcus Börger * NEWS: -no german in NEWS 2002-03-23 Tomas V.V.Cox * 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 * 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 * 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 * 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 * main/config.w32.h win32/crypt_win32.c win32/crypt_win32.h win32/php4dllts.dsp: MFH (crypt on win32) 2002-03-23 Derick Rethans * ext/standard/basic_functions.c ext/standard/basic_functions.h: - Added read_uploaded_file (patch by Andrew Sitnikov ) 2002-03-23 Sebastian Bergmann * sapi/cli/php_cli.c: Nuke unused variables. 2002-03-23 Stig Bakken * 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 * 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 * pear/PEAR/Installer.php: "reverting" to 1.39 as per Tomas Cox's wishes. 2002-03-23 Yasuo Ohgaki * tests/lang/031.phpt: Fix test :) 2002-03-23 Hartmut Holzgraefe * ext/curl/curl.c: proto fix 2002-03-23 Yasuo Ohgaki * tests/lang/031.phpt: Added while(list() = each()) test 2002-03-23 Rui Hirokawa * 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 * sapi/cli/php_cli.c: -Add -x 2002-03-22 Derick Rethans * configure.in: - Oops... I didn't mean to commit this * configure.in: MFH 2002-03-22 Jani Taskinen * 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 * 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 * 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 * 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 * configure.in: manual is fixed to have static anchors generated from ids for the faq part 2002-03-22 Stig Bakken * pear/PEAR/Command/Auth.php: * rename class/methods * pear/Makefile.frag: * temporarily added: nuke old files/dirs 2002-03-22 Sascha Schumann * 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 * pear/Makefile.frag: * one last CommandUI -> Frontend change 2002-03-22 Derick Rethans * 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 * 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 * 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 ) * NEWS: - Add note about changed fopen wrappers 2002-03-22 Stig Bakken * 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 * ext/standard/aggregation.c: MFH fix for bug #16182 2002-03-22 Hartmut Holzgraefe * 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 * 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 * 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 * ext/standard/file.c: - Use proper macros for php_stream_cast() return values (fixes #16211). 2002-03-21 Rasmus Lerdorf * 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 * ext/pgsql/pgsql.c: - Fix PGSql Compile 2002-03-21 Jani Taskinen * 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 * 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 * main/memory_streams.c: -missing efree in close 2002-03-21 Jani Taskinen * 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 * ext/exif/exif.c: -removed old streams test code 2002-03-21 Jani Taskinen * ext/exif/tests/.cvsignore: This file was missing. 2002-03-21 Marcus Börger * ext/exif/exif.c: -fixed memory handling 2002-03-21 Hartmut Holzgraefe * 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 * pear/PEAR/Common.php: fix a problem handling nested directories 2002-03-21 Sascha Schumann * configure.in: Support systems without NIS functions, but with non-working libnsl 2002-03-21 Wez Furlong * main/streams.c ext/standard/php_fopen_wrapper.c ext/zlib/zlib_fopen_wrapper.c ext/bz2/bz2.c: Require that wrappers use :// to avoid ambiguities when filenames have ':' characters. This slightly breaks BC with the old style zlib: wrapper. 2002-03-21 Daniela Mariaschi * ext/interbase/interbase.c: fixed numeric number incorrectly rendered 2002-03-21 Sterling Hughes * 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 * ext/xml/xml.c: proto fixes 2002-03-21 Jani Taskinen * ext/xslt/config.m4: Minor detail fixed. 2002-03-21 Andrei Zmievski * ext/standard/aggregation.c ext/standard/basic_functions.c: Fix compilation when PCRE is disabled. 2002-03-21 Ludovico Magnocavallo * 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 * 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 * NEWS: NEWS updates 2002-03-21 Rui Hirokawa * ext/mbstring/tests/003.inc: fixed POST/GET input processing. 2002-03-21 Marcus Börger * ext/exif/exif.c main/memory_streams.c: * main/memory_streams.c: -fix missing efree 2002-03-21 Tomas V.V.Cox * 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 * 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 * 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 * ext/pgsql/pgsql.c: Show function name in error message. 2002-03-20 Boian Bonev * 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 * main/memory_streams.c: fixed signed/unsigned comparison warnings 2002-03-20 Jani Taskinen * acinclude.m4: MFH 2002-03-20 Derick Rethans * makedist: MFH makedist * makedist: - Fix makedist 2002-03-20 Sander Roobol * ext/dbx/dbx.c: Some PHP-info layout fixes (\n will automatically be converted into
) and a comment-related fix. 2002-03-20 Boian Bonev * ext/vpopmail/config.m4: fix a missing [ 2002-03-20 Stefan Esser * ext/filepro/filepro.c: MFH: filepro fixes 2002-03-20 Jani Taskinen * acinclude.m4: - Should work better now.. 2002-03-20 Derick Rethans * ext/vpopmail/config.m4 acinclude.m4: - MFH iconv fix - Configure Fix for vpopmail 2002-03-20 Stefan Esser * ext/standard/html.c: MFH of bufferoverflow fix 2002-03-20 Wez Furlong * 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 * 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 * ext/zlib/php_zlib.h ext/zlib/zlib_fopen_wrapper.c: add forgotten parameter 2002-03-20 Sascha Schumann * 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 * ext/mysql/config.m4: - Fixed (hope so :) like Sascha said. 2002-03-20 Sascha Schumann * 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 * main/safe_mode.c: MFH of safe_mode.c text fix 2002-03-20 Derick Rethans * ext/vpopmail/php_vpopmail.c: MFH Sascha's fix 2002-03-20 Sascha Schumann * 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 * 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 * 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 * 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 * 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 * 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 * ext/mssql/php_mssql.c: Minor change to allocated lengths for dates 2002-03-19 Jani Taskinen * .cvsignore: missing entry 2002-03-19 Markus Fischer * ext/vpopmail/php_vpopmail.c ext/vpopmail/config.m4: - Support vpopmail 5.2 (fixes #16120). 2002-03-19 Jani Taskinen * 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 * 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 * ext/ming/ming.c: - Fix bug spotted by Lukas Schroeder . 2002-03-19 Stig Bakken * 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 * 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 * 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 * ext/fbsql/php_fbsql.c: Adding support for TinyInteger and LongInteger database types 2002-03-19 Wez Furlong * 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 * win32/php4dllts.dsp: MFH 2002-03-19 Wez Furlong * main/user_streams.c: make buffer length warnings more verbose 2002-03-19 Ludovico Magnocavallo * 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 * ext/interbase/interbase.c: fixed floating number incorrectly rendered (as mentioned by giancarlo@niccolai.ws in BUG #14755) 2002-03-19 Wez Furlong * 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 * 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 * 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 * 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 * 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 * sapi/cli/.cvsignore: added missing .libs entry * ext/iconv/Makefile.in: - Not needed anymore. 2002-03-19 Yasuo Ohgaki * 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 * win32/php4dll.dsp win32/php4dllts.dsp: Add streams.c/user_streams.c to MSVC projects. 2002-03-19 Wez Furlong * 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 * 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 * run-tests.php: WS fix 2002-03-19 Jon Parise * configure.in: Give one last reference to pear-get. 2002-03-19 Stig Bakken * 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 * ext/ftp/ftp.c: MFH (rev. 1.49) * ext/ftp/ftp.c: Fix ftp_size() returning bogus results. 2002-03-18 Sebastian Bergmann * win32/crypt_win32.c win32/crypt_win32.h: Fugbix typo. 2002-03-18 Derick Rethans * ext/standard/fsock.c: MFH socket fix * ext/standard/fsock.c: - MFH for bugfix for bug #10001 2002-03-18 Frank M. Kromann * 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 * 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 . 2002-03-18 Wez Furlong * 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 * 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 * 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 * 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 * ext/curl/curl.c: proto fixes 2002-03-18 Stig Bakken * 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 * NEWS: MFH * NEWS: -r is in the release branch. 2002-03-18 Sascha Schumann * ext/ircg/config.m4: If --with-ircg=foo was specified, default to --with-ircg-config=foo/bin/ircg-config. 2002-03-18 Derick Rethans * configure.in: - MFH: backing out requirement on C++ compiler 2002-03-18 Sascha Schumann * regex/Makefile.in: unused makefile.in 2002-03-18 Wez Furlong * 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 * win32/php4dllts.dsp: Move stream files into the right folders 2002-03-18 Stanislav Malyshev * ext/zlib/zlib.dsp: Update .dsp * ext/dotnet/dotnet.dsp: Fix build * ext/bz2/bz2.dsp: Update .dsp 2002-03-18 Zeev Suraski * ext/standard/basic_functions.c: Fix build * main/streams.c: Make Sebastian happy 2002-03-18 Sascha Schumann * 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 * 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 * 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 * 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 * 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 * 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 * README.STREAMS: correct grammar * README.STREAMS: Add some rules for stream implementors. 2002-03-18 Marcus Börger * ext/exif/exif.c: -use php_stream_make_seekable 2002-03-17 Marcus Börger * main/memory_streams.c main/php_memory_streams.h: -added temporary streams -added stream debug code 2002-03-17 Wez Furlong * 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 * 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 * 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 * ext/pcntl/pcntl.c: Remove already included file 2002-03-17 Jani Taskinen * configure.in: Fix build. 2002-03-17 Sander Roobol * ext/gd/php_gd.h: Fixed compile error about gdImageColorResolve (#14426, #15000). 2002-03-17 Harald Radi * 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 * NEWS: NEWS is my friend... * NEWS: s/-/ ./ * NEWS: no, really update it 2002-03-17 Jani Taskinen * main/Makefile.in: - This is not used anymore. 2002-03-17 James Cox * NEWS: updated NEWS 2002-03-17 Wez Furlong * 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 * ext/exif/exif.c: * main/streams.c: -fix bug with wrappers 2002-03-17 Markus Fischer * ext/vpopmail/config.m4: - Let configure also detect installation in standard unix paths. - Properly format error message. 2002-03-17 Shane Caraveo * sapi/cgi/libfcgi/os_win32.c: fix closing pipes fix buffer overrun 2002-03-17 Markus Fischer * ext/pcntl/pcntl.c: - Fix some compiler warnings and errors. 2002-03-17 Wez Furlong * ext/ming/ming.c ext/standard/fsock.c: fix win32 warning and ming leak 2002-03-16 Stig Bakken * pear/PEAR/Config.php: * added optional layer parameter to get() method * added isDefinedLayer() method 2002-03-16 Markus Fischer * ext/pcntl/pcntl.c ext/pcntl/php_pcntl.h: - WS and code style fix. 2002-03-16 Harald Radi * win32/php4dllts.dsp: project file for ZendEngine2 migration * main/internal_functions_win32.c: no message 2002-03-16 Jani Taskinen * ext/ming/ming.c: - Fixed some typos. 2002-03-16 Markus Fischer * ext/mailparse/mailparse.c ext/pcntl/pcntl.c: - Some more TSRMLS fixes. 2002-03-16 Harald Radi * ext/standard/fsock.c: fixed TSRM build 2002-03-16 Marcus Börger * 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 * 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 * main/streams.c: - Indentation fix. Never do: if (expr) { } else It should be: if (expr) { } else { 2002-03-16 Wez Furlong * 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 * 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 * 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 * ext/standard/mail.c: - WS fix. * ext/standard/mail.c: - Don't forget to close the handle. 2002-03-16 Wez Furlong * 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 * 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 * ext/rpc/rpc.c: TSRM fix 2002-03-16 Wez Furlong * 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 * 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 * 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 * win32/php4dllts.dsp: - Add streams.c and php_streams.h to project. 2002-03-16 Rui Hirokawa * 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 * 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 * main/php_streams.h main/streams.c: some minor docu-in-header changes 2002-03-16 Yasuo Ohgaki * 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 * 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 * ext/standard/image.c: -use of corrected stream seek 2002-03-16 Wez Furlong * 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 * ext/standard/image.c: -new streams 2002-03-16 Wez Furlong * 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 * 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 * 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(){ - } else { and not {\nelse - - The streams stuff looks very cool though! :) 2002-03-15 Harald Radi * 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 * NEWS: MFH * NEWS: This entry belongs under 4.2.0. 2002-03-15 Harald Radi * NEWS: MFH 2002-03-15 Wez Furlong * 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 * 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 * 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 * ext/domxml/php_domxml.c: - Fix proto (again) * ext/domxml/php_domxml.c: - proto fixes 2002-03-15 jim winstead * main/php.h: don't redefine NDEBUG if it is already defined. yeesh. 2002-03-15 Daniela Mariaschi * ext/interbase/php_interbase.h ext/interbase/interbase.c: added new ibase_fetch_assoc() php function 2002-03-15 Stig Bakken * 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 * 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 * ext/dba/config.m4: * fix for db3 from ports on freebsd 2002-03-15 Marcus Börger * sapi/cli/CREDITS: 2002-03-15 Andi Gutmans * 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 * 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 * main/php.h: Avoid warnings under VC. * NEWS: Added some fix. Clean up a bit. 2002-03-15 Wez Furlong * 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 * 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 * main/safe_mode.c: MFH of safe_mode.c typo 2002-03-14 Derick Rethans * ext/standard/var.c: - Fix bug #16078 2002-03-14 Zeev Suraski * ext/standard/info.c: Change case for consistency * ext/standard/info.c: MFH 2002-03-14 Stefan Esser * main/safe_mode.c: fixed a typo within checkuid 2002-03-14 Andi Gutmans * main/config.w32.h: - Define HAVE_ASSERT_H under Windows. There was a macro redefinition before - this. 2002-03-14 Zeev Suraski * 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 * ext/standard/var.c: fix buglet 2002-03-14 Sterling Hughes * main/php_version.h configure.in: update version 2002-03-14 Zeev Suraski * configure.in main/php_version.h: Childish, are we? 2002-03-14 Jani Taskinen * configure.in main/php_version.h: - Fixed version 2002-03-14 Zeev Suraski * 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 * ext/xmlrpc/xmlrpc-epi-php.c: - Whitespace part 1 2002-03-14 Stefan Esser * 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 * sapi/apache2filter/README sapi/apache2filter/sapi_apache2.c: MFH (Apache2Filter update). 2002-03-14 Yasuo Ohgaki * ext/standard/var.c: Fixed var_dump() crash when there is recursion. 2002-03-14 Stefan Roehrich * NEWS: Added NEWS entry for gzencode() change. * NEWS: Fixed NEWS entry, make it consistent with other entries. 2002-03-14 Sebastian Bergmann * sapi/apache2filter/README: Add note on which version of Apache 2 this SAPI module is compatible with. 2002-03-14 Sean Bright * CODING_STANDARDS: Translate to English. 2002-03-14 Yasuo Ohgaki * main/php.h CODING_STANDARDS configure.in: Include/enable assert.h/assert() when it is available 2002-03-14 Jani Taskinen * 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 * pear/DB/ibase.php: fixed typo in modifyLimitQuery() beginning of error code interpretation for tests compliance 2002-03-13 Stefan Roehrich * 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 * sapi/cli/php_cli.c: -release merge 2002-03-13 Jason Greene * 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 * 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 * ext/standard/credits_ext.h: Fix credits. 2002-03-13 Jason Greene * 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 * 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 * 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 * 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 * 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 * sapi/apache2filter/sapi_apache2.c: Sync with Apache2 Filter API change. 2002-03-13 Boian Bonev * ext/vpopmail/php_vpopmail.c: fix all comments in protos 2002-03-13 Wez Furlong * 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 * 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 * ext/mbstring/mbfilter.c: Fixed a compiler warning 2002-03-13 Marcus Börger * 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 * pear/DB/pgsql.php: Updated the regex of simpleQuery to support "(" and new lines 2002-03-12 Andi Gutmans * 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 * main/config.w32.h: Changed to PHP_CONFIG_FILE_PATH use the environment variable SystemRoot 2002-03-12 Sascha Schumann * 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 * ext/exif/exif.c ext/exif/test.txt ext/exif/tests/001.phpt: -usability -tests 2002-03-12 Sascha Schumann * 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 * 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 * ext/exif/exif.c: -return size of thumbnail even if it not read 2002-03-12 Stefan Roehrich * 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 * ext/exif/tests/001.phpt: -reflect changes -find image from run-tests.php 2002-03-12 Christian Stocker * 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 * ext/odbc/config.m4: Removed sqlrte from SAP DB liblist as it is not needed. 2002-03-12 Yasuo Ohgaki * README.TESTING: Catch up with recent test scripts changes 2002-03-12 Markus Fischer * ext/domxml/php_domxml.c: - Remove *FETCH() statements. - Clean up WS and parenthesis indentation. 2002-03-12 Christian Stocker * ext/domxml/php_domxml.c: nicer (optional) formated output in dump_mem and dump_mem_file 2002-03-12 Sebastian Bergmann * ext/standard/array.c: Fix TSRMLS_CC. 2002-03-12 Yasuo Ohgaki * 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 * 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 * pear/DB/tests/driver/setup.inc: Make pear tests find scripts needed at least. 2002-03-12 Marcus Börger * ext/standard/image.c: -merged a wrong line -one compiling issue 2002-03-12 Yasuo Ohgaki * 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 * ext/odbc/php_odbc.h: MFH * ext/odbc/php_odbc.h: - Fix more possible bugs (bug #16008 related) 2002-03-11 Derick Rethans * ext/imap/php_imap.h: - MFH for bug #16008 * ext/imap/php_imap.h: - fix bug #16008 2002-03-11 Christian Stocker * 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 * ext/iconv/iconv.c: - Slightly unify error/warning messages. - Switch to zend_parse_parameters(). - Fix whitespaces. 2002-03-11 Marcus Börger * 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 * win32/php4ts.dsp: fix on more build config 2002-03-11 Sander Roobol * ext/bz2/bz2.c ext/mcve/mcve.c: Maintain headers 2002-03-11 Marcus Börger * sapi/cli/CREDITS sapi/cli/php_cli.c: -passing arguments to CLI, see: php -h 2002-03-11 Stig Bakken * 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 * ext/pgsql/pgsql.c: Print function names in error messages 2002-03-11 Ben Mansell * 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 * 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 * sapi/cgi/libfcgi/os_win32.c: Fix warning, hope this is okay. 2002-03-11 Shane Caraveo * win32/php4ts.dsp: fix include paths for fcgi headers 2002-03-11 Yasuo Ohgaki * 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 * ext/standard/math.c: Fix thread-safe build. 2002-03-11 Jason Greene * ext/sockets/sockets.c: Fix WS 2002-03-10 jim winstead * 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 * ext/standard/syslog.c: - Fix protos. * ext/iconv/iconv.c: - MFH fix for #15799. 2002-03-10 Shane Caraveo * 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 * ext/mbstring/tests/007.phpt: fixed wrong include file. * ext/mbstring/tests/skipif.inc: fixed module name iconv->mbstring. 2002-03-10 Stefan Esser * 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 * ext/iconv/iconv.c: - Fix crash in iconv_set_encoding(). [Closes #15799] 2002-03-10 Jani Taskinen * 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 * 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 * pear/DB/IDEAS: more wishes :-) 2002-03-09 Ludovico Magnocavallo * pear/DB/STATUS: updated status for ibase with working tests * pear/DB/tests/ibase/05sequences.phpt: new test, passed 2002-03-09 Sander Roobol * ext/standard/datetime.c: Oops... 1 digit is allowed too! Reverting my fix. 2002-03-09 Stig Bakken * pear/HTML/Form.php: * added addPlain() by Ted Shieh 2002-03-09 Jason Greene * 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 * 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 * 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 * ext/domxml/php_domxml.c: implemented domxml_elem_get_attribute_node(attrname) (chregu) 2002-03-08 Marcus Börger * ext/exif/exif.c: -support for out of section data 2002-03-08 Sander Roobol * 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 * 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 * 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 * 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 * 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 * ext/ctype/ctype.c: reimplementation using macro instead of function pointer ( Bug #15951 ) 2002-03-08 Marcus Börger * 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 * ext/domxml/php_domxml.c: domxml_elem_remove_attribute(attibutename) is now implemented (chregu) 2002-03-08 Edin Kadribasic * 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 * ext/domxml/php_domxml.c: added formatting option to domxml_dump_mem() (chregu) 2002-03-08 Jani Taskinen * main/main.c: - MFH (fix for the phpinfo() output) 2002-03-08 Marcus Börger * 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 * 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 * ext/gd/config.m4: revert my patch to fix freetype2 related problem. 2002-03-07 Jani Taskinen * 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 * 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 * NEWS: Merge News Entry * NEWS: News update 2002-03-07 Sascha Schumann * Makefile.global: remove -module, it is added by configure.in * Makefile.global: Update test target from rules.mk 2002-03-07 Jon Parise * ext/ftp/ftp.c: MFH r1.45: header file correction 2002-03-07 Jason Greene * ext/mysql/config.m4 ext/mysql/libmysql/libmysql.c: Disallow mysql's 'LOAD LOCAL' when safe mode is enabled 2002-03-07 Sascha Schumann * Makefile.global: Readd ZEND_EXTRA_LIBS (as in Makefile.in rev 1.106). 2002-03-07 Jon Parise * ext/ftp/ftp.c: Correct the header file ordering. From 'man 3 inet' (FreeBSD 4.5): 2002-03-07 Derick Rethans * build/build2.mk: - Fix typo in warning suppressor 2002-03-07 Frank M. Kromann * main/config.w32.h: Revert uppercase directory name to lower case. 2002-03-07 Sascha Schumann * configure.in: ze2 handling 2002-03-07 Frank M. Kromann * main/config.w32.h win32/crypt_win32.c win32/crypt_win32.h win32/php4dllts.dsp: Enabling crypt() on Win32 2002-03-07 Sascha Schumann * 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 * 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 * acinclude.m4: Fix typo 2002-03-07 Frank M. Kromann * 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 * 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 * NEWS: some more information 2002-03-07 Sebastian Bergmann * NEWS: Add NEWS entry for the new build system. 2002-03-07 Joseph Tate * 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 * ext/standard/var_unserializer.c: - Remove CVS things 2002-03-07 Sascha Schumann * 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 * ext/gd/config.m4: reverted my patch to fix freetype2 related problem. 2002-03-07 Sascha Schumann * 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 * NEWS: - Update NEWS 2002-03-07 Yasuo Ohgaki * 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 * NEWS: MFH 2002-03-07 Hartmut Holzgraefe * ext/mcve/mcve.c: more proto stuff 2002-03-07 Jason Greene * NEWS: Add news entries representing the sockets rework. 2002-03-07 Hartmut Holzgraefe * 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 * NEWS: iconv is back 2002-03-06 Derick Rethans * main/php_version.h configure.in: - Bump version numbers on HEAD 2002-03-06 Jani Taskinen * 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 * 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 * NEWS: fixed my foobarred news entry 2002-03-06 Marcus Börger * ext/exif/exif.c: -comments 2002-03-06 Jason Greene * 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 * ext/interbase/interbase.c: - Fix for bug #12383 and #14755: 105.05$ becomes 105.5$ (Patch by: Giancarlo Niccolai ) 2002-03-06 James E. Flemer * 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 * 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 * 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 * ext/sybase_ct/php_sybase_ct.c ext/sybase/php_sybase_db.c: - Add 'appname' parameter to sybase_connect. (Patch by Christophe Sollet ) * sapi/cgi/cgi_main.c: - Put them back (and do it right) 2002-03-06 Sascha Schumann * 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 * 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 * 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 * 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 * 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 * 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 * 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 * NEWS: - Added recent changes done in ext/posix 2002-03-05 Yasuo Ohgaki * 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 * ext/session/session.c: MFH * ext/session/session.c: Make $_SESSION and $HTTP_SESSION_VARS links to each other 2002-03-05 Stig Bakken * pear/tests/pear_config.phpt: * PEAR_Config test complete 2002-03-05 James Cox * win32/install.txt: adding installation comments for 4.1.2 2002-03-05 Marcus Börger * ext/exif/exif.c: -fixes -changed internal data structures 2002-03-05 Stig Bakken * 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 * ext/odbc/php_odbc.c: Breaking BC, but making odbc_fetch_into behavior more consistent 2002-03-05 Markus Fischer * 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 * pear/PEAR.php: * fix PEAR::setErrorHandling() settings so they apply when using raiseError() 2002-03-05 Derick Rethans * 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 * 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 * win32/pws-php4cgi.reg win32/install.txt: s/php.exe/php-cgi.exe/. 2002-03-05 Dan Kalowsky * ext/odbc/birdstep.c: Added a comment for future reference 2002-03-05 Jason Greene * ext/sockets/sockets.c: Style Improvement 2002-03-05 Stig Bakken * 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 * 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 * 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 * ext/exif/test.txt: - also test TIFF support in GetImageSize * ext/exif/exif.c: - Read IsColor for TIFF 2002-03-04 Sebastian Bergmann * win32/php4.dsp win32/php4ts.dsp: Rename Win32 SAPI/CGI binary to php-cgi.exe. 2002-03-04 Jon Parise * 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 * 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 * ext/standard/info.c: Add apparently missing include 2002-03-04 Derick Rethans * 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 * 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 * ext/standard/image.c: Silence warning. 2002-03-04 Sascha Schumann * 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 * sapi/apache/config.m4: - Fix for bug #15572 (Patch by Ralf Nyrén ) 2002-03-04 Marcus Börger * 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 * ext/odbc/php_birdstep.h ext/odbc/php_birstep.h: typos suck. 2002-03-04 Jason Greene * ext/sockets/sockets.c: Style mismatch: Jon's catch 2002-03-04 Stanislav Malyshev * ext/standard/datetime.c: cygwin fix 2002-03-04 Jon Parise * 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 * makerpm: - Fix a path and remove --with-imap 2002-03-04 Stig Bakken * 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 * ext/exif/exif.c: -addition to last change: php_image.h must be included now 2002-03-04 James Cox * 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 * 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 * 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 * 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 * 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 * build/buildcheck.sh: Added message regarding expected error messages for ./buildconf 2002-03-03 James E. Flemer * 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 * pear/DB/MAINTAINERS: Updated maintainers 2002-03-03 Derick Rethans * NEWS: - Tidy up NEWS a little bit 2002-03-03 Alex Waugh * sapi/webjames/README sapi/webjames/config.m4: Updated build instructions 2002-03-02 Derick Rethans * 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 * 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 * ext/session/session.c: MFH - crash bug fix * ext/session/session.c: Fix another crash bug 2002-03-02 Hartmut Holzgraefe * ext/ctype/config.m4: enable ctype functions by default 2002-03-02 Marcus Börger * 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 * 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 * 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 * 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 * ext/exif/exif.c: Fix a couple of warnings 2002-03-02 Yasuo Ohgaki * 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 * 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 * ext/odbc/config.m4: In case we do a 4.1.3, add this trivial fix 2002-03-01 Edin Kadribasic * main/main.c: Added PHP_SAPI constant which contains the name of running SAPI. 2002-03-01 Derick Rethans * 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 * TODO: *** empty log message *** 2002-03-01 Derick Rethans * ext/interbase/interbase.c: - Add support for returning NULL values from Interbase resultsets (Patch by Daniela Mariaschi ) 2002-03-01 Jani Taskinen * NEWS: - We haven't got the branch yet.. - Some typo fixes and correct grammar. 2002-03-01 Yasuo Ohgaki * ext/msession/msession.c: Fix compiler warnings and header file path. 2002-03-01 Zeev Suraski * ext/standard/array.c: Fix php_splice() to work with large values 2002-03-01 Yasuo Ohgaki * 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 * 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 * main/output.c: Do explicit test againt to FAILURE. 2002-03-01 Stig Bakken * 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 * 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 * 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 * 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 * 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 * ext/crack/config.m4: - Fixed a typo. (caught by jtate@php.net) 2002-02-28 Rasmus Lerdorf * ext/gd/gd.c: Change fatal errors to warnings - fix bug #15797 2002-02-28 Derick Rethans * ext/standard/basic_functions.c ext/standard/var.c: - Make it a boolean 2002-02-28 Brad House * ext/mcve/mcve.c: Fix proto for mcve_initconn 2002-02-28 Edin Kadribasic * NEWS: Inserted a note about CGI binary name change. 2002-02-28 Marc Boeren * ext/dbx/howto_extend_dbx.html: Updating docs (Mc) 2002-02-28 Marcus Börger * 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 * main/php_ini.c: Removed CWD from php_ini_search_path when using CLI SAPI. 2002-02-28 Yasuo Ohgaki * 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 * sapi/cgi/config.m4: Default name of CGI binary changed to php-cgi. 2002-02-28 Marc Boeren * NEWS: Added entry that I forgot when comitting the code (Mc) 2002-02-28 Sebastian Bergmann * 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 * CODING_STANDARDS: Recommend ZEND_* macro over PHP_* macro as discussed in php-dev. 2002-02-28 Sebastian Bergmann * ext/exif/exif.c ext/exif/php_exif.h: Fix headers. 2002-02-28 Yasuo Ohgaki * README.CVS-RULES: Added how to put bug ID in commit message. 2002-02-28 Rasmus Lerdorf * main/rfc1867.c: That code made no sense - fix it to do what was originally intended 2002-02-28 Yasuo Ohgaki * ext/iconv/iconv.c: Fix iconv. Patch by (itai@siftology.com) 2002-02-28 Marcus Börger * 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 * 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 * 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 * ext/overload/EXPERIMENTAL ext/overload/README: This has been scaring people off. 2002-02-27 Jani Taskinen * NEWS: - Missed this one.. 2002-02-27 Derick Rethans * ext/standard/basic_functions.c: - Fix proto 2002-02-27 Adam Dickmeiss * ext/yaz/php_yaz.c ext/yaz/php_yaz.h: Implemented yaz_schema. Cleanup. 1.8 YAZ required 2002-02-27 Jani Taskinen * configure.in main/php_version.h: Fixed minor typo. 2002-02-27 Derick Rethans * main/php_version.h: - Oops... wishful thinking here :) * main/php_version.h configure.in: - Update version number 2002-02-27 James Cox * NEWS: correcting grammar so it's readable 2002-02-27 Sebastian Bergmann * NEWS: Add 4.1.2 NEWS entries to HEAD. 2002-02-27 Zeev Suraski * main/php_version.h NEWS configure.in: Go with 4.1.2 2002-02-27 Sebastian Bergmann * sapi/servlet/servlet.java: URLEncoder.encode(string) is deprecated in the Java 2 SDK 1.4. 2002-02-26 Andi Gutmans * 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 * ext/session/session.c: - Bring error message back 2002-02-26 Sebastian Bergmann * main/main.c: TSRM Cleanup. 2002-02-26 Andi Gutmans * main/main.c main/php_main.h: - Pass shutdown_memory_manager the TSRMLS context. 2002-02-26 Rasmus Lerdorf * 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 * NEWS: Beautify 2002-02-26 Dan Kalowsky * ext/odbc/php_odbc.c: Bug fix 15719 as submited by Joseph Southwell and allows NULL values in ODBC 2002-02-26 Edin Kadribasic * ext/standard/dl.c: Allow use of dl() when CLI is compiled with ZTS (bug #15717). 2002-02-25 Yasuo Ohgaki * ext/pspell/pspell.c: Fix pspell function entry 2002-02-25 jim winstead * 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 * pear/DB/ibase.php: Experimental support for handling all the parameters accepted by ibase_connect(). 2002-02-25 Yasuo Ohgaki * 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 * pear/DB/pgsql.php: fixed error message handling with PostgreSQL 7.2 2002-02-24 Derick Rethans * 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 * pear/package.dtd: * fix broken dtd 2002-02-24 Sebastian Bergmann * ext/wddx/wddx.c: Make phpinfo() look nicer. 2002-02-23 Markus Fischer * ext/xslt/sablot.c: - Fix info output (Peter Neuman ). 2002-02-23 Thomas V.V.Cox * pear/package.dtd: DTD corrections (make it require minimal data for installer) 2002-02-23 Stig Bakken * 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 * sapi/pi3web/pi3web_sapi.h sapi/pi3web/pi3web_sapi.c: Fixed functionality to read in server variables. 2002-02-23 Rui Hirokawa * pear/DB/MAINTAINERS pear/DB/pgsql.php: updated message format for PostgreSQL 7.2. 2002-02-23 Thomas V.V.Cox * pear/README: Point readers to pear web * pear/TODO: outdated TODO not needed for the moment 2002-02-23 Rui Hirokawa * 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 * pear/HTML/ITX.php: E_ALL fix 2002-02-22 Vincent Blavet * 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 * ext/fbsql/php_fbsql.c: Return true on update success. 2002-02-22 Rasmus Lerdorf * NEWS: Keep track of what has gone into 4.1.2 so far 2002-02-22 Yasuo Ohgaki * 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 * main/rfc1867.c: fixing boundary check before someone other does it... 2002-02-21 Yasuo Ohgaki * ext/standard/math.c ext/standard/php_math.h ext/standard/basic_functions.c: Added fmod() function 2002-02-21 Mika Tuupola * pear/File/Find.php: * Update PHPDoc. 2002-02-21 Sebastian Bergmann * win32/php4dllts.dsp win32/php4dll.dsp: Add aggregation to Win32 build. 2002-02-21 Andrei Zmievski * 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 * acinclude.m4: Fix for bug #15605 2002-02-20 Christian Stocker * ext/domxml/php_domxml.c: "o|a|b" is not valid ZE code. changed to "o|ab" 2002-02-20 Vincent Blavet * 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 * 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 * 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 * sapi/caudium/caudium.c: Fixed environment hashing again. 2002-02-19 Derick Rethans * genfiles: - Fix removal of #line lines * EXTENSIONS: - Update to note that I'm the mcrypt extension maintainer 2002-02-19 Marc Boeren * EXTENSIONS: changed comment for dbx module 2002-02-19 Dan Kalowsky * EXTENSIONS: 2002-02-18 Martin Jansen * pear/PEAR.php: ='typo' 2002-02-18 Marc Boeren * 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 * pear/DB/ibase.php: fixed typo 2002-02-17 Martin Jansen * pear/scripts/pearcmd-info.php: * Fix for bug #15500 2002-02-17 Stig Bakken * pear/package.dtd: * allow in both and * added element * added "data" role for files * allow nested elements 2002-02-17 Alex Waugh * sapi/webjames/webjames.c: Updated to new TSRM macros 2002-02-17 Mika Tuupola * pear/File/Find.php: * added mapTreeMultiple() method. 2002-02-17 Jon Parise * pear/Makefile.in: Image/Remote.php and Mail/mime.php have moved to the pear/ repository. 2002-02-15 Andrei Zmievski * NEWS: Fix. 2002-02-15 Jason Greene * 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 * ext/odbc/php_odbc.c: fix for bug 15516, patch submitted by torben@php.net 2002-02-15 Derick Rethans * sapi/cgi/cgi_main.c sapi/cli/php_cli.c: - Make the errorcode 255. (Doing docs right away) 2002-02-15 Yasuo Ohgaki * ext/pgsql/config.m4: Fix problem with sesssion_pgsql module 2002-02-15 Sean Bright * ext/xslt/config.m4: Fix cosmetic bug. (#15142) 2002-02-14 Derick Rethans * 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 * 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 * 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 * ext/ncurses/ncurses.c: - Remove duplicate constant 2002-02-13 Frank M. Kromann * ext/sockets/sockets.dsp: Fixing release and debug build on Win32 2002-02-13 Vincent Blavet * 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 * 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 * ext/dbx/dbx_pgsql.c: Fix memory leaks. 2002-02-13 Marc Boeren * ext/dbx/dbx_pgsql.c: Fixed bug where users with empty passwords could not connect. (Mc) 2002-02-13 Vincent Blavet * 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 * NEWS: Ack. 2002-02-13 Stig Bakken * 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 * NEWS: Fix entry 2002-02-12 Jan Lehnardt * 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 * NEWS: Fix-up. 2002-02-12 Sascha Schumann * main/network.c: Irix defines AF_INET6, but lacks IPv6 support, including struct sockaddr_in6. 2002-02-12 Yasuo Ohgaki * ext/pgsql/pgsql.c: Initialize automatic persistent connection reset flag 2002-02-12 Andrei Zmievski * 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 * 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 * sapi/servlet/README: Fugbix typo. 2002-02-11 Martin Jansen * pear/HTTP.php: * Fix bug #15423. 2002-02-11 Richard Heyes * 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 * ext/ldap/ldap.c: - Fix protos. 2002-02-10 Sean Bright * 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 * 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 * 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 * 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 * 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 * pear/Mail/mime.php: Mail/mime/get has wrong parameter name. 2002-02-10 Sebastian Bergmann * ext/tokenizer/tokenizer.c: TSRM fixes. 2002-02-10 Jason Greene * 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 * ext/mbstring/mbstring.c: Fix typo 2002-02-09 Andrei Zmievski * ext/tokenizer/php_tokenizer.h ext/tokenizer/tokenizer.c: *** empty log message *** 2002-02-09 Stig Bakken * ext/tokenizer/tokenizer.c: * ZTS fix 2002-02-08 Sebastian Bergmann * 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 * 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 * 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 * 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 * 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 * pear/scripts/pearcmd-remote-list.php: * Better error handling. * pear/HTTP.php: * Partially fix bug #15423. 2002-02-07 Yasuo Ohgaki * 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 * 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 * 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 * ext/odbc/config.m4: - Fix for bug 15404 2002-02-06 Yasuo Ohgaki * 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 * 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 * 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 * 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 * 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 * 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 * 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 * 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 * 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 * ext/domxml/php_domxml.c: Fixed compile error 2002-02-04 Mark L. Woodward * 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 * pear/DB/TESTERS: Added How To Run Tests 2002-02-04 Yasuo Ohgaki * ext/crack/crack.c ext/mailparse/mailparse.c: Fix ZTS startup crash 2002-02-04 Thies C. Arntzen * ext/oracle/config.m4: add oracle 9 detection for oracle-module 2002-02-04 Yasuo Ohgaki * 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 * makedist: don't include old changelogs in distribution, either 2002-02-03 Adam Dickmeiss * Makefile.in configure.in: Zend config sets ZEND_EXTRA_LIBS. Bugs 14452, 14602, 14616, 14824 2002-02-03 Martin Jansen * pear/DB/ibase.php: * nextID() and tableInfo() support by Lutz Brueckner . 2002-02-03 Yasuo Ohgaki * 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 * 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 * 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 * 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 , for example, requires . In other words, these default includes are not autonomous and don't make workable defaults. 2002-02-02 Sebastian Bergmann * main/fopen_wrappers.c: Fix thread-safe build. 2002-02-02 Stig Bakken * 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 * 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 * 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 * NEWS: Added is_a() function. 2002-02-01 Adam Dickmeiss * ext/yaz/php_yaz.c: Fixes in MARC decoder (base adress, DANmarc case). 2002-02-01 Thomas V.V.Cox * 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 * ext/readline/readline.c: remove some crap 2002-02-01 James Cox * 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 * ext/gd/gd.c: - Fix for bug 14899 (patch by Sander Roobol ) 2002-02-01 Yasuo Ohgaki * ext/iconv/iconv.c: Fixed bug with encodings that has 0 byte in strings. Patch by Fixed possible problem with encodings that a char can be larger than 4 bytes. 2002-01-31 James Cox * LICENSE: updating license to 2002 (hasn't been done since 2000) 2002-01-31 Boian Bonev * ext/vpopmail/php_vpopmail.c: fix comment 2002-01-31 Martin Jansen * pear/HTTP.php: * Fix bug #15313 2002-01-31 Bertrand Mansion * pear/HTML/Table.php: Thanks to Arnaud Limbourg: - phpDoc and cosmetic fixes 2002-01-31 Derick Rethans * ext/standard/dl.c: - Fix for bug 15311 (type mismatch of php_dl when #ifndef HAVE_LIBDL) 2002-01-31 Yasuo Ohgaki * sapi/roxen/roxen.c: A fix for the bug number 13231 & 11699. Makes the roxen support compile. Patch by Lars Wilhelmsen 2002-01-31 Derick Rethans * ext/openssl/openssl.c: - Fix for openssl_pkcs7_sign segfaults (patch by Christian Stocker ) 2002-01-31 Stig Bakken * pear/scripts/pearize.in: * lowercase tags and attributes * pear/Makefile.in: * remove broken rule for rebuilding Makefile 2002-01-31 Edin Kadribasic * main/main.c: Ignore register_globals for $argc and $argv under CLI SAPI. 2002-01-30 Edin Kadribasic * 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 * ext/odbc/php_odbc.c: Fix for bug #14803 2002-01-30 Sebastian Bergmann * sapi/servlet/README: Fugbix typo. Update path to /lib/optional. 2002-01-30 Stig Bakken * 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 * ext/oci8/oci8.c: enable "user-interrupts" 2002-01-29 Chuck Hagenbuch * pear/DB/mysql.php: Fix errors caused by not checking for variables before using them. 2002-01-29 Sebastian Bergmann * win32/php_modules.dsw: Overload is built-in. 2002-01-29 Stig Bakken * pear/DB/oci8.php: typo :) 2002-01-28 Stig Bakken * pear/Net/Socket.php: * doc comments, add setTimeout() and getStatus(), thanks to Mads Mohr Christensen 2002-01-28 Sterling Hughes * EXTENSIONS: Commit for mr. torben: Add XSLT to extensions file, mark sablot obsolete 2002-01-28 Jon Parise * ext/standard/math.c: These are now defined in zend_config.w32.h. 2002-01-28 Thomas V.V.Cox * pear/DB/dbase.php: PEAR dbase driver. Supports, connect, fetch modes, row limit, numrows and numcols. 2002-01-28 jim winstead * ext/interbase/Makefile.in: testing checkin 2002-01-27 Jon Parise * ext/standard/math.c: zend_isinf() is already defined in Zend/zend_config.w32.h for Win32. 2002-01-27 Sterling Hughes * ext/bz2/bz2.c: fix proto's for Herr. Holzraefe. int -> resource 2002-01-27 Chuck Hagenbuch * pear/Net/SMTP.php: command spacing 2002-01-27 fabrice aeschbacher * ext/interbase/php_interbase.h ext/interbase/interbase.c: add ibase_add_user(), ibase_modify_user(), ibase_delete_use() 2002-01-27 Jon Parise * 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 , it must be included after _XPG4_2 is defined. This fixes the build under Solaris 8. 2002-01-27 Sterling Hughes * 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 * 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 * 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 * 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 * 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 * ext/session/mod_mm.c: We need mm file for each user. 2002-01-25 Derick Rethans * 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 * ext/ctype/EXPERIMENTAL: no longer experimental 2002-01-25 Derick Rethans * 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 * ext/standard/array.c: (extraxt) add EXTR_IF_EXISTS and EXTR_PREFIX_IF_EXISTS flags 2002-01-25 Derick Rethans * ext/domxml/php_domxml.c: - Fix for bug #14934: type property not set in comment nodes (domxml) 2002-01-25 Yasuo Ohgaki * 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 * sapi/apache2filter/sapi_apache2.c: adjust to ap_get_brigade() API change 2002-01-25 Yasuo Ohgaki * 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 * 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 * sapi/cli/config.m4: Added --disable-cli option. * NEWS: Made entry more consistent. 2002-01-24 Sascha Schumann * configure.in: fix typo, found by edin 2002-01-24 Andrei Zmievski * ext/wddx/wddx.c: Revert back to using element for newlines. 2002-01-24 Thomas V.V.Cox * pear/CODING_STANDARDS: correct url 2002-01-24 Marko Karppinen * 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 * 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 * 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 * 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 * 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 * INSTALL: updated INSTALL to be more relevant.. more fixes coming (at some point) 2002-01-23 Vincent Blavet * pear/scripts/pearwin.php: * Add uninstall command * Add list-installed command 2002-01-23 Thomas V.V.Cox * 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 * 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 * 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 * sapi/cli/php_cli.c: No need to dupe this string in cli sapi (Bug #15181). 2002-01-23 Yasuo Ohgaki * EXTENSIONS: Added comment for pgsql module. 2002-01-23 Hartmut Holzgraefe * 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 * ext/domxml/php_domxml.c: Simplified domxml_substitute_entities_default() function 2002-01-22 Sterling Hughes * ext/curl/curl.c: just init CURL_GLOBAL_SSL 2002-01-22 Thomas V.V.Cox * pear/DB/ibase.php: - Fix a problem with the cast to array from ibase_fetch_object (reported by Ludovico Magnocavallo ) - Removed old, unsupported, unused DB_ibase->fetchRow() (remember that fetchRow is a method from DB_result not DB_driver) 2002-01-22 Jan Lehnardt * 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 * 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 * 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 * ext/domxml/php_domxml.h ext/domxml/php_domxml.c: Added domxml_substitute_entities_default() function 2002-01-21 Chris Jarecki * ext/domxml/php_domxml.c: - fixed bug caused by libxml2 in xpath_register_ns() - registered namespaces are now persistent 2002-01-21 Jon Parise * 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 * pear/HTML/IT.php: * Add possibility to load external files in template. (Patch by Christian Dickmann .) 2002-01-21 Hartmut Holzgraefe * 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 * ext/odbc/php_odbc.c: this closes off a number of ODBC bugs. 2002-01-21 Derick Rethans * main/network.c: - Fix for bug #15057: getimagesize() crashes when offline (on MacOSX) 2002-01-21 Yasuo Ohgaki * ext/pgsql/pgsql.c: Fixed typo and proto 2002-01-20 Edin Kadribasic * 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 * ext/standard/datetime.c: - Fix crash with invalid localtime on Win32 systems. 2002-01-20 Doug MacEachern * sapi/apache2filter/sapi_apache2.c: adjust to ap_get_brigade and input filter api changes 2002-01-20 Sebastian Bergmann * 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 * ext/fbsql/php_fbsql.c: cut&paste errors in protos fixed * ext/domxml/php_domxml.c: proto fix 2002-01-20 Sebastian Bergmann * TODO: Fixed by Sean Bright's commit. 2002-01-20 Sean Bright * 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 * 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 * header: Get rid of needless spaces * README.CVS-RULES: Revert my last commit 2002-01-19 Edin Kadribasic * 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 * 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 * pear/Crypt/HCEMD5.php: * Fix bug #13189. 2002-01-19 Wez Furlong * 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 * 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 * main/main.c: Make --enable-safe-mode useful 2002-01-18 Shane Caraveo * sapi/cgi/cgi_main.c: reimplement extension listing 2002-01-18 Thomas V.V.Cox * 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 * ext/domxml/php_domxml.c: - More WS fixes 2002-01-18 Christian Stocker * 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 * 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 * 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 * README.CVS-RULES: Fix typo 2002-01-17 Adam Dickmeiss * 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 * 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 * 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 * 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 * pear/DB/pgsql.php: Test for results in _pgFieldFlags (thanks Brian Abent ) 2002-01-17 Yasuo Ohgaki * ext/domxml/config.m4: Use libxml2 header if there are older version. Reported by 2002-01-17 Jaroslaw Kolakowski * 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 * ext/session/session.c: Export php_session_register_module/serializer 2002-01-16 Rasmus Lerdorf * ext/snmp/config.m4: Fix typo 2002-01-16 Marc Boeren * 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 * pear/HTML/Table.php: Changes by ReneÌ Jensen : - Remove duplicate test - Nicer html output for nested table level comment. 2002-01-16 Yasuo Ohgaki * ext/session/php_session.h: Export php_session_register_module/serializer. 2002-01-16 Thomas V.V.Cox * pear/DB/tests/driver/15quote.phpt: add quote data test 2002-01-15 Andrei Zmievski * ext/pcre/php_pcre.c NEWS: - Fixed a bug with matching string containing null bytes. 2002-01-14 Chris Jarecki * ext/domxml/php_domxml.c: - using macro in xpath_register_ns() - fixed protos in xpath functions 2002-01-14 Martin Jansen * pear/Date/Calc.php: * Fix for bug #15032. 2002-01-14 Stefan Esser * main/SAPI.c: MFH: fix for bug #14776 * main/SAPI.c: fix for bug #14776 2002-01-14 Rui Hirokawa * ext/mbstring/mbregex.c: fixed an error in mbstring caused by confliction with regex. 2002-01-13 Edin Kadribasic * acinclude.m4 sapi/cli/Makefile.in: Fixed build in the directory other than $top_srcdir. 2002-01-13 Thomas V.V.Cox * pear/DB/ibase.php: Added modifyLimitQuery(). Only avaible for the Firebird syntax (ibase(firebird)://user:pass@host/db) (contributed by Ludovico Magnocavallo ) * 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 * NEWS: 4.1.1 NEWS entry block was missing from the HEAD tree 2002-01-13 Rui Hirokawa * ext/gd/config.m4: fixed some link error of gd's configure. 2002-01-13 Edin Kadribasic * sapi/cli/Makefile.in Makefile.in: This should fix cli build when running 'make install' directly. 2002-01-13 Chris Jarecki * ext/domxml/php_domxml.c ext/domxml/php_domxml.h: - Added xpath_register_ns() function. 2002-01-12 Edin Kadribasic * 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 * 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 * 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 * ext/domxml/php_domxml.c ext/domxml/php_domxml.h: Added domxml_node_replace_node() function. 2002-01-11 Rui Hirokawa * 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 * 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 * 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 * 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 * 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 * main/main.c: - Make an E_NOTICE error type show 'Notice' instead of 'Warning'. 2002-01-10 Yasuo Ohgaki * ext/session/mod_mm.c: Fix startup crash 2002-01-10 Markus Fischer * ext/dio/dio.c: - Unified error messages. - Improved argument handling in dio_fcntl(). 2002-01-10 Yasuo Ohgaki * ext/session/mod_mm.c: Revert last commit 2002-01-10 Sascha Schumann * 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 * 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 Closes bug 14808 2002-01-10 Sascha Schumann * 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 * ext/domxml/php_domxml.h: - Fix compilation. (Christian Stocker) 2002-01-10 Yasuo Ohgaki * header: Year update * EXTENSIONS: shmop got a new maintainer 2002-01-09 jim winstead * 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 * pear/XML/Parser.php: * Whitespace. 2002-01-09 Markus Fischer * ext/sockets/sockets.c: - Correct some protos. 2002-01-09 Derick Rethans * ext/standard/tests/array/count_recursive.phpt ext/standard/array.c: - Fix bug introduced in earlier patch 2002-01-09 Yasuo Ohgaki * ext/shmop/README ext/shmop/php_shmop.h ext/shmop/shmop.c: MFH. Bugs 10530,10656,14784 2002-01-09 Uwe Steinmann * ext/pgsql/pgsql.c: - fixed typo in deprecated functionname 2002-01-09 Yasuo Ohgaki * 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 * 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 * pear/HTML/Form.php pear/HTML/Page.php: fix two warnings, thanks to Erik Hjortsberg 2002-01-08 Jaroslaw Kolakowski * 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 * 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 * ext/sockets/sockets.c: Changed proto via Georg Richter's request. 2002-01-08 Jaroslaw Kolakowski * 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 * 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 * ext/session/session.c: MFH * NEWS: New PostgreSQL functions 2002-01-07 Egon Schmid * ext/mbstring/mbstring.c: Fixed some protos. 2002-01-07 Rui Hirokawa * ext/mbstring/mbstring.c ext/mbstring/mbstring.h: added mb_get_info() to get internal settings of mbstring. 2002-01-07 Markus Fischer * ext/domxml/php_domxml.c: - Fix domxml_node_unlink_node() proto and return value. 2002-01-07 Thomas V.V.Cox * pear/HTTP.php: ws 2002-01-06 Stig Venaas * 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 * 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 * 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 * 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 * pear/DB/tests/driver/setup.inc: pgsql->mysql 2002-01-06 Stig Bakken * ChangeLog.2001.gz: * archive the 2001 changelog 2002-01-06 Thomas V.V.Cox * 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 * 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 * 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 * pear/scripts/pear-get.in pear/scripts/pear.in: Added check for $argv avaible (thanks Michael Härtl ) 2002-01-05 jim winstead * ext/standard/math.c: Fix the Win32 compile. 2002-01-05 Egon Schmid * ext/standard/math.c ext/standard/basic_functions.c: Fixed some protos. 2002-01-05 jim winstead * 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 * 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 * main/rfc1867.c: Nuke unused variable warning (end_arr). 2002-01-04 Stig Venaas * 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 * 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 * ext/dio/dio.c: Added the O_NOCTTY option, for terminal i/o. 2002-01-04 Hartmut Holzgraefe * configure.in: first PHP_EXTENSION_LIBS casualty :( 2002-01-04 Ben Mansell * 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 * 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 * genfiles: Remove #line's from var_unserializer.c 2002-01-04 Hartmut Holzgraefe * 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 * ext/mssql/.cvsignore: Update .cvsignore. 2002-01-03 Frank M. Kromann * ext/mssql/php_mssql.c: Making error handling thread safe. Thanks to Paco Ortiz 2002-01-03 Hartmut Holzgraefe * 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 * 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 * ext/standard/dir.c: protos fixes by Wolfgang Drews 2002-01-03 Egon Schmid * ext/ftp/php_ftp.c: Please, no punctuation mark at the end of the description. 2002-01-02 Zak Greant * 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 * 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 * 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 * ext/gd/gd.c: jpeg2wbmp,png2wbmp: fix prototypes; _php_image_convert: simplify argument count checking 2002-01-02 Markus Fischer * 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 * 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 * ext/yaz/php_yaz.c: Removal of non-essential parameters for non-piggyback search.