]>
granicus.if.org Git - php/log
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;
<changelog@php.net> [Wed, 28 Apr 2004 00:33:46 +0000 (00:33 +0000)]
ChangeLog update
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.
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
Marcus Boerger [Tue, 27 Apr 2004 18:15:00 +0000 (18:15 +0000)]
- More examples
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.
Ilia Alshanetsky [Tue, 27 Apr 2004 17:33:59 +0000 (17:33 +0000)]
Removed C++ style comments.
Marcus Boerger [Tue, 27 Apr 2004 17:12:11 +0000 (17:12 +0000)]
- Some pretection against out-of-memory situations
Marcus Boerger [Tue, 27 Apr 2004 15:48:20 +0000 (15:48 +0000)]
Fix test
Marcus Boerger [Tue, 27 Apr 2004 15:47:55 +0000 (15:47 +0000)]
- Fix warnings
Marcus Boerger [Tue, 27 Apr 2004 15:42:45 +0000 (15:42 +0000)]
- Fix ArrayIterator iteration
- Make it seekable
Marcus Boerger [Tue, 27 Apr 2004 15:41:26 +0000 (15:41 +0000)]
Fix LimitIterator by using new handler
Marcus Boerger [Tue, 27 Apr 2004 15:39:33 +0000 (15:39 +0000)]
Fix documentation
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
Andi Gutmans [Tue, 27 Apr 2004 15:18:33 +0000 (15:18 +0000)]
- Fix prototypes
Ilia Alshanetsky [Tue, 27 Apr 2004 14:59:07 +0000 (14:59 +0000)]
Fixed bug #28184 (C++ comments in GD library sources).
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
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
<changelog@php.net> [Tue, 27 Apr 2004 00:35:21 +0000 (00:35 +0000)]
ChangeLog update
Marcus Boerger [Mon, 26 Apr 2004 22:01:12 +0000 (22:01 +0000)]
Complete implementation
Marcus Boerger [Mon, 26 Apr 2004 21:34:45 +0000 (21:34 +0000)]
Update
Ilia Alshanetsky [Mon, 26 Apr 2004 20:14:11 +0000 (20:14 +0000)]
Removed pointless check.
Marcus Boerger [Mon, 26 Apr 2004 18:54:18 +0000 (18:54 +0000)]
Fix prototype
Antony Dovgal [Mon, 26 Apr 2004 14:49:41 +0000 (14:49 +0000)]
hmm. this comma is supposed to be a semicolon.
<changelog@php.net> [Mon, 26 Apr 2004 00:35:44 +0000 (00:35 +0000)]
ChangeLog update
Derick Rethans [Sun, 25 Apr 2004 19:45:02 +0000 (19:45 +0000)]
- MFB: Fixed bug #28147 (Crash with drawing anti-alised lines)
Ilia Alshanetsky [Sun, 25 Apr 2004 16:50:47 +0000 (16:50 +0000)]
Fixed test.
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
Marcus Boerger [Sun, 25 Apr 2004 13:04:36 +0000 (13:04 +0000)]
With the new inheritance rules we need an explicit append method.
Marcus Boerger [Sun, 25 Apr 2004 11:28:46 +0000 (11:28 +0000)]
Skip correct amount of stack entries
Marcus Boerger [Sun, 25 Apr 2004 11:25:25 +0000 (11:25 +0000)]
Capture potential problem by error message
Marcus Boerger [Sun, 25 Apr 2004 11:22:56 +0000 (11:22 +0000)]
Show number of classes
Marcus Boerger [Sun, 25 Apr 2004 11:19:57 +0000 (11:19 +0000)]
BFN
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.
Andi Gutmans [Sun, 25 Apr 2004 10:13:08 +0000 (10:13 +0000)]
- RC3-dev
Andi Gutmans [Sun, 25 Apr 2004 09:15:57 +0000 (09:15 +0000)]
- This was forgotten
Andi Gutmans [Sun, 25 Apr 2004 08:32:50 +0000 (08:32 +0000)]
- RC2
Wez Furlong [Sun, 25 Apr 2004 00:41:34 +0000 (00:41 +0000)]
Spell it out.
<changelog@php.net> [Sun, 25 Apr 2004 00:34:28 +0000 (00:34 +0000)]
ChangeLog update
Ilia Alshanetsky [Sat, 24 Apr 2004 22:38:51 +0000 (22:38 +0000)]
Fixed test.
<changelog@php.net> [Sat, 24 Apr 2004 00:34:14 +0000 (00:34 +0000)]
ChangeLog update
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)
Andi Gutmans [Fri, 23 Apr 2004 21:51:39 +0000 (21:51 +0000)]
NEWS
Derick Rethans [Fri, 23 Apr 2004 18:20:20 +0000 (18:20 +0000)]
This was already in NEWS for the branch, removing
Derick Rethans [Fri, 23 Apr 2004 18:19:03 +0000 (18:19 +0000)]
Cleanup NEWS
Rasmus Lerdorf [Fri, 23 Apr 2004 18:08:58 +0000 (18:08 +0000)]
MFB: Fix for bug #27810
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
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).
Derick Rethans [Fri, 23 Apr 2004 13:28:25 +0000 (13:28 +0000)]
- Fixed buffer overflow in phpinfo() for Zend Extension Api NO.
Wez Furlong [Fri, 23 Apr 2004 13:28:05 +0000 (13:28 +0000)]
Another one bites the dust
Dmitry Stogov [Fri, 23 Apr 2004 12:22:41 +0000 (12:22 +0000)]
Support for <![CDATA[ ]]> for string/hexbinary/base64binary data
Sara Golemon [Fri, 23 Apr 2004 03:37:20 +0000 (03:37 +0000)]
In-HEAD bugfix# 28115
<changelog@php.net> [Fri, 23 Apr 2004 00:36:46 +0000 (00:36 +0000)]
ChangeLog update
Marcus Boerger [Thu, 22 Apr 2004 22:55:18 +0000 (22:55 +0000)]
Avoid warning to interfere test result
Ilia Alshanetsky [Thu, 22 Apr 2004 22:34:29 +0000 (22:34 +0000)]
Empty query checks, bug #28112.
Marcus Boerger [Thu, 22 Apr 2004 22:29:41 +0000 (22:29 +0000)]
Add test for bug #28112
Marcus Boerger [Thu, 22 Apr 2004 22:26:02 +0000 (22:26 +0000)]
bugfix #28112
Wez Furlong [Thu, 22 Apr 2004 14:29:33 +0000 (14:29 +0000)]
Add test
Wez Furlong [Thu, 22 Apr 2004 14:27:11 +0000 (14:27 +0000)]
A working fix for the safearray mapping bug.
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.
Hartmut Holzgraefe [Thu, 22 Apr 2004 01:24:12 +0000 (01:24 +0000)]
Depercating mime_magic in favor of PECL::fileinfo
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.
<changelog@php.net> [Thu, 22 Apr 2004 00:35:20 +0000 (00:35 +0000)]
ChangeLog update
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.
Ilia Alshanetsky [Wed, 21 Apr 2004 23:16:34 +0000 (23:16 +0000)]
More C++ comments.
Ilia Alshanetsky [Wed, 21 Apr 2004 23:06:26 +0000 (23:06 +0000)]
C++ comments are ungood ;).
Wez Furlong [Wed, 21 Apr 2004 23:02:56 +0000 (23:02 +0000)]
News about the ssl server socket bug
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).
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
Dmitry Stogov [Wed, 21 Apr 2004 16:57:18 +0000 (16:57 +0000)]
Support for multiref data
Wez Furlong [Wed, 21 Apr 2004 12:02:47 +0000 (12:02 +0000)]
Fixed bug #19749 (shouldn't mmap() files larger than memory_limit)
Andi Gutmans [Wed, 21 Apr 2004 10:34:27 +0000 (10:34 +0000)]
- RC2-dev
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).
Wez Furlong [Wed, 21 Apr 2004 08:57:16 +0000 (08:57 +0000)]
yaz moved
Wez Furlong [Wed, 21 Apr 2004 08:56:34 +0000 (08:56 +0000)]
Moved ext/yaz to PECL.
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
Derick Rethans [Wed, 21 Apr 2004 07:23:40 +0000 (07:23 +0000)]
- Reorder news
<changelog@php.net> [Wed, 21 Apr 2004 00:35:41 +0000 (00:35 +0000)]
ChangeLog update
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.
Frank M. Kromann [Tue, 20 Apr 2004 23:55:02 +0000 (23:55 +0000)]
mssql related fixes
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)
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
John Coggeshall [Tue, 20 Apr 2004 18:29:16 +0000 (18:29 +0000)]
minor update
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.
Andi Gutmans [Tue, 20 Apr 2004 14:18:56 +0000 (14:18 +0000)]
- Fix news
Andi Gutmans [Tue, 20 Apr 2004 14:15:57 +0000 (14:15 +0000)]
- More news
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.
Christian Stocker [Tue, 20 Apr 2004 09:24:24 +0000 (09:24 +0000)]
- make static methods calls work from within xslt
- extended tests
<changelog@php.net> [Tue, 20 Apr 2004 00:35:29 +0000 (00:35 +0000)]
ChangeLog update
Ilia Alshanetsky [Tue, 20 Apr 2004 00:26:48 +0000 (00:26 +0000)]
Fixed compiler warnings.
Marcus Boerger [Tue, 20 Apr 2004 00:00:51 +0000 (00:00 +0000)]
Add new tests (by magnus)
Rob Richards [Mon, 19 Apr 2004 19:46:00 +0000 (19:46 +0000)]
add ext/libxml/ to the headers path
Rob Richards [Mon, 19 Apr 2004 18:55:02 +0000 (18:55 +0000)]
initial revision
requires PHP 5
Marcus Boerger [Mon, 19 Apr 2004 18:02:49 +0000 (18:02 +0000)]
show ini entries and classes for extensions.
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.
Derick Rethans [Mon, 19 Apr 2004 15:15:49 +0000 (15:15 +0000)]
- Is it really this hard?</jani>
John Coggeshall [Mon, 19 Apr 2004 15:14:31 +0000 (15:14 +0000)]
Adding tidy error handling news
Wez Furlong [Mon, 19 Apr 2004 15:08:11 +0000 (15:08 +0000)]
and the news
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
Edin Kadribasic [Mon, 19 Apr 2004 14:13:41 +0000 (14:13 +0000)]
No need to export anything. Fixes win32 build