Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2005-10-03 | - MFH Really allow SXE being shared by not using anything from it directly ↵ | Marcus Boerger | 2 | -5/+6 | |
in SPL | |||||
2005-10-01 | - Allow xpl/simplexml integration with simplexml being built shared | Marcus Boerger | 1 | -0/+1 | |
2005-08-31 | MFH: make sxe_properties_get respect namespace scope | Rob Richards | 1 | -3/+9 | |
2005-08-18 | MFH: Nuked EOLs from error messages | foobar | 1 | -1/+1 | |
2005-08-03 | - Bumber up year | foobar | 3 | -3/+3 | |
2005-07-07 | Missing closing folding marker | Rasmus Lerdorf | 1 | -0/+1 | |
2005-06-30 | - Unify (+ spl can't be build shared so COMPILE_DL_SPL | foobar | 2 | -3/+3 | |
2005-06-17 | Use the new dependency system | foobar | 1 | -1/+7 | |
2005-04-27 | - Made the libxml related stuff to error out if someone does --disable-all | foobar | 1 | -3/+7 | |
or --disable-libxml. Better than silently just leave the ext out.. | |||||
2005-02-27 | - Add tests | Marcus Boerger | 2 | -0/+59 | |
2004-12-05 | add optional parameter to pass libxml document load options | Rob Richards | 1 | -6/+16 | |
2004-08-30 | remove cloning under ze1_compatibility_mode | Rob Richards | 1 | -1/+42 | |
- minor BC break but doesnt work right under compat mode anyways | |||||
2004-08-06 | ZTS Fix | Sara Golemon | 1 | -3/+2 | |
2004-08-05 | php_error() -> php_error_docref() | Ilia Alshanetsky | 2 | -7/+7 | |
2004-08-04 | nuke unused variable | Antony Dovgal | 1 | -1/+0 | |
2004-08-04 | Fix prototypes | Zeev Suraski | 1 | -8/+13 | |
2004-07-25 | renamed registerNamespace() to registerXPathNamespace() | Christian Stocker | 1 | -2/+2 | |
2004-07-25 | added new method SimpleXMLElement->registerNamespace(string prefix, string uri) | Christian Stocker | 1 | -0/+24 | |
"registers a prefix <-> namespaceURI combination for use in a later xpath query. " | |||||
2004-07-18 | Implement extension load-order deps. | Wez Furlong | 1 | -0/+1 | |
2004-05-04 | Update for count_elements handler for overloaded objects. | Wez Furlong | 1 | -1/+2 | |
2004-03-29 | Fix class names | Marcus Boerger | 14 | -68/+68 | |
2004-03-28 | Fix writing of SQLite and SimpleXMl extension and add Rob to the credits | Marcus Boerger | 2 | -2/+2 | |
line of the latter. Add ext/SPL. | |||||
2004-03-24 | added test for property_exists checks. | George Schlossnagle | 1 | -0/+25 | |
2004-03-24 | fixed non-existent elements check | George Schlossnagle | 1 | -1/+17 | |
ref: http://news.php.net/article.php?group=php.internals&article=8660 | |||||
2004-03-21 | Update for new read_property API | Stanislav Malyshev | 1 | -2/+2 | |
2004-03-16 | - Fixed compilation on the 'broken' IRIX native compiler. | Derick Rethans | 1 | -1/+1 | |
2004-03-14 | Add new test | Marcus Boerger | 1 | -0/+21 | |
2004-03-08 | Rename hasMore() to valid() as discussed. (Part II) | Marcus Boerger | 1 | -3/+3 | |
2004-03-01 | Fix bug #27436 dom_import_simplexml innaccurate | Rob Richards | 1 | -2/+15 | |
extensions register callbacks to export nodes prevents segfault passing invalid objects to import functions | |||||
2004-02-13 | Fix bug #27237: Working with simplexml crashes apache2 | Rob Richards | 1 | -7/+26 | |
object dtor must be used to cleanup iterator data correctly Fix asXML() outputing incorrect node | |||||
2004-02-13 | Adding mising declaration (needed for Win32 compilation) | Frank M. Kromann | 1 | -0/+1 | |
2004-02-12 | - Fixed start-up problem if both SPL and SimpleXML were enabled. The | Derick Rethans | 1 | -1/+9 | |
double initialization of apache 1.3 was causing problems here. | |||||
2004-02-12 | zend_default_classes.h -> zend_exceptions.h | Zeev Suraski | 1 | -1/+1 | |
2004-02-11 | Prevent SimpleXML from silently modifying types of variables that are | Zeev Suraski | 1 | -0/+11 | |
assigned to its objects. Implementation notes for overloaded object modules: - If you return a zval which is not otherwise referenced by the extension or the engine's symbol table, its reference count should be 0. - If you receive a value zval in write_property/write_dimension, you may only modify it if its reference count is 1. Otherwise, you must create a copy of that zval before making any changes. You should NOT modify the reference count of the value passed to you. Have fun! | |||||
2004-02-11 | Fix test | Rob Richards | 1 | -0/+1 | |
2004-02-11 | Fix compiler warnings | Rob Richards | 6 | -19/+12 | |
Update tests | |||||
2004-02-10 | Implement get callback for SimpleXML (it now supports pre/post increment | Zeev Suraski | 1 | -1/+16 | |
as well as binary-assign-ops) | |||||
2004-02-08 | Update to new API | Zeev Suraski | 1 | -1/+1 | |
2004-02-04 | - Update with new destructor code | Zeev Suraski | 1 | -31/+40 | |
2004-02-03 | Update tests | Marcus Boerger | 3 | -3/+3 | |
2004-02-02 | CS fix (functions should not be available if they are not available :) | foobar | 1 | -5/+4 | |
2004-01-22 | Add new test | Marcus Boerger | 1 | -0/+31 | |
2004-01-22 | Update tests | Marcus Boerger | 4 | -19/+16 | |
2004-01-22 | Fix bug #27010: segfault after returning nodes with children() | Rob Richards | 2 | -112/+120 | |
Fix segfault in match_ns when matching prefix and node without ns some general cleanup and code consilidation better write handling - engine support dependent better isset handling - engine support dependent namespace fixes for reading/writing | |||||
2004-01-21 | Fix namespace regression bug | Rob Richards | 2 | -20/+54 | |
Read attributes correctly Update sxe_prop_dim_exists logic Update profile | |||||
2004-01-21 | Fix Bug #26976 (Can not access array elements using array indices) | Rob Richards | 2 | -13/+6 | |
return index 0 as non iterable object update test | |||||
2004-01-21 | typo fix | foobar | 1 | -1/+1 | |
2004-01-21 | test for bug #26976 | foobar | 1 | -0/+28 | |
2004-01-21 | Goto targets should not be indented (some compilers choke on this, iirc) | foobar | 1 | -1/+1 | |
2004-01-20 | - | Sterling Hughes | 1 | -20/+58 | |