]> granicus.if.org Git - php/log
php
24 years agoChangeLog update
<changelog@php.net> [Wed, 30 Aug 2000 01:09:10 +0000 (01:09 +0000)]
ChangeLog update

24 years agoNEWS update
<changelog@php.net> [Wed, 30 Aug 2000 01:09:07 +0000 (01:09 +0000)]
NEWS update

24 years agoStart on 4.0.3-dev. [placeholder] in NEWS is for automated nightly NEWS
Andrei Zmievski [Tue, 29 Aug 2000 19:44:44 +0000 (19:44 +0000)]
Start on 4.0.3-dev. [placeholder] in NEWS is for automated nightly NEWS
file update script, it'll be removed after the first entry is there.

24 years ago- To configure with ingres should be --with-ingres and not --with-ii
Andi Gutmans [Tue, 29 Aug 2000 18:21:07 +0000 (18:21 +0000)]
- To configure with ingres should be --with-ingres and not --with-ii
- Changing it for 4.0.2 so that we don't have backwards compatibility
- problems later on

24 years ago- Close NEWS file for release.
Andi Gutmans [Tue, 29 Aug 2000 15:49:47 +0000 (15:49 +0000)]
- Close NEWS file for release.

24 years agoGo 4.0.2
Zeev Suraski [Tue, 29 Aug 2000 15:49:44 +0000 (15:49 +0000)]
Go 4.0.2

24 years ago- Update Zend version.
Andi Gutmans [Tue, 29 Aug 2000 15:48:55 +0000 (15:48 +0000)]
- Update Zend version.

24 years agoSet SG(request_info).path_translated to the path of the main script.
Sascha Schumann [Tue, 29 Aug 2000 15:09:44 +0000 (15:09 +0000)]
Set SG(request_info).path_translated to the path of the main script.

24 years agofix var_dump()s "}"-indention
Thies C. Arntzen [Tue, 29 Aug 2000 11:09:20 +0000 (11:09 +0000)]
fix var_dump()s "}"-indention

24 years ago@Added PHP API for Zend's ticks
Stig Bakken [Tue, 29 Aug 2000 09:18:48 +0000 (09:18 +0000)]
@Added PHP API for Zend's ticks
Added PHP API for registering tick functions.  Ticks is a per-instruction
callback in Zend that allows us to implement cooperative multitasking
within PHP.  Example:

In extension code:

php_add_tick_function(my_tick_func);

void my_tick_func(int count) {
    php_printf("[tick %d]", count);
}

In PHP code:
<?php

declare(ticks = 1) {
    print "there should be two ticks here.\n";
}

?>

24 years ago* Added "test" make target so you can do "make test" in any directory.
Stig Bakken [Tue, 29 Aug 2000 09:12:44 +0000 (09:12 +0000)]
* Added "test" make target so you can do "make test" in any directory.
* Added copyright header to run-test.php

24 years agoAll (three) current DB tests pass.
Stig Bakken [Tue, 29 Aug 2000 09:10:44 +0000 (09:10 +0000)]
All (three) current DB tests pass.

24 years agoAdd reflect.java to the list of java classes to be compiled
Sam Ruby [Tue, 29 Aug 2000 01:42:58 +0000 (01:42 +0000)]
Add reflect.java to the list of java classes to be compiled

24 years agoChangeLog update
<changelog@php.net> [Tue, 29 Aug 2000 01:09:05 +0000 (01:09 +0000)]
ChangeLog update

24 years ago* renamed toString method to __string_value
Stig Bakken [Mon, 28 Aug 2000 23:09:36 +0000 (23:09 +0000)]
* renamed toString method to __string_value

24 years ago- Change spaces to tab
Andi Gutmans [Mon, 28 Aug 2000 19:31:56 +0000 (19:31 +0000)]
- Change spaces to tab

24 years ago- updated on new zend_api
Uwe Steinmann [Mon, 28 Aug 2000 15:19:23 +0000 (15:19 +0000)]
- updated on new zend_api

