]> granicus.if.org Git - php/log
php
20 years agoFix for Bug #28161 (and probably others that I can't find in the bug db;
Wez Furlong [Wed, 28 Apr 2004 08:23:22 +0000 (08:23 +0000)]
Fix for Bug #28161 (and probably others that I can't find in the bug db;
the search interface sucks).

Expand the proxy object so it can handle psuedo array style properties.

ASP/VB code like this:

headObj.Attribute("RID") = rid

can be expressed like this in PHP:

$headObj->Attribute['RID'] = $rid;

In theory, this feature can be used for "multi dimensional" properties:

headObj.Attribute("RID", "Foo") = rid;

like this:

$headObj->Attribute['RID']['Foo'] = $rid;

20 years agoChangeLog update
<changelog@php.net> [Wed, 28 Apr 2004 00:33:46 +0000 (00:33 +0000)]
ChangeLog update

20 years agoDon't strip off those []s, it'll only create problems in wrappers and elsewhere.
Sara Golemon [Tue, 27 Apr 2004 19:28:11 +0000 (19:28 +0000)]
Don't strip off those []s, it'll only create problems in wrappers and elsewhere.

20 years agoBugFix 28187 parse_url does not handle scheme://[0123:4567::89]:12345/etc style IPv6...
Sara Golemon [Tue, 27 Apr 2004 19:13:13 +0000 (19:13 +0000)]
BugFix 28187 parse_url does not handle scheme://[0123:4567::89]:12345/etc style IPv6 embedded address URLs

20 years ago- More examples
Marcus Boerger [Tue, 27 Apr 2004 18:15:00 +0000 (18:15 +0000)]
- More examples

20 years ago- Optional parameter to class_exists() that can be used to bypass
Marcus Boerger [Tue, 27 Apr 2004 18:09:40 +0000 (18:09 +0000)]
- Optional parameter to class_exists() that can be used to bypass
  __autoload() which can be helpfull in __autoload() itself.

20 years agoRemoved C++ style comments.
Ilia Alshanetsky [Tue, 27 Apr 2004 17:33:59 +0000 (17:33 +0000)]
Removed C++ style comments.

20 years ago- Some pretection against out-of-memory situations
Marcus Boerger [Tue, 27 Apr 2004 17:12:11 +0000 (17:12 +0000)]
- Some pretection against out-of-memory situations

20 years agoFix test
Marcus Boerger [Tue, 27 Apr 2004 15:48:20 +0000 (15:48 +0000)]
Fix test

20 years ago- Fix warnings
Marcus Boerger [Tue, 27 Apr 2004 15:47:55 +0000 (15:47 +0000)]
- Fix warnings

20 years ago- Fix ArrayIterator iteration
Marcus Boerger [Tue, 27 Apr 2004 15:42:45 +0000 (15:42 +0000)]
- Fix ArrayIterator iteration
- Make it seekable

20 years agoFix LimitIterator by using new handler
Marcus Boerger [Tue, 27 Apr 2004 15:41:26 +0000 (15:41 +0000)]
Fix LimitIterator by using new handler

20 years agoFix documentation
Marcus Boerger [Tue, 27 Apr 2004 15:39:33 +0000 (15:39 +0000)]
Fix documentation

20 years ago- no unneccessary retval initialization
Marcus Boerger [Tue, 27 Apr 2004 15:38:07 +0000 (15:38 +0000)]
- no unneccessary retval initialization
- new c-level iterator handler invalidate_current that is optionally
  used to clear internal caching like in implementation of Iterator

20 years ago- Fix prototypes
Andi Gutmans [Tue, 27 Apr 2004 15:18:33 +0000 (15:18 +0000)]
- Fix prototypes

20 years agoFixed bug #28184 (C++ comments in GD library sources).
Ilia Alshanetsky [Tue, 27 Apr 2004 14:59:07 +0000 (14:59 +0000)]
Fixed bug #28184 (C++ comments in GD library sources).

20 years agoadd relaxNG support
Rob Richards [Tue, 27 Apr 2004 10:46:21 +0000 (10:46 +0000)]
add relaxNG support
set xml base directory so it is consistant
add validation examples

20 years agofix bug 1242 - notice if multi-dimensional array is passed as a parameter
Greg Beaver [Tue, 27 Apr 2004 04:31:39 +0000 (04:31 +0000)]
fix bug 1242 - notice if multi-dimensional array is passed as a parameter
add optional parameter to staticHasErrors() that allows error determination for a single package

