]> granicus.if.org Git - php/log
php
22 years agochange * formatting
Wez Furlong [Sat, 16 Mar 2002 01:28:57 +0000 (01:28 +0000)]
change * formatting

22 years agoNEWS update
<changelog@php.net> [Sat, 16 Mar 2002 01:19:21 +0000 (01:19 +0000)]
NEWS update

22 years agoChangeLog update
<changelog@php.net> [Sat, 16 Mar 2002 01:19:01 +0000 (01:19 +0000)]
ChangeLog update

22 years agothe 'setup' script was removed more than two years ago.
jim winstead [Sat, 16 Mar 2002 00:21:40 +0000 (00:21 +0000)]
the 'setup' script was removed more than two years ago.
these can be safely removed from the 4.2 branch, too.

22 years ago- More whitespace. I really can't do the other files though...
Andi Gutmans [Sat, 16 Mar 2002 00:13:46 +0000 (00:13 +0000)]
- More whitespace. I really can't do the other files though...

22 years ago- Change one strncpy() to strlcpy().
Andi Gutmans [Sat, 16 Mar 2002 00:05:47 +0000 (00:05 +0000)]
- 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! :)

22 years agoongoing development ...
Harald Radi [Fri, 15 Mar 2002 23:28:10 +0000 (23:28 +0000)]
ongoing development ...

22 years agoThis entry belongs under 4.2.0.
foobar [Fri, 15 Mar 2002 21:46:14 +0000 (21:46 +0000)]
This entry belongs under 4.2.0.

22 years agoNew PHP streams...
Wez Furlong [Fri, 15 Mar 2002 21:03:08 +0000 (21:03 +0000)]
New PHP streams...

22 years ago@ fixed a bug that caused php to crash in php_COM_get_ids_of_names() (Harald, Paul)
Harald Radi [Fri, 15 Mar 2002 20:48:26 +0000 (20:48 +0000)]
@ fixed a bug that caused php to crash in php_COM_get_ids_of_names() (Harald, Paul)

22 years ago- Corrected these entries. (catched by Derick)
foobar [Fri, 15 Mar 2002 20:18:07 +0000 (20:18 +0000)]
- Corrected these entries. (catched by Derick)

22 years ago- Fixed grammar, made some entries make more sense...etc. (proof read please :)
foobar [Fri, 15 Mar 2002 20:01:36 +0000 (20:01 +0000)]
- Fixed grammar, made some entries make more sense...etc. (proof read please :)
# People, PLEASE try keeping in mind that these entries are for
# the end-users. ie. they need to explain what was changed and why.
# And be consistent too..

22 years ago- Fix proto (again)
Derick Rethans [Fri, 15 Mar 2002 19:04:22 +0000 (19:04 +0000)]
- Fix proto (again)

22 years ago- proto fixes
Derick Rethans [Fri, 15 Mar 2002 18:22:57 +0000 (18:22 +0000)]
- proto fixes

22 years agodon't redefine NDEBUG if it is already defined. yeesh.
jim winstead [Fri, 15 Mar 2002 17:10:38 +0000 (17:10 +0000)]
don't redefine NDEBUG if it is already defined. yeesh.

22 years ago- Pass TSRMLS to callbacks.
Andi Gutmans [Fri, 15 Mar 2002 16:26:17 +0000 (16:26 +0000)]
- Pass TSRMLS to callbacks.

22 years ago- Scope fix. When calling an imported function the scope will change
Andi Gutmans [Fri, 15 Mar 2002 15:28:06 +0000 (15:28 +0000)]
- Scope fix. When calling an imported function the scope will change
- correctly to the scope of the functions class.
<?php

function Hello()
{
print "Wrong one\n";
}

class MyClass {
static $hello = "Hello, World\n";

function Hello()
{
print self::$hello;
}

function Trampoline()
{
Hello();
}
}

import function Trampoline from MyClass;

Trampoline();
?>

22 years agoadded new ibase_fetch_assoc() php function
Daniela Mariaschi [Fri, 15 Mar 2002 15:26:01 +0000 (15:26 +0000)]
added new ibase_fetch_assoc() php function

