]>
granicus.if.org Git - php/log
Zeev Suraski [Mon, 7 Jul 2003 09:12:15 +0000 (09:12 +0000)]
whitespace
Zeev Suraski [Mon, 7 Jul 2003 09:08:33 +0000 (09:08 +0000)]
Fix & whitespace
Zeev Suraski [Mon, 7 Jul 2003 09:01:22 +0000 (09:01 +0000)]
fixlet
Zeev Suraski [Mon, 7 Jul 2003 09:00:36 +0000 (09:00 +0000)]
Initial support for overloading of array syntax for objects (very initial)
<changelog@php.net> [Mon, 7 Jul 2003 00:30:19 +0000 (00:30 +0000)]
ChangeLog update
Moriyoshi Koizumi [Sun, 6 Jul 2003 21:44:44 +0000 (21:44 +0000)]
Updated test so it won't fail if the extension has been built with libiconv.
Moriyoshi Koizumi [Sun, 6 Jul 2003 21:30:23 +0000 (21:30 +0000)]
Fixed segfault due to reference to the already free'd block :)
Moriyoshi Koizumi [Sun, 6 Jul 2003 21:19:38 +0000 (21:19 +0000)]
Modified the test so it reflects the change to iconv_mime_decode()
Moriyoshi Koizumi [Sun, 6 Jul 2003 21:19:08 +0000 (21:19 +0000)]
Improved iconv_mime_encode() interface
Moriyoshi Koizumi [Sun, 6 Jul 2003 21:10:02 +0000 (21:10 +0000)]
oops
Moriyoshi Koizumi [Sun, 6 Jul 2003 21:08:50 +0000 (21:08 +0000)]
Avoid miscellaneous conflicts between glibc's iconv and libiconv.
Sebastian Bergmann [Sun, 6 Jul 2003 20:38:56 +0000 (20:38 +0000)]
COMPILE_DL_MYSQL_MYSQL -> COMPILE_DL_MYSQL
George Schlossnagle [Sun, 6 Jul 2003 19:55:20 +0000 (19:55 +0000)]
add convenience functions or adding class properties. Ok'd for commit by Andi.
Moriyoshi Koizumi [Sun, 6 Jul 2003 17:52:42 +0000 (17:52 +0000)]
Added missing includes
Moriyoshi Koizumi [Sun, 6 Jul 2003 17:51:46 +0000 (17:51 +0000)]
Simplified config scripts
Pierre Joye [Sun, 6 Jul 2003 14:17:58 +0000 (14:17 +0000)]
- Fix bug #24512
Rob Richards [Sat, 5 Jul 2003 23:43:10 +0000 (23:43 +0000)]
use common doc with ref counting rather than copy
Marcus Boerger [Sat, 5 Jul 2003 20:02:40 +0000 (20:02 +0000)]
- In function sqlite_field_name the index parameter is not optional.
- Fix all the protos.
Wez Furlong [Sat, 5 Jul 2003 08:25:25 +0000 (08:25 +0000)]
MFB: binary mode by default under win32.
Derick Rethans [Sat, 5 Jul 2003 06:49:57 +0000 (06:49 +0000)]
- Fixed bug #24504: T_INTERFACE and T_IMPLEMENTS not defined in tokenizer
extension
Sterling Hughes [Sat, 5 Jul 2003 00:33:13 +0000 (00:33 +0000)]
not a temp var unless its a singular var
<changelog@php.net> [Sat, 5 Jul 2003 00:30:12 +0000 (00:30 +0000)]
ChangeLog update
Sterling Hughes [Fri, 4 Jul 2003 22:21:23 +0000 (22:21 +0000)]
"real" fix
Sterling Hughes [Fri, 4 Jul 2003 21:58:09 +0000 (21:58 +0000)]
fix memory cverrun when accessing an empty xml element.
guess how many lines it took me to write a basic WSDL parser + API? 20 using
curl + simplexml
Adam Dickmeiss [Fri, 4 Jul 2003 19:17:09 +0000 (19:17 +0000)]
On Windows, handle YAZ versions that don't export yaz_version.
Sterling Hughes [Fri, 4 Jul 2003 18:19:02 +0000 (18:19 +0000)]
avoid external conflicts in apache
Andi Gutmans [Fri, 4 Jul 2003 15:38:12 +0000 (15:38 +0000)]
- Add heap to memory manager. This should improve performance.
- Enabling it by default so that it gets tested. We should decide before
beta 2 if we want to revert back to malloc or not.
- Thanks to Sebastian for benchmarking it
Hartmut Holzgraefe [Fri, 4 Jul 2003 15:07:11 +0000 (15:07 +0000)]
skip test if glob() is not available at all
Hartmut Holzgraefe [Fri, 4 Jul 2003 14:38:07 +0000 (14:38 +0000)]
regression test for #24482 GLOB_ONLYDIR is not working (on BSD)
Hartmut Holzgraefe [Fri, 4 Jul 2003 13:24:47 +0000 (13:24 +0000)]
make sure operator precedence is not playing tricks on us
(it worked before on gcc3.2/Linux and with VC++ 6, but not
with gcc3.1/MacOSX)
Sebastian Bergmann [Fri, 4 Jul 2003 10:31:41 +0000 (10:31 +0000)]
2 * TSRMLS_FETCH() -> 1 * TSRMLS_DC
George Schlossnagle [Fri, 4 Jul 2003 03:26:37 +0000 (03:26 +0000)]
ws fix
<changelog@php.net> [Fri, 4 Jul 2003 00:30:27 +0000 (00:30 +0000)]
ChangeLog update
Sascha Schumann [Thu, 3 Jul 2003 22:54:57 +0000 (22:54 +0000)]
MFB quoting of )
Marcus Boerger [Thu, 3 Jul 2003 19:53:01 +0000 (19:53 +0000)]
More __clone testing
Frank M. Kromann [Thu, 3 Jul 2003 16:53:04 +0000 (16:53 +0000)]
Change fetch functions and protos so they make more sense.
fetch_row or fetch_assoc should not take the optional parameter
Marcus Boerger [Thu, 3 Jul 2003 16:45:37 +0000 (16:45 +0000)]
Allow final private methods
#
# Declaring a method private and final would only be an error for an abstract
# class. But at the moment the method is defined and it's modifiers are checked
# we do not know whether or not we have an abstract class. It could already be
# abstract but it also become abstract later.
#
# Since i made the mistake in first place i remove the check now.
#
# Providing the correct test would slow down the compiler becuase we'd have to
# iterate through all methods on all abstract classes and check for this. I
# guess we can live without. Or does anybody wants this to be implemented ?
Moriyoshi Koizumi [Thu, 3 Jul 2003 15:30:14 +0000 (15:30 +0000)]
Added missing protos
Moriyoshi Koizumi [Thu, 3 Jul 2003 15:26:12 +0000 (15:26 +0000)]
Fix build
Hartmut Holzgraefe [Thu, 3 Jul 2003 14:54:03 +0000 (14:54 +0000)]
VCWD awareness and (hopefully) windows compile fix
Hartmut Holzgraefe [Thu, 3 Jul 2003 14:34:02 +0000 (14:34 +0000)]
PHP glob() will now emulate GLOB_ONLYDIR on non-GNU systems
George Schlossnagle [Thu, 3 Jul 2003 14:11:31 +0000 (14:11 +0000)]
win build fixes (Rob Richards)
Marcus Boerger [Thu, 3 Jul 2003 14:06:51 +0000 (14:06 +0000)]
Accessing globals from a destructor causes memory corruption
George Schlossnagle [Thu, 3 Jul 2003 14:00:17 +0000 (14:00 +0000)]
can't forget Andrei
Stanislav Malyshev [Thu, 3 Jul 2003 12:03:11 +0000 (12:03 +0000)]
enable Classname() constructor to be called via parent::__constructor()
Marcus Boerger [Thu, 3 Jul 2003 11:17:34 +0000 (11:17 +0000)]
Fix open mode (noticed by FutureQuest, Inc.)
Marcus Boerger [Thu, 3 Jul 2003 10:05:01 +0000 (10:05 +0000)]
Check private redeclare behavior
Stanislav Malyshev [Thu, 3 Jul 2003 09:22:35 +0000 (09:22 +0000)]
add test for Bug #19859
Stanislav Malyshev [Thu, 3 Jul 2003 09:18:41 +0000 (09:18 +0000)]
Fix bug #19859 - allow fast_call_user_function to support __call
Stanislav Malyshev [Thu, 3 Jul 2003 08:00:10 +0000 (08:00 +0000)]
fix the get_parent_class fix
Sterling Hughes [Thu, 3 Jul 2003 07:18:41 +0000 (07:18 +0000)]
fix these tests
Tomas V.V.Cox [Thu, 3 Jul 2003 07:08:21 +0000 (07:08 +0000)]
Store verbose=1 in config file
Tomas V.V.Cox [Thu, 3 Jul 2003 06:54:26 +0000 (06:54 +0000)]
Atm php5 doesn't support this:
function foo(&$a) {
return new Bar;
}
Tomas V.V.Cox [Thu, 3 Jul 2003 06:45:49 +0000 (06:45 +0000)]
Write the PEAR system config file while installing
Tomas V.V.Cox [Thu, 3 Jul 2003 06:43:31 +0000 (06:43 +0000)]
Added tha ability to store custom data in a layer
Added method getConfFile()
Better layer removing in removeLayer()
George Schlossnagle [Thu, 3 Jul 2003 05:33:23 +0000 (05:33 +0000)]
more of Timm's patches, and mod authors line to give credit where credit is due.
Tomas V.V.Cox [Thu, 3 Jul 2003 05:09:36 +0000 (05:09 +0000)]
typo, need the complete file name not the basenamed one
Jon Parise [Thu, 3 Jul 2003 04:14:42 +0000 (04:14 +0000)]
Update documentation for PHP 5.
foobar [Thu, 3 Jul 2003 02:59:04 +0000 (02:59 +0000)]
Cut the long line a bit for readability..
Ilia Alshanetsky [Thu, 3 Jul 2003 00:55:20 +0000 (00:55 +0000)]
Compiler warning fix.
<changelog@php.net> [Thu, 3 Jul 2003 00:30:19 +0000 (00:30 +0000)]
ChangeLog update
Marcus Boerger [Wed, 2 Jul 2003 23:58:47 +0000 (23:58 +0000)]
Temporairy solution to overcome shutdown propbelms with objects that have
hidden destructors.
#
# If we set the error level to E_ERROR what we must to to be correct and an
# object needs to be automatically destructed in shutdown process then the
# exit would cause memory corruption and a SEGV.
Marcus Boerger [Wed, 2 Jul 2003 23:53:53 +0000 (23:53 +0000)]
Reorganize this a bit to ensure the object memory is destructed before
showing the error.
Uwe Schindler [Wed, 2 Jul 2003 22:39:37 +0000 (22:39 +0000)]
rename functions to php5_*
Sara Golemon [Wed, 2 Jul 2003 22:18:59 +0000 (22:18 +0000)]
Introduce connection pooling API. I'll use these in http/ftp fopen wrappers soon.
Marcus Boerger [Wed, 2 Jul 2003 21:57:57 +0000 (21:57 +0000)]
Bug #24399: is_subclass_of(): fix memleak, too
Marcus Boerger [Wed, 2 Jul 2003 21:40:54 +0000 (21:40 +0000)]
funny fixes
Marcus Boerger [Wed, 2 Jul 2003 21:37:46 +0000 (21:37 +0000)]
ZTS fix
Wez Furlong [Wed, 2 Jul 2003 21:11:35 +0000 (21:11 +0000)]
more size_t -> socklen_t.
Noticed by tychay@php.net
Sterling Hughes [Wed, 2 Jul 2003 20:05:13 +0000 (20:05 +0000)]
Not really the best way to solve this. But it doesn't give a segfault on
self-referential structures, which is always a bonus
Zeev Suraski [Wed, 2 Jul 2003 18:05:45 +0000 (18:05 +0000)]
Another test case
Derick Rethans [Wed, 2 Jul 2003 18:00:51 +0000 (18:00 +0000)]
- use <?php in testcases
Zeev Suraski [Wed, 2 Jul 2003 17:51:15 +0000 (17:51 +0000)]
Add test case
Zeev Suraski [Wed, 2 Jul 2003 17:48:18 +0000 (17:48 +0000)]
Throughly fix scoping change. Fixes, among other things, bug #24403
Moriyoshi Koizumi [Wed, 2 Jul 2003 17:13:27 +0000 (17:13 +0000)]
Changed line break characters from CRLF to LF.
Moriyoshi Koizumi [Wed, 2 Jul 2003 17:07:56 +0000 (17:07 +0000)]
s/cvs/csv/
Andi Gutmans [Wed, 2 Jul 2003 16:52:07 +0000 (16:52 +0000)]
- Nuke CG(in_clone_method)
Moriyoshi Koizumi [Wed, 2 Jul 2003 16:19:57 +0000 (16:19 +0000)]
Fixed a leak that occurs with "R" reference variable specifier.
Moriyoshi Koizumi [Wed, 2 Jul 2003 15:47:24 +0000 (15:47 +0000)]
Now this should make sense.
Moriyoshi Koizumi [Wed, 2 Jul 2003 15:43:44 +0000 (15:43 +0000)]
s/cvs/csv/ :)
Moriyoshi Koizumi [Wed, 2 Jul 2003 15:38:51 +0000 (15:38 +0000)]
Adjust test.
# This was also fixed by the Zeev's patch for bug #22367.
Zeev Suraski [Wed, 2 Jul 2003 15:08:11 +0000 (15:08 +0000)]
Adjust expectations :)
Zeev Suraski [Wed, 2 Jul 2003 15:06:10 +0000 (15:06 +0000)]
Fix for bug #22367.
Heads up - this will break syntactical compatiblity, return($foo) will
not work with functions that return references - return $foo should be used
instead. It never worked well before, and caused all sorts of odd bugs.
It *might* be possible to support this specifically, albeit unlikely
Sterling Hughes [Wed, 2 Jul 2003 14:44:41 +0000 (14:44 +0000)]
optimize the case where the object is really a class name, as we don't need
to set EX(object) here.
Sterling Hughes [Wed, 2 Jul 2003 14:33:41 +0000 (14:33 +0000)]
Timm Friebe points out that object detection should be done regardless of
the function pointer
Uwe Schindler [Wed, 2 Jul 2003 13:39:41 +0000 (13:39 +0000)]
prevent user from making nested PHP requests using virtual()
Pierre Joye [Wed, 2 Jul 2003 11:36:17 +0000 (11:36 +0000)]
- tabs
Pierre Joye [Wed, 2 Jul 2003 11:23:56 +0000 (11:23 +0000)]
- Fix #23808
Pierre Joye [Wed, 2 Jul 2003 10:08:17 +0000 (10:08 +0000)]
- MFH
Marcus Boerger [Wed, 2 Jul 2003 07:24:11 +0000 (07:24 +0000)]
Finally fix property cloning and fix the tests accordingly.
# The default behaviour is to copy all properties with all current values
# from the old object. But if __clone is overwritten then only the default
# properties are cloned with their correct default values. So we keep
# the type system intact and also allow real __clone overwriting now.
Marcus Boerger [Wed, 2 Jul 2003 06:40:34 +0000 (06:40 +0000)]
Fix test name
Sterling Hughes [Wed, 2 Jul 2003 04:34:18 +0000 (04:34 +0000)]
fix this test when using a save_handler other than files...
Sterling Hughes [Wed, 2 Jul 2003 04:31:33 +0000 (04:31 +0000)]
Fix bug #24445
Sterling Hughes [Wed, 2 Jul 2003 04:30:45 +0000 (04:30 +0000)]
add a test for get_parent_class() bug
Sterling Hughes [Wed, 2 Jul 2003 03:12:06 +0000 (03:12 +0000)]
further improve the performance and clean up
Sascha Schumann [Wed, 2 Jul 2003 03:04:35 +0000 (03:04 +0000)]
MFB PHP_CHECK_LIBRARY fix
foobar [Wed, 2 Jul 2003 02:38:47 +0000 (02:38 +0000)]
*** empty log message ***
Ilia Alshanetsky [Wed, 2 Jul 2003 02:04:00 +0000 (02:04 +0000)]
Fixed a crash when text is added before a font is specified.
Wez Furlong [Wed, 2 Jul 2003 01:35:39 +0000 (01:35 +0000)]
socklen_t needs this.
We might need some more magic to ensure that socklen_t gets defined in
the correct places; lets see if any more problems arise...
Sascha Schumann [Wed, 2 Jul 2003 01:08:26 +0000 (01:08 +0000)]
Fix install-sapi dependency - it should depend on OVERALL_TARGET, of course.