<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/Zend/zend_objects.c, branch php-5.0.4</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>MFH Fix handling of exceptions in dtors</title>
<updated>2004-09-06T19:16:35+00:00</updated>
<author>
<name>Marcus Boerger</name>
<email>helly@php.net</email>
</author>
<published>2004-09-06T19:16:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=9ae0e91ef4e9406a3f89731a3958402cd30f4d3e'/>
<id>9ae0e91ef4e9406a3f89731a3958402cd30f4d3e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Improve fix for protecting destructor's from exceptions.</title>
<updated>2004-03-02T08:13:15+00:00</updated>
<author>
<name>Andi Gutmans</name>
<email>andi@php.net</email>
</author>
<published>2004-03-02T08:13:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=3333380bf0da1aa744d19182cf6cef099681b4d6'/>
<id>3333380bf0da1aa744d19182cf6cef099681b4d6</id>
<content type='text'>
- I was killing the current exception completely which was wrong.

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- I was killing the current exception completely which was wrong.

</pre>
</div>
</content>
</entry>
<entry>
<title>- Fix crash in destructors(). You can't throw an exception in destructors</title>
<updated>2004-03-01T19:45:07+00:00</updated>
<author>
<name>Andi Gutmans</name>
<email>andi@php.net</email>
</author>
<published>2004-03-01T19:45:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=8912a50bf47e70a16fc45a6cd085fc1b3e4d88a5'/>
<id>8912a50bf47e70a16fc45a6cd085fc1b3e4d88a5</id>
<content type='text'>
  as there is no guaranteed time when the destructor will be called.

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  as there is no guaranteed time when the destructor will be called.

</pre>
</div>
</content>
</entry>
<entry>
<title>- Small fixes</title>
<updated>2004-02-04T11:56:07+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2004-02-04T11:56:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=3ac58bffcf4088ba66a97d09ff198ce576bed455'/>
<id>3ac58bffcf4088ba66a97d09ff198ce576bed455</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Change destructor implementation (details will follow on internals@)</title>
<updated>2004-02-04T09:56:20+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2004-02-04T09:56:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=f5f7d569a0dc42d4469f4091ecf7d71a7152efc4'/>
<id>f5f7d569a0dc42d4469f4091ecf7d71a7152efc4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Nuke unused variable</title>
<updated>2004-02-03T21:15:08+00:00</updated>
<author>
<name>Marcus Boerger</name>
<email>helly@php.net</email>
</author>
<published>2004-02-03T21:15:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=363c58787175c8f8429fc9bd9298d1c5f706a3c6'/>
<id>363c58787175c8f8429fc9bd9298d1c5f706a3c6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Perform a bitwise copy of the object even when __clone() is defined.</title>
<updated>2004-02-03T12:36:13+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2004-02-03T12:36:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=848d4aed8a6d2d458f7b04d4d2d325a6a89d7e75'/>
<id>848d4aed8a6d2d458f7b04d4d2d325a6a89d7e75</id>
<content type='text'>
__clone() is back to not requiring any arguments, as $that is no longer
needed ($this already contains a copy of the original object, by the time
we __clone() is executed).
Calling the parent clone is done using parent::__clone()

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
__clone() is back to not requiring any arguments, as $that is no longer
needed ($this already contains a copy of the original object, by the time
we __clone() is executed).
Calling the parent clone is done using parent::__clone()

</pre>
</div>
</content>
</entry>
<entry>
<title>Redesign the clone() feature to fix some fundamental flaws in the previous</title>
<updated>2004-02-02T12:28:19+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2004-02-02T12:28:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=8e30d96ad895442d77d3a7c93cd70a052a257427'/>
<id>8e30d96ad895442d77d3a7c93cd70a052a257427</id>
<content type='text'>
implementation.

Using clone directly is now done using
$replica = clone $src;

Clone methods must now be declared as follows:
function __clone($that)
{
}

Clone methods in derived classes can call the __clone method of their parent
classes using parent::__clone($that)

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
implementation.

Using clone directly is now done using
$replica = clone $src;

Clone methods must now be declared as follows:
function __clone($that)
{
}

Clone methods in derived classes can call the __clone method of their parent
classes using parent::__clone($that)

</pre>
</div>
</content>
</entry>
<entry>
<title>- Happy new year and PHP 5 for rest of the files too..</title>
<updated>2004-01-08T17:33:29+00:00</updated>
<author>
<name>foobar</name>
<email>sniper@php.net</email>
</author>
<published>2004-01-08T17:33:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=ccfc46b0aa1f9066a40d051250d6bdb5fb203aeb'/>
<id>ccfc46b0aa1f9066a40d051250d6bdb5fb203aeb</id>
<content type='text'>
# Should the LICENSE and Zend/LICENSE dates be updated too?

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
# Should the LICENSE and Zend/LICENSE dates be updated too?

</pre>
</div>
</content>
</entry>
<entry>
<title>Simplify</title>
<updated>2003-12-27T20:33:14+00:00</updated>
<author>
<name>Marcus Boerger</name>
<email>helly@php.net</email>
</author>
<published>2003-12-27T20:33:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=e20f534ee5fd5b6288aae5ca14bf9bf1d5f46185'/>
<id>e20f534ee5fd5b6288aae5ca14bf9bf1d5f46185</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