24 years ago- fixed prototyp
Uwe Steinmann [Mon, 28 Aug 2000 13:04:40 +0000 (13:04 +0000)]
- fixed prototyp

24 years agoMissed a couple of center attributes
Rasmus Lerdorf [Mon, 28 Aug 2000 09:01:54 +0000 (09:01 +0000)]
Missed a couple of center attributes

24 years agoI said I had not _tested_ this on windows, didn't I? :-)
Stig Bakken [Mon, 28 Aug 2000 07:03:51 +0000 (07:03 +0000)]
I said I had not _tested_ this on windows, didn't I? :-)

24 years agoChangeLog update
<changelog@php.net> [Mon, 28 Aug 2000 01:09:08 +0000 (01:09 +0000)]
ChangeLog update

24 years agoNEWS update
<changelog@php.net> [Mon, 28 Aug 2000 01:09:05 +0000 (01:09 +0000)]
NEWS update

24 years agoFix up the implementation.
Sterling Hughes [Sun, 27 Aug 2000 22:53:33 +0000 (22:53 +0000)]
Fix up the implementation.

# it was getting hacky already.

24 years agoSome minor cleanup to make W3C's tidy validator happy
Rasmus Lerdorf [Sun, 27 Aug 2000 22:46:40 +0000 (22:46 +0000)]
Some minor cleanup to make W3C's tidy validator happy

24 years agoCompute absolute path to script
Sascha Schumann [Sun, 27 Aug 2000 20:53:10 +0000 (20:53 +0000)]
Compute absolute path to script

24 years agosizeof(old_cwd) evaluated to sizeof(char *) after last commit, so old_cwd
Sascha Schumann [Sun, 27 Aug 2000 20:51:30 +0000 (20:51 +0000)]
sizeof(old_cwd) evaluated to sizeof(char *) after last commit, so old_cwd
was not set correctly.

24 years ago- Use do_alloca()/free_alloca() for old_cwd. This will ensure speed in
Andi Gutmans [Sun, 27 Aug 2000 19:56:22 +0000 (19:56 +0000)]
- Use do_alloca()/free_alloca() for old_cwd. This will ensure speed in
- non-ISAPI environments but in ISAPI will use emalloc()/efree() to save
- stack space. MS only gives us 10KB those bastards.

24 years ago- Reverting Sascha's patch although I don't like doing these kind of things
Andi Gutmans [Sun, 27 Aug 2000 19:51:50 +0000 (19:51 +0000)]
- Reverting Sascha's patch although I don't like doing these kind of things
- but as it is Sascha who has reverted a zillion patches I don't feel that
- bad about it :)
- The patch is morally incorrect and it actually also has a crash bug which
- I won't point out because it shouldn't be there.
- SG(path_translated) should be set by the SAPI module correctly and if it
- isn't the SAPI module should be fixed and not add code to PHP. There is
- enough special case code in PHP and I would like to clean it up and not
- add more.
- Last but not least, old_cwd takes 4KB of stack space. We should probably
- malloc() it because in ISAPI we only have 10KB of stack space.

24 years agoundid the undoing of Sascha's last commit
Stig Bakken [Sun, 27 Aug 2000 19:49:15 +0000 (19:49 +0000)]
undid the undoing of Sascha's last commit

24 years ago@PHP 3 regression testing framework re-born (Stig)
Stig Bakken [Sun, 27 Aug 2000 19:46:06 +0000 (19:46 +0000)]
@PHP 3 regression testing framework re-born (Stig)
Took the old PHP 3 regression testing framework and rewrote it in PHP.
Should work on both Windows and UNIX, however I have not tested it on
Windows.  See tests/README for how to write tests.  Added the PHP 3
tests and converted most of them.

24 years ago@Added php_uname() function (Stig)
Stig Bakken [Sun, 27 Aug 2000 19:42:45 +0000 (19:42 +0000)]
@Added php_uname() function (Stig)
Added php_uname() function.

