]> granicus.if.org Git - php/log
php
23 years agoneed to call ap_destroy_sub_req() before RETURN_TRUE in apache_sub_req()
Doug MacEachern [Thu, 6 Dec 2001 19:03:29 +0000 (19:03 +0000)]
need to call ap_destroy_sub_req() before RETURN_TRUE in apache_sub_req()
(Jon Parise <jon@php.net>)

23 years agoported rot13() from php3
Hartmut Holzgraefe [Thu, 6 Dec 2001 19:02:27 +0000 (19:02 +0000)]
ported rot13() from php3

23 years agoFix shared extension linking when compiling with e.g. CGI sapi.
foobar [Thu, 6 Dec 2001 19:01:43 +0000 (19:01 +0000)]
Fix shared extension linking when compiling with e.g. CGI sapi.

23 years agoproto fixes
Hartmut Holzgraefe [Thu, 6 Dec 2001 18:59:22 +0000 (18:59 +0000)]
proto fixes

23 years agoproto fixes
Hartmut Holzgraefe [Thu, 6 Dec 2001 18:37:05 +0000 (18:37 +0000)]
proto fixes

23 years ago- Support constants. The following works now:
Andi Gutmans [Thu, 6 Dec 2001 18:05:18 +0000 (18:05 +0000)]
- Support constants. The following works now:
<?
class foo {
const GC = "foo constant\n";
}

define("GC", "Global constant\n");

namespace;
print GC;
namespace foo;
print GC;
namespace;
print foo::GC;

?>

23 years agoproto fixes
Hartmut Holzgraefe [Thu, 6 Dec 2001 17:51:48 +0000 (17:51 +0000)]
proto fixes

23 years ago- Initial work on changing namespace scope. Only methods & variables
Andi Gutmans [Thu, 6 Dec 2001 17:47:04 +0000 (17:47 +0000)]
- Initial work on changing namespace scope. Only methods & variables
- right now.
<?
$hey = "Global hey\n";

class foo {
static $hey = "Namespace hey\n";
function bar()
{
print "in foo::bar()\n";
}
}
function bar()
{
print "in bar()\n";
}

bar();
namespace foo;
bar();
namespace;
bar();
namespace foo;
$bar_indirect = "bar";
$bar_indirect();

namespace;
print $hey;
namespace foo;
print $hey;
$hey = "Namespace hey #2\n";
namespace;
print $hey;
$hey = "Global hey #2\n";
namespace foo;
print $hey;
?>

23 years ago- Nuke the namespace work I did. It'll be redone differently.
Andi Gutmans [Thu, 6 Dec 2001 17:23:08 +0000 (17:23 +0000)]
- Nuke the namespace work I did. It'll be redone differently.

23 years agofixing the proto fixes
Hartmut Holzgraefe [Thu, 6 Dec 2001 17:18:10 +0000 (17:18 +0000)]
fixing the proto fixes

23 years agoproto fix
Hartmut Holzgraefe [Thu, 6 Dec 2001 17:15:59 +0000 (17:15 +0000)]
proto fix

23 years agoproto fix (sort of)
Hartmut Holzgraefe [Thu, 6 Dec 2001 17:11:42 +0000 (17:11 +0000)]
proto fix (sort of)

23 years agoproto fixes
Hartmut Holzgraefe [Thu, 6 Dec 2001 17:09:09 +0000 (17:09 +0000)]
proto fixes

23 years agoWork around a quirk in the MySQL client library to fix unbuffered queries
Zeev Suraski [Thu, 6 Dec 2001 15:04:23 +0000 (15:04 +0000)]
Work around a quirk in the MySQL client library to fix unbuffered queries

23 years agoFix session_unregister()
Zeev Suraski [Thu, 6 Dec 2001 14:20:20 +0000 (14:20 +0000)]
Fix session_unregister()