22 years ago- Fix issues with $this when using it by itself without indirection such as
Andi Gutmans [Fri, 15 Mar 2002 15:09:46 +0000 (15:09 +0000)]
- Fix issues with $this when using it by itself without indirection such as
- $this->foo.

22 years ago* "new and improved" iconv test
Stig Bakken [Fri, 15 Mar 2002 13:56:32 +0000 (13:56 +0000)]
* "new and improved" iconv test

22 years agofixed HashTable allocation
Harald Radi [Fri, 15 Mar 2002 13:10:35 +0000 (13:10 +0000)]
fixed HashTable allocation

22 years ago* fix for db3 from ports on freebsd
Stig Bakken [Fri, 15 Mar 2002 11:26:47 +0000 (11:26 +0000)]
* fix for db3 from ports on freebsd

22 years ago- Revert assert fix until it becomes clear what was wrong with my previous
Andi Gutmans [Fri, 15 Mar 2002 10:49:31 +0000 (10:49 +0000)]
- 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.

22 years ago* yet another iconv config fix, should be able to handle most or all
Stig Bakken [Fri, 15 Mar 2002 10:06:37 +0000 (10:06 +0000)]
* yet another iconv config fix, should be able to handle most or all
  configurations now (giconv/iconv, static libs only, iconv in libc etc.)

22 years agoAvoid warnings under VC.
Yasuo Ohgaki [Fri, 15 Mar 2002 06:36:56 +0000 (06:36 +0000)]
Avoid warnings under VC.
# If you know how assert() should be used under VC, please fix it.

22 years agoAdded some fix. Clean up a bit.
Yasuo Ohgaki [Fri, 15 Mar 2002 02:38:54 +0000 (02:38 +0000)]
Added some fix. Clean up a bit.

22 years agoit's late; no more commits from me tonight...
Wez Furlong [Fri, 15 Mar 2002 02:06:08 +0000 (02:06 +0000)]
it's late; no more commits from me tonight...

22 years agoshould have diffed first...
Wez Furlong [Fri, 15 Mar 2002 02:00:55 +0000 (02:00 +0000)]
should have diffed first...

22 years agofix for ZE2 compile
Wez Furlong [Fri, 15 Mar 2002 01:58:00 +0000 (01:58 +0000)]
fix for ZE2 compile

22 years agoChangeLog update
<changelog@php.net> [Fri, 15 Mar 2002 01:19:57 +0000 (01:19 +0000)]
ChangeLog update

22 years agorpc apstraction module
Harald Radi [Fri, 15 Mar 2002 00:00:34 +0000 (00:00 +0000)]
rpc apstraction module
does only work with ZendEngine2

22 years ago- Fix bug #16078
Derick Rethans [Thu, 14 Mar 2002 18:41:35 +0000 (18:41 +0000)]
- Fix bug #16078

22 years agoChange case for consistency
Zeev Suraski [Thu, 14 Mar 2002 18:39:53 +0000 (18:39 +0000)]
Change case for consistency

22 years agomore cleanup
Stanislav Malyshev [Thu, 14 Mar 2002 17:13:02 +0000 (17:13 +0000)]
more cleanup

22 years agoUpdate howto
Stanislav Malyshev [Thu, 14 Mar 2002 17:08:06 +0000 (17:08 +0000)]
Update howto

22 years agofixed a typo within checkuid
Stefan Esser [Thu, 14 Mar 2002 16:48:18 +0000 (16:48 +0000)]
fixed a typo within checkuid

22 years agofix for delete $this and unset $this
Stanislav Malyshev [Thu, 14 Mar 2002 16:00:48 +0000 (16:00 +0000)]
fix for delete $this and unset $this

22 years ago- Define HAVE_ASSERT_H under Windows. There was a macro redefinition before
Andi Gutmans [Thu, 14 Mar 2002 15:13:08 +0000 (15:13 +0000)]
- Define HAVE_ASSERT_H under Windows. There was a macro redefinition before
- this.

22 years agoGood suggestion, but I'm not sure we want to start receiving bug
Zeev Suraski [Thu, 14 Mar 2002 14:15:26 +0000 (14:15 +0000)]
Good suggestion, but I'm not sure we want to start receiving bug
reports with that version

