php-src/ChangeLog
2002-05-09 00:23:53 +00:00

11905 lines
355 KiB
Plaintext
Raw Blame History

2002-05-08 Jason Greene <jason@inetgurus.net>
* ext/sockets/sockets.c: Merge overflow fix
* ext/sockets/sockets.c: Fix overflow
2002-05-08 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* configure.in
sapi/apache/mod_php4.c
main/main.c
ext/mbstring/mbfilter.h
ext/mbstring/mbstring.c
ext/mbstring/mbstring.h
ext/mbstring/mbfilter.c:
Added conversion support from script character encoding to internal character encoding. This feature is very useful for japanese who uses Shift_JIS encoding because some of characters in Shift_JIS are including '0x5c' and it causes some troubles on Zend parser. This patch is made by Masaki Fujimoto.
2002-05-08 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* main/output.c: Added estrdup() needed.
Fixed typo.
2002-05-08 Aaron Bannert <aaron@apache.org>
* EXTENSIONS: This is a more appropriate address for me.
2002-05-08 Zak Greant <zak@mysql.com>
* ext/mysql/php_mysql.c:
Minor improvement to error message for mysql_data_seek
2002-05-08 Markus Fischer <mfischer@guru.josefine.at>
* run-tests.php: - Add a warning if running with safe_mode enabled.
2002-05-08 Derick Rethans <d.rethans@jdimedia.nl>
* ext/standard/credits_sapi.h: - Forgot one
* sapi/apache2filter/CREDITS
EXTENSIONS: - Added Aaron Bannert as maintainer
2002-05-08 Frank M. Kromann <frank@frontbase.com>
* ext/standard/php_smart_str.h: Kill a compiler warning on Win32
2002-05-07 Sascha Schumann <sascha@schumann.cx>
* main/php.h:
Due to the thread-safety changes and lots of other stuff, the
current tree is not backwards compatible anymore. Bump API no.
2002-05-07 Jason Greene <jason@inetgurus.net>
* ext/sockets/sockets.c: MFH BSD fix
* ext/sockets/sockets.c: Fix 10830, and 17074
FreeBSD requires the exact length of the socket type
2002-05-07 Frank M. Kromann <frank@frontbase.com>
* main/spprintf.c: Fixing win32 build.
2002-05-07 Sascha Schumann <sascha@schumann.cx>
* main/snprintf.c
main/snprintf.h: use thread-safe functions unconditionally
* main/snprintf.c
main/snprintf.h:
Add thread-safety to some conversion functions and sync a bit with
APR.
2002-05-06 Jason Greene <jason@inetgurus.net>
* ext/pcntl/pcntl.c: MFH
* ext/pcntl/pcntl.c:
Fix invalid warning caused by bogus convert_to_* calls
Fix possible invalid data in status for pcntl_waitpid()
2002-05-06 Markus Fischer <mfischer@guru.josefine.at>
* ext/standard/datetime.c: - WS fix as pointed out by fabwash@hotmail.com
2002-05-06 Jason Greene <jason@inetgurus.net>
* ext/pcntl/pcntl.c: MFH
Fix for ZTS and crash bugs
* ext/pcntl/pcntl.c: Fix type-o that broke ZTS build
Fix 3 nasty crash bugs that could occur if pcntl_exec's call to execve errored
2002-05-06 Derick Rethans <d.rethans@jdimedia.nl>
* configure.in
main/php_version.h: - Swap back version number
* NEWS: - Fix release date
2002-05-06 jim winstead <jimw@apache.org>
* ext/standard/file.c: MFH: fix problem with mkdir() on freebsd
* ext/standard/file.c: fix problem with mkdir() on freebsd
2002-05-06 Edin Kadribasic <edink@proventum.net>
* sapi/cli/README:
Update README with register_argc_argv settings override.
2002-05-06 Aaron Bannert <aaron@apache.org>
* sapi/apache2filter/sapi_apache2.c: Merge two SEGV fixes from the trunk:
- startup SEGV caused by delaying the initialization too long.
- graceful restart SEGV caused by not re-initializing.
2002-05-06 Derick Rethans <d.rethans@jdimedia.nl>
* NEWS: - Fix release day
* main/php_version.h
configure.in: - GO with rc2
2002-05-05 Wez Furlong <wez.php@thebrainroom.net>
* ext/standard/html.c:
Add support for remaining entities in HTML 4 for the UTF-8 encoding in
htmlentities/htmlspecial chars.
This is a fix for for #17008.
2002-05-05 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* NEWS: Clenup before I forgot.
2002-05-05 Aaron Bannert <aaron@apache.org>
* sapi/apache2filter/sapi_apache2.c:
Fix a graceful restart SEGV. We no longer only perform initialization
on the second pass through the post_config. Now we only avoid the
initialization only on the first DSO load, and on all subsequent loads
we rerun the init code.
* sapi/apache2filter/sapi_apache2.c:
Fix an elusive and intermittent startup SEGV. The problem was
the static string we were using to set an initialization flag
would get remapped to a different location when Apache reloaded
the DSO, causing us to not run our initialization routines.
Submitted by: Justin Erenkrantz <jerenkrantz@apache.org>
Reviewed by: Aaron Bannert (I added the big comment too)
2002-05-05 Stanislav Malyshev <stas@zend.com>
* ext/standard/exec.c: Return right exit status
2002-05-05 Jani Taskinen <sniper@iki.fi>
* sapi/cli/php_cli.c: MFH
* sapi/cli/php_cli.c: Force register_argc_argv=On for CLI
2002-05-05 Thies C. Arntzen <thies@thieso.net>
* ext/standard/url_scanner_ex.c: touch
* ext/session/php_session.h
ext/session/session.c
ext/standard/url_scanner_ex.c
ext/standard/url_scanner_ex.h
ext/standard/url_scanner_ex.re:
re-add accidentily nuked session_adapt_url()
2002-05-05 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/mbstring/mbfilter.c
ext/mbstring/unicode_table.h: bug fixed in unicode -> cp1252 table.
2002-05-05 Marko Karppinen <karppinen@pobox.com>
* sapi/apache2filter/config.m4:
Well that didn't last long! (Reverting previous.)
* sapi/apache2filter/config.m4:
Prelim. patch to enable apache2filter to link on Darwin.
Submitted by: Justin Erenkrantz <jerenkrantz@apache.org>
Reviewed by: markonen
2002-05-05 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/standard/reg.c:
fixed problem that ereg_replace() couldn't match with line stand/end marker.
* ext/mbstring/mbfilter.c
ext/mbstring/mbfilter_cn.c
ext/mbstring/unicode_table_cn.h:
added missing areas on Unicode->CP936 conversion table. added an alias CP932 on sjis-win.
2002-05-05 Sascha Schumann <sascha@schumann.cx>
* ext/standard/url_scanner_ex.c: sync
* ext/standard/url_scanner_ex.re:
the output buffer is flushed during request shutdown before it
reaches our rshutdown, so it is safe to delete the contents of
the url rewriter variables here.
2002-05-04 Zeev Suraski <zeev@zend.com>
* main/output.c:
We shouldn't force Content-length:, but much worse, it's wrong in many
cases (basically, unless you use output buffering to buffer all of your content,
it won't work; output buffering is used for lots of different things as a
functional interface, and such buffers have no relation to Content-type at
all).
2002-05-04 Sascha Schumann <sascha@schumann.cx>
* main/output.c: Free string before overwriting it
* ext/standard/url_scanner_ex.c: update
* ext/standard/basic_functions.c
ext/standard/url_scanner_ex.h
ext/standard/url_scanner_ex.re
main/output.c
main/php_output.h
ext/session/session.c:
simplify handling of variables by maintaining two strings which
are simply appended instead of traversing the hash table on each
URL/form.
also fix an unconditional segfault in rshutdown due to efree'ing
a static char *.
remove remove_var, add reset_vars. move the function declarations
into the right header file.
* ext/standard/basic_functions.c: ret set but unused
* main/user_streams.c: these are case sensitive
* ext/standard/iptc.c: c set but unused
* ext/standard/iptc.c: inheader set but unused
2002-05-04 James Cox <james@wherewithal.com>
* main/user_streams.c: touch.
* main/user_streams.c: add $id:$ line
2002-05-04 Sascha Schumann <sascha@schumann.cx>
* ext/standard/string.c:
block_ended/opposite_target were set but never used
* ext/standard/strnatcmp.c: don't emit code for version
* main/php_variables.c: free_index is set but never used
* main/user_streams.c: call_result is set but never used
* sapi/cli/getopt.c: ap_php_optopt is set but never used
* ext/standard/php_fopen_wrappers.h: Fix linkage of symbols
* ext/standard/image.c: entry_length was set but never used
* ext/standard/var_unserializer.c: update
* ext/standard/var_unserializer.re: rval_temp was declared but never used
* ext/standard/http_fopen_wrapper.c: redirected is set but never used
* ext/standard/url_scanner_ex.c: include url.h
* ext/standard/url_scanner_ex.re:
include url.h to pull in declaration of php_url_encode
* ext/standard/file.c:
Make this code work on compilers which don't consider the address
of a variable on the stack available at compile time.
* ext/standard/basic_functions.c: unused var
* ext/posix/posix.c: p is set, but never used.
* ext/mbstring/config.m4: Turn misplaced PHP_ARG_WITH into _ENABLE
and fix --enable-mbstring=shared
* ext/session/config.m4: Fix --enable-session=shared
* ext/xml/config.m4: Fix --enable-xml=shared
2002-05-04 Stig Venaas <venaas@uninett.no>
* ext/ldap/ldap.c:
Reworked result resource handling so that result is not freed until all
its result entry resources are freed
2002-05-04 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/standard/reg.c:
fixed a problem that ereg_replace() couldn't match with line stand/end marker.
2002-05-04 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* main/output.c: Forgot to dup strings.
* main/output.c: Fixed reference to freed zval string value.
* main/output.c:
Fixed crash when buffer is over written in ob callback. (Bug $ 12227)
Added check current output function check for Centent-Length header.
2002-05-03 Jani Taskinen <sniper@iki.fi>
* NEWS: MFH
* NEWS: Domxml changes go into the 4.2.x branch.
2002-05-03 Christian Stocker <chregu@phant.ch>
* ext/domxml/php_domxml.h
ext/domxml/php_domxml.c: full MFH as discussed with derick
* ext/domxml/php_domxml.h
ext/domxml/php_domxml.c:
removed the function for domxml_node_add_child and made an alias to
domxml_node_append_child for BC
2002-05-03 Stig Bakken <ssb@fast.no>
* pear/OS/Guess.php: * switched from static to instance model
* added matching method with glob support, some examples:
$os->matchSignature('linux');
$os->matchSignature('linux-2.4*);
$os->matchSignature('linux-*-i?86');
2002-05-03 Christian Stocker <chregu@phant.ch>
* ext/domxml/php_domxml.c: WS fixes
* ext/domxml/php_domxml.c: one parameter too much
* ext/domxml/php_domxml.c: added encoding support for domxml_dump_mem()
2002-05-03 Thies C. Arntzen <thies@thieso.net>
* ext/standard/url_scanner_ex.c: forgot
2002-05-03 Sebastian Bergmann <sb@sebastian-bergmann.de>
* ext/session/session.c: Fix ZTS build.
2002-05-03 Thies C. Arntzen <thies@thieso.net>
* main/output.c
ext/standard/url_scanner_ex.h
ext/standard/url_scanner_ex.re
ext/standard/basic_functions.c
ext/session/session.c
ext/session/php_session.h: i have also modified the session module to use this - so it doesn't
need to fiddle with the output-system any more
2002-05-03 Stig Bakken <ssb@fast.no>
* pear/OS/Guess.php
pear/package-pear.xml:
* fixed autoconf vs. pear installer replacement issue in scripts/pear.in
(pear installer now substitutes "@prefix@/bin" to bin_dir ;-)
* added skeleton for OS_Guess class
* NEWS: * unintentional news entry :-)
* pear/PEAR/Installer.php: * apply umask when installing files
2002-05-02 Stig Bakken <ssb@fast.no>
* pear/PEAR/Config.php: * add umask config value
2002-05-02 Frank M. Kromann <frank@frontbase.com>
* ext/mbstring/mbfilter_tw.c: Changed & to &&.
* ext/mbstring/mbstring.dsp: Adding missing files to the project
* ext/standard/info.c: Fixing wrong pointer
2002-05-02 Sander Roobol <phy@wanadoo.nl>
* sapi/cgi/cgi_main.c: MFH
* sapi/cgi/cgi_main.c: Fixed some minor typos
2002-05-02 Jason Greene <jason@inetgurus.net>
* ext/sockets/sockets.c:
socket_write() should just use the standard socket error macro so that errors will be consistent if the macro ever changes
2002-05-02 James Cox <james@wherewithal.com>
* sapi/cgi/cgi_main.c: fix.
* sapi/cgi/cgi_main.c: MFH.
2002-05-02 Sebastian Bergmann <sb@sebastian-bergmann.de>
* sapi/cgi/cgi_main.c: Fix build.
2002-05-02 James Cox <james@wherewithal.com>
* sapi/cgi/cgi_main.c: updated cgi warning notice.
2002-05-02 Derick Rethans <d.rethans@jdimedia.nl>
* configure.in: - MFH
2002-05-02 Zeev Suraski <zeev@zend.com>
* configure.in: Update comment
2002-05-02 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* main/output.c:
Change nest level to send Content-Length again. It seems this is the
best setting for now.
PHP will not send Content-Length always. It only sends when it is
possible to send. output_buffer=0 is supposed to disable chunked
output, but it seems it does not disable. It also behaves a litte
strange way. This should be addressed someday.
It is possible Content-Length header is not set. If it happens, try to
increase chunk size for now. (i.e. output_buffer=40960)
I included a little debug code for me and other develpers to play with,
when (NestLevel==1 && ObStatus==5), PHP sends Content-Length.
2002-05-02 Harald Radi <h.radi@nme.at>
* ext/com/COM.c: MFH
* ext/com/COM.c: remove temporary resources immediately
return value fix
2002-05-02 Sascha Schumann <sascha@schumann.cx>
* configure.in: Readd warning
* configure.in: Readd warning
If Mr. Taskinen feels like removing it again, he can commence a
discussion. Otherwise, I'll personally disable his CVS account
immediately.
* configure.in:
in6addr_any is defined as extern in IRIX header files, but is not actually
contained in any library (sigh).
Make this check fail, if the link stage does not succeed. Also avoid
GCC optimization which drops the reference to ip6addr_any.
Tested on IRIX 6.5.15.
2002-05-02 Derick Rethans <d.rethans@jdimedia.nl>
* ext/standard/info.c: - Add Zend API No. to phpinofo() output
2002-05-02 Jani Taskinen <sniper@iki.fi>
* ext/xslt/config.m4: MFH: Do not use the old expat libs.
* ext/xslt/config.m4: Stop the search when the libs are found.
* ext/xslt/config.m4:
Added the usual search paths where to look for expat.
2002-05-02 Tomas V.V.Cox <cox@idecnet.com>
* pear/package-pear.xml: Install pear.bat
2002-05-02 Sebastian Bergmann <sb@sebastian-bergmann.de>
* win32/php4dll.dsp
win32/php4dllts.dsp:
I could swear it worked the other way before I committed.
2002-05-02 Tomas V.V.Cox <cox@idecnet.com>
* pear/package-pear.xml: untabify
2002-05-02 James Cox <james@wherewithal.com>
* NEWS: englishify.
2002-05-02 Sebastian Bergmann <sb@sebastian-bergmann.de>
* main/.cvsignore: Add config.w32.h.
* win32/php4dllts.dsp: Oops.
* NEWS: Fugbix typos.
* main/config.w32.h
main/config.w32.h.in
win32/php4dll.dsp
win32/php4dllts.dsp
NEWS:
The Windows build can now be configures more comfortably, for instance in regard to built-in extensions.
2002-05-02 Jani Taskinen <sniper@iki.fi>
* configure.in: MFH
* configure.in: Remove bogus warning.
* NEWS: Sync with PHP_4_2_0 branch.
2002-05-02 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* main/output.c:
Fixed header output. Only need to output header when it is actually sent to client.
2002-05-02 Jon Parise <jon@csh.rit.edu>
* pear/scripts/pear.in: Revert the previous commit (revision 1.40).
(FreeBSD 4.5), thus producing a broken shebang line.
substitution problem noted above needs to be resolved before the change
is reapplied.
2002-05-02 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* main/output.c: Check buffer status
* main/main.c
main/output.c: Make Content-Type output always correct.
* NEWS: Modify NEWS entry for Content-Length header change
* main/output.c
ext/zlib/zlib.c:
Move Content-Length: header handling from zlib.c to output.c
When output buffer is enabled and header can be sent, Content-Length:
header is added always from now on.
2002-05-01 Derick Rethans <d.rethans@jdimedia.nl>
* ext/standard/base64.c: - MFH
* ext/standard/base64.c:
- Fix String is not zero-terminated error in base64_decode
2002-05-01 Markus Fischer <mfischer@guru.josefine.at>
* ext/sockets/sockets.c:
- Update protos for socket_read() and socket_write().
- Set last_error in socket_write().
* ext/sockets/sockets.c: - Update protos for getpeer/getsock-name.
2002-05-01 Jason Greene <jason@inetgurus.net>
* ext/sockets/sockets.c: Fix BYREF_FORCE that was not being read
Fix error message
2002-05-01 Sascha Schumann <sascha@schumann.cx>
* configure.in: MFH
* configure.in:
Add a big disclaimer regarding register_globals. It just bit me again
but now on a live customer site :-/
2002-05-01 Derick Rethans <d.rethans@jdimedia.nl>
* main/php_version.h
configure.in: - Update version number
* main/php_version.h
NEWS
configure.in: - Go with 4.2.1rc1
2002-05-01 Markus Fischer <mfischer@guru.josefine.at>
* ext/sockets/php_sockets.h
ext/sockets/sockets.c:
- Rename setopt and getopt to set_option and get_option, provide alias.
* ext/sockets/sockets.c:
- Fix couple of problems with socket_create_pair():
- Force fourth argument to be passed by reference
- Since the argument is modified there is no need to force it to be an array
since it's destroyed anyway
- Only modify the argument if socketpair() was successfully
- Fix string modified for error message message
- Set global last_error when socketpair() fails
* ext/sockets/sockets.c: - Add SOMAXCONN constant.
2002-05-01 Wez Furlong <wez.php@thebrainroom.net>
* ext/openssl/openssl.c: Fix for #16885
* ext/openssl/openssl.c: No asserts in branch
* ext/openssl/openssl.c:
MFH fix for #16940, compiler warnings and TSRMLS build fixes.
* ext/openssl/openssl.c: Probable fix for #16940.
2002-05-01 Markus Fischer <mfischer@guru.josefine.at>
* ext/sockets/sockets.c: - WS fixes
* NEWS: - Mention the socket_select() API change
* ext/sockets/sockets.c:
- MFH fix for socket_select() and some minor memory leak; NEWS entry follows.
2002-05-01 Jason Greene <jason@inetgurus.net>
* ext/sockets/sockets.c:
Changed socket_select to force reference copy, the older code would modify all references
Also fix small memory leak.
2002-04-30 Harald Radi <h.radi@nme.at>
* ext/overload/overload.c: ZE2 compatibility fixes
2002-04-30 Markus Fischer <mfischer@guru.josefine.at>
* ext/sockets/sockets.c: - Forgot to update proto
* ext/sockets/sockets.c:
- Allow resetting the module global last_error too.
2002-04-30 Sebastian Bergmann <sb@sebastian-bergmann.de>
* ext/mbstring/mbfilter_cn.c
ext/mbstring/mbfilter_tw.c: More unused variables.
2002-04-30 Stanislav Malyshev <stas@zend.com>
* ext/standard/aggregation.c: Fix ZE1 build
2002-04-30 Harald Radi <h.radi@nme.at>
* NEWS: MFH
2002-04-30 Sebastian Bergmann <sb@sebastian-bergmann.de>
* ext/mbstring/mbfilter_kr.c: Fix ZTS build. Remove unused variables.
* main/config.w32.h: Add missing #define's.
2002-04-30 Harald Radi <h.radi@nme.at>
* NEWS:
2002-04-30 Sebastian Bergmann <sb@sebastian-bergmann.de>
* win32/php4dll.dsp
win32/php4dllts.dsp: Add new ext/mbstring/mbfilter_*.c files.
2002-04-30 Sascha Schumann <sascha@schumann.cx>
* ext/standard/var_unserializer.c: Touch file
2002-04-30 Dan Kalowsky <dank@deadmime.org>
* ext/odbc/php_odbc.c:
reverting the cursor change as it seems to break many ODBC drivers.
* ext/odbc/php_odbc.c:
re-setting the CURSOR back to DYNAMIC rather than FORWARD_ONLY. This change
broke many other ODBC drivers (obviously testing wasn't extensive).
2002-04-30 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/mbstring/mbfilter.c
ext/mbstring/mbregex.c: fixed compile warning with Visual C++.
* ext/mbstring/mbfilter_cn.c
ext/mbstring/mbfilter_cn.h
ext/mbstring/mbfilter_ja.c
ext/mbstring/mbfilter_kr.c
ext/mbstring/mbfilter_kr.h
ext/mbstring/mbfilter_tw.c
ext/mbstring/mbfilter_tw.h
ext/mbstring/mbstring.c
ext/mbstring/unicode_table_cn.h
ext/mbstring/unicode_table_kr.h
ext/mbstring/unicode_table_tw.h
ext/mbstring/config.m4
ext/mbstring/mbfilter.c
ext/mbstring/mbfilter.h:
added simplified chinese, traditional chinese, korean support to mbstring. Note that this feature is experimental.
2002-04-30 Stanislav Malyshev <stas@zend.com>
* ext/standard/browscap.c: ZE2 compatibility fix
* ext/standard/aggregation.c: ZE2 compatibility fixes
2002-04-30 Jani Taskinen <sniper@iki.fi>
* ext/standard/tests/file/003.phpt:
revert last bogus change. There is bug in is_file()
2002-04-30 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de>
* ext/domxml/php_domxml.c
ext/domxml/php_domxml.h:
- added function domxml_parser_set_keep_blanks()
2002-04-30 Frank M. Kromann <frank@frontbase.com>
* ext/mbstring/mbstring.dsp: Adding missing files to project
2002-04-30 Sebastian Bergmann <sb@sebastian-bergmann.de>
* ext/standard/file.c: Fix ZTS build.
2002-04-30 Wez Furlong <wez.php@thebrainroom.net>
* ext/standard/http_fopen_wrapper.c:
Make use of new flag so that we can buffer http headers when we know that
the stream is not intended to be used in require/include.
* ext/standard/file.h
ext/standard/file.c
ext/standard/basic_functions.c:
Implement user-space funtions to operate on stream contexts.
* ext/standard/tests/file/003.phpt: Fix is_file test.
* main/streams.c: Remove debug code that should not have been committed.
* main/network.c: Remove this; it should not have been commited
* main/main.c: revert...
* main/main.c
main/network.c
main/php_streams.h
main/streams.c: Implement context option setting API.
Add/amend debugging code for sockets.
Add a flag that will help the http wrapper optimize itself when
it is not being used for include/require.
2002-04-29 Jani Taskinen <sniper@iki.fi>
* pear/pear.m4: MFH: Add the shared extension check.
* ext/ming/config.m4:
Never add libraries without checking that they exist and can be linked.
2002-04-29 Harald Radi <h.radi@nme.at>
* ext/com/COM.c: MFH
* ext/com/COM.c: RETURN_NULL() is defined with braces while RETURN_TRUE
and RETURN_FALSE are defined without.
seems not very consistent ?
2002-04-29 Stanislav Malyshev <stas@zend.com>
* ext/standard/var.c: MFH
* ext/standard/var.c: Add comments for the fix
* ext/standard/var.c: Fix here too
2002-04-29 Harald Radi <h.radi@nme.at>
* ext/com/COM.c: MFH
* ext/com/COM.c:
functions returned FALSE in case of error and the oo api returned NULL.
make them both behave equal (return NULL, as FALSE can be a valid value).
2002-04-29 Stanislav Malyshev <stas@zend.com>
* ext/standard/var.c: MFH serializer fix
* ext/standard/var.c: Yet another serialization fix - for incomplete class
2002-04-29 Jani Taskinen <sniper@iki.fi>
* ext/recode/config.m4
ext/recode/recode.c:
Make it possible to use recode 3.5 too. (happy now Wez? :)
* NEWS: Sync with PHP_4_2_0 branch.
2002-04-29 Markus Fischer <mfischer@guru.josefine.at>
* ext/sockets/sockets.c: - Fix WS and CS a bit
* ext/sockets/php_sockets.h
ext/sockets/sockets.c:
- Store last errno in the module global 'last_error' implicitely
- Set the global 'last_error' explicitely for functions which can't return an
error withing a single socket context (socket_create and socket_select)
- Modified socket_last_error() to return global modules last
error if no socket resource is given
- Added a couple of more E_WARNING messages in case something
goes foobar so the user isn't left alone in the dark.
2002-04-29 Mika Tuupola <tuupola@appelsiini.net>
* pear/File/Find.php:
* fixed the maxrecursion in mapTreeMultiple()
2002-04-29 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* NEWS: Added touch fix
* ext/standard/filestat.c: MFH touch bag fix
* NEWS: MFB
* NEWS: Added NEWS entry for PostgreSQL function rename.
Removed duplicate entry.
2002-04-29 Stig Bakken <ssb@fast.no>
* pear/package-pear.xml: * version will be 0.10
* pear/PEAR/Packager.php: * slight cleanup
* pear/PEAR/Packager.php: * call the right parent constructor
* pear/PEAR/Command/Install.php:
* PEAR_Installer constructor now expects only the UI object
* pear/PEAR/Command/Remote.php:
* PEAR_Common::downloadHttp no longer wants a config object
* pear/PEAR/Common.php:
* always set $this->config (use PEAR_Config::singleton)
* rename setFrontend to setFrontendObject
* add validPackageName method
* added downloadHttp callback types setup, connfailed and writefailed
* no more passing config objects around
* pear/PEAR/Installer.php: * use the downloadHttp method w/callback
2002-04-29 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/ming/config.m4:
shlib suffix was not defind and rint() was not found without -lm.
2002-04-28 Jani Taskinen <sniper@iki.fi>
* build/rules.mk: Fixed bug: #16858
2002-04-28 Sascha Schumann <sascha@schumann.cx>
* ext/standard/url_scanner_ex.c: touch file
* ext/standard/url_scanner_ex.c: Touch generated file
2002-04-28 Sebastian Bergmann <sb@sebastian-bergmann.de>
* main/config.w32.h
main/internal_functions_win32.c
win32/php4dll.dsp
win32/php4dllts.dsp:
Enable bundled build of ext/ctype and ext/mbstring on Win32.
2002-04-28 Stanislav Malyshev <stas@zend.com>
* ext/standard/var_unserializer.c
ext/standard/var_unserializer.re
ext/standard/var.c: MFH: serializer/unserializer fix
* ext/standard/var.c
ext/standard/var_unserializer.c
ext/standard/var_unserializer.re: Fix couple of nasty serializer bugs:
a) When array unserializer encounters less data than it expects (like:
a:1:{}) it crashes. I don't understand exactly why it does, but the fact
is it does. So now it should catch "}" and bail out.
b) When array/object data are serialized, the count is written by hash
count. However, it can be that in-loop check fails and less data than
expected will then be written into the array. Which, due to a), would
crash on unserialize. So now it will write empty entries in place of
entries it cannot serialize (the other choice would be make two passes on
the data, which I don't like).
2002-04-28 Thies C. Arntzen <thies@thieso.net>
* ext/standard/url_scanner_ex.c: timestamp
* NEWS
ext/session/php_session.h
ext/session/session.c
ext/standard/url_scanner_ex.c
ext/standard/url_scanner_ex.h
ext/standard/url_scanner_ex.re:
revert session_set_userdata - diffent patch will come shortly
2002-04-28 Stig Bakken <ssb@fast.no>
* pear/package.dtd: * forgot script element in release contents
* pear/PEAR/Common.php
pear/package.dtd: * package.dtd: version 1.0b7
- added <provides> element
- added <script> element
* pear/PEAR/Command/Remote.php:
* implemented "list-remote-packages" command
* pear/PEAR/Remote.php:
* implemented stub for XML_RPC fallback if xmlrpc-epi is not installed
2002-04-28 Sebastian Bergmann <sb@sebastian-bergmann.de>
* pear/HTML/IT.php
pear/HTML/ITX.php
pear/HTML/IT_Error.php: Move IT[X] to /pear.
* pear/HTML/Menu.php
pear/HTML/Menu_Browser.php: Move Menu* to /pear.
2002-04-28 Jani Taskinen <sniper@iki.fi>
* ext/mysql/php_mysql.c:
- Added optional 3rd parameter to mysql_select_db() which makes it return
the previously selected database name.
* ext/mysql/php_mysql.c: kill a compile warning
* acinclude.m4
sapi/apache/libphp4.module.in: Fix build when openssl is enabled.
* ext/standard/url_scanner_ex.c:
touch file. Please commit first the .re file and afterwards the .c source. Otherwise, timestamps will be broken.
* Makefile.global: Missing dependancies..
2002-04-28 Tomas V.V.Cox <cox@idecnet.com>
* pear/DB/odbc.php:
Fix odbc_fetch_into() compat for 4.2.0 (reported by Nate Ward)
2002-04-28 Jani Taskinen <sniper@iki.fi>
* NEWS: - Cleaned out the CVS commit conflicts..
* acinclude.m4: Fix bug: #16823
* ext/iconv/iconv.c: ws fix
2002-04-28 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/standard/tests/file/003.phpt
ext/standard/tests/file/003.inc: Add test case for file_exist/is_file
2002-04-27 Sascha Schumann <sascha@schumann.cx>
* ext/zlib/zlib.c: s/len/xln/ was necessary here
Noticed by: Charles O Parks III
* ext/zlib/zlib.c: Use a single macro to set cl header
2002-04-27 Thies C. Arntzen <thies@thieso.net>
* ext/zlib/zlib.c:
- If possible set Content-Length header in zlib.output_compression mode. (thies)
2002-04-27 Harald Radi <h.radi@nme.at>
* ext/com/TODO: updated TODO list
2002-04-27 Thies C. Arntzen <thies@thieso.net>
* ext/standard/url_scanner_ex.c: part 2 of last commit
* ext/standard/url_scanner_ex.h
ext/standard/url_scanner_ex.re
ext/session/php_session.h
ext/session/session.c:
- added session_set_userdata() which enables you to specify one variable
that will be kept in the browser in addition to the session-id. This
only works when using trans-sid sessions (no cookie). (thies)
2002-04-27 Rasmus Lerdorf <rasmus@lerdorf.on.ca>
* NEWS
php.ini-dist
php.ini-recommended:
2002-04-27 Harald Radi <h.radi@nme.at>
* ext/com/COM.c
ext/com/com.h: MFH
* ext/com/COM.c:
don't set CLSCTX_REMOTE_SERVER if NULL is passed as servername
2002-04-27 Jani Taskinen <sniper@iki.fi>
* ext/mysql/config.m4: MFH: fix for bug #16743
* ext/mysql/config.m4: Fix bug: #16743
2002-04-26 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/standard/filestat.c
ext/standard/php_filestat.h
ext/standard/basic_functions.c: Fixed bug #16861.
touch sets wrong atime or mtime when they are not specified.
touch silently failed when HAVE_UTIME is not defined.
(This needs more consideration. Which platform does not support it?)
2002-04-26 Sascha Schumann <sascha@schumann.cx>
* ext/session/session.c: three less strlen invocations
* sapi/apache2filter/config.m4
sapi/apache/config.m4: be a bit more verbose about what is wrong
2002-04-26 Harald Radi <h.radi@nme.at>
* ext/com/com.h:
this patch should fix a bug where intermediate comvals were not
released before they were freed. this caused outproc com server
to belive that they still referenced even when the php process
already terminated.
2002-04-26 Dan Kalowsky <dank@deadmime.org>
* ext/odbc/php_odbc.c:
bug fix for bug #15758, a double free'ing of an ODBC connection
2002-04-26 Sascha Schumann <sascha@schumann.cx>
* sapi/apache/libphp4.module.in: Fix external builds
* configure.in: reuse known values
* ext/mbstring/mbstring.h
ext/mbstring/php_mbregex.c: Improve use of module_globals macros
2002-04-26 Jani Taskinen <sniper@iki.fi>
* sapi/apache2filter/config.m4
sapi/apache/config.m4:
MFH: fix bug: #16791 (more reliable version check)
* sapi/apache2filter/config.m4
sapi/apache/config.m4: - Fix for bug: #16791. (more reliable test)
2002-04-26 Tomas V.V.Cox <cox@idecnet.com>
* pear/DB/pgsql.php: E_ALL fix when DSN is given as an array
2002-04-25 jim winstead <jimw@apache.org>
* ext/standard/url_scanner_ex.c: update generated file
* ext/standard/url_scanner_ex.re:
Do not add redundant id attribute. It doesn't make the output any
more standards compliant.
2002-04-25 Edin Kadribasic <edink@proventum.net>
* ext/mysql/config.m4: MFH
* ext/mysql/config.m4: Some systems have mysql socket in /var/run/mysql
* ext/oracle/oracle.c: MFB
* ext/oracle/oracle.c: Fix the fix.
* ext/oracle/oracle.c: Fix win32 build
2002-04-25 Colin Viebrock <colin@easydns.com>
* pear/Net/Dig.php
pear/Crypt/CBC.php: moved into /pear
2002-04-25 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/standard/string.c:
fixed directory access problem when direcory name is encoded in japanese Shift_JIS encoding.
2002-04-25 Jani Taskinen <sniper@iki.fi>
* ext/standard/exec.c: MFH: fix for bug #16811
2002-04-25 Stig Bakken <ssb@fast.no>
* pear/PEAR/Installer.php: * fix warning
2002-04-25 Sascha Schumann <sascha@schumann.cx>
* ext/standard/url_scanner_ex.c:
Touch generated file to increase timestamp
2002-04-25 Harald Radi <h.radi@nme.at>
* main/win95nt.h: already defined in zend_config.win32.h
2002-04-25 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/tests/17result.phpt
ext/pgsql/tests/result.inc: Added test for pg_fetch_*() functions
* ext/pgsql/pgsql.c: Revert last 2 commits.
2002-04-25 Derick Rethans <d.rethans@jdimedia.nl>
* ext/standard/exec.c: - Fix for bug #16811
* ext/com/conversion.c: - MFH: fix for bug #14353
* ext/com/conversion.c: - Fix for bug #14353
* ext/standard/url_scanner_ex.c
ext/standard/url_scanner_ex.re: - Fix for bug 16810 (XHTML compliance)
2002-04-25 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/config.m4: Fix version in message
2002-04-25 Jani Taskinen <sniper@iki.fi>
* NEWS: fine-tuning
* ext/xslt/config.m4: Only support the new libexpat.
2002-04-25 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/php_pgsql.h
ext/pgsql/pgsql.c:
pg_client_encoding/pg_set_client_encoding should be compiled always.
Recent libpq has PQclientEncoding/PQsetClientEncoding regarless of
multibyte support enabled or not.
Reported by c@cornelia-boenigk.de
2002-04-24 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c: Remove result_type from pg_fetch_object() proto.
It still accepts 3rd argument, but passing 3rd argument
does not make sense for pg_fetch_object().
* ext/pgsql/pgsql.c:
It does not make any sense to have a PGSQL_BOTH as a default for pg_fetch_object()
Noticed by c@cornelia-boenigk.de
2002-04-24 Dan Kalowsky <dank@deadmime.org>
* ext/odbc/php_odbc.c:
clearing up some code to remove any possible confusion in variable counts
2002-04-24 Jani Taskinen <sniper@iki.fi>
* ext/mysql/config.m4: MFH
* ext/mysql/config.m4: - Fixed a typo..
2002-04-24 Stanislav Malyshev <stas@zend.com>
* main/output.c: MFH
* main/output.c:
Init output_start_* to avoid "output started at ZZZZZ" messages
(which may result when output started while zend is neither compiling nor
executing - e.g., when file upload fails).
2002-04-24 Andrei Zmievski <andrei@ispi.net>
* NEWS: *** empty log message ***
2002-04-24 Jani Taskinen <sniper@iki.fi>
* ext/imap/php_imap.c: MFH
* ext/imap/php_imap.c:
- Do the ssl_onceonlyinit() as last. This is how c-client creates
the linkage.c (used by Pine).
2002-04-24 Andrei Zmievski <andrei@ispi.net>
* ext/standard/array.c: MFH.
2002-04-24 Jani Taskinen <sniper@iki.fi>
* ext/imap/.cvsignore: - Missing .libs line..
2002-04-24 Andrei Zmievski <andrei@ispi.net>
* ext/standard/array.c: Fix Bug #14795.
* ext/standard/array.c:
Fix unwanted type conversion in array_merge_recursive (Bug #14990).
2002-04-24 Jani Taskinen <sniper@iki.fi>
* ext/recode/config.m4
ext/recode/php_recode.h
ext/recode/recode.c: One big mess is a bit less mess now.
2002-04-24 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/mbstring/mbstring.c:
Fixed typo. Compiler compiled with this typo somehow.
2002-04-24 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de>
* NEWS: - Put news item about changes of domxml in
2002-04-24 Derick Rethans <d.rethans@jdimedia.nl>
* NEWS: Merge fixes
* NEWS: - Layout and release date
2002-04-24 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* NEWS: Added NEWS for recent multibyte related fixes.
2002-04-24 Jani Taskinen <sniper@iki.fi>
* ext/domxml/php_domxml.c: Fix ZTS build.
* NEWS: Added the 4.2.1 entries here too.
* NEWS: Forgot this one..
* NEWS: Added entry for the SID fix.
* sapi/apache/mod_php4.c: This was not supposed to be committed..
* php.ini-recommended
sapi/apache/mod_php4.c: MFH
* php.ini-recommended: fixed the comment..
2002-04-24 Aaron Bannert <aaron@apache.org>
* sapi/apache2filter/sapi_apache2.c:
Apache does a full load, unload, load cycle for each DSO module.
This patch makes sure that any startup actions that are performed
for PHP don't happen until the second load (the second call to
the post_config hook), and it also prevents subsequent calls
to the initialization routines.
Suggested By: Cliff Woolley
PR: 16475, 16754
2002-04-24 Stig Bakken <ssb@fast.no>
* pear/PEAR/Registry.php:
* add "_lastmodified" timestamp to registry files (don't trust filemtime)
2002-04-23 Jani Taskinen <sniper@iki.fi>
* ext/java/Makefile.in: Make sure the extension will be named java.so
2002-04-23 Stig Bakken <ssb@fast.no>
* pear/package-pear.xml: 0.9.1 release notes ++
* pear/PEAR/Common.php: * make validator work again
2002-04-23 Jani Taskinen <sniper@iki.fi>
* ext/java/README: MFH
* ext/java/README: Fixed the extension name.
2002-04-23 Stig Bakken <ssb@fast.no>
* pear/package-db.xml: * roll out 1.2 release
2002-04-23 Jani Taskinen <sniper@iki.fi>
* ext/gd/config.m4: MFH
* ext/gd/config.m4: Wrong variable used here..
* configure.in: ws fix
2002-04-23 Markus Fischer <mfischer@guru.josefine.at>
* ext/posix/posix.c: - Fix proto.
* ext/pcntl/pcntl.c: - MFH fix for #16766.
* ext/pcntl/pcntl.c: - Fix pcntl_waitpid() [Fixes #16766].
2002-04-23 Sascha Schumann <sascha@schumann.cx>
* ext/session/mod_files.c: Add #ifdef.. around F_SETFD.
2002-04-23 Derick Rethans <d.rethans@jdimedia.nl>
* ext/cyrus/cyrus.c
ext/ldap/ldap.c: Fix TSRMLS_CC thingies.
* ext/cyrus/cyrus.c
ext/ldap/ldap.c: Fix TSRMLS_CC
2002-04-23 Sascha Schumann <sascha@schumann.cx>
* ext/session/mod_files.c: MFH: Rip out use of O_EXCL
* ext/session/session.c: MFH define_sid issue
2002-04-23 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* win32/readdir.c:
fixed access problem when japanese Shift_JIS character is used as directory name. Some characters in Shift_JIS are including 0x5c (slash) as second byte.
2002-04-23 Mika Tuupola <tuupola@appelsiini.net>
* pear/File/Find.php:
* added $maxrecursion parameter to mapTreeMultiple()
2002-04-23 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de>
* ext/domxml/php_domxml.c: - replace_child() will not add a child twice
- domxml_open_mem() drops old optional parameter to switch between reading
from a string or a file.
- new optional parameter for domxml_open_mem() which set the mode how the
document shall be parsed
2002-04-23 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/mbstring/mbstring.c: MFH
Fix empty output when no conversion is done.
Fix possible problem with wide chars.
2002-04-23 Hartmut Holzgraefe <hartmut@six.de>
* sapi/apache/php_apache.c:
apache_child_terminate() returns status as bool
proto fixes
2002-04-23 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/mbstring/mbstring.c: Remove unneeded 'return'.
* ext/mbstring/mbstring.c: Fix possible wide char prolem.
Fix empty output when no conversion is performed.
2002-04-23 Stig Bakken <ssb@fast.no>
* pear/PEAR/Command/Remote.php: * use PEAR_Common::downloadHttp()
* pear/PEAR/Common.php:
* downloadHttp: pass the total number of bytes downloaded as parameter
to the 'done' callback
* pear/PEAR/Common.php:
* moved these "class variables" to global variables and added static methods for getting
them: maintainer_roles, release_states, dependency_types, dependency_relations,
file_roles, replacement_types
* added downloadHttp method with status callback support (can be used by installers
to show download progress)
2002-04-23 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de>
* ext/domxml/php_domxml.h:
- added new function DomDocument->ids (subject to change)
* ext/domxml/php_domxml.c:
- get_element_by_id() doesn't use xpath anymore but searches in
xmlDoc->ids as provided by libxml.
- New function DomDocument->ids() returns a list of ids (subject to change)
- replace_node() doesn't make a copy of the new node if it has no parents
2002-04-23 Sascha Schumann <sascha@schumann.cx>
* acinclude.m4:
No need for an ifelse here (which was lacking a char anyway :-)
2002-04-23 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/php_pgsql.h
ext/pgsql/tests/12pg_insert.phpt
ext/pgsql/tests/13pg_select.phpt
ext/pgsql/tests/14pg_update.phpt
ext/pgsql/tests/pg_delete.inc
ext/pgsql/tests/pg_insert.inc
ext/pgsql/tests/pg_select.inc
ext/pgsql/tests/pg_update.inc
ext/pgsql/pgsql.c:
Make pg_convert/pg_insert/pg_select/pg_update/pg_delete a bit more flexible.
pg_convert() may ignore, NOT NULL and/or DEFAULT.
pg_insert/pg_update/pg_select/pg_update may return query string.
2002-04-23 Jani Taskinen <sniper@iki.fi>
* main/rfc1867.c:
MFH the possible crash bug fix and warning -> notice change.
* sapi/apache/mod_php4.c: This was not supposed to be uncommented..yet.
* sapi/apache/mod_php4.c
sapi/apache/php_apache.c
sapi/apache/php_apache_http.h
sapi/apache/sapi_apache.c: Part 4 of apache sapi build fixes:
- Fixed many conflicts caused by bogus includes, e.g the infamous XtOffset
redefinition warning is gone now.
* sapi/apache/apMakefile.tmpl
sapi/apache/config.m4
sapi/apache/libphp4.module.in: Part 3 of static apache build fixes:
- Use the PHP_CFLAGS when compiling the php4 module in apache tree.
- Use the apache include dir only when compiling sapi/apache
o Fixes the fnmatch.h issue Wez complained about :)
* configure.in: Part 2 of static apache build fixes:
- Added 2 variables to be used in libphp4.module
o Apparently autoconf 2.53 screws abs_srcdir
- Made INCLUDES and EXTRA_INCLUDES available to be used with AC_OUTPUT()
o Not related to the static apache build issues
* acinclude.m4:
Part 1 of commits to fix some issues with static apache (1.3.x) compile:
- Made the OPENSSL_INCDIR available to be added in the PHP_CFLAGS
in libphp4.module
- Make it possible to set SAPI specific include dirs
* NEWS: Missing date for 4.2.0
* main/rfc1867.c:
Changed the error for 'no upload' to E_NOTICE so that it doesn't
pollute the logs too much.
2002-04-22 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* win32/readdir.c:
fixed access problem when japanese Shift_JIS character is used as directory name. Some characters in Shift_JIS are including 0x5c (slash) as second byte.
2002-04-22 Sascha Schumann <sascha@schumann.cx>
* ext/standard/php_smart_str.h: remove unnecessary casts
* ext/session/mod_files.c:
Set the close-on-exec flag for fds. Child processes should not inherit
the fd.
Also rip out the broken O_EXCL use. Our file names are not unique and
this left a small window open where creating a session file would fail
(a, b notice that the file does not exist; a creates the file successfully;
b tries to create, but fails due to O_EXCL).
2002-04-22 Jim Jagielski <jim@jaguNET.com>
* sapi/apache2filter/apache_config.c: Typo in error string
2002-04-22 Harald Radi <h.radi@nme.at>
* ext/rpc/rpc.c
ext/rpc/rpc_proxy.c:
set up a proxy object when requesting a reference to a variable
* ext/standard/php_smart_str.h: fixes a warning when compiling under win32
2002-04-22 Marko Karppinen <karppinen@pobox.com>
* sapi/apache2filter/config.m4: Refine the OS X support a bit
* sapi/apache2filter/config.m4:
Merged the Mac OS X compile changes from the Apache 1.3 SAPI.
--with-apxs2 should now work on Mac OS X / Darwin.
* NEWS: Prettify the NEWS entries
* CREDITS: Let's pretend this is up-to-date now
2002-04-22 Harald Radi <h.radi@nme.at>
* ext/rpc/com/com.c
ext/rpc/handler.h
ext/rpc/rpc.c
ext/rpc/rpc.h
ext/rpc/rpc_proxy.c
ext/rpc/rpc_proxy.h:
changes related to the latest commit of the zend engine
2002-04-22 Edin Kadribasic <edink@proventum.net>
* sapi/apache2filter/php4apache2.dsp: Reverting my previous patch.
2002-04-22 Derick Rethans <d.rethans@jdimedia.nl>
* NEWS: - Fix date
2002-04-22 Martin Jansen <mail@martin-jansen.de>
* pear/PEAR/WebInstaller.php:
* Due to the recent changes in the installer stuff, the webinstaller
is not supported at the moment.
2002-04-22 Sascha Schumann <sascha@schumann.cx>
* ext/pgsql/pgsql.c:
hash keys lengths include the NUL-byte, so we need to copy one byte less.
also add missing commas in the INSERT clause.
Noticed by: Yasuo Ohgaki
2002-04-21 Jani Taskinen <sniper@iki.fi>
* ext/domxml/tests/.cvsignore: missing .cvsignore
2002-04-21 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/mbstring/mbstring.c:
small performance improvement when pass is selected as input encoding.
2002-04-21 Edin Kadribasic <edink@proventum.net>
* sapi/apache2filter/php4apache2.dsp:
Added ..\..\..\php_build\lib\apache2 to libpath and
..\..\..\php_build\include\apache2 to includepath
2002-04-21 Richard Heyes <richard@phpguru.org>
* pear/File/SearchReplace.php: * Moving to it's own package
2002-04-21 Wez Furlong <wez.php@thebrainroom.net>
* ext/gd/libgd/gd.c
ext/gd/libgd/gd.h
ext/gd/libgd/gd_png.c
ext/gd/libgd/gdft.c
ext/gd/libgd/webpng.c:
Apply that patch I wrote ages ago that fixes some problems with true-color
vs palette based handling.
Also implements the gdImageStringFTEx function.
2002-04-21 Tomas V.V.Cox <cox@idecnet.com>
* pear/DB/STATUS
pear/DB/oci8.php:
Added oci8 tableInfo (thanks Bertrand Mansion <bmansion@mamasam.com>!)
* pear/DB/tests/oci8/mktable.inc: Include the correct file
* pear/DB/tests/oci8/connect.inc: Use the right include_path
* pear/DB/tests/oci8/02fetch.phpt
pear/DB/tests/oci8/03simplequery.phpt
pear/DB/tests/oci8/04numcols.phpt
pear/DB/tests/oci8/05sequences.phpt
pear/DB/tests/oci8/06prepexec.phpt
pear/DB/tests/oci8/07errornative.phpt
pear/DB/tests/oci8/08affectedrows.phpt
pear/DB/tests/oci8/09numrows.phpt
pear/DB/tests/oci8/10errormap.phpt
pear/DB/tests/oci8/12tableinfo.phpt
pear/DB/tests/oci8/13limit.phpt:
- Added test for the new tableInfo()
- Fixed include_path's for tests
2002-04-21 Martin Jansen <mail@martin-jansen.de>
* pear/DB/TESTERS: * Fix CVS username
2002-04-21 Stig Bakken <ssb@fast.no>
* pear/PEAR/Installer.php: * more uniform "level 2 debug messages"
* don't add dirname(file) to install path if install-as attribute is set
2002-04-21 Sascha Schumann <sascha@schumann.cx>
* ext/pgsql/pgsql.c:
refactoring in pgsql_do_connect and some "leaner" code in pgsql_add_quotes
* ext/pgsql/pgsql.c:
Avoid allocating resources, if we know that the input array is empty.
Also pass tsrmls to do_exec.
* ext/pgsql/pgsql.c: speling fix and s/FAILURE/HASH_KEY_NON_EXISTANT/
* ext/pgsql/pgsql.c:
The default has been changed to assume failure, because there were 5-10
cases of failure and one success.
* ext/pgsql/pgsql.c:
Add PGSQL_RETURN_OID which encapsulates the LONG_MAX check etc.
Add a few missing smart_str_0's.
Remove a "(" in a probably less-tested #ifdef.. branch
* ext/pgsql/config.m4:
Also support --disable-shared installations of pgsql
2002-04-21 Stig Bakken <ssb@fast.no>
* pear/package-pear.xml: * set version to 0.9.1-dev
* pear/package-pear.xml
pear/scripts/pear.in:
* PHP_PREFIX constant is not defined, use bin_dir pear config instead
2002-04-21 Sascha Schumann <sascha@schumann.cx>
* ext/pgsql/pgsql.c:
My patch as posted to php-dev + warnings/errors fixed as seen in
Yasuo's reply.
2002-04-21 Martin Jansen <mail@martin-jansen.de>
* pear/PEAR/Installer.php:
* Remove package directory if empty during uninstall process
* Don't baseinstalldir for documentation.
2002-04-21 Jani Taskinen <sniper@iki.fi>
* ext/java/config.m4: Tiny typo..
2002-04-21 Tomas V.V.Cox <cox@idecnet.com>
* pear/PEAR/Command/Remote.php: Bail on no HTTP.php present in the system
Let "pear download" act ala wget
* pear/PEAR/Common.php: typo
2002-04-21 Sascha Schumann <sascha@schumann.cx>
* ext/standard/php_smart_str.h
ext/standard/var.c: simplify and improve speed of smart_str_print_long.
also add a variant for unsigned numbers.
2002-04-21 Sterling Hughes <sterling@bumblebury.com>
* ext/xslt/sablot.c: expletives deleted.
* ext/xslt/sablot.c: some more fixes towards making it work again
2002-04-20 Sascha Schumann <sascha@schumann.cx>
* ext/dio/dio.c: allocate space for NUL
2002-04-20 Derick Rethans <d.rethans@jdimedia.nl>
* ext/recode/recode.c: - initialize globals properly
2002-04-20 jim winstead <jimw@apache.org>
* ext/gd/config.m4:
include the checks for various support libraries to --with-gd=php section. the
libgd stuff needs some additional checks to handle the presence/absence of
things like libpng, but this helps when most things are included.
* ext/gd/config.m4: s/.o/.c/
2002-04-20 Sterling Hughes <sterling@bumblebury.com>
* ext/dio/dio.c: realloc buffer down
2002-04-20 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* README.TESTING: Removed for consistency with current build system.
2002-04-20 Sascha Schumann <sascha@schumann.cx>
* ext/mbstring/config.m4:
If I don't want mbstring, I also don't want this transparent encoding
thingee which caused an undefined reference in main.o.
2002-04-20 Wez Furlong <wez.php@thebrainroom.net>
* ext/mailparse/README:
The PECL version probably will not compile with PHP 4.2 unless they
check it out on the branch.
I have a tarball ready-to-go from my site, so add a not about it.
2002-04-20 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/tests/large_object.inc
ext/pgsql/pgsql.c:
Make pg_lo_import()/pg_lo_unlink()/pg_lo_open()/pg_lo_export() work with oid larger than 2^31.
2002-04-20 Derick Rethans <d.rethans@jdimedia.nl>
* ext/mailparse/.cvsignore
ext/mailparse/CREDITS
ext/mailparse/EXPERIMENTAL
ext/mailparse/README: - Fix mailparse dir for release
* main/php_version.h
configure.in: - Update version numbers
* configure.in
main/php_version.h: Go with 4.2.0
* ext/mailparse/.cvsignore: MFH: Missing .cvsignore file
* ext/mailparse/.cvsignore: - Add missing .cvsignore
2002-04-20 Sander Roobol <phy@wanadoo.nl>
* .cvsignore: Another .cvsignore update
* sapi/webjames/.cvsignore
sapi/servlet/.cvsignore
sapi/thttpd/.cvsignore
sapi/tux/.cvsignore
sapi/pi3web/.cvsignore
sapi/roxen/.cvsignore
sapi/isapi/.cvsignore
sapi/nsapi/.cvsignore
sapi/phttpd/.cvsignore
sapi/fastcgi/.cvsignore
sapi/fhttpd/.cvsignore
sapi/cgi/.cvsignore
sapi/cli/.cvsignore
sapi/apache/.cvsignore
sapi/apache2filter/.cvsignore
sapi/caudium/.cvsignore
sapi/.cvsignore
sapi/aolserver/.cvsignore
regex/.cvsignore
pear/scripts/.cvsignore
ext/yp/.cvsignore
ext/zip/.cvsignore
ext/zlib/.cvsignore
ext/xslt/.cvsignore
ext/yaz/.cvsignore
ext/xmlrpc/libxmlrpc/.cvsignore
ext/xml/expat/.cvsignore
ext/xmlrpc/.cvsignore
ext/wddx/.cvsignore
ext/xml/.cvsignore
ext/tokenizer/.cvsignore
ext/vpopmail/.cvsignore
ext/w32api/.cvsignore
ext/sybase_ct/.cvsignore
ext/sysvsem/.cvsignore
ext/sysvshm/.cvsignore
ext/sybase/.cvsignore
ext/sockets/.cvsignore
ext/standard/.cvsignore
ext/swf/.cvsignore
ext/snmp/.cvsignore
ext/session/.cvsignore
ext/shmop/.cvsignore
ext/skeleton/.cvsignore
ext/qtdom/.cvsignore
ext/readline/.cvsignore
ext/recode/.cvsignore
ext/pgsql/.cvsignore
ext/posix/.cvsignore
ext/pspell/.cvsignore
ext/pdf/.cvsignore
ext/pfpro/.cvsignore
ext/pcntl/.cvsignore
ext/pcre/.cvsignore
ext/overload/.cvsignore
ext/ovrimos/.cvsignore
ext/oracle/.cvsignore
ext/odbc/.cvsignore
ext/openssl/.cvsignore
ext/oci8/.cvsignore
ext/notes/.cvsignore
ext/ncurses/.cvsignore
ext/mssql/.cvsignore
ext/mysql/.cvsignore
ext/mysql/libmysql/.cvsignore
ext/msession/.cvsignore
ext/msql/.cvsignore
ext/mnogosearch/.cvsignore
ext/mime_magic/.cvsignore
ext/ming/.cvsignore
ext/mcrypt/.cvsignore
ext/mhash/.cvsignore
ext/ldap/.cvsignore
ext/mbstring/.cvsignore
ext/mcal/.cvsignore
ext/ircg/.cvsignore
ext/java/.cvsignore
ext/ingres_ii/.cvsignore
ext/interbase/.cvsignore
ext/imap/.cvsignore
ext/informix/.cvsignore
ext/icap/.cvsignore
ext/iconv/.cvsignore
ext/gmp/.cvsignore
ext/hyperwave/.cvsignore
ext/gettext/.cvsignore
ext/fribidi/.cvsignore
ext/ftp/.cvsignore
ext/gd/.cvsignore
ext/fbsql/.cvsignore
ext/fdf/.cvsignore
ext/filepro/.cvsignore
ext/dbx/.cvsignore
ext/dio/.cvsignore
ext/domxml/.cvsignore
ext/exif/.cvsignore
ext/dbase/.cvsignore
ext/dbplus/.cvsignore
ext/db/.cvsignore
ext/dba/.cvsignore
ext/curl/.cvsignore
ext/cybercash/.cvsignore
ext/cybermut/.cvsignore
ext/cyrus/.cvsignore
ext/crack/.cvsignore
ext/ctype/.cvsignore
ext/com/.cvsignore
ext/cpdf/.cvsignore
ext/bz2/.cvsignore
ext/calendar/.cvsignore
ext/ccvs/.cvsignore
ext/.cvsignore
ext/aspell/.cvsignore
ext/bcmath/.cvsignore:
Removed makefiles from most .cvsignores and some minor cleanups.
* ext/gd/libgd/.cvsignore: Added missing .cvsignore
2002-04-20 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c: Added comment to fix large OID value handling later.
Fixed wrong conversion specifiers.
* ext/pgsql/pgsql.c: Added missing 'd'.
* ext/pgsql/pgsql.c: Some cleanup.
More OID range related fixes.
* ext/pgsql/pgsql.c: Fixed OID overflow. If value is larger than MAX_LONG,
pg_last_oid() returns string to keep correct value.
* ext/pgsql/php_pgsql.h: Added API version for C programs
* ext/pgsql/pgsql.c: Remove warnings.
Fixed OID overflow bug.
Fixed type convertion bug.
2002-04-20 Jani Taskinen <sniper@iki.fi>
* NEWS: We call them "extension"..and again, missing period. :-p
2002-04-19 Sterling Hughes <sterling@bumblebury.com>
* ext/xslt/sablot.c: throw a warning if encoding support not available...
* TODO: update todo a bit
* ext/xslt/php_sablot.h
ext/xslt/sablot.c:
make it work with dom processing, this allows DOM tree caching to avoid
re-parsing the same data. Currently very beta -- DO NOT USE. Will be cleaning
this up over the next few days... Need this in here for version history, and
to show other people
2002-04-19 Adam Dickmeiss <adam@indexdata.dk>
* ext/yaz/php_yaz.c: fix warning
* ext/yaz/php_yaz.c: Indentation;)
* ext/yaz/php_yaz.c: fix warning
2002-04-19 Andrei Zmievski <andrei@php.net>
* ext/pcre/php_pcre.c: Revert bogus patch.
2002-04-19 Harald Radi <h.radi@nme.at>
* win32/php4dllts.dsp: MFH
2002-04-19 Derick Rethans <d.rethans@jdimedia.nl>
* ext/pcre/php_pcre.c: - Fix warnings in VC
2002-04-19 Stig Bakken <ssb@fast.no>
* pear/PEAR/Config.php: * add http_proxy config setting
* pear/PEAR/Installer.php:
* make "pear install package.xml" possible, so you can install a package
without building a tarball first
* pear/PEAR/Command/Install.php:
* reintroduce (un)install -r option for Registeration only
* pear/PEAR.php: * fix phpdoc
2002-04-19 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c: Fixed pg_insert/update/select/delete overflow.
* ext/pgsql/tests/08escape.phpt
ext/pgsql/tests/10pg_convert.phpt
ext/pgsql/tests/11pg_metadata.phpt
ext/pgsql/tests/escape.inc: Update tests
* ext/pgsql/pgsql.c:
Added "NOT NULL" check and do not add converted variable when field is NULL and HAS DEFAULT.
(php_pgsql_convert)
* ext/pgsql/pgsql.c: Changed "default" -> "has default" (metadata)
Fixed comment. Do not use magic number.
2002-04-19 Wez Furlong <wez.php@thebrainroom.net>
* ext/bz2/bz2.c
ext/standard/fsock.c
ext/zlib/zlib.c
ext/zlib/zlib_fopen_wrapper.c
main/network.c
main/streams.c
NEWS: Make scheme part decoding rfc2396 compliant.
Change zlib:// and bzip2:// to compress.zlib:// and compress.bzip2://
Tidy up old socket/network code/comments.
2002-04-19 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/openssl/openssl.c
ext/standard/http_fopen_wrapper.c: Remove compiler warnings
* ext/session/tests/001.phpt
ext/session/tests/002.phpt
ext/session/tests/003.phpt
ext/session/tests/004.phpt
ext/session/tests/005.phpt
ext/session/tests/006.phpt: Fixed file include error
* ext/xslt/sablot.c: Remove warning.
* ext/mbstring/tests/019.phpt: Fixed test title (strlen -> mb_strlen)
* ext/pgsql/pgsql.c: Leave "" (null string) when converting.
* ext/iconv/iconv.c: Remove warnings
* php.ini-dist
php.ini-recommended: Added mbstring.func_overload directive
* ext/mbstring/config.m4: Fixed messages
* php.ini-dist: Remove gargabe
* ext/mbstring/config.m4: Enable mbstring by default.
* php.ini-dist
php.ini-recommended: Added description to mbstring ini entries
* main/php_ini.c: Avoid defining/using S_ISDIR macro.
2002-04-18 Derick Rethans <d.rethans@jdimedia.nl>
* sapi/isapi/php4isapi.c: - MFH for bug in Sambar 5.2
* sapi/isapi/php4isapi.c:
- Gaurd for problems in fault servers (fixes problem with Sambar 5.2)
2002-04-18 Aaron Bannert <aaron@apache.org>
* sapi/apache2filter/README:
Document the new PHPINIDir directive in the apache2filter/README.
* sapi/apache2filter/apache_config.c
sapi/apache2filter/php_apache.h
sapi/apache2filter/sapi_apache2.c:
This patch implements a new Apache2 directive called PHPINIDir that
allows the specification of the php.ini directory from within the Apache
configuration. If left unset, the default is to defer to the hard-coded
php paths. When set, the supplied path is made relative to Apache's
internal ServerRoot setting.
Example:
PHPINIDir "conf"
2002-04-18 Martin Jansen <mail@martin-jansen.de>
* pear/PEAR/Command.php: * Add API documentation.
2002-04-18 Sebastian Bergmann <sb@sebastian-bergmann.de>
* main/internal_functions_win32.c: Allow for PCRE to be disabled.
* ext/mysql/php_mysql.c: Make use of HAVE_MYSQL. Reviewed by: Sterling.
* main/internal_functions_win32.c: Conditionally include mbstring.h.
2002-04-18 Aaron Bannert <aaron@apache.org>
* sapi/apache2filter/sapi_apache2.c:
Fix an intermittent SEGV when an error bubbled up from PHP before our
server context was set. Now if that happens we simply don't log against
any particular server config (vhost).
Obtained from bug report by: Balazs Nagy <js@iksz.hu>
2002-04-18 Sebastian Bergmann <sb@sebastian-bergmann.de>
* main/config.w32.h
main/internal_functions_win32.c:
Add HAVE_CALENDAR, HAVE_COM, HAVE_SESSION and HAVE_TOKENIZER to enable/disable these extensions, respectively. It is now possible to build PHP on Win32 with just ext/standard and ext/pcre. The latter is needed by the former, because at least the aggregation functions use PCRE.
2002-04-18 Aaron Bannert <aaron@apache.org>
* sapi/apache2filter/sapi_apache2.c:
Fix an intermittent SEGV when an error bubbled up from PHP before our
server context was set. Now if that happens we simply don't log against
any particular server config (vhost).
Obtained from bug report by: Balazs Nagy <js@iksz.hu>
* sapi/apache2filter/sapi_apache2.c:
It makes more sense to do the null-pointer check *before* trying to use it.
(Also fix a typo that Cliff pointed out: "safe" --> "save".)
Obtained from: Ryan Morgan <rmorgan@covalent.net>
2002-04-18 Sander Roobol <phy@wanadoo.nl>
* ext/xslt/sablot.c: Removed redefinition of MIN()
* ext/dbx/dbx.c: Removing unused variable
2002-04-18 Stig Bakken <ssb@fast.no>
* pear/pear.m4: * another file that should not have been MFH'ed
2002-04-18 Derick Rethans <d.rethans@jdimedia.nl>
* ext/dba/config.m4
ext/dba/dba_cdb.c
ext/dba/dba_db2.c
ext/dba/dba_db3.c
ext/dba/dba_dbm.c
ext/dba/dba_gdbm.c
ext/dba/dba_ndbm.c: - Make DBA compile as a shared module
* ext/dba/config.m4
ext/dba/dba_cdb.c
ext/dba/dba_db2.c
ext/dba/dba_db3.c
ext/dba/dba_dbm.c
ext/dba/dba_gdbm.c
ext/dba/dba_ndbm.c: - MFH: Make DBA compile as a shared module again
2002-04-18 Sebastian Bergmann <sb@sebastian-bergmann.de>
* main/config.w32.h: Some cleanup for the Win32 build configuration.
2002-04-18 Hartmut Holzgraefe <hartmut@six.de>
* ext/standard/tests/general_functions/003.phpt
ext/standard/levenshtein.c: MFH fix for #16473
2002-04-18 Harald Radi <h.radi@nme.at>
* ext/com/conversion.c
ext/com/COM.c: MFH
* ext/com/conversion.c: whitespace fixes
2002-04-18 Alan Brown <abrown@pobox.com>
* ext/com/COM.c:
Missing break; causes fallthrough which actually causes heap corruption in the debugging version despite being just plain wrong. Also placed a default "Unavailable" message when the object does not populate the EXCEPINFO structure. Also removed a minor memory leak.
* ext/com/conversion.c:
When V_BSTR() is NULL, we pass a NULL pointer into php_OLECHAR_to_char() which reports an exception. Better to map a NULL string pointer to ZVAL_NULL.
2002-04-17 Sebastian Bergmann <sb@sebastian-bergmann.de>
* main/internal_functions_win32.c: Whitespace fixes.
* main/internal_functions_win32.c:
Only include php_bcmath.h when WITH_BCMATH=true.
* main/internal_functions_win32.c: Give HAVE_MYSQL meaning on Win32.
* main/internal_functions_win32.c: Give HAVE_UODBC meaning on Win32.
* main/internal_functions_win32.c:
Give HAVE_LIBEXPAT and HAVE_WDDX meaning on Win32.
* main/internal_functions_win32.c: Give HAVE_FTP meaning on Win32.
* main/internal_functions_win32.c: Remove bogus includes.
* main/php_ini.c: Patch by Marcus B<>rger.
2002-04-17 Mika Tuupola <tuupola@appelsiini.net>
* pear/File/Passwd.php:
* added lock(), unlock(), isLocked() and getCvsUser() methods.
2002-04-17 Stig Bakken <ssb@fast.no>
* pear/scripts/phpize.in: * revert buildv5 changes
* pear/PEAR/Packager.php: * doooh!
2002-04-17 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de>
* ext/xmlrpc/xmlrpc-epi-php.c: - fixed memory leak
2002-04-17 Sebastian Bergmann <sb@sebastian-bergmann.de>
* main/internal_functions_win32.c: SPACEs->TAB.
* ext/overload/overload.c
ext/tokenizer/tokenizer.c: Beautify.
* main/internal_functions_win32.c: Forgot adding phpext_tokenizer_ptr.
* win32/php4dll.dsp
win32/php4dllts.dsp
main/internal_functions_win32.c:
Enable ext/tokenizer by default on Win32, too. Since there is no HAVE_TOKENIZER flag, it cannot be turned off in config.w32.h.
2002-04-16 Wez Furlong <wez.php@thebrainroom.com>
* main/php_streams.h
main/streams.c
pear/scripts/pear.in
pear/scripts/pearize.in
main/php.h
ext/zlib/zlib_fopen_wrapper.c
ext/standard/php_fopen_wrapper.c
ext/zlib/zlib.c
ext/standard/ftp_fopen_wrapper.c
ext/standard/http_fopen_wrapper.c
ext/standard/dir.c
ext/bz2/bz2.c
ext/standard/basic_functions.c:
Always initialize wrappers, regardless of PG(allow_url_fopen).
Add is_url field to wrapper structure; the stream wrapper openers
will disallow opening is is_url && !PG(allow_url_fopen).
Add infrastructure for stat($url) and opendir($url).
Tidy up/centralize code that locates and instantiates wrappers for the
various operations.
Implement opendir for plain files.
Make the PHP opendir and dir functions use the streams implementations.
Add modelines for syntax highlighting the pear scripts in vim
2002-04-16 Stig Bakken <ssb@fast.no>
* pear/DB.php: * added DB::isConnection
* phpdoc fixes
2002-04-16 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* main/php_ini.c: fix cli/cgi -c <path>|<file>
2002-04-16 Aaron Bannert <aaron@apache.org>
* sapi/apache2filter/sapi_apache2.c:
It makes more sense to do the null-pointer check *before* trying to use it.
(Also fix a typo that Cliff pointed out: "safe" --> "save".)
Obtained from: Ryan Morgan <rmorgan@covalent.net>
2002-04-16 Sterling Hughes <sterling@bumblebury.com>
* ext/xslt/sablot.c:
move xslt_error and xslt_errno down to functions, in order to
make logical room for the xslt_dom_* functions
2002-04-16 Wez Furlong <wez.php@thebrainroom.com>
* ext/zlib/zlib.c: remove old code
2002-04-16 Sander Roobol <phy@wanadoo.nl>
* ext/w32api/w32api.c: MFH (#16628)
* ext/w32api/w32api.c: Added missing function to function_entry
2002-04-16 Stig Bakken <ssb@fast.no>
* pear/PEAR/Common.php:
* started working on analyzeSourceCode and detectDependencies methods
2002-04-16 Jani Taskinen <sniper@iki.fi>
* ext/tokenizer/tokenizer.c: removed ws pollution
* ext/tokenizer/tokenizer.c: Added 2 new tokens: T_CLASS_C and T_FUNC_C
2002-04-16 Derick Rethans <d.rethans@jdimedia.nl>
* ext/xslt/config.m4: - MFB: Remove version number
* ext/xslt/config.m4: - Remove version number here
2002-04-16 Sterling Hughes <sterling@bumblebury.com>
* ext/xslt/README.XSLT-BACKENDS:
update these docs, phpdoc will lag a bit :)
* ext/xslt/php_sablot.h
ext/xslt/sablot.c:
Prefix current functions with "sax" in order to make way for dom interface
backwards compatibility is maintained via function aliases
xslt_sax_set_sax_handlers is a bit wierd, i guess...
* ext/xslt/sablot.c: clean up the error code a tidbit
2002-04-16 Stig Bakken <ssb@fast.no>
* ext/tokenizer/config.m4: * build tokenizer by default
* pear/PEAR/Packager.php:
* chdir back to original dir in PEAR_Packager::package
* only display "cvstag" hint if CVS/Root exists
2002-04-16 Tomas V.V.Cox <cox@idecnet.com>
* pear/PEAR/Autoloader.php
pear/PEAR/Command/Remote.php: Added standar header
* pear/PEAR/Command/Registry.php:
Vim tags added plus some other minor text about license and author
* pear/PEAR/Command/Registry.php:
Be more clear when no packages are installed
* pear/PEAR/Command/Package.php:
Give the right error when wrong params given to package-info and
fix/add help some help messages
2002-04-15 Frank M. Kromann <frank@frontbase.com>
* ext/mbstring/mbstring.h: Fixing Win32 compilation of mbstring
* ext/exif/exif.dsp: Fixing Win32 compilation of exit
* main/php_streams.h
main/spprintf.c
main/spprintf.h
main/streams.c: Adding PHPAPI needed for exif on Win32
2002-04-15 Mark L. Woodward <mlwmohawk@mohawksoft.com>
* ext/msession/reqclient.h
ext/msession/msession.c: Chages for beta3
2002-04-15 Wez Furlong <wez.php@thebrainroom.com>
* main/network.c: should not be there
* main/network.c: Some minor tweaks and debugging for sockets.
2002-04-15 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de>
* ext/domxml/php_domxml.c:
- DomNode->replace_node() now returns the node that was replace and
not the new node
- fixes Bug #15949
* ext/domxml/php_domxml.h
ext/domxml/php_domxml.c: - added DomNode->replace_child()
2002-04-14 Sterling Hughes <sterling@bumblebury.com>
* NEWS: this news entry reports a new mailparse addition
a later news entry reports that mailparse has been moved to pecl
1+1 = 2
2002-04-14 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c: support for WinXP tags (thanks to Rui Carmo)
2002-04-14 Thies C. Arntzen <thies@thieso.net>
* ext/oci8/oci8.c: fix crash bug introduced by last commit (damncvs diff!)
* ext/oci8/oci8.c: fix crash bug introduced by last commit
2002-04-14 Derick Rethans <d.rethans@jdimedia.nl>
* main/php_version.h
configure.in: - Swap back version numbers after tagging
* configure.in
main/php_version.h: - Go with RC4
2002-04-14 Jani Taskinen <sniper@iki.fi>
* sapi/apache/config.m4:
Make the configure fail if someone tries to use --with-apache with Apache2
2002-04-14 Markus Fischer <mfischer@guru.josefine.at>
* pear/PEAR/Frontend/CLI.php:
- Do not try to draw a table if there are not elements.
2002-04-14 Jani Taskinen <sniper@iki.fi>
* NEWS: Fixed some entries..
* sapi/apache2filter/sapi_apache2.c: ws fixes
2002-04-14 Derick Rethans <d.rethans@jdimedia.nl>
* ext/zip/zip.c: - MFH: Fix NULL-termination issue
* ext/zip/zip.c: - Fix null-termination problem
2002-04-14 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/mbstring/mbstring.c:
fixed error output handler when 'pass' is choosed as output encoding.
2002-04-14 Jani Taskinen <sniper@iki.fi>
* sapi/cli/config.m4: Make it possible to actually disable the CLI..
* sapi/cli/config.m4: This is experimental still
* sapi/cli/config.m4: Make this work as it was supposed to work.
2002-04-14 Frank M. Kromann <frank@frontbase.com>
* ext/fbsql/config.m4: /usr/lib is the default install dir on Mandrake
2002-04-14 Jani Taskinen <sniper@iki.fi>
* ext/java/Makefile.in
ext/java/config.m4: MFH (use of correct javac/jar binaries)
* ext/java/Makefile.frag
ext/java/config.m4: - Use the correct javac/jar binaries.
2002-04-13 Thies C. Arntzen <thies@thieso.net>
* ext/oci8/oci8.c: MFH: ocibind: avoid warning in debug mode
* ext/oci8/oci8.c:
ocibind: avoid warning in debug mode if an outbound variable is NULL
2002-04-13 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* main/php_ini.c: Fix cli/cgi -c option
2002-04-13 Thies C. Arntzen <thies@thieso.net>
* ext/oci8/oci8.c:
MFH: Mixing OCIPlogon and OCINLogon no longer leak Oracle-Sessions. (thies)
to RM: this is a real fix that _should_ be in 4.2!
* ext/oci8/oci8.c:
- Mixing OCIPlogon and OCINLogon no longer leak Oracle-Sessions. (thies)
2002-04-13 Christian Stocker <chregu@phant.ch>
* ext/domxml/php_domxml.c
ext/domxml/php_domxml.h:
- old $node->append_child() is now $node->append_sibling(), since
new append_child() now behaves like excepted (= W3C standard) (chregu, uwe)
2002-04-13 Sascha Schumann <sascha@schumann.cx>
* ext/gd/config.m4: s/==/=/
2002-04-13 Markus Fischer <mfischer@guru.josefine.at>
* pear/PEAR/Installer.php:
- Also raise a different error message if we don't specify any package at all.
2002-04-13 Jani Taskinen <sniper@iki.fi>
* sapi/apache/config.m4:
- Prevent users from trying to make a static build with Apache2 using
--with-apache
2002-04-13 Markus Fischer <mfischer@guru.josefine.at>
* pear/PEAR/Installer.php:
- Return a different error message if no package file was given at all.
2002-04-13 Rasmus Lerdorf <rasmus@php.net>
* ext/gd/config.m4: oops
2002-04-13 Markus Fischer <mfischer@guru.josefine.at>
* pear/Archive/Tar.php: - Properly format error message.
* ext/xml/xml.c: - Fix a possible memory leak in xml_set_handler().
I stumbled over this while trying out 'pear package' which, while doing
xml parsing, re-assigns the variaous callback handlers depending
on the version during xml processing.
If this check causes problems, let me know.
2002-04-13 Jani Taskinen <sniper@iki.fi>
* pear/Makefile.in
pear/Makefile.frag: - Makefile.frag is not supposed to be here..
- Net/Socket.php doesn't exist anymore
2002-04-13 Rasmus Lerdorf <rasmus@php.net>
* ext/gd/libgd/gdfonts.c
ext/gd/libgd/gdfonts.h
ext/gd/libgd/gdfontt.c
ext/gd/libgd/gdfontt.h
ext/gd/libgd/gdft.c
ext/gd/libgd/gdhelpers.c
ext/gd/libgd/gdhelpers.h
ext/gd/libgd/gdkanji.c
ext/gd/libgd/gdparttopng.c
ext/gd/libgd/gdtables.c
ext/gd/libgd/gdtest.c
ext/gd/libgd/gdtestft.c
ext/gd/libgd/gdtopng.c
ext/gd/libgd/gdxpm.c
ext/gd/libgd/jisx0208.h
ext/gd/libgd/mathmake.c
ext/gd/libgd/pngtogd.c
ext/gd/libgd/pngtogd2.c
ext/gd/libgd/testac.c
ext/gd/libgd/wbmp.c
ext/gd/libgd/wbmp.h
ext/gd/libgd/webpng.c
ext/gd/libgd/README
ext/gd/libgd/gd.c
ext/gd/libgd/gd.h
ext/gd/libgd/gd2copypal.c
ext/gd/libgd/gd2time.c
ext/gd/libgd/gd2topng.c
ext/gd/libgd/gd_arc_f_buggy.c
ext/gd/libgd/gd_gd.c
ext/gd/libgd/gd_gd2.c
ext/gd/libgd/gd_io.c
ext/gd/libgd/gd_io.h
ext/gd/libgd/gd_io_dp.c
ext/gd/libgd/gd_io_file.c
ext/gd/libgd/gd_io_ss.c
ext/gd/libgd/gd_jpeg.c
ext/gd/libgd/gd_png.c
ext/gd/libgd/gd_ss.c
ext/gd/libgd/gd_topal.c
ext/gd/libgd/gd_wbmp.c
ext/gd/libgd/gdcache.c
ext/gd/libgd/gdcache.h
ext/gd/libgd/gddemo.c
ext/gd/libgd/gdfontg.c
ext/gd/libgd/gdfontg.h
ext/gd/libgd/gdfontl.c
ext/gd/libgd/gdfontl.h
ext/gd/libgd/gdfontmb.c
ext/gd/libgd/gdfontmb.h
ext/gd/config.m4: Initial commit of the built-in libgd based on GD-2.0.1
This initial checkin has no changes to any of the libgd code so it can
be used as a basis for diffs. It also will not build currently because
of this. The PHP gd checks need to be incorporated along with a bit of
other config magic. It also shouldn't break the build and will only
take effect if you use --with-gd=php right now.
2002-04-13 Jani Taskinen <sniper@iki.fi>
* ext/posix/posix.c:
MFH: For example the compile in AIX does not like these at all..
* ext/posix/posix.c: Do NOT use c++ comments in c code!!!!!
2002-04-13 Stig Bakken <ssb@fast.no>
* pear/PEAR/Command/Package.php:
* cvstag command: tag slide option is -f, not -F
* pear/PEAR/Common.php:
* missing file role message could be mistaken for missing maintainer role
2002-04-13 Jani Taskinen <sniper@iki.fi>
* sapi/apache/config.m4
sapi/apache2filter/config.m4: MFH.
(Prevent users from trying to build Apache 1.x module with Apache 2.x and
vice-versa)
* ext/standard/config.m4: MFH (forgot to commit this..sorry Derick..)
2002-04-13 Stig Bakken <ssb@fast.no>
* pear/PEAR/Remote.php:
* add cookie authentication to PEAR_Remote (temporarily in addition to http auth)
2002-04-12 Jani Taskinen <sniper@iki.fi>
* sapi/apache2filter/config.m4
sapi/apache/config.m4:
- Added checks to prevent building the DSO with wrong configure option.
2002-04-12 Aaron Bannert <aaron@apache.org>
* sapi/apache2filter/sapi_apache2.c:
Fix a typo and a build error detected by the lovely HPUX11 ANSI C compiler.
2002-04-12 Jani Taskinen <sniper@iki.fi>
* ext/exif/exif.c: Fix the build.
* ext/zlib/zlib.c: Do NOT use C++ comments in C code.
2002-04-12 jim winstead <jimw@apache.org>
* RELEASE_PROCESS:
remove this, since it doesn't describe the current process, and is
under a silly license.
2002-04-12 Derick Rethans <d.rethans@jdimedia.nl>
* main/php_version.h
configure.in: - Swap back development version numbers
2002-04-12 Wez Furlong <wez.php@thebrainroom.com>
* ext/openssl/openssl.c: fix build with ZE2
2002-04-12 Derick Rethans <d.rethans@jdimedia.nl>
* configure.in
main/php_version.h: - Go with RC3
2002-04-12 Wez Furlong <wez.php@thebrainroom.com>
* main/php_streams.h: fix segfault
2002-04-12 Sascha Schumann <sascha@schumann.cx>
* build/rules.mk
build/rules_common.mk
build/rules_pear.mk
build/program.mk: Gone they are.. files related to the old build-system
2002-04-12 Jan Lehnardt <jan@dasmoped.net>
* ext/pcntl/tests/001.phpt: - MFB (4_2_0)
* ext/pcntl/tests/001.phpt: - fix testcase
- patch by: Roman Neuhauser <neuhauser@mail.cz>
2002-04-12 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c
ext/exif/tests/001.phpt
ext/exif/tests/003.phpt:
Ini settings for internal encoding and decoding of Unicode and JIS formatted user comments.
2002-04-12 Frank M. Kromann <frank@frontbase.com>
* ext/zlib/zlib.c: Removing a unused local variable.
Setting the size before returning the value in readgzfile
2002-04-12 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/mbstring/mbstring.h
ext/mbstring/mbstring.c: -new function php_mb_check_encoding_list
-mark module globals as const (thread safety)
2002-04-12 Sander Roobol <phy@wanadoo.nl>
* ext/mbstring/tests/003.phpt: MFH
* ext/mbstring/tests/003.phpt: This test should be skipped if(!cgi)
2002-04-12 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/mbstring/mbstring.c:
fixed a bug which causes crash when charset is not set.
2002-04-12 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/mbstring/mbstring.c: -fix mb_detect_order
-php_mbstring_parse_encoding_list/array return 0 on any illegal input
2002-04-12 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de>
* ext/domxml/php_domxml.h
ext/domxml/php_domxml.c: - added method DomNode->remove_child()
* ext/domxml/php_domxml.h: - fixed stupid compile error
* ext/domxml/php_domxml.h
ext/domxml/php_domxml.c:
- insert_before(): copy node before doing the insert
- append_child(): actually do an append child and not and add sibling
- what is called xmlDtd in libxml is actually the class DocumentType
in DOM. The domxml extension used a class DomDtd which is not defined
in the DOM standard. Instead of using DomDtd DomDocumentType is now
used. DomDtd has been renamed to Dtd but has not meaning anymore.
- added more functions
2002-04-12 Sebastian Bergmann <sb@sebastian-bergmann.de>
* win32/php4dll.dsp: Sync with php4dllts.
* win32/php4dllts.dsp
win32/php4dll.dsp: MFH (Reduce warning level for re2c generated files.
2002-04-12 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* run-tests.php:
Enable CGI binary for testing. CGI binary should be used when it's
available, since some tests cannot be performed by CLI. (And
many of them are just failing now)
Fixed SAPI and VERSION output.
* Makefile.global: Be nice to php.ini-recommended users.
php.ini-recommended uses output buffer resulting delayed output during
"make test". User php.ini file is used anyway, since run-tests.php
invoke php for each test from there.
2002-04-12 Rasmus Lerdorf <rasmus@php.net>
* ext/exif/tests/003.phpt:
This exif test was failing because the \0's in the expected output had
disappeared. It may be CVS doing this. I have put the nulls back, but we
may have to mark this as a binary file in th cvswrappers, or rewrite the
test to not output nulls.
2002-04-12 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/xslt/config.m4: Update Sablotron version supported.
* sapi/cgi/cgi_main.c
main/php_ini.c
sapi/cli/php_cli.c: CGI/CLI take file and dir for -c option by this.
2002-04-11 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/mbstring/mbstring.c:
interpret empty to_encoding as encoding not set what results in current_internal_encoding
2002-04-11 Jani Taskinen <sniper@iki.fi>
* NEWS: Fixed (again) the news entry..NEWS file is not a manual.
2002-04-11 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/mbstring/mbstring.c:
fixed a bug which causes crash when charset is not set.
2002-04-11 Harald Radi <h.radi@nme.at>
* ext/gd/gd.c: fixed typo
* ext/gd/gd.c: fixed type
2002-04-11 Aaron Bannert <aaron@apache.org>
* sapi/apache2filter/php_apache.h
sapi/apache2filter/sapi_apache2.c:
Fix a problem where php-generated data was pushed down the entire output
filter chain instead of just down the rest of the chain. This fix will
speed up some unnecessary overhead introduced in the last patch.
Suggested by: Cliff Woolley <jwoolley@apache.org>
2002-04-11 Harald Radi <h.radi@nme.at>
* ext/gd/gd.c: fixed type
2002-04-11 Aaron Bannert <aaron@apache.org>
* sapi/apache2filter/php_apache.h
sapi/apache2filter/sapi_apache2.c:
PHP filters and Apache 2 aren't quite a perfect match yet, so we have
to do some trickery with the server_context to make sure it is always
valid within the current thread.
This patch makes sure the server_context is created in apache's
post_read_request hook phase, and then registeres a cleanup that
will NULL out the server context when the request goes out of scope.
Then, inside the output filters, if the server_context is null we
throw an error. Finally, instead of saving the output filter in
the server_context, now we store the entire request_rec pointer
in there.
POST bodies appear to be working now, although they are very inefficient.
The input filter is still just realloc()ing for whatever data comes
down the input pipe, and then sending this to PHP. This means that
we are doing some really nasty memory management on big POST bodies.
For now this it allows for unlimited input bodies, which means that
a big POST could potentially DoS a box by making it run out of memory.
We might want to put a limit on here just in case, at least until
we figure out how to consume input data more efficiently into php.
2002-04-11 Sebastian Bergmann <sb@sebastian-bergmann.de>
* main/config.w32.h
win32/php4dll.dsp
win32/php4dllts.dsp: Disable ext/overload.
2002-04-11 Joseph Tate <jtate@mi-corporation.com>
* win32/php4dllts.dsp
win32/php4ts.dsp
win32/php4ts_cli.dsp: Fixing project files so that they load
2002-04-11 Aaron Bannert <aaron@apache.org>
* sapi/apache2filter/sapi_apache2.c:
Don't depend on the context provided by the filter (f->ctx) anymore. In
Apache 2 the input and output filter contexts are kept unique. We now
only depend on SG(server_context) for each request, and assume that
the same thread will process the entire request. At some point it
would be wise to separate the input and output contexts.
* sapi/apache2filter/sapi_apache2.c:
Return the number of bytes consumed, not the number of bytes left.
Suggested by: Brian Havard <brianh@kheldar.apana.org.au>
2002-04-11 Jan Lehnardt <jan@dasmoped.net>
* ext/domxml/tests/001.phpt:
- add quotes. Cought by: Roman Neuhauser <neuhauser@mail.cz>
2002-04-11 Aaron Bannert <aaron@apache.org>
* sapi/apache2filter/sapi_apache2.c:
Return the number of bytes consumed, not the number of bytes left.
Suggested by: Brian Havard <brianh@kheldar.apana.org.au>
2002-04-11 Sebastian Bergmann <sb@sebastian-bergmann.de>
* sapi/apache2filter/README: MFH (Update README).
* sapi/apache2filter/README: Update README.
2002-04-11 Joseph Tate <jtate@mi-corporation.com>
* win32/php4ts.dsp
win32/php4ts.rc
win32/php4ts.rc2
win32/php4ts_cli.dsp
win32/php4ts_cli.rc
win32/php4ts_cli.rc2
win32/resource.h
win32/php4dllts.rc
win32/php4dllts.rc2
win32/php4dllts.dsp:
Added versioning to dll and exe files created under windows.
2002-04-11 Wez Furlong <wez.php@thebrainroom.com>
* main/php_version.h: sync with PHP_MAJOR_VERSION changes to configure.in
* configure.in: Apply patch for MAJOR_VERSION etc. by Joseph Tate
2002-04-11 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/mbstring/mbstring.c: Fix ZTS build
2002-04-11 Derick Rethans <d.rethans@jdimedia.nl>
* ext/overload/config.m4
configure.in
ext/standard/basic_functions.h
ext/standard/aggregation.c
ext/standard/aggregation.h
ext/standard/basic_functions.c
ext/standard/config.m4:
- Mark Apache2, overload and aggregation as experimental
2002-04-11 Wez Furlong <wez.php@thebrainroom.com>
* main/user_streams.c
ext/standard/php_fopen_wrapper.c: Fix declarations (Thanks Sebastian)
2002-04-11 Alexander Merz <alexander.merz@t-online.de>
* pear/Archive/Tar.php: use DIRECTORY_SEPERATOR
2002-04-11 Stig Bakken <ssb@fast.no>
* configure.in: * no more pear/scripts/pear-get
2002-04-11 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/standard/base64.c: thread safe
* main/snprintf.c: fix build (hopefully for BSD, too)
* ext/standard/image.c: fix warning
* ext/standard/tests/file/002.phpt: fix testproblem
2002-04-11 Sebastian Bergmann <sb@sebastian-bergmann.de>
* sapi/apache2filter/php_apache.h
sapi/apache2filter/sapi_apache2.c:
MFH (Patch by Aaron Bannert <aaron@clove.org> and Cliff Woolley <jwoolley@virginia.edu>).
* sapi/apache2filter/php_apache.h
sapi/apache2filter/sapi_apache2.c:
Patch by Aaron Bannert <aaron@clove.org> and Cliff Woolley <jwoolley@virginia.edu>.
2002-04-11 Sascha Schumann <sascha@schumann.cx>
* acinclude.m4: properly reset ac_extra in PHP_NEW_EXTENSION
redirect stderr to /dev/null to silence xargs
Noticed by: Andrei
2002-04-11 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/skeleton/php_skeleton.h: TSRMG => TSRMLS
2002-04-10 Wez Furlong <wez.php@thebrainroom.com>
* ext/iconv/iconv.c: fix warning
* main/user_streams.c
main/php_streams.h
main/streams.c
main/main.c
main/network.c
ext/zlib/zlib_fopen_wrapper.c
ext/zlib/zlib.c
ext/standard/php_fopen_wrapper.c
ext/standard/php_fopen_wrappers.h
ext/zlib/php_zlib.h
ext/standard/file.h
ext/standard/ftp_fopen_wrapper.c
ext/standard/http_fopen_wrapper.c
ext/standard/file.c
ext/standard/Makefile.frag
ext/standard/basic_functions.c
ext/bz2/php_bz2.h
ext/bz2/bz2.c: Implement stream context and status notification system.
Bump the BC for zlib notice to a warning
2002-04-10 Jani Taskinen <sniper@iki.fi>
* NEWS: - Added __FUNCTION__ and __CLASS__ constants.
2002-04-10 Stig Bakken <ssb@fast.no>
* pear/package-pear.xml: * add download command to description
2002-04-10 Tomas V.V.Cox <cox@idecnet.com>
* pear/PEAR/Command/Remote.php: Implemented "pear download <pakage>"
* pear/PEAR/Packager.php: Do not show the "tag it!" message when verbose=0
* pear/PEAR/Frontend/CLI.php: Added single display()
2002-04-10 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de>
* ext/hwapi/CREDITS
ext/hwapi/config.m4
ext/hwapi/hwapi.cpp:
- extension to access a Hyperwave Server based on the official
Hypwerwave SDK. The function of this module is similar to the
existing hyperwave extension but the api is very different.
2002-04-10 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* main/snprintf.c
main/spprintf.c: fix a warnig and an error (found by Sebastioan)
2002-04-10 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/mbstring/mbfilter.h
ext/mbstring/mbfilter_ja.c
ext/mbstring/mbfilter_ja.h
ext/mbstring/mbstring.c
ext/mbstring/mbstring.h
ext/mbstring/CREDITS
ext/mbstring/mbfilter.c: changed mbstring to make thread safe.
2002-04-10 Tomas V.V.Cox <cox@idecnet.com>
* pear/PEAR/Command/Registry.php: Help for command "shell-test"
* pear/PEAR/Command/Package.php:
Added "pear package -n" (only output the created package file name)
2002-04-10 Sascha Schumann <sascha@schumann.cx>
* ext/dba/dba_db2.c: ws changes
* ext/dba/dba_db2.c: Replace all memsets with variable initializations
Change flow of code in functions to end in the "positive" branch.
Changes verified using the original php3 dba tests.
* ext/dba/dba_db2.c: too quick. full speed back.
* ext/dba/dba_db2.c:
Please test patches which are merged into the release branch.
db2 has a standard UNIX API which in turn means that
it returns non-zero in error conditions.
2002-04-10 Sebastian Bergmann <sb@sebastian-bergmann.de>
* win32/php4dll.dsp
win32/php4dllts.dsp: Fix Win32 build.
2002-04-10 Jani Taskinen <sniper@iki.fi>
* NEWS: Note about Apache2 support being experimental.
* sapi/apache2filter/config.m4: MFH
* sapi/apache2filter/config.m4:
Let people know this stuff is experimental.
2002-04-10 Edin Kadribasic <edink@proventum.net>
* pear/DB/pgsql.php:
Fixed postgres connect string generation when no host is specified.
2002-04-10 Stig Bakken <ssb@fast.no>
* pear/Makefile.in: * add missing continuation
* pear/Makefile.in: * tabify instead of untabify :-P
* pear/Makefile.in: * remove pear-get if installed
* pear/Makefile.in: * keep installing the bundled files in 4.2 too
2002-04-10 Derick Rethans <d.rethans@jdimedia.nl>
* ext/exif/exif.c: - Reverse patch
* ext/posix/posix.c: MFH
* ext/posix/posix.c: - Fix defines
2002-04-10 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* main/main.c
main/php_globals.h
php.ini-dist
php.ini-recommended: new ini setting log_errors_max_len
* ext/exif/exif.c: fix exif using vspprintf
* configure.in
main/php.h: make (v)spprintf available
* main/spprintf.c
main/spprintf.h: introducing spprintf and vspprintf
* main/snprintf.c
main/snprintf.h: -preface for new vpprintf
2002-04-09 Stig Bakken <ssb@fast.no>
* pear/PEAR/Common.php:
* ignore dirs and libfiles in older releases (changelog)
* pear/PEAR/Common.php: * ignore files in older releases (changelog)
2002-04-09 jim winstead <jimw@apache.org>
* ext/gmp/gmp.c: MFH
* ext/gmp/gmp.c: Fix bug #15835.
2002-04-09 Stig Bakken <ssb@fast.no>
* pear/Makefile.in: * MFH Makefile
* pear/Schedule/At.php
pear/scripts/pear.bat
pear/scripts/pear.in
pear/PEAR/Command/Registry.php
pear/PEAR/Frontend/CLI.php
pear/PEAR/Command/Auth.php
pear/PEAR/Command/Common.php
pear/PEAR/Command/Config.php
pear/PEAR/Command/Install.php
pear/PEAR/Command/Package.php
pear/PEAR/Packager.php
pear/PEAR/Registry.php
pear/PEAR/Remote.php
pear/PEAR/Uploader.php
pear/PEAR/Command.php
pear/PEAR/CommandResponse.php
pear/PEAR/Common.php
pear/PEAR/Config.php
pear/PEAR/Dependency.php
pear/PEAR/Installer.php
pear/Net/Socket.php
pear/Mail/RFC822.php
pear/DB/tests/oci8/05sequences.phpt
pear/HTML/Common.php
pear/HTML/Form.php
pear/HTML/Select.php
pear/DB/pgsql.php
pear/DB/tests/driver/05sequences.phpt
pear/DB/tests/mysql/05sequences.phpt
pear/DB/tests/sequences.inc
pear/DB/oci8.php
pear/DB/mysql.php
pear/DB/ibase.php
pear/DB/common.php
pear/package-db.xml
pear/package-pear.xml
pear/package.dtd
pear/pear.m4
pear/PEAR.php
pear/DB.php: * PEAR MFH
* pear/DB/common.php
pear/DB.php: * drop the ondemand connect stuff for now
* pear/tests/pear_config.phpt: * add preferred_state
* pear/package-pear.xml: * drop file replace= attribute
* pear/tests/pear_config.phpt
pear/tests/pear_error.phpt
pear/tests/pear_error3.phpt
pear/PEAR/Frontend/CLI.php
pear/XML/tests/002.phpt
pear/XML/tests/003.phpt
pear/scripts/.cvsignore
pear/scripts/pear-get.in
pear/scripts/pear.in
pear/scripts/pearcmd-common.php
pear/scripts/pearcmd-help.php
pear/scripts/pearcmd-info.php
pear/scripts/pearcmd-install.php
pear/scripts/pearcmd-list.php
pear/scripts/pearcmd-package.php
pear/scripts/pearcmd-remote-list.php
pear/scripts/pearcmd-show-config.php
pear/scripts/pearcmd-uninstall.php
pear/scripts/phpize.in
pear/PEAR/Command/Auth.php
pear/PEAR/Command/Common.php
pear/PEAR/Command/Config.php
pear/PEAR/Command/Install.php
pear/PEAR/Command/Package.php
pear/PEAR/Command/Registry.php
pear/PEAR/Command/Remote.php
pear/PEAR/Packager.php
pear/PEAR/Registry.php
pear/PEAR/Remote.php
pear/DB/tests/ibase/03simplequery.phpt
pear/DB/tests/ibase/04numcols.phpt
pear/DB/tests/ibase/05sequences.phpt
pear/DB/tests/ibase/06prepexec.phpt
pear/DB/tests/ibase/10errormap.phpt
pear/DB/tests/ibase/connect.inc
pear/DB/tests/ibase/mktable.inc
pear/DB/tests/ibase/skipif.inc
pear/HTML/Form.php
pear/HTML/Select.php
pear/PEAR/Command.php
pear/PEAR/Common.php
pear/PEAR/Config.php
pear/PEAR/Installer.php
pear/DB/IDEAS
pear/DB/STATUS
pear/DB/TESTERS
pear/DB/common.php
pear/DB/ibase.php
pear/DB/pgsql.php
pear/DB/tests/db_error.phpt
pear/DB/tests/db_error2.phpt
pear/DB/tests/driver/setup.inc
pear/DB/tests/ibase/02fetch.phpt
pear/.cvsignore
pear/DB.php
pear/Makefile.frag
pear/Makefile.in
pear/PEAR.php
pear/package.dtd
pear/pear.m4: * partial PEAR MFH
* ext/xml/xml.c: * remove extra end-fold
2002-04-09 Sterling Hughes <sterling@bumblebury.com>
* sapi/apache2filter/php_functions.c:
eekk -- and ssb thought my macro's were icky :)
2002-04-09 Stig Bakken <ssb@fast.no>
* pear/PEAR/Command/Package.php:
* package-validate uses package.xml as default param
* pear/Makefile.in: * MFH: install the right expat header files
* pear/Makefile.frag:
* ext/xml/expat no longer has xmltok and xmlparse subdirs
2002-04-09 Tomas V.V.Cox <cox@idecnet.com>
* pear/PEAR/Dependency.php
pear/PEAR/Installer.php:
Make the dependencies check look for the correct registry file
2002-04-09 Alexander Merz <alexander.merz@t-online.de>
* pear/PEAR/Registry.php:
Win95/98/Me doesn't support locking, please check patch on other systems
2002-04-09 Tomas V.V.Cox <cox@idecnet.com>
* pear/PEAR/Command/Package.php:
Fix package-list not showing the right Install path
* pear/PEAR/Registry.php:
Fix a problem when list-installed is called in a new installation
2002-04-09 James Cox <james@wherewithal.com>
* pear/scripts/pear.bat: it's been changed back to php.exe
2002-04-09 Alexander Merz <alexander.merz@t-online.de>
* pear/scripts/pear.bat: updated, requires PHP4.2 php-cgi
2002-04-09 Stig Bakken <ssb@fast.no>
* pear/PEAR/Packager.php: * show full cvstag command
* pear/PEAR/Command/Common.php: * get rid of CommandResponse stufff
* pear/PEAR/Common.php: * drop file replace= attribute
* pear/Makefile.frag: * remove PEAR/Uploader.php
* pear/PEAR/CommandResponse.php
pear/PEAR/Uploader.php: * unused files
* pear/PEAR/Command/Install.php
pear/PEAR/Config.php
pear/PEAR/Installer.php
pear/PEAR/Common.php
pear/package-pear.xml
pear/package.dtd:
* implemented role="script" and <replace> substitution during install
2002-04-09 Sterling Hughes <sterling@bumblebury.com>
* sapi/apache2filter/php_functions.c
sapi/apache2filter/sapi_apache2.c: fix compile warnings
2002-04-09 Stig Bakken <ssb@fast.no>
* pear/package-pear.xml: * package definition for the base PEAR system
* pear/package.dtd: HEADS UP, package.xml format change:
<file>foo.php</file> is now <file name="foo.php/>
Added tags for configure-like substitutions.
2002-04-08 Mark L. Woodward <mlwmohawk@mohawksoft.com>
* ext/msession/php_msession.h
ext/msession/reqclient.h
ext/msession/msession.c: Added new features for msession beta 2
2002-04-08 Jani Taskinen <sniper@iki.fi>
* ext/odbc/birdstep.c
ext/odbc/php_odbc.c: ws fix
* ext/odbc/php_odbc.c: MFH
* ext/odbc/php_odbc.c: CPP directives must start on the beginning of line
2002-04-08 Richard Heyes <richard@phpguru.org>
* pear/PEAR.php: * Added getStaticProperty() for static methods.
2002-04-08 Jani Taskinen <sniper@iki.fi>
* ext/standard/config.m4
ext/standard/reg.c
acinclude.m4
NEWS: - Revert that change. Added a warning about this.
2002-04-08 Sebastian Bergmann <sb@sebastian-bergmann.de>
* ext/mysql/libmysql/strto.c
ext/mysql/libmysql/strtoll.c
ext/mysql/libmysql/strtoull.c: MFH (MS VS.Net Fix).
2002-04-08 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* pear/Makefile.frag: Make pgsql header available for PECL module(s)
2002-04-08 Wez Furlong <wez.php@thebrainroom.com>
* configure.in: remove streams option from branch
2002-04-08 Bertrand Mansion <bmansion@mamasam.com>
* pear/HTML/Common.php
pear/HTML/Select.php:
htmlentities > htmlspecialchars for charset compatibility as noticed by Wojciech Gdela.
2002-04-08 Edin Kadribasic <edink@proventum.net>
* win32/install.txt
win32/php4ts_cli.dsp
win32/pws-php4cgi.reg:
Finished syncing win32 build and docs with the unix counterpart.
Renamed the cli executable to php-cli.exe so somebody doesn't overwrite
cgi by mistake.
2002-04-08 Jani Taskinen <sniper@iki.fi>
* main/main.c: upload_max_filesize can only be set in php.ini
* NEWS: and the news entry..
* ext/standard/config.m4
ext/standard/reg.c
acinclude.m4:
There's really no point in allowing using the system regex library.
2002-04-08 Sebastian Bergmann <sb@sebastian-bergmann.de>
* win32/php4.dsp
win32/php4ts.dsp: Rename Win32 executable to php.exe.
2002-04-08 Jani Taskinen <sniper@iki.fi>
* ext/standard/config.m4:
Using system regex lib seems not to work quite well when compiled with Apache.
2002-04-08 Derick Rethans <d.rethans@jdimedia.nl>
* ext/dba/dba_db2.c: - MFH
* ext/dba/dba_db2.c: - Fix wrong logic (Thanks to Alan for noticing it)
2002-04-08 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c: Remove unneeded conversions from pg_convert.
2002-04-08 Tomas V.V.Cox <cox@idecnet.com>
* pear/package-db.xml: Continue the list of features for PEAR DB
Release version is 2.0 (apiVersion)
2002-04-08 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c: Make it compile with ZTS.
* ext/pgsql/README: Update README
* ext/pgsql/tests/10pg_convert.phpt
ext/pgsql/tests/11pg_metadata.phpt
ext/pgsql/tests/12pg_insert.phpt
ext/pgsql/tests/13pg_select.phpt
ext/pgsql/tests/14pg_update.phpt
ext/pgsql/tests/15pg_delete.phpt
ext/pgsql/tests/16pg_result_status.phpt
ext/pgsql/tests/informational.inc
ext/pgsql/tests/pg_convert.inc
ext/pgsql/tests/pg_delete.inc
ext/pgsql/tests/pg_insert.inc
ext/pgsql/tests/pg_metadata.inc
ext/pgsql/tests/pg_result_status.inc
ext/pgsql/tests/pg_select.inc
ext/pgsql/tests/pg_update.inc
ext/pgsql/config.m4
ext/pgsql/pgsql.c
ext/pgsql/php_pgsql.h:
Added pg_metadate(), pg_convert(), pg_insert(), pg_select(), pg_update()
and pg_delete().
2002-04-08 Jani Taskinen <sniper@iki.fi>
* php.ini-dist
php.ini-recommended: MFH
2002-04-08 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c: Return proper result.
2002-04-08 Jani Taskinen <sniper@iki.fi>
* ext/ming/php_ming.h
ext/ming/ming.c: Some ws fixes and general cleanup.
2002-04-08 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c:
Added 2nd parameter for pg_result_status(). PGSQL_STATUS_LONG is for LONG result status.
PGSQL_STATUS_STRING is for SQL command name successfully executed for this result.
2002-04-07 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c: correcting some more whitespace
2002-04-07 Jani Taskinen <sniper@iki.fi>
* ext/ming/ming.c: Fixed compile failure with ZTS build.
2002-04-07 Stig Bakken <ssb@fast.no>
* pear/PEAR/Installer.php:
* append "?uncompress=yes" to the package download url if zlib extension
is not loaded
* pear/package-db.xml: * package xml file for DB
2002-04-07 Andi Gutmans <andi@zend.com>
* ext/mysql/libmysql/strto.c
ext/mysql/libmysql/strtoll.c
ext/mysql/libmysql/strtoull.c:
- Fix build with Visual Studio .NET. The MySQL team said they'll commit
- their fix a long time ago and never did. One day they'll update the
- whole MySQL client library.
2002-04-07 Tomas V.V.Cox <cox@idecnet.com>
* pear/PEAR/Common.php: Added PEAR_Common::getUserRoles() and a suggestion
2002-04-07 Hartmut Holzgraefe <hartmut@six.de>
* ext/standard/levenshtein.c
ext/standard/tests/general_functions/003.phpt:
fix and regression test for Bug #16473
2002-04-07 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c
ext/exif/tests/003.phpt
ext/exif/tests/test3.jpg:
-found userland solution to fix UNICODE comments (see tests/003.phpt)
2002-04-07 Stig Bakken <ssb@fast.no>
* pear/PEAR/Command/Package.php
pear/PEAR/Frontend/CLI.php
pear/PEAR/Packager.php: * added "cvstag" command
2002-04-07 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c: -fix warnings
-fix layout
* ext/mbstring/mbfilter.c
ext/mbstring/mbregex.c
ext/mbstring/mbstring.c: -fix warnings
2002-04-07 Jani Taskinen <sniper@iki.fi>
* php.ini-recommended
php.ini-dist: Removed relics from PHP3.
2002-04-07 Stig Bakken <ssb@fast.no>
* pear/PEAR/Packager.php:
* give PEAR_Packager::package an option to disable compression and make
plain .tar files
* pear/PEAR/Command/Install.php: * remove empty fold
* pear/scripts/pear.in: * use the UI's displayFatalError method
* pear/PEAR/Frontend/CLI.php:
* added displayError and displayFatalError methods
* pear/PEAR/Command.php: * initialize _PEAR_Command_uiobject
2002-04-07 Sterling Hughes <sterling@bumblebury.com>
* configure.in:
apply jan's configure check for apache2 and freebsd (relating to the use
of tsrm-pth).
2002-04-07 Stig Bakken <ssb@fast.no>
* pear/PEAR/Common.php: * leave error reporting to the validator
* pear/PEAR/Packager.php: * more clear cvs tag hint
2002-04-07 Tomas V.V.Cox <cox@idecnet.com>
* pear/PEAR/Command/Install.php: Just some help cleanup
2002-04-07 Stig Bakken <ssb@fast.no>
* pear/PEAR/Command/Package.php: * typo
* pear/PEAR/Command/Package.php:
* rename package-verify command to package-validate
2002-04-07 Wez Furlong <wez.php@thebrainroom.com>
* ext/standard/string.c: fix for #16469
2002-04-07 Stig Bakken <ssb@fast.no>
* pear/PEAR/Command/Install.php
pear/PEAR/Command/Package.php
pear/PEAR/Packager.php
pear/PEAR/Installer.php
pear/PEAR/Common.php: * support for .tar files in PEAR_Installer
* new command: package-verify
* "package" command now sanity-checks the package information before
making the tarball
* -Z option to the install/update commands for downloading non-compressed
packages
2002-04-07 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* php.ini-dist
php.ini-recommended:
Added pgsql.ignore_notice and pgsql.log_notice ini entry.
* ext/pgsql/pgsql.c: Nuke waring with ZTS build
* ext/msession/msession.c: Fixed ZTS build
2002-04-07 Jani Taskinen <sniper@iki.fi>
* NEWS: Fixed bad entries.
2002-04-06 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* main/php_globals.h
php.ini-dist
php.ini-recommended
main/main.c:
new feature ignoring repeated error messages (defaults to old behaviour)
2002-04-06 Derick Rethans <d.rethans@jdimedia.nl>
* ext/zip/zip.c: - MFH zip_entry_read_bug
2002-04-06 Wez Furlong <wez.php@thebrainroom.com>
* ext/zlib/zlib_fopen_wrapper.c
main/streams.c: Added BC support for old style zlib: wrapper.
Added notice when a requested wrapper is not found.
2002-04-06 Derick Rethans <d.rethans@jdimedia.nl>
* ext/zip/zip.c: - Fix zzip_entry_read
2002-04-06 Richard Heyes <richard@phpguru.org>
* pear/PEAR.php: * Added registerShutdownFunc() method
2002-04-06 Wez Furlong <wez.php@thebrainroom.com>
* NEWS:
Inform the masses about where to get a 4.2 compatible mailparse package
2002-04-06 Sebastian Bergmann <sb@sebastian-bergmann.de>
* sapi/apache/php4apache.dsp
sapi/apache2filter/php4apache2.dsp
sapi/fastcgi/fastcgi.dsp: MFH (.dsp fixes)
2002-04-06 Tomas V.V.Cox <cox@idecnet.com>
* pear/DB/tests/oci8/05sequences.phpt: Output adapted to the new tests
* pear/DB/oci8.php:
Rethrow errors in nextID() to be handled by the global error handler
* pear/DB/tests/sequences.inc:
Backends with real sequences may don't like DELETE FROM sequence
2002-04-06 Sebastian Bergmann <sb@sebastian-bergmann.de>
* sapi/fastcgi/fastcgi.dsp
sapi/apache2filter/php4apache2.dsp
sapi/apache/php4apache.dsp: Fix output directory.
2002-04-06 Tomas V.V.Cox <cox@idecnet.com>
* pear/DB/tests/driver/05sequences.phpt
pear/DB/tests/mysql/05sequences.phpt: Output adapted to the new tests
* pear/DB/tests/sequences.inc: More hard tests
* pear/DB/mysql.php: Work on nextID():
- Use push/popErroHandling instead of "the hack"
- Optimize the speed
- Rethrow errors to be catched by the error handler when set
- Move the backwards compatibilty sequence system to its own function
- Fix a bug when the sequence table is empty
* pear/DB/common.php:
Fix fail when a error object is "rethrowed" and a class error handler
is set
* pear/PEAR.php:
Fix bug in pushErrorHandling() (fail under very specific circumstances)
2002-04-06 Sascha Schumann <sascha@schumann.cx>
* acinclude.m4
pear/pear.m4
configure.in: Improve the life of external extension maintainers by
not plaguing them with "./" in absolute paths.
Requested by: Andrei, Wez
2002-04-06 Jani Taskinen <sniper@iki.fi>
* NEWS: minor fix..
2002-04-06 Sebastian Bergmann <sb@sebastian-bergmann.de>
* sapi/apache2filter/php4apache2.dsp: Fix Debug_TS build.
2002-04-06 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/tests/notice.inc
ext/pgsql/php_pgsql.h: Chages for new pg_last_notice()
* ext/pgsql/pgsql.c:
Make pg_last_notice() work as it is designed. It returns last notice message for connection resource specified.
Added "pgsql.ignore_notice" ini entry.
Added "pgsql.log_notice" ini entry.
2002-04-06 Andrei Zmievski <andrei@php.net>
* ext/xmlrpc/config.m4
ext/xmlrpc/xmlrpc-epi-php.c:
- Fixed a leak in xml_decode().
- Fixed it so it's possible to compile as a shared extension.
2002-04-06 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/mbstring/mbstring.c:
Use get_active_function_name() for error messages.
2002-04-06 Stig Bakken <ssb@fast.no>
* pear/PEAR/Common.php: * forgot htmlspecialchars in release notes
2002-04-05 Sterling Hughes <sterling@bumblebury.com>
* sapi/apache2filter/sapi_apache2.c: MFH changes per doug's request
2002-04-05 Joseph Tate <jtate@mi-corporation.com>
* ext/domxml/tests/001.phpt
ext/domxml/tests/domxml_test.inc: Added test suite for domxml extension.
* ext/domxml/php_domxml.c: MFH added unlink_node alias
* ext/domxml/php_domxml.c: Added unlink_node alias for consistency
2002-04-05 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/tests/003.phpt
ext/exif/tests/test3.jpg: -testing unicode user-comment
* ext/exif/exif.c: -correct length for ASCII
-global encoding variables
* ext/mbstring/tests/016.inc
ext/mbstring/tests/016.phpt:
include comma separated encoding lists in test
* ext/mbstring/mbstring.c: no space for comma separated encoding lists
* ext/exif/exif.c: aligning #
2002-04-05 Christian Stocker <chregu@phant.ch>
* ext/domxml/php_domxml.c:
oops. that was an error not detected in shared library mode ...
* ext/domxml/php_domxml.c
ext/domxml/php_domxml.h:
added domxml_parser(), domxml_parser_add_chunk() and domxml_parser_end().
It provides access to the PushParser interface of libxml2.
2002-04-05 Zeev Suraski <zeev@zend.com>
* ext/bz2/php_bz2.h: Fix build
2002-04-05 Tomas V.V.Cox <cox@idecnet.com>
* pear/DB/mysql.php:
- Fix a problem in nextID() when the sequence table is empty
- Use push/popErrorHanlding() instead of the "hack"
2002-04-05 Stig Bakken <ssb@fast.no>
* ext/zlib/php_zlib.h
ext/zlib/zlib.c: Add zlib.output_compression_level option
2002-04-05 Jani Taskinen <sniper@iki.fi>
* NEWS: MFH the fixed entries
* NEWS: Fixed some entries..
2002-04-05 Zeev Suraski <zeev@zend.com>
* ext/zlib/zlib.dsp
ext/zlib/zlib.c
ext/standard/file.c
ext/standard/file.h
ext/bz2/bz2.c
ext/bz2/bz2.dsp
ext/bz2/php_bz2.h: Fix gzip/bz2 builds for Windows
2002-04-05 Wez Furlong <wez.php@thebrainroom.com>
* NEWS: let people know about mailparse being pickled
* pear/Makefile.in:
MFH: add mbstring headers to those for pear/pecl extensions
2002-04-05 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/tests/09notice.phpt: Add error message from _notice_handler()
* NEWS: FMB. Fixed bug info.
* NEWS: Forgot mention fixed bug that is reported by user.
* ext/pgsql/pgsql.c: MFH.
Fixed pg_last_notice() double free.
* ext/pgsql/pgsql.c: Fix pg_last_notice() double free.
* ext/pgsql/tests/09notice.phpt
ext/pgsql/tests/notice.inc: Add notice message test
2002-04-05 Sascha Schumann <sascha@schumann.cx>
* ext/ircg/README.txt: update regarding version numbers
2002-04-05 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/tests/escape.inc: Update message
* ext/pgsql/tests/createdb.inc
ext/pgsql/tests/large_object.inc
ext/pgsql/tests/config.inc: Add bytea field to test table.
Use table name variable.
* ext/pgsql/tests/08escape.phpt
ext/pgsql/tests/escape.inc
ext/pgsql/tests/php.gif: Add real pg_escape_bytea() test.
* ext/mbstring/mbstring.c
ext/mbstring/mbstring.h:
Fixed way of exporing functions. (Need PHPAPI for Win)
Fixed if statement format. ("if () stmt;" should be "if () \n {stmt;}")
Fixed error message so that appropriate function names are
displayed.
2002-04-05 Tomas V.V.Cox <cox@idecnet.com>
* pear/DB/mysql.php: ws
2002-04-05 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c:
Unicode is now based on php_mb_convert_encoding if available
* ext/mbstring/mbstring.c
ext/mbstring/mbstring.h: new function php_mb_convert_encoding
2002-04-05 Wez Furlong <wez.php@thebrainroom.com>
* pear/Makefile.frag:
add mbstring headers to those for pear/pecl extensions
2002-04-04 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c: removed calls to wctomb, wcstombs
2002-04-04 Sterling Hughes <sterling@bumblebury.com>
* win32/grp.h
win32/pwd.c
win32/pwd.h
win32/syslog.h: mfh
* win32/grp.h
win32/pwd.c
win32/pwd.h
win32/syslog.h: i of course am the brilliant author of these files
* win32/pwd.c
win32/pwd.h: replace with non-gpl implementation
2002-04-04 Daniela Mariaschi <mariaschi@libero.it>
* ext/interbase/interbase.c:
Fixed sigfault in ibase_close (bug #15419-#15992)
2002-04-04 Sterling Hughes <sterling@bumblebury.com>
* win32/syslog.h: non gpl implementation
* win32/grp.h: replace grp.h with a new implementation (non-GPL)
2002-04-04 Sander Roobol <phy@wanadoo.nl>
* ext/tokenizer/Makefile.frag
ext/tokenizer/config.m4:
Fixed build with multiple concurrent jobs (make -j)
* README.UNIX-BUILD-SYSTEM: Fixed typo
2002-04-04 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c
ext/pgsql/tests/08escape.phpt
ext/pgsql/tests/escape.inc: MFH
* ext/pgsql/tests/08escape.phpt
ext/pgsql/tests/escape.inc: Fix tests
2002-04-04 Wez Furlong <wez.php@thebrainroom.com>
* ext/bz2/php_bz2.h
ext/bz2/bz2.c: Fix #16428 problems.
Renamed the bz2 wrapper to bzip2://
2002-04-04 Jani Taskinen <sniper@iki.fi>
* ext/xml/tests/007.phpt: MFH
* ext/xml/tests/007.phpt: Revert the bogus patch.
2002-04-04 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/tests/08escape.phpt
ext/pgsql/tests/escape.inc: Added pg_escape_*() test
2002-04-04 Jani Taskinen <sniper@iki.fi>
* ext/bz2/tests/with_files.phpt: MFH
* ext/bz2/tests/with_files.phpt: added test case for file handling in bz2
2002-04-04 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c: Clean up pg_escape_*()
2002-04-04 Jani Taskinen <sniper@iki.fi>
* ext/mbstring/tests/.cvsignore: missing .cvsignore
2002-04-04 Christian Stocker <chregu@phant.ch>
* ext/domxml/php_domxml.c:
- fixed a lot of memory leaks (by Lukas Schroeder)
- get_attribute() returns False instead of empty string, if attribute not found
2002-04-04 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c: Fixed crash with pg_escape_*()
2002-04-04 Sascha Schumann <sascha@schumann.cx>
* acinclude.m4: Add deferred libs to DLIBS instead of LIBS.
Noticed by: Jani Taskinen <sniper@iki.fi>
2002-04-04 Daniela Mariaschi <mariaschi@libero.it>
* ext/interbase/interbase.c:
Fixed sigfault in ibase_close(). Bug #15419 #15992
2002-04-04 Jani Taskinen <sniper@iki.fi>
* NEWS: minor fixes
2002-04-04 Marko Karppinen <karppinen@pobox.com>
* NEWS: Added news on the Mac OS X changes and removed a duplicate line
2002-04-04 Jani Taskinen <sniper@iki.fi>
* ext/standard/dl.c
configure.in:
- OS X support for dynamically loaded extensions. (patch by Marko)
2002-04-04 Sterling Hughes <sterling@bumblebury.com>
* ext/curl/curl.c: MFH
2002-04-03 Sterling Hughes <sterling@bumblebury.com>
* ext/curl/curl.c: fix bug #15150, thanks to daniel at haxx.se for the fix
2002-04-03 Jani Taskinen <sniper@iki.fi>
* ext/openssl/tests/001.phpt: Fix the test..somehow got corrupted?
* ext/mcal/config.m4: Partial MFH
* .cvsignore: - Added the autom4te.cache to be cleaned too with cvsclean
2002-04-03 Derick Rethans <d.rethans@jdimedia.nl>
* configure.in
main/php_version.h: - Swap back version numbers for development
* ext/exif/exif.c: - Fix build (Patch by Marcus Boerger)
* ext/exif/exif.c: - Fix as suggested my Marcus
* main/php_version.h
configure.in: - Fix version number
2002-04-03 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* tests/func/007.phpt: Added ini_set()/ini_get()/ini_restore() test
2002-04-03 Wez Furlong <wez.php@thebrainroom.com>
* ext/standard/exec.c: fix TS build
* ext/standard/exec.c
ext/standard/exec.h
ext/standard/basic_functions.c:
Tidy up win32 implementation of proc_open.
Respect safe_mode_exec_dir.
Implement proc_close and return process return code under win32.
* ext/mailparse/tests/006.phpt: add test for mailparse_extract_part_file
2002-04-03 Stig Bakken <ssb@fast.no>
* pear/DB/mysql.php: * work around a php segfault
2002-04-02 Wez Furlong <wez.php@thebrainroom.com>
* main/memory_streams.c
main/streams.c
ext/standard/exec.c
ext/standard/exec.h
ext/standard/basic_functions.c
ext/mailparse/php_mailparse.h
ext/mailparse/try.php
ext/mailparse/mailparse.c: main/streams.c
* sapi/cgi/cgi_main.c: fix quoting
2002-04-02 Derick Rethans <d.rethans@jdimedia.nl>
* ext/tokenizer/config.m4: - Fix layout
2002-04-02 Stig Bakken <ssb@fast.no>
* pear/PEAR/Command/Install.php
pear/PEAR/Installer.php:
* Added "-s" (soft update) option to install/upgrade. Will make installs
fail silently.
* pear/PEAR/Common.php: * add Frontend support to PEAR_Common::log()
* pear/PEAR/Command/Registry.php:
* Implemented "shell-test" command for writing shell scripts that check
whether a package is installed. Example of use:
if ! pear shell-test Net_Socket; then
echo "You don't have the Net_Socket package installed!" >&2
exit 1
fi
* pear/PEAR/Registry.php: * just renaming some comments
* pear/PEAR/Frontend/CLI.php:
* add type property telling what type of frontend this class implements
* pear/scripts/pear.in:
* remove "exit" at the end, it causes a "false" exit code always
* pear/Makefile.frag:
* comment out the php files that are not necessary for the installer
2002-04-02 Kirill Maximov <kir@actimind.com>
* ext/standard/quot_print.c:
2002-04-02 Derick Rethans <d.rethans@jdimedia.nl>
* ext/standard/quot_print.c: - Whitespace
2002-04-02 James Cox <james@wherewithal.com>
* sapi/cgi/cgi_main.c: just did...
* sapi/cgi/cgi_main.c:
updated the alert sent to the browser. removed the verbosity, and linked to more info.
2002-04-02 Jani Taskinen <sniper@iki.fi>
* ext/imap/config.m4: Be a bit more verbose about what was not found.
2002-04-01 Jani Taskinen <sniper@iki.fi>
* main/rfc1867.c: MFH
* configure.in: Fix for bug: #5499 (no need to MFH this one)
* main/rfc1867.c: Prevent crashing with some bogus POSTs.
2002-04-01 Richard Heyes <richard@phpguru.org>
* pear/Mail/RFC822.php: * Fixed bug with new limit option
* pear/Mail/RFC822.php: * Added optional limit to prevent runaway parsing
* Changed recursive nature of _splitAddresses as it was barfing on
large amounts of addresses (1000+)
* Added approximateCount() function which will give an approximate count
of how many addresses are in a string
2002-04-01 Kirill Maximov <kir@actimind.com>
* ext/standard/quot_print.c
ext/standard/tests/general_functions/002.phpt:
(PHP quoted_printable_decode) Fixed CR/LF processing for Windows/OS2
2002-04-01 Tomas V.V.Cox <cox@idecnet.com>
* pear/PEAR/Command/Install.php
pear/PEAR/Packager.php: typo
* pear/PEAR/Command/Config.php:
Added layer checks and reorganize a little the code
* pear/PEAR/Config.php:
- Define the PEAR constants when they are not set (be nice
with the "--wihout-pear" people who finally regrets)
- Added method getLayers()
* pear/PEAR/Command/Config.php:
- Make "config-set" actually store the values
- Help and error messages enhance
* pear/PEAR/Command/Install.php:
- Added "nodeps" option to install/upgrade/uninstall
(pear install -n package.tgz)
- Finish to document the install commands
2002-04-01 Kirill Maximov <kir@actimind.com>
* ext/standard/quot_print.c
ext/standard/tests/general_functions/002.phpt
ext/standard/tests/general_functions/006.phpt:
(PHP quoted_printable_decode) Fixed CR/LF processing for Windows/OS2
2002-04-01 Tomas V.V.Cox <cox@idecnet.com>
* pear/scripts/pear.in:
- Set some php.ini values needed by the installer
- Removed unused present_array() and heading() functions
2002-04-01 Stig Bakken <ssb@fast.no>
* pear/Net/Socket.php: * moved to /pear
2002-04-01 Tomas V.V.Cox <cox@idecnet.com>
* pear/PEAR/Registry.php:
People reported problems with flock(LOCK_SH) and fopen('w')
* pear/PEAR/Command/Auth.php
pear/PEAR/Command/Config.php
pear/PEAR/Command/Registry.php: added help
* pear/scripts/pear.in: Adaptation for the new help system
* pear/PEAR/Command/Common.php
pear/PEAR/Command/Install.php
pear/PEAR/Command/Package.php
pear/PEAR/Command.php: Go with the help system
2002-04-01 Stig Bakken <ssb@fast.no>
* pear/package.dtd: * typo
2002-04-01 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/tests/001.phpt
ext/exif/tests/002.phpt: MFH finding test files
2002-04-01 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/config.m4: MFH.
Forgot to commit this when I commit fix build with PostgreSQL 6.5.x
2002-04-01 Derick Rethans <d.rethans@jdimedia.nl>
* ext/standard/math.c: - MFH for fix for bug #14966
* ext/standard/math.c: - Fix for bug #14966
2002-04-01 Markus Fischer <mfischer@guru.josefine.at>
* ext/exif/exif.c: - Nuke *FETCH macros.
2002-04-01 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c:
2002-04-01 Mark L. Woodward <mlwmohawk@mohawksoft.com>
* ext/msession/msession.c: PHP_SESSION_API not always defined.
2002-03-31 Markus Fischer <mfischer@guru.josefine.at>
* ext/exif/exif.c: - Fix compilation.
2002-03-31 Tomas V.V.Cox <cox@idecnet.com>
* pear/PEAR/Common.php: E_ALL fix
* pear/PEAR/Packager.php: if (!function_exists('md5_file')) { ...
2002-03-31 Jani Taskinen <sniper@iki.fi>
* ext/java/.cvsignore
ext/java/Makefile.frag
ext/java/Makefile.in
ext/java/config.m4: Fixed the build issues reported by Stas.
* ext/pspell/tests/.cvsignore: missing .cvsignore
2002-03-31 Stanislav Malyshev <stas@zend.com>
* configure.in: Fix ZE2 builds
2002-03-31 Mark L. Woodward <mlwmohawk@mohawksoft.com>
* ext/msession/msession.c:
Fixed conditional compilation based on macros changed in
ext/session/php_session.h which changed.
2002-03-31 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/mbstring/mbregex.c
ext/mbstring/unicode_table.h
ext/mbstring/unicode_table_ja.h
ext/mbstring/cp932_table.h
ext/mbstring/mbfilter.c
ext/mbstring/mbfilter_ja.c:
moved static constant definitions for separeted files to fix compilation problem in Tru64.
2002-03-31 Stig Bakken <ssb@fast.no>
* pear/Schedule/At.php: * updated error handling
* pear/PEAR/Common.php: * E_ALL fix
* pear/PEAR/Command/Auth.php: * avoid object copying
* pear/PEAR/Remote.php: * oops, config object was copied
* call parameters were not passed on to xmlrpc_encode_request()
2002-03-31 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c:
Print multibyte and SSL support is compiled in libpq or not.
* ext/pgsql/config.m4
ext/pgsql/pgsql.c
ext/pgsql/php_pgsql.h: Print PostgreSQL version number in phpinfo()
2002-03-31 Stig Bakken <ssb@fast.no>
* pear/Makefile.frag: * install PEAR/Command/Remote.php
2002-03-31 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/mbstring/mbfilter.c
ext/mbstring/mbfilter_ja.c:
revert Sascha's patch to fix compile error in Tru64.
* ext/mbstring/mbstring.h: fixed crash bug in Tru64.
2002-03-30 Stig Bakken <ssb@fast.no>
* configure.in: * added sys/utsname.h test
2002-03-30 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c: MFH. 6.5.3 libpq build fix.
2002-03-30 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/tests/001.phpt: - corrected test-image
* ext/exif/tests/test2.jpg: MFH - corrected test-image
* ext/exif/exif.c: -memory leaks
2002-03-30 Rasmus Lerdorf <rasmus@php.net>
* README.EXT_SKEL:
Looks like mawk can't handle create_stubs - if someone is keen it would be
nice to fix that, but for now just make a note that gawk may be needed.
2002-03-30 Sascha Schumann <sascha@schumann.cx>
* ext/session/php_session.h
ext/session/session.c:
- Proper use of underscores (s/createsid/create_sid/)
- Bump the API date and remove extra cpp macro
- Pass TSRMLS appropiately to the create_sid function
2002-03-30 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c: -compiler warnings
2002-03-30 Jani Taskinen <sniper@iki.fi>
* ext/pspell/tests/.cvsignore: New file.
* ext/pspell/tests/.cvsignore: another missing .cvsignore
2002-03-30 Marko Karppinen <karppinen@pobox.com>
* sapi/apache/config.m4
Makefile.global
acinclude.m4:
Enable --with-apxs build on Mac OS X. We build an MH_BUNDLE instead of
an MH_DYLIB. As all PPC code is relocatable, we don't use the libtool
based shared build but go a static route. Goodbye libtool!
2002-03-30 Jani Taskinen <sniper@iki.fi>
* ext/exif/tests/.cvsignore: missing .cvsignore
* ext/xmlrpc/libxmlrpc/.cvsignore: missing entry (still needed here..)
* ext/ming/config.m4: MFH
* main/rfc1867.c:
Fixed a bug with file_uploads=off -> normal post variables not set.
2002-03-30 Markus Fischer <mfischer@guru.josefine.at>
* ext/ftp/php_ftp.c: - MFH fix for #16348.
* ext/ftp/php_ftp.c: - Fix #16348.
2002-03-29 Marko Karppinen <karppinen@pobox.com>
* .cvsignore:
Mac's Find By Content indexing sprinkles these annoying files around
* sapi/apache/config.m4: Prepare for MH_BUNDLE build on Mac OS X / Darwin
2002-03-29 Sander Roobol <phy@wanadoo.nl>
* tests/lang/002.phpt
tests/lang/003.phpt
tests/lang/004.phpt
tests/lang/005.phpt
tests/lang/006.phpt
tests/lang/007.phpt
tests/lang/008.phpt
tests/lang/009.phpt
tests/lang/010.phpt
tests/lang/012.phpt
tests/lang/013.phpt
tests/lang/014.phpt
tests/lang/015.phpt
tests/lang/016.inc
tests/lang/016.phpt
tests/lang/017.phpt
tests/lang/022.phpt
tests/lang/025.phpt
tests/lang/029.phpt
tests/lang/030.phpt
tests/lang/031.phpt
tests/lang/033.phpt:
Updating tests: remove alternative syntax in tests, added a special
alternative-syntax testfile.
* php.ini-dist
php.ini-recommended: Added crack extension to php.ini-*
2002-03-29 Mark L. Woodward <mlwmohawk@mohawksoft.com>
* ext/session/session.c
ext/session/php_session.h:
Added field to ps_module structure to hold function pointer for the creation
of the session ID string. Default PS_MOD() macro sets this to be the default
creation routine. PS_MOD_SID() macro sets this to a handlers session ID
creation routine.
2002-03-29 Doug MacEachern <dougm@covalent.net>
* sapi/apache2filter/sapi_apache2.c:
adjust to recent apr bucket api changes
2002-03-29 Jani Taskinen <sniper@iki.fi>
* ext/bz2/bz2.c: MFH fix for some bug
* ext/standard/tests/aggregation/aggregate.lib
ext/standard/tests/aggregation/aggregate.lib.php
ext/standard/tests/aggregation/aggregate.phpt
ext/standard/tests/aggregation/aggregate_methods.phpt
ext/standard/tests/aggregation/aggregate_methods_by_list.phpt
ext/standard/tests/aggregation/aggregate_methods_by_regexp.phpt
ext/standard/tests/aggregation/aggregate_properties.phpt
ext/standard/tests/aggregation/aggregate_properties_by_list.phpt
ext/standard/tests/aggregation/aggregate_properties_by_regexp.phpt
ext/standard/tests/aggregation/aggregation_info.phpt
ext/standard/tests/aggregation/deaggregate.phpt:
- MFH fixes for these tests.
* NEWS: - Added missing entry for mysql_info() and fixed some entries
* ext/mysql/php_mysql.c: WS fix
2002-03-29 Jan Lehnardt <jan@dasmoped.net>
* ext/mysql/php_mysql.c
ext/mysql/php_mysql.h: - add mysql_info function
2002-03-29 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/config.m4
ext/pgsql/pgsql.c: Fix build failure with PostgreSQL 6.5.x
2002-03-29 Stig Bakken <ssb@fast.no>
* ext/standard/info.c:
(PHP php_uname) display runtime uname rather than compile-time uname, added
an optional parameter to get single fields (like uname(1))
2002-03-29 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* tests/lang/031.phpt: Trying to be more clear.
2002-03-29 Stig Bakken <ssb@fast.no>
* pear/PEAR/Command/Remote.php:
* implemented "pear list-upgrades", which will show you what releases
are available on the server (shows newer releases with the same state)
* pear/PEAR/Command/Package.php: * always require PEAR/Common.php
* pear/PEAR/Config.php: * allow "any" as a preferred_state value
* pear/PEAR/Remote.php: * pass on xmlrpc faults as pear errors
2002-03-29 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* tests/lang/032.phpt:
Added class method registration test. It does not test
for multiple method definitions due to test script limitation.
* tests/lang/031.phpt: Change title to reasonable one.
2002-03-29 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/tests/001.phpt
ext/exif/tests/test2.jpg: -fix test image
* ext/exif/exif.c: -fix possible problem on low memory
-fix problem on failure
2002-03-29 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* main/user_streams.c: Fix ZE2 build.
2002-03-29 Stig Bakken <ssb@fast.no>
* pear/PEAR/Common.php: * fix tempfile cleanup
2002-03-28 Stig Bakken <ssb@fast.no>
* pear/PEAR/Command/Package.php: * per-command fold marks
* pear/PEAR/Packager.php: * regenerate package.xml with file checksums
* pear/package.dtd: * default dep rel attribute to 'has'
* pear/PEAR/Common.php: * accept optional tmpdir arg in mkTempDir
* handle changelog releases without filelist
2002-03-28 Andrei Zmievski <andrei@php.net>
* NEWS: Cleanup.
2002-03-28 Joseph Tate <jtate@mi-corporation.com>
* win32/php4ts.dsp: Fixed build of php4ts Release_TSDbg under Win32
* ext/crack/crack.dsp
ext/crack/CREDITS:
-Crack extension now available for Win32 platforms. You will need to
acquire the cracklib libraries from
http://www.jtatesoftware.com/cracklib/.
2002-03-28 Stig Bakken <ssb@fast.no>
* pear/PEAR/Config.php: * added preferred_state config keyword
* pear/PEAR/Common.php: * added phpdoc
* now ready to support multiple versions of the package format
* don't parse dependencies in changelog
* fix libfile parsing
* default maintainer roles to 'lead'
* added infoFromString() method
* added xmlFromInfo() method to regenerate package.xml files
2002-03-28 Yavor Shahpasov <yavo@itenasolutions.com>
* pear/HTML/Select.php:
Avoid warning message in toHtml() method when no default element specified
2002-03-28 Stig Bakken <ssb@fast.no>
* pear/package.dtd: * added "platform" and "md5sum" attributes to <file>
2002-03-28 Derick Rethans <d.rethans@jdimedia.nl>
* configure.in: - Back out broken patch
* configure.in: - Backout Makefile patch, it caused problems
* configure.in:
- MFB for fix build for BSD: BSD_MAKEFILE and resolver functions. (Patch by
Melvyn Sopacua <msopacua@idg.nl>)
* configure.in:
- Fix build for BSD: BSD_MAKEFILE and resolver functions. (Patch by Melvyn
Sopacua <msopacua@idg.nl>)
* ext/standard/string.c: - MFH for bug 16314
* ext/sysvsem/sysvsem.c: - MFB
* ext/sysvsem/sysvsem.c: - Fix build on BSDI
2002-03-28 Wez Furlong <wez.php@thebrainroom.com>
* ext/standard/tests/file/002.phpt: add test for file_get_contents
* ext/openssl/tests/001.phpt
ext/openssl/openssl.c: Add subject hash to parsed x509 data.
Make the test use file_get_contents().
* main/memory_streams.c
main/network.c
main/php_streams.h
main/streams.c
main/user_streams.c
ext/standard/file.c
ext/standard/ftp_fopen_wrapper.c
ext/standard/http_fopen_wrapper.c
ext/standard/php_fopen_wrapper.c
ext/zlib/zlib_fopen_wrapper.c: Phase 3 of OO wrapper cleanup
* ext/mailparse/tests/004.phpt
ext/mailparse/tests/005.phpt
ext/mailparse/mailparse.c:
make quoted-printable encoding safe for use with digital signatures. Added some tests
2002-03-27 Jani Taskinen <sniper@iki.fi>
* ext/gmp/gmp.c: MFH: fixed bug: #16237
* ext/gmp/gmp.c: Fixed bug: #16237
* sapi/cli/php_cli.c: WS fix
2002-03-27 Joseph Tate <jtate@mi-corporation.com>
* ext/domxml/php_domxml.c: Fixing compile warning under Win32
2002-03-27 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* sapi/cli/php_cli.c: recorrect las checkin
2002-03-27 Derick Rethans <d.rethans@jdimedia.nl>
* ext/mailparse/rfc2045.c: - MFH for multiple To: lines
2002-03-27 Hartmut Holzgraefe <hartmut@six.de>
* ext/standard/string.c: fix for Bug #16314
2002-03-27 Jani Taskinen <sniper@iki.fi>
* .cvsignore: autoconf 2.53 uses this directory for some temporary stuff
* ext/mcve/mcve_simple_test.php
ext/mcve/mcve_test1.php
ext/mcve/mcve_test2.php
ext/mcve/tests/mcve_simple_test.php
ext/mcve/tests/mcve_test1.php
ext/mcve/tests/mcve_test2.php: Moved these example scripts out of tests.
* ext/ming/config.m4: - Fixed bug: #16203
2002-03-27 Wez Furlong <wez.php@thebrainroom.com>
* ext/mailparse/tests/003.phpt: add test case for multiple To: lines
* ext/mailparse/rfc2045.c: allow headers hash to handle multiple To: lines
2002-03-27 Hartmut Holzgraefe <hartmut@six.de>
* ext/mime_magic/config.m4: not enabled by default
* ext/mime_magic/mime_magic.c
ext/mime_magic/php_mime_magic.h:
moved 'static' prototypes to prevent warnings
* ext/mime_magic/mime_magic.c
ext/mime_magic/php_mime_magic.h:
preparing for Content-Encoding detection
2002-03-27 Sascha Schumann <sascha@schumann.cx>
* acinclude.m4: Factorize a few library/libpath-related functions
* ext/mcal/config.m4:
Defer linking against libmcal until we have built the extension,
so that extension-supplied symbols are available.
Also factorize the header file checks.
Reported by: Brandon Knitter
URL: http://news.php.net/article.php?group=php.dev&article=81833
* ext/mailparse/libs.mk: Remove generated file
2002-03-27 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c: MFH error message consistency changes
2002-03-26 Jon Parise <jon@csh.rit.edu>
* ext/mime_magic/.cvsignore: Ignore generated files.
2002-03-26 Sean Bright <elixer@erols.com>
* php.ini-dist: Fix typo.
2002-03-26 Hartmut Holzgraefe <hartmut@six.de>
* ext/mime_magic/mime_magic.c
ext/mime_magic/php_mime_magic.h: build conflicts fixed
2002-03-26 Sander Roobol <phy@wanadoo.nl>
* ext/standard/tests/array/002.phpt
ext/standard/tests/array/003.phpt
ext/standard/tests/array/004.phpt
ext/standard/tests/array/array_data.txt
ext/standard/tests/array/data.inc
ext/standard/tests/array/001.phpt: MFH
* ext/standard/tests/array/001.phpt
ext/standard/tests/array/002.phpt
ext/standard/tests/array/003.phpt
ext/standard/tests/array/004.phpt
ext/standard/tests/array/array_data.txt
ext/standard/tests/array/data.inc:
Fixed the array-tests. Broke the test up into various smaller tests.
Reduced the test data because it was unmanageable.
2002-03-26 Tomas V.V.Cox <cox@idecnet.com>
* pear/PEAR/Command/Config.php
pear/PEAR/Frontend/CLI.php: E_ALL fixes
* pear/PEAR/Registry.php:
_lock() now returns PEAR Error or true for consistency
2002-03-26 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* sapi/cli/php_cli.c: allow other modes to work with -- correct
* sapi/cli/php_cli.c: fix behaviour on --
2002-03-26 Sascha Schumann <sascha@schumann.cx>
* ext/standard/config.m4:
outcomment default linking against pam due to no feedback
regarding its purpose
* ext/standard/url_scanner_ex.c
ext/standard/url_scanner_ex.re:
If an argument (<tag val=argument..) was not quoted, leave it that way.
2002-03-26 Derick Rethans <d.rethans@jdimedia.nl>
* ext/standard/string.c: - MFH for bug #11244
2002-03-26 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c: Remove warnings
2002-03-26 Derick Rethans <d.rethans@jdimedia.nl>
* ext/openssl/openssl.c: - No asserts in the branch
2002-03-26 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c:
Changed error messages to be consistent with other error messages
2002-03-26 Derick Rethans <d.rethans@jdimedia.nl>
* ext/dbx/dbx.c: - MFB
* ext/dbx/dbx.c: - Fix comments
2002-03-26 Markus Fischer <mfischer@guru.josefine.at>
* ext/standard/string.c:
- Fix bug 11244 (patch by "Tal Peer" <hazgul99@hotmail.com>).
2002-03-26 Derick Rethans <d.rethans@jdimedia.nl>
* ext/openssl/tests/.cvsignore
ext/openssl/tests/001.phpt
ext/openssl/tests/skipif.inc
ext/openssl/openssl.c: - MFH for passphrase bug
2002-03-26 Jani Taskinen <sniper@iki.fi>
* ext/xmlrpc/libxmlrpc/encodings.c:
MFH the use of correct header file -fix
* ext/xmlrpc/config.m4
ext/xslt/config.m4: MFH fixes for the iconv stuff
* ext/xmlrpc/libxmlrpc/encodings.c: - Use correct header file.
* acinclude.m4: MFB. (I must have been sleep-walking..)
2002-03-26 Wez Furlong <wez.php@thebrainroom.com>
* ext/openssl/tests/.cvsignore
ext/openssl/tests/001.phpt
ext/openssl/tests/skipif.inc
ext/openssl/openssl.c:
Fix regular openssl_pkey_get_private($content, $phrase) syntax and
add test case.
This stuff should be merged into the 4.2 branch.
2002-03-25 Jani Taskinen <sniper@iki.fi>
* ext/xmlrpc/php_config.h.in: Why was this here??
* ext/standard/dl.c: MFH dl() error message fix
2002-03-25 Sterling Hughes <sterling@bumblebury.com>
* ext/xslt/sablot.c: Whitespace fixes
2002-03-25 Edin Kadribasic <edink@proventum.net>
* sapi/cli/EXPERIMENTAL
sapi/cli/README
sapi/cli/config.m4
sapi/cli/php_cli.c: Hidden the existance of CLI SAPI by:
- removing the NEWS entry
- removing cli from make install chain
- marking it EXPERIMENTAL
- reverting installed name of cgi from php-cgi to php
Marged max_execution_time override from head.
* sapi/cli/EXPERIMENTAL: New file.
* sapi/cgi/config.m4
NEWS: Hidden the existance of CLI SAPI by:
- removing the NEWS entry
- removing cli from make install chain
- marking it EXPERIMENTAL
- reverting installed name of cgi from php-cgi to php
Marged max_execution_time override from head.
2002-03-25 Georg Richter <georg.richter@phpev.de>
* ext/mysql/php_mysql.c:
fixed prototype for mysql_ping
2002-03-25 Sterling Hughes <sterling@bumblebury.com>
* ext/mysql/php_mysql.c: more zend_parse_parameters fixup
* ext/mysql/php_mysql.c: Fix-up the last fix a bit
Clean up mysql_list_processes
2002-03-25 Hartmut Holzgraefe <hartmut@six.de>
* ext/exif/exif.c: pproto fix
2002-03-25 Sterling Hughes <sterling@bumblebury.com>
* ext/mysql/php_mysql.c: clean up mysql_real_escape_string() a bit
2002-03-25 Hartmut Holzgraefe <hartmut@six.de>
* ext/mime_magic/TODO: initial checkin
2002-03-24 Zak Greant <zak@mysql.com>
* ext/mysql/php_mysql.c:
Added mysql_table_name() alias for mysql_tablename()
Improved logic of parameter parsing code for mysql_ping
- made test for no arguments more explicit
- combined to if blocks into one if/else if block
2002-03-24 Jan Lehnardt <jan@dasmoped.net>
* tests/func/006.phpt: - MFH
* tests/func/006.phpt: - added basic output buffering tests
2002-03-24 Hartmut Holzgraefe <hartmut@six.de>
* ext/mime_magic/CREDITS
ext/mime_magic/EXPERIMENTAL
ext/mime_magic/config.m4
ext/mime_magic/mime_magic.c
ext/mime_magic/php_mime_magic.h:
1st implementation of magic-file based mime_content_type(string filename)
2002-03-24 Alex Waugh <alex@alexwaugh.com>
* sapi/webjames/config.m4: MFH
* sapi/webjames/config.m4:
Backslashes caused the build to fail with autoconf 2.52
2002-03-24 Sterling Hughes <sterling@bumblebury.com>
* ext/dio/dio.c: fix freebsd compile
2002-03-24 Sander Roobol <phy@wanadoo.nl>
* ext/mysql/php_mysql.c:
Fixed tiny mistake in proto (tnx to Egon for spotting it).
2002-03-24 Wez Furlong <wez.php@thebrainroom.com>
* main/streams.c
main/user_streams.c
main/php_streams.h
ext/zlib/zlib_fopen_wrapper.c
ext/zlib/zlib.c
ext/zlib/php_zlib.h
ext/standard/php_fopen_wrappers.h
ext/standard/php_fopen_wrapper.c
ext/standard/ftp_fopen_wrapper.c
ext/standard/http_fopen_wrapper.c
ext/bz2/php_bz2.h
ext/bz2/bz2.c: Phase 1 of wrapper OO cleanup.
2002-03-24 Sander Roobol <phy@wanadoo.nl>
* ext/mysql/php_mysql.c: Fix typo in proto.
2002-03-24 Derick Rethans <d.rethans@jdimedia.nl>
* ext/mysql/php_mysql.c: - Fix proto
2002-03-24 Georg Richter <georg.richter@phpev.de>
* ext/mysql/php_mysql.c:
changed prototype for mysql_real_escape_string
2002-03-24 Mark L. Woodward <mlwmohawk@mohawksoft.com>
* ext/msession/msession.c:
Added support for session manager ID creation, works with patch submitted earlier
2002-03-24 Zak Greant <zak@mysql.com>
* ext/mysql/php_mysql.c
ext/mysql/php_mysql.h: Added mysql_ping() function.
2002-03-24 Georg Richter <georg.richter@phpev.de>
* ext/mysql/php_mysql.c
ext/mysql/php_mysql.h:
a) ws fixed
b) changed mysql_list_processes, mysql_stat (zend_parse_parameters)
c) New functions:
1) mysql_real_escape_string this function is similar to mysql_escape_string (deprecated).
it needs a mysql-connection to escape a string according to the
current character set
2) mysql_character_set_name returns the current character set for the connection
3) mysql_thread_id return the pid for the current connection. This function is usefull
when using mysql_list_processes
2002-03-24 Edin Kadribasic <edink@proventum.net>
* sapi/cli/README
sapi/cli/php_cli.c:
Override max_execution_time, setting it to unlimited.
2002-03-24 Wez Furlong <wez.php@thebrainroom.com>
* NEWS: News updates.
2002-03-24 Jan Lehnardt <jan@dasmoped.net>
* ext/pspell/tests/01pspell_basic.phpt:
- finally MFH. sorry for the inconveniance, especially Derick ;)
* ext/pspell/tests/01pspell_basic.phpt
ext/pspell/.cvsignore: - initial checkin of basic testcases for pspell
2002-03-24 Zak Greant <zak@mysql.com>
* ext/mysql/php_mysql.c
ext/mysql/php_mysql.h:
(PHP mysql_list_processes) Returns a pointer to a result set containing
information on the processes running in the
MySQL server.
(PHP mysql_stat) Returns a string containing information on the status
of the MySQL server.
2002-03-24 Derick Rethans <d.rethans@jdimedia.nl>
* ext/curl/curl.c:
- MFH for bug #16232 (Patch by Alan Knowles <alan@akbkhome.com>)
* ext/curl/curl.c:
- Fix for bug #16232 (Patch by Alan Knowles <alan@akbkhome.com>)
2002-03-24 Stig Bakken <ssb@fast.no>
* pear/PEAR/Registry.php: * move logic to _assertStateDir
2002-03-23 Sterling Hughes <sterling@bumblebury.com>
* ext/dio/dio.c: revert out accidental code
2002-03-23 Edin Kadribasic <edink@proventum.net>
* sapi/cli/README
sapi/cli/TODO: Documented -r and added TODO
2002-03-23 Sterling Hughes <sterling@bumblebury.com>
* ext/dio/dio.c
ext/mcrypt/EXPERIMENTAL
ext/xslt/EXPERIMENTAL: remove experimental status
* ext/mcrypt/EXPERIMENTAL: the point can be made both ways :)
* ext/xslt/sablot.c: make key identifiers case sensitive
2002-03-23 Derick Rethans <d.rethans@jdimedia.nl>
* ext/xslt/EXPERIMENTAL: - Fix experimental notice
2002-03-23 Jan Lehnardt <jan@dasmoped.net>
* ext/xml/tests/007.phpt: - MFH
* ext/xml/tests/007.phpt:
- fix "xml_parse_into_struct/umlauts in tags" testcase. It never really
- worked
2002-03-23 Derick Rethans <d.rethans@jdimedia.nl>
* ext/standard/basic_functions.h
ext/standard/basic_functions.c: - Remove read_uploaded_file
2002-03-23 Edin Kadribasic <edink@proventum.net>
* ext/bz2/tests/with_strings.phpt: MFH
* ext/ncurses/tests/.cvsignore
ext/xslt/tests/.cvsignore
ext/mcve/tests/.cvsignore
ext/mailparse/tests/.cvsignore
ext/mbstring/tests/.cvsignore
ext/dbplus/tests/.cvsignore
ext/dio/tests/.cvsignore: .cvsignore in tests dirs cleanup
2002-03-23 jim winstead <jimw@apache.org>
* NEWS: MFH
* NEWS: remove inappropriate article
* NEWS: MFH.
* NEWS: rewrite history a bit. there is no is_enum(), it was com_isenum().
2002-03-23 Tomas V.V.Cox <cox@idecnet.com>
* pear/PEAR/Registry.php:
The System class was modified to always return true or false instead
of PEAR Errors. Changed then assertStateDir() to check for false.
* pear/PEAR/Command/Package.php:
Show maintainers name in package-info and show more human friendly
column table names
2002-03-23 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* main/php_memory_streams.h
main/streams.c: -defined php_stream_temp_new() for standard temp streams
2002-03-23 Tomas V.V.Cox <cox@idecnet.com>
* pear/PEAR/Command/Package.php: Yet another break; forgotten
* pear/PEAR/Command/Package.php: Oops, forgot the break;
2002-03-23 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* NEWS: -no german in NEWS
2002-03-23 Tomas V.V.Cox <cox@idecnet.com>
* pear/PEAR/Command/Package.php:
- Show the real dir where files would be installed (using role & config)
- Introduce column wrapping
2002-03-23 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* NEWS: -removed -x
-no german in NEWS
* sapi/cli/php_cli.c: -removed -x
-error handling for illegal switch combinations
-corrected ws for one case block
2002-03-23 Tomas V.V.Cox <cox@idecnet.com>
* pear/PEAR/Frontend/CLI.php:
- Use getenv('TERM') instead of $_ENV (empty for me in 4.1.1)
- Added 'linux' as bold capable list of term types
- Pass the col by reference for making the wrap take effect in tableRow
* pear/PEAR/Command/Install.php: fix parse error
2002-03-23 Hartmut Holzgraefe <hartmut@six.de>
* ext/standard/dl.c: dl is now aware of modules compiled for php <4.1.0
which have a slightly different module_entry structure
2002-03-23 Edin Kadribasic <edink@proventum.net>
* main/config.w32.h
win32/crypt_win32.c
win32/crypt_win32.h
win32/php4dllts.dsp: MFH (crypt on win32)
2002-03-23 Derick Rethans <d.rethans@jdimedia.nl>
* ext/standard/basic_functions.c
ext/standard/basic_functions.h:
- Added read_uploaded_file (patch by Andrew Sitnikov <sitnikov@infonet.ee>)
2002-03-23 Sebastian Bergmann <sb@sebastian-bergmann.de>
* sapi/cli/php_cli.c: Nuke unused variables.
2002-03-23 Stig Bakken <ssb@fast.no>
* pear/PEAR/Command/Package.php:
* added package-list and package-info commands (for .tgz files)
* pear/PEAR/Command/Install.php: * use switch/case for what it's worth :-)
* pear/PEAR/Registry.php: * _lock() calls _assertStateDir()
* pear/PEAR/Common.php:
* support having a toplevel package.xml in tgz files
* pear/PEAR/Frontend/CLI.php:
* wordwrapping and multiline table cell support
2002-03-23 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/mbstring/mbstring.c: fixed some errors in regression tests.
* ext/mbstring/php_mbregex.c: changed license from GPL2 to PHP License.
* ext/mbstring/mbregex.c: fixed compile warnings.
2002-03-23 James Cox <james@wherewithal.com>
* pear/PEAR/Installer.php: "reverting" to 1.39 as per Tomas Cox's wishes.
2002-03-23 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* tests/lang/031.phpt: Fix test :)
2002-03-23 Hartmut Holzgraefe <hartmut@six.de>
* ext/curl/curl.c: proto fix
2002-03-23 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* tests/lang/031.phpt: Added while(list() = each()) test
2002-03-23 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/mbstring/mbregex.c
ext/mbstring/mbstring.c: fixed some compilation warning.
* ext/mbstring/tests/003.inc: fixed POST/GET argument handling.
2002-03-22 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* sapi/cli/php_cli.c: -Add -x
2002-03-22 Derick Rethans <d.rethans@jdimedia.nl>
* configure.in: - Oops... I didn't mean to commit this
* configure.in: MFH
2002-03-22 Jani Taskinen <sniper@iki.fi>
* ext/xmlrpc/config.m4
ext/xslt/config.m4: fix the fix
* ext/xslt/config.m4
ext/xmlrpc/config.m4:
- Fixed minor inconvenience with iconv detection when iconv is found in libc
* configure.in: MFH
2002-03-22 Stig Bakken <ssb@fast.no>
* pear/PEAR/Frontend/CLI.php:
* don't start table cells with a space in borderless tables
* pear/PEAR/Command/Registry.php: * typo fix
* pear/PEAR/Command/Config.php:
* use PEAR_Frontend tables in config-show command
2002-03-22 Derick Rethans <d.rethans@jdimedia.nl>
* ext/informix/ifx.ec: - oops :)
* ext/informix/ifx.ec: MFH for bug 14664
* ext/informix/ifx.ec:
- Fix for bug #14644 (patch by samuel_carriere@hotmail.com)
2002-03-22 Stig Bakken <ssb@fast.no>
* pear/PEAR/Command/Registry.php: * now using PEAR_Frontend tables
* pear/PEAR/Frontend/CLI.php: * ncurses note
* pear/PEAR/Frontend/CLI.php: * table support working
* added bold support for xterm/vt220/vt100 terminals
* pear/scripts/pear.in: * setUIType -> setFrontendType
2002-03-22 Hartmut Holzgraefe <hartmut@six.de>
* configure.in:
manual is fixed to have static anchors generated from ids for the faq part
2002-03-22 Stig Bakken <ssb@fast.no>
* pear/PEAR/Command/Auth.php: * rename class/methods
* pear/Makefile.frag: * temporarily added: nuke old files/dirs
2002-03-22 Sascha Schumann <sascha@schumann.cx>
* build/genif.sh: de-overquotation
* acinclude.m4:
A cli-specific extension should be named once only, not twice.
Noticed by: Derick
2002-03-22 Stig Bakken <ssb@fast.no>
* pear/Makefile.frag: * one last CommandUI -> Frontend change
2002-03-22 Derick Rethans <d.rethans@jdimedia.nl>
* pear/XML/tests/003.phpt
pear/DB/tests/db_error2.phpt
pear/XML/tests/002.phpt
pear/DB/tests/db_error.phpt: - Fix tests
2002-03-22 Stig Bakken <ssb@fast.no>
* pear/PEAR/Frontend/CLI.php
pear/PEAR/Command/Auth.php
pear/PEAR/Command/Common.php
pear/PEAR/Command/Install.php
pear/PEAR/Command/List.php
pear/PEAR/Command/Login.php
pear/PEAR/Command/Package.php
pear/PEAR/Command/Registry.php
pear/PEAR/Remote.php
pear/PEAR/Command.php
pear/PEAR/Installer.php
pear/Makefile.frag: * rename PEAR_CommandUI* to PEAR_Frontend*
* rename PEAR/Command/Login.php to PEAR/Command/Auth.php
* replace PEAR/Command/Info.php with PEAR/Command/Registry.php (will contain
more commands related to the local registry)
* started working on Frontend table output
2002-03-22 Derick Rethans <d.rethans@jdimedia.nl>
* ext/dbx/dbx.c: MFH: Fix phpinfo() output
* tests/strings/002.phpt: - Add test for sprintf()'s zero'th argument
* ext/standard/formatted_print.c:
- Fix handling of zero'th argument for sprintf()'s argument swapping code
(Patch by Morten Poulsen <morten@afdelingp.dk>)
* NEWS: - Add note about changed fopen wrappers
2002-03-22 Stig Bakken <ssb@fast.no>
* pear/PEAR/Registry.php:
* No point in creating the lock file directory if it does not exist (so many
other things would fail anyway). Throw an error instead.
2002-03-22 Jani Taskinen <sniper@iki.fi>
* ext/standard/aggregation.c: MFH fix for bug #16182
2002-03-22 Hartmut Holzgraefe <hartmut@six.de>
* ext/standard/basic_functions.c
ext/xslt/sablot.c
main/php.h
ext/pdf/pdf.c
ext/readline/readline.c: getting rid of the warn_not_available alias
2002-03-21 Markus Fischer <mfischer@guru.josefine.at>
* configure.in: - Fix #16206.
* main/streams.c
ext/recode/recode.c
ext/pgsql/pgsql.c
ext/pdf/pdf.c
ext/gd/gd.c
ext/bz2/bz2.c
ext/curl/curl.c: *** empty log message ***
2002-03-21 Tomas V.V.Cox <cox@idecnet.com>
* pear/PEAR/Command/Install.php
pear/PEAR/Installer.php
pear/PEAR/Registry.php
pear/scripts/pear.in:
- Make the rellocation of packages work as expected if the target
dir doesn't exist
- The "install -f" now replaces the info in the registry
2002-03-21 Markus Fischer <mfischer@guru.josefine.at>
* ext/standard/file.c:
- Use proper macros for php_stream_cast() return values (fixes #16211).
2002-03-21 Rasmus Lerdorf <rasmus@php.net>
* ext/standard/http_fopen_wrapper.c:
Just in case we do a 4.1.3, MFH the fix for #15667
* ext/standard/http_fopen_wrapper.c: Fix for bug #15667
2002-03-21 Derick Rethans <d.rethans@jdimedia.nl>
* ext/pgsql/pgsql.c: - Fix PGSql Compile
2002-03-21 Jani Taskinen <sniper@iki.fi>
* configure.in
main/php_version.h:
The changes to build system and the streams stuff alone are big enough
reason to make next release 4.3.0
2002-03-21 Tomas V.V.Cox <cox@idecnet.com>
* pear/scripts/pear.in: - Added command level options
- Fix error handling for Getopt (it doesn't use raiseError)
* pear/PEAR/Command.php
pear/PEAR/Command/Common.php
pear/PEAR/Command/Config.php
pear/PEAR/Command/Install.php
pear/PEAR/Command/List.php
pear/PEAR/Command/Login.php
pear/PEAR/Command/Package.php
pear/PEAR/Config.php
pear/PEAR/Remote.php: - Implement command level options
- Removed call pass by reference
- Readd $options to command::run() params
2002-03-21 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* main/memory_streams.c: -missing efree in close
2002-03-21 Jani Taskinen <sniper@iki.fi>
* ext/iconv/iconv.c
acinclude.m4: - MFH iconv fixes.
* ext/xmlrpc/libxmlrpc/libs.mk:
This file is generated and not supposed to be in CVS
* ext/xmlrpc/libxmlrpc/libs.mk:
This file is generated, not supposed to be here.
* ext/pgsql/tests/.cvsignore: missing file
* acinclude.m4
ext/iconv/iconv.c:
- Fixed bug #16165 again. We check libc for iconv functions only if
no path is given for --with-iconv.
2002-03-21 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c: -removed old streams test code
2002-03-21 Jani Taskinen <sniper@iki.fi>
* ext/exif/tests/.cvsignore: This file was missing.
2002-03-21 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c: -fixed memory handling
2002-03-21 Hartmut Holzgraefe <hartmut@six.de>
* ext/standard/file.h
ext/standard/php_dir.h
ext/standard/basic_functions.c
ext/standard/config.m4
ext/standard/dir.c
ext/standard/file.c: added fnmatch() and glob() functions
could someone please check if i got the virtual dir stuff right?
2002-03-21 Tomas V.V.Cox <cox@idecnet.com>
* pear/PEAR/Common.php: fix a problem handling nested directories
2002-03-21 Sascha Schumann <sascha@schumann.cx>
* configure.in:
Support systems without NIS functions, but with non-working libnsl
2002-03-21 Wez Furlong <wez.php@thebrainroom.com>
* main/streams.c
ext/standard/php_fopen_wrapper.c
ext/zlib/zlib_fopen_wrapper.c
ext/bz2/bz2.c: Require that wrappers use <protocol>://<path> to avoid
ambiguities when filenames have ':' characters.
This slightly breaks BC with the old style zlib: wrapper.
2002-03-21 Daniela Mariaschi <mariaschi@libero.it>
* ext/interbase/interbase.c: fixed numeric number incorrectly rendered
2002-03-21 Sterling Hughes <sterling@bumblebury.com>
* ext/bz2/bz2.c: NUL terminate
* ext/bz2/CREDITS: its Bzip2 not bz2 :)
* ext/bz2/bz2.c: 1) ws fixes
2) un-NUL terminate strings... Binary Data should not be NUL terminated,
PHP *is* binary safe...
2002-03-21 Hartmut Holzgraefe <hartmut@six.de>
* ext/xml/xml.c: proto fixes
2002-03-21 Jani Taskinen <sniper@iki.fi>
* ext/xslt/config.m4: Minor detail fixed.
2002-03-21 Andrei Zmievski <andrei@ispi.net>
* ext/standard/aggregation.c
ext/standard/basic_functions.c: Fix compilation when PCRE is disabled.
2002-03-21 Ludovico Magnocavallo <ludo@sumatrasolutions.com>
* ext/interbase/tests/001.phpt
ext/interbase/tests/002.phpt
ext/interbase/tests/003.phpt
ext/interbase/tests/004.phpt
ext/interbase/tests/005.phpt
ext/interbase/tests/006.phpt:
synched with HEAD, tests 1-2-3-6 pass, 5 fails but ok, 4 needs work
2002-03-21 Sander Roobol <phy@wanadoo.nl>
* ext/standard/tests/array/count_recursive.phpt
ext/standard/tests/math/pow.phpt: MFH: more tests for pow() and count()
* ext/standard/tests/math/pow.phpt
ext/standard/tests/array/count_recursive.phpt:
Added tests for pow()'ing with broken exponents and some additional test
for count()'ing arrays.
2002-03-21 Wez Furlong <wez.php@thebrainroom.com>
* NEWS: NEWS updates
2002-03-21 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/mbstring/tests/003.inc: fixed POST/GET input processing.
2002-03-21 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c
main/memory_streams.c:
* main/memory_streams.c: -fix missing efree
2002-03-21 Tomas V.V.Cox <cox@idecnet.com>
* pear/PEAR/Command/List.php: readd the "list" command
* pear/PEAR/Command/Config.php
pear/PEAR/Command/Login.php:
Adapt this commands to the new config store mechanism and command params
* pear/scripts/pear.in:
Pass config to command factory and pass the correct command params
* pear/PEAR/Command.php
pear/PEAR/Command/Common.php
pear/PEAR/Command/Install.php
pear/PEAR/Command/Package.php:
- The config object is stored by the factory method
- Make install/unistall/package work again (didn't work for me)
* pear/PEAR/Packager.php: Clean up unused stuff
2002-03-21 Sebastian Bergmann <sb@sebastian-bergmann.de>
* php.ini-dist
php.ini-recommended:
MFH: ext/overload is a 'built-in' extension on Win32.
* php.ini-dist
php.ini-recommended: ext/overload is a 'built-in' extension on Win32.
2002-03-21 Wez Furlong <wez.php@thebrainroom.com>
* ext/bz2/bz2.c: Added fold markers.
* ext/bz2/bz2.c
ext/bz2/php_bz2.h
ext/zlib/zlib_fopen_wrapper.c: Implement bz2 streams and bz2: wrapper.
You can now do this:
copy("zlib:src.gz", "bz2:dest.bz2");
As with zlib, most of the functions with counterparts
in file.c are now aliases to those functions.
* ext/zlib/zlib.c: really nuke it...
* ext/standard/file.c
ext/zlib/php_zlib.h
ext/zlib/zlib.c
ext/zlib/zlib_fopen_wrapper.c
main/php_streams.h
main/streams.c:
Convert the gzfile related functions into aliases for their equivalents
in ext/standard/file.c, so a gzopen()ed file pointer can be used in
fread, fseek etc.
Improved behaviour of zlib stream.
Moved passthru code into streams.c
Nuked gzgetss_state as no longer needed.
2002-03-21 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c: Show function name in error message.
2002-03-20 Boian Bonev <boian@bonev.com>
* ext/vpopmail/config.m4: MFH vpopmail 5.2 version compatibility fix
* ext/vpopmail/php_vpopmail.c: ws fix
* ext/vpopmail/config.m4:
fix version checking - now handle 1.2.3 and 1.2 as well
2002-03-20 Harald Radi <h.radi@nme.at>
* main/memory_streams.c: fixed signed/unsigned comparison warnings
2002-03-20 Jani Taskinen <sniper@iki.fi>
* acinclude.m4: MFH
2002-03-20 Derick Rethans <d.rethans@jdimedia.nl>
* makedist: MFH makedist
* makedist: - Fix makedist
2002-03-20 Sander Roobol <phy@wanadoo.nl>
* ext/dbx/dbx.c:
Some PHP-info layout fixes (\n will automatically be converted into <br />)
and a comment-related fix.
2002-03-20 Boian Bonev <boian@bonev.com>
* ext/vpopmail/config.m4: fix a missing [
2002-03-20 Stefan Esser <s.esser@e-matters.de>
* ext/filepro/filepro.c: MFH: filepro fixes
2002-03-20 Jani Taskinen <sniper@iki.fi>
* acinclude.m4: - Should work better now..
2002-03-20 Derick Rethans <d.rethans@jdimedia.nl>
* ext/vpopmail/config.m4
acinclude.m4: - MFH iconv fix
- Configure Fix for vpopmail
2002-03-20 Stefan Esser <s.esser@e-matters.de>
* ext/standard/html.c: MFH of bufferoverflow fix
2002-03-20 Wez Furlong <wez.php@thebrainroom.com>
* ext/zlib/zlib.c
main/php_streams.h
ext/standard/file.h
ext/standard/php_string.h
ext/standard/string.c
ext/standard/file.c:
Make state parameter of php_strip_tags passed by reference.
Move state tracking to stream structure.
* main/php_streams.h
main/streams.c
main/user_streams.c
ext/zlib/zlib.c
ext/pgsql/pgsql.c
ext/standard/exec.c
ext/standard/file.c
ext/standard/fsock.c
ext/standard/image.c
ext/exif/exif.c: Streams are all tracked as resources now.
Add some logic that will help track down leaks
when debug is enabled.
* ext/zlib/zlib.c: Add parameter here too...
2002-03-20 Sascha Schumann <sascha@schumann.cx>
* Makefile.global
acinclude.m4
ext/iconv/iconv.c
ext/iconv/php_iconv.h: Expand the variables in PHP_EXPAND_BUILD_VARS.
Make HAVE_ICONV/HAVE_LIBICONV available through the more
fine-grained approach using a single include file per
directive. This will significantly reduce the price of
full dependencies for developers, because basically each
file today includes php.h which includes php_config.h.
If PHP_ATOM_INC is defined, these include files can be used.
For all PHP_DEFINEs, empty files are created upon configure start.
2002-03-20 Wez Furlong <wez.php@thebrainroom.com>
* ext/zlib/php_zlib.h
ext/zlib/zlib_fopen_wrapper.c: add forgotten parameter
2002-03-20 Sascha Schumann <sascha@schumann.cx>
* ext/mysql/config.m4: Fix building mysql client library
Run client lib specific checks only when clientlib is used
Remove second invocation of MYSQL_SOCK
* acinclude.m4:
Avoid duplicate tests and make third parameter truly optional.
2002-03-20 Jani Taskinen <sniper@iki.fi>
* ext/mysql/config.m4: - Fixed (hope so :) like Sascha said.
2002-03-20 Sascha Schumann <sascha@schumann.cx>
* acinclude.m4: Fix and tweak iconv macro
* acinclude.m4: Don't quote too much. Now autoconf-2.13 is happy again.
* acinclude.m4: Remove autoconf-2.5x specific m4_default macro.
It is pointless here, because we don't need any "void" statement.
There already is a statement and all it will do in the worst case
is generate an empty line
2002-03-20 Stefan Esser <s.esser@e-matters.de>
* main/safe_mode.c: MFH of safe_mode.c text fix
2002-03-20 Derick Rethans <d.rethans@jdimedia.nl>
* ext/vpopmail/php_vpopmail.c: MFH Sascha's fix
2002-03-20 Sascha Schumann <sascha@schumann.cx>
* ext/vpopmail/php_vpopmail.c:
There should not be any trailing data on an #endif line
* README.UNIX-BUILD-SYSTEM: add info about build system macros
2002-03-20 Markus Fischer <mfischer@guru.josefine.at>
* ext/standard/metaphone.c: - MFH fix for #16176.
* ext/standard/metaphone.c: - Fix for #16176.
* ext/vpopmail/config.m4
ext/vpopmail/php_vpopmail.c:
- MFH fix for #16120 (this also MFHs the proto fix by Sebastion which
I hope is ok).
2002-03-20 Jon Parise <jon@csh.rit.edu>
* acinclude.m4:
This completely fixes the iconv library detection under FreeBSD (the
previous fix was incomplete). We also set HAVE_ICONV and HAVE_LIBICONV
based on the library that was detected.
2002-03-20 Jani Taskinen <sniper@iki.fi>
* tests/quicktester.inc
ext/bz2/tests/with_strings.phpt:
- Fixed the bz2 tests. (and changed the usage comment to be correct)
* ext/gd/config.m4: - This is not needed here
* ext/openssl/config.m4
pear/pear.m4
acinclude.m4
configure.in:
- Make it possible to build ext/openssl as shared extension
* ext/mysql/config.m4:
- Fixed bug: #14147 (partial MFH, the uncompress issue)
* ext/mysql/php_mysql.c
ext/mysql/config.m4:
- Fixed bug: #16139 (compile failure with Mysql 4.0.1)
- Some tests were only run when compiling with the bundled libs.
(caused some compile warnings with external mysql libs)
- Another try to fix the zlib issue..(uncompress)
* ext/fdf/config.m4
ext/fdf/php_fdf.h: MFH
* ext/fdf/config.m4
ext/fdf/php_fdf.h: - Fix this without breaking BC
2002-03-19 Wez Furlong <wez.php@thebrainroom.com>
* main/main.c
main/memory_streams.c
main/php_streams.h
main/streams.c: Improve behaviour of the stream casting operation.
Improve interaction with fopencookie.
2002-03-19 Harald Radi <h.radi@nme.at>
* ext/rpc/tests/test1.php
ext/rpc/com/com.c
ext/rpc/handler.h
ext/rpc/rpc.c
ext/rpc/rpc.h: pass function signature in zend_parse_parameters style
lookup cache works now per signature (not only method name)
reviewed resource management
2002-03-19 Frank M. Kromann <frank@frontbase.com>
* ext/mssql/php_mssql.c: Minor change to allocated lengths for dates
2002-03-19 Jani Taskinen <sniper@iki.fi>
* .cvsignore: missing entry
2002-03-19 Markus Fischer <mfischer@guru.josefine.at>
* ext/vpopmail/php_vpopmail.c
ext/vpopmail/config.m4: - Support vpopmail 5.2 (fixes #16120).
2002-03-19 Jani Taskinen <sniper@iki.fi>
* acinclude.m4: - MFH iconv fix
* acinclude.m4:
- Fix the iconv detection when the functions are prefixed with lib.
(e.g. in freebsd)
2002-03-19 Frank M. Kromann <frank@frontbase.com>
* ext/fbsql/php_fbsql.c: Oops.. This should make I64 work on WIn32 as well
* ext/fbsql/php_fbsql.c:
Changing the LongInteger to return 64 bit integers as string values with all 64 bit
2002-03-19 Markus Fischer <mfischer@guru.josefine.at>
* ext/ming/ming.c: - Fix bug spotted by Lukas Schroeder <lukas@edeal.de>.
2002-03-19 Stig Bakken <ssb@fast.no>
* pear/Makefile.frag: * install PEAR_Command_Package
* pear/PEAR/Command/Package.php: * re-add "package" command
* pear/PEAR/Command/Login.php: * "pear login" finally works
* pear/PEAR/Remote.php: * fix http auth bug
* pear/PEAR/CommandUI/CLI.php:
* add optional default parameter to userDialog method
2002-03-19 Zeev Suraski <zeev@zend.com>
* main/memory_streams.c:
Possibly fix a crash - Marcus, please take a look at it...
* sapi/isapi/php4isapi.c
win32/php4dllts.dsp
main/memory_streams.c:
- Fix whitespace (guys, please try to stick with the php4 tree style as far
as indentation/newlines go, and also as far as using {} even on if's
that have single statements)
- Fix Windows build
2002-03-19 Harald Radi <h.radi@nme.at>
* ext/rpc/com/com.c
ext/rpc/tests/test1.php
ext/rpc/rpc.h
ext/rpc/handler.h
ext/rpc/rpc.c: fixed memleaks
added method lookup caching
pass function signature to hash function callback
2002-03-19 Frank M. Kromann <frank@frontbase.com>
* ext/fbsql/php_fbsql.c:
Adding support for TinyInteger and LongInteger database types
2002-03-19 Wez Furlong <wez.php@thebrainroom.com>
* main/php_streams.h
main/streams.c
main/php_network.h
main/main.c
main/network.c
ext/standard/file.c
ext/standard/file.h: fix for bug #16168
2002-03-19 Harald Radi <h.radi@nme.at>
* win32/php4dllts.dsp: MFH
2002-03-19 Wez Furlong <wez.php@thebrainroom.com>
* main/user_streams.c: make buffer length warnings more verbose
2002-03-19 Ludovico Magnocavallo <ludo@sumatrasolutions.com>
* ext/interbase/tests/001.phpt
ext/interbase/tests/002.phpt
ext/interbase/tests/003.phpt
ext/interbase/tests/004.phpt
ext/interbase/tests/005.phpt
ext/interbase/tests/006.phpt: Fixed include of interbase.inc
Fixed test database path
Changed v_date field in test table definition to timestamp type
Reduced maximum length of double precision type to 18
Tests 001 002 003 006 pass
Test 004 (BLOB test) still needs to be fixed
Test 005 (Transaction) gives the right output but issues a warning
2002-03-19 Daniela Mariaschi <mariaschi@libero.it>
* ext/interbase/interbase.c:
fixed floating number incorrectly rendered (as mentioned by giancarlo@niccolai.ws in BUG #14755)
2002-03-19 Wez Furlong <wez.php@thebrainroom.com>
* main/php_streams.h
main/streams.c
main/user_streams.c
ext/standard/basic_functions.c
ext/standard/file.h: register some constants for user streams
2002-03-19 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de>
* ext/fdf/php_fdf.h:
- the fdf include file shipped with the FDF toolkit is spelled
in lower case (at least in version 5.0)
2002-03-19 Wez Furlong <wez.php@thebrainroom.com>
* main/user_streams.c: correct copy/paste typo
* main/user_streams.c:
avoid possible buffer overruns when write returns a value larger than the buffer
* main/streams.c
main/user_streams.c:
Make file_get_wrapper_data return the underlying PHP object for
user-space streams.
* ext/standard/file.c
ext/standard/file.h
ext/standard/basic_functions.c: s/fgetwrapperdata/file_get_wrapper_data/
2002-03-19 Sascha Schumann <sascha@schumann.cx>
* ext/standard/php_smart_str.h: Remove trailing ;
The macro can now safely be used in constructs such as
if (..) foo() else bar();
* README.SUBMITTING_PATCH:
some typo fixing, and following The Little Book, omitting needless words
* Makefile.global:
Somewhere along the build changes, -export-dynamic was lost.
Readd it.
Noticed by: Stanislav Malyshev
* ext/standard/url_scanner_ex.c:
touch file. Please commit first the .re file and afterwards the .c source. Otherwise, timestamps will be broken.
2002-03-19 Thies C. Arntzen <thies@thieso.net>
* ext/standard/php_smart_str.h
ext/standard/var.c:
fix #12793 - serialize will now spit a notice if the return value of __sleep is
bogus.
2002-03-19 Jani Taskinen <sniper@iki.fi>
* sapi/cli/.cvsignore: added missing .libs entry
* ext/iconv/Makefile.in: - Not needed anymore.
2002-03-19 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* CODING_STANDARDS
README.SUBMITTING_PATCH:
Added README.SUBMITTING_PATCH file. Please fix/add/change.
Added more description for use of assert().
2002-03-19 Sebastian Bergmann <sb@sebastian-bergmann.de>
* win32/php4dll.dsp
win32/php4dllts.dsp: Add streams.c/user_streams.c to MSVC projects.
2002-03-19 Wez Furlong <wez.php@thebrainroom.com>
* ext/standard/basic_functions.c
ext/standard/file.h
ext/standard/ftp_fopen_wrapper.c
ext/standard/http_fopen_wrapper.c
ext/standard/php_fopen_wrapper.c
ext/standard/php_fopen_wrappers.h
ext/zlib/zlib.c
main/php_streams.h
main/streams.c
main/user_streams.c: Implement user-space streams.
There's probably room for improvement,
docs will following some time this week.
* configure.in: add sys/poll.h header detection
* main/network.c: make feof more useful on network streams
2002-03-19 Harald Radi <h.radi@nme.at>
* ext/rpc/com/com.c
ext/rpc/handler.h
ext/rpc/rpc.c
ext/rpc/rpc.dsp
ext/rpc/rpc.h
ext/rpc/tests/test1.php:
added lookup caching and now make use of the new thread
safe hashtables (not in cvs right now)
2002-03-19 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* run-tests.php: WS fix
2002-03-19 Jon Parise <jon@csh.rit.edu>
* configure.in: Give one last reference to pear-get.
2002-03-19 Stig Bakken <ssb@fast.no>
* pear/Makefile.frag: * pear-get gone
* ext/xmlrpc/config.m4
ext/xslt/config.m4
ext/iconv/config.m4
acinclude.m4: MFH: Jani's fix to my iconv fix
2002-03-18 Vlad Krupin <phpdevel@echospace.com>
* ext/ftp/ftp.c: MFH (rev. 1.49)
* ext/ftp/ftp.c: Fix ftp_size() returning bogus results.
2002-03-18 Sebastian Bergmann <sb@sebastian-bergmann.de>
* win32/crypt_win32.c
win32/crypt_win32.h: Fugbix typo.
2002-03-18 Derick Rethans <d.rethans@jdimedia.nl>
* ext/standard/fsock.c: MFH socket fix
* ext/standard/fsock.c: - MFH for bugfix for bug #10001
2002-03-18 Frank M. Kromann <frank@frontbase.com>
* win32/crypt_win32.c
win32/crypt_win32.h:
Adding note about permission to distribute this code under the PHP license
* main/config.w32.h:
Adding HAVE_SHUTDOWN on win32. Needed for the sockets extension to compile
2002-03-18 Markus Fischer <mfischer@guru.josefine.at>
* ext/oci8/oci8.c:
- Let OCIError() also return the sql statement which failed and the exact
position into the statement where it failed (if applicable).
Patch by Daniel Ceregatti <vi@sh.nu>.
2002-03-18 Wez Furlong <wez.php@thebrainroom.com>
* ext/standard/fsock.c:
fix error message which appeared even if no ssl mode was selected
* main/network.c:
Fix for bug #10001: a timeout event prevents further reads.
The Bug DB has a patch that should be applied to fsock.c on the
4.2 branch.
2002-03-18 Zeev Suraski <zeev@zend.com>
* main/php_streams.h
main/streams.c: Fix build under Release_TS
Maybe separating TSRMLS away wasn't such a good idea (sorry Wez :)
2002-03-18 Wez Furlong <wez.php@thebrainroom.com>
* main/network.c: Fix for bugs #16148, #11199, #10092:
fread from socket will never free memory.
This patch should also be applied to php_sockread_internal in
fsock.c in the 4.2 branch.
* main/streams.c: fix non-TS build...
* main/php_globals.h: Shouldn't have made it into my last commit.
* main/php_globals.h
main/php_memory_streams.h
main/php_network.h
main/php_streams.h
main/streams.c
main/memory_streams.c
main/network.c
ext/zlib/zlib_fopen_wrapper.c
main/main.c
ext/zlib/php_zlib.h
ext/zlib/zlib.c
ext/standard/fsock.c
ext/standard/ftp_fopen_wrapper.c
ext/standard/http_fopen_wrapper.c
ext/standard/image.c
ext/standard/php_fopen_wrapper.c
ext/standard/php_fopen_wrappers.h
ext/standard/php_image.h
ext/standard/file.h
ext/standard/file.c
ext/mailparse/mailparse.c
ext/ftp/ftp.c
ext/exif/exif.c: TSRMLS related work on streams, as discussed with Zeev.
2002-03-18 Stig Bakken <ssb@fast.no>
* pear/scripts/.cvsignore
pear/scripts/pear-get.in
pear/scripts/pearcmd-common.php
pear/scripts/pearcmd-help.php
pear/scripts/pearcmd-info.php
pear/scripts/pearcmd-install.php
pear/scripts/pearcmd-list.php
pear/scripts/pearcmd-package.php
pear/scripts/pearcmd-remote-list.php
pear/scripts/pearcmd-show-config.php
pear/scripts/pearcmd-uninstall.php: * get rid of this hack
2002-03-18 Hartmut Holzgraefe <hartmut@six.de>
* ext/curl/curl.c: proto fixes
2002-03-18 Stig Bakken <ssb@fast.no>
* pear/tests/pear_config.phpt
pear/PEAR/CommandUI/CLI.php
pear/scripts/pear.in
pear/PEAR/Command/Common.php
pear/PEAR/Command/Config.php
pear/PEAR/Command/Install.php
pear/PEAR/Command/Login.php
pear/PEAR/Command.php
pear/PEAR/Config.php
pear/PEAR/Remote.php
pear/DB/common.php
pear/Makefile.frag
pear/DB.php: * Refactoring of "pear" command internals. Highlights:
- user interface abstraction, making a Gtk installer should only be
a matter of implementing PEAR_CommandUI_Gtk plus a "pear-gtk" executable
- separated code into command classes, able to specify one or more
commands
- no more "pear-get" :-)
* fixed use of PEAR_Config::singleton to avoid object copying
2002-03-18 Edin Kadribasic <edink@proventum.net>
* NEWS: MFH
* NEWS: -r is in the release branch.
2002-03-18 Sascha Schumann <sascha@schumann.cx>
* ext/ircg/config.m4: If --with-ircg=foo was specified, default to
--with-ircg-config=foo/bin/ircg-config.
2002-03-18 Derick Rethans <d.rethans@jdimedia.nl>
* configure.in: - MFH: backing out requirement on C++ compiler
2002-03-18 Sascha Schumann <sascha@schumann.cx>
* regex/Makefile.in: unused makefile.in
2002-03-18 Wez Furlong <wez.php@thebrainroom.com>
* ext/zlib/zlib_fopen_wrapper.c: fix warning
* main/memory_streams.c: fix TSRM build
* ext/recode/php_recode.h
ext/recode/recode.c: Fix build.
Warning about TSRM testing still applies.
* main/memory_streams.c
main/php_memory_streams.h: tidyup use of STREAMS_DC macros
* ext/standard/basic_functions.c: having streams is now the default
2002-03-18 Zeev Suraski <zeev@zend.com>
* win32/php4dllts.dsp: Move stream files into the right folders
2002-03-18 Stanislav Malyshev <stas@zend.com>
* ext/zlib/zlib.dsp: Update .dsp
* ext/dotnet/dotnet.dsp: Fix build
* ext/bz2/bz2.dsp: Update .dsp
2002-03-18 Zeev Suraski <zeev@zend.com>
* ext/standard/basic_functions.c: Fix build
* main/streams.c: Make Sebastian happy
2002-03-18 Sascha Schumann <sascha@schumann.cx>
* ext/standard/basic_functions.c
main/php.h: Rename HAVE_PHP_STREAM to PHP_HAVE_STREAMS, because
1.) a PHP-specific symbol should be in the php namespace, and
2.) there are multiple streams and the old configure parameter was plural, too.
* ext/standard/var_unserializer.c: touch file
2002-03-18 Zeev Suraski <zeev@zend.com>
* ext/zlib/zlib.c
main/main.c
main/php_streams.h
main/streams.c
ext/standard/basic_functions.c
ext/standard/file.c:
Fix the build and all of the outstanding VC++ warnings
2002-03-18 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* README.TESTING: -c option is for path.
* ext/mbstring/tests/002.inc
ext/mbstring/tests/003.inc
ext/mbstring/tests/004.inc
ext/mbstring/tests/005.inc
ext/mbstring/tests/006.inc
ext/mbstring/tests/008.inc
ext/mbstring/tests/009.inc
ext/mbstring/tests/010.inc
ext/mbstring/tests/011.inc
ext/mbstring/tests/012.inc
ext/mbstring/tests/013.inc
ext/mbstring/tests/014.inc
ext/mbstring/tests/015.inc
ext/mbstring/tests/016.inc
ext/mbstring/tests/017.inc
ext/mbstring/tests/018.inc
ext/mbstring/tests/019.inc:
Use common.inc instead of common.php for ease of use (rm -f *.php for failed
test files)
2002-03-18 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c: -streams are no longer an option
* main/memory_streams.c
main/php_memory_streams.h: -temp streams are now clean (Thanks to Wez)
2002-03-18 Shane Caraveo <shane@caraveo.com>
* php.ini-dist
php.ini-recommended: add new ini item for fastcgi
* sapi/cgi/cgi_main.c
sapi/cgi/libfcgi/include/fcgios.h
sapi/cgi/libfcgi/os_win32.c:
add security impersonation feature for running under IIS security
* sapi/fastcgi/fastcgi.c: Add impersonation feature for running under IIS
2002-03-18 jim winstead <jimw@apache.org>
* Makefile.global:
make test: '-c' flag doesn't work like this expects (it takes a
directory, not a file), and this isn't necessary.
* ext/standard/string.c
ext/standard/tests/strings/wordwrap.phpt: MFH
* ext/standard/tests/strings/wordwrap.phpt
ext/standard/string.c:
Fix calculation of output buffer size in wordwrap(). (Thanks to Wez.)
2002-03-18 Wez Furlong <wez.php@thebrainroom.com>
* README.STREAMS: correct grammar
* README.STREAMS: Add some rules for stream implementors.
2002-03-18 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c: -use php_stream_make_seekable
2002-03-17 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* main/memory_streams.c
main/php_memory_streams.h: -added temporary streams
-added stream debug code
2002-03-17 Wez Furlong <wez.php@thebrainroom.com>
* main/network.c
main/php_network.h
main/php_streams.h
main/streams.c
ext/zlib/php_zlib.h
ext/zlib/zlib.c
ext/zlib/zlib_fopen_wrapper.c
main/main.c
ext/standard/ftp_fopen_wrapper.c
ext/standard/http_fopen_wrapper.c
ext/standard/image.c
ext/standard/php_fopen_wrapper.c
ext/standard/php_fopen_wrappers.h
ext/pgsql/pgsql.c
ext/standard/basic_functions.c
ext/ftp/php_ftp.c
ext/gd/gd.c
ext/mailparse/mailparse.c
ext/ming/ming.c
ext/exif/exif.c:
Streams now make more use of the memory manager, so tracking down
leaking streams should be easier.
2002-03-17 Jani Taskinen <sniper@iki.fi>
* ext/iconv/config.m4
ext/xmlrpc/config.m4
ext/xslt/config.m4
acinclude.m4:
- Made one test/setup macro for iconv and fixed it to check
for libc first.
2002-03-17 Stefan Esser <s.esser@e-matters.de>
* main/safe_mode.c:
SAFE_MODE restriction error message fixed if the file doesn't exist
* ext/standard/basic_functions.c:
move_uploaded_files checks open_basedir now
2002-03-17 Jason Greene <jason@inetgurus.net>
* ext/pcntl/pcntl.c: Remove already included file
2002-03-17 Jani Taskinen <sniper@iki.fi>
* configure.in: Fix build.
2002-03-17 Sander Roobol <phy@wanadoo.nl>
* ext/gd/php_gd.h:
Fixed compile error about gdImageColorResolve (#14426, #15000).
2002-03-17 Harald Radi <h.radi@nme.at>
* ext/standard/var_unserializer.c
ext/standard/var_unserializer.re: removed anoying warnings
* win32/php4dllts.dsp: reduced warninglevel to remove the annoying
warnings from the re2c generated code
2002-03-17 James Cox <james@wherewithal.com>
* NEWS: NEWS is my friend...
* NEWS: s/-/ ./
* NEWS: no, really update it
2002-03-17 Jani Taskinen <sniper@iki.fi>
* main/Makefile.in: - This is not used anymore.
2002-03-17 James Cox <james@wherewithal.com>
* NEWS: updated NEWS
2002-03-17 Wez Furlong <wez.php@thebrainroom.com>
* main/php_streams.h
main/streams.c
main/fopen_wrappers.h
README.STREAMS:
Fix for php_stream_gets when the implementation does not support it
natively (Thanks Marcus).
Implement php_stream_make_seekable() and add STREAM_MUST_SEEK as an
option to php_stream_open_wrapper().
See README.STREAMS for usage.
* main/fopen_wrappers.h
main/php_network.h: tidy up the headers (streams related)
* main/network.c
main/php_network.h
ext/standard/fsock.c:
Fix for Bug #16121: make unix socket names binary safe.
* run-tests.php: fix problems with cgi/cli sapi when running tests
2002-03-17 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c:
* main/streams.c: -fix bug with wrappers
2002-03-17 Markus Fischer <mfischer@guru.josefine.at>
* ext/vpopmail/config.m4:
- Let configure also detect installation in standard unix paths.
- Properly format error message.
2002-03-17 Shane Caraveo <shane@caraveo.com>
* sapi/cgi/libfcgi/os_win32.c: fix closing pipes
fix buffer overrun
2002-03-17 Markus Fischer <mfischer@guru.josefine.at>
* ext/pcntl/pcntl.c: - Fix some compiler warnings and errors.
2002-03-17 Wez Furlong <wez.php@thebrainroom.com>
* ext/ming/ming.c
ext/standard/fsock.c: fix win32 warning and ming leak
2002-03-16 Stig Bakken <ssb@fast.no>
* pear/PEAR/Config.php: * added optional layer parameter to get() method
* added isDefinedLayer() method
2002-03-16 Markus Fischer <mfischer@guru.josefine.at>
* ext/pcntl/pcntl.c
ext/pcntl/php_pcntl.h: - WS and code style fix.
2002-03-16 Harald Radi <h.radi@nme.at>
* win32/php4dllts.dsp: project file for ZendEngine2 migration
* main/internal_functions_win32.c: no message
2002-03-16 Jani Taskinen <sniper@iki.fi>
* ext/ming/ming.c: - Fixed some typos.
2002-03-16 Markus Fischer <mfischer@guru.josefine.at>
* ext/mailparse/mailparse.c
ext/pcntl/pcntl.c: - Some more TSRMLS fixes.
2002-03-16 Harald Radi <h.radi@nme.at>
* ext/standard/fsock.c: fixed TSRM build
2002-03-16 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c: -quick hack to bug in streams....but where?
* ext/exif/exif.c: -disabling debug
* ext/standard/image.c: -formatting
* ext/exif/exif.c: -fix bug for not correct terminated comments
-switch to streams
* main/Makefile.in
main/memory_streams.c
main/php.h
main/php_memory_streams.h: -added memory streams
* main/streams.c:
-copy_stream_to_stream returns size if maxlen == PHP_STREAM_COPY_ALL
* ext/exif/exif.c: -fix bug with not correctly terminated comments
2002-03-16 Wez Furlong <wez.php@thebrainroom.com>
* main/streams.c: fix ftell/fseek in stdio streams
* ext/interbase/interbase.c: fix build problem for interbase
* ext/zlib/zlib_fopen_wrapper.c
ext/zlib/zlib.c
ext/standard/fsock.c: Fix some issues with gzFile and fsockopen.
2002-03-16 Andi Gutmans <andi@zend.com>
* main/streams.c: - Indentation fix.
Never do:
if (expr) {
}
else
It should be:
if (expr) {
} else {
2002-03-16 Wez Furlong <wez.php@thebrainroom.com>
* main/php.h:
add HAVE_PHP_STREAM macro for extensions to test which fileio functions to use
* ext/standard/basic_functions.c
ext/standard/file.c
ext/standard/file.h: s/get_file_contents/file_get_contents/
2002-03-16 Harald Radi <h.radi@nme.at>
* ext/rpc/RPC_HOWTO
ext/rpc/com/com.c
ext/rpc/com/com.h
ext/rpc/handler.h
ext/rpc/php_rpc.h
ext/rpc/rpc.c
ext/rpc/rpc.h
ext/rpc/tests/test1.php: blah
2002-03-16 Wez Furlong <wez.php@thebrainroom.com>
* ext/standard/file.c
ext/standard/file.h: Ooops.
* main/streams.c
ext/standard/file.c
ext/standard/basic_functions.c:
Implement get_file_contents() as discussed (briefly!) by myself, Derick
and Sterling on php-dev some months ago.
It returns the file contents as a string, and uses mmap if possible.
2002-03-16 Markus Fischer <mfischer@guru.josefine.at>
* ext/standard/mail.c: - WS fix.
* ext/standard/mail.c: - Don't forget to close the handle.
2002-03-16 Wez Furlong <wez.php@thebrainroom.com>
* ext/ming/ming.c: correct some problems with ming
* ext/zlib/zlib_fopen_wrapper.c
main/main.c
main/network.c
main/php_streams.h
main/streams.c:
Hopefully fix resource usage so that we have no leaks and don't segfault.
* README.STREAMS: fix typo
* main/main.c: work around apache segfault for the moment
* ext/gd/gd.c
ext/hyperwave/hw.c
main/php_streams.h
main/streams.c
README.STREAMS
TODO: Tweak the API to be more consistent.
Update docs.
2002-03-16 Markus Fischer <mfischer@guru.josefine.at>
* ext/standard/mail.c
ext/standard/php_mail.h
ext/standard/basic_functions.c
ext/mbstring/mbstring.c:
- Raise warning when trying to execute non-executeable shell
for mail delivery binary.
2002-03-16 Harald Radi <h.radi@nme.at>
* ext/rpc/rpc.c: TSRM fix
2002-03-16 Wez Furlong <wez.php@thebrainroom.com>
* main/network.c: fsock.c did it this way, so it must be OK...
* main/network.c: bring back ptrdiff_t
* main/streams.c: Hopefully fix probs with apache.
* NEWS: update NEWS
2002-03-16 Sander Roobol <phy@wanadoo.nl>
* Makefile.frag:
Fixed build with multiple concurrent jobs: zend_indent.c, zend_highlight.c
and zend_compile.c require zend_language_parser.h
2002-03-16 Stefan Esser <s.esser@e-matters.de>
* ext/standard/html.c: fixed possible bufferoverflow in get_next_char
malformed input to htmlentities/htmlspecialchars
with utf-8 encoding crashed the server
ex: htmlentities("\xfd...(30times)", ENT_NOQUOTES, "utf-8");
2002-03-16 Andi Gutmans <andi@zend.com>
* win32/php4dllts.dsp: - Add streams.c and php_streams.h to project.
2002-03-16 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/mbstring/tests/002.inc
ext/mbstring/tests/003.inc
ext/mbstring/tests/004.inc
ext/mbstring/tests/005.inc
ext/mbstring/tests/006.inc
ext/mbstring/tests/006.phpt
ext/mbstring/tests/008.inc
ext/mbstring/tests/009.inc
ext/mbstring/tests/010.inc
ext/mbstring/tests/010.phpt
ext/mbstring/tests/011.inc
ext/mbstring/tests/012.inc
ext/mbstring/tests/013.inc
ext/mbstring/tests/014.inc
ext/mbstring/tests/014.phpt
ext/mbstring/tests/015.inc
ext/mbstring/tests/016.inc
ext/mbstring/tests/017.inc
ext/mbstring/tests/018.inc
ext/mbstring/tests/019.inc
ext/mbstring/tests/019.phpt:
fixed some errors of mbstring in regression tests.
* ext/mbstring/mbstring.c
ext/mbstring/php_mbregex.c
ext/mbstring/tests/005.inc
ext/mbstring/tests/006.inc
ext/mbstring/tests/006.phpt
ext/mbstring/tests/007.phpt
ext/mbstring/tests/009.inc
ext/mbstring/tests/010.inc
ext/mbstring/tests/010.phpt
ext/mbstring/tests/014.inc
ext/mbstring/tests/014.phpt
ext/mbstring/tests/016.inc:
fixed errors of mbstring in regression tests.
2002-03-16 Jani Taskinen <sniper@iki.fi>
* NEWS:
- Do not use @ when you're merging the fixes to the release branch.
Instead, edit the NEWS file manually.
2002-03-16 Wez Furlong <wez.php@thebrainroom.com>
* main/php_streams.h
main/streams.c: some minor docu-in-header changes
2002-03-16 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* main/network.c:
Quick fix build error when ptrdiff_t is not defined in types.h or sys/types.h
* main/streams.c: ZTS build fix
2002-03-16 Wez Furlong <wez.php@thebrainroom.com>
* ext/ftp/php_ftp.c
ext/standard/file.c
main/php_streams.h
main/streams.c:
Allow php_stream_copy_to_stream to do nothing when used with code
that calculates a max length of zero. (Thanks again Marcus).
2002-03-16 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/standard/image.c: -use of corrected stream seek
2002-03-16 Wez Furlong <wez.php@thebrainroom.com>
* main/streams.c:
some tweaks for seek/read used in image.c (thanks Marcus)
* ext/standard/fsock.c
ext/standard/html.c
main/php_network.h
ext/ftp/php_ftp.c
ext/standard/file.c:
This should help with some build problems/warnings under win32.
Someone still needs to add the streams.c file to the MSVC
project/workspace though (there are so many that I don't really know
what I am doing :-).
2002-03-16 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/standard/image.c: -new streams
2002-03-16 Wez Furlong <wez.php@thebrainroom.com>
* main/main.c
main/network.c
main/php_network.h
main/php_streams.h
main/streams.c: more *'s
* ext/zlib/php_zlib.h
ext/zlib/zlib.c
ext/zlib/zlib_fopen_wrapper.c: change * formatting
* ext/standard/file.c
ext/standard/file.h
ext/standard/fsock.c
ext/standard/ftp_fopen_wrapper.c
ext/standard/html.c
ext/standard/html.h
ext/standard/http_fopen_wrapper.c
ext/standard/php_fopen_wrappers.h
ext/standard/php_image.h:
* formatting, plus remove some old fopen wrappers
* ext/standard/exec.c
ext/standard/basic_functions.c
ext/recode/recode.c
ext/pgsql/pgsql.c
ext/pdf/pdf.c
ext/ming/ming.c
ext/mailparse/mailparse.c
ext/hyperwave/hw.c
ext/gd/gd.c
ext/ftp/ftp.c
ext/ftp/ftp.h: change * formatting
2002-03-16 jim winstead <jimw@apache.org>
* ext/zlib/setup.stub
ext/yaz/setup.stub
ext/yp/setup.stub
ext/sysvsem/setup.stub
ext/sysvshm/setup.stub
ext/shmop/setup.stub
ext/sybase/setup.stub
ext/sybase_ct/setup.stub
ext/recode/setup.stub
ext/session/setup.stub
ext/readline/setup.stub
ext/pdf/setup.stub
ext/pgsql/setup.stub
ext/pcre/setup.stub
ext/oracle/setup.stub
ext/ovrimos/setup.stub
ext/odbc/setup.stub
ext/mysql/setup.stub
ext/oci8/setup.stub
ext/mnogosearch/setup.stub
ext/msql/setup.stub
ext/mcrypt/setup.stub
ext/mhash/setup.stub
ext/ldap/setup.stub
ext/imap/setup.stub
ext/informix/setup.stub
ext/hyperwave/setup.stub
ext/gd/setup.stub
ext/gettext/setup.stub
ext/filepro/setup.stub
ext/fdf/setup.stub
ext/dbase/setup.stub
ext/bcmath/setup.stub
ext/dba/setup.stub
ext/interbase/setup.stub:
the 'setup' script was removed more than two years ago.
these can be safely removed from the 4.2 branch, too.
2002-03-16 Andi Gutmans <andi@zend.com>
* main/php_streams.h:
- More whitespace. I really can't do the other files though...
* main/streams.c: - Change one strncpy() to strlcpy().
- Big indentation patch. I don't have strength to do all of the changed
- files but here's a good example. Please try and keep to the coding
- standards even if you think they suck :)
- Things to keep in mind:
- void *foo and not void * foo;
- if() { and not if()<TAB>{
- } else { and not {\nelse
-
- The streams stuff looks very cool though! :)
2002-03-15 Harald Radi <h.radi@nme.at>
* ext/rpc/com/com.c
ext/rpc/rpc.dsp
ext/rpc/rpc.h
ext/rpc/tests/test1.php
ext/rpc/handler.h
ext/rpc/php_rpc.h
ext/rpc/rpc.c: ongoing development ...
2002-03-15 Jani Taskinen <sniper@iki.fi>
* NEWS: MFH
* NEWS: This entry belongs under 4.2.0.
2002-03-15 Harald Radi <h.radi@nme.at>
* NEWS: MFH
2002-03-15 Wez Furlong <wez.php@thebrainroom.com>
* main/php_network.h
main/php_streams.h
main/streams.c
tests/strings/003.phpt
main/fopen_wrappers.c
main/fopen_wrappers.h
main/internal_functions.c.in
main/main.c
main/network.c
ext/zlib/zlib_fopen_wrapper.c
ext/standard/http_fopen_wrapper.c
ext/standard/image.c
ext/standard/info.c
ext/standard/php_fopen_wrapper.c
ext/standard/php_fopen_wrappers.h
ext/standard/php_image.h
ext/zlib/php_zlib.h
ext/zlib/zlib.c
ext/standard/exec.c
ext/standard/file.c
ext/standard/file.h
ext/standard/fsock.c
ext/standard/fsock.h
ext/standard/ftp_fopen_wrapper.c
ext/standard/html.c
ext/standard/html.h
ext/standard/basic_functions.c
ext/pgsql/pgsql.c
ext/recode/recode.c
ext/ming/ming.c
ext/pdf/pdf.c
ext/mailparse/mailparse.c
ext/hyperwave/hw.c
ext/interbase/interbase.c
ext/ftp/ftp.c
ext/ftp/ftp.h
ext/ftp/php_ftp.c
ext/gd/gd.c
ext/exif/exif.c
ext/bz2/bz2.c
ext/curl/curl.c
configure.in: New PHP streams...
2002-03-15 Harald Radi <h.radi@nme.at>
* ext/com/COM.c: MFH
* ext/com/COM.c:
fixed a bug that caused php to crash in php_COM_get_ids_of_names() (Harald, Paul)
2002-03-15 Jani Taskinen <sniper@iki.fi>
* NEWS: MFH
* NEWS: - Corrected these entries. (catched by Derick)
* NEWS:
- Fixed grammar, made some entries make more sense...etc. (proof read please :)
2002-03-15 Derick Rethans <d.rethans@jdimedia.nl>
* ext/domxml/php_domxml.c: - Fix proto (again)
* ext/domxml/php_domxml.c: - proto fixes
2002-03-15 jim winstead <jimw@apache.org>
* main/php.h: don't redefine NDEBUG if it is already defined. yeesh.
2002-03-15 Daniela Mariaschi <mariaschi@libero.it>
* ext/interbase/php_interbase.h
ext/interbase/interbase.c: added new ibase_fetch_assoc() php function
2002-03-15 Stig Bakken <ssb@fast.no>
* ext/xmlrpc/config.m4
ext/xslt/config.m4: * MFH: "new and improved" iconv test
* ext/iconv/config.m4: * MFH: yet another iconv fix
* ext/xslt/config.m4
ext/xmlrpc/config.m4: * "new and improved" iconv test
2002-03-15 Harald Radi <h.radi@nme.at>
* ext/rpc/handler.h
ext/rpc/php_rpc.h
ext/rpc/rpc.c
ext/rpc/rpc.h: fixed HashTable allocation
2002-03-15 Stig Bakken <ssb@fast.no>
* ext/dba/config.m4: * fix for db3 from ports on freebsd
2002-03-15 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* sapi/cli/CREDITS:
2002-03-15 Andi Gutmans <andi@zend.com>
* main/php.h:
- Revert assert fix until it becomes clear what was wrong with my previous
- fix. I don't see any warnings when building with VC++ English.
2002-03-15 Stig Bakken <ssb@fast.no>
* ext/iconv/config.m4:
* yet another iconv config fix, should be able to handle most or all
configurations now (giconv/iconv, static libs only, iconv in libc etc.)
2002-03-15 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* main/php.h: Avoid warnings under VC.
* NEWS: Added some fix. Clean up a bit.
2002-03-15 Wez Furlong <wez.php@thebrainroom.com>
* ext/standard/var.c: it's late; no more commits from me tonight...
* ext/standard/var.c: should have diffed first...
* ext/standard/var.c: fix for ZE2 compile
2002-03-15 Harald Radi <h.radi@nme.at>
* ext/rpc/.cvsignore
ext/rpc/CREDITS
ext/rpc/EXPERIMENTAL
ext/rpc/README
ext/rpc/com/com.c
ext/rpc/handler.h
ext/rpc/layer.h
ext/rpc/php_rpc.h
ext/rpc/rpc.c
ext/rpc/rpc.dsp
ext/rpc/tests/test1.php: rpc apstraction module
does only work with ZendEngine2
2002-03-14 Rasmus Lerdorf <rasmus@php.net>
* main/safe_mode.c: MFH of safe_mode.c typo
2002-03-14 Derick Rethans <d.rethans@jdimedia.nl>
* ext/standard/var.c: - Fix bug #16078
2002-03-14 Zeev Suraski <zeev@zend.com>
* ext/standard/info.c: Change case for consistency
* ext/standard/info.c: MFH
2002-03-14 Stefan Esser <s.esser@e-matters.de>
* main/safe_mode.c: fixed a typo within checkuid
2002-03-14 Andi Gutmans <andi@zend.com>
* main/config.w32.h:
- Define HAVE_ASSERT_H under Windows. There was a macro redefinition before
- this.
2002-03-14 Zeev Suraski <zeev@zend.com>
* main/php_version.h
configure.in:
Good suggestion, but I'm not sure we want to start receiving bug
reports with that version
2002-03-14 Wez Furlong <wez.php@thebrainroom.com>
* ext/standard/var.c: fix buglet
2002-03-14 Sterling Hughes <sterling@bumblebury.com>
* main/php_version.h
configure.in: update version
2002-03-14 Zeev Suraski <zeev@zend.com>
* configure.in
main/php_version.h: Childish, are we?
2002-03-14 Jani Taskinen <sniper@iki.fi>
* configure.in
main/php_version.h: - Fixed version
2002-03-14 Zeev Suraski <zeev@zend.com>
* ext/standard/info.c: Make it clearer what this entry means
* configure.in
main/php_version.h: Fix version number
2002-03-14 Derick Rethans <d.rethans@jdimedia.nl>
* ext/xmlrpc/xmlrpc-epi-php.c: - Whitespace part 1
2002-03-14 Stefan Esser <s.esser@e-matters.de>
* ext/filepro/filepro.c: fixed: last commit had debug code in it
* ext/filepro/filepro.c: fixed whitespace
fixed lots of possible bufferoverflows
fixed memoryleak
2002-03-14 Sebastian Bergmann <sb@sebastian-bergmann.de>
* sapi/apache2filter/README
sapi/apache2filter/sapi_apache2.c: MFH (Apache2Filter update).
2002-03-14 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/standard/var.c: Fixed var_dump() crash when there is recursion.
2002-03-14 Stefan Roehrich <sr@linux.de>
* NEWS: Added NEWS entry for gzencode() change.
* NEWS: Fixed NEWS entry, make it consistent with other entries.
2002-03-14 Sebastian Bergmann <sb@sebastian-bergmann.de>
* sapi/apache2filter/README:
Add note on which version of Apache 2 this SAPI module is compatible with.
2002-03-14 Sean Bright <elixer@erols.com>
* CODING_STANDARDS: Translate to English.
2002-03-14 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* main/php.h
CODING_STANDARDS
configure.in: Include/enable assert.h/assert() when it is available
2002-03-14 Jani Taskinen <sniper@iki.fi>
* main/config.w32.h: MFH fix for the include_path issue
* main/config.w32.h:
- Fixed bug: #16047, #15865, and propably a few more..
2002-03-13 Ludovico Magnocavallo <ludo@sumatrasolutions.com>
* pear/DB/ibase.php: fixed typo in modifyLimitQuery()
beginning of error code interpretation for tests compliance
2002-03-13 Stefan Roehrich <sr@linux.de>
* NEWS: Fixed NEWS entry.
* ext/zlib/tests/003.phpt
ext/zlib/zlib.c: Fix for #15930 in release branch.
* ext/zlib/tests/001.phpt
ext/zlib/zlib.c: Fix for #14939 in release branch.
2002-03-13 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* sapi/cli/php_cli.c: -release merge
2002-03-13 Jason Greene <jason@inetgurus.net>
* ext/standard/credits_ext.h: Regenerate Credits for Release
* scripts/credits
ext/overload/CREDITS
ext/w32api/CREDITS: Merge credits fixes
* ext/overload/CREDITS
ext/w32api/CREDITS: Fix CREDIT files, remove email address
* scripts/credits: Ignore extensions/sapis named skeleton
2002-03-13 Sascha Schumann <sascha@schumann.cx>
* acinclude.m4: > might not sufficiently update a timestamp.
echo > should be good enough and should be implemented by the shell.
2002-03-13 Sebastian Bergmann <sb@sebastian-bergmann.de>
* ext/standard/credits_ext.h: Fix credits.
2002-03-13 Jason Greene <jason@inetgurus.net>
* ext/standard/credits_sapi.h: Update credits in release branch
* ext/standard/credits_sapi.h: Update Credits
* ext/standard/credits_ext.h: Update Credits in release branch
* ext/standard/credits_ext.h: Update Credits
2002-03-13 Sascha Schumann <sascha@schumann.cx>
* ext/session/session.c:
Because of the feature "don't try to send a cookie, if the sid
was contained in get/post variables" (which I still am not convinced
of completely), we need a separate variable which determines whether
to define SID in the event that a cookie was not sent.
Noticed by: Matt Allen
* acinclude.m4: Some simplifications in PHP_ADD_SOURCES*
* pear/pear.m4
acinclude.m4
configure.in:
a bit of refactoring and making always_shared a nop in every day life
2002-03-13 Stig Bakken <ssb@fast.no>
* ext/xmlrpc/config.m4
ext/xslt/config.m4: * MFH: another libconv->libiconv typo
* ext/xmlrpc/config.m4
ext/xslt/config.m4: * another libconv->libiconv typo
2002-03-13 Sascha Schumann <sascha@schumann.cx>
* pear/pear.m4
acinclude.m4
configure.in:
Provide context-specific functions which yield the directories
of extensions (PHP 4 configure vs. self-contained module)
* ext/cpdf/config.m4
ext/cybercash/config.m4:
Fix leftovers from yesterday (s/PHP_EXTENSION/PHP_NEW_EXTENSION/).
2002-03-13 Christian Stocker <chregu@phant.ch>
* ext/domxml/php_domxml.c:
Return attribute name in node_name(), if it's a XML_ATTRIBUTE_NODE
* ext/domxml/php_domxml.c:
Return #document in node_name(), if it's a XML_DOCUMENT_NODE
2002-03-13 Sebastian Bergmann <sb@sebastian-bergmann.de>
* sapi/apache2filter/sapi_apache2.c: Sync with Apache2 Filter API change.
2002-03-13 Boian Bonev <boian@bonev.com>
* ext/vpopmail/php_vpopmail.c: fix all comments in protos
2002-03-13 Wez Furlong <wez.php@thebrainroom.com>
* ext/standard/aggregation.c:
I've altered my diagnosis of segfault/leak problem
* ext/standard/aggregation.c:
Fix some issues with ZE2, but now have some leaks.
2002-03-13 Tomas V.V.Cox <cox@idecnet.com>
* pear/tests/pear_error.phpt: No more lines on this test
* pear/PEAR.php: phpdoc update
* pear/PEAR.php
pear/tests/pear_error3.phpt:
Fix error handling selection when both class and global are set
2002-03-13 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/mbstring/mbfilter.c: Fixed a compiler warning
2002-03-13 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/tests/001.phpt: -remove filetime from test
* ext/exif/exif.c: -handling
* ext/exif/tests/001.phpt: -remove filetime from test
2002-03-12 Thomas V.V.Cox <cox@idecnet.com>
* pear/DB/pgsql.php:
Updated the regex of simpleQuery to support "(" and new lines
2002-03-12 Andi Gutmans <andi@zend.com>
* ext/standard/aggregation.c: - Compile fixes for Engine 2
* ext/sybase_ct/php_sybase_ct.c
ext/sybase/php_sybase_db.c
ext/standard/var_unserializer.re
ext/standard/browscap.c
ext/standard/var_unserializer.c
ext/pgsql/pgsql.c
ext/odbc/php_odbc.c
ext/mysql/php_mysql.c
ext/mssql/php_mssql.c
ext/msql/php_msql.c
ext/fbsql/php_fbsql.c:
- Allow duality between Engine 1 & 2 using ZEND_STANDARD_CLASS_DEF_PTR
2002-03-12 Frank M. Kromann <frank@frontbase.com>
* main/config.w32.h:
Changed to PHP_CONFIG_FILE_PATH use the environment variable SystemRoot
2002-03-12 Sascha Schumann <sascha@schumann.cx>
* ext/zlib/config0.m4: missed zlib.c
* ext/mysql/libmysql/Makefile.in
ext/mysql/Makefile.in: nuke old makefiles
* ext/aspell/Makefile.in
ext/aspell/config.m4
ext/cpdf/config.m4
ext/cpdf/Makefile.in: php_new_extension
* ext/xmlrpc/Makefile.in
ext/xmlrpc/libxmlrpc/Makefile.in: old makefiles
* ext/readline/Makefile.in
ext/readline/config.m4: php_new_extension
* ext/pcre/Makefile.in
ext/pcre/pcrelib/Makefile.in: remove old makefiles
* ext/odbc/Makefile.in
ext/odbc/config.m4
ext/pcntl/config.m4
ext/pcntl/Makefile.in
ext/ncurses/Makefile.in
ext/ncurses/config.m4
ext/hyperwave/config.m4
ext/hyperwave/Makefile.in: php_new_extension
* ext/db/config.m4: forgot to add _NEW_
* ext/db/config.m4
ext/db/Makefile.in
ext/cybercash/config.m4
ext/cybercash/Makefile.in: php_new_extension
* ext/xml/expat/Makefile.in
ext/xml/Makefile.in: Remove old Makefile templates
* ext/ctype/Makefile.in
ext/ctype/config.m4:
extension converted automatically to PHP_NEW_EXTENSION. Manually confirmed
2002-03-12 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c
ext/exif/test.txt
ext/exif/tests/001.phpt: -usability
-tests
2002-03-12 Sascha Schumann <sascha@schumann.cx>
* ext/zlib/config0.m4
ext/zlib/Makefile.in: php_new_extension
* ext/zip/Makefile.in
ext/zip/config.m4
ext/yp/Makefile.in
ext/yp/config.m4
ext/yaz/Makefile.in
ext/yaz/config.m4
ext/xslt/Makefile.in
ext/xslt/config.m4
ext/wddx/Makefile.in
ext/wddx/config.m4
ext/vpopmail/Makefile.in
ext/vpopmail/config.m4
ext/tokenizer/Makefile.in
ext/tokenizer/config.m4
ext/sysvshm/Makefile.in
ext/sysvshm/config.m4
ext/sysvsem/Makefile.in
ext/sysvsem/config.m4
ext/sybase_ct/Makefile.in
ext/sybase_ct/config.m4
ext/sybase/Makefile.in
ext/sybase/config.m4
ext/swf/Makefile.in
ext/swf/config.m4
ext/sockets/Makefile.in
ext/sockets/config.m4
ext/snmp/Makefile.in
ext/snmp/config.m4
ext/shmop/Makefile.in
ext/shmop/config.m4
ext/recode/Makefile.in
ext/recode/config.m4
ext/qtdom/Makefile.in
ext/qtdom/config.m4
ext/pspell/Makefile.in
ext/pspell/config.m4
ext/posix/Makefile.in
ext/posix/config.m4
ext/pgsql/Makefile.in
ext/pgsql/config.m4
ext/pfpro/Makefile.in
ext/pfpro/config.m4
ext/pdf/Makefile.in
ext/pdf/config.m4
ext/ovrimos/Makefile.in
ext/ovrimos/config.m4
ext/overload/Makefile.in
ext/overload/config.m4
ext/oracle/Makefile.in
ext/oracle/config.m4
ext/openssl/Makefile.in
ext/openssl/config.m4
ext/oci8/Makefile.in
ext/oci8/config.m4
ext/muscat/Makefile.in
ext/muscat/config.m4
ext/msql/Makefile.in
ext/msql/config.m4
ext/msession/Makefile.in
ext/msession/config.m4
ext/mnogosearch/Makefile.in
ext/mnogosearch/config.m4
ext/ming/Makefile.in
ext/ming/config.m4
ext/mhash/Makefile.in
ext/mhash/config.m4
ext/mcve/Makefile.in
ext/mcve/config.m4
ext/mcrypt/Makefile.in
ext/mcrypt/config.m4
ext/mcal/Makefile.in
ext/mcal/config.m4
ext/mbstring/Makefile.in
ext/mbstring/config.m4
ext/mailparse/Makefile.in
ext/mailparse/config.m4:
extension converted automatically to PHP_NEW_EXTENSION. Manually confirmed
* ext/ircg/config.m4: add makefile fragment manually
* ext/ldap/Makefile.in
ext/ldap/config.m4
ext/ircg/Makefile.in
ext/ircg/config.m4
ext/interbase/Makefile.in
ext/interbase/config.m4:
extension converted automatically to PHP_NEW_EXTENSION. Manually confirmed
* ext/informix/config.m4: add makefile fragment manually
* ext/ingres_ii/Makefile.in
ext/ingres_ii/config.m4
ext/informix/Makefile.in
ext/informix/config.m4
ext/imap/Makefile.in
ext/imap/config.m4
ext/icap/Makefile.in
ext/icap/config.m4
ext/gmp/Makefile.in
ext/gmp/config.m4
ext/gettext/Makefile.in
ext/gettext/config.m4
ext/gd/Makefile.in
ext/gd/config.m4
ext/ftp/Makefile.in
ext/ftp/config.m4
ext/fribidi/Makefile.in
ext/fribidi/config.m4
ext/filepro/Makefile.in
ext/filepro/config.m4
ext/fdf/Makefile.in
ext/fdf/config.m4
ext/fbsql/Makefile.in
ext/fbsql/config.m4
ext/domxml/Makefile.in
ext/domxml/config.m4
ext/dio/Makefile.in
ext/dio/config.m4
ext/dbx/Makefile.in
ext/dbx/config.m4
ext/dbplus/Makefile.in
ext/dbplus/config.m4
ext/dbase/Makefile.in
ext/dbase/config.m4
ext/dba/Makefile.in
ext/dba/config.m4
ext/cyrus/Makefile.in
ext/cyrus/config.m4
ext/cybermut/Makefile.in
ext/cybermut/config.m4
ext/curl/Makefile.in
ext/curl/config.m4
ext/crack/Makefile.in
ext/crack/config.m4
ext/ccvs/Makefile.in
ext/ccvs/config.m4
ext/calendar/Makefile.in
ext/calendar/config.m4
ext/bz2/Makefile.in
ext/bz2/config.m4
ext/exif/Makefile.in
ext/exif/config.m4:
extension converted automatically to PHP_NEW_EXTENSION. Manually confirmed
* ext/Makefile.in: unused file
2002-03-12 Stig Bakken <ssb@fast.no>
* ext/iconv/config.m4:
* MFH: fix compile problem on platforms without iconv in libc
* ext/iconv/config.m4:
* fix compile problem on platforms without iconv in libc
2002-03-12 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c: -return size of thumbnail even if it not read
2002-03-12 Stefan Roehrich <sr@linux.de>
* ext/zlib/tests/003.phpt
ext/zlib/zlib.c:
(PHP gzencode) Reimplementation of gzencode(). Now works as documented
(gzencode(string data [, int level [, int encoding_mode]])),
should fix #15930.
* ext/zlib/tests/001.phpt
ext/zlib/zlib.c:
(PHP gzinflate) Workaround for bug #14939 (buffer error in gzinflate()).
Fixed prototype and added test for #14939.
2002-03-12 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/tests/001.phpt: -reflect changes
-find image from run-tests.php
2002-03-12 Christian Stocker <chregu@phant.ch>
* ext/domxml/php_domxml.c: forgot SEPARATE_ZVAL, produced segfaults.
segfaulted only in 4_2_0 (not in HEAD and 4_0_7, strange...)
2002-03-12 Andreas Karajannis <Andreas.Karajannis@gmd.de>
* ext/odbc/config.m4:
Removed sqlrte from SAP DB liblist as it is not needed.
2002-03-12 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* README.TESTING: Catch up with recent test scripts changes
2002-03-12 Markus Fischer <mfischer@guru.josefine.at>
* ext/domxml/php_domxml.c: - Remove *FETCH() statements.
- Clean up WS and parenthesis indentation.
2002-03-12 Christian Stocker <chregu@phant.ch>
* ext/domxml/php_domxml.c:
nicer (optional) formated output in dump_mem and dump_mem_file
2002-03-12 Sebastian Bergmann <sb@sebastian-bergmann.de>
* ext/standard/array.c: Fix TSRMLS_CC.
2002-03-12 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/standard/string.c: Change php_addslashes() a little.
Since most users do not use magic_quote_sybase, be nicer to
users not using magic_quote_sybase.
* ext/standard/array.c: Make use of TSRMLS_C/D
* tests/bin-info.inc
run-tests.php:
Fix PHP version and sapi printed so that it does not print bogus
version and sapi name.
2002-03-12 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* EXTENSIONS: -reflect new state of ext/exif
* ext/exif/php_exif.h
ext/exif/exif.c
ext/exif/test.txt: -support for array tags
-better memory handling
-support for thumbnails in TIFF format
-new functions exif_imagetype
* ext/standard/image.c
ext/standard/php_image.h: -fixed bug 15174
-support for some broken jpegs: bug 13213
-better memory handling
-initial jpeg2000 support (only jpc not jp2,jb2,jpx)
2002-03-12 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* pear/DB/tests/driver/setup.inc:
Make pear tests find scripts needed at least.
2002-03-12 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/standard/image.c: -merged a wrong line
-one compiling issue
2002-03-12 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/session/tests/skipif.inc: Add missing skipif.inc
* run-tests.php:
Do not search php binary in search path, since we are not testing older builds.
Print SAPI used.
* run-tests.php: Use CGI binary when CGI SAPI is there.
Make "php run-tests.php" work with cli SAPI.
2002-03-12 Jani Taskinen <sniper@iki.fi>
* ext/odbc/php_odbc.h: MFH
* ext/odbc/php_odbc.h: - Fix more possible bugs (bug #16008 related)
2002-03-11 Derick Rethans <d.rethans@jdimedia.nl>
* ext/imap/php_imap.h: - MFH for bug #16008
* ext/imap/php_imap.h: - fix bug #16008
2002-03-11 Christian Stocker <chregu@phant.ch>
* ext/domxml/php_domxml.c
ext/domxml/php_domxml.h:
implemented domxml_elem_get_elements_by_tagname
new function domxml_doc_get_elements_by_tagname
new function domxml_doc_get_element_by_id (chregu)
2002-03-11 Markus Fischer <mfischer@guru.josefine.at>
* ext/iconv/iconv.c: - Slightly unify error/warning messages.
- Switch to zend_parse_parameters().
- Fix whitespaces.
2002-03-11 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* EXTENSIONS: -Change status of ext/exif
* ext/standard/image.c
ext/standard/php_image.h
ext/exif/exif.c: -fixes: memory handling & corrupted files
2002-03-11 Shane Caraveo <shane@caraveo.com>
* win32/php4ts.dsp: fix on more build config
2002-03-11 Sander Roobol <phy@wanadoo.nl>
* ext/bz2/bz2.c
ext/mcve/mcve.c: Maintain headers
2002-03-11 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* sapi/cli/CREDITS
sapi/cli/php_cli.c: -passing arguments to CLI, see: php -h
2002-03-11 Stig Bakken <ssb@fast.no>
* Makefile.global: * make "make test TESTS=..." work again
* pear/PEAR/Registry.php: * added file locking
* added file name to package map
2002-03-11 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c: Print function names in error messages
2002-03-11 Ben Mansell <ben@zeus.com>
* sapi/fastcgi/README.Apache:
Instructions for using FastCGI-PHP with Apache
* sapi/fastcgi/README.FastCGI:
Improved documentation for FastCGI SAPI. Documents the environment
variable tunings and the new command line usage.
* sapi/fastcgi/fastcgi.c:
Add command line option to FastCGI SAPI to make it bind & listen to a
socket. This makes setting up 'remote' fastcgi much easier.
2002-03-11 Sascha Schumann <sascha@schumann.cx>
* ext/xml/config.m4:
Add global include path, so that other extensions can access
the expat header.
* pear/Makefile.frag
configure.in: Invoke pear-related targets conditionally and
rename install-data-local target to install-pear.
Also remove PEAR_DIR, because it is unused.
* configure.in: Use standard PHP shell check syntax
* configure.in:
You don't need a C++ compiler to build 100% of PHP (and the largest part of
the extensions), so I don't see a reason why PHP should not build on
a system without a C++ compiler.
If your extension uses C++ objects, put PHP_REQUIRE_CXX into your
config.m4.
This should also be removed from the 4.2.0 branch, because it will
cause portability problems otherwise.
* sapi/thttpd/README: MFH: refining supported thttpd version
* sapi/thttpd/README: Add a note regarding which version we support
2002-03-11 Sebastian Bergmann <sb@sebastian-bergmann.de>
* sapi/cgi/libfcgi/os_win32.c: Fix warning, hope this is okay.
2002-03-11 Shane Caraveo <shane@caraveo.com>
* win32/php4ts.dsp: fix include paths for fcgi headers
2002-03-11 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c: WS and indent
* ext/pgsql/pgsql.c:
Add comments for constants. Remove unneeded constants included by mistake.
* ext/standard/reg.c: Small memory leak fix that does not matter much.
* ext/pgsql/pgsql.c: Fix possible build error under Windows.
2002-03-11 Sebastian Bergmann <sb@sebastian-bergmann.de>
* ext/standard/math.c: Fix thread-safe build.
2002-03-11 Jason Greene <jason@inetgurus.net>
* ext/sockets/sockets.c: Fix WS
2002-03-10 jim winstead <jimw@apache.org>
* ext/standard/math.c:
handle numeric strings. this means we're less picky about the argument
types, but the math functions aren't generally that picky.
2002-03-10 Markus Fischer <mfischer@guru.josefine.at>
* ext/standard/syslog.c: - Fix protos.
* ext/iconv/iconv.c: - MFH fix for #15799.
2002-03-10 Shane Caraveo <shane@caraveo.com>
* win32/php4ts.dsp: fix output directory
* sapi/cgi/cgi_main.c: woohoo, take some credit!
* sapi/cgi/cgi_main.c:
children should be zero by default, enable by setting PHP_FCGI_CHILDREN env var.
* win32/php4ts.dsp:
Update makefile for compiling with fastcgi under windows
* sapi/cgi/libfcgi/LICENSE.TERMS
sapi/cgi/libfcgi/fcgi_stdio.c
sapi/cgi/libfcgi/fcgiapp.c
sapi/cgi/libfcgi/include/fastcgi.h
sapi/cgi/libfcgi/include/fcgi_config.h
sapi/cgi/libfcgi/include/fcgi_config_x86.h
sapi/cgi/libfcgi/include/fcgi_stdio.h
sapi/cgi/libfcgi/include/fcgiapp.h
sapi/cgi/libfcgi/include/fcgiappmisc.h
sapi/cgi/libfcgi/include/fcgimisc.h
sapi/cgi/libfcgi/include/fcgio.h
sapi/cgi/libfcgi/include/fcgios.h
sapi/cgi/libfcgi/os_unix.c
sapi/cgi/libfcgi/os_win32.c
sapi/cgi/libfcgi/strerror.c
sapi/cgi/cgi_main.c: combine fastcgi capability with regular cgi binary
include fastcgi library for ease of windows builds
NOTE: included fastcgi library is modified for thread safety, but
fastcgi support in cgi_main.c is only written for single
threaded serving. This does not present any issue for using
fastcgi.
2002-03-10 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/mbstring/tests/007.phpt: fixed wrong include file.
* ext/mbstring/tests/skipif.inc: fixed module name iconv->mbstring.
2002-03-10 Stefan Esser <s.esser@e-matters.de>
* main/rfc1867.c: Fix: Now returns correct Content-Type for Opera 6.01
* main/rfc1867.c: Fix: Now returns correct Content-Type with Opera 6.01
2002-03-10 Markus Fischer <mfischer@guru.josefine.at>
* ext/iconv/iconv.c: - Fix crash in iconv_set_encoding(). [Closes #15799]
2002-03-10 Jani Taskinen <sniper@iki.fi>
* ext/standard/tests/aggregation/aggregate.lib
ext/standard/tests/aggregation/aggregate.lib.php
ext/standard/tests/aggregation/aggregate.phpt
ext/standard/tests/aggregation/aggregate_methods.phpt
ext/standard/tests/aggregation/aggregate_methods_by_list.phpt
ext/standard/tests/aggregation/aggregate_methods_by_regexp.phpt
ext/standard/tests/aggregation/aggregate_properties.phpt
ext/standard/tests/aggregation/aggregate_properties_by_list.phpt
ext/standard/tests/aggregation/aggregate_properties_by_regexp.phpt
ext/standard/tests/aggregation/aggregation_info.phpt
ext/standard/tests/aggregation/deaggregate.phpt:
- Renamed aggregate.lib.php -> aggregate.lib (.php files are always deleted bycvsclean)
2002-03-09 Jani Taskinen <sniper@iki.fi>
* Makefile.in
build/rules.mk: - Fixed bug #15748 (fixed otherwise in 4.3.0-dev)
* ext/domxml/config.m4: MFH fix for bug #15686 and some exslt fix.
* ext/domxml/config.m4: - Fixed bug: #15686
* ext/ming/config.m4: MFH fix for #15190
* ext/ming/config.m4: - Fixed bug: #15190
2002-03-09 Thomas V.V.Cox <cox@idecnet.com>
* pear/DB/IDEAS: more wishes :-)
2002-03-09 Ludovico Magnocavallo <ludo@sumatrasolutions.com>
* pear/DB/STATUS: updated status for ibase with working tests
* pear/DB/tests/ibase/05sequences.phpt: new test, passed
2002-03-09 Sander Roobol <phy@wanadoo.nl>
* ext/standard/datetime.c:
Oops... 1 digit is allowed too! Reverting my fix.
2002-03-09 Stig Bakken <ssb@fast.no>
* pear/HTML/Form.php: * added addPlain() by Ted Shieh
2002-03-09 Jason Greene <jason@inetgurus.net>
* ext/sockets/sockets.c: MFH: Recent Bug Fixes
* ext/sockets/sockets.c: Fix build on win32
* ext/sockets/sockets.c:
Fixed bug where NULL specified in sec was not waiting infinately as it should
Fixed bug where socket_select was not producing an error message on error
Fixed bug where -1 was getting returned instead of FALSE in socket_recv(),
socket_send(), socket_sendto(), and socket_select()
2002-03-09 Jani Taskinen <sniper@iki.fi>
* main/main.c: MFH
* ext/ctype/ctype.c: MFH the MacosX compile fix.
* ext/session/session.c: whitespace..
* main/main.c:
- Commented out the space escaping. Works now as it did before.
2002-03-08 Joseph Tate <jtate@mi-corporation.com>
* ext/domxml/php_domxml.c:
- Fixed a coredump involved in the domxml_unlink() function. Refer to bug #14522
for more details.
2002-03-08 Christian Stocker <chregu@phant.ch>
* ext/domxml/php_domxml.c:
implemented domxml_elem_get_attribute_node(attrname) (chregu)
2002-03-08 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c: -support for out of section data
2002-03-08 Sander Roobol <phy@wanadoo.nl>
* tests/basic/003.phpt
tests/basic/004.phpt
tests/basic/005.phpt
ext/session/tests/001.phpt
ext/session/tests/002.phpt
ext/session/tests/003.phpt
ext/session/tests/004.phpt
ext/session/tests/005.phpt
ext/session/tests/006.phpt
pear/tests/pear_error.phpt
tests/basic/002.phpt
ext/exif/tests/002.phpt
ext/gmp/tests/002.phpt: Fixed many tests, mostly incorrect paths.
2002-03-08 Joseph Tate <jtate@mi-corporation.com>
* ext/domxml/config.m4:
Added linking files to make build compatible with RH 7.2's updated libxslt
packages. Should not break when compiling with older versions. This may
fix bug #15942 as well.
Configure was giving a Warning message without these lines when --with-xslt was
specified.
2002-03-08 Sander Roobol <phy@wanadoo.nl>
* ext/standard/datetime.c:
(php_date) Fixed 'r' modifier to always return two digits for the day
value (see RFC 822) (#15952).
2002-03-08 Sascha Schumann <sascha@schumann.cx>
* ext/ircg/ircg.c:
Add identifier which terminates a connection upon receiving a specific
CTCP message. The message must come from the specified user or will
be ignored. This can be used to disconnect a large number of users
when an event adjourns.
Improve error reporting by notifying the IRC server why a HTTP
connection failed.
Fix a prototype comment
* ext/ircg/config.m4:
Adding an existing fragment is implicitly done by PHP_EXTENSION
2002-03-08 Ludovico Magnocavallo <ludo@sumatrasolutions.com>
* pear/DB/TESTERS: added interbase tester (myself) =)
* pear/DB/STATUS:
changed status of ibase error mapping support to implemented, but without tests
* pear/DB/tests/ibase/02fetch.phpt
pear/DB/tests/ibase/03simplequery.phpt
pear/DB/tests/ibase/04numcols.phpt
pear/DB/tests/ibase/06prepexec.phpt
pear/DB/tests/ibase/10errormap.phpt
pear/DB/tests/ibase/connect.inc
pear/DB/tests/ibase/mktable.inc
pear/DB/tests/ibase/skipif.inc:
all tests working except tests 6 and 10, still broken
* pear/DB/ibase.php: beginning of error mapping support for Interbase
added ibaseRaiseError() method and errorcode_map hash
2002-03-08 Hartmut Holzgraefe <hartmut@six.de>
* ext/ctype/ctype.c:
reimplementation using macro instead of function pointer ( Bug #15951 )
2002-03-08 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/test.txt
ext/exif/example.php
ext/exif/exif.c: -change IsColor from non zero to 1
-new test and example for documentation
2002-03-08 Christian Stocker <chregu@phant.ch>
* ext/domxml/php_domxml.c:
domxml_elem_remove_attribute(attibutename) is now implemented (chregu)
2002-03-08 Edin Kadribasic <edink@proventum.net>
* sapi/cli/php_cli.c: Cleaned up previous commit.
* sapi/cli/php_cli.c:
- Added -r option to the CLI version of PHP which executes a piece of PHP
code directly from the commmand line.
2002-03-08 Christian Stocker <chregu@phant.ch>
* ext/domxml/php_domxml.c:
added formatting option to domxml_dump_mem() (chregu)
2002-03-08 Jani Taskinen <sniper@iki.fi>
* main/main.c: - MFH (fix for the phpinfo() output)
2002-03-08 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/tests/001.phpt: -Changes according to exif.c 1.55
* ext/exif/exif.c: -Support for IFD Arrays
* ext/exif/exif.c
ext/standard/image.c: TIFF support for 'non' digicam files
2002-03-07 Joseph Tate <jtate@mi-corporation.com>
* ext/domxml/php_domxml.c:
Commented out a few lines that were causing a segfault in the unlink code.
This fixes bug #14522. I've tested that it does not cause a segfault under
RH 7.2, and retains all functionality. I recommend that this patch be
considered for the PHP_4_2_0 tree as well, as having a function that core
dumps every time is a bad thing(TM).
2002-03-07 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/gd/config.m4: revert my patch to fix freetype2 related problem.
2002-03-07 Jani Taskinen <sniper@iki.fi>
* main/main.c:
- Fixed the phpinfo() tables not to blow up when using very long
configure line.
* ext/exif/exif.c:
- Fixed some compile warnings and removed bogus comments.
2002-03-07 Sascha Schumann <sascha@schumann.cx>
* ext/session/tests/001.phpt
ext/session/tests/003.phpt
ext/session/tests/004.phpt
ext/session/tests/005.phpt
ext/session/tests/006.phpt:
These tests currently depend on register_globals=1
2002-03-07 Jason Greene <jason@inetgurus.net>
* NEWS: Merge News Entry
* NEWS: News update
2002-03-07 Sascha Schumann <sascha@schumann.cx>
* Makefile.global: remove -module, it is added by configure.in
* Makefile.global: Update test target from rules.mk
2002-03-07 Jon Parise <jon@csh.rit.edu>
* ext/ftp/ftp.c: MFH r1.45: header file correction
2002-03-07 Jason Greene <jason@inetgurus.net>
* ext/mysql/config.m4
ext/mysql/libmysql/libmysql.c:
Disallow mysql's 'LOAD LOCAL' when safe mode is enabled
2002-03-07 Sascha Schumann <sascha@schumann.cx>
* Makefile.global: Readd ZEND_EXTRA_LIBS (as in Makefile.in rev 1.106).
2002-03-07 Jon Parise <jon@csh.rit.edu>
* ext/ftp/ftp.c:
Correct the header file ordering. From 'man 3 inet' (FreeBSD 4.5):
2002-03-07 Derick Rethans <d.rethans@jdimedia.nl>
* build/build2.mk: - Fix typo in warning suppressor
2002-03-07 Frank M. Kromann <frank@frontbase.com>
* main/config.w32.h: Revert uppercase directory name to lower case.
2002-03-07 Sascha Schumann <sascha@schumann.cx>
* configure.in: ze2 handling
2002-03-07 Frank M. Kromann <frank@frontbase.com>
* main/config.w32.h
win32/crypt_win32.c
win32/crypt_win32.h
win32/php4dllts.dsp: Enabling crypt() on Win32
2002-03-07 Sascha Schumann <sascha@schumann.cx>
* configure.in: Build libphp4.la as a module which can be dlopened.
This should not make a difference on common platforms,
but maybe esoteric ones.
2002-03-07 Joseph Tate <jtate@mi-corporation.com>
* ext/domxml/php_domxml.c:
Reverting the reverted patch. I hope this is the last time. No added functionality. Just a bug fix of #15918
* ext/domxml/php_domxml.c:
Reverting patch at Derick's request. Reverted to 1.118
2002-03-07 Sascha Schumann <sascha@schumann.cx>
* acinclude.m4: Fix typo
2002-03-07 Frank M. Kromann <frank@frontbase.com>
* ext/mbstring/unicode_table.h
ext/mbstring/unicode_table_ja.h
ext/mbstring/cp932_table.h
ext/mbstring/mbfilter.c
ext/mbstring/mbfilter_ja.c
ext/mbstring/mbstring.dsp: Making mbstring compile under WIn32
2002-03-07 Joseph Tate <jtate@mi-corporation.com>
* ext/domxml/php_domxml.c:
Added type attributes to XML_DTD_NODE and XML_ATTRIBUTE_NODE element types.
Reported in bug #15918.
2002-03-07 Sascha Schumann <sascha@schumann.cx>
* NEWS: some more information
2002-03-07 Sebastian Bergmann <sb@sebastian-bergmann.de>
* NEWS: Add NEWS entry for the new build system.
2002-03-07 Joseph Tate <jtate@mi-corporation.com>
* ext/domxml/php_domxml.c:
Added type attribute wrappers to the remaining node types that did not have
them. I.e. XML_ATTRIBUTE_NODE and XML_CDATA_SECTION_NODE. Mentioned in
Bug #15918.
* ext/domxml/TODO:
Added TODO item to modify new_child so that more than just element nodes
can be created.
2002-03-07 Derick Rethans <d.rethans@jdimedia.nl>
* ext/standard/var_unserializer.c: - Remove CVS things
2002-03-07 Sascha Schumann <sascha@schumann.cx>
* ext/standard/var_unserializer.c: touch file
* configure.in: From APR CVS.
fitz 02/03/07 07:37:09
Modified: build apr_hints.m4
Log:
update for Mac OS X. -traditional-cpp is no longer recommended.
2002-03-07 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/gd/config.m4: reverted my patch to fix freetype2 related problem.
2002-03-07 Sascha Schumann <sascha@schumann.cx>
* ext/dbplus/config.m4: Bad extension. Still using AC_ADD_INCLUDE!
* sapi/webjames/.cvsignore
sapi/servlet/.cvsignore
sapi/thttpd/.cvsignore
sapi/tux/.cvsignore
sapi/pi3web/.cvsignore
sapi/roxen/.cvsignore
sapi/isapi/.cvsignore
sapi/nsapi/.cvsignore
sapi/phttpd/.cvsignore
sapi/fastcgi/.cvsignore
sapi/fhttpd/.cvsignore
sapi/caudium/.cvsignore
sapi/cgi/.cvsignore
sapi/cli/.cvsignore
sapi/aolserver/.cvsignore
sapi/apache/.cvsignore
sapi/apache2filter/.cvsignore
main/.cvsignore
regex/.cvsignore
ext/zlib/.cvsignore
ext/zip/.cvsignore
ext/yp/.cvsignore
ext/xslt/.cvsignore
ext/yaz/.cvsignore
ext/xmlrpc/.cvsignore
ext/xmlrpc/libxmlrpc/.cvsignore
ext/xml/.cvsignore
ext/xml/expat/.cvsignore
ext/wddx/.cvsignore
ext/vpopmail/.cvsignore
ext/w32api/.cvsignore
ext/sysvshm/.cvsignore
ext/tokenizer/.cvsignore
ext/sybase_ct/.cvsignore
ext/sysvsem/.cvsignore
ext/swf/.cvsignore
ext/sybase/.cvsignore
ext/sockets/.cvsignore
ext/standard/.cvsignore
ext/snmp/.cvsignore
ext/skeleton/.cvsignore
ext/session/.cvsignore
ext/shmop/.cvsignore
ext/readline/.cvsignore
ext/recode/.cvsignore
ext/pspell/.cvsignore
ext/qtdom/.cvsignore
ext/posix/.cvsignore
ext/pdf/.cvsignore
ext/pfpro/.cvsignore
ext/pgsql/.cvsignore
ext/pcre/pcrelib/doc/.cvsignore
ext/pcre/pcrelib/testdata/.cvsignore
ext/pcre/.cvsignore
ext/pcre/pcrelib/.cvsignore
ext/ovrimos/.cvsignore
ext/pcntl/.cvsignore
ext/oracle/.cvsignore
ext/overload/.cvsignore
ext/oci8/.cvsignore
ext/odbc/.cvsignore
ext/openssl/.cvsignore
ext/ncurses/.cvsignore
ext/notes/.cvsignore
ext/mysql/libmysql/.cvsignore
ext/muscat/.cvsignore
ext/mysql/.cvsignore
ext/msql/.cvsignore
ext/mssql/.cvsignore
ext/mnogosearch/.cvsignore
ext/msession/.cvsignore
ext/mhash/.cvsignore
ext/ming/.cvsignore
ext/mcal/.cvsignore
ext/mcrypt/.cvsignore
ext/mailparse/tests/.cvsignore
ext/mbstring/.cvsignore
ext/java/.cvsignore
ext/ldap/.cvsignore
ext/mailparse/.cvsignore
ext/interbase/.cvsignore
ext/ircg/.cvsignore
ext/imap/.cvsignore
ext/informix/.cvsignore
ext/ingres_ii/.cvsignore
ext/hyperwave/.cvsignore
ext/icap/.cvsignore
ext/iconv/.cvsignore
ext/gettext/.cvsignore
ext/gmp/.cvsignore
ext/fribidi/.cvsignore
ext/ftp/.cvsignore
ext/gd/.cvsignore
ext/fdf/.cvsignore
ext/filepro/.cvsignore
ext/domxml/.cvsignore
ext/exif/.cvsignore
ext/fbsql/.cvsignore
ext/dbx/.cvsignore
ext/dio/.cvsignore
ext/dbase/.cvsignore
ext/dbplus/.cvsignore
ext/cyrus/.cvsignore
ext/db/.cvsignore
ext/dba/.cvsignore
ext/curl/.cvsignore
ext/cybercash/.cvsignore
ext/cybermut/.cvsignore
ext/cpdf/.cvsignore
ext/crack/.cvsignore
ext/ctype/.cvsignore
ext/ccvs/.cvsignore
ext/com/.cvsignore
ext/bcmath/libbcmath/src/.cvsignore
ext/bz2/.cvsignore
ext/calendar/.cvsignore
ext/aspell/.cvsignore
ext/bcmath/.cvsignore
ext/bcmath/libbcmath/.cvsignore
.cvsignore
ext/ext_skel: Remove .libs from .cvsignores, except /.
* TODO.BUILDv5: phpize is already working, remove from todo
* sapi/webjames/.cvsignore
sapi/webjames/Makefile.in
sapi/webjames/config.m4
sapi/thttpd/.cvsignore
sapi/thttpd/Makefile.in
sapi/thttpd/config.m4
sapi/tux/.cvsignore
sapi/tux/Makefile.in
sapi/tux/config.m4
sapi/servlet/Makefile.in
sapi/servlet/config.m4
sapi/roxen/config.m4
sapi/servlet/.cvsignore
sapi/servlet/Makefile.frag
sapi/roxen/.cvsignore
sapi/roxen/Makefile.in
sapi/pi3web/.cvsignore
sapi/pi3web/Makefile.in
sapi/pi3web/config.m4
sapi/nsapi/Makefile.in
sapi/nsapi/config.m4
sapi/phttpd/.cvsignore
sapi/phttpd/Makefile.in
sapi/phttpd/config.m4
sapi/isapi/.cvsignore
sapi/isapi/Makefile.in
sapi/isapi/config.m4
sapi/nsapi/.cvsignore
sapi/cgi/Makefile.in
sapi/cgi/config.m4
sapi/cli/.cvsignore
sapi/cli/Makefile.in
sapi/cli/config.m4
sapi/fastcgi/.cvsignore
sapi/fastcgi/Makefile.in
sapi/fastcgi/config.m4
sapi/fhttpd/.cvsignore
sapi/apache2filter/Makefile.in
sapi/apache2filter/config.m4
sapi/caudium/.cvsignore
sapi/caudium/Makefile.in
sapi/caudium/config.m4
sapi/cgi/.cvsignore
sapi/apache2filter/.cvsignore
sapi/aolserver/.cvsignore
sapi/aolserver/Makefile.in
sapi/aolserver/config.m4
sapi/apache/.cvsignore
sapi/apache/Makefile.in
sapi/apache/config.m4
pear/scripts/phpize.in
regex/.cvsignore
sapi/.cvsignore
sapi/Makefile.in
sapi/README
ext/zlib/.cvsignore
pear/.cvsignore
pear/Makefile.frag
pear/Makefile.in
pear/pear.m4
ext/xslt/.cvsignore
ext/yaz/.cvsignore
ext/yp/.cvsignore
ext/zip/.cvsignore
ext/xmlrpc/.cvsignore
ext/xmlrpc/config.m4
ext/xmlrpc/libxmlrpc/xmlrpc.m4
ext/xml/.cvsignore
ext/xml/config.m4
ext/xml/expat/.cvsignore
ext/w32api/.cvsignore
ext/wddx/.cvsignore
ext/sybase_ct/.cvsignore
ext/sysvsem/.cvsignore
ext/sysvshm/.cvsignore
ext/vpopmail/.cvsignore
ext/swf/.cvsignore
ext/sybase/.cvsignore
ext/sockets/.cvsignore
ext/standard/.cvsignore
ext/standard/Makefile.frag
ext/standard/Makefile.in
ext/standard/config.m4
ext/snmp/.cvsignore
ext/session/config.m4
ext/shmop/.cvsignore
ext/skeleton/.cvsignore
ext/readline/.cvsignore
ext/recode/.cvsignore
ext/session/.cvsignore
ext/session/Makefile.in
ext/pgsql/.cvsignore
ext/posix/.cvsignore
ext/pspell/.cvsignore
ext/qtdom/.cvsignore
ext/pdf/.cvsignore
ext/pdf/config.m4
ext/pfpro/.cvsignore
ext/pcre/pcrelib/.cvsignore
ext/pcre/pcrelib/doc/.cvsignore
ext/pcre/pcrelib/testdata/.cvsignore
ext/ovrimos/.cvsignore
ext/pcntl/.cvsignore
ext/pcre/.cvsignore
ext/pcre/config.m4
ext/openssl/.cvsignore
ext/oracle/.cvsignore
ext/overload/.cvsignore
ext/mysql/libmysql/.cvsignore
ext/mysql/libmysql/mysql.m4
ext/ncurses/.cvsignore
ext/notes/.cvsignore
ext/oci8/.cvsignore
ext/odbc/.cvsignore
ext/mysql/.cvsignore
ext/mysql/config.m4
ext/muscat/.cvsignore
ext/msql/.cvsignore
ext/mssql/.cvsignore
ext/msession/.cvsignore
ext/mnogosearch/.cvsignore
ext/ming/.cvsignore
ext/mhash/.cvsignore
ext/mcrypt/.cvsignore
ext/mcal/.cvsignore
ext/mbstring/.cvsignore
ext/ldap/.cvsignore
ext/java/.cvsignore
ext/ircg/.cvsignore
ext/ircg/Makefile.frag
ext/ircg/config.m4
ext/interbase/.cvsignore
ext/informix/.cvsignore
ext/informix/Makefile.frag
ext/ingres_ii/.cvsignore
ext/imap/.cvsignore
ext/iconv/.cvsignore
ext/icap/.cvsignore
ext/hyperwave/.cvsignore
ext/gmp/.cvsignore
ext/gettext/.cvsignore
ext/ftp/.cvsignore
ext/gd/.cvsignore
ext/fribidi/.cvsignore
ext/filepro/.cvsignore
ext/fdf/.cvsignore
ext/fbsql/.cvsignore
ext/exif/.cvsignore
ext/domxml/.cvsignore
ext/domxml/config.m4
ext/dio/.cvsignore
ext/dbx/.cvsignore
ext/dbplus/.cvsignore
ext/dbase/.cvsignore
ext/db/.cvsignore
ext/dba/.cvsignore
ext/cyrus/.cvsignore
ext/cybermut/.cvsignore
ext/cybercash/.cvsignore
ext/curl/.cvsignore
ext/ctype/.cvsignore
ext/crack/.cvsignore
ext/cpdf/.cvsignore
ext/com/.cvsignore
ext/ccvs/.cvsignore
ext/calendar/.cvsignore
ext/bz2/.cvsignore
ext/bcmath/libbcmath/src/Makefile.in
ext/bcmath/libbcmath/src/.cvsignore
ext/bcmath/libbcmath/.cvsignore
ext/bcmath/libbcmath/Makefile.in
ext/bcmath/config.m4
ext/bcmath/.cvsignore
ext/bcmath/Makefile.in
ext/aspell/.cvsignore
ext/ext_skel
build/sysv_makefile
build/shtool
build/ltlib.mk
build/fastgen.sh
build/library.mk
build/dynlib.mk
build/bsd_makefile
build/build2.mk
scan_makefile_in.awk
dynlib.m4
configure.in
TODO.BUILDv5
acinclude.m4
README.SELF-CONTAINED-EXTENSIONS
Makefile.in
.cvsignore
Makefile.frag
Makefile.global: Please welcome the new build system.
If you encounter any problems, please make sure to email sas@php.net
directly.
An introduction can be found on
http://schumann.cx/buildv5.txt
2002-03-07 Derick Rethans <d.rethans@jdimedia.nl>
* NEWS: - Update NEWS
2002-03-07 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/mbstring/tests/002.inc
ext/mbstring/tests/003.inc
ext/mbstring/tests/004.inc
ext/mbstring/tests/005.inc
ext/mbstring/tests/006.inc
ext/mbstring/tests/008.inc
ext/mbstring/tests/009.inc
ext/mbstring/tests/010.inc
ext/mbstring/tests/011.inc
ext/mbstring/tests/012.inc
ext/mbstring/tests/013.inc
ext/mbstring/tests/014.inc
ext/mbstring/tests/015.inc
ext/mbstring/tests/016.inc
ext/mbstring/tests/017.inc
ext/mbstring/tests/018.inc
ext/mbstring/tests/019.inc
ext/mbstring/tests/019.phpt
ext/mbstring/tests/common.inc
ext/mbstring/tests/common.php:
Rename common.php to common.inc for easier deletion of garbages.
e.g. "rm -f *.php"
2002-03-07 Jason Greene <jason@inetgurus.net>
* NEWS: MFH
2002-03-07 Hartmut Holzgraefe <hartmut@six.de>
* ext/mcve/mcve.c: more proto stuff
2002-03-07 Jason Greene <jason@inetgurus.net>
* NEWS: Add news entries representing the sockets rework.
2002-03-07 Hartmut Holzgraefe <hartmut@six.de>
* ext/mcve/mcve.c: proto fixes:
- changed 'double' to 'float'
- changed 'int' to 'resource' where appropriate
- format change: proto has to be on a single line and description
on the very next one, some tools still rely on this
2002-03-06 Dan Kalowsky <dank@deadmime.org>
* NEWS: iconv is back
2002-03-06 Derick Rethans <d.rethans@jdimedia.nl>
* main/php_version.h
configure.in: - Bump version numbers on HEAD
2002-03-06 Jani Taskinen <sniper@iki.fi>
* NEWS:
- Cleaned this abit (no such long stuff should be here if it can be found
in Manual...and if it's not in manual yet, ADD IT!
- Also moved some of the major changes in the beginning where people
might even notice them. We should re-arrange this better btw.
2002-03-06 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/tests/001.phpt
ext/exif/tests/002.phpt
ext/exif/tests/test1.jpg
ext/exif/tests/test2.jpg: - standard test scripts for exif
* ext/exif/exif.c: -comments
2002-03-06 James Cox <james@awpimajes.com>
* NEWS: fixed my foobarred news entry
2002-03-06 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c: -comments
2002-03-06 Jason Greene <jason@inetgurus.net>
* ext/sockets/php_sockets.h
ext/sockets/sockets.c: Sockets Rework Patch 3 of 3
Nuked all fd code
Rewrote socket_select to use arrays instead of the fd code
(This has the side-effect of fixing quite a few bugs)
2002-03-06 Derick Rethans <d.rethans@jdimedia.nl>
* ext/interbase/interbase.c:
- Fix for bug #12383 and #14755: 105.05$ becomes 105.5$ (Patch by: Giancarlo
Niccolai <giancarlo@niccolai.org>)
2002-03-06 James E. Flemer <jflemer@acm.jhu.edu>
* ext/standard/dir.c:
(PHP opendir) Changed CHECKUID_ALLOW_ONLY_DIR to CHECKUID_ALLOW_ONLY_FILE
so that relative paths (vs absolute) work correctly.
2002-03-06 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/test.txt:
-updated test to reflect third parameter of exif_read_data
* ext/exif/exif.c: -missing efree
-incorrect index/length computing: left from jhead
2002-03-06 Dan Kalowsky <dank@deadmime.org>
* ext/standard/html.c:
quelling a warning, and ensuring now undefined behavior
* ext/posix/posix.c:
When #if BLAHING a section, ensure to make it's prototype included. Returns
build capability to MacOSX.
2002-03-06 Derick Rethans <d.rethans@jdimedia.nl>
* ext/sybase_ct/php_sybase_ct.c
ext/sybase/php_sybase_db.c:
- Add 'appname' parameter to sybase_connect. (Patch by Christophe Sollet
<csollet@coleebris.com>)
* sapi/cgi/cgi_main.c: - Put them back (and do it right)
2002-03-06 Sascha Schumann <sascha@schumann.cx>
* ext/session/session.c:
Do the estrdups after checking for parameter constraints.
No real memory leaks though, because they are catched by the
memory manager.
* ext/session/mod_mm.c: Did not revert back enough.
This patch does not make sense, because it enforces the existence
of a single directory.
* ext/session/session.c:
SID shall be defined to name=id, if the client did not supply
a cookie.
* ext/session/mod_files.c
ext/session/mod_user.c
ext/session/php_session.h
ext/session/session.c:
Merge in session API changes (carry around tsrm context)
Now PHP_SESSION_API is defined to the date of the last change,
so that externa source-code can handle changes more gracefully.
* ext/session/session.c: Always initialize the track-vars
2002-03-06 Derick Rethans <d.rethans@jdimedia.nl>
* sapi/cgi/cgi_main.c: - Remove unused variables
* ext/posix/posix.c: - More ZTS fixes
* ext/iconv/iconv.c: - Fix build with ZTS
2002-03-06 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/test.txt: -updated test
* ext/exif/exif.c
ext/exif/php_exif.h: -new working thumbnail code
-everything uses new data structures
-new function exif_thumbnail
2002-03-06 Sascha Schumann <sascha@schumann.cx>
* ext/session/mod_files.c
ext/session/mod_mm.c
ext/session/mod_user.c
ext/session/php_session.h
ext/session/session.c: Weep out all recent commits of Yasuo.
I don't have time right now to leave in the good ones and remove
only the bad ones.
There are some semantical changes which I reject, because
they aim at fixing a bug which is at a completely other location.
Then SID does not gefined anymore properly. (This broken patch
has not been sent to me at all.)
Also, there were *so* many whitespace changes which already
make these commits bogus.
2002-03-06 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/session/mod_mm.c: Fixed typo :)
* ext/session/mod_mm.c:
Use static mm file save path. Now we can safely stop web server at start up when there is an error. Older mm uses static mm file path anyway.
* ext/session/mod_files.c: Fix crash bug #14232
* ext/session/mod_mm.c: Make php start even with wrong save_path.
2002-03-06 Jason Greene <jason@inetgurus.net>
* ext/sockets/php_sockets.h
ext/sockets/sockets.c: Socket Rework Patch 2
Redesigned socket_recv() as outlined on php-dev
Modified socket_last_error() to no longer clear the error
Added socket_clear_error()
Fixed socket_set_nonblock()
Added socket_set_block()
Fixed a proto
Saved 1 byte of RAM : )
2002-03-06 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/session/session.c: Oops. Fix compile failure
* ext/session/session.c:
Using session_save_path() after starting session is obvious error.
Riase E_NOTICE error instead of E_WARNING. Since it is valid if
user uses session_save_path() with session_module_name().
* ext/session/session.c:
Return FALSE when session_module_name() failed. Fix a little leak.
* ext/session/session.c:
Raise error when session module failed to open or read
* ext/session/mod_user.c
ext/session/php_session.h: More TSRM work
* ext/session/session.c
ext/session/mod_user.c
ext/session/mod_files.c: Remove TSRMLS_FETCH() and use TSRMLS_C/TSRMLS_D
2002-03-05 Markus Fischer <mfischer@guru.josefine.at>
* NEWS: - Added recent changes done in ext/posix
2002-03-05 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/session/mod_mm.c: Fixed crash with mm save handler
* ext/session/session.c: Fix bug #15322 and fix a little memory leak
2002-03-05 Zeev Suraski <zeev@zend.com>
* ext/session/session.c: MFH
* ext/session/session.c:
Make $_SESSION and $HTTP_SESSION_VARS links to each other
2002-03-05 Stig Bakken <ssb@fast.no>
* pear/tests/pear_config.phpt: * PEAR_Config test complete
2002-03-05 James Cox <james@awpimajes.com>
* win32/install.txt: adding installation comments for 4.1.2
2002-03-05 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c: -fixes
-changed internal data structures
2002-03-05 Stig Bakken <ssb@fast.no>
* pear/tests/merge.input
pear/tests/pear_config.phpt
pear/tests/toonew.conf
pear/tests/user2.input: * update PEAR_Config test
* pear/PEAR/Config.php: * fix singleton() so it actually works
* insert file format version in written files
* add getSetValues() method for listing the valid values for a set value
2002-03-05 Dan Kalowsky <dank@deadmime.org>
* ext/odbc/php_odbc.c:
Breaking BC, but making odbc_fetch_into behavior more consistent
2002-03-05 Markus Fischer <mfischer@guru.josefine.at>
* ext/posix/php_posix.h
ext/posix/posix.c:
- Introduced posix_errno() (get error number from last error message) and
posix_strerror() (convert error number into error string).
- Do not output any error message if any of the function fails with FALSE
return value. The proper way now is to call posix_errno() and
posix_strerror() after encountering an error condition.
- Function not support on a system no longer issue a 'not available' error
but simply don't exist so we can safely use 'function_exists'.
- Fixed protos.
- Use new parameter parsing API.
- posix_uname() may be aware of 'domainname' (GNU extension)
- posix_getgrnam(), posix_getgrgid(): the returned information does no
longer contains mixture of string and numbered keys (hash / array)
but contains key 'member' with an array of all members in a list
(or an empty array). This breaks BC but is the right thing IMHO.
2002-03-05 Stig Bakken <ssb@fast.no>
* pear/PEAR.php:
* fix PEAR::setErrorHandling() settings so they apply when using raiseError()
2002-03-05 Derick Rethans <d.rethans@jdimedia.nl>
* pear/DB/tests/driver/15quote.phpt
pear/DB/tests/driver/02fetch.phpt
pear/DB/tests/driver/03simplequery.phpt
pear/DB/tests/driver/04numcols.phpt
pear/DB/tests/driver/05sequences.phpt
pear/DB/tests/driver/06prepexec.phpt
pear/DB/tests/driver/08affectedrows.phpt
pear/DB/tests/driver/09numrows.phpt
pear/DB/tests/driver/10errormap.phpt
pear/DB/tests/driver/13limit.phpt
pear/DB/tests/driver/14fetchmode_object.phpt
pear/DB/tests/driver/01connect.phpt
pear/DB/tests/db_factory.phpt
pear/DB/tests/db_ismanip.phpt
pear/DB/tests/db_parsedsn.phpt
ext/xml/tests/001.phpt
ext/xml/tests/002.phpt
ext/xml/tests/003.phpt
ext/xml/tests/004.phpt
pear/DB/tests/db_error.phpt
tests/basic/002.phpt: - More test fixes
* ext/standard/tests/array/array_search.phpt
ext/standard/tests/file/001.phpt
ext/standard/tests/general_functions/004.phpt
ext/standard/tests/math/abs.phpt
ext/standard/tests/math/pow.phpt
ext/standard/tests/math/round.phpt
ext/standard/tests/strings/trim.phpt
ext/standard/tests/strings/wordwrap.phpt
ext/standard/tests/array/001.phpt
ext/standard/tests/aggregation/aggregate.phpt
ext/standard/tests/aggregation/aggregate_methods.phpt
ext/standard/tests/aggregation/aggregate_methods_by_list.phpt
ext/standard/tests/aggregation/aggregate_methods_by_regexp.phpt
ext/standard/tests/aggregation/aggregate_properties.phpt
ext/standard/tests/aggregation/aggregate_properties_by_list.phpt
ext/standard/tests/aggregation/aggregate_properties_by_regexp.phpt
ext/standard/tests/aggregation/aggregation_info.phpt
ext/standard/tests/aggregation/deaggregate.phpt:
- Fix tests to work with CLI
* ext/mcrypt/tests/001.phpt: - Fix mcrypt tests
2002-03-05 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* README.TESTING: Fixed wrong description about CLI sapi usage.
Currently "make test" is running test script as
./sapi/cli/php -c php.ini-dist run-tests.php
"make test" does not work... I'm supposing this
will be changed to use CGI sapi for now.
* README.TESTING: Added README.TESTING
2002-03-05 Sebastian Bergmann <sb@sebastian-bergmann.de>
* win32/pws-php4cgi.reg
win32/install.txt: s/php.exe/php-cgi.exe/.
2002-03-05 Dan Kalowsky <dank@deadmime.org>
* ext/odbc/birdstep.c: Added a comment for future reference
2002-03-05 Jason Greene <jason@inetgurus.net>
* ext/sockets/sockets.c: Style Improvement
2002-03-05 Stig Bakken <ssb@fast.no>
* pear/PEAR/Config.php
pear/tests/pear_config.phpt:
* fixed a couple of bugs in PEAR_Config revealed by test
2002-03-05 Frank M. Kromann <frank@frontbase.com>
* ext/dbase/dbase.c: Killing compiler warning
* ext/dbase/dbf_rec.c: Making dbase compule under WIn32
* main/php_ini.c: Killing compiler warning on Win32
2002-03-04 Dan Kalowsky <dank@deadmime.org>
* ext/iconv/config.m4
ext/iconv/php_iconv.h:
Fix for Bug 14423. Enables FreeBSD to use iconv functionality.
2002-03-04 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/test.txt: - also test TIFF support in GetImageSize
* ext/exif/exif.c: - Read IsColor for TIFF
2002-03-04 Sebastian Bergmann <sb@sebastian-bergmann.de>
* win32/php4.dsp
win32/php4ts.dsp: Rename Win32 SAPI/CGI binary to php-cgi.exe.
2002-03-04 Jon Parise <jon@csh.rit.edu>
* main/php_ticks.c:
Silence a warning under Solaris 8 (WorkShop Compilers 5.0 98/12/15 C 5.0).
2002-03-04 Derick Rethans <d.rethans@jdimedia.nl>
* NEWS:
- Update NEWS with changes by Shane for "fix force redirect crash under
multithreaded compile". (This is only in the published Windows binaries)
* php.ini-dist: - MFH for:
add stuff here also.
* sapi/cgi/cgi_main.c: - MFH for:
add comment for IIS users
* php.ini-recommended: - MFH for:
document force-redirect in php.ini
* sapi/cgi/cgi_main.c: - MFH for:
This is much better. With FORCE_CGI_REDIRECT turned on by default for compilation,
we can now define this in the ini file. So it can be turned on for apache, turned
off for IIS which does not have a redirect issue. Alternately, a different 'REDIRECT_STATUS'
environment var can be defined in case some web server out there needs it.
new ini vars
cgi.force_redirect 0|1
cgi.redirect_status_env ENV_VAR_NAME
* sapi/cgi/cgi_main.c: - MFH for:
fix force redirect crash under multithreaded compile
should be discused: fix redirect detection to only work with apache or netscape,
where we know they set an environment variable regarding redirect. IIS has
no security issue here. Don't know about other windows web servers.
2002-03-04 Sascha Schumann <sascha@schumann.cx>
* ext/standard/info.c: Add apparently missing include
2002-03-04 Derick Rethans <d.rethans@jdimedia.nl>
* main/config.w32.h
main/php.h: - MFH for: turn on force redirect for windows
* main/main.c: - Some more speed (and more consistency)
2002-03-04 Sascha Schumann <sascha@schumann.cx>
* main/php_ini.c
main/php_main.h
main/main.c
ext/standard/info.c:
Supply php_html_puts which escapes a whole string.. now fully works in ZTS
mode, too.
2002-03-04 Sebastian Bergmann <sb@sebastian-bergmann.de>
* ext/standard/image.c: Silence warning.
2002-03-04 Sascha Schumann <sascha@schumann.cx>
* ext/standard/info.c: revert last commit, puts does more through putc.
* ext/standard/info.c:
Use PHPWRITE to output data. Because this just outputs diagnostic
information, a few spaces won't hurt (and multiple ones are rendered
as one by browsers anyway). Micro-benchmarks which use phpinfo()
as a mean to generate output will yield more through-put now
(35 req/s vs. 83 req/s in tux).
2002-03-04 Derick Rethans <d.rethans@jdimedia.nl>
* sapi/apache/config.m4:
- Fix for bug #15572 (Patch by Ralf Nyr<79>n <ralf.nyren@educ.umu.se>)
2002-03-04 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* EXTENSIONS:
-expose the fact i am working on exif as discussed with Rasmus
* ext/standard/image.c: - TIFF support for GetImageSize
TIFF support for GetImageSize
* ext/exif/exif.c: - disabled debug information
- added missing width/height from primary ifd for TIFF
2002-03-04 James Cox <james@awpimajes.com>
* ext/odbc/php_birdstep.h
ext/odbc/php_birstep.h: typos suck.
2002-03-04 Jason Greene <jason@inetgurus.net>
* ext/sockets/sockets.c: Style mismatch: Jon's catch
2002-03-04 Stanislav Malyshev <stas@zend.com>
* ext/standard/datetime.c: cygwin fix
2002-03-04 Jon Parise <jon@csh.rit.edu>
* ext/session/session.c
main/output.c:
Silence warning under Solaris 8 (WorkShop Compilers 5.0 98/12/15 C 5.0).
2002-03-04 Derick Rethans <d.rethans@jdimedia.nl>
* makerpm: - Fix a path and remove --with-imap
2002-03-04 Stig Bakken <ssb@fast.no>
* pear/PEAR/Config.php: PEAR_Config rewrite:
* Now supports (in theory) an arbitrary number of
config "layers" (different sets of configuration data with a defined
priority).
* Specify the type of config values so different frontends can make
user-friendly configuration interfaces. Valid types are currently
"string", "integer", "file", "directory", "set" and "password". The
set type lets you specify a limited set of values that the config
values must be selected from. Password values are stored
base64-encoded.
* Added phpdoc comments and some docs for config values.
* Added singleton method.
2002-03-04 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c:
-addition to last change: php_image.h must be included now
2002-03-04 James Cox <james@awpimajes.com>
* ext/odbc/php_velocis.h
ext/odbc/setup.stub
ext/odbc/velocis.c
main/build-defs.h.in
ext/odbc/birdstep.c
ext/odbc/config.m4
ext/odbc/php_birstep.h
ext/odbc/php_odbc.c
ext/odbc/php_odbc.h:
Changing the Velocis extension to now be called Birdstep, due to a product/company change.
added aliases for Velocis to the birdstep functions.
2002-03-04 Sascha Schumann <sascha@schumann.cx>
* ext/standard/url_scanner_ex.c
ext/standard/url_scanner_ex.re: Restore use of inline
* build/build2.mk
build/buildcheck.sh: Remove note, suppress warning
* sapi/tux/php_tux.c: Reduce operations in the ub_write loop.
* sapi/tux/php_tux.c:
Free status line, initialize number_vec, correctly account for
the number of bytes in the document, avoid strcpy/strlen.
2002-03-04 Rasmus Lerdorf <rasmus@php.net>
* ext/standard/php_image.h
ext/exif/exif.c:
Let getimagesize() and read_exif_data() share the same constants to
promote a little bit of code reuse here on two very similar problems.
2002-03-04 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/test.php
ext/exif/test.txt: -Updated test.txt and provided test.php
* ext/exif/exif.c: -Added TIFF support
-Changed parameters after checking bugdatabase and discussion with
Rasmus: 1st=Filename, 2nd=NeededSections
2002-03-04 Jason Greene <jason@inetgurus.net>
* ext/sockets/sockets.c:
Patch 1 of 3 (2 in 3 still in progress) of sockets rework
Abstracted string -> ipv4 value conversion which unifies all functions
Standardized Host Lookups
Fixed Broken host error values
Fixed error detection in sendmsg
Added some safety struct zeroing
Modified bind to consitentlyy use sockaddr_storage(not just for AF_UNIX)
2002-03-03 Zak Greant <zak@mysql.com>
* build/buildcheck.sh:
Added message regarding expected error messages for ./buildconf
2002-03-03 James E. Flemer <jflemer@acm.jhu.edu>
* main/safe_mode.c:
Added case for root directory when mode is not
CHECKUID_ALLOW_ONLY_DIR.
* main/safe_mode.c:
Added case for root directory when mode is
CHECKUID_ALLOW_ONLY_DIR.
* ext/standard/dir.c: Added safe_mode checks on path.
2002-03-03 Thomas V.V.Cox <cox@idecnet.com>
* pear/DB/MAINTAINERS: Updated maintainers
2002-03-03 Derick Rethans <d.rethans@jdimedia.nl>
* NEWS: - Tidy up NEWS a little bit
2002-03-03 Alex Waugh <alex@alexwaugh.com>
* sapi/webjames/README
sapi/webjames/config.m4: Updated build instructions
2002-03-02 Derick Rethans <d.rethans@jdimedia.nl>
* ext/pgsql/pgsql.c:
- Make the 2nd parameter to pgsql_fetch_* support NULL in case 3 parameters
are supplied, but you do not want to provide a row number yourself.
- Make the 2nd parameter to pgsql_fetch_* support NULL in case 3
parameters are supplied, but you do not want to provide a row number
yourself.
2002-03-02 Hartmut Holzgraefe <hartmut@six.de>
* ext/standard/math.c: php has no 'double', only 'float'
* ext/mcve/mcve.c
ext/mcve/php_mcve.h: tab/space mixture cleand up,
editor config comments added,
minor proto fixes
* ext/standard/aggregation.c
main/output.c: typo fix
2002-03-02 Zeev Suraski <zeev@zend.com>
* ext/session/session.c: MFH - crash bug fix
* ext/session/session.c: Fix another crash bug
2002-03-02 Hartmut Holzgraefe <hartmut@six.de>
* ext/ctype/config.m4: enable ctype functions by default
2002-03-02 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c:
Wrong brackets by rasmus...but sorry the fault was mine because i missed them...
i also decided to call the first working version 1.0a
by the way: currently i am working on tiff files and it looks like it may work
2002-03-02 Zeev Suraski <zeev@zend.com>
* main/php_version.h
configure.in: Bump those up too in case we ever release
* configure.in
main/php_version.h: Fix version number
* ext/session/session.c: MFH - crash bug fix
* ext/session/session.c: Fix a crash bug in the session module
2002-03-02 Derick Rethans <d.rethans@jdimedia.nl>
* ext/standard/string.c: - Fix warning message for join().
* ext/mcve/CREDITS
ext/tokenizer/CREDITS
ext/dbx/CREDITS: - Fix CREDITS files
* ext/gd/gd.c:
- Make GD functions only available if they really exist (Patch by
matslin@orakel.ntnu.no)
2002-03-02 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/mbstring/tests/001.phpt
ext/mbstring/tests/002.inc
ext/mbstring/tests/002.phpt
ext/mbstring/tests/003.inc
ext/mbstring/tests/003.phpt
ext/mbstring/tests/004.inc
ext/mbstring/tests/004.phpt
ext/mbstring/tests/005.inc
ext/mbstring/tests/005.phpt
ext/mbstring/tests/006.inc
ext/mbstring/tests/006.phpt
ext/mbstring/tests/007.inc
ext/mbstring/tests/007.phpt
ext/mbstring/tests/008.inc
ext/mbstring/tests/008.phpt
ext/mbstring/tests/009.inc
ext/mbstring/tests/009.phpt
ext/mbstring/tests/010.inc
ext/mbstring/tests/010.phpt
ext/mbstring/tests/011.inc
ext/mbstring/tests/011.phpt
ext/mbstring/tests/012.inc
ext/mbstring/tests/012.phpt
ext/mbstring/tests/013.inc
ext/mbstring/tests/013.phpt
ext/mbstring/tests/014.inc
ext/mbstring/tests/014.phpt
ext/mbstring/tests/015.inc
ext/mbstring/tests/015.phpt
ext/mbstring/tests/016.inc
ext/mbstring/tests/016.phpt
ext/mbstring/tests/017.inc
ext/mbstring/tests/017.phpt
ext/mbstring/tests/018.inc
ext/mbstring/tests/018.phpt
ext/mbstring/tests/019.inc
ext/mbstring/tests/019.phpt
ext/mbstring/tests/common.php
ext/mbstring/tests/skipif.inc: Add mbstring tests
* build/rules.mk: Use php.ini-dist as default config file for testing.
2002-03-02 Rasmus Lerdorf <rasmus@php.net>
* ext/exif/exif.c: Fix a couple of warnings
2002-03-02 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/iconv/iconv.c:
Improved iconv usage with libc's iconv. No overrun. More efficient memory
allocation.
Hopefully, all bugs reported for iconv will be resolved when users are using
libc iconv.
* ext/iconv/tests/eucjp2iso2022jp.inc
ext/iconv/tests/eucjp2iso2022jp.phpt
ext/iconv/tests/eucjp2sjis.inc
ext/iconv/tests/eucjp2sjis.phpt
ext/iconv/tests/eucjp2utf8.inc
ext/iconv/tests/eucjp2utf8.phpt
ext/iconv/tests/002.phpt: Add more tests for iconv
2002-03-02 Stig Bakken <ssb@fast.no>
* pear/tests/pear_autoloader.phpt
pear/tests/pear_config.phpt
pear/tests/pear_error.phpt
pear/tests/pear_error2.phpt
pear/tests/pear_error3.phpt
pear/tests/pear_error4.phpt
pear/tests/pear_registry.phpt: * more cli test fixes
* pear/DB/tests/db_error.phpt
pear/DB/tests/db_error2.phpt
pear/DB/tests/db_parsedsn.phpt
pear/DB/tests/mysql/02fetch.phpt
pear/DB/tests/mysql/03simplequery.phpt
pear/DB/tests/mysql/04numcols.phpt
pear/DB/tests/mysql/05sequences.phpt
pear/DB/tests/mysql/06prepexec.phpt
pear/DB/tests/mysql/09numrows.phpt
pear/DB/tests/mysql/10errormap.phpt
pear/DB/tests/mysql/12tableinfo.phpt
pear/DB/tests/mysql/13limit.phpt
pear/DB/tests/mysql/14fetchmode_object.phpt
pear/tests/pear_config.phpt
pear/tests/pear_error.phpt: * updated tests to work with cli
* pear/tests/pear1.phpt: fix test
* run-tests.php: * work with sapi/cli
2002-03-01 Rasmus Lerdorf <rasmus@php.net>
* ext/odbc/config.m4: In case we do a 4.1.3, add this trivial fix
2002-03-01 Edin Kadribasic <edink@proventum.net>
* main/main.c:
Added PHP_SAPI constant which contains the name of running SAPI.
2002-03-01 Derick Rethans <d.rethans@jdimedia.nl>
* ext/standard/url_scanner_ex.re
ext/standard/url_scanner_ex.c:
- Fix for Sun WorkShop 6 update 2 compiler (Bug #15812)
2002-03-01 Andrei Zmievski <andrei@ispi.net>
* TODO: *** empty log message ***
2002-03-01 Derick Rethans <d.rethans@jdimedia.nl>
* ext/interbase/interbase.c:
- Add support for returning NULL values from Interbase resultsets (Patch by
Daniela Mariaschi <mariaschi@libero.it>)
2002-03-01 Jani Taskinen <sniper@iki.fi>
* NEWS: - We haven't got the branch yet..
- Some typo fixes and correct grammar.
2002-03-01 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/msession/msession.c: Fix compiler warnings and header file path.
2002-03-01 Zeev Suraski <zeev@zend.com>
* ext/standard/array.c: Fix php_splice() to work with large values
2002-03-01 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/README: Update doc
* TODO: Added todo item for Java extention documentation.
* TODO-4.2.txt
TODO: Merge TODO-4.2.txt into TODO.
2002-03-01 Stig Bakken <ssb@fast.no>
* pear/PEAR/Command.php
pear/PEAR/Command/Common.php
pear/PEAR/Command/Install.php:
* code for install/uninstall/upgrade complete, not yet tested
2002-03-01 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* main/output.c: Do explicit test againt to FAILURE.
2002-03-01 Stig Bakken <ssb@fast.no>
* pear/PEAR/Packager.php:
* output a reminder to set CVS tags after packaging
* build/rules.mk: * use cli sapi to run tests
2002-03-01 Shane Caraveo <shane@caraveo.com>
* php.ini-dist: add stuff here also.
* sapi/cgi/cgi_main.c: add comment for IIS users
fix some whitespace
2002-03-01 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/php_exif.h
ext/exif/test.txt
ext/exif/.cvsignore
ext/exif/exif.c:
+Support for Photographer/Editor Copyright as associative array as this is a new feature the change (optionally being an array) has to be mentioned in documentation.
+New function exif_headername can be used to read the internal Tag namelist (was mainly created for debugging purpose but maybe somone writes code to create/update exif headers here).
+An internal version number is present.
+A testpage is supplied test.txt describes how the test works.
+The oldfunction read_exif_data has got an alias exif_read_data
As the old version of this module is very buggy i decided to implement the testpage (test.txt) and to create the alias. The test script only works with the alias as the old version does not pass tests. By the way it seems a good way to prepend 'exif_' to all functions in the module.
2002-03-01 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/snmp/snmp.c: Fix compiler warnings
* ext/standard/var.c
ext/zlib/zlib.c
main/main.c
main/output.c
main/php_output.h
ext/standard/basic_functions.c
ext/session/session.c:
Added ob_get_status() to get array of buffers and it's status.
(DO NOT document this function yet)
Fixed crash bug with ob_end_*() function. ob_end_*() will not delete
buffers that may not be deleted.
php_start_ob_buffer() and php_ob_set_internal_handler() takes parameter for
if the buffer created may be deleted or not.
Added 3rd parameter "bool erase" to ob_start(). If FALSE, buffer may not be
deleted until script finshes.
Changed ob_*() function that have void return type to bool. All ob_*()
functions return TRUE for success, FALSE for failure.
2002-03-01 Shane Caraveo <shane@caraveo.com>
* php.ini-recommended: document force-redirect in php.ini
* sapi/cgi/cgi_main.c:
This is much better. With FORCE_CGI_REDIRECT turned on by default for compilation,
we can now define this in the ini file. So it can be turned on for apache, turned
off for IIS which does not have a redirect issue. Alternately, a different 'REDIRECT_STATUS'
environment var can be defined in case some web server out there needs it.
new ini vars
cgi.force_redirect 0|1
cgi.redirect_status_env ENV_VAR_NAME
* sapi/cgi/cgi_main.c:
fix force redirect crash under multithreaded compile
should be discused: fix redirect detection to only work with apache or netscape,
where we know they set an environment variable regarding redirect. IIS has
no security issue here. Don't know about other windows web servers.
* main/config.w32.h
main/php.h: turn on force redirect for windows
2002-02-28 Jani Taskinen <sniper@iki.fi>
* ext/crack/config.m4: - Fixed a typo. (caught by jtate@php.net)
2002-02-28 Rasmus Lerdorf <rasmus@php.net>
* ext/gd/gd.c: Change fatal errors to warnings - fix bug #15797
2002-02-28 Derick Rethans <d.rethans@jdimedia.nl>
* ext/standard/basic_functions.c
ext/standard/var.c: - Make it a boolean
2002-02-28 Brad House <brad@mainstreetsoftworks.com>
* ext/mcve/mcve.c: Fix proto for mcve_initconn
2002-02-28 Edin Kadribasic <edink@proventum.net>
* NEWS: Inserted a note about CGI binary name change.
2002-02-28 Marc Boeren <M.Boeren@guidance.nl>
* ext/dbx/howto_extend_dbx.html: Updating docs (Mc)
2002-02-28 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/exif.c:
Changed file to match CODING_STANDARDS except function names that match jhead.c project. I think it is acceptable using naming conventions of other projects when borrowing code.
2002-02-28 Edin Kadribasic <edink@proventum.net>
* main/php_ini.c:
Removed CWD from php_ini_search_path when using CLI SAPI.
2002-02-28 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/sysvshm/sysvshm.c
sapi/aolserver/aolserver.c
sapi/apache2filter/php_functions.c
ext/mcrypt/mcrypt.c
ext/mhash/mhash.c: Use {NULL, NULL, NULL} to terminate function entry.
2002-02-28 Edin Kadribasic <edink@proventum.net>
* sapi/cgi/config.m4: Default name of CGI binary changed to php-cgi.
2002-02-28 Marc Boeren <M.Boeren@guidance.nl>
* NEWS: Added entry that I forgot when comitting the code (Mc)
2002-02-28 Sebastian Bergmann <sb@sebastian-bergmann.de>
* win32/imap_sendmail.c
scripts/conv_z_macros
sapi/apache2filter/php_apache.h
sapi/apache2filter/php_functions.c
sapi/isapi/php4isapi.c
sapi/apache/mod_php4.h
sapi/apache/php_apache.c
sapi/apache2filter/apache_config.c
pear/XML/Parser.php
pear/PEAR/Command/Install.php
pear/Schedule/At.php
pear/PEAR/Command/Common.php
pear/PEAR/Dependency.php
pear/PEAR/Installer.php
pear/PEAR/Packager.php
pear/PEAR/Registry.php
pear/PEAR/Remote.php
pear/PEAR/Uploader.php
pear/Net/Dig.php
pear/Net/SMTP.php
pear/PEAR/Command.php
pear/PEAR/CommandResponse.php
pear/PEAR/Common.php
pear/PEAR/Config.php
pear/Mail/mail.php
pear/Mail/sendmail.php
pear/Mail/smtp.php
pear/Net/Curl.php
pear/File/SearchReplace.php
pear/HTML/Common.php
pear/HTML/IT.php
pear/HTML/ITX.php
pear/HTML/IT_Error.php
pear/HTML/Menu_Browser.php
pear/HTML/Page.php
pear/HTML/Processor.php
pear/HTML/Select.php
pear/Experimental/Image/gbutton.php
pear/Experimental/Image/gtext.php
pear/File/Find.php
pear/File/Passwd.php
pear/DB/odbc.php
pear/DB/storage.php
pear/DB/sybase.php
pear/Date/Human.php
pear/Experimental/Image/color_helper.php
pear/DB/msql.php
pear/DB/mssql.php
pear/DB/mysql.php
pear/DB/oci8.php
pear/DB/ifx.php
pear/DB/dbase.php
pear/DB/fbsql.php
pear/DB/ibase.php
pear/DB/common.php
pear/Console/Getopt.php
pear/Archive/Tar.php
pear/CMD.php
pear/HTTP.php
pear/Mail.php
pear/PEAR.php
pear/System.php
main/php_open_temporary_file.h
main/php_output.h
main/php_reentrancy.h
main/php_sprintf.c
main/php_streams.h
main/php_ticks.c
main/php_ticks.h
main/reentrancy.c
main/safe_mode.c
main/snprintf.h
main/streams.c
main/build-defs.h.in
main/fopen_wrappers.h
main/network.c
main/php_content_types.c
main/php_globals.h
main/php_logos.c
main/php_network.h
main/php_open_temporary_file.c
ext/zlib/zlib_fopen_wrapper.c
main/SAPI.h
ext/xslt/xslt.c
ext/yaz/php_yaz.c
ext/yaz/php_yaz.h
ext/zip/php_zip.h
ext/zip/zip.c
ext/xslt/php_xslt.h
ext/xslt/sablot.c
ext/xmlrpc/xmlrpc-epi-php.c
ext/xslt/php_sablot.h
ext/xmlrpc/php_xmlrpc.h
ext/wddx/wddx.c
ext/xml/xml.c
ext/w32api/test_dll/test_dll.c
ext/wddx/php_wddx.h
ext/w32api/examples/uptime.php
ext/w32api/test_dll/dll_test.h
ext/w32api/w32api.c
ext/w32api/php_w32api.h
ext/sysvshm/sysvshm.c
ext/tokenizer/php_tokenizer.h
ext/tokenizer/tokenizer.c
ext/vpopmail/php_vpopmail.c
ext/sysvsem/sysvsem.c
ext/sysvshm/php_sysvshm.h
ext/sybase_ct/php_sybase_ct.h
ext/sysvsem/php_sysvsem.h
ext/standard/url_scanner_ex.h
ext/standard/url_scanner_ex.re
ext/standard/versioning.c
ext/sybase/php_sybase_db.h
ext/standard/reg.c
ext/standard/reg.h
ext/standard/scanf.c
ext/standard/scanf.h
ext/standard/syslog.c
ext/standard/type.c
ext/standard/uniqid.c
ext/standard/uniqid.h
ext/standard/url.c
ext/standard/url.h
ext/standard/url_scanner_ex.c
ext/standard/php_metaphone.h
ext/standard/php_parsedate.h
ext/standard/php_rand.h
ext/standard/php_smart_str.h
ext/standard/php_smart_str_public.h
ext/standard/php_standard.h
ext/standard/php_string.h
ext/standard/php_type.h
ext/standard/php_var.h
ext/standard/php_versioning.h
ext/standard/quot_print.c
ext/standard/quot_print.h
ext/standard/rand.c
ext/standard/php_image.h
ext/standard/php_iptc.h
ext/standard/php_lcg.h
ext/standard/php_link.h
ext/standard/php_mail.h
ext/standard/php_math.h
ext/standard/info.h
ext/standard/iptc.c
ext/standard/lcg.c
ext/standard/link.c
ext/standard/mail.c
ext/standard/math.c
ext/standard/md5.c
ext/standard/md5.h
ext/standard/metaphone.c
ext/standard/microtime.c
ext/standard/microtime.h
ext/standard/pack.c
ext/standard/pack.h
ext/standard/pageinfo.c
ext/standard/pageinfo.h
ext/standard/php_assert.h
ext/standard/php_browscap.h
ext/standard/php_crypt.h
ext/standard/php_dir.h
ext/standard/php_ext_syslog.h
ext/standard/php_fopen_wrapper.c
ext/standard/php_fopen_wrappers.h
ext/standard/php_ftok.h
ext/standard/file.h
ext/standard/filestat.c
ext/standard/flock_compat.c
ext/standard/flock_compat.h
ext/standard/formatted_print.c
ext/standard/fsock.h
ext/standard/ftok.c
ext/standard/ftp_fopen_wrapper.c
ext/standard/head.c
ext/standard/head.h
ext/standard/html.c
ext/standard/html.h
ext/standard/http_fopen_wrapper.c
ext/standard/image.c
ext/standard/info.c
ext/standard/aggregation.h
ext/standard/assert.c
ext/standard/base64.c
ext/standard/base64.h
ext/standard/browscap.c
ext/standard/crc32.c
ext/standard/crc32.h
ext/standard/credits.c
ext/standard/credits.h
ext/standard/crypt.c
ext/standard/cyr_convert.c
ext/standard/cyr_convert.h
ext/standard/dir.c
ext/standard/dns.c
ext/standard/dns.h
ext/standard/exec.h
ext/standard/file.c
ext/snmp/snmp.c
ext/standard/aggregation.c
ext/snmp/php_snmp.h
ext/shmop/php_shmop.h
ext/shmop/shmop.c
ext/session/mod_files.h
ext/session/mod_mm.c
ext/session/mod_mm.h
ext/session/mod_user.c
ext/session/mod_user.h
ext/session/php_session.h
ext/readline/readline.c
ext/recode/php_recode.h
ext/recode/recode.c
ext/session/mod_files.c
ext/qtdom/qtdom.h
ext/readline/php_readline.h
ext/posix/posix.c
ext/pspell/php_pspell.h
ext/pspell/pspell.c
ext/qtdom/qtdom.c
ext/posix/php_posix.h
ext/pcntl/php_pcntl.h
ext/pcntl/php_signal.c
ext/pcntl/php_signal.h
ext/pcre/php_pcre.c
ext/pcre/php_pcre.h
ext/pdf/php_pdf.h
ext/pcntl/pcntl.c
ext/overload/overload.c
ext/overload/php_overload.h
ext/ovrimos/ovrimos.c
ext/oracle/oracle.c
ext/odbc/php_odbc.h
ext/odbc/php_velocis.h
ext/odbc/velocis.c
ext/openssl/openssl.c
ext/odbc/php_odbc.c
ext/notes/php_notes.h
ext/oci8/oci8.c
ext/ncurses/ncurses_fe.c
ext/ncurses/ncurses_functions.c
ext/ncurses/php_ncurses.h
ext/ncurses/php_ncurses_fe.h
ext/notes/php_notes.c
ext/mysql/php_mysql.h
ext/ncurses/ncurses.c
ext/mssql/php_mssql.c
ext/mssql/php_mssql.h
ext/mysql/php_mysql.c
ext/msql/php_msql.c
ext/msql/php_msql.h
ext/mnogosearch/php_mnogo.c
ext/mnogosearch/php_mnogo.h
ext/msession/php_msession.h
ext/mhash/mhash.c
ext/mbstring/mbstring.h
ext/mcve/mcve.c
ext/mailparse/php_mailparse.h
ext/mailparse/rfc2045appendurl.c
ext/mbstring/mbstring.c
ext/mailparse/mailparse.c
ext/ircg/ircg_scanner.c
ext/ircg/ircg_scanner.re
ext/ircg/php_ircg.h
ext/ldap/ldap.c
ext/imap/php_imap.h
ext/ircg/ircg.c
ext/imap/php_imap.c
ext/hyperwave/hg_comm.h
ext/hyperwave/hw.c
ext/hyperwave/hw_error.h
ext/hyperwave/php_hyperwave.h
ext/icap/php_icap.c
ext/gmp/php_gmp.h
ext/hyperwave/hg_comm.c
ext/gmp/gmp.c
ext/gd/gdt1.c
ext/gd/gdt1.h
ext/gd/php_gd.h
ext/ftp/ftp.h
ext/ftp/php_ftp.c
ext/ftp/php_ftp.h
ext/gd/gd.c
ext/fribidi/php_fribidi.h
ext/ftp/ftp.c
ext/filepro/php_filepro.h
ext/fribidi/fribidi.c
ext/fbsql/php_fbsql.h
ext/fdf/php_fdf.h
ext/filepro/filepro.c
ext/domxml/php_domxml.h
ext/fbsql/php_fbsql.c
ext/dbplus/php_dbplus.h
ext/dio/dio.c
ext/dio/php_dio.h
ext/domxml/php_domxml.c
ext/dbplus/dbplus.c
ext/dbplus/php_dbplus.c
ext/dbase/dbase.c
ext/dbase/php_dbase.h
ext/dba/php_dba.h
ext/dba/dba_dbm.c
ext/dba/dba_gdbm.c
ext/dba/dba_ndbm.c
ext/dba/dba_cdb.c
ext/dba/dba_db2.c
ext/dba/dba_db3.c
ext/dba/dba.c
ext/db/db.c
ext/db/php_db.h
ext/cyrus/cyrus.c
ext/cyrus/php_cyrus.h
ext/cybermut/cybermut.c
ext/cybermut/php_cybermut.h
ext/cybercash/cybercash.h
ext/ctype/ctype.c
ext/ctype/php_ctype.h
ext/crack/crack.c
ext/crack/php_crack.h
ext/cpdf/php_cpdf.h
ext/cpdf/cpdf.c
ext/ccvs/ccvs.c
ext/ccvs/ccvs.h
ext/bz2/bz2.c
ext/bz2/php_bz2.h
ext/bcmath/php_bcmath.h
ext/bcmath/bcmath.c
ext/aspell/php_aspell.h
ext/aspell/aspell.c
build/rules_pear.mk
build/sysv_makefile
build/rules.mk
build/rules_common.mk
build/mkdep.awk
build/program.mk
build/ltlib.mk
build/fastgen.sh
build/library.mk
build/build2.mk
build/dynlib.mk
build/bsd_makefile
build/build.mk
dynlib.m4
header
run-tests.php: Maintain headers.
2002-02-28 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* CODING_STANDARDS:
Recommend ZEND_* macro over PHP_* macro as discussed in php-dev.
2002-02-28 Sebastian Bergmann <sb@sebastian-bergmann.de>
* ext/exif/exif.c
ext/exif/php_exif.h: Fix headers.
2002-02-28 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* README.CVS-RULES: Added how to put bug ID in commit message.
2002-02-28 Rasmus Lerdorf <rasmus@php.net>
* main/rfc1867.c:
That code made no sense - fix it to do what was originally intended
2002-02-28 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/iconv/iconv.c: Fix iconv. Patch by (itai@siftology.com)
2002-02-28 Marcus B<>rger <marcus.boerger@post.rwth-aachen.de>
* ext/exif/php_exif.h
ext/exif/exif.c
ext/exif/CREDITS: +Added UNICODE support for Comments
+Added Description,Artist
+Added missing memory deallocation
+Corrected error with multiple comments
+Corrected handling of ExifVersion, Tag has 4 ASCII characters *WITHOUT* NUL
+Corrected handling of Thumbnailsize if current source detects size < 0
+Changed all fields to char* that do not have a maximum length in EXIF standard
+Undocumented second Parameter ReadAll frees memory to early -> moved to third position default changed to false -> faster
+New second Parameter [true|false] to specify whether or not to to read thumbnails -> reading is timeconsumpting suppose default should be false -> done so
2002-02-27 Rasmus Lerdorf <rasmus@php.net>
* php.ini-dist:
Drop this default to 12 to avoid some of the .000000000000001 questions.
I can't imagine much of a BC issue, and we aren't changing existing php.ini
files anyway. If someone can think of a problem with this, please speak up
2002-02-27 Brad House <brad@mainstreetsoftworks.com>
* ext/mcve/CREDITS
ext/mcve/Makefile.in
ext/mcve/config.m4
ext/mcve/mcve.c
ext/mcve/mcve.php
ext/mcve/php_mcve.h
ext/mcve/tests/001.phpt
ext/mcve/tests/mcve_simple_test.php
ext/mcve/tests/mcve_test1.php
ext/mcve/tests/mcve_test2.php:
Initial MCVE extension added (Credit Card Processing)
2002-02-27 Andrei Zmievski <andrei@ispi.net>
* ext/overload/EXPERIMENTAL
ext/overload/README: This has been scaring people off.
2002-02-27 Jani Taskinen <sniper@iki.fi>
* NEWS: - Missed this one..
2002-02-27 Derick Rethans <d.rethans@jdimedia.nl>
* ext/standard/basic_functions.c: - Fix proto
2002-02-27 Adam Dickmeiss <adam@indexdata.dk>
* ext/yaz/php_yaz.c
ext/yaz/php_yaz.h: Implemented yaz_schema. Cleanup. 1.8 YAZ required
2002-02-27 Jani Taskinen <sniper@iki.fi>
* configure.in
main/php_version.h: Fixed minor typo.
2002-02-27 Derick Rethans <d.rethans@jdimedia.nl>
* main/php_version.h: - Oops... wishful thinking here :)
* main/php_version.h
configure.in: - Update version number
2002-02-27 James Cox <james@awpimajes.com>
* NEWS: correcting grammar so it's readable
2002-02-27 Sebastian Bergmann <sb@sebastian-bergmann.de>
* NEWS: Add 4.1.2 NEWS entries to HEAD.
2002-02-27 Zeev Suraski <zeev@zend.com>
* main/php_version.h
NEWS
configure.in: Go with 4.1.2
2002-02-27 Sebastian Bergmann <sb@sebastian-bergmann.de>
* sapi/servlet/servlet.java:
URLEncoder.encode(string) is deprecated in the Java 2 SDK 1.4.
2002-02-26 Andi Gutmans <andi@zend.com>
* main/php_main.h
main/main.c:
- Hopefully fix the shutdown_memory_manager() stuff. Part of my previous
- patch seems to have gotten lost
2002-02-26 Derick Rethans <d.rethans@jdimedia.nl>
* ext/session/session.c: - Bring error message back
2002-02-26 Sebastian Bergmann <sb@sebastian-bergmann.de>
* main/main.c: TSRM Cleanup.
2002-02-26 Andi Gutmans <andi@zend.com>
* main/main.c
main/php_main.h: - Pass shutdown_memory_manager the TSRMLS context.
2002-02-26 Rasmus Lerdorf <rasmus@php.net>
* NEWS: There are no fdf changes in this branch as far as I can see. Not
sure where this NEWS item came from.
* NEWS: Remove gd NEWS item
* ext/gd/config.m4: This line makes no sense to me
2002-02-26 Zeev Suraski <zeev@zend.com>
* NEWS: Beautify
2002-02-26 Dan Kalowsky <dank@deadmime.org>
* ext/odbc/php_odbc.c:
Bug fix 15719 as submited by Joseph Southwell and allows NULL values in ODBC
2002-02-26 Edin Kadribasic <edink@proventum.net>
* ext/standard/dl.c:
Allow use of dl() when CLI is compiled with ZTS (bug #15717).
2002-02-25 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pspell/pspell.c: Fix pspell function entry
2002-02-25 jim winstead <jimw@apache.org>
* sapi/apache/config.m4:
make it more clear that --with-apache and --with-apxs only work with apache 1.x.
2002-02-25 Thomas V.V.Cox <cox@idecnet.com>
* pear/DB/ibase.php:
Experimental support for handling all the parameters accepted by
ibase_connect().
2002-02-25 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* NEWS:
Add news for mm save handler and multiple SAPI start up problem fix
* ext/session/mod_mm.c
ext/session/session.c: MFH
- Fixed CGI (or other SAPI) start up failure when mm save handler is used
2002-02-24 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* pear/DB/pgsql.php:
fixed error message handling with PostgreSQL 7.2
2002-02-24 Derick Rethans <d.rethans@jdimedia.nl>
* ext/standard/var.c: - Fix the fix.. no need to escape " in single quotes
* ext/standard/var.c: - Add slashes around string output
* win32/install.txt: - Update with XP (Thanx to Jan for the patch)
2002-02-24 Stig Bakken <ssb@fast.no>
* pear/package.dtd: * fix broken dtd
2002-02-24 Sebastian Bergmann <sb@sebastian-bergmann.de>
* ext/wddx/wddx.c: Make phpinfo() look nicer.
2002-02-23 Markus Fischer <mfischer@guru.josefine.at>
* ext/xslt/sablot.c:
- Fix info output (Peter Neuman <neuman_peter@hotmail.com>).
2002-02-23 Thomas V.V.Cox <cox@idecnet.com>
* pear/package.dtd:
DTD corrections (make it require minimal data for installer)
2002-02-23 Stig Bakken <ssb@fast.no>
* pear/PEAR/Command/Common.php
pear/PEAR/Command/Install.php
pear/PEAR/Command.php
pear/PEAR/CommandResponse.php
pear/PEAR/Packager.php:
* started implementing new "cross-environment" command API
2002-02-23 Holger Zimmermann <zimpel@t-online.de>
* sapi/pi3web/pi3web_sapi.h
sapi/pi3web/pi3web_sapi.c:
Fixed functionality to read in server variables.
2002-02-23 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* pear/DB/MAINTAINERS
pear/DB/pgsql.php: updated message format for PostgreSQL 7.2.
2002-02-23 Thomas V.V.Cox <cox@idecnet.com>
* pear/README: Point readers to pear web
* pear/TODO: outdated TODO not needed for the moment
2002-02-23 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* NEWS: NEWS updated.
* ext/mbstring/mbstring.c
ext/gd/config.m4
ext/fdf/Makefile.in:
- fixed configuration problem as shared extension for fdf.
- fixed configuration problem as shared extension for gd with freetype1.
- default output encoding of mbstring changed to pass to fix initialization problem.
* ext/gd/config.m4: fixed configure error with freetype1.
* ext/mbstring/mbstring.c
ext/mbstring/php_mbregex.c:
fixed a comment and default output encoding changed to pass.
* ext/mbstring/mbfilter.c: php.h included.
2002-02-22 Christian Stocker <chregu@phant.ch>
* pear/HTML/ITX.php: E_ALL fix
2002-02-22 Vincent Blavet <vincent@blavet.net>
* pear/PEAR/Installer.php
pear/PEAR/Packager.php:
* Packager : Changing the order of the files in the package archive file.
The package.xml file is now at the 'root' of the archive, the files tree are under a 'packagename'-'packageversion' folder
* Installer : installing the knew archive format AND supporting the existing format
2002-02-22 Frank M. Kromann <frank@frontbase.com>
* ext/fbsql/php_fbsql.c: Return true on update success.
2002-02-22 Rasmus Lerdorf <rasmus@php.net>
* NEWS: Keep track of what has gone into 4.1.2 so far
2002-02-22 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/session/session.c:
Fix crash bug. 4th parameter is not incremental value, but it's assigned.
* ext/pspell/pspell.c: Fix crash bug 15607
2002-02-21 Stefan Esser <s.esser@e-matters.de>
* main/rfc1867.c: fixing boundary check before someone other does it...
2002-02-21 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/standard/math.c
ext/standard/php_math.h
ext/standard/basic_functions.c: Added fmod() function
2002-02-21 Mika Tuupola <tuupola@appelsiini.net>
* pear/File/Find.php:
* Update PHPDoc.
2002-02-21 Sebastian Bergmann <sb@sebastian-bergmann.de>
* win32/php4dllts.dsp
win32/php4dll.dsp: Add aggregation to Win32 build.
2002-02-21 Andrei Zmievski <andrei@ispi.net>
* ext/standard/basic_functions.h
ext/standard/php_standard.h
ext/standard/tests/aggregation/.cvsignore
ext/standard/tests/aggregation/aggregate.lib.php
ext/standard/tests/aggregation/aggregate.phpt
ext/standard/tests/aggregation/aggregate_methods.phpt
ext/standard/tests/aggregation/aggregate_methods_by_list.phpt
ext/standard/tests/aggregation/aggregate_methods_by_regexp.phpt
ext/standard/tests/aggregation/aggregate_properties.phpt
ext/standard/tests/aggregation/aggregate_properties_by_list.phpt
ext/standard/tests/aggregation/aggregate_properties_by_regexp.phpt
ext/standard/tests/aggregation/aggregation_info.phpt
ext/standard/tests/aggregation/deaggregate.phpt
ext/standard/aggregation.c
ext/standard/aggregation.h
ext/standard/basic_functions.c
ext/standard/Makefile.in
NEWS: Adding object aggregation capability along with tests.
2002-02-21 Sean Bright <elixer@erols.com>
* acinclude.m4: Fix for bug #15605
2002-02-20 Christian Stocker <chregu@phant.ch>
* ext/domxml/php_domxml.c: "o|a|b" is not valid ZE code. changed to "o|ab"
2002-02-20 Vincent Blavet <vincent@blavet.net>
* pear/scripts/pearwin.php:
Config variables must be set between "" while using pear.bat windows script
* pear/Archive/Tar.php:
* Correct bug while using windows dir separator. It is now supported
2002-02-20 Rasmus Lerdorf <rasmus@php.net>
* ext/standard/crc32.c
ext/standard/crc32.h:
Split CRC32 table out into a header file so other code can use it
2002-02-20 Derick Rethans <d.rethans@jdimedia.nl>
* ext/iconv/iconv.c: - Fix for bug #15628 (for real now :)
* sapi/nsapi/nsapi-readme.txt: - Reformatting
* ext/iconv/iconv.c: - Fix for bug #15638
2002-02-19 David Hedbor <david@hedbor.org>
* sapi/caudium/caudium.c: Fixed environment hashing again.
2002-02-19 Derick Rethans <d.rethans@jdimedia.nl>
* genfiles: - Fix removal of #line lines
* EXTENSIONS: - Update to note that I'm the mcrypt extension maintainer
2002-02-19 Marc Boeren <M.Boeren@guidance.nl>
* EXTENSIONS: changed comment for dbx module
2002-02-19 Dan Kalowsky <dank@deadmime.org>
* EXTENSIONS:
2002-02-18 Martin Jansen <mail@martin-jansen.de>
* pear/PEAR.php: ='typo'
2002-02-18 Marc Boeren <M.Boeren@guidance.nl>
* ext/dbx/dbx.c
ext/dbx/dbx_sybasect.h:
Oops: source copy&paste should be done with care :) (Mc)
* ext/dbx/CREDITS
ext/dbx/Makefile.in
ext/dbx/dbx.c
ext/dbx/dbx.dsp
ext/dbx/dbx_sybasect.c
ext/dbx/dbx_sybasect.h
ext/dbx/tests/002.phpt
ext/dbx/tests/005.phpt
ext/dbx/tests/006.phpt
ext/dbx/tests/dbx_test.p:
Added support for Sybase-CT to dbx module (Mc).
2002-02-18 Ludovico Magnocavallo <ludo@sumatrasolutions.com>
* pear/DB/ibase.php: fixed typo
2002-02-17 Martin Jansen <mail@martin-jansen.de>
* pear/scripts/pearcmd-info.php: * Fix for bug #15500
2002-02-17 Stig Bakken <ssb@fast.no>
* pear/package.dtd: * allow <license> in both <package> and <release>
* added <changelog> element
* added "data" role for files
* allow nested <dir> elements
2002-02-17 Alex Waugh <alex@alexwaugh.com>
* sapi/webjames/webjames.c: Updated to new TSRM macros
2002-02-17 Mika Tuupola <tuupola@appelsiini.net>
* pear/File/Find.php:
* added mapTreeMultiple() method.
2002-02-17 Jon Parise <jon@csh.rit.edu>
* pear/Makefile.in:
Image/Remote.php and Mail/mime.php have moved to the pear/ repository.
2002-02-15 Andrei Zmievski <andrei@ispi.net>
* NEWS: Fix.
2002-02-15 Jason Greene <jason@inetgurus.net>
* ext/sockets/sockets.c: Fix parse string
(Since arg6 is initialized at null this still catches the wrong param condition)
2002-02-15 Dan Kalowsky <dank@deadmime.org>
* ext/odbc/php_odbc.c:
fix for bug 15516, patch submitted by torben@php.net
2002-02-15 Derick Rethans <d.rethans@jdimedia.nl>
* sapi/cgi/cgi_main.c
sapi/cli/php_cli.c: - Make the errorcode 255. (Doing docs right away)
2002-02-15 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/config.m4: Fix problem with sesssion_pgsql module
2002-02-15 Sean Bright <elixer@erols.com>
* ext/xslt/config.m4: Fix cosmetic bug. (#15142)
2002-02-14 Derick Rethans <d.rethans@jdimedia.nl>
* sapi/cgi/cgi_main.c
sapi/cli/php_cli.c
sapi/pi3web/pi3web_sapi.c
main/main.c:
- Let php_execute_script return 0 on failure and 1 on sucess, and change
SAPIs accordingly. (Andrei, Derick)
2002-02-14 Adam Daniel <adaniel2@cinci.rr.com>
* pear/HTML/Page.php:
changed html tags to lowercase and added Nils-Fredrik G. Kaland's
suggested array support to toHtml
2002-02-14 Edin Kadribasic <edink@proventum.net>
* sapi/cli/php_cli.c: Turned implicit_flush on.
Cleaned up help text.
* sapi/cli/README: Added README file for CLI SAPI.
2002-02-14 Derick Rethans <d.rethans@jdimedia.nl>
* ext/ncurses/ncurses.c: - Remove duplicate constant
2002-02-13 Frank M. Kromann <frank@frontbase.com>
* ext/sockets/sockets.dsp: Fixing release and debug build on Win32
2002-02-13 Vincent Blavet <vincent@blavet.net>
* pear/scripts/pearwin.php:
* Synchronize pearwin script with pearcmd-xxx.php commands
* Still work to do
* pear/scripts/pearcmd-list.php:
* user system/user config rather than default value
2002-02-13 Yavor Shahpasov <yavo@itenasolutions.com>
* pear/HTML/Select.php:
Initialize $this->_values to avoid warrnings in case _values property is not set
* pear/Schedule/At.php: White spaces.
2002-02-13 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/dbx/dbx_pgsql.c: Fix memory leaks.
2002-02-13 Marc Boeren <M.Boeren@guidance.nl>
* ext/dbx/dbx_pgsql.c:
Fixed bug where users with empty passwords could not connect. (Mc)
2002-02-13 Vincent Blavet <vincent@blavet.net>
* pear/scripts/pearwin.php:
- Adding support for remote-list command (with XML-RPC installed)
- Start support of show-config (still work to do ...)
2002-02-13 Andrei Zmievski <andrei@ispi.net>
* NEWS: Ack.
2002-02-13 Stig Bakken <ssb@fast.no>
* pear/PEAR/Installer.php: * "pear-get install Auth" works now
* pear/PEAR/Remote.php: * don't use ext/overload yet
* pear/scripts/pearcmd-remote-list.php: * print package name
2002-02-12 Jason Greene <jason@inetgurus.net>
* NEWS: Fix entry
2002-02-12 Jan Lehnardt <jan@lehnardt.de>
* pear/DB/mysql.php:
- added default case for mysql_select_db error handling. It throws a
- DB_ERROR (unknown error) in the default case.
* pear/DB.php
pear/DB/mysql.php:
- added support for different error messages for the following cases:
-
- if a user with unsufficient permissions trys to select a database
- PEAR::DB previously threw a "no database selected" error instead
- of a more proper "insufficient permissions". This is fixed now.
-
- if a user selects a nonexistant database PEAR::DB threw a
- "no database selected" error instead of "no such database".
- This is fixed as well.
-
- I added two new constants to DB.php and a simple case construct to
- DB/mysql.php which can be easily extended to achive the above. I
- hope this is ok.
- Thanks to Till Gerken for mentioning this.
2002-02-12 Andrei Zmievski <andrei@ispi.net>
* NEWS: Fix-up.
2002-02-12 Sascha Schumann <sascha@schumann.cx>
* main/network.c: Irix defines AF_INET6, but lacks IPv6 support, including
struct sockaddr_in6.
2002-02-12 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c: Initialize automatic persistent connection reset flag
2002-02-12 Andrei Zmievski <andrei@ispi.net>
* ext/pcre/php_pcre.h
ext/pcre/php_pcre.c:
Fix a long-standing infelicity that resulted in extra regex information
not being passed to PCRE functions.
* ext/pcre/php_pcre.h
ext/pcre/php_pcre.c: Expose pcre_get_compiled_regex as an API function.
2002-02-11 Mark L. Woodward <mlwmohawk@mohawksoft.com>
* ext/msession/msession.c: Added one more tweak for 4.0.x compatibility.
Used "#warning" to inform users of a hard dependency.
(If #warning is unaccptable, let me know!)
2002-02-11 Sebastian Bergmann <sb@sebastian-bergmann.de>
* sapi/servlet/README: Fugbix typo.
2002-02-11 Martin Jansen <mail@martin-jansen.de>
* pear/HTTP.php: * Fix bug #15423.
2002-02-11 Richard Heyes <richard.heyes@heyes-computing.net>
* pear/Mail/mime.php
pear/Mail/mimeDecode.php
pear/Mail/mimePart.php
pear/Mail/xmail.dtd
pear/Mail/xmail.xsl:
* Removed these files as they're now in /pear/Mail_Mime
2002-02-11 Markus Fischer <mfischer@guru.josefine.at>
* ext/ldap/ldap.c: - Fix protos.
2002-02-10 Sean Bright <elixer@erols.com>
* ext/gmp/gmp.c:
'0b' could be the beginning of a hex string (without leading '0x') so if
the user specifies base 16, use that instead.
* ext/gmp/tests/003.phpt: Add a new test for GMP base recognition.
* ext/gmp/gmp.c: Fix for bugs #10133 and #15454.
Bug #15454 results from a bug in GMP. If you pass in a string '0xABCD' and
specify a base of 0, GMP figures out that it is hex and skips over the 0x
characters. If you specify base 16, then it doesn't skip those chars.
This was confirmed with the following test program:
int main()
{
char *str_one, *str_two;
mpz_t num_one, num_two;
mpz_init_set_str (num_one, "0x45", 0);
str_one = mpz_get_str(NULL, 10, num_one);
mpz_init_set_str (num_two, "0x45", 16);
str_two = mpz_get_str(NULL, 10, num_two);
printf("%s / %s\n", str_one, str_two);
mpz_clear (num_one);
mpz_clear (num_two);
return 0;
}
We now take anything that starts with 0[xX] as hexidecimal and anything
that starts 0[bB] as binary (this is what GMP does internally). We also
no longer force the base to 10 or 16, but instead let GMP decide what the
best base is, be it hex, dec, or octal.
2002-02-10 Jason Greene <jason@inetgurus.net>
* ext/standard/basic_functions.c
ext/standard/php_var.h
ext/standard/var.c: Renamed zval_debug_dump() to debug_zval_dump()
2002-02-10 Thomas V.V.Cox <cox@idecnet.com>
* pear/PEAR/Common.php: Now System will return false on fail
* pear/tests/pear_system.phpt: test suite for the System class
* pear/System.php:
- Now error will be triggered with trigger_error(). When a command
fails the function will return false
- In-line documentation update
2002-02-10 Thies C. Arntzen <thies@thieso.net>
* ext/oci8/oci8.c
ext/oci8/php_oci8.h:
only rollback at script end if there is something to rollback.
2002-02-10 Stig Venaas <venaas@uninett.no>
* ext/ftp/ftp.c
main/network.c
main/php_network.h:
Added php_sockaddr_size() in network.c (and the header file). This is used
in ftp.c to make sure connect() and bind() is called with size argument
which is exactly the size of the relevant sockaddr_xx structure
2002-02-10 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* pear/Mail/mime.php: Mail/mime/get has wrong parameter name.
2002-02-10 Sebastian Bergmann <sb@sebastian-bergmann.de>
* ext/tokenizer/tokenizer.c: TSRM fixes.
2002-02-10 Jason Greene <jason@inetgurus.net>
* ext/standard/basic_functions.c
ext/standard/php_var.h
ext/standard/var.c: internal information such as refcounts, and the true type names (Jason)
2002-02-10 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/mbstring/mbstring.c: Fix typo
2002-02-09 Andrei Zmievski <andrei@ispi.net>
* ext/tokenizer/php_tokenizer.h
ext/tokenizer/tokenizer.c: *** empty log message ***
2002-02-09 Stig Bakken <ssb@fast.no>
* ext/tokenizer/tokenizer.c: * ZTS fix
2002-02-08 Sebastian Bergmann <sb@sebastian-bergmann.de>
* ext/tokenizer/.cvsignore
ext/tokenizer/tokenizer.dsp
win32/php_modules.dsw
php.ini-dist
php.ini-recommended:
Add MSVC workspace for tokenizer extension. Add php_tokenizer.dll entries to php.ini-*.
2002-02-08 Thies C. Arntzen <thies@thieso.net>
* ext/oci8/oci8.c
ext/oci8/php_oci8.h:
- got rid of unneded calls to OCIAttrGet when reexecuting the same query
- only invalidate the define list after all rows from a REFCORSOR are read,
"normal" corsors will now remember their column defines. this means that
ocigetcolumn[name|type|..] will from now on work even after the result set
has been read.
2002-02-08 Stig Bakken <ssb@fast.no>
* ext/tokenizer/.cvsignore
ext/tokenizer/CREDITS
ext/tokenizer/EXPERIMENTAL
ext/tokenizer/Makefile.in
ext/tokenizer/config.m4
ext/tokenizer/php_tokenizer.h
ext/tokenizer/tokenizer.c
ext/tokenizer/tokenizer.php: Added Andrei's tokenizer extension
2002-02-08 Mark L. Woodward <mlwmohawk@mohawksoft.com>
* ext/msession/msession.c:
Backward compatibility to 4.0.6 does not have "HAVE_PHP_SESSION" define
Renamed PHP_4_x_API to PHP_4_x
2002-02-07 Sterling Hughes <sterling@bumblebury.com>
* ext/session/php_session.h
ext/session/session.c:
move to the ZEND_DECLARE_MODULE_GLOBALS() and ZEND_EXTERN_MODULE_GLOBALS
macros
2002-02-07 Martin Jansen <mail@martin-jansen.de>
* pear/scripts/pearcmd-remote-list.php: * Better error handling.
* pear/HTTP.php: * Partially fix bug #15423.
2002-02-07 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* main/output.c: Legacy code removed.
This line incorrectly removes buffer.
This line was correct only when ouput.c does not support
nested output buffers. Fixed bug #15178
2002-02-07 Thomas V.V.Cox <cox@idecnet.com>
* pear/DB/common.php
pear/DB/oci8.php:
Moved the array_change_key_case() PHP func definition to common
* pear/DB/ibase.php: change column case to lower in compatibility mode
* pear/DB/ibase.php: ws
2002-02-06 Frank M. Kromann <frank@frontbase.com>
* ext/fbsql/php_fbsql.c:
Convert pLists to output character set before parsing the list
* ext/fbsql/php_fbsql.c: Added order by clause in fbsql_list_tables().
Table names will now be sorted.
* ext/fbsql/php_fbsql.c
ext/fbsql/php_fbsql.h:
Adding fbsql_table_name() aliased fbsql_tablename() for compatibility with MySQL
2002-02-06 Derick Rethans <d.rethans@jdimedia.nl>
* ext/odbc/config.m4: - Fix for bug 15404
2002-02-06 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/mbstring/mbstring.c: Remove unused line
* ext/mbstring/mbstring.c: Fixed crash with mb_output_handler()
When mb_output_hanlder is applied muiltiple times, PHP does not output.
This should be fixed also.
2002-02-06 Thomas V.V.Cox <cox@idecnet.com>
* pear/System.php:
added 'System::type()' (show the full path of a command)
Copied almost verbatim from Stig's PEAR_Dependency::checkProgram()
2002-02-06 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c
ext/pgsql/php_pgsql.h: Clean up code.
Removed PHP_PGSQL_API macro.
Define pgsql_globals_id
* ext/pgsql/pgsql.c
ext/pgsql/php_pgsql.h: Make module specified functions to static.
Added TSRMLS_D/C, get rid of one TSRMLS_FETCH.
2002-02-05 Andi Gutmans <andi@zend.com>
* ext/wddx/wddx.c
ext/standard/array.c:
- Add TSRMLS_FETCH()'s needed for the new object overloading in ZE2.
2002-02-05 Mark L. Woodward <mlwmohawk@mohawksoft.com>
* ext/msession/msession.c:
Sorry guys, PHP 4.0.6's ZEND_MODULE_API_NO is whacked, it has an extra
zero, thus ZEND_MODULE_API_NO >= xxxx, will not work for about 18000 years.
Added better checking, and cleaned up some of the #ifdef you seem to love
so much.
2002-02-05 Hartmut Holzgraefe <hartmut@six.de>
* ext/msession/msession.c:
removed the new-style parameter parser code for bc *and* readability
reasons, changed the remaining #ifdefs to check the api version
directly instead of using the not really related OLD_ZEND_PARAM macro
2002-02-05 David Eriksson <david@2good.com>
* ext/satellite/.cvsignore
ext/satellite/Makefile.in
ext/satellite/README
ext/satellite/class.c
ext/satellite/class.h
ext/satellite/common.c
ext/satellite/common.h
ext/satellite/config.m4
ext/satellite/corba.c
ext/satellite/corba.h
ext/satellite/enum.c
ext/satellite/enum.h
ext/satellite/findtype.c
ext/satellite/findtype.h
ext/satellite/hashtable.c
ext/satellite/hashtable.h
ext/satellite/multiple_components.patch
ext/satellite/namedvalue_to_zval.c
ext/satellite/namedvalue_to_zval.h
ext/satellite/object.c
ext/satellite/object.h
ext/satellite/php_orbit.c
ext/satellite/php_orbit.h
ext/satellite/struct.c
ext/satellite/struct.h
ext/satellite/typecode.c
ext/satellite/typecode.h
ext/satellite/typemanager.c
ext/satellite/typemanager.h
ext/satellite/zval_to_namedvalue.c
ext/satellite/zval_to_namedvalue.h:
- Removed Satellite. It is now part of PEAR.
2002-02-05 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* main/output.c: pval -> zval
Check number of parameters
* main/main.c
php.ini-dist: register_globals=off is defualt for 4.2.0
2002-02-05 Jani Taskinen <sniper@iki.fi>
* ext/session/session.c: Let's be consistent and use zval instead of pval
* ext/session/php_session.h
ext/session/session.c: Export php_session_start().
* configure.in:
The extensions build as shared were installed into wrong place
even as the layout was PHP.
2002-02-04 Jaroslaw Kolakowski <J.Kolakowski@students.mimuw.edu.pl>
* ext/domxml/php_domxml.c:
Fixed compile error
2002-02-04 Mark L. Woodward <mlwmohawk@mohawksoft.com>
* ext/msession/msession.c: More 4.0.6 compatibility.
* ext/msession/msession.c: Restored backward compatibility to PHP 4.0.6
2002-02-04 Thomas V.V.Cox <cox@idecnet.com>
* pear/DB/TESTERS: Added How To Run Tests
2002-02-04 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/crack/crack.c
ext/mailparse/mailparse.c: Fix ZTS startup crash
2002-02-04 Thies C. Arntzen <thies@thieso.net>
* ext/oracle/config.m4: add oracle 9 detection for oracle-module
2002-02-04 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/mbstring/mbstring.c: Remove TSRMLS_FETCH() does not need
* ext/msession/msession.c
ext/domxml/php_domxml.c: Fix ZTS build
2002-02-03 jim winstead <jimw@apache.org>
* makedist: don't include old changelogs in distribution, either
2002-02-03 Adam Dickmeiss <adam@indexdata.dk>
* Makefile.in
configure.in:
Zend config sets ZEND_EXTRA_LIBS. Bugs 14452, 14602, 14616, 14824
2002-02-03 Martin Jansen <mail@martin-jansen.de>
* pear/DB/ibase.php:
* nextID() and tableInfo() support by Lutz Brueckner <lb@lamuella.de>.
2002-02-03 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/session/mod_files.c
ext/session/session.c:
Revert last commit. Last patch has problem for the 1st request.
* ext/session/mod_files.c
ext/session/session.c: Fixed crash when save_path is invalid.
Fixed crash when user save handler is incorrectly used.
Fixed crash when session read failed.
* ext/iconv/tests/001.phpt
ext/iconv/tests/002.inc
ext/iconv/tests/002.phpt
ext/iconv/tests/skipif.inc: Added UCS4 test
* sapi/roxen/roxen.c: MFH
2002-02-02 Shane Caraveo <shane@caraveo.com>
* sapi/isapi/stresstest/getopt.c
sapi/isapi/stresstest/getopt.h: now needs getopt
* sapi/isapi/stresstest/stresstest.cpp
sapi/isapi/stresstest/stresstest.dsp: an update to stresstest
2002-02-02 Sebastian Bergmann <sb@sebastian-bergmann.de>
* sapi/cgi/cgi_main.c
sapi/fastcgi/fastcgi.c
sapi/pi3web/pi3web_sapi.c
sapi/servlet/servlet.c:
Remove obsolete CG(extended_info) = 0 calls, we already do this in zend_set_default_compile_time_values().
* ext/calendar/french.c
ext/calendar/julian.c: Consistency.
* ext/calendar/gregor.c
ext/calendar/jewish.c: Fix a warning.
2002-02-02 Jon Parise <jon@csh.rit.edu>
* configure.in: Revert revision 1.294.
This commit broke things in interesting ways under FreeBSD. By adding these
default header files to every header check, a number of subsequent checks
failed (due to unsatisfied header file dependencies). This occured because
<netinet/in.h>, for example, requires <sys/types.h>. In other words, these
default includes are not autonomous and don't make workable defaults.
2002-02-02 Sebastian Bergmann <sb@sebastian-bergmann.de>
* main/fopen_wrappers.c: Fix thread-safe build.
2002-02-02 Stig Bakken <ssb@fast.no>
* pear/DB/odbc.php: * use seqname_format option
* pear/DB/common.php
pear/DB/fbsql.php
pear/DB/mssql.php
pear/DB/mysql.php
pear/DB/oci8.php
pear/DB/odbc.php
pear/DB/pgsql.php:
* the actual name of the sequences or sequence emulation tables may
now be configured with the "seqname_format" option
* pear/package.dtd: * add some missing attributes
2002-02-01 Andrei Zmievski <andrei@ispi.net>
* ext/standard/array.c:
Converted extract() to use smart_str for variable name manipulation. This
sped it up a bit.
2002-02-01 James E. Flemer <jflemer@acm.jhu.edu>
* main/fopen_wrappers.c
main/fopen_wrappers.h:
Changed php.ini directive 'safe_mode_include_dir' to accept a
(semi)colon separated path, rather than a single directory.
Also moved checking of said path into a separate path for code
readability.
2002-02-01 Andrei Zmievski <andrei@ispi.net>
* NEWS: Added is_a() function.
2002-02-01 Adam Dickmeiss <adam@indexdata.dk>
* ext/yaz/php_yaz.c: Fixes in MARC decoder (base adress, DANmarc case).
2002-02-01 Thomas V.V.Cox <cox@idecnet.com>
* pear/DB.php: Fix remote security risk, pointed out by Wolfram Kriesing
* pear/DB/tests/db_parsedsn.phpt
pear/DB.php:
Added support for passing special backend params in DSN. Ex:
ibase://user:pass@localhost/db?role=foo&dialect=bar
2002-02-01 Thies C. Arntzen <thies@thieso.net>
* ext/readline/readline.c: remove some crap
2002-02-01 James Cox <james@awpimajes.com>
* php.gif
php4.gif
php4.spec.in:
2 years is ages.... and no way temporary. changed the php4 logo to a versionless one.
2002-02-01 Derick Rethans <derick@vl-srm.net>
* ext/gd/gd.c:
- Fix for bug 14899 (patch by Sander Roobol <sander@php.net>)
2002-02-01 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/iconv/iconv.c:
Fixed bug with encodings that has 0 byte in strings. Patch by <itai@siftology.com>
Fixed possible problem with encodings that a char can be larger than
4 bytes.
2002-01-31 James Cox <james@awpimajes.com>
* LICENSE: updating license to 2002 (hasn't been done since 2000)
2002-01-31 Boian Bonev <boian@bonev.com>
* ext/vpopmail/php_vpopmail.c: fix comment
2002-01-31 Martin Jansen <mail@martin-jansen.de>
* pear/HTTP.php: * Fix bug #15313
2002-01-31 Bertrand Mansion <bmansion@mamasam.com>
* pear/HTML/Table.php: Thanks to Arnaud Limbourg:
- phpDoc and cosmetic fixes
2002-01-31 Derick Rethans <derick@vl-srm.net>
* ext/standard/dl.c:
- Fix for bug 15311 (type mismatch of php_dl when #ifndef HAVE_LIBDL)
2002-01-31 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* sapi/roxen/roxen.c: A fix for the bug number 13231 & 11699.
Makes the roxen support compile. Patch by Lars Wilhelmsen <lars@sral.org>
2002-01-31 Derick Rethans <derick@vl-srm.net>
* ext/openssl/openssl.c: - Fix for openssl_pkcs7_sign segfaults
(patch by Christian Stocker <chregu@php.net>)
2002-01-31 Stig Bakken <ssb@fast.no>
* pear/scripts/pearize.in: * lowercase tags and attributes
* pear/Makefile.in: * remove broken rule for rebuilding Makefile
2002-01-31 Edin Kadribasic <edink@proventum.net>
* main/main.c: Ignore register_globals for $argc and $argv under CLI SAPI.
2002-01-30 Edin Kadribasic <edink@proventum.net>
* acinclude.m4
configure.in
sapi/cli/Makefile.in:
Enable extensions to specify that they are not supposed to be
built with the CLI SAPI. This is done by passing "nocli" as the
3rd parameter to PHP_EXTENSION macro.
2002-01-30 Dan Kalowsky <dank@deadmime.org>
* ext/odbc/php_odbc.c: Fix for bug #14803
2002-01-30 Sebastian Bergmann <sb@sebastian-bergmann.de>
* sapi/servlet/README: Fugbix typo. Update path to /lib/optional.
2002-01-30 Stig Bakken <ssb@fast.no>
* pear/Makefile.in: * don't make command libs executable
* pear/scripts/pear-get.in
pear/scripts/pear.in
pear/scripts/pearcmd-common.php
pear/scripts/pearcmd-help.php
pear/scripts/pearcmd-info.php
pear/scripts/pearcmd-install.php
pear/scripts/pearcmd-list.php
pear/scripts/pearcmd-package.php
pear/scripts/pearcmd-remote-list.php
pear/scripts/pearcmd-show-config.php
pear/scripts/pearcmd-uninstall.php
pear/Makefile.in:
* modularize "pear" and "pear-get" commands somewhat. checking options
etc. is done for both in pearcmd-common.php.
* pear/PEAR/Common.php: * silence warning
* pear/HTML/Form.php: * XHTML fixes by Hans Westerbeek
* pear/package.dtd: * bring DTD up to date
2002-01-30 Thies C. Arntzen <thies@thieso.net>
* ext/oci8/oci8.c: enable "user-interrupts"
2002-01-29 Chuck Hagenbuch <chuck@horde.org>
* pear/DB/mysql.php:
Fix errors caused by not checking for variables before using them.
2002-01-29 Sebastian Bergmann <sb@sebastian-bergmann.de>
* win32/php_modules.dsw: Overload is built-in.
2002-01-29 Stig Bakken <ssb@fast.no>
* pear/DB/oci8.php: typo :)
2002-01-28 Stig Bakken <ssb@fast.no>
* pear/Net/Socket.php:
* doc comments, add setTimeout() and getStatus(), thanks to
Mads Mohr Christensen <mohr@slamkode.dk>
2002-01-28 Sterling Hughes <sterling@designmultimedia.com>
* EXTENSIONS: Commit for mr. torben:
Add XSLT to extensions file, mark sablot obsolete
2002-01-28 Jon Parise <jon@csh.rit.edu>
* ext/standard/math.c: These are now defined in zend_config.w32.h.
2002-01-28 Thomas V.V.Cox <cox@idecnet.com>
* pear/DB/dbase.php:
PEAR dbase driver. Supports, connect, fetch modes, row limit,
numrows and numcols.
2002-01-28 jim winstead <jimw@apache.org>
* ext/interbase/Makefile.in: testing checkin
2002-01-27 Jon Parise <jon@csh.rit.edu>
* ext/standard/math.c:
zend_isinf() is already defined in Zend/zend_config.w32.h for Win32.
2002-01-27 Sterling Hughes <sterling@designmultimedia.com>
* ext/bz2/bz2.c: fix proto's for Herr. Holzraefe. int -> resource
2002-01-27 Chuck Hagenbuch <chuck@horde.org>
* pear/Net/SMTP.php: command spacing
2002-01-27 fabrice aeschbacher <fabrice.aeschbacher@laposte.net>
* ext/interbase/php_interbase.h
ext/interbase/interbase.c:
add ibase_add_user(), ibase_modify_user(), ibase_delete_use()
2002-01-27 Jon Parise <jon@csh.rit.edu>
* ext/standard/math.c:
Use the zend_* versions of finite(), isinf(), and isnan(), as defined
in php_config.h. Redefine the zend_* versions in the case of Win32.
This fixes the build on systems that don't provide a native version of,
say, isinf() (e.g. Solaris).
* sapi/cgi/getopt.c
sapi/cli/getopt.c
ext/xml/xml.c: Add a note that this statement will never be reached.
* ext/standard/mail.c:
Add a comment indicating that this return statement will never be reached.
* ext/sockets/sockets.c: Use socklen_t (instead of int) where appropriate.
* ext/sockets/sockets.c:
Because php_network.h includes <sys/socket.h>, it must be included after
_XPG4_2 is defined.
This fixes the build under Solaris 8.
2002-01-27 Sterling Hughes <sterling@designmultimedia.com>
* ext/standard/pack.c: don't throw fatal errors, throw E_WARNING instead.
* ext/curl/curl.c: hopefully fix --with-openssl issues
* ext/bz2/bz2.c: Source code cleanup
* ext/bz2/bz2.c:
Update code to last working version to avoid recent breaks.
2002-01-27 Marko Karppinen <karppinen@pobox.com>
* acinclude.m4:
Enable developers to use PHP_ARG_ENABLE and PHP_ARG_WITH silently
to maintain legacy configure options without clutter in the
configure help and checking output.
2002-01-26 Marko Karppinen <karppinen@pobox.com>
* configure.in:
- Reorganized stuff in configure.in and added a few comments
- Added a check for ApplicationServices/ApplicationServices.h (Mac OS X)
- Added AC_PROG_CPP, AC_PROG_CXX and AC_PROG_CXXCPP
- Improved the IPv6 check to fail on Mac OS X (there's no IPv6 there yet)
2002-01-26 Vincent Blavet <vincent@blavet.net>
* pear/PEAR/Packager.php: * Remove the use of a temp dir
* Tar archive is now doing the same work with less overhead
2002-01-25 Marko Karppinen <karppinen@pobox.com>
* configure.in:
Improve detection of resolv.h on versions of Darwin, FreeBSD and Solaris
(this requires post-2.13 autoconf, but 2.13 ignores it gracefully)
* configure.in: Relying only on host_alias is wrong
2002-01-25 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/session/mod_mm.c: We need mm file for each user.
2002-01-25 Derick Rethans <derick@vl-srm.net>
* ext/xmlrpc/config.m4:
- Fix for bug #15227: Compiling the CGI binary with xmlrpc fails to
build/link expat
* ext/standard/basic_functions.c:
- Fixed highlight_* (make it more robust)
2002-01-25 Hartmut Holzgraefe <hartmut@six.de>
* ext/ctype/EXPERIMENTAL: no longer experimental
2002-01-25 Derick Rethans <derick@vl-srm.net>
* ext/standard/basic_functions.c:
- Added optional parameter to highlight_string and highlight_file which
makes these functions return a highlighted string instead of dumping
to standard output. (Derick)
- Added optional parameter to highlight_string and highlight_file which
makes these functions return a highlighted string instead of dumping
to standard output.
2002-01-25 Rasmus Lerdorf <rasmus@php.net>
* ext/standard/array.c:
(extraxt) add EXTR_IF_EXISTS and EXTR_PREFIX_IF_EXISTS flags
2002-01-25 Derick Rethans <derick@vl-srm.net>
* ext/domxml/php_domxml.c:
- Fix for bug #14934: type property not set in comment nodes (domxml)
2002-01-25 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/session/mod_mm.c: Add sapi postfix for mm save path.
cli/cgi would not complain about mm save handler with this.
2002-01-25 Doug MacEachern <dougm@covalent.net>
* sapi/apache2filter/sapi_apache2.c: adjust to ap_get_brigade() API change
2002-01-25 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* php.ini-recommended
php.ini-dist:
Added "pgsql.auto_reset_persistent" ini entry to catch broken connection
always with pg_pconnect(). (Default Off in source and php.ini-*)
This option requires a little overhead for pg_pconnect().
* ext/pgsql/pgsql.c
ext/pgsql/php_pgsql.h: Added "auto_reset_presistent" ini entry.
2002-01-24 Marko Karppinen <karppinen@pobox.com>
* build/buildcheck.sh:
Latest libtools output a multiline version info. Deal with that
* ext/standard/parsedate.y:
Ignore ordinal suffixes on numbers (bug #15210)
2002-01-24 Edin Kadribasic <edink@proventum.net>
* sapi/cli/config.m4: Added --disable-cli option.
* NEWS: Made entry more consistent.
2002-01-24 Sascha Schumann <sascha@schumann.cx>
* configure.in: fix typo, found by edin
2002-01-24 Andrei Zmievski <andrei@ispi.net>
* ext/wddx/wddx.c: Revert back to using <char> element for newlines.
2002-01-24 Thomas V.V.Cox <cox@idecnet.com>
* pear/CODING_STANDARDS: correct url
2002-01-24 Marko Karppinen <karppinen@pobox.com>
* acinclude.m4:
Added a case for Darwin / Mac OS X to PHP_SHLIB_SUFFIX_NAME
* php.ini-dist
php.ini-recommended: Corrected a confusing comment (see bug #14972)
2002-01-24 Sascha Schumann <sascha@schumann.cx>
* Makefile.in
acinclude.m4
configure.in
ext/ircg/config.m4: Don't build CLI, if an extension requests that.
In this case, the ircg extension refers to thttpd-specific symbols
which causes the build of the cli sapi module to fail.
2002-01-24 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* NEWS: Change NEWS entry according to pgsql source change.
* ext/pgsql/pgsql.c:
Revert last 2 commit. Instead, make php_pgsql_do_connect() to catch
broken connection always.
2002-01-24 Vincent Blavet <vincent@blavet.net>
* pear/scripts/pearwin.php
pear/PEAR/Installer.php:
* Call the PEAR_Registry constructor with the optional parameter
* pear/PEAR/Registry.php:
* Adding the ability to set the PEAR_INSTALL_DIR while creating the Registry object (in the same way as Installer.php)
* pear/Archive/Tar.php:
* Adding support of extraction of remote archive http://www/archive.tgz
* Correct bug while using Windows root path c:\xxx\yyy in extract fct
2002-01-24 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* NEWS:
Added pgsql connection reset feature. Add my name to --enable-safe-mode fix.
* ext/pgsql/pgsql.c:
Add a little more fault tolerance for pg_host, pg_tty and more.
* ext/pgsql/pgsql.c:
No more httpd restart is required when PostgreSQL is rebooted.
2002-01-24 James Cox <james@awpimajes.com>
* INSTALL:
updated INSTALL to be more relevant.. more fixes coming (at some point)
2002-01-23 Vincent Blavet <vincent@blavet.net>
* pear/scripts/pearwin.php: * Add uninstall command
* Add list-installed command
2002-01-23 Thomas V.V.Cox <cox@idecnet.com>
* pear/System.php:
Return false when the directory can not be created in mkDir()
* pear/DB/tests/driver/.cvsignore: cvsignore
2002-01-23 Frank M. Kromann <frank@frontbase.com>
* ext/fbsql/php_fbsql.c: Fixing spelling error in FrontBase section
Changed som int to unsigned int to remove compiler warnings
* php.ini-dist
php.ini-recommended: Fixing spelling error in FrontBase section
2002-01-23 Sebastian Bergmann <sb@sebastian-bergmann.de>
* win32/php4ts.dsw
win32/php4ts_cli.dsp: Add workspace to build CLI SAPI Module on Win32.
* sapi/cli/php_cli.c: Give Edin Kadribasic his due credits.
2002-01-23 Edin Kadribasic <edink@proventum.net>
* sapi/cli/php_cli.c:
No need to dupe this string in cli sapi (Bug #15181).
2002-01-23 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* EXTENSIONS: Added comment for pgsql module.
2002-01-23 Hartmut Holzgraefe <hartmut@six.de>
* EXTENSIONS: claiming maintainance ownership of ext/calendar
* apidoc-zend.txt: added info about FETCH macros
(written over a year ago but somehow never commited)
2002-01-22 Jaroslaw Kolakowski <J.Kolakowski@students.mimuw.edu.pl>
* ext/domxml/php_domxml.c:
Simplified domxml_substitute_entities_default() function
2002-01-22 Sterling Hughes <sterling@designmultimedia.com>
* ext/curl/curl.c: just init CURL_GLOBAL_SSL
2002-01-22 Thomas V.V.Cox <cox@idecnet.com>
* pear/DB/ibase.php:
- Fix a problem with the cast to array from ibase_fetch_object
(reported by Ludovico Magnocavallo <ludo@sumatrasolutions.com>)
- Removed old, unsupported, unused DB_ibase->fetchRow()
(remember that fetchRow is a method from DB_result not DB_driver)
2002-01-22 Jan Lehnardt <jan@lehnardt.de>
* pear/File/Find.php: - whitespace fix
* pear/File/Find.php:
- initialize $matches to avoid error message on unset variable
if no matches are found.
2002-01-22 Christian Stocker <chregu@phant.ch>
* ext/domxml/php_domxml.c:
Getting rid of some compile warnings (thanks to markus for pointing me in the right direction :) )
2002-01-22 Sean Bright <elixer@erols.com>
* ext/standard/string.c:
Fix for bug #15130. Way too much effort for this bug, but cleaned up code
a bit, use zend_parse_parameters(), etc, etc. We only look for extensions
in the basename, not the full path.
2002-01-21 Jaroslaw Kolakowski <J.Kolakowski@students.mimuw.edu.pl>
* ext/domxml/php_domxml.h
ext/domxml/php_domxml.c:
Added domxml_substitute_entities_default() function
2002-01-21 Chris Jarecki <zenderx@ipro.pl>
* ext/domxml/php_domxml.c:
- fixed bug caused by libxml2 in xpath_register_ns()
- registered namespaces are now persistent
2002-01-21 Jon Parise <jon@csh.rit.edu>
* pear/Archive/Tar.php
pear/Makefile.in:
Adding Archive/Tar.php to php4/pear/. This is needed in order for the
phptar script (php4/pear/scripts/phptar) to be useful, so it makes sense
to make Archive/Tar.php a standard component.
2002-01-21 Martin Jansen <mail@martin-jansen.de>
* pear/HTML/IT.php: * Add possibility to load external files in template.
(Patch by Christian Dickmann <chrisdicki@gmx.de>.)
2002-01-21 Hartmut Holzgraefe <hartmut@six.de>
* acinclude.m4: removed check macros no longer needed due to CLI work
(plus reverting last commit, was in wrong dir :( )
* acinclude.m4: removed check macros no longer needed due to CLI work
2002-01-21 Dan Kalowsky <dank@deadmime.org>
* ext/odbc/php_odbc.c: this closes off a number of ODBC bugs.
2002-01-21 Derick Rethans <derick@vl-srm.net>
* main/network.c:
- Fix for bug #15057: getimagesize() crashes when offline (on MacOSX)
2002-01-21 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/pgsql.c: Fixed typo and proto
2002-01-20 Edin Kadribasic <edink@proventum.net>
* sapi/cgi/cgi_main.c:
Fixed bug #9041 and others in the same class (patch by pete.lee@ubs.com)
2002-01-20 Markus Fischer <mfischer@guru.josefine.at>
* ext/standard/datetime.c:
- Fix crash with invalid localtime on Win32 systems.
2002-01-20 Doug MacEachern <dougm@covalent.net>
* sapi/apache2filter/sapi_apache2.c:
adjust to ap_get_brigade and input filter api changes
2002-01-20 Sebastian Bergmann <sb@sebastian-bergmann.de>
* pear/Cache.php
pear/Cache.xml
pear/Makefile.in: Move Cache to /pear.
* pear/Makefile.in: Move Payment_Verisign to /pear.
* pear/Makefile.in
pear/Log.php:
Move Benchmark, Math, Numbers to /pear. Remove Log, it was already in /pear.
2002-01-20 Hartmut Holzgraefe <hartmut@six.de>
* ext/fbsql/php_fbsql.c: cut&paste errors in protos fixed
* ext/domxml/php_domxml.c: proto fix
2002-01-20 Sebastian Bergmann <sb@sebastian-bergmann.de>
* TODO: Fixed by Sean Bright's commit.
2002-01-20 Sean Bright <elixer@erols.com>
* ext/db/db.c: Forgot to remove the return from a void function
* ext/db/db.c
ext/db/php_db.h:
These PHP3_* macros aren't defined in the code, so these haven't been doing
anything for some time now (at least since 4.0 was released). So let's go
ahead and remove those.
2002-01-20 Edin Kadribasic <edink@proventum.net>
* TODO-4.2.txt: Removed entry implemented in cli sapi.
* main/.cvsignore
main/Makefile.in
sapi/cli/Makefile.in
acinclude.m4
configure.in
ext/ncurses/config.m4
ext/pcntl/config.m4
ext/readline/config.m4:
Modified the build system to make certain extensions (pcntl, ncurses,
pcntl) only with cgi/cli sapi's. This was done by adding 3rd optional
parameter to PHP_EXTENSION macro which should be set to "cli" if
the extension only makes sense for that class of api's.
* ext/readline/.cvsignore: Added missing entry to .cvsignore
2002-01-20 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* header: Get rid of needless spaces
* README.CVS-RULES: Revert my last commit
2002-01-19 Edin Kadribasic <edink@proventum.net>
* TODO: Removed two issues resolved by the introduction of sapi/cli.
* sapi/cli/php_cli.c: Merged patch from sapi/cgi.
2002-01-19 Jaroslaw Kolakowski <J.Kolakowski@students.mimuw.edu.pl>
* ext/domxml/php_domxml.c:
- Fixed passing parameters to domxml_xslt_process(). Now they can be either strings or XPath expressions.
- Several minor fixes in domxml_xslt_process().
2002-01-19 Martin Jansen <mail@martin-jansen.de>
* pear/Crypt/HCEMD5.php: * Fix bug #13189.
2002-01-19 Wez Furlong <wez.php@thebrainroom.com>
* ext/mailparse/rfc2045cdecode.c:
Make the decoder less strict to allow for brain-dead mailers that mark
messages as 7bit but then include 8bit chars in the body.
Thanks to Dan Fitzpatrick for bringing this to my attention.
2002-01-19 Thomas V.V.Cox <cox@idecnet.com>
* pear/DB/common.php
pear/DB.php:
Stores limit_from and limit_count as DB_result proporties instead
of DB_common. Fixs bug when doing queries inside limitQuery results.
* pear/DB/common.php: ws
* pear/DB/oci8.php:
Removed unecesary check and only change the case of the keys
when data is returned (fetchInto())
2002-01-19 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* main/main.c: Make --enable-safe-mode useful
2002-01-18 Shane Caraveo <shane@caraveo.com>
* sapi/cgi/cgi_main.c: reimplement extension listing
2002-01-18 Thomas V.V.Cox <cox@idecnet.com>
* pear/DB/tests/driver/02fetch.phpt
pear/DB/tests/driver/03simplequery.phpt
pear/DB/tests/driver/04numcols.phpt
pear/DB/tests/driver/06prepexec.phpt
pear/DB/tests/driver/08affectedrows.phpt
pear/DB/tests/driver/15quote.phpt:
removed unneeded require_once "DB.php";
* pear/DB/odbc.php: - Fix fetch row by number (ODBC starts at 1)
- New "navision" syntax (this driver doesn't support fetchs by
number, so emulate row limit by skipping rows)
2002-01-18 Markus Fischer <mfischer@guru.josefine.at>
* ext/domxml/php_domxml.c: - More WS fixes
2002-01-18 Christian Stocker <chregu@phant.ch>
* ext/domxml/php_domxml.c:
shite :) too much WS fixes. leave the licence as it was...
* ext/domxml/php_domxml.c: - WS fixes (replaced " " by \t)
2002-01-18 Thomas V.V.Cox <cox@idecnet.com>
* pear/DB/STATUS
pear/DB/odbc.php:
added affectedRows() and test in numRows() if the backend
is capable of not to return this info
2002-01-18 Christian Stocker <chregu@phant.ch>
* ext/domxml/php_domxml.c:
- added optional parameters format and level for domxml_dump_node()
* ext/domxml/php_domxml.c
ext/domxml/php_domxml.h: - added macro DOMXML_PARAM_ONE
- added function domxml_dump_node($doc,$node). Dumps a node plus all
children into a string. (chregu)
* ext/domxml/php_domxml.h
ext/domxml/php_domxml.c:
- Added function domxml_node_get_content() (chregu)
* ext/domxml/config.m4
ext/domxml/php_domxml.c
ext/domxml/php_domxml.h: - added DOMXML_PARAM_THREE macro
- renamed domxml_dumpmem to domxml_dump_mem, added alias for
domxml_dumpmem
- domxml_has_attributes was missing in in zend_function_entry
- added function domxml_dump_file($filename,[$compression]). Dumps XML to
a file and uses compression, if specified (chregu)
- added exslt integration (see http://exslt.org for details). To be
configured with --with-dom-exslt[=DIR] (and --with-dom-xslt) (chregu, jaroslaw)
2002-01-18 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* README.CVS-RULES: Fix typo
2002-01-17 Adam Dickmeiss <adam@indexdata.dk>
* ext/yaz/php_yaz.c
ext/yaz/php_yaz.h:
New function yaz_es_result: Z395.0 Extended Services Result.
2002-01-17 Ilia Alshanetsky <ilia@prohost.org>
* ext/shmop/shmop.c:
Fixed shmop_read to append \0 to returned string in shmop_read to eliminate Zend warnings
2002-01-17 Thies C. Arntzen <thies@thieso.net>
* ext/session/session.c:
guys, shoot me if i'm wrong, but when we have set register_globals to off we
should _not_ touch any global variables at any time, right? so all session
register/unregister should only work on $HTTP_SESSION_VARS and $_SESSION. this
patch fixes at least one spot where we were touching globals even with
register_globals set to off.
* ext/oci8/oci8.c:
- Added 3 new optional parameters to OCIFetchStatement(). They control
the number of rows to skip at the beginning of the cursor, the
maximun numer of rows that should be fetched and the format of the
returned array.
2002-01-17 Sterling Hughes <sterling@designmultimedia.com>
* NEWS: Fix attribution, its Petr's patch, not mine :)
* NEWS: Little cleanup, add information about Sablotron 0.8
* ext/xslt/config.m4: Update for Sablotron .8
2002-01-17 Thomas V.V.Cox <cox@idecnet.com>
* pear/DB/pgsql.php: Test for results in _pgFieldFlags (thanks Brian Abent
<brian@onlineinfo.net>)
2002-01-17 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/domxml/config.m4:
Use libxml2 header if there are older version. Reported by <jwagoner@wlion.com>
2002-01-17 Jaroslaw Kolakowski <J.Kolakowski@students.mimuw.edu.pl>
* ext/domxml/php_domxml.c
ext/domxml/php_domxml.h: Added XsltStylesheet class with methods:
- domxml_xslt_stylesheet(string),
- domxml_xslt_stylesheet_doc(DomDocument),
- domxml_xslt_stylesheet_file(filename),
- process(DomDocument,parameters array) - previously domxml_xslt_process().
2002-01-16 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/session/session.c: Export php_session_register_module/serializer
2002-01-16 Rasmus Lerdorf <rasmus@php.net>
* ext/snmp/config.m4: Fix typo
2002-01-16 Marc Boeren <M.Boeren@guidance.nl>
* ext/dbx/dbx_mysql.c:
mysql_db_query is deprecated, fixed by using mysql_select_db and
mysql_query (Mc).
2002-01-16 Bertrand Mansion <bmansion@mamasam.com>
* pear/HTML/Table.php: Changes by René Jensen :
- Remove duplicate test
- Nicer html output for nested table level comment.
2002-01-16 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/session/php_session.h:
Export php_session_register_module/serializer.
2002-01-16 Thomas V.V.Cox <cox@idecnet.com>
* pear/DB/tests/driver/15quote.phpt: add quote data test
2002-01-15 Andrei Zmievski <andrei@ispi.net>
* ext/pcre/php_pcre.c
NEWS: - Fixed a bug with matching string containing null bytes.
2002-01-14 Chris Jarecki <zenderx@ipro.pl>
* ext/domxml/php_domxml.c: - using macro in xpath_register_ns()
- fixed protos in xpath functions
2002-01-14 Martin Jansen <mail@martin-jansen.de>
* pear/Date/Calc.php: * Fix for bug #15032.
2002-01-14 Stefan Esser <s.esser@e-matters.de>
* main/SAPI.c: MFH: fix for bug #14776
* main/SAPI.c: fix for bug #14776
2002-01-14 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/mbstring/mbregex.c:
fixed an error in mbstring caused by confliction with regex.
2002-01-13 Edin Kadribasic <edink@proventum.net>
* acinclude.m4
sapi/cli/Makefile.in:
Fixed build in the directory other than $top_srcdir.
2002-01-13 Thomas V.V.Cox <cox@idecnet.com>
* pear/DB/ibase.php:
Added modifyLimitQuery(). Only avaible for the Firebird syntax
(ibase(firebird)://user:pass@host/db)
(contributed by Ludovico Magnocavallo <ludo@sumatrasolutions.com>)
* pear/DB/tests/db_parsedsn.phpt: Two tests more
* pear/DB/mysql.php:
Added support for socket and port options in connect()
* pear/DB/pgsql.php: better DSN handling
* pear/DB/tests/db_parsedsn.phpt: Test update
* pear/DB.php: New DSN "protcocol(protocol_opts)" format support:
phptype://user:pass@protocol(proto_opts)/database
ex:
pgsql://user@unix()/pear
mysql://user@unix(/path/to/socket)/pear
pgsql://user:pass@word@tcp(somehost:7777)/pear
2002-01-13 Rasmus Lerdorf <rasmus@php.net>
* NEWS: 4.1.1 NEWS entry block was missing from the HEAD tree
2002-01-13 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/gd/config.m4: fixed some link error of gd's configure.
2002-01-13 Edin Kadribasic <edink@proventum.net>
* sapi/cli/Makefile.in
Makefile.in:
This should fix cli build when running 'make install' directly.
2002-01-13 Chris Jarecki <zenderx@ipro.pl>
* ext/domxml/php_domxml.c
ext/domxml/php_domxml.h: - Added xpath_register_ns() function.
2002-01-12 Edin Kadribasic <edink@proventum.net>
* sapi/cli/Makefile.in:
Fixed CLI build when the main SAPI is built as a shered library.
* Makefile.in
acinclude.m4
configure.in
sapi/cli/.cvsignore
sapi/cli/Makefile.in
sapi/cli/config.m4: Modified the build system to always build CLI SAPI.
2002-01-12 Gavin Sherry <swm@linuxworld.com.au>
* ext/dba/dba_db2.c:
My bad. Left some stray debugging code in previous commit.
* ext/dba/dba_db2.c: See the update to dba_db3.c
* ext/dba/dba_db3.c:
This fixes the notorious "mode 'c' fails" bug (see bugs - 10380, 10798, 11732). The bug originates from the fact that mode "c" for db3 sets 'type' to DB_UNKNOWN and mode DB_CREATE when the database already exists. The underlying library raises an error at this logical discrepancy: obviously one cannot create a database of unknown type.
2002-01-12 Vlad Krupin <phpdevel@echospace.com>
* ext/imap/php_imap.c:
Fixed segfault in imap_bodystruct() when called with an invalid message
number. Now it fails with a warning instead.
2002-01-11 Jaroslaw Kolakowski <J.Kolakowski@students.mimuw.edu.pl>
* ext/domxml/php_domxml.c
ext/domxml/php_domxml.h: Added domxml_node_replace_node() function.
2002-01-11 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/mbstring/Makefile.in
ext/mbstring/config.m4
ext/mbstring/mbregex.c
ext/mbstring/mbregex.h
ext/mbstring/mbstring.c
ext/mbstring/mbstring.h
ext/mbstring/php_mbregex.c:
Added multi-byte enabled regex functions.
2002-01-11 Markus Fischer <mfischer@guru.josefine.at>
* ext/standard/file.c:
- mkdir(): made second (mode) parameter optional, default to 0777
switched to zend_parse_parameters().
2002-01-11 Thomas V.V.Cox <cox@idecnet.com>
* pear/HTTP.php:
- Added HTTP::head($url) which sends a "HEAD" HTTP command to a server
and returns the headers as an associative array
- Call-time pass-by-reference fixes
* pear/tests/pear1.phpt:
submit a test that will fail due to php bug #14744
2002-01-10 Frank M. Kromann <frank@frontbase.com>
* ext/fbsql/php_fbsql.c
ext/fbsql/php_fbsql.h:
Adding functions to get BLOB/CLOB size from a lob_handle.
Added descriptions on most protos
2002-01-10 Andrei Zmievski <andrei@ispi.net>
* NEWS
ext/standard/array.c:
Fix the recursive counting, it was broken for associative or non-sequential
arrays. Also update NEWS file.
2002-01-10 Derick Rethans <d.rethans@jdimedia.nl>
* main/main.c:
- Make an E_NOTICE error type show 'Notice' instead of 'Warning'.
2002-01-10 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/session/mod_mm.c: Fix startup crash
2002-01-10 Markus Fischer <mfischer@guru.josefine.at>
* ext/dio/dio.c: - Unified error messages.
- Improved argument handling in dio_fcntl().
2002-01-10 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/session/mod_mm.c: Revert last commit
2002-01-10 Sascha Schumann <sascha@schumann.cx>
* ext/session/mod_mm.c: Improved code for handling PS(save_path)
Don't MFH before further testing
* ext/session/mod_mm.c: Ws fix
* ext/standard/filestat.c:
(PHP touch) Operate on a stack buffer.. no need for allocating newtime
on the heap.
* ext/standard/filestat.c:
Add three-parameter touch() which enables users to set
mtime/atime to different values.
2002-01-10 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/pgsql/tests/dropdb.inc: Fix bug in test script
* ext/session/mod_mm.c: MFH
* ext/session/mod_mm.c: Make use of save_path for mm file.
Patch by Henning Schmiedehausen <hps@intermeta.de>
Closes bug 14808
2002-01-10 Sascha Schumann <sascha@schumann.cx>
* ext/session/tests/003.phpt
ext/session/tests/004.phpt
ext/session/tests/005.phpt
ext/session/tests/006.phpt:
Make these tests succeed with non-standard settings
2002-01-10 Markus Fischer <mfischer@guru.josefine.at>
* ext/domxml/php_domxml.h: - Fix compilation. (Christian Stocker)
2002-01-10 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* header: Year update
* EXTENSIONS: shmop got a new maintainer
2002-01-09 jim winstead <jimw@apache.org>
* ext/standard/tests/math/pow.phpt
NEWS
ext/standard/basic_functions.c
ext/standard/math.c
ext/standard/php_math.h:
Rename finite/isinf/isnan to more standard is_*() names.
* ext/standard/type.h
ext/standard/php_type.h
ext/standard/type.c
ext/standard/basic_functions.h
ext/standard/php_standard.h
ext/standard/basic_functions.c
main/rfc1867.c:
Move type-handling functions into ext/standard/type.c (which had
a few otherwise unused functions in it).
2002-01-09 Martin Jansen <mail@martin-jansen.de>
* pear/XML/Parser.php: * Whitespace.
2002-01-09 Markus Fischer <mfischer@guru.josefine.at>
* ext/sockets/sockets.c: - Correct some protos.
2002-01-09 Derick Rethans <d.rethans@jdimedia.nl>
* ext/standard/tests/array/count_recursive.phpt
ext/standard/array.c: - Fix bug introduced in earlier patch
2002-01-09 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/shmop/README
ext/shmop/php_shmop.h
ext/shmop/shmop.c: MFH.
Bugs 10530,10656,14784
2002-01-09 Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de>
* ext/pgsql/pgsql.c: - fixed typo in deprecated functionname
2002-01-09 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/shmop/README
ext/shmop/config.m4
ext/shmop/php_shmop.h
ext/shmop/shmop.c:
- shmop_open has a new flag for read/write access, 'w'
- eliminated a segfault when trying to write to a SHM_RDONLY segment
- eliminated a segfault when an invalid flag which starts with 'a' or 'c' is passed
- updated creators' email addresses
- changed error messages to say shmop_* instead of shm* to correspond with new shmop_* function names
Patch by Ilia Alshanetsky (ilia@prohost.org)
2002-01-09 Jani Taskinen <sniper@iki.fi>
* ext/domxml/php_domxml.h: - Fixed compile with older libxml.
* configure.in: - Fixed the creation of pear-get script.
* acinclude.m4
configure.in:
Reverted Hartmut's patch as it caused more trouble than it solved.
* ext/readline/config.m4: whitespace
2002-01-08 Jan Lehnardt <jan@lehnardt.de>
* pear/HTML/Form.php
pear/HTML/Page.php:
fix two warnings, thanks to Erik Hjortsberg <erik@hysteriskt.nu>
2002-01-08 Jaroslaw Kolakowski <J.Kolakowski@students.mimuw.edu.pl>
* ext/domxml/php_domxml.c
ext/domxml/php_domxml.h: A
Changed names of functions:
- htmldoc() to html_doc(),
- htmldocfile() to html_doc_file(),
- domxml_htmldumpmem() to domxml_html_dump_mem(),
- htmldumpmem() to html_dump_mem().
2002-01-08 Jani Taskinen <sniper@iki.fi>
* ext/ext_skel:
Some whitespace fixes (naugthy me :) and make use of PHP_CHECK_LIBRARY
macro instead of AC_CHECK_LIB.
2002-01-08 Sterling Hughes <sterling@designmultimedia.com>
* ext/sockets/sockets.c: Changed proto via Georg Richter's request.
2002-01-08 Jaroslaw Kolakowski <J.Kolakowski@students.mimuw.edu.pl>
* ext/domxml/php_domxml.h
ext/domxml/php_domxml.c
ext/domxml/config.m4:
- Added functions: htmldoc(), htmldocfile(), domxml_htmldumpmem().
- Added error handling for the libxml library.
- Added preliminary DOM XSLT support:
-- uses the libxslt library,
-- operates on DOM objects, not strings,
-- functions: domxml_xslt_process(), domxml_xslt_version().
2002-01-07 James Cox <james@awpimajes.com>
* win32/install.txt:
browscap url fix, plus removed ^M references. it should look nice on any os.
* win32/install.txt:
changed the instructions for php with win32 + apache. Recommending using sapi
over cgi binary, since cgi binary and apache don't mix well security wise.
2002-01-07 Yasuo Ohgaki <yohgaki@dd.iij4u.or.jp>
* ext/session/session.c: MFH
* NEWS: New PostgreSQL functions
2002-01-07 Egon Schmid <eschmid@s.netic.de>
* ext/mbstring/mbstring.c: Fixed some protos.
2002-01-07 Rui Hirokawa <rui_hirokawa@ybb.ne.jp>
* ext/mbstring/mbstring.c
ext/mbstring/mbstring.h:
added mb_get_info() to get internal settings of mbstring.
2002-01-07 Markus Fischer <mfischer@guru.josefine.at>
* ext/domxml/php_domxml.c:
- Fix domxml_node_unlink_node() proto and return value.
2002-01-07 Thomas V.V.Cox <cox@idecnet.com>
* pear/HTTP.php: ws
2002-01-06 Stig Venaas <venaas@uninett.no>
* ext/ftp/ftp.c
ext/ftp/ftp.h: Added IPv6 support
* main/network.c
main/php_network.h:
hostconnect now divides the timeout with no. of addresses. If a connection
attempt times out, it goes on to the next. Unless each timeout would be
<5s. Added php_any_addr() that fills out the any address for IPv6 and IPv4.
2002-01-06 Thomas V.V.Cox <cox@idecnet.com>
* pear/scripts/pear-get.in
pear/scripts/pear.in:
use the new Console_Getopt::readPHPArgv() function to read args
* pear/Console/Getopt.php:
Added readPHPArgv() function that will safely read the $argv PHP array
across different PHP configurations. Will take care on register_globals
and register_argc_argv ini directives and the new $_SERVER vars
2002-01-06 Edin Kadribasic <edink@proventum.net>
* sapi/cli/.cvsignore
sapi/cli/CREDITS
sapi/cli/Makefile.in
sapi/cli/config.m4
sapi/cli/getopt.c
sapi/cli/php_cli.c
sapi/cli/php_getopt.h: Added CLI (command line intrerface) sapi.
* main/SAPI.h
main/main.c:
Added argc and argv in request_info needed for the new cli sapi.
Modified registering $argc and $argv to support cli sapi.
2002-01-06 Stig Venaas <venaas@uninett.no>
* ext/sockets/php_sockets.h
ext/sockets/sockets.c
main/network.c
main/php_network.h
configure.in:
Added some consts for arguments in network.c declarations. Moved
php_sockaddr_storage to php_network.h and added check for struct
sockaddr_storage
2002-01-06 Thomas V.V.Cox <cox@idecnet.com>
* pear/DB/tests/driver/setup.inc: pgsql->mysql
2002-01-06 Stig Bakken <ssb@fast.no>
* ChangeLog.2001.gz: * archive the 2001 changelog
2002-01-06 Thomas V.V.Cox <cox@idecnet.com>
* pear/DB/tests/pgsql/09numrows.phpt
pear/DB/tests/mysql/09numrows.phpt: this test is no longer here
* pear/DB/tests/driver/01connect.phpt
pear/DB/tests/driver/02fetch.phpt
pear/DB/tests/driver/03simplequery.phpt
pear/DB/tests/driver/04numcols.phpt
pear/DB/tests/driver/05sequences.phpt
pear/DB/tests/driver/06prepexec.phpt
pear/DB/tests/driver/08affectedrows.phpt
pear/DB/tests/driver/09numrows.phpt
pear/DB/tests/driver/10errormap.phpt
pear/DB/tests/driver/13limit.phpt
pear/DB/tests/driver/14fetchmode_object.phpt
pear/DB/tests/driver/README
pear/DB/tests/driver/connect.inc
pear/DB/tests/driver/mktable.inc
pear/DB/tests/driver/setup.inc
pear/DB/tests/driver/skipif.inc: Multi-Driver portability test
* pear/DB/tests/errors.inc
pear/DB/tests/limit.inc
pear/DB/tests/numrows.inc
pear/DB/tests/tableinfo.inc: test updates
* pear/DB/oci8.php: - use count(*) instead of count(a, b)
- preserve the error handler when testing the sequence
- missing E_ALL fixes
* pear/DB/oci8.php: - change the case of column names to lower case when
"optimize=portability" (use a slow php array_change_key_case() until
PHP get its C native version avaible. Please do it!)
- Improved error reporting in connection
2002-01-05 Markus Fischer <mfischer@guru.josefine.at>
* ext/domxml/php_domxml.c:
- Refuse attribute nodes on add_child() and add list destructor for PI
nodes. (Christian Stocker)
- Fix append_child() according to add_child().
- Fix some protos, minor code and warning message cosmetics.
2002-01-05 jim winstead <jimw@apache.org>
* ext/standard/tests/strings/wordwrap.phpt
ext/standard/string.c:
More tweaking of wordwrap() with the cut parameter set. It was being a
little too aggressive and cutting words without breaking at spaces
first. (A couple of tests were incorrect.)
* ext/standard/tests/strings/wordwrap.phpt
ext/standard/string.c:
New memcpy()-based wordwrap() implementation. The simple case
(single-character break, no forced break) appears to be about 60%
faster, and there's simply no comparison for non-simple cases with
non-trivial amounts of text. The old algorithm was O(n^2) (with an
unfortunately large constant factor) because of the use of strncat(),
the new one is O(n). Added some more tests, too.
2002-01-05 Thomas V.V.Cox <cox@idecnet.com>
* pear/scripts/pear-get.in
pear/scripts/pear.in: Added check for $argv avaible
(thanks Michael H<>rtl <mhaertl@pressline.de>)
2002-01-05 jim winstead <jimw@apache.org>
* ext/standard/math.c: Fix the Win32 compile.
2002-01-05 Egon Schmid <eschmid@s.netic.de>
* ext/standard/math.c
ext/standard/basic_functions.c: Fixed some protos.
2002-01-05 jim winstead <jimw@apache.org>
* ext/standard/math.c:
Apparently multi_convert_to_double_ex() didn't quite do what I
thought. Still need to handle numeric strings.
* ext/standard/tests/math/pow.phpt
ext/standard/basic_functions.c
ext/standard/math.c
ext/standard/php_math.h:
Fixed pow(), and added finite(), isinf(), and isnan(). Also fixed
pow() tests.
* ext/standard/tests/math/pow.phpt:
good grief, positive powers of 0 are well-defined. (code fix coming.)
* ext/standard/reg.c:
Be more aggressive in making sure that substring matches are valid in
ereg_replace before trying to use them.
2002-01-05 Zak Greant <zak@jobvillage.com>
* ext/standard/tests/array/array_data.txt:
Surprising how tests can fail when they don't have any supporting data :) Thanks for the catch Jan and Jim
2002-01-04 Jon Parise <jon@csh.rit.edu>
* main/rfc1867.c: Nuke unused variable warning (end_arr).
2002-01-04 Stig Venaas <venaas@uninett.no>
* ext/ldap/ldap.c
ext/ldap/php_ldap.h:
Made ldap_modify() an alias for ldap_mod_replace(). The two were identical.
2002-01-04 jim winstead <jimw@apache.org>
* ext/standard/tests/strings/wordwrap.phpt
ext/standard/string.c:
Fixed segfault in wordwrap() when wrapping to zero width and using
multi-character break or trying to force cut (bug #12768, now fails
and issues a warning because forcing a zero-width cut doesn't make
sense). Also converted to new paramater-passing API and avoid making
an extra copy of the return values.
2002-01-04 Sterling Hughes <sterling@designmultimedia.com>
* ext/dio/dio.c: Added the O_NOCTTY option, for terminal i/o.
2002-01-04 Hartmut Holzgraefe <hartmut@six.de>
* configure.in: first PHP_EXTENSION_LIBS casualty :(
2002-01-04 Ben Mansell <ben@zeus.com>
* sapi/fastcgi/fastcgi.c:
Added log_message function to the FastCGI sapi, so you can see error
output from scripts
2002-01-04 Hartmut Holzgraefe <hartmut@six.de>
* ext/ncurses/config.m4: ncurses is useless in webserver modules
* ext/xmlrpc/config.m4
ext/xslt/config.m4: more unquoted messages with kommas fixed
* ext/mcrypt/config.m4:
always quote messages with [...], *especialy* when using kommas in the text
* ext/domxml/php_domxml.c: proto fixes
* ext/pcntl/config.m4: use predefined function instead of hardcoded test
* ext/pcntl/pcntl.c
ext/odbc/velocis.c: proto fix
* CODING_STANDARDS: small clarification
2002-01-04 Sascha Schumann <sascha@schumann.cx>
* genfiles: Remove #line's from var_unserializer.c
2002-01-04 Hartmut Holzgraefe <hartmut@six.de>
* ext/readline/config.m4: check for library existance before adding them
* acinclude.m4: two new check functions for use in config.m4 file
2002-01-04 Sebastian Bergmann <sb@sebastian-bergmann.de>
* ext/mssql/.cvsignore: Update .cvsignore.
2002-01-03 Frank M. Kromann <frank@frontbase.com>
* ext/mssql/php_mssql.c:
Making error handling thread safe. Thanks to Paco Ortiz <fjortiz@comunet.es>
2002-01-03 Hartmut Holzgraefe <hartmut@six.de>
* acinclude.m4
configure.in:
make configure more robust if extensions add libraries without
checking for their existance first
old behaviour was to fail on the next library check with misleading
messages, now configure will work but make will fail with a
'lib not found' message
* ext/standard/string.c:
fix for bug #14832: basename with 2nd parm corrupts source string
2002-01-03 Markus Fischer <mfischer@guru.josefine.at>
* ext/ftp/php_ftp.c: - Now use ZE's builtin zend_zval_type_name().
* ext/domxml/php_domxml.c:
- domxml_node_add_child(): Perform deep copy before adding child to prevent
double memory freeing.
* ext/ftp/php_ftp.c: - FTP_BINARY is more common instead of FTP_IMAGE.
2002-01-03 Thies C. Arntzen <thies@thieso.net>
* ext/standard/dir.c: protos fixes by Wolfgang Drews
2002-01-03 Egon Schmid <eschmid@s.netic.de>
* ext/ftp/php_ftp.c:
Please, no punctuation mark at the end of the description.
2002-01-02 Zak Greant <zak@jobvillage.com>
* ext/standard/basic_functions.c:
Adding key_exists alias for array_key_exists, at the request of One-Who-Shall-Not-Be-Named-Because-He-Is-On-Vacation
2002-01-02 Stig Bakken <ssb@fast.no>
* pear/DB/tests/db_error.phpt
pear/DB/tests/db_error2.phpt
pear/tests/pear_error.phpt: * PEAR.php line number changes again
* pear/tests/pear_registry.phpt:
* registry files renamed from .inf to .reg, update test
* pear/PEAR/Installer.php: * support "pear-get install XML_RPC"
* pear/Makefile.in
pear/scripts/.cvsignore
pear/scripts/pear-get.in
pear/scripts/pear.in:
* start splitting "pear" command into "pear" and "pear-get"
* pear/PEAR/Remote.php: * use new overloading API properly
2002-01-02 Markus Fischer <mfischer@guru.josefine.at>
* ext/ftp/php_ftp.c:
- Corrected proto for ftp_connect() (new optional parameter for initial
custom timeout).
* ext/ftp/ftp.c
ext/ftp/ftp.h
ext/ftp/php_ftp.c
ext/ftp/php_ftp.h:
- Added ftp_set_option(), ftp_get_option() and support for setting a
custom timeout.
2002-01-02 jim winstead <jimw@apache.org>
* ext/gd/gd.c:
jpeg2wbmp,png2wbmp: fix prototypes; _php_image_convert: simplify argument count checking
2002-01-02 Markus Fischer <mfischer@guru.josefine.at>
* ext/ftp/php_ftp.c: - Fixed ftp_fget() and ftp_mkdir() protos.
* ext/ftp/php_ftp.c: - Corrected proto for ftp_fget().
2002-01-01 Markus Fischer <mfischer@guru.josefine.at>
* ext/ftp/php_ftp.c
ext/ftp/php_ftp.h:
- Switched to zend_parse_parameters(), unified error/warning messages,
use real resources instead of integers, adjusted prototypes (hope I got
them all).
* NEWS: - Summarize dbase fixes.
2002-01-01 Adam Dickmeiss <adam@indexdata.dk>
* ext/yaz/php_yaz.c:
Removal of non-essential parameters for non-piggyback search.