23 years agoRemove PS_DEL_VAR macro, always use PS_DEL_VARL()
Zeev Suraski [Thu, 6 Dec 2001 13:33:10 +0000 (13:33 +0000)]
Remove PS_DEL_VAR macro, always use PS_DEL_VARL()

23 years agouse PHP_INFO_ALL and PHP_CREDITS_ALL instead of hardcoding them
Sterling Hughes [Thu, 6 Dec 2001 13:31:34 +0000 (13:31 +0000)]
use PHP_INFO_ALL and PHP_CREDITS_ALL instead of hardcoding them

23 years ago2 arguments, not 3
Sterling Hughes [Thu, 6 Dec 2001 11:44:38 +0000 (11:44 +0000)]
2 arguments, not 3

23 years ago- Prototype new parameter which forces the creation of new links.
Markus Fischer [Thu, 6 Dec 2001 09:56:24 +0000 (09:56 +0000)]
- Prototype new parameter which forces the creation of new links.

23 years agoIgnore .reg files created by pear_registry test.
foobar [Thu, 6 Dec 2001 05:42:28 +0000 (05:42 +0000)]
Ignore .reg files created by pear_registry test.

23 years agoFix broken format string in socket_recv -> zend_parse_parameters
Jason Greene [Thu, 6 Dec 2001 04:44:23 +0000 (04:44 +0000)]
Fix broken format string in socket_recv -> zend_parse_parameters
Rewrote socket_setopt and socket_getopt to be cleaner
@Added support for SO_RCVTIMEO and SO_SNDTIMEO to ext/sockets (Jason)

23 years agoFix test when allow_call_time_pass_reference = Off
foobar [Thu, 6 Dec 2001 04:43:58 +0000 (04:43 +0000)]
Fix test when allow_call_time_pass_reference = Off

23 years agodestroy subrequests returned from ap_sub_req_lookup_uri
Doug MacEachern [Thu, 6 Dec 2001 01:25:48 +0000 (01:25 +0000)]
destroy subrequests returned from ap_sub_req_lookup_uri

23 years agoChangeLog update
<changelog@php.net> [Thu, 6 Dec 2001 01:10:43 +0000 (01:10 +0000)]
ChangeLog update

23 years agocall to ap_sub_req_lookup_uri() needs to pass ctx->f->next rather than
Doug MacEachern [Thu, 6 Dec 2001 00:53:58 +0000 (00:53 +0000)]
call to ap_sub_req_lookup_uri() needs to pass ctx->f->next rather than
NULL for next_filter argument in order for ap_run_sub_req() output to
end up where expected.  ("William A. Rowe, Jr." <wrowe@rowe-clan.net>)

23 years agoproto fix
Hartmut Holzgraefe [Wed, 5 Dec 2001 23:07:13 +0000 (23:07 +0000)]
proto fix

23 years agoproto fixes
Hartmut Holzgraefe [Wed, 5 Dec 2001 23:01:21 +0000 (23:01 +0000)]
proto fixes

23 years agoproto fix
Hartmut Holzgraefe [Wed, 5 Dec 2001 22:43:21 +0000 (22:43 +0000)]
proto fix

23 years agoproto fixes
Hartmut Holzgraefe [Wed, 5 Dec 2001 22:38:49 +0000 (22:38 +0000)]
proto fixes

23 years agoincrease timestamp, because make tries to regenerate this file without any reason
Sascha Schumann [Wed, 5 Dec 2001 21:45:33 +0000 (21:45 +0000)]
increase timestamp, because make tries to regenerate this file without any reason

23 years agoRemove redundant include
Zeev Suraski [Wed, 5 Dec 2001 13:46:36 +0000 (13:46 +0000)]
Remove redundant include

23 years agoDocument recent changes.
Sebastian Bergmann [Wed, 5 Dec 2001 07:04:16 +0000 (07:04 +0000)]
Document recent changes.

23 years agoChangeLog update
<changelog@php.net> [Wed, 5 Dec 2001 01:10:23 +0000 (01:10 +0000)]
ChangeLog update

