summaryrefslogtreecommitdiff
path: root/ext/dom
Commit message (Collapse)AuthorAgeFilesLines
* 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
* - Fix test expectationsMarcus Boerger2005-11-061-5/+5
|
* 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.
* MFH: fix crash setting attr from foreign doc (throws exception)Rob Richards2005-10-272-0/+77
| | | | | add test
* Fixed tests to work with ZTS buildsIlia Alshanetsky2005-10-201-5/+10
|
* Fixed access to uninitialized valueDmitry Stogov2005-09-191-0/+1
|
* MFH: add save options parameterRob Richards2005-09-081-6/+27
|
* MFH: Fixed bug #34276 (setAttributeNS doesn't work with default namespace)Rob Richards2005-08-282-2/+94
| | | | | Add test
* MFHfoobar2005-08-181-1/+1
|
* MFH: Fixed bug #34103 (line numbering not maintained in dom document)Rob Richards2005-08-151-3/+2
|
* - Bumber up yearfoobar2005-08-0337-37/+37
|
* Allow NULL namespaceURI for getAttributeNodeNSRob Richards2005-07-071-1/+1
|
* - Fixed bugs #33431, #33432 ("int" used instead of "long" in parameter parsing)foobar2005-06-263-3/+6
|
* fix testfoobar2005-06-231-1/+1
|
* Fixed test file according to latest debug_backtrace() fixesDmitry Stogov2005-06-231-2/+2
|
* - Fix bug #33299 (php:function no longer handles returned dom objects)Rob Richards2005-06-223-35/+69
| | | | | - maybe fix #33431/33432
* Debug backtrace was fixedDmitry Stogov2005-06-221-2/+22
|
* Improved PHP extension loading mechanism with support for module ↵Dmitry Stogov2005-06-171-1/+11
| | | | dependencies and conflicts
* - Unify the "configure --help" textsfoobar2005-05-291-2/+2
|
* - correct fix for bug #33059Rob Richards2005-05-202-15/+17
| | | | | - fix issue in other methods
* Fixed bug #33059 (crash when moving xml attribute set in dtd).Ilia Alshanetsky2005-05-191-1/+0
|
* - Added PHP_INSTALL_HEADERS() macrofoobar2005-05-071-0/+1
| | | | | | | - Fixed several VPATH build issues - Changed all awk calls to use $AWK - Changed all mkdir calls to use "$php_shtool mkdir"
* Fix bug #32930 (class extending DOMDocument doesn't clone properly)Rob Richards2005-05-031-6/+12
|
* - Made the libxml related stuff to error out if someone does --disable-allfoobar2005-04-271-1/+5
| | | | | or --disable-libxml. Better than silently just leave the ext out..
* php_error() -> php_error_docref().Ilia Alshanetsky2005-04-218-33/+33
|
* Fix bug #32755 Segfault in replaceChild() when DocumentFragment has no childrenRob Richards2005-04-182-1/+12
| | | | | update test
* fix memory corruption on 64bit in imagefttext(),Andrey Hristov2005-04-101-1/+2
| | | | | domdocument::load() and domdocument::loadxml()
* - Fixed bug #32615 (Segfault in replaceChild() using fragment whenRob Richards2005-04-082-116/+125
| | | | | | previousSibling is NULL) - add test
* fix testRob Richards2005-04-081-1/+1
|
* use new error handling when not throwing exceptionsRob Richards2005-02-202-5/+12
|
* Fragment must have associated document to append xml otherwise it is read-onlyRob Richards2005-02-181-0/+5
|
* Fixed bug #32011 (Fragments which replaced Nodes are not globaly useable)Rob Richards2005-02-181-3/+48
|
* No tabs herefoobar2005-02-151-1/+1
|
* 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
|
* - Fix dependencyMarcus Boerger2005-01-081-1/+1
|
* allow parser flags to be passed to xinclude()Rob Richards2005-01-021-3/+7
|
* add optional parameter to pass libxml document load optionsRob Richards2004-12-051-12/+37
|
* add testRob Richards2004-12-041-0/+38
|
* Fixed bug #28817 (Var problem when extending domDocument). (Georg)Rob Richards2004-12-041-0/+1
|
* fix testsAntony Dovgal2004-12-023-3/+3
|
* prototype fixes (Jakub Vrána)Rob Richards2004-11-1820-89/+89
|
* add DOMDocument xmlEncoding, xmlStandalone, xmlVersion (spec name changes)Rob Richards2004-10-073-24/+4
| | | | | | | | 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
* fix segfault in appendXML due to libxml bugRob Richards2004-10-071-0/+37
|
* add evaluate() method to support all xpath expressionsRob Richards2004-10-032-41/+81
|
* 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
|
* if $doc->recover = true; set error_reporting to (old | E_WARNING)Christian Stocker2004-08-251-1/+8
| | | | | This way, you can't silence XML parse errors with the @ character