History log of /PHP-5.5/main/output.c (Results 201 – 225 of 244)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 13a97fef 06-Mar-2001 Zeev Suraski

Initial work on internal output handlers - should be much quicker


# a22ada79 04-Mar-2001 Zeev Suraski

Improve memory consumption on chunked output buffering


# c64fe7fb 04-Mar-2001 Zeev Suraski

Fix non-thread safe mode


# 0a98aa6a 04-Mar-2001 Zeev Suraski

Improve chunked output buffering - the output handler now knows at which stage it is


# b8787bf2 27-Feb-2001 Zeev Suraski

Fix chunked output buffering support


# eb6ba01d 26-Feb-2001 Andi Gutmans

- Fix copyright notices with 2001


Revision tags: php-4.0.4pl1, php-4.0.4pl1RC2
# 7eb84696 09-Jan-2001 Sascha Schumann

Avoid possible memory leak in the URL scanner, if the connection is
interrupted during writing the output.


Revision tags: php-4.0.4pl1RC1, php-4.0.4REL, php-4.0.4RC6, php-4.0.4RC5, php-4.0.4RC4, php-4.0.4RC3
# 888f376e 23-Nov-2000 Zeev Suraski

Very initial work on chunked output buffering. It's really unoptimized at
this time, and it can crash under some circumstances, but that's the
concept...


# 89d6b5b5 12-Nov-2000 Kristian Köhntopp

Prototype corrected.


# 816f1f79 02-Nov-2000 Zeev Suraski

- Fixed a bug that caused PHP not to properly flush its output buffer, if more
than one output buffer was used


# 825457ae 29-Oct-2000 Thies C. Arntzen

update my email.


# 2517250b 26-Oct-2000 Sascha Schumann

The type has changed to size_t.


Revision tags: php-4.0.3, php-4.0.3RC2, php-4.0.3RC1
# 9f86ff88 04-Sep-2000 Sterling Hughes

@Add a php.ini option session.use_trans_sid to enable/disable trans-sid. (Sterling)


# e47d4fe2 03-Sep-2000 Andi Gutmans

- Increase buffers of output buffering to 40KB and 10KB increments which
makes more sense when web pages are typically like 10KB-20KB.
I think it would be best to change the reallocation

- Increase buffers of output buffering to 40KB and 10KB increments which
makes more sense when web pages are typically like 10KB-20KB.
I think it would be best to change the reallocation algorithm at least to
redoubling when it's full instead of incrementing and possibly use
a data structure similar to Zend/zend_static_allocator which uses memory
blocks and not realloc().

show more ...


# 2183e2b0 03-Sep-2000 Zeev Suraski

Make gcc happy


# 48f13455 03-Sep-2000 Zeev Suraski

Fix init bug


# cf8e3897 02-Sep-2000 Zeev Suraski

@- Added support for an optional output handler function for output
@ buffering. This enables transparent rendering of XML through XSL,
@ transparent compression, etc. (Zeev)


Revision tags: php-4.0.2
# 03471b21 25-Aug-2000 Stig Bakken

@Added ob_get_length function (Stig)
Added ob_get_length() function (returns size of buffer)


Revision tags: PRE_LIBMYSQL_REVERT, php-4.0.2RC1, PRE_FILE_COMPILE_API_CHANGE
# 52ff887d 29-Jul-2000 Zeev Suraski

Made ob_start() and friends reentrant. It's now possible to implement this
long-requested functionality, now that output buffering is re-entrant:

function eval_ret($code)
{

Made ob_start() and friends reentrant. It's now possible to implement this
long-requested functionality, now that output buffering is re-entrant:

function eval_ret($code)
{
ob_start();
eval($code);
$retval = ob_get_contents();
ob_end_clean();
return $retval;
}

show more ...


# 83513d95 24-Jul-2000 David Croft

Changed lots of PHP 3 licence headers to PHP 4, mainly in .h files.
Added a few RCS $Id$ tags.

# Note: I have avoided changing any .h files if the corresponding .c file
# had not alr

Changed lots of PHP 3 licence headers to PHP 4, mainly in .h files.
Added a few RCS $Id$ tags.

# Note: I have avoided changing any .h files if the corresponding .c file
# had not already been changed as I am not sure if there are any legal
# issues here. So some extensions still have PHP 3 headers.

show more ...


Revision tags: PRE_METHOD_CALL_SEPERATE_FIX_PATCH, php-4.0.1pl1, php-4.0.1, php-4.0.1RC2, php-4.0.1RC
# d1a6a646 24-Jun-2000 Zeev Suraski

- Make the output globals accessible from the outside world
- Fix Win32 compilation


Revision tags: PRE_EIGHT_BYTE_ALLOC_PATCH
# d7ac0f2c 06-Jun-2000 Andi Gutmans

- I didn't have anything to do with this buggy code. Just kidding :)


# df4547a3 23-May-2000 Hartmut Holzgraefe

another bunch of proto fixes


Revision tags: php-4.0.0
# e043439f 18-May-2000 Zeev Suraski

Update the license with the new clause 6


Revision tags: php-4.0RC2
# f1c268d7 18-Apr-2000 Egon Schmid

Corrected some protos.


12345678910