23 years agoStore the read bytes so that some sapi modules know how much to read.
foobar [Wed, 5 Dec 2001 00:44:17 +0000 (00:44 +0000)]
Store the read bytes so that some sapi modules know how much to read.

23 years agoMake it more clear what session.referer_check is about.
foobar [Wed, 5 Dec 2001 00:32:23 +0000 (00:32 +0000)]
Make it more clear what session.referer_check is about.

23 years agoRemove check for "To:" in headers. If "Reply-To:" exists the the To: entry was not...
Frank M. Kromann [Tue, 4 Dec 2001 23:33:52 +0000 (23:33 +0000)]
Remove check for "To:" in headers. If "Reply-To:" exists the the To: entry was not created.
This is WIn32 only.

23 years agoproto fix
Hartmut Holzgraefe [Tue, 4 Dec 2001 22:57:16 +0000 (22:57 +0000)]
proto fix

23 years agoproto fix
Hartmut Holzgraefe [Tue, 4 Dec 2001 22:49:53 +0000 (22:49 +0000)]
proto fix

23 years agoproto fixes
Hartmut Holzgraefe [Tue, 4 Dec 2001 22:46:06 +0000 (22:46 +0000)]
proto fixes

23 years agoproto fix
Hartmut Holzgraefe [Tue, 4 Dec 2001 22:14:28 +0000 (22:14 +0000)]
proto fix

23 years agoproto fixes
Hartmut Holzgraefe [Tue, 4 Dec 2001 21:18:26 +0000 (21:18 +0000)]
proto fixes

23 years agoMake the length parameter to fgets optional (defaults to 1024)
Sterling Hughes [Tue, 4 Dec 2001 19:40:48 +0000 (19:40 +0000)]
Make the length parameter to fgets optional (defaults to 1024)

23 years agoEnable imap_mail() on win32
Frank M. Kromann [Tue, 4 Dec 2001 18:47:32 +0000 (18:47 +0000)]
Enable imap_mail() on win32

23 years agomodified to enable imap_mail() on win32
Frank M. Kromann [Tue, 4 Dec 2001 18:47:07 +0000 (18:47 +0000)]
modified to enable imap_mail() on win32

23 years agoAdding files to enable imap_mail() on win32
Frank M. Kromann [Tue, 4 Dec 2001 18:46:49 +0000 (18:46 +0000)]
Adding files to enable imap_mail() on win32

23 years ago- Damn Zeev :)
Andi Gutmans [Tue, 4 Dec 2001 17:58:32 +0000 (17:58 +0000)]
- Damn Zeev :)

23 years agoMark sapi/servlet as what it is: experimental.
Sebastian Bergmann [Tue, 4 Dec 2001 13:20:26 +0000 (13:20 +0000)]
Mark sapi/servlet as what it is: experimental.

23 years agoMark ext/java as what it is: experimental.
Sebastian Bergmann [Tue, 4 Dec 2001 13:19:42 +0000 (13:19 +0000)]
Mark ext/java as what it is: experimental.

23 years agoAdd Win32 specific files to .cvsignore.
Sebastian Bergmann [Tue, 4 Dec 2001 13:19:04 +0000 (13:19 +0000)]
Add Win32 specific files to .cvsignore.

23 years agoAdd XMLRPC extension.
Sebastian Bergmann [Tue, 4 Dec 2001 05:32:07 +0000 (05:32 +0000)]
Add XMLRPC extension.

23 years agoChangeLog update
<changelog@php.net> [Tue, 4 Dec 2001 01:10:53 +0000 (01:10 +0000)]
ChangeLog update

23 years agoNEWS update
<changelog@php.net> [Tue, 4 Dec 2001 01:10:50 +0000 (01:10 +0000)]
NEWS update

23 years agotypo fix
foobar [Tue, 4 Dec 2001 00:28:36 +0000 (00:28 +0000)]
typo fix

