summaryrefslogtreecommitdiff
path: root/ext/dom/php_dom.c
Commit message (Collapse)AuthorAgeFilesLines
...
* check node type for ->attributes and ->childNodesRob Richards2003-12-021-0/+1
|
* remove call to xmlMemoryDumpRob Richards2003-11-301-1/+1
|
* implement namednodemap and nodelistRob Richards2003-11-291-17/+111
| | | | | | fix xsl/dom integration under windows update tests and examples
* changing dom_object_get_data to php_dom_object_get_data and PHP_DOM_EXPORT itChristian Stocker2003-11-281-5/+5
| | | | | (by Rob Richards)
* add interop with simplexml - dom_import_simplexmlRob Richards2003-10-261-261/+50
| | | | | fix cloneNode with elements
* implement namespace nodesRob Richards2003-10-201-10/+32
| | | | | | | fix getElementsByTagName fixes to attribute namespaces remove safemode stuff as its handled in streams
* add global init/shutdown functions for libxml. this is required asShane Caraveo2003-10-191-2/+7
| | | | | | shutdown is not safe to call multiple times, and to make streams work correctly some init stuff has to happen in a specific order
* some namespace fixesRob Richards2003-10-061-2/+5
| | | | | fix compiler warning
* implement isDefaultNameSpace and baseURIRob Richards2003-10-051-18/+14
| | | | | | | | | 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
* Sync with new APIZeev Suraski2003-10-051-1/+0
|
* add property_get_ptr handlerRob Richards2003-09-291-0/+12
| | | | | | fix possible segfault in xpath add wide character support for characterdata
* move some document properties internallyRob Richards2003-09-081-10/+46
| | | | | add xpath namespace support (by Shane)
* ZTS fix.Sebastian Bergmann2003-09-031-1/+1
|
* changes to php_dom.h for last commitRob Richards2003-09-031-0/+72
| | | | | replaced removed closing tags - doh
* add document HTML load/save methodsRob Richards2003-09-031-73/+24
| | | | | | | add document standalone validate method cleanup some prototype declarations domexception inherits from default exception
* implement stricterrorcheckRob Richards2003-08-241-1/+18
| | | | | | fix clonenode cleanup error routines
* allow building without libxml2 under win32Wez Furlong2003-08-221-2/+1
|
* fix infinite loop in normalizeRob Richards2003-08-201-2/+5
|
* fix buildWez Furlong2003-08-191-1/+0
|
* Get rid of PZVAL_UNLOCK() - fix untestedZeev Suraski2003-08-181-2/+1
|
* remove xml debug codeRob Richards2003-07-271-1/+1
|
* reworking xml namespace supportRob Richards2003-07-271-39/+24
| | | | | | add node lookupNamespaceURI and lookupPrefix add attr isId
* initial xpath implementationRob Richards2003-07-241-20/+90
| | | | | make dom_object generic
* API updateZeev Suraski2003-07-221-2/+2
|
* fix for Bug #24715 segfault in dom_document_create_elementRob Richards2003-07-191-1/+1
| | | | | removed xmlmemorydump debug code
* implement read only exceptionsRob Richards2003-07-121-3/+61
| | | | | | implement notation nodes changes for spec conformance
* remove global error handling - use of libxml globals is a bad thingRob Richards2003-07-101-22/+1
| | | | | | | | | add domDocument properties for parsing options: validateOnParse, resolveExternals, preserveWhiteSpace, substituteEntities implement custom parsing to avoid use of globals implement local errors while parsing errors displayed until error objects implemented
* implement node proxies: next phase of interopRob Richards2003-07-071-60/+71
|
* Fit the error handler into the naming scheme and get rid of trailing new linesMarcus Boerger2003-06-161-4/+10
|
* Add an error handler (thx to timm for the idea)Marcus Boerger2003-06-151-0/+15
|
* remove code no longer neededRob Richards2003-06-151-78/+0
| | | | | fix format Output property
* use xmlInitParser instead of xmlInitThreadsRob Richards2003-06-141-10/+2
| | | | | reentrant safe as well no need for xml_parser_inited
* fix xml_parser_inited on win32Rob Richards2003-06-141-1/+1
| | | | | add common structs for better interoprability
* add node->isSupported()Rob Richards2003-06-121-3/+26
| | | | | | | | 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-89/+115
| | | | | re-work of internal object handling
* i ain't know domdomSterling Hughes2003-06-071-3/+3
|
* leftover.Sterling Hughes2003-06-071-1/+1
| | | | | its wholeText not whole_text
* fix more memory overrunsRob Richards2003-06-071-29/+50
| | | | | | | initial definition for document ref counting fixed property access to support all objects clear property handler from invalid objects until ref count implemented
* fix double free issueRob Richards2003-06-061-23/+31
| | | | | fix property access within invalid objects and failed reads
* fix a bunch of memory overruns, and uninitialized variable usesSterling Hughes2003-06-051-0/+2
| | | | | fixes crash on sample script rob sent me
* fig segv on make install (double destroy badness)Sterling Hughes2003-06-051-3/+10
|
* Inital cut of new dom extensionRob Richards2003-06-051-0/+1144
PHP5 only