[PHP-CVS] cvs: php-src(PHP_5_2) /ext/dom element.c /ext/dom/tests bug45251.phpt

2008-06-14 Thread Rob Richards
rrichards Sat Jun 14 11:24:00 2008 UTC Added files: (Branch: PHP_5_2) /php-src/ext/dom/tests bug45251.phpt Modified files: /php-src/ext/domelement.c Log: MFH: fixed bug #45251 (double free or corruption with setAttributeNode()

[PHP-CVS] cvs: php-src(PHP_5_2) /ext/dom element.c node.c /ext/dom/tests bug41257.phpt

2007-05-04 Thread Rob Richards
rrichards Fri May 4 19:30:59 2007 UTC Added files: (Branch: PHP_5_2) /php-src/ext/dom/tests bug41257.phpt Modified files: /php-src/ext/domelement.c node.c Log: fix bug #41257 (lookupNamespaceURI does not work as expected) f

[PHP-CVS] cvs: php-src(PHP_5_2) /ext/dom element.c

2006-09-28 Thread Rob Richards
rrichards Thu Sep 28 10:11:36 2006 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/domelement.c Log: fix some compiler warnings http://cvs.php.net/viewvc.cgi/php-src/ext/dom/element.c?r1=1.36.2.4.2.5&r2=1.36.2.4.2.6&diff_format=u Index: php-src/ext/d

Re: [PHP-CVS] cvs: php-src(PHP_5_2) /ext/dom element.c /ext/dom/tests bug38949.phpt nsdoc.xml

2006-09-27 Thread Rob Richards
Antony Dovgal wrote: On 27.09.2006 14:31, Rob Richards wrote: attr = dom_get_dom1_attribute(nodep, (xmlChar *)name); -if (attr != NULL && attr->type != XML_ATTRIBUTE_DECL) { +if (attr != NULL) { +switch (attr->type) { +case XML_ATTRIBUTE_NODE: node_list_

Re: [PHP-CVS] cvs: php-src(PHP_5_2) /ext/dom element.c /ext/dom/tests bug38949.phpt nsdoc.xml

2006-09-27 Thread Antony Dovgal
On 27.09.2006 14:31, Rob Richards wrote: rrichards Wed Sep 27 10:31:24 2006 UTC Added files: (Branch: PHP_5_2) /php-src/ext/dom/tests bug38949.phpt nsdoc.xml Modified files: /php-src/ext/dom element.c Log: fix bug #38949 (Cannot get

Re: [PHP-CVS] cvs: php-src(PHP_5_2) /ext/dom element.c /ext/dom/tests bug38949.phpt nsdoc.xml

2006-09-27 Thread Rob Richards
Adam Maccabee Trachtenberg wrote: Hello Rob -- Are you sure this is right? The xmlns prefix is supposed to be bound to http://www.w3.org/2000/xmlns/, so I would think you would need to use getAttributeNS() here. I did a little research on this as well as checked out a few other implementatio

Re: [PHP-CVS] cvs: php-src(PHP_5_2) /ext/dom element.c /ext/dom/tests bug38949.phpt nsdoc.xml

2006-09-27 Thread Adam Maccabee Trachtenberg
Hello Rob -- Are you sure this is right? The xmlns prefix is supposed to be bound to http://www.w3.org/2000/xmlns/, so I would think you would need to use getAttributeNS() here. Or are you allowed to use getAttribute() to pull out namespaced attributes with prefixes? Either way, what's the getA

[PHP-CVS] cvs: php-src(PHP_5_2) /ext/dom element.c /ext/dom/tests bug38949.phpt nsdoc.xml

2006-09-27 Thread Rob Richards
rrichards Wed Sep 27 10:31:24 2006 UTC Added files: (Branch: PHP_5_2) /php-src/ext/dom/tests bug38949.phpt nsdoc.xml Modified files: /php-src/ext/domelement.c Log: fix bug #38949 (Cannot get xmlns value attribute) add test

[PHP-CVS] cvs: php-src(PHP_5_2) /ext/dom element.c

2006-09-15 Thread Antony Dovgal
tony2001Fri Sep 15 07:44:20 2006 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/domelement.c Log: MFH: free node pointer using correct function fixes leak in ext/dom/tests/dom_create_element.phpt http://cvs.php.net/viewvc.cgi/php-src/ext/dom/

Re: [PHP-CVS] cvs: php-src(PHP_5_2) /ext/dom element.c /ext/dom/tests bug38474.phpt

2006-09-13 Thread Rob Richards
Antony Dovgal wrote: On 29.08.2006 03:36, Rob Richards wrote: rrichardsMon Aug 28 23:36:23 2006 UTC Added files: (Branch: PHP_5_2) /php-src/ext/dom/testsbug38474.phpt Modified files: /php-src/ext/domelement.c Log: fix #38474 (getAttri

Re: [PHP-CVS] cvs: php-src(PHP_5_2) /ext/dom element.c /ext/dom/tests bug38474.phpt

2006-09-12 Thread Antony Dovgal
On 29.08.2006 03:36, Rob Richards wrote: rrichards Mon Aug 28 23:36:23 2006 UTC Added files: (Branch: PHP_5_2) /php-src/ext/dom/tests bug38474.phpt Modified files: /php-src/ext/dom element.c Log: fix #38474 (getAttribute select attr

[PHP-CVS] cvs: php-src(PHP_5_2) /ext/dom element.c /ext/dom/tests bug38474.phpt

2006-08-28 Thread Rob Richards
rrichards Mon Aug 28 23:36:23 2006 UTC Added files: (Branch: PHP_5_2) /php-src/ext/dom/tests bug38474.phpt Modified files: /php-src/ext/domelement.c Log: fix #38474 (getAttribute select attribute by order, even when prefixed)

[PHP-CVS] cvs: php-src(PHP_5_2) /ext/dom element.c

2006-06-13 Thread Ilia Alshanetsky
iliaa Tue Jun 13 20:19:37 2006 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/domelement.c Log: Removed unused variables. http://cvs.php.net/viewcvs.cgi/php-src/ext/dom/element.c?r1=1.36.2.4.2.1&r2=1.36.2.4.2.2&diff_format=u Index: php-src/ext/dom/el

[PHP-CVS] cvs: php-src(PHP_5_2) /ext/dom element.c

2006-06-02 Thread Rob Richards
rrichards Fri Jun 2 16:17:25 2006 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/domelement.c Log: MFH: add setIdAttribute, setIdAttributeNS and setIdAttributeNode functionality http://cvs.php.net/viewcvs.cgi/php-src/ext/dom/element.c?r1=1.36.2.4&r