History log of /PHP-5.5/ext/com_dotnet/com_handlers.c (Results 26 – 50 of 63)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.2.1RC1
# c06f9e1e 17-Nov-2006 Dmitry Stogov

COM initialization/deinitialization are done only if necessary


Revision tags: php-5.2.0, php-5.2.0RC6
# 480e788d 06-Oct-2006 Edin Kadribasic

Fix for #38985 (Wez)


Revision tags: php-5.2.0RC5, php-5.2.0RC4, php-5.2.0RC3, php-5.1.6, php-5.2.0RC2, php-5.1.5, php-4.4.4, php-4.4.4RC1, php-5.1.5RC1, php-4.4.3, php-5.2.0RC1, php-4.4.3RC2, BEFORE_NEW_OUTPUT_API, php-4.4.3RC1
# f064d19f 10-May-2006 Rob Richards

- Update after api changes


Revision tags: php-5.1.4, RELEASE_1_0_3, php-5.1.3, php-5.1.2, RELEASE_1_3, php-5.1.3RC3, php-5.1.3RC2, php-5.1.3RC1, RELEASE_1_2
# 78319008 07-Feb-2006 Rob Richards

fix mem leak with iterators
fix object casting for edge case


# a78a0b46 04-Feb-2006 Rob Richards

Fixed bug #34272 (empty array onto COM object blows up)
fix mem leaks
WS fixes
add test


# c53b926a 26-Jan-2006 Rob Richards

Fix bug #35954 (Fatal com_exception casting object)


Revision tags: RELEASE_0_9_4, RELEASE_1_0_4, php-4.4.2, php-5.1.2RC2, php-4.4.2RC2
# 5bd93221 01-Jan-2006 foobar

bump year and license version


Revision tags: php-5.1.2RC1, RELEASE_1_1_1, RELEASE_1_1, RELEASE_1_0, RELEASE_2_0_2, php-5.1.1
# 934e1910 27-Nov-2005 Rob Richards

Fixed bug #35316 (Application exception trying to create COM object)


Revision tags: php-5.1.0, php-4.4.2RC1, RELEASE_0_9_3, php-5.1.0RC6, php-5.1.0RC5, RELEASE_2_0_1, RELEASE_1_0RC2, php-4.4.1, php-5.1.0RC4, RELEASE_0_9_2, RELEASE_0_9_1, php-5.1.0RC3, php-5.1.0RC2, php-4.4.1RC1, RELEASE_0_9_0, RELEASE_1_0RC1, PRE_NEW_OCI8_EXTENSION, php-5.1.0RC2_PRE, php-5.0.5, php-5.0.5RC2, php-5.0.5RC1, php-5.1.0RC1, BEFORE_UNICODE_MERGE, RELEASE_2_0_0
# 23e671a5 03-Aug-2005 foobar

- Bumber up year


Revision tags: RELEASE_0_9, php-5.1.0b3, php-4.4.0, php-4.4.0RC2, php-5.1.0b2, php-4.4.0RC1, php-5.1.0b1, php-5.0.1b1
# 70137887 19-Apr-2005 Wez Furlong

merge from branch: fixes for #32758 and #32759


# 195f69f0 18-Apr-2005 Wez Furlong

merge bug fixes from branch


Revision tags: RELEASE_0_3, php-5.0.4, php-4.3.11, php-5.0.4RC2, php-4.3.11RC2, php-5.0.4RC1, php-4.3.11RC1, RELEASE_0_2_4, RELEASE_0_2_3, RELEASE_0_2_2, RELEASE_0_2_1, RELEASE_0_2, php-5.0.3, php-4.3.10, SQLITE_4_3_20041227, php-5.0.3RC2, php-4.3.10RC2, php-5.0.3RC1, php-4.3.10RC1
# 8f32b61a 20-Nov-2004 Rob Richards

fix crash when calling com methods
- due to change in Zend


Revision tags: PRE_NEW_VM_GEN_PATCH, php-5.0.2, php-4.3.9, php-5.0.2RC1, php-4.3.9RC3, PRE_ZEND_VM_DISPATCH_PATCH, php-4.3.9RC2, php-5.0.1, php-5.0.1RC2, php-4.3.9RC1, php-5.0.1RC1
# 7b1d95ad 29-Jul-2004 Wez Furlong

Fix my favourite call user func mistake


# aa74430e 27-Jul-2004 Wez Furlong

"better" "fix" for #29392.
This fixes the crash; the sample script:

$c = new COM('ADODB.Connection');
echo $c;

still does not work because the engine tries t

"better" "fix" for #29392.
This fixes the crash; the sample script:

$c = new COM('ADODB.Connection');
echo $c;

still does not work because the engine tries to call $c->__toString() and the
ADODB object *might* implement that method, but doesn't know until you open the
connection.

show more ...


# 530d4173 27-Jul-2004 Wez Furlong

Revert last fix, because it breaks dynamic methods


# 20534bc4 27-Jul-2004 Wez Furlong

Fix #29392 COM behaved badly for non-existant methods


Revision tags: RELEASE_0_1, php-5.0.0RC4, php-5.0.0, php-4.3.8, php-5.0.0RC3, php-5.0.0RC3RC2, php-4.3.7, php-5.0.0RC3RC1, php-4.3.7RC1, RELEASE_0_1_1
# 263723ec 04-May-2004 Wez Furlong

Update for count_elements handler for overloaded objects.


# 173cf836 03-May-2004 Wez Furlong

Enable writing to SafeArray dimensions.


# 92d87a6a 03-May-2004 Wez Furlong

Fix problem when assigning to a variable that holds an instance of
a COM/VARIANT/DOTNET object.


# 027d4501 28-Apr-2004 Wez Furlong

Fix for Bug #28161 (and probably others that I can't find in the bug db;
the search interface sucks).

Expand the proxy object so it can handle psuedo array style properties.

ASP

Fix for Bug #28161 (and probably others that I can't find in the bug db;
the search interface sucks).

Expand the proxy object so it can handle psuedo array style properties.

ASP/VB code like this:

headObj.Attribute("RID") = rid

can be expressed like this in PHP:

$headObj->Attribute['RID'] = $rid;

In theory, this feature can be used for "multi dimensional" properties:

headObj.Attribute("RID", "Foo") = rid;

like this:

$headObj->Attribute['RID']['Foo'] = $rid;

show more ...


Revision tags: php-5.0.0RC2, php-5.0.0RC2RC2, php-4.3.6, php-5.0.0RC2RC1, php-4.3.6RC3, php-4.3.6RC2, php-4.3.6RC1, php-4.3.5
# 27d7cd85 22-Mar-2004 Wez Furlong

update for read handler api change


Revision tags: php-4.3.5RC4, php-5.0.0RC1, php-5.0.0RC1RC2, php-5.0.0RC1RC1, RELEASE_0_2_0, php-4.3.5RC3, php-5.0.0b4
# 08ed2cb9 12-Feb-2004 Wez Furlong

fix copy-n-past error in constructor.
Spotted by Eric Colinet.


# 30171a75 12-Feb-2004 Zeev Suraski

zend_default_classes.h -> zend_exceptions.h


Revision tags: php-5.0.0b4RC1
# 2a9e1294 08-Feb-2004 Zeev Suraski

Update to new API


# 8424be84 04-Feb-2004 Zeev Suraski

- Update with new destructor code


123