23 years ago- Let's not default to any set of extra libraries. This way any kind of
foobar [Mon, 3 Dec 2001 23:54:10 +0000 (23:54 +0000)]
- Let's not default to any set of extra libraries. This way any kind of
  builds of pdflib work. And this configure stays simple.

23 years agoMake xmlrpc module compilable on windows. compiles, but untested.
Shane Caraveo [Mon, 3 Dec 2001 22:33:32 +0000 (22:33 +0000)]
Make xmlrpc module compilable on windows.  compiles, but untested.

23 years ago- Missed one
Andi Gutmans [Mon, 3 Dec 2001 20:55:59 +0000 (20:55 +0000)]
- Missed one

23 years ago- Nuke REGISTER_MAIN_*. Extension maintainers please make sure I didn't
Andi Gutmans [Mon, 3 Dec 2001 20:54:23 +0000 (20:54 +0000)]
- Nuke REGISTER_MAIN_*. Extension maintainers please make sure I didn't
- change something I wasn't supposed to. It should be fine IMO.

23 years agoFix declarations of static variables. Builds on AIX now.
Sascha Schumann [Mon, 3 Dec 2001 15:32:12 +0000 (15:32 +0000)]
Fix declarations of static variables.  Builds on AIX now.

23 years agoAdd a content length field to perhaps eliminate null truncation
Sterling Hughes [Mon, 3 Dec 2001 12:24:03 +0000 (12:24 +0000)]
Add a content length field to perhaps eliminate null truncation

23 years agoRe-add support for HTTP file uploads
Sterling Hughes [Mon, 3 Dec 2001 09:19:14 +0000 (09:19 +0000)]
Re-add support for HTTP file uploads

23 years agoMFB
Sterling Hughes [Mon, 3 Dec 2001 08:28:12 +0000 (08:28 +0000)]
MFB

23 years ago- Added ob_get_level, which returns the nesting level of the output buffering
Derick Rethans [Mon, 3 Dec 2001 07:43:53 +0000 (07:43 +0000)]
- Added ob_get_level, which returns the nesting level of the output buffering
  mechanism. (patch by Yasuo Ohgaki <yasuo_ohgaki@yahoo.com>)
@- Added ob_get_level, which returns the nesting level of the output buffering
@  mechanism. (Yasuo, Derick)

23 years agoMake php_reg_replace available from shared extensions
Frank M. Kromann [Mon, 3 Dec 2001 05:15:29 +0000 (05:15 +0000)]
Make php_reg_replace available from shared extensions

23 years agoMake php_MD5* functions available from shared extensions
Frank M. Kromann [Mon, 3 Dec 2001 05:14:28 +0000 (05:14 +0000)]
Make php_MD5* functions available from shared extensions

23 years agoMake _php_math_number_format available from shared extensions
Frank M. Kromann [Mon, 3 Dec 2001 05:12:48 +0000 (05:12 +0000)]
Make _php_math_number_format available from shared extensions

23 years agoMake php_startpage and php_getlastmod available from shared extensions
Frank M. Kromann [Mon, 3 Dec 2001 05:11:29 +0000 (05:11 +0000)]
Make php_startpage and php_getlastmod available from shared extensions

23 years agoMake php_setcookie available from shared extensions
Frank M. Kromann [Mon, 3 Dec 2001 05:10:10 +0000 (05:10 +0000)]
Make php_setcookie available from shared extensions

23 years agoChangeLog update
<changelog@php.net> [Mon, 3 Dec 2001 01:10:54 +0000 (01:10 +0000)]
ChangeLog update

23 years agoadded mssql_fetch_assoc() to be more mysql conform
Harald Radi [Sun, 2 Dec 2001 21:10:15 +0000 (21:10 +0000)]
added mssql_fetch_assoc() to be more mysql conform
changed mssql_fetch_array() back to its default behaviour (MSSQL_BOTH)

