<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/main/php_output.h, branch php-4.2.0</title>
<subtitle>git.php.net: repository/php-src.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/'/>
<entry>
<title>Added ob_get_status() to get array of buffers and it's status.</title>
<updated>2002-03-01T03:05:50+00:00</updated>
<author>
<name>Yasuo Ohgaki</name>
<email>yohgaki@php.net</email>
</author>
<published>2002-03-01T03:05:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=82a8d372e5fcbee52769f2c376fad34fec4bf63e'/>
<id>82a8d372e5fcbee52769f2c376fad34fec4bf63e</id>
<content type='text'>
(DO NOT document this function yet)

Fixed crash bug with ob_end_*() function. ob_end_*() will not delete
buffers that may not be deleted.

php_start_ob_buffer() and php_ob_set_internal_handler() takes parameter for
if the buffer created may be deleted or not.

Added 3rd parameter "bool erase" to ob_start(). If FALSE, buffer may not be
deleted until script finshes.

Changed ob_*() function that have void return type to bool. All ob_*()
functions return TRUE for success, FALSE for failure.

@ - Added ob_get_status() to get array of buffers and it's status. (Yasuo)
@ - Fixed crash bug with ob_end_*() function. ob_end_*() will not delete
@   buffers that may not be deleted. (Yasuo)
@ - Added 3rd parameter "bool erase" to ob_start(). If FALSE, buffer may not be
@   deleted until script finshes. (Yasuo)
@ - Changed ob_*() function that have void return type to bool. All ob_*()
@   functions return TRUE for success, FALSE for failure. (Yasuo)

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(DO NOT document this function yet)

Fixed crash bug with ob_end_*() function. ob_end_*() will not delete
buffers that may not be deleted.

php_start_ob_buffer() and php_ob_set_internal_handler() takes parameter for
if the buffer created may be deleted or not.

Added 3rd parameter "bool erase" to ob_start(). If FALSE, buffer may not be
deleted until script finshes.

Changed ob_*() function that have void return type to bool. All ob_*()
functions return TRUE for success, FALSE for failure.

@ - Added ob_get_status() to get array of buffers and it's status. (Yasuo)
@ - Fixed crash bug with ob_end_*() function. ob_end_*() will not delete
@   buffers that may not be deleted. (Yasuo)
@ - Added 3rd parameter "bool erase" to ob_start(). If FALSE, buffer may not be
@   deleted until script finshes. (Yasuo)
@ - Changed ob_*() function that have void return type to bool. All ob_*()
@   functions return TRUE for success, FALSE for failure. (Yasuo)

</pre>
</div>
</content>
</entry>
<entry>
<title>Maintain headers.</title>
<updated>2002-02-28T08:29:35+00:00</updated>
<author>
<name>Sebastian Bergmann</name>
<email>sebastian@php.net</email>
</author>
<published>2002-02-28T08:29:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=90613d2282e4863630b2facc023af175dd973311'/>
<id>90613d2282e4863630b2facc023af175dd973311</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update headers.</title>
<updated>2001-12-11T15:32:16+00:00</updated>
<author>
<name>Sebastian Bergmann</name>
<email>sebastian@php.net</email>
</author>
<published>2001-12-11T15:32:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=38933514e1d60ac2f93225a705ed36b5b23d4e45'/>
<id>38933514e1d60ac2f93225a705ed36b5b23d4e45</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove redundant include</title>
<updated>2001-12-05T13:46:36+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2001-12-05T13:46:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=56986a4ab852a20d88563d22c69c6e17e6a693dd'/>
<id>56986a4ab852a20d88563d22c69c6e17e6a693dd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Added ob_get_level, which returns the nesting level of the output buffering</title>
<updated>2001-12-03T07:43:53+00:00</updated>
<author>
<name>Derick Rethans</name>
<email>derick@php.net</email>
</author>
<published>2001-12-03T07:43:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=1f14640b3e756a6f5523b392bba8605bdf55d92d'/>
<id>1f14640b3e756a6f5523b392bba8605bdf55d92d</id>
<content type='text'>
  mechanism. (patch by Yasuo Ohgaki &lt;yasuo_ohgaki@yahoo.com&gt;)
@- Added ob_get_level, which returns the nesting level of the output buffering
@  mechanism. (Yasuo, Derick)

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  mechanism. (patch by Yasuo Ohgaki &lt;yasuo_ohgaki@yahoo.com&gt;)
@- Added ob_get_level, which returns the nesting level of the output buffering
@  mechanism. (Yasuo, Derick)

</pre>
</div>
</content>
</entry>
<entry>
<title>- Added ob_flush and ob_clean functions, which do not end the buffer like</title>
<updated>2001-11-30T10:48:38+00:00</updated>
<author>
<name>Derick Rethans</name>
<email>derick@php.net</email>
</author>
<published>2001-11-30T10:48:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=9190271cefb74b308f1a7ca12fe5e9160d828dd7'/>
<id>9190271cefb74b308f1a7ca12fe5e9160d828dd7</id>
<content type='text'>
  ob_end_flush and ob_end_clean do.
@- Added ob_flush and ob_clean functions, which flush and clean an
@  output buffer without destroying the buffer. (Derick)

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  ob_end_flush and ob_end_clean do.
@- Added ob_flush and ob_clean functions, which flush and clean an
@  output buffer without destroying the buffer. (Derick)

</pre>
</div>
</content>
</entry>
<entry>
<title>more tsrm cleanup -- output.c is not doing any fetches anymore</title>
<updated>2001-08-05T15:55:43+00:00</updated>
<author>
<name>Sascha Schumann</name>
<email>sas@php.net</email>
</author>
<published>2001-08-05T15:55:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=373b3e101e0394f0727e1e5855e18e15851d0919'/>
<id>373b3e101e0394f0727e1e5855e18e15851d0919</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>more tsrm cleanup</title>
<updated>2001-08-05T15:29:47+00:00</updated>
<author>
<name>Sascha Schumann</name>
<email>sas@php.net</email>
</author>
<published>2001-08-05T15:29:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=8aef1930565d36807647e52b5e5b7c4e3f4a57b1'/>
<id>8aef1930565d36807647e52b5e5b7c4e3f4a57b1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Redesigned thread safety mechanism - nua nua</title>
<updated>2001-07-28T11:36:37+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2001-07-28T11:36:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=d87cc976e1156b839fc6d4aa6b473a126802b8e3'/>
<id>d87cc976e1156b839fc6d4aa6b473a126802b8e3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid getting bailouts on text output during shutdown.  Text output is now</title>
<updated>2001-07-20T13:59:00+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2001-07-20T13:59:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=13ac04b8e504ba5b0d531bee43d602e6980e2e20'/>
<id>13ac04b8e504ba5b0d531bee43d602e6980e2e20</id>
<content type='text'>
'officially' disabled during shutdown (this doesn't change the Apache module
behavior, but may change behavior of other server modules, in which it was
possible to emit output during shutdown;  I think it's a good step towards
consistency, though)

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
'officially' disabled during shutdown (this doesn't change the Apache module
behavior, but may change behavior of other server modules, in which it was
possible to emit output during shutdown;  I think it's a good step towards
consistency, though)

</pre>
</div>
</content>
</entry>
</feed>