20 years agoChangeLog update
<changelog@php.net> [Tue, 27 Apr 2004 00:35:21 +0000 (00:35 +0000)]
ChangeLog update

20 years agoComplete implementation
Marcus Boerger [Mon, 26 Apr 2004 22:01:12 +0000 (22:01 +0000)]
Complete implementation

20 years agoUpdate
Marcus Boerger [Mon, 26 Apr 2004 21:34:45 +0000 (21:34 +0000)]
Update

20 years agoRemoved pointless check.
Ilia Alshanetsky [Mon, 26 Apr 2004 20:14:11 +0000 (20:14 +0000)]
Removed pointless check.

20 years agoFix prototype
Marcus Boerger [Mon, 26 Apr 2004 18:54:18 +0000 (18:54 +0000)]
Fix prototype

20 years agohmm. this comma is supposed to be a semicolon.
Antony Dovgal [Mon, 26 Apr 2004 14:49:41 +0000 (14:49 +0000)]
hmm. this comma is supposed to be a semicolon.

20 years agoChangeLog update
<changelog@php.net> [Mon, 26 Apr 2004 00:35:44 +0000 (00:35 +0000)]
ChangeLog update

20 years ago- MFB: Fixed bug #28147 (Crash with drawing anti-alised lines)
Derick Rethans [Sun, 25 Apr 2004 19:45:02 +0000 (19:45 +0000)]
- MFB: Fixed bug #28147 (Crash with drawing anti-alised lines)

20 years agoFixed test.
Ilia Alshanetsky [Sun, 25 Apr 2004 16:50:47 +0000 (16:50 +0000)]
Fixed test.

20 years agoAdd new iterator example AppendIterator and use it in findfile.php example.
Marcus Boerger [Sun, 25 Apr 2004 13:06:15 +0000 (13:06 +0000)]
Add new iterator example AppendIterator and use it in findfile.php example.
# The initial idea came from a request by Sebastian

20 years agoWith the new inheritance rules we need an explicit append method.
Marcus Boerger [Sun, 25 Apr 2004 13:04:36 +0000 (13:04 +0000)]
With the new inheritance rules we need an explicit append method.

20 years agoSkip correct amount of stack entries
Marcus Boerger [Sun, 25 Apr 2004 11:28:46 +0000 (11:28 +0000)]
Skip correct amount of stack entries

20 years agoCapture potential problem by error message
Marcus Boerger [Sun, 25 Apr 2004 11:25:25 +0000 (11:25 +0000)]
Capture potential problem by error message

20 years agoShow number of classes
Marcus Boerger [Sun, 25 Apr 2004 11:22:56 +0000 (11:22 +0000)]
Show number of classes

20 years agoBFN
Marcus Boerger [Sun, 25 Apr 2004 11:19:57 +0000 (11:19 +0000)]
BFN

20 years agoFix several issues
Marcus Boerger [Sun, 25 Apr 2004 11:14:11 +0000 (11:14 +0000)]
Fix several issues
- bugfix #27063
- bugfix #27929
- bugfix #28099
- bugfix #28125
# The amount of code is needed to solve the return by reference problem.
# dual_it and derived also need their own iterator handlers to be able
# to return by reference.

20 years ago- RC3-dev
Andi Gutmans [Sun, 25 Apr 2004 10:13:08 +0000 (10:13 +0000)]
- RC3-dev

20 years ago- This was forgotten
Andi Gutmans [Sun, 25 Apr 2004 09:15:57 +0000 (09:15 +0000)]
- This was forgotten

20 years ago- RC2
Andi Gutmans [Sun, 25 Apr 2004 08:32:50 +0000 (08:32 +0000)]
- RC2

20 years agoSpell it out.
Wez Furlong [Sun, 25 Apr 2004 00:41:34 +0000 (00:41 +0000)]
Spell it out.

20 years agoChangeLog update
<changelog@php.net> [Sun, 25 Apr 2004 00:34:28 +0000 (00:34 +0000)]
ChangeLog update

20 years agoFixed test.
Ilia Alshanetsky [Sat, 24 Apr 2004 22:38:51 +0000 (22:38 +0000)]
Fixed test.

