summaryrefslogtreecommitdiff
path: root/ext/dom
Commit message (Collapse)AuthorAgeFilesLines
* Fixed test file according to latest debug_backtrace() fixesDmitry Stogov2005-06-231-2/+2
|
* MFH: Fix bug #33299 (php:function no longer handles returned dom objects)Rob Richards2005-06-223-35/+69
| | | | | - maybe fix #33431/33432
* MFH: correct fix for bug #33059Rob Richards2005-05-202-15/+17
| | | | | - fix issue in other methods
* MFH: Fixed bug #33059 (crash when moving xml attribute set in dtd).Ilia Alshanetsky2005-05-191-1/+0
|
* MFH: Fix bug #32930 (class extending DOMDocument doesn't clone properly)Rob Richards2005-05-031-6/+12
|
* MFHfoobar2005-04-271-1/+5
|
* MFH: Fix bug #32755 Segfault in replaceChild() when DocumentFragment has no ↵Rob Richards2005-04-182-1/+12
| | | | | | | children update test
* - MFH Fixed bug #32615 (Segfault in replaceChild() using fragment whenRob Richards2005-04-082-116/+125
| | | | | | previousSibling is NULL) - add test
* fix testRob Richards2005-04-081-3/+23
|
* MFH: Fixed bug #32011 (Fragments which replaced Nodes are not globaly useable)Rob Richards2005-02-181-3/+48
|
* MFH: Fixed bug #31878 (Segmentation fault using clone keyword on nodes)Rob Richards2005-02-091-1/+1
|
* MFH: Fixed bug #28817 (Var problem when extending domDocument)Rob Richards2005-01-201-2/+34
|
* MFH: revert fix for bug #28817 - fix is badRob Richards2005-01-111-1/+0
|
* MFH: Fixed bug #28817 (Var problem when extending domDocument). (Georg)Rob Richards2004-12-041-0/+1
| | | | | add test
* This commit was manufactured by cvs2svn to create branch 'PHP_5_0'.SVN Migration2004-12-041-0/+38
|
* MFH: fix testsAntony Dovgal2004-12-024-4/+4
|
* MFH: prototype fixes (Jakub Vrána)Rob Richards2004-11-1820-89/+89
|
* MFH: remove cloning under ze1_compatibility_modeRob Richards2004-08-306-16/+38
| | | | | - minor BC break but doesnt work right under compat mode anyways
* not experimentalRob Richards2004-08-261-5/+0
|
* MFH (fix test)Christian Stocker2004-08-111-1/+1
|
* MFHMarcus Boerger2004-08-031-1/+0
|
* add missing optional value param to createElementNS (chregu)Rob Richards2004-07-181-5/+5
|
* Fixed bug #28771 (Segfault when using xslt and clone)Rob Richards2004-06-152-1/+510
| | | | | Add test case for bug #28721
* Fix bug #28721 (appendChild() and insertBefore() unset DOMText)Rob Richards2004-06-131-63/+147
|
* Fix bug #28584: DOMText::splitText() does not split text properly (benjcarson)Rob Richards2004-05-3120-171/+157
| | | | | Prototype fixes
* Fix prototypesZeev Suraski2004-05-311-11/+11
|
* No meaning for unsignedZeev Suraski2004-05-301-1/+1
|
* namespace/tagname validation fixes (Adam Trachtenberg)Rob Richards2004-05-276-47/+489
| | | | | added new test
* fixing the tests so to work with the new var_dump() (dumping private andAndrey Hristov2004-05-201-0/+11
| | | | | protected member variables)
* constructors throw DOMExceptionRob Richards2004-05-1613-38/+85
| | | | | | | | add DOM_PHP_ERR DomException code validate tagnames in constructors use C style comments update TODO
* C++ comments.Ilia Alshanetsky2004-04-291-1/+1
|
* register_namespace changed to registerNamespace for consistencyRob Richards2004-04-061-1/+1
|
* use new style constructorsRob Richards2004-03-3112-49/+50
| | | | | fix return for nodelist item
* DOM_RET_OBJ for return_value needs to be followed by returnMarcus Boerger2004-03-291-1/+3
|
* Remove debug codeMarcus Boerger2004-03-291-2/+1
|
* Fix testsMarcus Boerger2004-03-293-9/+4
|
* Fixed compiler warnings.Ilia Alshanetsky2004-03-292-10/+10
|
* Fix class namesMarcus Boerger2004-03-291-31/+31
|
* Update for new read_property APIStanislav Malyshev2004-03-211-2/+2
|
* Rename hasMore() to valid() as discussed. (Part IV)Marcus Boerger2004-03-081-2/+2
|
* Fix bug #27467: domDocument::load() called from class method crashesRob Richards2004-03-031-2/+5
| | | | | | the methods can be called statically only from within classes which are not extending DomDocument
* 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 optional third parameter to support namespace in constructorRob Richards2004-02-221-3/+29
|
* always return domnodelist unless errorRob Richards2004-02-181-34/+30
|
* correct implementation of prefix write propertyRob Richards2004-02-181-23/+28
|
* add dtor to cleanup iterator related dataRob Richards2004-02-171-5/+16
|
* implement clone functionality to fix segfaultRob Richards2004-02-176-128/+169
| | | | | | | DomNode->clone() creates new doc proxy if document is cloned remove printf from xpath fix remaining invalid object state issues
* issue warning if object is in invalid state when dealing with propertiesRob Richards2004-02-1610-2/+266
|
* switch to zend_parse_method_parameters for consistancyRob Richards2004-02-152-26/+63
| | | | | | | insure object parameters are correct class types convert zvals to correct type if needed for property writes fix a few segfaults found while testing
* allow certain methods to be called statically again:Rob Richards2004-02-156-100/+280
| | | | | | | | | | 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