]>
granicus.if.org Git - php/log
Egon Schmid [Sat, 8 Jul 2000 15:13:31 +0000 (15:13 +0000)]
Aren't there some function names conflicts?
Sam Ruby [Sat, 8 Jul 2000 10:35:50 +0000 (10:35 +0000)]
Add experimental APIs to get and clear the last exception
Chris Vandomelen [Sat, 8 Jul 2000 01:50:34 +0000 (01:50 +0000)]
* php4/ext/sockets.c, php4/ext/php_sockets.h:
Numerous changes. Many prototypes changed to be more like the
appropriate *NIX counterparts. Many new prototypes defining many
more advanced socket routines. Better AF_UNIX socket support.
bind() now recognizes the socket type and acts appropriately,
instead of needing the AF_* for the socket passed in.
# Something I'd like to write yet is proper signal() support. Unfortunately,
# the last time I tried, doing anything with the signal except ignoring it
# caused PHP to segfault. And to have decent socket support.. at least, from
# my experience, having signals is a good thing. Only problem.. to implement
# it, some changes would have to be made to the parser - since that is where
# the problems lie on handling asynchronous signals.
<changelog@php.net> [Sat, 8 Jul 2000 01:09:03 +0000 (01:09 +0000)]
ChangeLog update
Jouni Ahto [Fri, 7 Jul 2000 14:00:50 +0000 (14:00 +0000)]
- Restore testing for Unicode charmap to what it was, it was working(?), this
shouldn't have any effect on other charmaps.
- Remove bogus message about not finding any Unicode mapping table.
Jouni Ahto [Fri, 7 Jul 2000 12:06:05 +0000 (12:06 +0000)]
- Move away from encoding transaction number into link_id and use properly
resources instead for both.
- Some cleaning.
Stanislav Malyshev [Fri, 7 Jul 2000 09:50:50 +0000 (09:50 +0000)]
Remove C++ commennts.
Stanislav Malyshev [Fri, 7 Jul 2000 09:06:47 +0000 (09:06 +0000)]
Fix fgets re-allocation (add +1 to accomondate ending \0).
Stanislav Malyshev [Fri, 7 Jul 2000 08:47:11 +0000 (08:47 +0000)]
Fix add_assoc_string functions.
add_assoc_string(l) last parameter is "duplicate", not string length.
<changelog@php.net> [Fri, 7 Jul 2000 01:09:08 +0000 (01:09 +0000)]
ChangeLog update
<changelog@php.net> [Fri, 7 Jul 2000 01:09:05 +0000 (01:09 +0000)]
NEWS update
Andi Gutmans [Thu, 6 Jul 2000 23:31:19 +0000 (23:31 +0000)]
- Remove code which has never been used (neither in PHP 3)
Andi Gutmans [Thu, 6 Jul 2000 23:28:05 +0000 (23:28 +0000)]
- Make is_method_call() static and remove a couple of old lines
Andi Gutmans [Thu, 6 Jul 2000 23:00:46 +0000 (23:00 +0000)]
- Yet another fix...
Andi Gutmans [Thu, 6 Jul 2000 22:38:01 +0000 (22:38 +0000)]
- One more...
Andi Gutmans [Thu, 6 Jul 2000 22:29:06 +0000 (22:29 +0000)]
- One more fix for the latest patch
Andi Gutmans [Thu, 6 Jul 2000 22:21:24 +0000 (22:21 +0000)]
- One dumb bug in my latest patch
Andi Gutmans [Thu, 6 Jul 2000 22:08:22 +0000 (22:08 +0000)]
- Complex fix for solving a problem with objects & method calls.
- Previous version is tagged PRE_METHOD_CALL_SEPERATE_FIX_PATCH.
- I need to check this fix on a server so if it doesn't work I will revert
- it.
Andrei Zmievski [Thu, 6 Jul 2000 21:00:18 +0000 (21:00 +0000)]
WDDX now implements __sleep()/__wakeup() functionality.
Andrei Zmievski [Thu, 6 Jul 2000 19:32:22 +0000 (19:32 +0000)]
preg_replace() can be non-greedy now.
Stanislav Malyshev [Thu, 6 Jul 2000 17:40:18 +0000 (17:40 +0000)]
Fix #5432: should register all variables. Thanks jeroen@darius.demon.nl.
Andi Gutmans [Thu, 6 Jul 2000 16:19:36 +0000 (16:19 +0000)]
- Fix problem with newlines not being recognized under certain conditions
Uwe Steinmann [Thu, 6 Jul 2000 14:56:52 +0000 (14:56 +0000)]
- still an error in my last patch (thanks Andi)
Andi Gutmans [Thu, 6 Jul 2000 14:47:02 +0000 (14:47 +0000)]
- Use #ifdef PHP_WIN32 to detect Windows
Thies C. Arntzen [Thu, 6 Jul 2000 11:25:24 +0000 (11:25 +0000)]
@- Fixed crash in gzopen(). (Thies)
# hmm - this should be rethought as one should be able to do
# gzopen("http://..")
Stig Bakken [Thu, 6 Jul 2000 08:38:12 +0000 (08:38 +0000)]
Applied DBMaker patch by Jeffrey Lin <clin@lion.syscom.com.tw>
Stig Bakken [Thu, 6 Jul 2000 08:13:33 +0000 (08:13 +0000)]
Applied multiple character set support diff by Rob Goodwin
@Multiple character set support in gdttf.c (Rob Goodwin)
Uwe Steinmann [Thu, 6 Jul 2000 05:36:54 +0000 (05:36 +0000)]
- last commit indroduced a new compile warning, should be fixed now
Uwe Steinmann [Thu, 6 Jul 2000 05:30:06 +0000 (05:30 +0000)]
- fixed compile problems on win32 (thanks to Gabriel Weisz <gweisz@l-speed.com>)
<changelog@php.net> [Thu, 6 Jul 2000 01:09:14 +0000 (01:09 +0000)]
ChangeLog update
<changelog@php.net> [Thu, 6 Jul 2000 01:09:08 +0000 (01:09 +0000)]
NEWS update
Jouni Ahto [Wed, 5 Jul 2000 22:17:30 +0000 (22:17 +0000)]
- Still one misssing zend_list_addref() and small fix in pg_close.
Fixes #5349 (but not the way reporter wants...).
# There's something in the way database_connect/close functions behave when
# implemented the way as in mysql module that I find a bit strange... because
# of that extra zend_list_addref() there to prevent default link disappearing
# if it's not assigned to variable, when it is, I guess its' reference count
# is at this point 2, I can do: open a db link and assign it to a variable,
# close the link and still use it afterwards.
Jouni Ahto [Wed, 5 Jul 2000 21:28:16 +0000 (21:28 +0000)]
- Test pg_encoding_to_char instead (it's existence in libpq means that
PostgreSQL was compiled with multibyte support and client encoding
functions do something meaningful). Fixes #5417.
Zeev Suraski [Wed, 5 Jul 2000 20:41:06 +0000 (20:41 +0000)]
That's no bug, it's quite fine the way it is (if id is
set to -1, it's ignored, and the passed_id argument is used).
If you're experiencing trouble with mysql_close(), please give me a
reproducing script. If there's a bug, it's not as simple as that.
Uwe Steinmann [Wed, 5 Jul 2000 19:48:24 +0000 (19:48 +0000)]
- Discoverd possible bug. Could somebody have a look.
Uwe Steinmann [Wed, 5 Jul 2000 19:47:43 +0000 (19:47 +0000)]
- Link is now of type RESOURCE and not LONG
Danny Heijl [Wed, 5 Jul 2000 19:37:45 +0000 (19:37 +0000)]
- Increase allowed number of columns from 256 to 384.
Egon Schmid [Wed, 5 Jul 2000 18:33:32 +0000 (18:33 +0000)]
Fixed some protos.
Rasmus Lerdorf [Wed, 5 Jul 2000 18:02:42 +0000 (18:02 +0000)]
When using HTTP auth from PHP, fill in the %u custom log field so the
authenticated used id will get logged in the Apache access_log
@- When using HTTP auth from PHP, fill in the %u custom log field so the
@ authenticated used id will get logged in the Apache access_log (Rasmus)
Andrei Zmievski [Wed, 5 Jul 2000 15:18:26 +0000 (15:18 +0000)]
Fix attribution on NEWS.
Uwe Steinmann [Wed, 5 Jul 2000 14:30:51 +0000 (14:30 +0000)]
- Support for pdflib 3.01
Sascha Schumann [Wed, 5 Jul 2000 11:27:24 +0000 (11:27 +0000)]
Fix typo. A shutdown function is of course called, when the server
exits.
Uwe Steinmann [Wed, 5 Jul 2000 08:59:19 +0000 (08:59 +0000)]
- Note about FDF working again
Uwe Steinmann [Wed, 5 Jul 2000 08:57:37 +0000 (08:57 +0000)]
- fixed handling of fdf data (application/vnd.fdf)
Jouni Ahto [Wed, 5 Jul 2000 04:21:00 +0000 (04:21 +0000)]
- First try at getting interbase to compile and work in ZTS-mode. Compiles.
Sascha Schumann [Wed, 5 Jul 2000 01:26:22 +0000 (01:26 +0000)]
(PHP session_destroy) return the error condition from storage handler's
session_destroy method.
Submitted by: juhl@eisenstein.dk
<changelog@php.net> [Wed, 5 Jul 2000 01:09:08 +0000 (01:09 +0000)]
ChangeLog update
<changelog@php.net> [Wed, 5 Jul 2000 01:09:05 +0000 (01:09 +0000)]
NEWS update
Egon Schmid [Tue, 4 Jul 2000 20:31:54 +0000 (20:31 +0000)]
Not every argument type is mixed.
Egon Schmid [Tue, 4 Jul 2000 19:41:31 +0000 (19:41 +0000)]
Missed a two liner.
Mike Waychison [Tue, 4 Jul 2000 16:16:32 +0000 (16:16 +0000)]
(PHP date) Added new 'O' format modifier for printing out the GMT Offset in
the same manner as emails have in their Date: header. The format
is similar to [+-]HHMM of offset.
@- Added new 'O' format modifier that will output the GMT offset as "[+-]HHMM"
@ (eg: Pacific time is -0700). This is useful for things such as Date: mail
@ headers.
# Um, this should have existed LONG time ago... much better than that gmt
# offset in seconds modifier :)
Stig Bakken [Tue, 4 Jul 2000 09:15:06 +0000 (09:15 +0000)]
Added "html_errors" directive to optionally disable HTML formatting of error
messages. The default is on. (Stig)
Sascha Schumann [Tue, 4 Jul 2000 05:15:33 +0000 (05:15 +0000)]
Make script work on POSIX sh
<changelog@php.net> [Tue, 4 Jul 2000 01:09:08 +0000 (01:09 +0000)]
ChangeLog update
<changelog@php.net> [Tue, 4 Jul 2000 01:09:05 +0000 (01:09 +0000)]
NEWS update
Zeev Suraski [Mon, 3 Jul 2000 22:04:10 +0000 (22:04 +0000)]
Fix logic (thanks to Dean Bennett)
Danny Heijl [Mon, 3 Jul 2000 19:27:28 +0000 (19:27 +0000)]
- Informix driver : Changes for new "main" directory (win32 build)
Andi Gutmans [Mon, 3 Jul 2000 19:17:57 +0000 (19:17 +0000)]
- Fix bug #4120
Sam Ruby [Mon, 3 Jul 2000 17:34:41 +0000 (17:34 +0000)]
Fix typo. Thanks to Adam Trachtenberg for noticing it!
Stanislav Malyshev [Mon, 3 Jul 2000 16:53:39 +0000 (16:53 +0000)]
Unblock SIGPROF signal when starting timer.
On Linux, this signal is blocked by default after first signal is run
Thies C. Arntzen [Mon, 3 Jul 2000 15:05:46 +0000 (15:05 +0000)]
@- Fixed crash on OCI?Logon() failure. (thies)
Sam Ruby [Mon, 3 Jul 2000 09:00:54 +0000 (09:00 +0000)]
Add suggestions for dealing with difficult installations, based on feedback
from multiple people. The .bashrc suggestion was from Rael Dornfest.
Sascha Schumann [Mon, 3 Jul 2000 06:45:07 +0000 (06:45 +0000)]
Identifiers which begin with an underscore are reserved. Changed
_PHP_SOCKETS_H to PHP_SOCKETS_H.
Rasmus Lerdorf [Mon, 3 Jul 2000 05:25:00 +0000 (05:25 +0000)]
Use AC_CHECK_HEADERS(unistd.h) instead
Chris Vandomelen [Mon, 3 Jul 2000 04:45:21 +0000 (04:45 +0000)]
* ext/sockets/.cvsignore
- Forgot to import into repository.
Chris Vandomelen [Mon, 3 Jul 2000 04:35:57 +0000 (04:35 +0000)]
* Makefile.in
config.m4
php_sockets.h
sockets.c
sockets.php:
- Added files needed for Unix-style sockets support in PHP.
<changelog@php.net> [Mon, 3 Jul 2000 01:09:05 +0000 (01:09 +0000)]
ChangeLog update
Sascha Schumann [Mon, 3 Jul 2000 00:55:36 +0000 (00:55 +0000)]
Replace macros which begin with an underscore through an appropiately
named macro.
Sascha Schumann [Mon, 3 Jul 2000 00:45:21 +0000 (00:45 +0000)]
Rename macros which begin with underscore to valid macros.
Sascha Schumann [Mon, 3 Jul 2000 00:41:19 +0000 (00:41 +0000)]
Rename macros which begin with underscore to appropiate macros. The general
rule is:
macro_name=`echo $filename|tr a-z A-Z|sed 's/\./_/'`
Sascha Schumann [Sun, 2 Jul 2000 23:54:19 +0000 (23:54 +0000)]
Change header protection macros to conform to standard.
Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment"
All identifiers that begin with an underscore and either an uppercase
letter or another underscore are always reserved for any use by the
implementation.
Sascha Schumann [Sun, 2 Jul 2000 23:46:51 +0000 (23:46 +0000)]
Change header protection macros to conform to standard.
Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment"
All identifiers that begin with an underscore and either an uppercase
letter or another underscore are always reserved for any use by the
implementation.
Sascha Schumann [Sun, 2 Jul 2000 23:16:54 +0000 (23:16 +0000)]
Identifiers that begin with underscore are reserved for the implementation.
Chuck Hagenbuch [Sun, 2 Jul 2000 19:04:36 +0000 (19:04 +0000)]
i don't think there's a reason to nuke the db handle here (when freeing
results).
Shane Caraveo [Sun, 2 Jul 2000 17:20:38 +0000 (17:20 +0000)]
fix php4dllts dsp file
Shane Caraveo [Sun, 2 Jul 2000 17:20:03 +0000 (17:20 +0000)]
fix apache dsp file
Shane Caraveo [Sun, 2 Jul 2000 17:19:49 +0000 (17:19 +0000)]
fix nsapi dsp file
Stanislav Malyshev [Sun, 2 Jul 2000 16:36:31 +0000 (16:36 +0000)]
react only on CORE_ERROR
Stanislav Malyshev [Sun, 2 Jul 2000 16:27:39 +0000 (16:27 +0000)]
Fix couple of crashes on error conditions
Make session_module_name really work
Stanislav Malyshev [Sun, 2 Jul 2000 16:23:43 +0000 (16:23 +0000)]
Be strict on errors in modules startup
Andi Gutmans [Sun, 2 Jul 2000 16:06:45 +0000 (16:06 +0000)]
- Take #2 with tab size 4
Andi Gutmans [Sun, 2 Jul 2000 16:00:00 +0000 (16:00 +0000)]
- Beautify parser a bit. It still could do with some more at some point
Andi Gutmans [Sun, 2 Jul 2000 15:39:54 +0000 (15:39 +0000)]
- Forgot ZEND_API
Andi Gutmans [Sun, 2 Jul 2000 15:12:34 +0000 (15:12 +0000)]
- Make PHP compile again under Windows.
- Please be careful when you make such changes.
Kristian Köhntopp [Sun, 2 Jul 2000 13:41:26 +0000 (13:41 +0000)]
unlink() is not a function related to HAVE_SYMLINK. It is being
used to delete files (actually, in Unix, names of files, as in
Unix nobody has deleted a file, ever).
Rui Hirokawa [Sun, 2 Jul 2000 08:59:44 +0000 (08:59 +0000)]
added new functions: pg_setclientencoding, pg_clientencoding in Postgres-7.0.
<changelog@php.net> [Sun, 2 Jul 2000 01:09:08 +0000 (01:09 +0000)]
ChangeLog update
<changelog@php.net> [Sun, 2 Jul 2000 01:09:05 +0000 (01:09 +0000)]
NEWS update
Sterling Hughes [Sat, 1 Jul 2000 22:39:27 +0000 (22:39 +0000)]
revert + note.
Sterling Hughes [Sat, 1 Jul 2000 21:34:45 +0000 (21:34 +0000)]
- strdup -> estrdup
- check whether return_value array is initialized.
Rasmus Lerdorf [Sat, 1 Jul 2000 18:06:11 +0000 (18:06 +0000)]
This is documented to not be case sensitive and it is not case sensitive
in PHP 3, so let's not make it case sensitive.
@Make the special Header("http/...") response be case insensitive like 3.0 (Rasmus)
Andi Gutmans [Sat, 1 Jul 2000 12:23:09 +0000 (12:23 +0000)]
- Commit tiny patch to remove redundant code by Amit Schreiber.
Sterling Hughes [Sat, 1 Jul 2000 01:43:37 +0000 (01:43 +0000)]
stylistic modifications.
Sterling Hughes [Sat, 1 Jul 2000 01:42:51 +0000 (01:42 +0000)]
definition.
Sterling Hughes [Sat, 1 Jul 2000 01:37:11 +0000 (01:37 +0000)]
@- Allow cybercash to compile as a DL module. (Sterling)
-Allow cybercash to compile as a DL module.
-Stylistic changes.
-Add RETURN_STRINGL + Z_*_PP macros
<changelog@php.net> [Sat, 1 Jul 2000 01:09:09 +0000 (01:09 +0000)]
ChangeLog update
<changelog@php.net> [Sat, 1 Jul 2000 01:09:06 +0000 (01:09 +0000)]
NEWS update
Sterling Hughes [Fri, 30 Jun 2000 22:44:20 +0000 (22:44 +0000)]
Fix bug 4813. Fixed by greg@darkphoton.com
Sterling Hughes [Fri, 30 Jun 2000 21:21:17 +0000 (21:21 +0000)]
@- Fixed the dbase_create function. (Sterling)
Fixed the dbase_create function.
Andrei Zmievski [Fri, 30 Jun 2000 19:40:42 +0000 (19:40 +0000)]
Typo.