History log of /PHP-5.5/ext/com_dotnet/com_saproxy.c (Results 26 – 41 of 41)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
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, 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
# 496031df 21-Nov-2004 Ilia Alshanetsky

emalloc -> safe_emalloc.


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, RELEASE_0_1, php-5.0.0RC4, php-5.0.0, php-4.3.8
# f28b063c 08-Jul-2004 Ilia Alshanetsky

Last dangerous alloca() bits.


Revision tags: 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
# d16ad343 13-Apr-2004 Wez Furlong

This wasn't updated for new parameters for object handlers yet...


Revision tags: php-4.3.6RC3, php-4.3.6RC2, php-4.3.6RC1, php-4.3.5, php-4.3.5RC4, php-5.0.0RC1, php-5.0.0RC1RC2, php-5.0.0RC1RC1, RELEASE_0_2_0
# 7dd5b1f1 08-Mar-2004 Marcus Boerger

Rename hasMore() to valid() as discussed. (Part V)


Revision tags: php-4.3.5RC3
# 7c710a9f 15-Feb-2004 Zeev Suraski

Use zval_ptr_dtor() to free variables as soon as they hit refcount of 0.

Note: You should not be using ZVAL_DELREF() in day to day usage. Instead,
you should use zval_ptr_dtor()

Use zval_ptr_dtor() to free variables as soon as they hit refcount of 0.

Note: You should not be using ZVAL_DELREF() in day to day usage. Instead,
you should use zval_ptr_dtor(). Use ZVAL_DELREF() only if you're
messing with the refcount directly and know what you're doing.
Note #2: For clarity, if you want to initialize a new zval with a refcount
of 0, it's best to do that directly, instead of using ZVAL_DELREF
after allocating the zval...

show more ...


Revision tags: php-5.0.0b4
# f041e73a 12-Feb-2004 Zeev Suraski

Fix prototype/warning


# 30171a75 12-Feb-2004 Zeev Suraski

zend_default_classes.h -> zend_exceptions.h


Revision tags: php-5.0.0b4RC1
# 8424be84 04-Feb-2004 Zeev Suraski

- Update with new destructor code


Revision tags: php-4.3.5RC2, RELEASE_1_3b6, php_ibase_before_split, php-4.3.5RC1
# dbeb4158 08-Jan-2004 Andi Gutmans

- A belated happy holidays and PHP 5


# e10c206d 07-Jan-2004 Wez Furlong

Port other major parts of PHP 4 COM extension into PHP 5 com_dotnet
extension.
This enables:
- iteration of SafeArray types via foreach()
- proxying of multi-dimensional SafeArray typ

Port other major parts of PHP 4 COM extension into PHP 5 com_dotnet
extension.
This enables:
- iteration of SafeArray types via foreach()
- proxying of multi-dimensional SafeArray types so that multi-dimension
array accesses work (untested!)
- Fix COM exceptions, and expose them as their own class of exception
"com_exception"
- auto typelib file import (com.typelib_file ini option)
- event sinking
- wrapper to map PHP objects to COM
- fix mapping of variant values to PHP values

# Could someone please add com_saproxy.c and com_wrapper.c to the .dsp
# file?

show more ...


12