20 years agoChangeLog update
<changelog@php.net> [Sat, 24 Apr 2004 00:34:14 +0000 (00:34 +0000)]
ChangeLog update

20 years ago- Fixed bug #27923. foreach() without a key should not check if the key
Andi Gutmans [Fri, 23 Apr 2004 21:53:46 +0000 (21:53 +0000)]
- Fixed bug #27923. foreach() without a key should not check if the key
- is a reference (Adam)

20 years agoNEWS
Andi Gutmans [Fri, 23 Apr 2004 21:51:39 +0000 (21:51 +0000)]
NEWS

20 years agoThis was already in NEWS for the branch, removing
Derick Rethans [Fri, 23 Apr 2004 18:20:20 +0000 (18:20 +0000)]
This was already in NEWS for the branch, removing

20 years agoCleanup NEWS
Derick Rethans [Fri, 23 Apr 2004 18:19:03 +0000 (18:19 +0000)]
Cleanup NEWS

20 years agoMFB: Fix for bug #27810
Rasmus Lerdorf [Fri, 23 Apr 2004 18:08:58 +0000 (18:08 +0000)]
MFB: Fix for bug #27810

20 years agomove libxml error handler ro rinit/rshutdown to keep it local to php
Rob Richards [Fri, 23 Apr 2004 17:31:44 +0000 (17:31 +0000)]
move libxml error handler ro rinit/rshutdown to keep it local to php

20 years agoFixed bug #28087 (Do not force mysql.trace_mode to 0 on every request).
Ilia Alshanetsky [Fri, 23 Apr 2004 17:03:52 +0000 (17:03 +0000)]
Fixed bug #28087 (Do not force mysql.trace_mode to 0 on every request).

20 years ago- Fixed buffer overflow in phpinfo() for Zend Extension Api NO.
Derick Rethans [Fri, 23 Apr 2004 13:28:25 +0000 (13:28 +0000)]
- Fixed buffer overflow in phpinfo() for Zend Extension Api NO.

20 years agoAnother one bites the dust
Wez Furlong [Fri, 23 Apr 2004 13:28:05 +0000 (13:28 +0000)]
Another one bites the dust

20 years agoSupport for <![CDATA[ ]]> for string/hexbinary/base64binary data
Dmitry Stogov [Fri, 23 Apr 2004 12:22:41 +0000 (12:22 +0000)]
Support for <![CDATA[ ]]> for string/hexbinary/base64binary data

20 years agoIn-HEAD bugfix# 28115
Sara Golemon [Fri, 23 Apr 2004 03:37:20 +0000 (03:37 +0000)]
In-HEAD bugfix# 28115

20 years agoChangeLog update
<changelog@php.net> [Fri, 23 Apr 2004 00:36:46 +0000 (00:36 +0000)]
ChangeLog update

20 years agoAvoid warning to interfere test result
Marcus Boerger [Thu, 22 Apr 2004 22:55:18 +0000 (22:55 +0000)]
Avoid warning to interfere test result

20 years agoEmpty query checks, bug #28112.
Ilia Alshanetsky [Thu, 22 Apr 2004 22:34:29 +0000 (22:34 +0000)]
Empty query checks, bug #28112.

20 years agoAdd test for bug #28112
Marcus Boerger [Thu, 22 Apr 2004 22:29:41 +0000 (22:29 +0000)]
Add test for bug #28112

20 years agobugfix #28112
Marcus Boerger [Thu, 22 Apr 2004 22:26:02 +0000 (22:26 +0000)]
bugfix #28112

20 years agoAdd test
Wez Furlong [Thu, 22 Apr 2004 14:29:33 +0000 (14:29 +0000)]
Add test

20 years agoA working fix for the safearray mapping bug.
Wez Furlong [Thu, 22 Apr 2004 14:27:11 +0000 (14:27 +0000)]
A working fix for the safearray mapping bug.

20 years agoThe fix for the vc7 libc putenv bug is also needed here to avoid a crash.
Wez Furlong [Thu, 22 Apr 2004 14:26:03 +0000 (14:26 +0000)]
The fix for the vc7 libc putenv bug is also needed here to avoid a crash.

20 years agoDepercating mime_magic in favor of PECL::fileinfo
Hartmut Holzgraefe [Thu, 22 Apr 2004 01:24:12 +0000 (01:24 +0000)]
Depercating mime_magic in favor of PECL::fileinfo