24 years agoInitializing new_path once is enough
Sascha Schumann [Sun, 27 Aug 2000 19:40:21 +0000 (19:40 +0000)]
Initializing new_path once is enough

24 years agoIf a SAPI module does not pass an absolute path as primary_file to
Sascha Schumann [Sun, 27 Aug 2000 19:38:18 +0000 (19:38 +0000)]
If a SAPI module does not pass an absolute path as primary_file to
php_execute_script(), we will now change the filename to point to
the absolute path.

24 years agoExport IS_ABSOLUTE_PATH to the outside world.
Sascha Schumann [Sun, 27 Aug 2000 19:36:35 +0000 (19:36 +0000)]
Export IS_ABSOLUTE_PATH to the outside world.

24 years agoReal fix for this rule.
Sascha Schumann [Sun, 27 Aug 2000 19:32:28 +0000 (19:32 +0000)]
Real fix for this rule.

24 years ago- This should be more efficient.
Andi Gutmans [Sun, 27 Aug 2000 19:20:53 +0000 (19:20 +0000)]
- This should be more efficient.
- Post 4.0.2 it's time to move the whole opened_path and virtual stuff
- to emalloc() and friends including some alloca() improvements where
- possible but I don't want to break anything before

24 years agoFix internal_functions.c rule. This should also work better with BSD make's
Sascha Schumann [Sun, 27 Aug 2000 18:54:28 +0000 (18:54 +0000)]
Fix internal_functions.c rule. This should also work better with BSD make's
VPATH support.

24 years ago- Remove some unused stuff.
Andi Gutmans [Sun, 27 Aug 2000 18:27:37 +0000 (18:27 +0000)]
- Remove some unused stuff.

24 years ago- Test commit msg. This is Andi and it seems to come from Zeev.
Andi Gutmans [Sun, 27 Aug 2000 18:18:34 +0000 (18:18 +0000)]
- Test commit msg. This is Andi and it seems to come from Zeev.

24 years ago- Forgot to fix non-ZTS CHDIR_FILE macro
Zeev Suraski [Sun, 27 Aug 2000 18:06:12 +0000 (18:06 +0000)]
- Forgot to fix non-ZTS CHDIR_FILE macro

24 years ago- Try and fix problem with opening wrong file.
Andi Gutmans [Sun, 27 Aug 2000 18:01:17 +0000 (18:01 +0000)]
- Try and fix problem with opening wrong file.

24 years agoTaking responsibility for the IMAP and MCAL extensions, so there's at least
Chuck Hagenbuch [Sun, 27 Aug 2000 17:08:06 +0000 (17:08 +0000)]
Taking responsibility for the IMAP and MCAL extensions, so there's at least
a point of contact.

24 years agofixing the license header and updating some prototypes/variable names in the
Chuck Hagenbuch [Sun, 27 Aug 2000 17:05:53 +0000 (17:05 +0000)]
fixing the license header and updating some prototypes/variable names in the
mcal extension.

24 years agoFix install-local-data target in VPATH mode. PEAR.php is generated and
Sascha Schumann [Sun, 27 Aug 2000 11:10:38 +0000 (11:10 +0000)]
Fix install-local-data target in VPATH mode. PEAR.php is generated and
stored in builddir.

24 years agoRemove obsolete note about Makefile.am
Sascha Schumann [Sun, 27 Aug 2000 10:05:23 +0000 (10:05 +0000)]
Remove obsolete note about Makefile.am

24 years agoFix strlcpy use at this place.
Sascha Schumann [Sun, 27 Aug 2000 09:48:03 +0000 (09:48 +0000)]
Fix strlcpy use at this place.

24 years agoRefine PHP_STRLCPY comment
Sascha Schumann [Sun, 27 Aug 2000 09:38:33 +0000 (09:38 +0000)]
Refine PHP_STRLCPY comment

24 years agonewtype has a length of newlen+1, 'len' refers to the length of *mimetype
Sascha Schumann [Sun, 27 Aug 2000 09:32:23 +0000 (09:32 +0000)]
newtype has a length of newlen+1, 'len' refers to the length of *mimetype
here.

