summaryrefslogtreecommitdiff
path: root/ext/dom/php_dom.c
Commit message (Collapse)AuthorAgeFilesLines
...
* fix bug #39035 (Compatibilty issue between DOM and ze1_compatibility_modeRob Richards2006-10-041-1/+1
|
* fix underlying issue for bug #38438Rob Richards2006-08-141-2/+2
|
* nuke unused callRob Richards2006-06-061-1/+0
|
* Final ze1_compat restoration - it was mostly done by hand, so if anybodyZeev Suraski2006-06-051-0/+21
| | | | | | spots any (new) problems, let me know. Test wise, the same tests that failed before are failing now.
* MFH: add registerNodeClass() methodRob Richards2006-05-221-3/+46
| | | | | | - update attribute isID functionality - add test
* Synch from HEADRob Richards2006-05-171-0/+2
| | | | | | - Fix bug #37456 (DOMElement->setAttribute() loops forever) - update iterators for engine change merged from HEAD
* - ze1 cleanup (bjori) /thxMarcus Boerger2006-05-101-15/+0
|
* - Update after api changesMarcus Boerger2006-05-101-6/+2
|
* Fix bug #37277 (cloning Dom Documents or Nodes does not work)Rob Richards2006-05-031-1/+0
| | | | | | Proper fix for bug #36859 add test
* fix bug #36898 (__set() leaks in classes extending internal ones)Antony Dovgal2006-03-291-10/+4
| | | | | | | | | Added: ZEND_API void zend_object_std_init(zend_object *object, zend_class_entry *ce TSRMLS_DC) ZEND_API void zend_object_std_dtor(zend_object *object TSRMLS_DC) to initialize and destroy zend_object structs
* fix #36859 (DOMElement crashes when calling __construct when clone'ing)Antony Dovgal2006-03-261-0/+1
|
* Fixed bug #36756 (DOMDocument::removeChild corrupts node)Rob Richards2006-03-181-0/+2
| | | | | add test
* bump year and license versionfoobar2006-01-011-3/+3
|
* - Fix exportMarcus Boerger2005-12-171-3/+3
|
* Fixed bug #35342 (isset(DOMNodeList->length) returns false)Rob Richards2005-11-231-0/+37
| | | | | add test
* Allow recursive calls to __get/__set for different propertiesDmitry Stogov2005-11-151-2/+1
|
* MFH: fix #35197 (Destructor is not called) and similar issues in other ↵Antony Dovgal2005-11-141-2/+2
| | | | extensions
* This SimpleXML requirement is no longer needed and by removing it weRasmus Lerdorf2005-11-051-8/+0
| | | | | | remove a circular dep where it was impossible to build simplexml shared and not load it.
* Fixed access to uninitialized valueDmitry Stogov2005-09-191-0/+1
|
* MFHfoobar2005-08-181-1/+1
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* - Fix bug #33299 (php:function no longer handles returned dom objects)Rob Richards2005-06-221-0/+34
| | | | | - maybe fix #33431/33432
* Improved PHP extension loading mechanism with support for module ↵Dmitry Stogov2005-06-171-1/+11
| | | | dependencies and conflicts
* Fix bug #32930 (class extending DOMDocument doesn't clone properly)Rob Richards2005-05-031-6/+12
|
* php_error() -> php_error_docref().Ilia Alshanetsky2005-04-211-2/+2
|
* Fixed bug #31878 (Segmentation fault using clone keyword on nodes)Rob Richards2005-02-091-1/+1
|
* Fixed bug #28817 (Var problem when extending domDocument).Rob Richards2005-01-201-2/+34
|
* revert fix for bug #28817 - fix is badRob Richards2005-01-111-1/+0
|
* Fixed bug #28817 (Var problem when extending domDocument). (Georg)Rob Richards2004-12-041-0/+1
|
* add DOMDocument xmlEncoding, xmlStandalone, xmlVersion (spec name changes)Rob Richards2004-10-071-2/+3
| | | | | | | | add DOMText isElementContentWhitespace (spec name change) - old props/method kept for BC. - spec names changed when Level 3 went from Draft to Recommendation nuke some unused code
* remove cloning under ze1_compatibility_modeRob Richards2004-08-301-7/+29
| | | | | - minor BC break but doesnt work right under compat mode anyways
* Added DomDocument->recover property for parsing not well-formed XML Documents.Christian Stocker2004-08-131-0/+2
|
* - Fixed Bug #29354 Exception constructor marked as both public andMarcus Boerger2004-07-251-1/+0
| | | | | | | | protected # If the constructor should be protected then it needs to be overwritten # with a method that simply calls the parent, this function simply changes # the visibility of the original function and makes that (public+protected)
* Fixed bug #28771 (Segfault when using xslt and clone)Rob Richards2004-06-151-1/+25
| | | | | Add test case for bug #28721
* namespace/tagname validation fixes (Adam Trachtenberg)Rob Richards2004-05-271-16/+44
| | | | | added new test
* constructors throw DOMExceptionRob Richards2004-05-161-1/+2
| | | | | | | | add DOM_PHP_ERR DomException code validate tagnames in constructors use C style comments update TODO
* Fix class namesMarcus Boerger2004-03-291-31/+31
|
* Update for new read_property APIStanislav Malyshev2004-03-211-2/+2
|
* Fix bug #27436 dom_import_simplexml innaccurateRob Richards2004-03-011-3/+20
| | | | | | extensions register callbacks to export nodes prevents segfault passing invalid objects to import functions
* add dtor to cleanup iterator related dataRob Richards2004-02-171-5/+16
|
* implement clone functionality to fix segfaultRob Richards2004-02-171-7/+31
| | | | | | | DomNode->clone() creates new doc proxy if document is cloned remove printf from xpath fix remaining invalid object state issues
* allow certain methods to be called statically again:Rob Richards2004-02-151-2/+1
| | | | | | | | | | domdocument (all load methods) domimplementation (all methods) switch to zend_parse_method_parameters for consistancy insure object parameters are correct class types convert zvals to correct type if needed for property writes fix a few segfaults found while testing
* Fixed compile warnings.Ilia Alshanetsky2004-02-041-3/+3
|
* - Update with new destructor codeZeev Suraski2004-02-041-8/+8
|
* update constructors so they cant be called staticallyRob Richards2004-01-221-1/+0
|
* fix getElementsByTagName and getElementsByTagNameNS - allow *Rob Richards2004-01-131-2/+2
|
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* no longer need to cleanup temp varRob Richards2003-12-171-4/+0
|
* Removed duplicate php_libxml_(init|shutdown) they are already done byIlia Alshanetsky2003-12-161-4/+0
| | | | | ext/libxml.
* fix getElementsByTagname iterationRob Richards2003-12-081-10/+12
|