20 years ago(probable) fix for Bug #27974: PHP Arrays are not mapped to VARIANTs.
Wez Furlong [Thu, 22 Apr 2004 00:50:49 +0000 (00:50 +0000)]
(probable) fix for Bug #27974: PHP Arrays are not mapped to VARIANTs.

20 years agoChangeLog update
<changelog@php.net> [Thu, 22 Apr 2004 00:35:20 +0000 (00:35 +0000)]
ChangeLog update

20 years agoFixed possible crash inside pg_copy_(to|from) function if delimiter is more
Ilia Alshanetsky [Thu, 22 Apr 2004 00:31:55 +0000 (00:31 +0000)]
Fixed possible crash inside pg_copy_(to|from) function if delimiter is more
then 1 character long.

20 years agoMore C++ comments.
Ilia Alshanetsky [Wed, 21 Apr 2004 23:16:34 +0000 (23:16 +0000)]
More C++ comments.

20 years agoC++ comments are ungood ;).
Ilia Alshanetsky [Wed, 21 Apr 2004 23:06:26 +0000 (23:06 +0000)]
C++ comments are ungood ;).

20 years agoNews about the ssl server socket bug
Wez Furlong [Wed, 21 Apr 2004 23:02:56 +0000 (23:02 +0000)]
News about the ssl server socket bug

20 years agoFix bug #28096 - stream_socket_accept() on an SSL server socket doesn't
Wez Furlong [Wed, 21 Apr 2004 23:02:06 +0000 (23:02 +0000)]
Fix bug #28096 - stream_socket_accept() on an SSL server socket doesn't
enable SSL on the accepted socket.

- Add cipher list context option
- Add helpful hint about why SSL server socket fails with mysterious
  error (eg: you need an SSL certificate for most ciphers).

20 years agolibmagic will only consume up to HOWMANY (hardcoded to 65536) bytes
Hartmut Holzgraefe [Wed, 21 Apr 2004 22:49:35 +0000 (22:49 +0000)]
libmagic will only consume up to HOWMANY (hardcoded to 65536) bytes
from a file, so lets save bandwith and memory by limiting us to this

20 years agoSupport for multiref data
Dmitry Stogov [Wed, 21 Apr 2004 16:57:18 +0000 (16:57 +0000)]
Support for multiref data

20 years agoFixed bug #19749 (shouldn't mmap() files larger than memory_limit)
Wez Furlong [Wed, 21 Apr 2004 12:02:47 +0000 (12:02 +0000)]
Fixed bug #19749 (shouldn't mmap() files larger than memory_limit)

20 years ago- RC2-dev
Andi Gutmans [Wed, 21 Apr 2004 10:34:27 +0000 (10:34 +0000)]
- RC2-dev