24 years agoAdd PHP_STRLCPY macro. This macro should be used in new code instead of
Sascha Schumann [Sun, 27 Aug 2000 09:30:15 +0000 (09:30 +0000)]
Add PHP_STRLCPY macro. This macro should be used in new code instead of
strlcpy/strlcat which are intended for fixing broken code.

24 years ago- Fix possible overflow in fsockopen().
Andi Gutmans [Sun, 27 Aug 2000 04:14:47 +0000 (04:14 +0000)]
- Fix possible overflow in fsockopen().

24 years agoChangeLog update
<changelog@php.net> [Sun, 27 Aug 2000 01:09:07 +0000 (01:09 +0000)]
ChangeLog update

24 years agoupdated with cybercash and dotnet
Daniel Beulshausen [Sat, 26 Aug 2000 20:40:11 +0000 (20:40 +0000)]
updated with cybercash and dotnet

24 years agoadded sam's readme and played with the directory's
Daniel Beulshausen [Sat, 26 Aug 2000 20:27:06 +0000 (20:27 +0000)]
added sam's readme and played with the directory's

24 years agodsp for cybercash
Daniel Beulshausen [Sat, 26 Aug 2000 20:11:31 +0000 (20:11 +0000)]
dsp for cybercash

24 years agoNews about ldap.c change to allow building with OpenLDAP 2.0
Stig Venaas [Sat, 26 Aug 2000 17:02:24 +0000 (17:02 +0000)]
News about ldap.c change to allow building with OpenLDAP 2.0

24 years agoMakes it work with OpenLDAP 2.0 and reduces number of ifdefs
Stig Venaas [Sat, 26 Aug 2000 16:20:37 +0000 (16:20 +0000)]
Makes it work with OpenLDAP 2.0 and reduces number of ifdefs

24 years ago- Don't define this function in non-debug mode
Andi Gutmans [Sat, 26 Aug 2000 14:45:29 +0000 (14:45 +0000)]
- Don't define this function in non-debug mode

24 years agoAdvise people to use error logging instead of error displaying on production web...
Zeev Suraski [Sat, 26 Aug 2000 14:25:47 +0000 (14:25 +0000)]
Advise people to use error logging instead of error displaying on production web sites

24 years ago- Also change constants. Note: PHP tries to make names intuitive.
Andi Gutmans [Sat, 26 Aug 2000 14:24:33 +0000 (14:24 +0000)]
- Also change constants. Note: PHP tries to make names intuitive.
- PHP extensions don't necessarily need to use the exact C counter part, it
- should be easy to read and not be short names such as II_*

24 years ago- Asked the author a long time already to change the function names to
Andi Gutmans [Sat, 26 Aug 2000 14:21:26 +0000 (14:21 +0000)]
- Asked the author a long time already to change the function names to
- something which won't take up all of the ii_* names (not verbose enough).
- I'm doing it myself now so it really has to be checked as I can't compile.
- Changed both the function names and INI parameter names.

24 years agomkdep.perl was replaced by mkdep.awk
Sascha Schumann [Sat, 26 Aug 2000 14:08:03 +0000 (14:08 +0000)]
mkdep.perl was replaced by mkdep.awk

24 years agoAdd ***EXPERIMENTAL*** Zend OO Extension support for Microsoft.Net
Sam Ruby [Sat, 26 Aug 2000 12:53:14 +0000 (12:53 +0000)]
Add ***EXPERIMENTAL*** Zend OO Extension support for Microsoft.Net

24 years agoChangeLog update
<changelog@php.net> [Sat, 26 Aug 2000 01:09:10 +0000 (01:09 +0000)]
ChangeLog update

24 years agoNEWS update
<changelog@php.net> [Sat, 26 Aug 2000 01:09:07 +0000 (01:09 +0000)]
NEWS update

24 years agoadded the ifx (informix) extension
Daniel Beulshausen [Fri, 25 Aug 2000 21:46:01 +0000 (21:46 +0000)]
added the ifx (informix) extension

