summaryrefslogtreecommitdiff
path: root/ext/dom/node.c
Commit message (Collapse)AuthorAgeFilesLines
...
* implement workaround for bug #38823 (DOMComment->appendData does nothing)Rob Richards2006-09-161-7/+5
| | | | | | fix bug #38850 (lookupNamespaceURI doesn't return default namespace) add test
* fix types of the variablesAntony Dovgal2006-08-071-3/+3
|
* improved code (after suggestion by helly)Christian Stocker2006-07-161-6/+3
|
* Added DOMNode::getNodePath() for getting an XPath for a node.Christian Stocker2006-07-161-0/+30
|
* MFH: add C14N() and C14NFile() methods to perform XML canonicalizationRob Richards2006-05-261-0/+187
| | | | | add test
* fix possible crash in textContentRob Richards2006-01-251-1/+1
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* tix fypoAntony Dovgal2005-12-181-1/+1
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* - correct fix for bug #33059Rob Richards2005-05-201-3/+3
| | | | | - fix issue in other methods
* php_error() -> php_error_docref().Ilia Alshanetsky2005-04-211-7/+7
|
* Fix bug #32755 Segfault in replaceChild() when DocumentFragment has no childrenRob Richards2005-04-181-1/+3
| | | | | update test
* - Fixed bug #32615 (Segfault in replaceChild() using fragment whenRob Richards2005-04-081-116/+50
| | | | | | previousSibling is NULL) - add test
* Fixed bug #32011 (Fragments which replaced Nodes are not globaly useable)Rob Richards2005-02-181-3/+48
|
* prototype fixes (Jakub Vrána)Rob Richards2004-11-181-16/+16
|
* remove cloning under ze1_compatibility_modeRob Richards2004-08-301-2/+2
| | | | | - minor BC break but doesnt work right under compat mode anyways
* 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-311-25/+24
| | | | | Prototype fixes
* No meaning for unsignedZeev Suraski2004-05-301-1/+1
|
* correct implementation of prefix write propertyRob Richards2004-02-181-23/+28
|
* implement clone functionality to fix segfaultRob Richards2004-02-171-3/+8
| | | | | | | 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-161-0/+91
|
* switch to zend_parse_method_parameters for consistancyRob Richards2004-02-151-43/+74
| | | | | | insure object parameters are correct class types convert zvals to correct type if needed for property writes
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* fix libxml mem leakRob Richards2003-12-271-1/+1
|
* Fixed bug #26723 (domNode::appendChild() changes child node namespace)Rob Richards2003-12-271-9/+20
| | | | | apply fix to insertBefore and replaceChild
* fix possible mem leak when element has childrenRob Richards2003-12-091-3/+3
|
* allow assignment to $node->nodeValue to work for moreWez Furlong2003-12-091-0/+2
| | | | | | objects and in situations where the rvalue is not a string. (Fixes a segfault in that case)
* check node type for ->attributes and ->childNodesRob Richards2003-12-021-7/+21
|
* implement namednodemap and nodelistRob Richards2003-11-291-43/+9
| | | | | | fix xsl/dom integration under windows update tests and examples
* add interop with simplexml - dom_import_simplexmlRob Richards2003-10-261-18/+41
| | | | | fix cloneNode with elements
* implement namespace nodesRob Richards2003-10-201-6/+17
| | | | | | | fix getElementsByTagName fixes to attribute namespaces remove safemode stuff as its handled in streams
* fix crash building nodeNameShane Caraveo2003-10-051-2/+4
|
* implement isDefaultNameSpace and baseURIRob Richards2003-10-051-5/+51
| | | | | | | | | nodeName and tagName return qualified names fix removeAttributeNode - takes domAttr as parameter better uri and file handling for document load method fix possible segfault when document is freed set get_property_ptr_ptr handler to NULL
* implement stricterrorcheckRob Richards2003-08-241-45/+44
| | | | | | fix clonenode cleanup error routines
* allow building without libxml2 under win32Wez Furlong2003-08-221-0/+2
|
* reworking xml namespace supportRob Richards2003-07-271-38/+104
| | | | | | add node lookupNamespaceURI and lookupPrefix add attr isId
* implement read only exceptionsRob Richards2003-07-121-18/+76
| | | | | | implement notation nodes changes for spec conformance
* implement node proxies: next phase of interopRob Richards2003-07-071-22/+26
|
* remove code no longer neededRob Richards2003-06-151-14/+1
| | | | | fix format Output property
* add node->isSupported()Rob Richards2003-06-121-2/+13
| | | | | | | | add domimplementation->hasFeature() add formatOutput property (extends DOM) call xmlFreeDoc when doc is no longer referenced rather than custom code save and savexml now format based on formatOutput property
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* implmentation of document ref counting for persistanceRob Richards2003-06-091-97/+93
| | | | | re-work of internal object handling
* fix a bunch of memory overruns, and uninitialized variable usesSterling Hughes2003-06-051-0/+4
| | | | | fixes crash on sample script rob sent me
* Inital cut of new dom extensionRob Richards2003-06-051-0/+1274
PHP5 only