20 years ago- Prepare for RC2RC2 (if everything is OK especially Zeev's interface
Andi Gutmans [Wed, 21 Apr 2004 09:59:52 +0000 (09:59 +0000)]
- Prepare for RC2RC2 (if everything is OK especially Zeev's interface
- patch I'll roll RC2 tomorrow).

20 years agoyaz moved
Wez Furlong [Wed, 21 Apr 2004 08:57:16 +0000 (08:57 +0000)]
yaz moved

20 years agoMoved ext/yaz to PECL.
Wez Furlong [Wed, 21 Apr 2004 08:56:34 +0000 (08:56 +0000)]
Moved ext/yaz to PECL.

20 years agoRestore fatal error in case a method that's supposed to implement an
Zeev Suraski [Wed, 21 Apr 2004 08:44:37 +0000 (08:44 +0000)]
Restore fatal error in case a method that's supposed to implement an
interface/abstract method, breaks its prototype

20 years ago- Reorder news
Derick Rethans [Wed, 21 Apr 2004 07:23:40 +0000 (07:23 +0000)]
- Reorder news

20 years agoChangeLog update
<changelog@php.net> [Wed, 21 Apr 2004 00:35:41 +0000 (00:35 +0000)]
ChangeLog update

20 years agoFixed possible memory leaks.
Ilia Alshanetsky [Wed, 21 Apr 2004 00:11:28 +0000 (00:11 +0000)]
Fixed possible memory leaks.
Prevent shm_attach() from destroying non-shm resources.

20 years agomssql related fixes
Frank M. Kromann [Tue, 20 Apr 2004 23:55:02 +0000 (23:55 +0000)]
mssql related fixes

20 years agoFix #28007. Compile fails when the SHORT type is undefined (older versions of FreeTDS)
Frank M. Kromann [Tue, 20 Apr 2004 23:37:08 +0000 (23:37 +0000)]
Fix #28007. Compile fails when the SHORT type is undefined (older versions of FreeTDS)

20 years agoFix problem getting return value from stored procedure when it returns multiple results
Frank M. Kromann [Tue, 20 Apr 2004 23:30:51 +0000 (23:30 +0000)]
Fix problem getting return value from stored procedure when it returns multiple results

20 years agominor update
John Coggeshall [Tue, 20 Apr 2004 18:29:16 +0000 (18:29 +0000)]
minor update

20 years agoNo need for exception function, and renamed the 'error_buf' prop to
John Coggeshall [Tue, 20 Apr 2004 18:28:09 +0000 (18:28 +0000)]
No need for exception function, and renamed the 'error_buf' prop to
errorBuffer to conform with the rest of the ext.

20 years ago- Fix news
Andi Gutmans [Tue, 20 Apr 2004 14:18:56 +0000 (14:18 +0000)]
- Fix news

20 years ago- More news
Andi Gutmans [Tue, 20 Apr 2004 14:15:57 +0000 (14:15 +0000)]
- More news

20 years ago- Fix bug #27283 - Exceptions where the last catch() statement was sometimes
Andi Gutmans [Tue, 20 Apr 2004 14:14:55 +0000 (14:14 +0000)]
- Fix bug #27283 - Exceptions where the last catch() statement was sometimes
- skipped.

20 years ago- make static methods calls work from within xslt
Christian Stocker [Tue, 20 Apr 2004 09:24:24 +0000 (09:24 +0000)]
- make static methods calls work from within xslt
- extended tests

20 years agoChangeLog update
<changelog@php.net> [Tue, 20 Apr 2004 00:35:29 +0000 (00:35 +0000)]
ChangeLog update

20 years agoFixed compiler warnings.
Ilia Alshanetsky [Tue, 20 Apr 2004 00:26:48 +0000 (00:26 +0000)]
Fixed compiler warnings.

20 years agoAdd new tests (by magnus)
Marcus Boerger [Tue, 20 Apr 2004 00:00:51 +0000 (00:00 +0000)]
Add new tests (by magnus)

20 years agoadd ext/libxml/ to the headers path
Rob Richards [Mon, 19 Apr 2004 19:46:00 +0000 (19:46 +0000)]
add ext/libxml/ to the headers path

20 years agoinitial revision
Rob Richards [Mon, 19 Apr 2004 18:55:02 +0000 (18:55 +0000)]
initial revision
requires PHP 5

20 years agoshow ini entries and classes for extensions.
Marcus Boerger [Mon, 19 Apr 2004 18:02:49 +0000 (18:02 +0000)]
show ini entries and classes for extensions.

20 years agoFix #27865; don't dup STDIN, STDOUT or STDERR when running under CLI.
Wez Furlong [Mon, 19 Apr 2004 17:41:39 +0000 (17:41 +0000)]
Fix #27865; don't dup STDIN, STDOUT or STDERR when running under CLI.

20 years ago- Is it really this hard?</jani>
Derick Rethans [Mon, 19 Apr 2004 15:15:49 +0000 (15:15 +0000)]
- Is it really this hard?</jani>

20 years agoAdding tidy error handling news
John Coggeshall [Mon, 19 Apr 2004 15:14:31 +0000 (15:14 +0000)]
Adding tidy error handling news

20 years agoand the news
Wez Furlong [Mon, 19 Apr 2004 15:08:11 +0000 (15:08 +0000)]
and the news

20 years agoAdd pty support to proc_open() for systems with Unix98 ptys.
Wez Furlong [Mon, 19 Apr 2004 15:07:30 +0000 (15:07 +0000)]
Add pty support to proc_open() for systems with Unix98 ptys.
# With permission from Andi

20 years agoNo need to export anything. Fixes win32 build
Edin Kadribasic [Mon, 19 Apr 2004 14:13:41 +0000 (14:13 +0000)]
No need to export anything. Fixes win32 build