summaryrefslogtreecommitdiff
path: root/main
Commit message (Collapse)AuthorAgeFilesLines
* make snprintf and f,g,G converions of snprintf/spprintf C99 complientMarcus Boerger2002-08-211-14/+21
|
* Ignore double_buffering for ob_start().Marcus Boerger2002-08-211-1/+1
|
* Revert ob_start() defaults to 40K/10K until i find a better solution.Marcus Boerger2002-08-201-2/+9
|
* Fix newly introduced leak in the debug build.Wez Furlong2002-08-201-2/+8
|
* Implement filter API for streams.Wez Furlong2002-08-202-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 Boerger2002-08-204-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 withWez Furlong2002-08-194-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 warningsZeev Suraski2002-08-192-4/+4
|
* -use of php_error_docrefMarcus Boerger2002-08-191-19/+15
| | | | | -some more information in ob_get_status()
* -allow changing html_errors any time changing display_errors is alreadyMarcus Boerger2002-08-191-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 enabledStig Venaas2002-08-171-0/+4
|
* IE does not use quotes but now we are safe...Stefan Esser2002-08-171-9/+8
|
* fixed the user supplied patch for bug #18792Stefan Esser2002-08-171-4/+7
|
* Fix for bug #18792 submitted by t.bubeck@reinform.deDan Kalowsky2002-08-161-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 Furlong2002-08-161-0/+4
|
* Enhance Ilia's recent patch to query the wrapper subsystem to determineWez Furlong2002-08-163-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 Alshanetsky2002-08-161-1/+1
|
* silencing some windows build warningsDan Kalowsky2002-08-151-1/+1
|
* Correcting as per discussion with Iliaa and Edin on efnet://#php.bugsDan Kalowsky2002-08-131-1/+2
|
* Bug Fix #16113, as reflective of a php-dev convo between wez and iliaaDan Kalowsky2002-08-131-1/+1
|
* allow target anchor only for docref parameterMarcus Boerger2002-08-131-0/+4
|
* bool not booleanRasmus Lerdorf2002-08-131-1/+1
|
* Use int, not integer.Rasmus Lerdorf2002-08-131-1/+1
|
* fix for extension = ""Marcus Boerger2002-08-122-0/+3
| | | | | make php_verror available
* increase allocation chunksMarcus Boerger2002-08-121-1/+1
|
* Export spprintf() so that extension can link properly on win32.Edin Kadribasic2002-08-122-2/+2
|
* Minor cleanups to path building and php*.ini search logic.Preston L. Bannister2002-08-121-13/+32
| | | | | Made path_seperator string static (which solves the lookup problems Sebastian saw).
* Properly implement TSRM parameters to the new log_errorWez Furlong2002-08-111-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 Furlong2002-08-111-2/+8
|
* Introduce an error stack for wrappers, to help prevent multiple errorsWez Furlong2002-08-112-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 Furlong2002-08-111-1/+1
|
* remove obsolete TSRMLS_FETCHWez Furlong2002-08-101-1/+0
|
* corrected handling of internal output buffersMarcus Boerger2002-08-101-7/+9
| | | | | minor fixs
* Fix ZTS builds.Sebastian Bergmann2002-08-101-2/+2
|
* Improved handling of output buffers (see news)\n#No trim for the string ↵Marcus Boerger2002-08-093-65/+151
| | | | parameter...
* docref shall either be NULL or a reference to a manual page without anMarcus Boerger2002-08-091-5/+35
| | | | | extension or an external reference starting with 'http://'.
* Centralize some blocking socket related code.Wez Furlong2002-08-091-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 Cox2002-08-091-0/+6
|
* No missleadingMarcus Boerger2002-08-081-4/+5
|
* Say FIXME to non function calls and non TSRM builds. Both will currentlsMarcus Boerger2002-08-081-5/+10
| | | | | not show a default reference.
* rename php_error_func<n> to php_error_docref and support Wez ideaMarcus Boerger2002-08-083-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 Esser2002-08-081-0/+2
|
* Add some assertionYasuo Ohgaki2002-08-081-1/+4
|
* -new functions php_error_func<0> to support unified error messagesMarcus Boerger2002-08-072-1/+67
| | | | | #read followup
* Added php_ob_handler_used to check if a specific output handler is usedMarcus Boerger2002-08-052-0/+35
| | | | | in c.
* -keep mimetype until sapi deactivationMarcus Boerger2002-08-051-12/+12
| | | | | -move NULL check for sapi_apply_default_charset to proper position.
* -New function ob_list_handlersMarcus Boerger2002-08-052-0/+37
| | | | | | @- Added ob_list_handlers() which returns an array of all active output @ handlers. (marcus)
* Yup, sizeof() includes the space for the \0Rasmus Lerdorf2002-08-031-1/+1
|
* -use const to clarify codeMarcus Boerger2002-08-021-2/+2
| | | | | -fix tsrmls build (therefore rfc1867.c)
* made sapi_register_treat_data() to support multibyte input encoding ↵Rui Hirokawa2002-08-027-14/+27
| | | | translation without MBSTR_ENC_TRANS and changed php_treat_data to php_default_treat_data.