summaryrefslogtreecommitdiff
path: root/ext/zlib
Commit message (Collapse)AuthorAgeFilesLines
...
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-271-1/+1
|
* MFB: change run-tests.php to add %aNuno Lopes2007-09-142-11/+11
|
* Fixed testDmitry Stogov2007-06-181-2/+2
|
* Fixed testsDmitry Stogov2007-06-182-6/+3
|
* Fixed testDmitry Stogov2007-06-181-0/+1
|
* Fixed bug #41304 (compress.zlib temp files left)Dmitry Stogov2007-05-081-2/+2
|
* MFB: Sync with zlibEdin Kadribasic2007-04-291-16/+59
|
* Prevent double close() of the same file handleDmitry Stogov2007-04-261-1/+1
|
* - fixed bug #40325 (Vary: header missing in gzip output handlers); no MFHMichael Wallner2007-04-181-2/+13
| | | | | | | [DOC] since PHP 6 a Vary header will be sent without regards to whether the negotiation was successful or not and unless the complete output buffer gets discarded
* TypoMartin Kraemer2007-03-141-1/+1
|
* - add note about the past for the future, see ↵Michael Wallner2007-02-021-0/+2
| | | | http://bugs.php.net/?id=40310&edit=1
* fix #40189 (possible endless loop in zlib.inflate stream filter)Antony Dovgal2007-01-251-0/+5
|
* MFBNuno Lopes2007-01-031-2/+2
|
* Bump year.Sebastian Bergmann2007-01-014-4/+4
|
* MFBNuno Lopes2006-12-281-8/+8
|
* cosmetic improvementsAntony Dovgal2006-12-051-1/+1
|
* - fix protosMichael Wallner2006-11-161-8/+8
|
* MFB: Fixed compiler warningsIlia Alshanetsky2006-10-161-3/+3
|
* Error message clean upHannes Magnusson2006-10-081-4/+4
| | | | | (patch by Matt W (php_lists -AT- realpain.com))
* Disabled autoconversion of hash keys (from string to unicode) for PHP arraysDmitry Stogov2006-09-191-1/+1
|
* - fix issues with ob_start("ob_gzhandler")Michael Wallner2006-09-043-7/+50
| | | | | - add tests
* - fix tests SKIPIFMichael Wallner2006-08-313-7/+3
|
* - add basic zlib.output_compression testsMichael Wallner2006-08-313-0/+66
|
* - output handler alias ctor should know about chunk_size and flagsMichael Wallner2006-08-312-4/+5
|
* - good bye ob_gzhandlerMichael Wallner2006-08-303-10/+4
| | | | | - ego promo
* - allow (de)activation with ini_set()Michael Wallner2006-08-301-31/+61
|
* - add php_zlib_output_encoding() declMichael Wallner2006-08-301-0/+1
|
* - avoid a loop around deflate() by using Z_SYNC_FLUSH for standard writeMichael Wallner2006-08-301-3/+3
|
* - implement new output APIMichael Wallner2006-08-305-876/+608
| | | | | | | | | | - ported deflate/inflate code - require zlib >= 1.2.0.4 - add gzdecode() # if we want the filter code to benefit from zlib 1.2 the # "streamable" API would have to be ported, too
* the error message is different on different OSes and zlib versionsAntony Dovgal2006-08-241-4/+4
|
* upgrade the rest of the functions to Unicode (except ob_gzhandler, that I ↵Nuno Lopes2006-07-279-51/+51
| | | | | | | leave for Mike). also update tests to force binary data to be passed
* convert void* to zstr when using the 't' parameter typeNuno Lopes2006-07-271-12/+12
|
* change char* to void* when using the 't' parameter (as noted by Andrei)Nuno Lopes2006-07-081-4/+5
|
* upgrade a couple of functions to UnicodeNuno Lopes2006-07-071-10/+40
|
* add new testsAntony Dovgal2006-06-265-0/+283
|
* zero-terminate strings produced with FORCE_DEFLATEAntony Dovgal2006-06-261-0/+2
|
* MFB: don't try to inflate empty stringsAntony Dovgal2006-06-261-0/+4
|
* Added automatic module globals managementDmitry Stogov2006-06-131-15/+8
|
* MFB: Fixed compiler warningIlia Alshanetsky2006-06-121-3/+3
|
* Nuke unused varHannes Magnusson2006-06-111-1/+1
|
* - explicit usage of TS macrosMichael Wallner2006-06-031-11/+11
| | | | | # this could have been raised a lot earlier
* - fix encodingMichael Wallner2006-06-022-2/+2
|
* - new output control codeMichael Wallner2006-06-022-25/+56
| | | | | | | | | | | | # scan README.NEW-OUTPUT-API to get a grasp # tree has been tagged with BEFORE_NEW_OUTPUT_API # # TODO: # - improve existing output handlers # - move zlib.output_compression cruft from SAPI.c to zlib.c # - output_encoding handling was ambigious, resp. is undefined yet # - more tests
* fix build. ZSTR() must be applied to the buf argument of php_stream macrosFrank M. Kromann2006-04-291-1/+1
|
* Silence false positive test failuresSara Golemon2006-04-025-5/+5
|
* Refactor streams layer for PHP6.Sara Golemon2006-03-131-10/+10
| | | | | | | | | | Don't be frightened by the size of this commit. A significant portion of it is restoring the read buffer semantics back to what PHP4/5 use. (Or a close aproximation thereof). See main/streams/streams.c and ext/standard/file.c for a set of UTODO comments covering work yet to be done.
* So long safe_mode mode.Ilia Alshanetsky2006-03-081-1/+0
| | | | | | Also removed the magic_quotes configure option, no longer relevant since the magic is gone :-).
* - remove magic_quotes_gpc, magic_quotes_runtime, magic_quotes_sybasePierre Joye2006-03-081-8/+1
| | | | | | | (calling ini_set('magic_....') returns 0|false - get_magic_quotes_gpc, get_magic_quotes_runtime are kept but always return false - set_magic_quotes_runtime raises an E_CORE_ERROR
* - Get rid of using ENFORCE_SAFE_MODE.Andi Gutmans2006-02-191-3/+3
|
* fix testsAntony Dovgal2006-02-022-3/+17
|