<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/sapi/apache/sapi_apache.c, branch php-4.0.4RC5</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>- Import Jade Nicoletti's transparent gzip encoding support as an output</title>
<updated>2000-11-13T18:54:37+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2000-11-13T18:54:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=0f7f5c2c0e616445d14b49641e85dbddcc1651e5'/>
<id>0f7f5c2c0e616445d14b49641e85dbddcc1651e5</id>
<content type='text'>
  handler.  Works quite nicely!
- Fix buglets in output buffering
- Add output_handler INI directive

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  handler.  Works quite nicely!
- Fix buglets in output buffering
- Add output_handler INI directive

</pre>
</div>
</content>
</entry>
<entry>
<title>Fix a nasty bug in the shutdown sequence of PHP under Apache.</title>
<updated>2000-11-02T12:05:54+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2000-11-02T12:05:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=8c4852c2cb6675ff0ee72b6a34b749116129513e'/>
<id>8c4852c2cb6675ff0ee72b6a34b749116129513e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>This appears to be the correct fix to me.</title>
<updated>2000-10-14T05:06:16+00:00</updated>
<author>
<name>Rasmus Lerdorf</name>
<email>rasmus@php.net</email>
</author>
<published>2000-10-14T05:06:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=c3026223f72191d801f12e02d523aafe8de94eb1'/>
<id>c3026223f72191d801f12e02d523aafe8de94eb1</id>
<content type='text'>
@ Fix memory leak in x-httpd-source mode (Jason Greene)

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
@ Fix memory leak in x-httpd-source mode (Jason Greene)

</pre>
</div>
</content>
</entry>
<entry>
<title>Fix opened_path init</title>
<updated>2000-08-13T18:08:01+00:00</updated>
<author>
<name>Stanislav Malyshev</name>
<email>stas@php.net</email>
</author>
<published>2000-08-13T18:08:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=6f8f6c521c6fc8a223fbacffc96eca42ce38f76e'/>
<id>6f8f6c521c6fc8a223fbacffc96eca42ce38f76e</id>
<content type='text'>
# forgot to commit

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
# forgot to commit

</pre>
</div>
</content>
</entry>
<entry>
<title>Made ob_start() and friends reentrant.  It's now possible to implement this</title>
<updated>2000-07-29T14:46:09+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2000-07-29T14:46:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=52ff887db511cd393b04468e2b0a4b77859f5bd5'/>
<id>52ff887db511cd393b04468e2b0a4b77859f5bd5</id>
<content type='text'>
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;
}

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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;
}

</pre>
</div>
</content>
</entry>
<entry>
<title>@- Fixed closing</title>
<updated>2000-07-10T07:57:01+00:00</updated>
<author>
<name>Thies C. Arntzen</name>
<email>thies@php.net</email>
</author>
<published>2000-07-10T07:57:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=1cee6c5b781d791ead0bed07005f6ceea50aa301'/>
<id>1cee6c5b781d791ead0bed07005f6ceea50aa301</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Move main.h to php_main.h.</title>
<updated>2000-06-05T23:24:42+00:00</updated>
<author>
<name>Sascha Schumann</name>
<email>sas@php.net</email>
</author>
<published>2000-06-05T23:24:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=102c6ce4b89c4efd46eb8c2b212943c188312938'/>
<id>102c6ce4b89c4efd46eb8c2b212943c188312938</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update the license with the new clause 6</title>
<updated>2000-05-18T15:34:45+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2000-05-18T15:34:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=e043439ff61535bf6994d55a5056ff8b29b9828e'/>
<id>e043439ff61535bf6994d55a5056ff8b29b9828e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>more apachewin32 work.  much better now, but still crashing in zend_execute.  At least it's getting the file open now though.</title>
<updated>2000-05-04T03:28:34+00:00</updated>
<author>
<name>Shane Caraveo</name>
<email>shane@php.net</email>
</author>
<published>2000-05-04T03:28:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=cad04f55792bf247665fcddd4b9f7ca87040ce30'/>
<id>cad04f55792bf247665fcddd4b9f7ca87040ce30</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>zeroing the variables fixes one crash...now crashes on memory allocation during zend_compile_files</title>
<updated>2000-04-30T04:56:48+00:00</updated>
<author>
<name>Shane Caraveo</name>
<email>shane@php.net</email>
</author>
<published>2000-04-30T04:56:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=0fc8ff61b2dc0549811559e63ee89cf4b12215a6'/>
<id>0fc8ff61b2dc0549811559e63ee89cf4b12215a6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