22 years agofix buglet
Wez Furlong [Thu, 14 Mar 2002 14:05:13 +0000 (14:05 +0000)]
fix buglet

22 years agoupdate version
Sterling Hughes [Thu, 14 Mar 2002 14:00:04 +0000 (14:00 +0000)]
update version

22 years agoChildish, are we?
Zeev Suraski [Thu, 14 Mar 2002 13:42:58 +0000 (13:42 +0000)]
Childish, are we?

22 years ago- Fixed version
foobar [Thu, 14 Mar 2002 13:39:36 +0000 (13:39 +0000)]
- Fixed version

22 years agoMake it clearer what this entry means
Zeev Suraski [Thu, 14 Mar 2002 13:35:19 +0000 (13:35 +0000)]
Make it clearer what this entry means

22 years agoFix version number
Zeev Suraski [Thu, 14 Mar 2002 13:27:43 +0000 (13:27 +0000)]
Fix version number

22 years ago- Whitespace part 1
Derick Rethans [Thu, 14 Mar 2002 12:20:53 +0000 (12:20 +0000)]
- Whitespace part 1

22 years agoFix call_user_function
Stanislav Malyshev [Thu, 14 Mar 2002 12:18:01 +0000 (12:18 +0000)]
Fix call_user_function

22 years agofixed: last commit had debug code in it
Stefan Esser [Thu, 14 Mar 2002 11:26:10 +0000 (11:26 +0000)]
fixed: last commit had debug code in it

22 years agofixed whitespace
Stefan Esser [Thu, 14 Mar 2002 11:22:53 +0000 (11:22 +0000)]
fixed whitespace
fixed lots of possible bufferoverflows
fixed memoryleak

22 years agoFixed var_dump() crash when there is recursion.
Yasuo Ohgaki [Thu, 14 Mar 2002 09:36:13 +0000 (09:36 +0000)]
Fixed var_dump() crash when there is recursion.
# Since I said it's easy to fix :)

22 years agoFixed NEWS entry, make it consistent with other entries.
Stefan Roehrich [Thu, 14 Mar 2002 08:55:25 +0000 (08:55 +0000)]
Fixed NEWS entry, make it consistent with other entries.

22 years agoAdd note on which version of Apache 2 this SAPI module is compatible with.
Sebastian Bergmann [Thu, 14 Mar 2002 06:31:37 +0000 (06:31 +0000)]
Add note on which version of Apache 2 this SAPI module is compatible with.

22 years agoTranslate to English.
Sean Bright [Thu, 14 Mar 2002 03:25:46 +0000 (03:25 +0000)]
Translate to English.
# I still don't know what a 'tag search' is...

22 years agoInclude/enable assert.h/assert() when it is available
Yasuo Ohgaki [Thu, 14 Mar 2002 02:17:23 +0000 (02:17 +0000)]
Include/enable assert.h/assert() when it is available

22 years ago- Fixed bug: #16047, #15865, and propably a few more..
foobar [Thu, 14 Mar 2002 01:45:02 +0000 (01:45 +0000)]
- Fixed bug: #16047, #15865, and propably a few more..

22 years agoNEWS update
<changelog@php.net> [Thu, 14 Mar 2002 01:20:41 +0000 (01:20 +0000)]
NEWS update

22 years agoChangeLog update
<changelog@php.net> [Thu, 14 Mar 2002 01:19:51 +0000 (01:19 +0000)]
ChangeLog update

22 years agoFixed NEWS entry.
Stefan Roehrich [Wed, 13 Mar 2002 21:00:44 +0000 (21:00 +0000)]
Fixed NEWS entry.

22 years agoFix CREDIT files, remove email address
Jason Greene [Wed, 13 Mar 2002 18:45:39 +0000 (18:45 +0000)]
Fix CREDIT files, remove email address

22 years agoIgnore extensions/sapis named skeleton
Jason Greene [Wed, 13 Mar 2002 18:39:42 +0000 (18:39 +0000)]
Ignore extensions/sapis named skeleton