23 years ago- switch to new paramter parser
Hartmut Holzgraefe [Sun, 2 Dec 2001 17:57:17 +0000 (17:57 +0000)]
- switch to new paramter parser
- make sure To: and Subject: do not end with a newline character

23 years agoPlease Egon.
Markus Fischer [Sun, 2 Dec 2001 17:40:38 +0000 (17:40 +0000)]
Please Egon.

23 years agoAllow unserializer_callback_func to be turned off.
Bernd Roemer [Sun, 2 Dec 2001 17:31:11 +0000 (17:31 +0000)]
Allow unserializer_callback_func to be turned off.

23 years agoRename Dependencie.php to Dependency.php
Tomas V.V.Cox [Sun, 2 Dec 2001 16:29:37 +0000 (16:29 +0000)]
Rename Dependencie.php to Dependency.php

23 years ago- Standardize function to accept either $obj->foo or domxml_foo($obj)
Markus Fischer [Sun, 2 Dec 2001 16:17:51 +0000 (16:17 +0000)]
- Standardize function to accept either $obj->foo or domxml_foo($obj)
  where they should.
- Use xml*Len functions where available.
- Workaround in set_content() to prevent crash.
- Cleaned up php_xpathptr_eval().
- Added NO_ARGS check where missing; moved check for $this always
  before arg parsing.

23 years agofix CFLAGS, how could this have worked before?
Daniel Beulshausen [Sun, 2 Dec 2001 14:01:22 +0000 (14:01 +0000)]
fix CFLAGS, how could this have worked before?

23 years agoremove outdated txts
Daniel Beulshausen [Sun, 2 Dec 2001 13:56:22 +0000 (13:56 +0000)]
remove outdated txts

23 years agocleanup workspace
Daniel Beulshausen [Sun, 2 Dec 2001 13:53:03 +0000 (13:53 +0000)]
cleanup workspace

