Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | I hope that this is a better explanation as unknown. | Egon Schmid | 2001-12-02 | 1 | -1/+1 | |
| | ||||||
* | Last commit: | Markus Fischer | 2001-12-01 | 1 | -62/+100 | |
| | | | | | | | | | | | | | | | | | | | | | - Fix segfault in xmldoc(). - Proper free zval in php_xpathptr_eval(). This one: - Fix segfault in php_xpathptr_eval(). - Fix win32 build (TSRMLS_FETCH issues). - More sanity checking in php_xpath_get_object(), php_xpath_get_context() and php_dom_get_object(). - Moved macros into header file. - Register le_domxmldtd, le_domxmlcdatap (removes anoying warning message on shutdown). - Fig segfault in node_children() with unsupported node types. - Fix leak in php_domobject_new() with unsupported note types. - Fix leak when freeing xpath context/objects. - Reverted behaviour change to append_child() [old crashes]. - set_content() also sets the node->content property. # Testers/patches/contribs welcome. | |||||
* | - introduced several macros to simply code (done by Markus Fischer) | Uwe Steinmann | 2001-11-28 | 1 | -480/+344 | |
| | ||||||
* | Fixed some protos. If pi means processing instruction, it should be written ↵ | Egon Schmid | 2001-11-25 | 1 | -47/+49 | |
| | | | | IMHO in uppercase characters. | |||||
* | - add functions clone_node(), is_blank_node(), create_entity_reference() | Uwe Steinmann | 2001-11-21 | 1 | -8/+152 | |
| | | | | | | - fixed bug in node_name() - fixed behavior of append_child(), it now adds a child a not a sibling | |||||
* | * zend_module_entry change: apino, debug and zts are moved first, | Stig Bakken | 2001-10-11 | 1 | -0/+2 | |
| | | | | | | see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig) | |||||
* | Back-substitute for Z_* macro's. If it breaks some extension (the script ↵ | Jeroen van Wolffelaar | 2001-09-25 | 1 | -19/+19 | |
| | | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know. | |||||
* | Don't manually register the resource, let php_domobject_new do it for us. | Joey Smith | 2001-09-19 | 1 | -1/+0 | |
| | | | | | | | | This fixes and elusive SIGSEGV. Bug id'd and fixed by Ivo Hulinsky <huld@fido.cz>. This fixes #13322. | |||||
* | - Don't wrap lines... this is annoying while coding. | Derick Rethans | 2001-09-09 | 1 | -2/+2 | |
| | ||||||
* | have this go through php's error warning system | Sterling Hughes | 2001-09-09 | 1 | -1/+1 | |
| | ||||||
* | ws fix, MFB | Sterling Hughes | 2001-09-09 | 1 | -9/+11 | |
| | ||||||
* | Change DOM-XML's error reporting to E_WARNING which is more appropriate | Sterling Hughes | 2001-09-09 | 1 | -10/+25 | |
| | ||||||
* | Fix bug #13025. | Joey Smith | 2001-08-29 | 1 | -0/+1 | |
| | ||||||
* | Fix 1st case of #9893. 2nd case was already fixed in previous commit. | Joey Smith | 2001-08-26 | 1 | -0/+6 | |
| | ||||||
* | Some changes to help out previous users of domxml... | Joey Smith | 2001-08-21 | 1 | -1/+4 | |
| | | | | | | node::tagname == node::name. Add property "type" to textnode types. | |||||
* | Kill some duplicate PHP_FALIAS()'s. | Joey Smith | 2001-08-14 | 1 | -35/+0 | |
| | | | | | | Many of these were commented out, but I killed them anyways just to be consistent. | |||||
* | Group PHP_FE and PHP_FALIAS with their own kind. | Joey Smith | 2001-08-14 | 1 | -11/+13 | |
| | ||||||
* | Fix my own ws errors. | Joey Smith | 2001-08-14 | 1 | -6/+6 | |
| | ||||||
* | Register le_domxmltextp. | Joey Smith | 2001-08-14 | 1 | -0/+1 | |
| | ||||||
* | Don't hammer the resource type right off the bat. | Joey Smith | 2001-08-14 | 1 | -3/+12 | |
| | ||||||
* | Trim ws only lines. | Joey Smith | 2001-08-14 | 1 | -9/+9 | |
| | ||||||
* | ws fix. Also added some missing protos and fold tags. | foobar | 2001-08-14 | 1 | -489/+632 | |
| | ||||||
* | Remove unused variable and fix small mental error. | Joey Smith | 2001-08-14 | 1 | -2/+1 | |
| | ||||||
* | - More Engine 2 work. | Andi Gutmans | 2001-08-13 | 1 | -2/+2 | |
| | ||||||
* | Change to Z_* macros. | Joey Smith | 2001-08-13 | 1 | -36/+38 | |
| | ||||||
* | Track down a few more functions that don't check for 0 args and use | Rasmus Lerdorf | 2001-08-13 | 1 | -2/+3 | |
| | | | | | faster mechanism | |||||
* | We don't consistently check for args passed to functions that don't | Rasmus Lerdorf | 2001-08-13 | 1 | -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 Smith | 2001-08-11 | 1 | -4/+4 | |
| | ||||||
* | Whitespace | Zeev Suraski | 2001-08-11 | 1 | -9/+9 | |
| | ||||||
* | compile fix (missing TSRMLS_CC) | foobar | 2001-08-10 | 1 | -1/+1 | |
| | ||||||
* | K&R-ify the switch statments. | Joey Smith | 2001-08-09 | 1 | -29/+31 | |
| | ||||||
* | Commit acutal code only, will do ws on another pass. | Joey Smith | 2001-08-09 | 1 | -9/+39 | |
| | ||||||
* | Revert patch to seperate code from whitespace changes. | Joey Smith | 2001-08-09 | 1 | -88/+58 | |
| | ||||||
* | Restore xpath_eval() and the underlying php_xpathptr_eval(). | Joey Smith | 2001-08-09 | 1 | -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 these | foobar | 2001-08-07 | 1 | -2/+2 | |
| | ||||||
* | Yet another TSRM fix. | foobar | 2001-08-07 | 1 | -59/+69 | |
| | ||||||
* | - TSRMLS_FETCH work | Zeev Suraski | 2001-08-05 | 1 | -5/+10 | |
| | | | | | - whitespace fixes | |||||
* | More TSRMLS_FETCH annihilation | Zeev Suraski | 2001-07-31 | 1 | -4/+6 | |
| | ||||||
* | More TSRMLS_FETCH work | Zeev Suraski | 2001-07-31 | 1 | -62/+60 | |
| | ||||||
* | Make this compile in ZTS mode. | foobar | 2001-07-30 | 1 | -2/+5 | |
| | ||||||
* | Avoid TSRMLS_FETCH()'s, and clean up a bit of stale extern's and layout on ↵ | Zeev Suraski | 2001-07-30 | 1 | -16/+17 | |
| | | | | the way | |||||
* | Close Bug #10235. | Joey Smith | 2001-07-16 | 1 | -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 Smith | 2001-07-08 | 1 | -3/+6 | |
| | | | | | | This should fix bugs: 11192, 10899 | |||||
* | * include "config.h" if HAVE_CONFIG_H is defined (for standalone dso build) | Stig Bakken | 2001-05-24 | 1 | -0/+4 | |
| | ||||||
* | Open season on memory leaks, shoot all you can. | Andrei Zmievski | 2001-05-11 | 1 | -28/+70 | |
| | ||||||
* | Start cleaning up domxml memory leaks. Still much stuff to do. | Andrei Zmievski | 2001-05-11 | 1 | -21/+56 | |
| | ||||||
* | - added domxml_version() to retrieve version of libxml | Uwe Steinmann | 2001-04-09 | 1 | -0/+10 | |
| | ||||||
* | Fixed bug: #10040. | foobar | 2001-03-29 | 1 | -21/+23 | |
| | ||||||
* | Fixed a typo. | foobar | 2001-03-26 | 1 | -2/+2 | |
| | ||||||
* | - fixed some bugs with xpath | Uwe Steinmann | 2001-03-22 | 1 | -20/+25 | |
| |