History log of /PHP-8.0/ext/zlib/zlib.c (Results 201 – 225 of 356)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 0acb52fc 30-Dec-2002 Ilia Alshanetsky

Fixed bug #21228 (broken check for ob_gzhandler).
Fixed a bug that made ob_start return incorrect return value.


Revision tags: php-4.3.0, php-4.3.0RC4, RELEASE_1_0b3, php-4.3.0RC3
# e50dc16b 01-Dec-2002 Stefan Roehrich

Comment about maximal length now matches code.


Revision tags: php-4.3.0RC2, RELEASE_1_0b2
# ca58966a 18-Nov-2002 Wez Furlong

Merge streams changes from branch.


Revision tags: BEFORE_RENAMING, php-4.3.0RC1
# 7f5d9820 03-Nov-2002 Moriyoshi Koizumi

Fixed OnUpdate_zlib_output_compression() behaviour


Revision tags: php-4.3.0pre2, RELEASE_1_0b1, php-4.3.0pre1
# 22bf2938 03-Oct-2002 Yasuo Ohgaki

Move wrong output buffer usage check to ob_gzhandler init.
Export some output buffer functions.


Revision tags: MODERN_SYMMETRIC_SESSION_BEHAVIOUR_20021003
# d4bba6d1 02-Oct-2002 Marcus Boerger

Revisted Wez patch: chunk_size 0 means cahce the whole output. So
we must apply the default before calling php_enable_output_compression().
I have left the default setting in the rinit functi

Revisted Wez patch: chunk_size 0 means cahce the whole output. So
we must apply the default before calling php_enable_output_compression().
I have left the default setting in the rinit function even though i do think
it is not necessary.

show more ...


# 4356932d 30-Sep-2002 Wez Furlong

Fix infinite recursion bug when using zlib output compression.
Cause: the chunk size is taken from the zlib.output_compression setting,
which is 0 or 1. This causes the block_size for output

Fix infinite recursion bug when using zlib output compression.
Cause: the chunk size is taken from the zlib.output_compression setting,
which is 0 or 1. This causes the block_size for output buffer to be set
to 0 (1 / 2) and thus causes infinite recursion in php_ob_allocate().
Solution: use a value of 0 for the chunk size which will use the default
sizes. Also add a sanity check which will default the block_size to 1
if it ends up as 0.

show more ...


Revision tags: RELEASE_0_91, php-4.3.0dev_zend2_alpha3, php-4.2.3
# 63922169 03-Sep-2002 foobar

Use zend_ini_string instead of the 'alias'.


Revision tags: php-4.2.3RC2, php-4.2.3RC1
# a6e8e723 23-Aug-2002 Zeev Suraski

Fix ob_gzhandler()'s handling of requests w/o compression but that do have
the Accept-Encoding header


# a388ab62 22-Aug-2002 Wez Furlong

Fix error messages.


# 0ea1dda8 22-Aug-2002 Stefan Roehrich

Fixed prototype.
Fixed double printing of function name in docref error messages.


# f15b4c1e 20-Aug-2002 Marcus Boerger

change to php_error_docref()
#documentation about output relevant ini settings will be in ref.outcontrol


# fdf514f4 20-Aug-2002 Marcus Boerger

Changed handling of output buffer sizes.


# 42355837 11-Aug-2002 Yasuo Ohgaki

Changed my mind.
Let users decided whether users want larger chunk size or not.
@ Changed zlib.output_compression behavior. If larger chunk is preferred,
enable output_buffering also. (

Changed my mind.
Let users decided whether users want larger chunk size or not.
@ Changed zlib.output_compression behavior. If larger chunk is preferred,
enable output_buffering also. (Marcus, Yasuo)

show more ...


# 02ed7058 11-Aug-2002 Yasuo Ohgaki

Generally speaking, sending packets less than 1KB is not efficient.
We're better to take some benchmarks see if removing extra buffer
is actually a good idea or not.


# 21903dfc 10-Aug-2002 Marcus Boerger

corrected handling of internal output buffers
minor fixs


# ff63bf2a 10-Aug-2002 Marcus Boerger

no need to start additional first buffer when output compression is first buffer


# 28960797 10-Aug-2002 Marcus Boerger

should fix all windows warnings


# 9c8ba935 09-Aug-2002 Marcus Boerger

Improved handling of output buffers (see news)\n#No trim for the string parameter...


Revision tags: dev
# 6f786ebf 28-Jul-2002 Stefan Roehrich

Commit patch as discussed on LinuxTag and posted to php-dev in June.
Disables zlib.output_compression for scripts with image/ content-type
header (fixes bug #16109) and makes it possible to s

Commit patch as discussed on LinuxTag and posted to php-dev in June.
Disables zlib.output_compression for scripts with image/ content-type
header (fixes bug #16109) and makes it possible to switch
zlib.output_compression during script execution before the headers are
sent.
@- zlib.output_compression is disabled for "image/" content-type
@ headers and can be changed during script execution. (Stefan)

show more ...


Revision tags: php-4.2.2, INITIAL_IMPORT_SOURCEFORGE, xmlrpc_epi_0_51_merge_pt, php-4.3.0dev_zend2_alpha2
# 94127f25 18-Jun-2002 Derick Rethans

- oops... read before commit :)


# 81860467 18-Jun-2002 Derick Rethans

- It doesn't work from within a script... so we disallow it


Revision tags: php-4.3.0dev, php5_5_0, RELEASE_0_90
# cce0d2f7 02-Jun-2002 Stefan Roehrich

Added "Vary: Accept-Encoding" header to zlib.output_compression
compressed output as with obgzhandler().
@ If zlib.output_compression is enabled and a page is compressed
@ a "Vary: Accept

Added "Vary: Accept-Encoding" header to zlib.output_compression
compressed output as with obgzhandler().
@ If zlib.output_compression is enabled and a page is compressed
@ a "Vary: Accept-Encoding" header is added. (Stefan)
# obgzhandler() sends this header, I think it is recommened by
# RFC 2616. If there are problems (e.g. with some browsers)
# it should be reverted.

show more ...


Revision tags: php-4.3.0dev_zend2_alpha1, BEFORE_OBJECTS_STORE, SAFEGUARD_3_0_BETA1_RC1_26062002, RELEASE_0_11, NEW_UI_API_BP, RELEASE_0_10, RELEASE_0_4, php-4.3.0dev-ZendEngine2, php-4.3.0dev-ZendEngine2-Preview1, php-4.2.1, php-4.2.1RC2
# 43df0c78 02-May-2002 Yasuo Ohgaki

Move Content-Length: header handling from zlib.c to output.c
When output buffer is enabled and header can be sent, Content-Length:
header is added always from now on.


Revision tags: php-4.2.1RC1
# 30fd7de1 27-Apr-2002 Sascha Schumann

s/len/xln/ was necessary here

Noticed by: Charles O Parks III


12345678910>>...15