22 years ago> might not sufficiently update a timestamp.
Sascha Schumann [Wed, 13 Mar 2002 16:59:49 +0000 (16:59 +0000)]
> might not sufficiently update a timestamp.

echo > should be good enough and should be implemented by the shell.

22 years agoReally remove muscat directory.
Sebastian Bergmann [Wed, 13 Mar 2002 16:22:37 +0000 (16:22 +0000)]
Really remove muscat directory.

22 years agoFix credits.
Sebastian Bergmann [Wed, 13 Mar 2002 15:52:24 +0000 (15:52 +0000)]
Fix credits.

22 years agoUpdate Credits
Jason Greene [Wed, 13 Mar 2002 14:40:31 +0000 (14:40 +0000)]
Update Credits
#Forgot about sapi

22 years agoUpdate Credits
Jason Greene [Wed, 13 Mar 2002 14:11:09 +0000 (14:11 +0000)]
Update Credits

22 years agoBecause of the feature "don't try to send a cookie, if the sid
Sascha Schumann [Wed, 13 Mar 2002 13:08:49 +0000 (13:08 +0000)]
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

22 years agoSome simplifications in PHP_ADD_SOURCES*
Sascha Schumann [Wed, 13 Mar 2002 12:48:05 +0000 (12:48 +0000)]
Some simplifications in PHP_ADD_SOURCES*

22 years agoa bit of refactoring and making always_shared a nop in every day life
Sascha Schumann [Wed, 13 Mar 2002 12:30:49 +0000 (12:30 +0000)]
a bit of refactoring and making always_shared a nop in every day life

22 years ago* another libconv->libiconv typo
Stig Bakken [Wed, 13 Mar 2002 09:59:43 +0000 (09:59 +0000)]
* another libconv->libiconv typo

22 years agoProvide context-specific functions which yield the directories
Sascha Schumann [Wed, 13 Mar 2002 09:20:49 +0000 (09:20 +0000)]
Provide context-specific functions which yield the directories
of extensions (PHP 4 configure vs. self-contained module)

22 years agoFix leftovers from yesterday (s/PHP_EXTENSION/PHP_NEW_EXTENSION/).
Sascha Schumann [Wed, 13 Mar 2002 09:18:53 +0000 (09:18 +0000)]
Fix leftovers from yesterday (s/PHP_EXTENSION/PHP_NEW_EXTENSION/).

22 years agoReturn attribute name in node_name(), if it's a XML_ATTRIBUTE_NODE
Christian Stocker [Wed, 13 Mar 2002 08:08:22 +0000 (08:08 +0000)]
Return attribute name  in node_name(), if it's a XML_ATTRIBUTE_NODE

22 years agoReturn #document in node_name(), if it's a XML_DOCUMENT_NODE
Christian Stocker [Wed, 13 Mar 2002 07:31:16 +0000 (07:31 +0000)]
Return #document in node_name(), if it's a XML_DOCUMENT_NODE

22 years agoSync with Apache2 Filter API change.
Sebastian Bergmann [Wed, 13 Mar 2002 07:11:00 +0000 (07:11 +0000)]
Sync with Apache2 Filter API change.