24 years agoupdated dsp to build with custom build step
Daniel Beulshausen [Fri, 25 Aug 2000 21:43:01 +0000 (21:43 +0000)]
updated dsp to build with custom build step

24 years agolets keep it in one dsp
Daniel Beulshausen [Fri, 25 Aug 2000 21:42:15 +0000 (21:42 +0000)]
lets keep it in one dsp

24 years agoCopyright modification.
Hénot David [Fri, 25 Aug 2000 15:56:41 +0000 (15:56 +0000)]
Copyright modification.

24 years ago@- Fixed a bug in preg_replace() that would truncate subject string if the
Andrei Zmievski [Fri, 25 Aug 2000 13:51:07 +0000 (13:51 +0000)]
@- Fixed a bug in preg_replace() that would truncate subject string if the
@  first argument was en empty array. (Andrei)
This fixes bug #6346, that would truncate subject string if the
first argument was en empty array.

24 years agoUse request_uri as PHP_SELF. decodedurl also includes the query string.
Sascha Schumann [Fri, 25 Aug 2000 10:00:48 +0000 (10:00 +0000)]
Use request_uri as PHP_SELF. decodedurl also includes the query string.

24 years agoUse SAPI' register_server_variables hook.
Sascha Schumann [Fri, 25 Aug 2000 09:59:38 +0000 (09:59 +0000)]
Use SAPI' register_server_variables hook.

Defines PHP_SELF now.

24 years agophp_register_variables(.. ELS_CC ..)
Sascha Schumann [Fri, 25 Aug 2000 09:15:00 +0000 (09:15 +0000)]
php_register_variables(.. ELS_CC ..)

24 years agoAdd dummy depend: target
Sascha Schumann [Fri, 25 Aug 2000 09:04:51 +0000 (09:04 +0000)]
Add dummy depend: target

24 years agoMake proper use of SAPI's register_environment functionality.
Sascha Schumann [Fri, 25 Aug 2000 08:46:32 +0000 (08:46 +0000)]
Make proper use of SAPI's register_environment functionality.

24 years agoChangeLog update
<changelog@php.net> [Fri, 25 Aug 2000 08:15:41 +0000 (08:15 +0000)]
ChangeLog update

24 years agoAdd autoconf check for awk and use proper macro $(AWK)
Sascha Schumann [Fri, 25 Aug 2000 08:15:10 +0000 (08:15 +0000)]
Add autoconf check for awk and use proper macro $(AWK)

24 years agoNEWS update
<changelog@php.net> [Fri, 25 Aug 2000 08:15:05 +0000 (08:15 +0000)]
NEWS update

24 years agoAdd new depend rule to rules_pear.mk and install mkdep.awk.
Sascha Schumann [Fri, 25 Aug 2000 07:22:05 +0000 (07:22 +0000)]
Add new depend rule to rules_pear.mk and install mkdep.awk.

24 years agoRemove old .cvsignore file
Sascha Schumann [Fri, 25 Aug 2000 07:21:44 +0000 (07:21 +0000)]
Remove old .cvsignore file

24 years ago@Added ob_get_length function (Stig)
Stig Bakken [Fri, 25 Aug 2000 03:10:42 +0000 (03:10 +0000)]
@Added ob_get_length function (Stig)
Added ob_get_length() function (returns size of buffer)

24 years agocompile fix (RedHat 6.2)
Stig Bakken [Fri, 25 Aug 2000 03:08:37 +0000 (03:08 +0000)]
compile fix (RedHat 6.2)

24 years agoprefer -gt to -lt, and dropped the version number to 2 instead of 3
Dan Kalowsky [Thu, 24 Aug 2000 19:27:21 +0000 (19:27 +0000)]
prefer -gt to -lt, and dropped the version number to 2 instead of 3

24 years agoDon't distribute buildmk.stamp to the end user. Otherwise, buildcheck.sh
Sascha Schumann [Thu, 24 Aug 2000 19:23:11 +0000 (19:23 +0000)]
Don't distribute buildmk.stamp to the end user. Otherwise, buildcheck.sh
won't be run on the user's system, when they try to use buildconf.

