summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'php_4_0_2'.php-4.0.2SVN Migration2000-08-294-560/+0
|
* - To configure with ingres should be --with-ingres and not --with-iiAndi Gutmans2000-08-292-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 Gutmans2000-08-291-1/+1
|
* Go 4.0.2Zeev Suraski2000-08-292-2/+2
|
* - Update Zend version.Andi Gutmans2000-08-291-1/+1
|
* Set SG(request_info).path_translated to the path of the main script.Sascha Schumann2000-08-291-17/+15
|
* fix var_dump()s "}"-indentionThies C. Arntzen2000-08-291-1/+1
|
* @Added PHP API for Zend's ticksStig Bakken2000-08-293-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 Bakken2000-08-294-2/+25
| | | | | * Added copyright header to run-test.php
* All (three) current DB tests pass.Stig Bakken2000-08-294-49/+41
|
* Add reflect.java to the list of java classes to be compiledSam Ruby2000-08-291-0/+4
|
* ChangeLog update2000-08-291-0/+30
|
* * renamed toString method to __string_valueStig Bakken2000-08-282-6/+8
|
* - Change spaces to tabAndi Gutmans2000-08-281-1/+1
|
* - updated on new zend_apiUwe Steinmann2000-08-281-551/+551
|
* - fixed prototypUwe Steinmann2000-08-281-1/+1
|
* Missed a couple of center attributesRasmus Lerdorf2000-08-282-2/+2
|
* I said I had not _tested_ this on windows, didn't I? :-)Stig Bakken2000-08-282-0/+0
|
* ChangeLog update2000-08-281-0/+233
|
* NEWS update2000-08-281-0/+2
|
* Fix up the implementation.Sterling Hughes2000-08-272-109/+91
| | | | | # it was getting hacky already.
* Some minor cleanup to make W3C's tidy validator happyRasmus Lerdorf2000-08-272-20/+17
|
* Compute absolute path to scriptSascha Schumann2000-08-271-1/+7
|
* sizeof(old_cwd) evaluated to sizeof(char *) after last commit, so old_cwdSascha Schumann2000-08-271-3/+3
| | | | | was not set correctly.
* - Use do_alloca()/free_alloca() for old_cwd. This will ensure speed inAndi Gutmans2000-08-271-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 thingsAndi Gutmans2000-08-271-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 commitStig Bakken2000-08-271-1/+0
|
* @PHP 3 regression testing framework re-born (Stig)Stig Bakken2000-08-27111-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 Bakken2000-08-273-18/+36
| | | | | Added php_uname() function.
* Initializing new_path once is enoughSascha Schumann2000-08-271-1/+1
|
* If a SAPI module does not pass an absolute path as primary_file toSascha Schumann2000-08-271-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 Schumann2000-08-272-11/+16
|
* Real fix for this rule.Sascha Schumann2000-08-271-1/+1
|
* - This should be more efficient.Andi Gutmans2000-08-271-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'sSascha Schumann2000-08-271-2/+2
| | | | | VPATH support.
* - Remove some unused stuff.Andi Gutmans2000-08-271-15/+0
|
* - Test commit msg. This is Andi and it seems to come from Zeev.Andi Gutmans2000-08-271-2/+4
|
* - Forgot to fix non-ZTS CHDIR_FILE macroZeev Suraski2000-08-271-1/+1
|
* - Try and fix problem with opening wrong file.Andi Gutmans2000-08-275-16/+295
|
* Taking responsibility for the IMAP and MCAL extensions, so there's at leastChuck Hagenbuch2000-08-271-2/+4
| | | | | a point of contact.
* fixing the license header and updating some prototypes/variable names in theChuck Hagenbuch2000-08-271-29/+18
| | | | | mcal extension.
* Fix install-local-data target in VPATH mode. PEAR.php is generated andSascha Schumann2000-08-271-1/+4
| | | | | stored in builddir.
* Remove obsolete note about Makefile.amSascha Schumann2000-08-271-3/+0
|
* Fix strlcpy use at this place.Sascha Schumann2000-08-271-2/+2
|
* Refine PHP_STRLCPY commentSascha Schumann2000-08-271-3/+3
|
* newtype has a length of newlen+1, 'len' refers to the length of *mimetypeSascha Schumann2000-08-271-2/+2
| | | | | here.
* Add PHP_STRLCPY macro. This macro should be used in new code instead ofSascha Schumann2000-08-271-0/+21
| | | | | strlcpy/strlcat which are intended for fixing broken code.
* - Fix possible overflow in fsockopen().Andi Gutmans2000-08-271-2/+2
|
* ChangeLog update2000-08-271-0/+52
|
* updated with cybercash and dotnetDaniel Beulshausen2000-08-261-0/+24
|