| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | make snprintf and f,g,G converions of snprintf/spprintf C99 complient | Marcus Boerger | 2002-08-21 | 1 | -14/+21 |
| | | |||||
| * | Ignore double_buffering for ob_start(). | Marcus Boerger | 2002-08-21 | 1 | -1/+1 |
| | | |||||
| * | Revert ob_start() defaults to 40K/10K until i find a better solution. | Marcus Boerger | 2002-08-20 | 1 | -2/+9 |
| | | |||||
| * | Fix newly introduced leak in the debug build. | Wez Furlong | 2002-08-20 | 1 | -2/+8 |
| | | |||||
| * | Implement filter API for streams. | Wez Furlong | 2002-08-20 | 2 | -22/+262 |
| | | | | | | | | | | | | | | | | | | | Filters can be stacked onto a stream; more details will follow in docs and on php-dev. Implement "string.rot13" filter Allows the following script: $fp = fopen("file.txt", "r"); stream_filter_prepend($fp, "string.rot13"); // File contents will be subject to a rot13 transformation before // being output. fpassthru($fp); fclose($fp); | ||||
| * | Changed handling of output buffer sizes. | Marcus Boerger | 2002-08-20 | 4 | -15/+54 |
| | | | | | | | @Added php.ini option "double_buffering" that forces an additional first @output buffer and improved handling of buffer sizes. (Marcus) | ||||
| * | Remove php_stream_sock_set_blocking and replace with | Wez Furlong | 2002-08-19 | 4 | -28/+112 |
| | | | | | | | | | | | | php_stream_set_option which can be used in a similar way as ioctl() to set options for streams. Current options include buffering and blocking support. o Buffer control is support for stdio based streams. o Blocking/non-blocking is supported for stdio and socket based streams. | ||||
| * | Fix a few warnings | Zeev Suraski | 2002-08-19 | 2 | -4/+4 |
| | | |||||
| * | -use of php_error_docref | Marcus Boerger | 2002-08-19 | 1 | -19/+15 |
| | | | | | | -some more information in ob_get_status() | ||||
| * | -allow changing html_errors any time changing display_errors is already | Marcus Boerger | 2002-08-19 | 1 | -5/+10 |
| | | | | | | | | -use sizeof for strftime call -removed unused #define -mention CODING_STANDARDS as documentation | ||||
| * | Added --enable-ipv6 and only look up AAAA in DNS when enabled | Stig Venaas | 2002-08-17 | 1 | -0/+4 |
| | | |||||
| * | IE does not use quotes but now we are safe... | Stefan Esser | 2002-08-17 | 1 | -9/+8 |
| | | |||||
| * | fixed the user supplied patch for bug #18792 | Stefan Esser | 2002-08-17 | 1 | -4/+7 |
| | | |||||
| * | Fix for bug #18792 submitted by t.bubeck@reinform.de | Dan Kalowsky | 2002-08-16 | 1 | -1/+6 |
| | | | | | | | # talked this over with sterling and he believes it shouldn't break anything # although there might be a need/desire to check for both ',' and ';' | ||||
| * | Fix a little leak. | Wez Furlong | 2002-08-16 | 1 | -0/+4 |
| | | |||||
| * | Enhance Ilia's recent patch to query the wrapper subsystem to determine | Wez Furlong | 2002-08-16 | 3 | -13/+22 |
| | | | | | | if a filename is a URL and thus if safe-mode checks should be skipped. | ||||
| * | Make https:// be exempt from safe_mode checks, just like http:// & ftp:// are. | Ilia Alshanetsky | 2002-08-16 | 1 | -1/+1 |
| | | |||||
| * | silencing some windows build warnings | Dan Kalowsky | 2002-08-15 | 1 | -1/+1 |
| | | |||||
| * | Correcting as per discussion with Iliaa and Edin on efnet://#php.bugs | Dan Kalowsky | 2002-08-13 | 1 | -1/+2 |
| | | |||||
| * | Bug Fix #16113, as reflective of a php-dev convo between wez and iliaa | Dan Kalowsky | 2002-08-13 | 1 | -1/+1 |
| | | |||||
| * | allow target anchor only for docref parameter | Marcus Boerger | 2002-08-13 | 1 | -0/+4 |
| | | |||||
| * | bool not boolean | Rasmus Lerdorf | 2002-08-13 | 1 | -1/+1 |
| | | |||||
| * | Use int, not integer. | Rasmus Lerdorf | 2002-08-13 | 1 | -1/+1 |
| | | |||||
| * | fix for extension = "" | Marcus Boerger | 2002-08-12 | 2 | -0/+3 |
| | | | | | | make php_verror available | ||||
| * | increase allocation chunks | Marcus Boerger | 2002-08-12 | 1 | -1/+1 |
| | | |||||
| * | Export spprintf() so that extension can link properly on win32. | Edin Kadribasic | 2002-08-12 | 2 | -2/+2 |
| | | |||||
| * | Minor cleanups to path building and php*.ini search logic. | Preston L. Bannister | 2002-08-12 | 1 | -13/+32 |
| | | | | | | Made path_seperator string static (which solves the lookup problems Sebastian saw). | ||||
| * | Properly implement TSRM parameters to the new log_error | Wez Furlong | 2002-08-11 | 1 | -0/+2 |
| | | | | | | | function... (Thanks Marcus!) Add a convenience macro for importing a stream from a zval. | ||||
| * | More verbosity when activating SSL on a socket fails. | Wez Furlong | 2002-08-11 | 1 | -2/+8 |
| | | |||||
| * | Introduce an error stack for wrappers, to help prevent multiple errors | Wez Furlong | 2002-08-11 | 2 | -7/+79 |
| | | | | | | | | | and warnings (some of which are bogus) when there are problems opening streams. Implement sanity check on the mode used to open ftp and http connections. This fixes Bug 12004. | ||||
| * | Minor fix for html_errors=on in php_error_docref. | Wez Furlong | 2002-08-11 | 1 | -1/+1 |
| | | |||||
| * | remove obsolete TSRMLS_FETCH | Wez Furlong | 2002-08-10 | 1 | -1/+0 |
| | | |||||
| * | corrected handling of internal output buffers | Marcus Boerger | 2002-08-10 | 1 | -7/+9 |
| | | | | | | minor fixs | ||||
| * | Fix ZTS builds. | Sebastian Bergmann | 2002-08-10 | 1 | -2/+2 |
| | | |||||
| * | Improved handling of output buffers (see news)\n#No trim for the string ↵ | Marcus Boerger | 2002-08-09 | 3 | -65/+151 |
| | | | | | parameter... | ||||
| * | docref shall either be NULL or a reference to a manual page without an | Marcus Boerger | 2002-08-09 | 1 | -5/+35 |
| | | | | | | extension or an external reference starting with 'http://'. | ||||
| * | Centralize some blocking socket related code. | Wez Furlong | 2002-08-09 | 1 | -6/+49 |
| | | | | | | # It's been a while since I wrote this! | ||||
| * | @Copy() fixed to return 1 on 0 byte files. Patch by Ilia A <ilia@prohost.org>. | James Cox | 2002-08-09 | 1 | -0/+6 |
| | | |||||
| * | No missleading | Marcus Boerger | 2002-08-08 | 1 | -4/+5 |
| | | |||||
| * | Say FIXME to non function calls and non TSRM builds. Both will currentls | Marcus Boerger | 2002-08-08 | 1 | -5/+10 |
| | | | | | | not show a default reference. | ||||
| * | rename php_error_func<n> to php_error_docref and support Wez idea | Marcus Boerger | 2002-08-08 | 3 | -30/+45 |
| | | | | | | that solves ToDo requirement to point to PHP Manual in error messages. | ||||
| * | A full hard disk is no reason to leak memory... | Stefan Esser | 2002-08-08 | 1 | -0/+2 |
| | | |||||
| * | Add some assertion | Yasuo Ohgaki | 2002-08-08 | 1 | -1/+4 |
| | | |||||
| * | -new functions php_error_func<0> to support unified error messages | Marcus Boerger | 2002-08-07 | 2 | -1/+67 |
| | | | | | | #read followup | ||||
| * | Added php_ob_handler_used to check if a specific output handler is used | Marcus Boerger | 2002-08-05 | 2 | -0/+35 |
| | | | | | | in c. | ||||
| * | -keep mimetype until sapi deactivation | Marcus Boerger | 2002-08-05 | 1 | -12/+12 |
| | | | | | | -move NULL check for sapi_apply_default_charset to proper position. | ||||
| * | -New function ob_list_handlers | Marcus Boerger | 2002-08-05 | 2 | -0/+37 |
| | | | | | | | @- Added ob_list_handlers() which returns an array of all active output @ handlers. (marcus) | ||||
| * | Yup, sizeof() includes the space for the \0 | Rasmus Lerdorf | 2002-08-03 | 1 | -1/+1 |
| | | |||||
| * | -use const to clarify code | Marcus Boerger | 2002-08-02 | 1 | -2/+2 |
| | | | | | | -fix tsrmls build (therefore rfc1867.c) | ||||
| * | made sapi_register_treat_data() to support multibyte input encoding ↵ | Rui Hirokawa | 2002-08-02 | 7 | -14/+27 |
| | | | | | translation without MBSTR_ENC_TRANS and changed php_treat_data to php_default_treat_data. | ||||