24 years ago- Revert patch from 9/7/2000 which seems to have broken unset().
Andi Gutmans [Thu, 24 Aug 2000 19:03:35 +0000 (19:03 +0000)]
- Revert patch from 9/7/2000 which seems to have broken unset().
- I hope what made me do this patch doesn't appear again.

24 years agoUpdate .dsp
Zeev Suraski [Thu, 24 Aug 2000 18:58:50 +0000 (18:58 +0000)]
Update .dsp

24 years ago- Fix IMAP build problem
Zeev Suraski [Thu, 24 Aug 2000 18:49:49 +0000 (18:49 +0000)]
- Fix IMAP build problem
- Allow external DLLs to use warn_not_available

24 years agoRemove bogus commit that made DB::DB() an alias for DB::connect()
Sterling Hughes [Thu, 24 Aug 2000 18:18:49 +0000 (18:18 +0000)]
Remove bogus commit that made DB::DB() an alias for DB::connect()

24 years agoupdated dsw with fdf and gd
Daniel Beulshausen [Thu, 24 Aug 2000 18:18:05 +0000 (18:18 +0000)]
updated dsw with fdf and gd

24 years agoadded the gd extension - see the comment!
Daniel Beulshausen [Thu, 24 Aug 2000 18:14:42 +0000 (18:14 +0000)]
added the gd extension - see the comment!
# configuring the gd extesion is currently a mess.
# currently its configured with jpg, wbmp, png and ttf
# maybe we should think about moving that stuff to the
# config.w32.h or to a seperate gdwin32 header

24 years agodsp for the win32 fdf extension
Daniel Beulshausen [Thu, 24 Aug 2000 17:56:38 +0000 (17:56 +0000)]
dsp for the win32 fdf extension

24 years agodeleted a few unnecceasary defines and added the Release_TS_Inline path to the libpath
Daniel Beulshausen [Thu, 24 Aug 2000 17:48:30 +0000 (17:48 +0000)]
deleted a few unnecceasary defines and added the Release_TS_Inline path to the libpath

24 years agoAndi's suggestion.
Andrei Zmievski [Thu, 24 Aug 2000 17:09:26 +0000 (17:09 +0000)]
Andi's suggestion.

24 years agobeautify
Thies C. Arntzen [Thu, 24 Aug 2000 15:29:50 +0000 (15:29 +0000)]
beautify

24 years agoFix segfault on readline without parameters
Stanislav Malyshev [Thu, 24 Aug 2000 14:41:12 +0000 (14:41 +0000)]
Fix segfault on readline without parameters

24 years agoMore complete set of (C) notes
Sascha Schumann [Thu, 24 Aug 2000 14:29:29 +0000 (14:29 +0000)]
More complete set of (C) notes

24 years agoScript for replacing the copyright messages
Sascha Schumann [Thu, 24 Aug 2000 14:18:36 +0000 (14:18 +0000)]
Script for replacing the copyright messages

24 years agoThese scripts are not in use anymore. RIP.
Sascha Schumann [Thu, 24 Aug 2000 13:26:58 +0000 (13:26 +0000)]
These scripts are not in use anymore. RIP.

24 years ago@- Fixed a bug that did not respect limit parameter in preg_replace() when
Andrei Zmievski [Thu, 24 Aug 2000 13:23:13 +0000 (13:23 +0000)]
@- Fixed a bug that did not respect limit parameter in preg_replace() when
@  using /e modifier. (Andrei)

24 years agobuilddir is used by the Unix build framework.
Sascha Schumann [Thu, 24 Aug 2000 12:02:05 +0000 (12:02 +0000)]
builddir is used by the Unix build framework.

Rename builddir to phpbuilddir

24 years agoSmall speedup
Sascha Schumann [Thu, 24 Aug 2000 11:56:54 +0000 (11:56 +0000)]
Small speedup