23 years agofix php_win_err (wasn't threadsafe)
Daniel Beulshausen [Sun, 2 Dec 2001 13:34:40 +0000 (13:34 +0000)]
fix php_win_err (wasn't threadsafe)

23 years ago- Reverted macro moving stupidity (thx to Sterling).
Markus Fischer [Sun, 2 Dec 2001 12:21:50 +0000 (12:21 +0000)]
- Reverted macro moving stupidity (thx to Sterling).

23 years ago- Fix a bug in timezones +0100 and -0100
Derick Rethans [Sun, 2 Dec 2001 11:35:28 +0000 (11:35 +0000)]
- Fix a bug in timezones +0100 and -0100

23 years ago- Added synonym stuff support to mnogosearch module. Slightly changed
Sergey Kartashoff [Sun, 2 Dec 2001 10:24:39 +0000 (10:24 +0000)]
- Added synonym stuff support to mnogosearch module. Slightly changed
  stored API. Example updated.

23 years agoI hope that this is a better explanation as unknown.
Egon Schmid [Sun, 2 Dec 2001 10:00:15 +0000 (10:00 +0000)]
I hope that this is a better explanation as unknown.

23 years agoFixed some protos.
Egon Schmid [Sun, 2 Dec 2001 09:41:27 +0000 (09:41 +0000)]
Fixed some protos.

23 years agoFixed two protos.
Egon Schmid [Sun, 2 Dec 2001 09:29:09 +0000 (09:29 +0000)]
Fixed two protos.

23 years ago- Mnogosearch module stored API slightly changed. Example updated.
Sergey Kartashoff [Sun, 2 Dec 2001 07:25:26 +0000 (07:25 +0000)]
- Mnogosearch module stored API slightly changed. Example updated.

23 years agoChangeLog update
<changelog@php.net> [Sun, 2 Dec 2001 01:10:14 +0000 (01:10 +0000)]
ChangeLog update

23 years agoOops, FOO_VERSION doesn't exist
Rasmus Lerdorf [Sun, 2 Dec 2001 00:59:44 +0000 (00:59 +0000)]
Oops, FOO_VERSION doesn't exist

23 years agoClass for checking dependencies
Tomas V.V.Cox [Sun, 2 Dec 2001 00:44:02 +0000 (00:44 +0000)]
Class for checking dependencies

23 years agoMake ext_skel generate backward compatible module sources
Rasmus Lerdorf [Sun, 2 Dec 2001 00:42:22 +0000 (00:42 +0000)]
Make ext_skel generate backward compatible module sources
(flight from London to Paris is too short for any real work)

23 years ago- Added stored API to mnoGoSearch module. Now you can check
Sergey Kartashoff [Sat, 1 Dec 2001 20:09:15 +0000 (20:09 +0000)]
- Added stored API to mnoGoSearch module. Now you can check
  if URL is places at the stored database ot not. Example updated.

23 years agoLast commit:
Markus Fischer [Sat, 1 Dec 2001 19:42:34 +0000 (19:42 +0000)]
Last commit:
- Fix segfault in xmldoc().
- Proper free zval in php_xpathptr_eval().

This one:
- Fix segfault in php_xpathptr_eval().
- Fix win32 build (TSRMLS_FETCH issues).
- More sanity checking in php_xpath_get_object(), php_xpath_get_context()
  and php_dom_get_object().
- Moved macros into header file.
- Register le_domxmldtd, le_domxmlcdatap (removes anoying warning message on shutdown).
- Fig segfault in node_children() with unsupported node types.
- Fix leak in php_domobject_new() with unsupported note types.
- Fix leak when freeing xpath context/objects.
- Reverted behaviour change to append_child() [old crashes].
- set_content() also sets the node->content property.

# Testers/patches/contribs welcome.

23 years agocheck for version for not building broken packages (thanks Markus)
Tomas V.V.Cox [Sat, 1 Dec 2001 17:55:47 +0000 (17:55 +0000)]
check for version for not building broken packages (thanks Markus)

23 years ago- Fix a crash when passing e.g. NULL to basename(). (Patch by Markus
Derick Rethans [Sat, 1 Dec 2001 15:45:55 +0000 (15:45 +0000)]
- Fix a crash when passing e.g. NULL to basename(). (Patch by Markus
  Fischer <mfischer@guru.josefine.at>)
#- Simplyfied code using zend_parse_parameters().

23 years agoimprove last patch:
Thies C. Arntzen [Sat, 1 Dec 2001 15:17:50 +0000 (15:17 +0000)]
improve last patch:
non existant object variables are now serialized as NULL, this saves us from
buffering the serialized data.

23 years agoserialized data would be incoorect if __sleep() returned a variable-name
Thies C. Arntzen [Sat, 1 Dec 2001 15:06:37 +0000 (15:06 +0000)]
serialized data would be incoorect if __sleep() returned a variable-name
which is non-existant in the object.
submitted by: Bernd Roemer <berndr@bonn.edu>

23 years ago- mnoGoSearch module usage example (searchlite) updated to support
Sergey Kartashoff [Sat, 1 Dec 2001 14:12:27 +0000 (14:12 +0000)]
- mnoGoSearch module usage example (searchlite) updated to support
  StoreDoc stuff.

23 years ago- StoreDOC support has been added to mnogoSearch module.
Sergey Kartashoff [Sat, 1 Dec 2001 14:05:13 +0000 (14:05 +0000)]
- StoreDOC support has been added to mnogoSearch module.

23 years ago- Revert one of the changes because it might be before the memory
Andi Gutmans [Sat, 1 Dec 2001 08:46:02 +0000 (08:46 +0000)]
- Revert one of the changes because it might be before the memory
- manager has started.

23 years ago- Use alloca() when possible.
Andi Gutmans [Sat, 1 Dec 2001 08:33:48 +0000 (08:33 +0000)]
- Use alloca() when possible.

23 years agoChangeLog update
<changelog@php.net> [Sat, 1 Dec 2001 01:10:20 +0000 (01:10 +0000)]
ChangeLog update