22 years ago* muscat extension moved to PECL (it is GPL'ed and it has never been
Stig Bakken [Wed, 13 Mar 2002 06:26:22 +0000 (06:26 +0000)]
* muscat extension moved to PECL (it is GPL'ed and it has never been
  appropriate to distribute it with PHP)

22 years agofix all comments in protos
Boian Bonev [Wed, 13 Mar 2002 03:51:22 +0000 (03:51 +0000)]
fix all comments in protos

22 years agoI've altered my diagnosis of segfault/leak problem
Wez Furlong [Wed, 13 Mar 2002 02:49:03 +0000 (02:49 +0000)]
I've altered my diagnosis of segfault/leak problem

22 years agoFix some issues with ZE2, but now have some leaks.
Wez Furlong [Wed, 13 Mar 2002 02:14:28 +0000 (02:14 +0000)]
Fix some issues with ZE2, but now have some leaks.
# Any ideas Andrei?

22 years agoNo more lines on this test
Tomas V.V.Cox [Wed, 13 Mar 2002 01:46:10 +0000 (01:46 +0000)]
No more lines on this test

22 years agophpdoc update
Tomas V.V.Cox [Wed, 13 Mar 2002 01:39:51 +0000 (01:39 +0000)]
phpdoc update

22 years agoNEWS update
<changelog@php.net> [Wed, 13 Mar 2002 01:20:33 +0000 (01:20 +0000)]
NEWS update

22 years agoChangeLog update
<changelog@php.net> [Wed, 13 Mar 2002 01:20:11 +0000 (01:20 +0000)]
ChangeLog update

22 years agoFix error handling selection when both class and global are set
Tomas V.V.Cox [Wed, 13 Mar 2002 01:17:47 +0000 (01:17 +0000)]
Fix error handling selection when both class and global are set

22 years agoFixed a compiler warning
Yasuo Ohgaki [Wed, 13 Mar 2002 00:29:53 +0000 (00:29 +0000)]
Fixed a compiler warning

22 years ago-handling
Marcus Boerger [Wed, 13 Mar 2002 00:21:51 +0000 (00:21 +0000)]
-handling

22 years ago-remove filetime from test
Marcus Boerger [Wed, 13 Mar 2002 00:20:48 +0000 (00:20 +0000)]
-remove filetime from test
# that's magic - now the test should work on all installations

22 years ago- Compile fixes for Engine 2
Andi Gutmans [Tue, 12 Mar 2002 20:28:17 +0000 (20:28 +0000)]
- Compile fixes for Engine 2

22 years ago- Allow duality between Engine 1 & 2 using ZEND_STANDARD_CLASS_DEF_PTR
Andi Gutmans [Tue, 12 Mar 2002 20:18:01 +0000 (20:18 +0000)]
- Allow duality between Engine 1 & 2 using ZEND_STANDARD_CLASS_DEF_PTR

22 years ago- Forgot to close comment.
Andi Gutmans [Tue, 12 Mar 2002 19:41:02 +0000 (19:41 +0000)]
- Forgot to close comment.

22 years ago- Macro for duality between Engine 1 and 2
Andi Gutmans [Tue, 12 Mar 2002 19:36:24 +0000 (19:36 +0000)]
- Macro for duality between Engine 1 and 2

22 years ago- Another couple of indirection fixes.
Andi Gutmans [Tue, 12 Mar 2002 19:22:29 +0000 (19:22 +0000)]
- Another couple of indirection fixes.
- Make class_entry->refcount be part of the structure and not allocated.

22 years ago- Fix bug introduced with latest class hash table change.
Andi Gutmans [Tue, 12 Mar 2002 18:53:27 +0000 (18:53 +0000)]
- Fix bug introduced with latest class hash table change.

22 years agoChanged to PHP_CONFIG_FILE_PATH use the environment variable SystemRoot
Frank M. Kromann [Tue, 12 Mar 2002 18:08:52 +0000 (18:08 +0000)]
Changed to PHP_CONFIG_FILE_PATH use the environment variable SystemRoot

22 years agomissed zlib.c
Sascha Schumann [Tue, 12 Mar 2002 17:50:12 +0000 (17:50 +0000)]
missed zlib.c

22 years agonuke old makefiles
Sascha Schumann [Tue, 12 Mar 2002 16:54:26 +0000 (16:54 +0000)]
nuke old makefiles

22 years agoforgot to add _NEW_
Sascha Schumann [Tue, 12 Mar 2002 16:53:20 +0000 (16:53 +0000)]
forgot to add _NEW_

22 years agophp_new_extension
Sascha Schumann [Tue, 12 Mar 2002 16:53:19 +0000 (16:53 +0000)]
php_new_extension

22 years agoold makefiles
Sascha Schumann [Tue, 12 Mar 2002 16:52:17 +0000 (16:52 +0000)]
old makefiles

22 years agoremove old makefiles
Sascha Schumann [Tue, 12 Mar 2002 16:50:43 +0000 (16:50 +0000)]
remove old makefiles

22 years agoRemove old Makefile templates
Sascha Schumann [Tue, 12 Mar 2002 16:44:50 +0000 (16:44 +0000)]
Remove old Makefile templates