summaryrefslogtreecommitdiff
path: root/ext/dom/php_dom.h
Commit message (Collapse)AuthorAgeFilesLines
* Use ZSTR_ API to access zend_string elements (this is just renaming without ↵Dmitry Stogov2015-06-301-1/+1
| | | | semantick changes).
* better approach to fix bug #69846Anatol Belski2015-06-191-2/+1
| | | | don't destroy the current iterator object too early
* partial fix to bug #69846Anatol Belski2015-06-181-1/+2
|
* bump yearXinchen Hui2015-01-151-1/+1
|
* first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-17/+17
|
* Merge branch 'PHP-5.6'Tjerk Meesters2014-10-091-1/+0
|\ | | | | | | | | | | | | | | | | * PHP-5.6: Refactored DOMNodeList array dereferencing implementation Conflicts: ext/dom/nodelist.c ext/dom/php_dom.c
| * Refactored DOMNodeList array dereferencing implementationTjerk Meesters2014-10-091-1/+0
| |
* | Merge branch 'PHP-5.6'Tjerk Meesters2014-10-091-0/+3
|\ \ | |/ | | | | | | | | | | Conflicts: ext/dom/dom_properties.h ext/dom/nodelist.c ext/dom/php_dom.c
| * DOMNodeList elements are accessible through array notationFlorian MARGAINE2014-09-271-0/+3
| | | | | | | | Fixes #67949
| * Make DOMNode::textContent writeableTjerk Meesters2014-09-021-0/+14
| |
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
| |
* | Fix remaining XPath issueNikita Popov2014-04-161-5/+3
| |
* | Mostly fix Dom XPathNikita Popov2014-04-161-2/+8
| |
* | Make DOM mostly workNikita Popov2014-04-151-3/+2
| |
* | Start working on dom extensionNikita Popov2014-04-151-7/+7
| | | | | | | | Nowhere near compiling yet...
* | Use better data structures (incomplete)Dmitry Stogov2014-02-101-1/+1
|/
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* MFH: fix ws, cs and foldingAntony Dovgal2008-08-141-0/+9
|
* MFH: New way for check void parametersFelipe Pena2008-03-101-2/+1
|
* backport functionality to call user functions within XPathRob Richards2008-01-251-0/+11
| | | | | add test
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* MFH: Missing header includeHannes Magnusson2006-06-201-0/+1
|
* MFH: add registerNodeClass() methodRob Richards2006-05-221-0/+1
| | | | | | - update attribute isID functionality - add test
* - Update after api changesMarcus Boerger2006-05-101-1/+1
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* php_error() -> php_error_docref().Ilia Alshanetsky2005-04-211-1/+1
|
* use new error handling when not throwing exceptionsRob Richards2005-02-201-0/+1
|
* remove cloning under ze1_compatibility_modeRob Richards2004-08-301-1/+1
| | | | | - minor BC break but doesnt work right under compat mode anyways
* zend_default_classes.h -> zend_exceptions.hZeev Suraski2004-02-121-1/+1
|
* update constructors so they cant be called staticallyRob Richards2004-01-221-0/+1
|
* XPath query returns nodelist object rather than arrayRob Richards2004-01-101-0/+2
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-2/+2
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* implement namednodemap and nodelistRob Richards2003-11-291-2/+26
| | | | | | fix xsl/dom integration under windows update tests and examples
* move some definitions to xml_common.hChristian Stocker2003-11-291-1/+0
|
* changing dom_object_get_data to php_dom_object_get_data and PHP_DOM_EXPORT itChristian Stocker2003-11-281-0/+1
| | | | | (by Rob Richards)
* add interop with simplexml - dom_import_simplexmlRob Richards2003-10-261-8/+4
| | | | | fix cloneNode with elements
* move some document properties internallyRob Richards2003-09-081-1/+1
| | | | | add xpath namespace support (by Shane)
* changes to php_dom.h for last commitRob Richards2003-09-031-3/+2
| | | | | replaced removed closing tags - doh
* implement stricterrorcheckRob Richards2003-08-241-1/+2
| | | | | | | fix clonenode cleanup error routines forgot these files
* reworking xml namespace supportRob Richards2003-07-271-1/+2
| | | | | | add node lookupNamespaceURI and lookupPrefix add attr isId
* initial xpath implementationRob Richards2003-07-241-1/+4
| | | | | make dom_object generic
* implement read only exceptionsRob Richards2003-07-121-0/+2
| | | | | | implement notation nodes changes for spec conformance
* remove global error handling - use of libxml globals is a bad thingRob Richards2003-07-101-0/+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