summaryrefslogtreecommitdiff
path: root/ext/domxml/php_domxml.c
Commit message (Collapse)AuthorAgeFilesLines
...
* - More Engine 2 work.Andi Gutmans2001-08-131-2/+2
|
* Change to Z_* macros.Joey Smith2001-08-131-36/+38
|
* Track down a few more functions that don't check for 0 args and useRasmus Lerdorf2001-08-131-2/+3
| | | | | faster mechanism
* We don't consistently check for args passed to functions that don'tRasmus Lerdorf2001-08-131-0/+3
| | | | | | | | | take any args. In some cases we probably want to skip the check for performance reasons, but in other cases where performance is unlikely to be a factor, not throwing a warning on the wrong number of args passed to a function is at best inconsistent, and at worst it could hide a bug. So, add a few such checks. There are still lots of cases out there.
* Let domxml compile with ZendEngine2.Joey Smith2001-08-111-4/+4
|
* WhitespaceZeev Suraski2001-08-111-9/+9
|
* compile fix (missing TSRMLS_CC)foobar2001-08-101-1/+1
|
* K&R-ify the switch statments.Joey Smith2001-08-091-29/+31
|
* Commit acutal code only, will do ws on another pass.Joey Smith2001-08-091-9/+39
|
* Revert patch to seperate code from whitespace changes.Joey Smith2001-08-091-88/+58
|
* Restore xpath_eval() and the underlying php_xpathptr_eval().Joey Smith2001-08-091-58/+88
| | | | | | | | | | | It still leaks like crazy, but does not appear to crash, and seems to work correctly. Anyone who can possibly test this, please do. @- Restore xpath_eval() and php_xpathptr_eval() for 4.0.7. There @ are still some known leaks.
* Missed thesefoobar2001-08-071-2/+2
|
* Yet another TSRM fix.foobar2001-08-071-59/+69
|
* - TSRMLS_FETCH workZeev Suraski2001-08-051-5/+10
| | | | | - whitespace fixes
* More TSRMLS_FETCH annihilationZeev Suraski2001-07-311-4/+6
|
* More TSRMLS_FETCH workZeev Suraski2001-07-311-62/+60
|
* Make this compile in ZTS mode.foobar2001-07-301-2/+5
|
* Avoid TSRMLS_FETCH()'s, and clean up a bit of stale extern's and layout on ↵Zeev Suraski2001-07-301-16/+17
| | | | the way
* Close Bug #10235.Joey Smith2001-07-161-0/+7
| | | | | | This makes domxml_root() work again. It now works equally as well as object method or a simple function.
* This should get xmldocfile() working again.Joey Smith2001-07-081-3/+6
| | | | | | This should fix bugs: 11192, 10899
* * include "config.h" if HAVE_CONFIG_H is defined (for standalone dso build)Stig Bakken2001-05-241-0/+4
|
* Open season on memory leaks, shoot all you can.Andrei Zmievski2001-05-111-28/+70
|
* Start cleaning up domxml memory leaks. Still much stuff to do.Andrei Zmievski2001-05-111-21/+56
|
* - added domxml_version() to retrieve version of libxmlUwe Steinmann2001-04-091-0/+10
|
* Fixed bug: #10040.foobar2001-03-291-21/+23
|
* Fixed a typo.foobar2001-03-261-2/+2
|
* - fixed some bugs with xpathUwe Steinmann2001-03-221-20/+25
|
* - added EntityReference and Notation classUwe Steinmann2001-03-211-75/+109
| | | | | | - fixed handling of PI nodes - implemented more class functions
* Nuke another warning.Sebastian Bergmann2001-03-201-1/+0
|
* - fixed lot of compiler warningsUwe Steinmann2001-03-201-34/+19
|
* - complete rewrite of domxml module.Uwe Steinmann2001-03-201-929/+1617
| | | | | | It is now mostly conform to DOM Level 2 though some classes and methods are still missing
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* - add domxml_unlink_node(), not testedUwe Steinmann2001-02-081-0/+38
|
* - changed naming of some functions (kept compatibility)Uwe Steinmann2001-01-261-11/+20
|
* - Fixed a possible crash bug in xmltree().foobar2001-01-121-2/+4
| | | | | # PR: #7052
* - Get rid of C++ commentsAndi Gutmans2001-01-051-2/+2
|
* - fixed potential segmfault in xmldoc() and xmldocfile()Uwe Steinmann2001-01-051-3/+12
|
* Fix typoRasmus Lerdorf2000-12-281-1/+1
|
* Removed unused variables.foobar2000-12-151-4/+0
|
* Removed unused variable definitions. And libxml can be build NOTfoobar2000-12-091-41/+56
| | | | | to have support for either XPath or XPtr.
* - fixed serveral prototypesUwe Steinmann2000-11-131-25/+27
| | | | | - replaced C++ style comments
* - new function set_content() which is a workaround for bug #6457Uwe Steinmann2000-11-101-18/+81
|
* - Fixed many problems to make xpath workingUwe Steinmann2000-11-101-155/+116
| | | | | | - Each function now expects an object and not a resource anymore I hope this makes it more straightforward for the PHP-Programmer
* - Fixed several error including segm fault (but still one left :-(Uwe Steinmann2000-11-101-8/+16
|
* - Started support for XPath/XPtr (completely untested)Uwe Steinmann2000-11-091-1/+281
|
* Make this compile with libxml2.2.7.foobar2000-11-081-0/+2
|
* No more segfaults.foobar2000-11-011-1/+1
|
* Use zend_register_list_destructors_ex() instead.Andrei Zmievski2000-10-251-3/+3
|
* Mega-patch to get better resource information for modules.Andrei Zmievski2000-10-201-4/+10
| | | | | | | | | | | | | * Fixed a bug in zend_rsrc_list_get_rsrc_type() * Switched register_list_destructors() to use zend_register_list_destructors_ex() instead * Updated all relevant modules to provide the resource type name to register_list_destructors() call * Updated var_dump() to output resource type name instead of number @- Made resource type names visible, e.g. var_dump() and @ get_resource_type() display "file" for file resources. (Andrei)
* last patch reverted, i didn't get the whole picture hereHartmut Holzgraefe2000-08-101-0/+1
|