Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Happy New Year | Xinchen Hui | 2013-01-01 | 1 | -2/+2 |
| | |||||
* | - Year++ | Felipe Pena | 2012-01-01 | 1 | -2/+2 |
| | |||||
* | - Added missing PHP_FE_END/ZEND_FE_END | Felipe Pena | 2011-08-06 | 1 | -1/+1 |
| | |||||
* | - Year++ | Felipe Pena | 2011-01-01 | 1 | -2/+2 |
| | |||||
* | - Implemented FR #53271, FR #52410 (Building multiple PHP binary SAPIs and ↵ | Jani Taskinen | 2010-11-13 | 2 | -3/+8 |
| | | | | | | | one SAPI module the same time) # Bug #53271, Bug #52410 | ||||
* | * implement new output API, fixing some bugs and implementing some feature | Michael Wallner | 2010-05-31 | 1 | -7/+5 |
| | | | | | | | | | | | requests--let's see what I can dig out of the bugtracker for NEWS-- and while crossing the road: * implemented new zlib API * fixed up ext/tidy (what was "s&" in zend_parse_parameters() supposed to do?) Thanks to Jani and Felipe for pioneering. | ||||
* | - Reverted r296062 and r296065 | Jani Taskinen | 2010-03-12 | 1 | -6/+8 |
| | |||||
* | MFH: Improved / fixed output buffering (Michael Wallner) | Jani Taskinen | 2010-03-11 | 1 | -8/+6 |
| | |||||
* | - Fixed bug #51237 (milter SAPI crash on startup) | Felipe Pena | 2010-03-08 | 1 | -1/+11 |
| | | | | | patch by: igmar at palsenberg dot com | ||||
* | - Fix php-milter sample usage (-r option doesn't exists here) | Felipe Pena | 2010-03-08 | 1 | -2/+1 |
| | |||||
* | sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.php | Sebastian Bergmann | 2010-01-03 | 1 | -2/+2 |
| | |||||
* | MFH: Bump copyright year, 3 of 3. | Sebastian Bergmann | 2008-12-31 | 1 | -2/+2 |
| | |||||
* | - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macro | Felipe Pena | 2008-11-17 | 1 | -9/+0 |
| | |||||
* | - Revert ZEND_BEGIN_ARG_INFO change | Felipe Pena | 2008-11-02 | 1 | -0/+9 |
| | |||||
* | - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macro | Felipe Pena | 2008-10-24 | 1 | -9/+0 |
| | |||||
* | MFH | Jani Taskinen | 2008-08-13 | 1 | -7/+1 |
| | |||||
* | - Added arginfo | Felipe Pena | 2008-07-16 | 1 | -9/+60 |
| | |||||
* | Add new empty child terminate sapi hook to the rest of the sapis | Rasmus Lerdorf | 2008-03-18 | 1 | -0/+1 |
| | |||||
* | Implemented concept of "delayed early binding" that allows opcode caches to ↵ | Dmitry Stogov | 2008-03-18 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | perform class declaration (early and/or run-time binding) in exactly the same order as vanila php. The following pseudo-code explains how it should be used in opcode cache. function cache_compile_file($filename) { if (!is_cached($filename)) { ... orig_compiler_options = CG(compiler_optins); CG(compiler_options) |= ZEND_COMPILE_IGNORE_INTERNAL_CLASSES | ZEND_COMPILE_DELAYED_BINDING; $op_array = orig_compile_file($filename); CG(compiler_options) = orig_copiler_options; ... } else { $op_array = restore_from_cache($filename); } zend_do_delayed_early_binding($op_array); } | ||||
* | MFH: Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -2/+2 |
| | |||||
* | Improved memory usage by movig constants to read only memory. (Dmitry, Pierre) | Dmitry Stogov | 2007-09-27 | 1 | -1/+1 |
| | |||||
* | MFH: - Changed AC_ARG_* options to PHP_ARG_* options. | Jani Taskinen | 2007-07-11 | 1 | -11/+3 |
| | | | | | | | | | | | | MFH: - Some cleanups here and there MFH: - Enabled PHP_CHECK_CONFIGURE_OPTIONS (checks for unknown configure MFH: options) # Note to Marcus: ext/dba/config.m4 needs to be "converted" to use # the PHP_ARG_* options. I did't touch it needs quite a lot of work to keep # it's current behaviour regarding "enabled-by-default" parts of it. # # Hint: By using the PHP_ARG_* options you have the "default" option.. ;) | ||||
* | MFH:- Fixed bug #41576 (misbehaviour when using --without-apxs) | foobar | 2007-06-03 | 1 | -10/+11 |
| | |||||
* | MFH: fix #40392 (memory leaks in PHP milter SAPI) | Antony Dovgal | 2007-03-28 | 1 | -52/+77 |
| | |||||
* | use RETURN_* instead of RETVAL_* and fix #40083 | Antony Dovgal | 2007-01-10 | 1 | -14/+14 |
| | |||||
* | MFH: Bump year. | Sebastian Bergmann | 2007-01-01 | 1 | -2/+2 |
| | |||||
* | bump year and license version | foobar | 2006-01-01 | 1 | -4/+4 |
| | |||||
* | MFH: nuke php3 legacy | foobar | 2005-12-06 | 1 | -1/+1 |
| | |||||
* | - 2004 -> 2005 | foobar | 2005-08-03 | 1 | -2/+2 |
| | |||||
* | Add the new request_time sapi struct entry to all the sapis. Some of these | Rasmus Lerdorf | 2004-12-20 | 1 | -0/+1 |
| | | | | | | | may have ways of getting the request time without the extra syscall, but for now let's just make sure we don't crash and people will eventually fill these in where applicable. | ||||
* | C++ comments. | Ilia Alshanetsky | 2004-04-29 | 1 | -1/+1 |
| | |||||
* | - A belated happy holidays and PHP 5 | Andi Gutmans | 2004-01-08 | 1 | -3/+3 |
| | |||||
* | Aligned configure help texts. | foobar | 2003-10-03 | 1 | -1/+1 |
| | |||||
* | updating license information in the headers. | James Cox | 2003-06-10 | 1 | -3/+3 |
| | |||||
* | Bump year. | Sebastian Bergmann | 2002-12-31 | 1 | -2/+2 |
| | |||||
* | update todo | Harald Radi | 2002-12-08 | 1 | -0/+1 |
| | |||||
* | initial checkin | Harald Radi | 2002-12-08 | 1 | -0/+31 |
| | |||||
* | damn milter api: | Harald Radi | 2002-12-03 | 1 | -0/+1 |
| | | | | | | | | | | | "Furthermore, since there is not a one-to-one correspondence between threads and connections (N connections mapped onto M threads, M <= N), connection-specific data must be accessed through the handles provided by the Milter library." which in other words means php_request_startup() and the corresponding php_request_shutdown() will never be called for the same thread | ||||
* | fix typos and make example more useful | Harald Radi | 2002-12-03 | 1 | -4/+30 |
| | |||||
* | Correct the punctuation of these error messages. | Jon Parise | 2002-12-02 | 1 | -3/+3 |
| | |||||
* | example | Harald Radi | 2002-12-01 | 1 | -0/+106 |
| | |||||
* | rename callbacks to fit the original name | Harald Radi | 2002-12-01 | 1 | -3/+3 |
| | |||||
* | initial checkin | Harald Radi | 2002-12-01 | 1 | -0/+7 |
| | |||||
* | if the api functions are called, check if they're valid in that context | Harald Radi | 2002-12-01 | 2 | -96/+315 |
| | | | | | | | reopen file per request, so milter doesn't hang. PHPA or APC can be used to speed the milter up added a milter_init callback to init the milter before it is registered added protos to make sniper happy | ||||
* | first working version | Harald Radi | 2002-12-01 | 1 | -107/+106 |
| | |||||
* | check for libmilter path | Harald Radi | 2002-12-01 | 1 | -4/+6 |
| | |||||
* | no message | Harald Radi | 2002-12-01 | 1 | -2/+8 |
| | |||||
* | no message | Harald Radi | 2002-12-01 | 1 | -0/+1 |
| | |||||
* | Fix build | foobar | 2002-12-01 | 1 | -5/+4 |
| | |||||
* | it finally compiles now | Harald Radi | 2002-12-01 | 5 | -69/+232 |
| | | | | | tests will follow tomorrow |