]>
granicus.if.org Git - php/log
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>)
Hartmut Holzgraefe [Thu, 6 Dec 2001 19:02:27 +0000 (19:02 +0000)]
ported rot13() from php3
foobar [Thu, 6 Dec 2001 19:01:43 +0000 (19:01 +0000)]
Fix shared extension linking when compiling with e.g. CGI sapi.
Hartmut Holzgraefe [Thu, 6 Dec 2001 18:59:22 +0000 (18:59 +0000)]
proto fixes
Hartmut Holzgraefe [Thu, 6 Dec 2001 18:37:05 +0000 (18:37 +0000)]
proto fixes
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;
?>
Hartmut Holzgraefe [Thu, 6 Dec 2001 17:51:48 +0000 (17:51 +0000)]
proto fixes
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;
?>
Andi Gutmans [Thu, 6 Dec 2001 17:23:08 +0000 (17:23 +0000)]
- Nuke the namespace work I did. It'll be redone differently.
Hartmut Holzgraefe [Thu, 6 Dec 2001 17:18:10 +0000 (17:18 +0000)]
fixing the proto fixes
Hartmut Holzgraefe [Thu, 6 Dec 2001 17:15:59 +0000 (17:15 +0000)]
proto fix
Hartmut Holzgraefe [Thu, 6 Dec 2001 17:11:42 +0000 (17:11 +0000)]
proto fix (sort of)
Hartmut Holzgraefe [Thu, 6 Dec 2001 17:09:09 +0000 (17:09 +0000)]
proto fixes
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
Zeev Suraski [Thu, 6 Dec 2001 14:20:20 +0000 (14:20 +0000)]
Fix session_unregister()
Zeev Suraski [Thu, 6 Dec 2001 13:33:10 +0000 (13:33 +0000)]
Remove PS_DEL_VAR macro, always use PS_DEL_VARL()
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
Sterling Hughes [Thu, 6 Dec 2001 11:44:38 +0000 (11:44 +0000)]
2 arguments, not 3
Markus Fischer [Thu, 6 Dec 2001 09:56:24 +0000 (09:56 +0000)]
- Prototype new parameter which forces the creation of new links.
foobar [Thu, 6 Dec 2001 05:42:28 +0000 (05:42 +0000)]
Ignore .reg files created by pear_registry test.
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)
foobar [Thu, 6 Dec 2001 04:43:58 +0000 (04:43 +0000)]
Fix test when allow_call_time_pass_reference = Off
Doug MacEachern [Thu, 6 Dec 2001 01:25:48 +0000 (01:25 +0000)]
destroy subrequests returned from ap_sub_req_lookup_uri
<changelog@php.net> [Thu, 6 Dec 2001 01:10:43 +0000 (01:10 +0000)]
ChangeLog update
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>)
Hartmut Holzgraefe [Wed, 5 Dec 2001 23:07:13 +0000 (23:07 +0000)]
proto fix
Hartmut Holzgraefe [Wed, 5 Dec 2001 23:01:21 +0000 (23:01 +0000)]
proto fixes
Hartmut Holzgraefe [Wed, 5 Dec 2001 22:43:21 +0000 (22:43 +0000)]
proto fix
Hartmut Holzgraefe [Wed, 5 Dec 2001 22:38:49 +0000 (22:38 +0000)]
proto fixes
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
Zeev Suraski [Wed, 5 Dec 2001 13:46:36 +0000 (13:46 +0000)]
Remove redundant include
Sebastian Bergmann [Wed, 5 Dec 2001 07:04:16 +0000 (07:04 +0000)]
Document recent changes.
<changelog@php.net> [Wed, 5 Dec 2001 01:10:23 +0000 (01:10 +0000)]
ChangeLog update
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.
foobar [Wed, 5 Dec 2001 00:32:23 +0000 (00:32 +0000)]
Make it more clear what session.referer_check is about.
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.
Hartmut Holzgraefe [Tue, 4 Dec 2001 22:57:16 +0000 (22:57 +0000)]
proto fix
Hartmut Holzgraefe [Tue, 4 Dec 2001 22:49:53 +0000 (22:49 +0000)]
proto fix
Hartmut Holzgraefe [Tue, 4 Dec 2001 22:46:06 +0000 (22:46 +0000)]
proto fixes
Hartmut Holzgraefe [Tue, 4 Dec 2001 22:14:28 +0000 (22:14 +0000)]
proto fix
Hartmut Holzgraefe [Tue, 4 Dec 2001 21:18:26 +0000 (21:18 +0000)]
proto fixes
Sterling Hughes [Tue, 4 Dec 2001 19:40:48 +0000 (19:40 +0000)]
Make the length parameter to fgets optional (defaults to 1024)
Frank M. Kromann [Tue, 4 Dec 2001 18:47:32 +0000 (18:47 +0000)]
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
Frank M. Kromann [Tue, 4 Dec 2001 18:46:49 +0000 (18:46 +0000)]
Adding files to enable imap_mail() on win32
Andi Gutmans [Tue, 4 Dec 2001 17:58:32 +0000 (17:58 +0000)]
- Damn Zeev :)
Sebastian Bergmann [Tue, 4 Dec 2001 13:20:26 +0000 (13:20 +0000)]
Mark sapi/servlet 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.
Sebastian Bergmann [Tue, 4 Dec 2001 13:19:04 +0000 (13:19 +0000)]
Add Win32 specific files to .cvsignore.
Sebastian Bergmann [Tue, 4 Dec 2001 05:32:07 +0000 (05:32 +0000)]
Add XMLRPC extension.
<changelog@php.net> [Tue, 4 Dec 2001 01:10:53 +0000 (01:10 +0000)]
ChangeLog update
<changelog@php.net> [Tue, 4 Dec 2001 01:10:50 +0000 (01:10 +0000)]
NEWS update
foobar [Tue, 4 Dec 2001 00:28:36 +0000 (00:28 +0000)]
typo fix
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.
Shane Caraveo [Mon, 3 Dec 2001 22:33:32 +0000 (22:33 +0000)]
Make xmlrpc module compilable on windows. compiles, but untested.
Andi Gutmans [Mon, 3 Dec 2001 20:55:59 +0000 (20:55 +0000)]
- Missed one
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.
Sascha Schumann [Mon, 3 Dec 2001 15:32:12 +0000 (15:32 +0000)]
Fix declarations of static variables. Builds on AIX now.
Sterling Hughes [Mon, 3 Dec 2001 12:24:03 +0000 (12:24 +0000)]
Add a content length field to perhaps eliminate null truncation
Sterling Hughes [Mon, 3 Dec 2001 09:19:14 +0000 (09:19 +0000)]
Re-add support for HTTP file uploads
Sterling Hughes [Mon, 3 Dec 2001 08:28:12 +0000 (08:28 +0000)]
MFB
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)
Frank M. Kromann [Mon, 3 Dec 2001 05:15:29 +0000 (05:15 +0000)]
Make php_reg_replace 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
Frank M. Kromann [Mon, 3 Dec 2001 05:12:48 +0000 (05:12 +0000)]
Make _php_math_number_format 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
Frank M. Kromann [Mon, 3 Dec 2001 05:10:10 +0000 (05:10 +0000)]
Make php_setcookie available from shared extensions
<changelog@php.net> [Mon, 3 Dec 2001 01:10:54 +0000 (01:10 +0000)]
ChangeLog update
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)
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
Markus Fischer [Sun, 2 Dec 2001 17:40:38 +0000 (17:40 +0000)]
Please Egon.
Bernd Roemer [Sun, 2 Dec 2001 17:31:11 +0000 (17:31 +0000)]
Allow unserializer_callback_func to be turned off.
Tomas V.V.Cox [Sun, 2 Dec 2001 16:29:37 +0000 (16:29 +0000)]
Rename Dependencie.php to Dependency.php
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.
Daniel Beulshausen [Sun, 2 Dec 2001 14:01:22 +0000 (14:01 +0000)]
fix CFLAGS, how could this have worked before?
Daniel Beulshausen [Sun, 2 Dec 2001 13:56:22 +0000 (13:56 +0000)]
remove outdated txts
Daniel Beulshausen [Sun, 2 Dec 2001 13:53:03 +0000 (13:53 +0000)]
cleanup workspace
Daniel Beulshausen [Sun, 2 Dec 2001 13:34:40 +0000 (13:34 +0000)]
fix php_win_err (wasn't threadsafe)
Markus Fischer [Sun, 2 Dec 2001 12:21:50 +0000 (12:21 +0000)]
- Reverted macro moving stupidity (thx to Sterling).
Derick Rethans [Sun, 2 Dec 2001 11:35:28 +0000 (11:35 +0000)]
- Fix a bug in timezones +0100 and -0100
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.
Egon Schmid [Sun, 2 Dec 2001 10:00:15 +0000 (10:00 +0000)]
I hope that this is a better explanation as unknown.
Egon Schmid [Sun, 2 Dec 2001 09:41:27 +0000 (09:41 +0000)]
Fixed some protos.
Egon Schmid [Sun, 2 Dec 2001 09:29:09 +0000 (09:29 +0000)]
Fixed two protos.
Sergey Kartashoff [Sun, 2 Dec 2001 07:25:26 +0000 (07:25 +0000)]
- Mnogosearch module stored API slightly changed. Example updated.
<changelog@php.net> [Sun, 2 Dec 2001 01:10:14 +0000 (01:10 +0000)]
ChangeLog update
Rasmus Lerdorf [Sun, 2 Dec 2001 00:59:44 +0000 (00:59 +0000)]
Oops, FOO_VERSION doesn't exist
Tomas V.V.Cox [Sun, 2 Dec 2001 00:44:02 +0000 (00:44 +0000)]
Class for checking dependencies
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)
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.
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.
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)
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().
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.
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>
Sergey Kartashoff [Sat, 1 Dec 2001 14:12:27 +0000 (14:12 +0000)]
- mnoGoSearch module usage example (searchlite) updated to support
StoreDoc stuff.
Sergey Kartashoff [Sat, 1 Dec 2001 14:05:13 +0000 (14:05 +0000)]
- StoreDOC support has been added to mnogoSearch module.
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.
Andi Gutmans [Sat, 1 Dec 2001 08:33:48 +0000 (08:33 +0000)]
- Use alloca() when possible.
<changelog@php.net> [Sat, 1 Dec 2001 01:10:20 +0000 (01:10 +0000)]
ChangeLog update