Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | This commit was manufactured by cvs2svn to create tag 'php_4_0_2'.php-4.0.2 | SVN Migration | 2000-08-29 | 4 | -560/+0 |
| | |||||
* | - To configure with ingres should be --with-ingres and not --with-ii | Andi Gutmans | 2000-08-29 | 2 | -3/+3 |
| | | | | | | - Changing it for 4.0.2 so that we don't have backwards compatibility - problems later on | ||||
* | - Close NEWS file for release. | Andi Gutmans | 2000-08-29 | 1 | -1/+1 |
| | |||||
* | Go 4.0.2 | Zeev Suraski | 2000-08-29 | 2 | -2/+2 |
| | |||||
* | - Update Zend version. | Andi Gutmans | 2000-08-29 | 1 | -1/+1 |
| | |||||
* | Set SG(request_info).path_translated to the path of the main script. | Sascha Schumann | 2000-08-29 | 1 | -17/+15 |
| | |||||
* | fix var_dump()s "}"-indention | Thies C. Arntzen | 2000-08-29 | 1 | -1/+1 |
| | |||||
* | @Added PHP API for Zend's ticks | Stig Bakken | 2000-08-29 | 3 | -17/+13 |
| | | | | | | | | | | | | | | | | | | | | | | | | 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"; } ?> | ||||
* | * Added "test" make target so you can do "make test" in any directory. | Stig Bakken | 2000-08-29 | 4 | -2/+25 |
| | | | | | * Added copyright header to run-test.php | ||||
* | All (three) current DB tests pass. | Stig Bakken | 2000-08-29 | 4 | -49/+41 |
| | |||||
* | Add reflect.java to the list of java classes to be compiled | Sam Ruby | 2000-08-29 | 1 | -0/+4 |
| | |||||
* | ChangeLog update | 2000-08-29 | 1 | -0/+30 | |
| | |||||
* | * renamed toString method to __string_value | Stig Bakken | 2000-08-28 | 2 | -6/+8 |
| | |||||
* | - Change spaces to tab | Andi Gutmans | 2000-08-28 | 1 | -1/+1 |
| | |||||
* | - updated on new zend_api | Uwe Steinmann | 2000-08-28 | 1 | -551/+551 |
| | |||||
* | - fixed prototyp | Uwe Steinmann | 2000-08-28 | 1 | -1/+1 |
| | |||||
* | Missed a couple of center attributes | Rasmus Lerdorf | 2000-08-28 | 2 | -2/+2 |
| | |||||
* | I said I had not _tested_ this on windows, didn't I? :-) | Stig Bakken | 2000-08-28 | 2 | -0/+0 |
| | |||||
* | ChangeLog update | 2000-08-28 | 1 | -0/+233 | |
| | |||||
* | NEWS update | 2000-08-28 | 1 | -0/+2 | |
| | |||||
* | Fix up the implementation. | Sterling Hughes | 2000-08-27 | 2 | -109/+91 |
| | | | | | # it was getting hacky already. | ||||
* | Some minor cleanup to make W3C's tidy validator happy | Rasmus Lerdorf | 2000-08-27 | 2 | -20/+17 |
| | |||||
* | Compute absolute path to script | Sascha Schumann | 2000-08-27 | 1 | -1/+7 |
| | |||||
* | sizeof(old_cwd) evaluated to sizeof(char *) after last commit, so old_cwd | Sascha Schumann | 2000-08-27 | 1 | -3/+3 |
| | | | | | was not set correctly. | ||||
* | - Use do_alloca()/free_alloca() for old_cwd. This will ensure speed in | Andi Gutmans | 2000-08-27 | 1 | -2/+5 |
| | | | | | | - non-ISAPI environments but in ISAPI will use emalloc()/efree() to save - stack space. MS only gives us 10KB those bastards. | ||||
* | - Reverting Sascha's patch although I don't like doing these kind of things | Andi Gutmans | 2000-08-27 | 1 | -9/+1 |
| | | | | | | | | | | | | | | - 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. | ||||
* | undid the undoing of Sascha's last commit | Stig Bakken | 2000-08-27 | 1 | -1/+0 |
| | |||||
* | @PHP 3 regression testing framework re-born (Stig) | Stig Bakken | 2000-08-27 | 111 | -74/+18904 |
| | | | | | | | | 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. | ||||
* | @Added php_uname() function (Stig) | Stig Bakken | 2000-08-27 | 3 | -18/+36 |
| | | | | | Added php_uname() function. | ||||
* | Initializing new_path once is enough | Sascha Schumann | 2000-08-27 | 1 | -1/+1 |
| | |||||
* | If a SAPI module does not pass an absolute path as primary_file to | Sascha Schumann | 2000-08-27 | 1 | -1/+10 |
| | | | | | | php_execute_script(), we will now change the filename to point to the absolute path. | ||||
* | Export IS_ABSOLUTE_PATH to the outside world. | Sascha Schumann | 2000-08-27 | 2 | -11/+16 |
| | |||||
* | Real fix for this rule. | Sascha Schumann | 2000-08-27 | 1 | -1/+1 |
| | |||||
* | - This should be more efficient. | Andi Gutmans | 2000-08-27 | 1 | -2/+2 |
| | | | | | | | - 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 | ||||
* | Fix internal_functions.c rule. This should also work better with BSD make's | Sascha Schumann | 2000-08-27 | 1 | -2/+2 |
| | | | | | VPATH support. | ||||
* | - Remove some unused stuff. | Andi Gutmans | 2000-08-27 | 1 | -15/+0 |
| | |||||
* | - Test commit msg. This is Andi and it seems to come from Zeev. | Andi Gutmans | 2000-08-27 | 1 | -2/+4 |
| | |||||
* | - Forgot to fix non-ZTS CHDIR_FILE macro | Zeev Suraski | 2000-08-27 | 1 | -1/+1 |
| | |||||
* | - Try and fix problem with opening wrong file. | Andi Gutmans | 2000-08-27 | 5 | -16/+295 |
| | |||||
* | Taking responsibility for the IMAP and MCAL extensions, so there's at least | Chuck Hagenbuch | 2000-08-27 | 1 | -2/+4 |
| | | | | | a point of contact. | ||||
* | fixing the license header and updating some prototypes/variable names in the | Chuck Hagenbuch | 2000-08-27 | 1 | -29/+18 |
| | | | | | mcal extension. | ||||
* | Fix install-local-data target in VPATH mode. PEAR.php is generated and | Sascha Schumann | 2000-08-27 | 1 | -1/+4 |
| | | | | | stored in builddir. | ||||
* | Remove obsolete note about Makefile.am | Sascha Schumann | 2000-08-27 | 1 | -3/+0 |
| | |||||
* | Fix strlcpy use at this place. | Sascha Schumann | 2000-08-27 | 1 | -2/+2 |
| | |||||
* | Refine PHP_STRLCPY comment | Sascha Schumann | 2000-08-27 | 1 | -3/+3 |
| | |||||
* | newtype has a length of newlen+1, 'len' refers to the length of *mimetype | Sascha Schumann | 2000-08-27 | 1 | -2/+2 |
| | | | | | here. | ||||
* | Add PHP_STRLCPY macro. This macro should be used in new code instead of | Sascha Schumann | 2000-08-27 | 1 | -0/+21 |
| | | | | | strlcpy/strlcat which are intended for fixing broken code. | ||||
* | - Fix possible overflow in fsockopen(). | Andi Gutmans | 2000-08-27 | 1 | -2/+2 |
| | |||||
* | ChangeLog update | 2000-08-27 | 1 | -0/+52 | |
| | |||||
* | updated with cybercash and dotnet | Daniel Beulshausen | 2000-08-26 | 1 | -0/+24 |
| |