Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - added function domxml_parser_set_keep_blanks() | Uwe Steinmann | 2002-04-30 | 2 | -0/+17 |
| | |||||
* | Fix ZTS build. | foobar | 2002-04-24 | 1 | -1/+4 |
| | |||||
* | - replace_child() will not add a child twice | Uwe Steinmann | 2002-04-23 | 1 | -17/+67 |
| | | | | | | | | - domxml_open_mem() drops old optional parameter to switch between reading from a string or a file. - new optional parameter for domxml_open_mem() which set the mode how the document shall be parsed | ||||
* | - added new function DomDocument->ids (subject to change) | Uwe Steinmann | 2002-04-23 | 1 | -0/+1 |
| | |||||
* | - get_element_by_id() doesn't use xpath anymore but searches in | Uwe Steinmann | 2002-04-23 | 1 | -66/+91 |
| | | | | | | | xmlDoc->ids as provided by libxml. - New function DomDocument->ids() returns a list of ids (subject to change) - replace_node() doesn't make a copy of the new node if it has no parents | ||||
* | - DomNode->replace_node() now returns the node that was replace and | Uwe Steinmann | 2002-04-15 | 1 | -1/+1 |
| | | | | | | not the new node - fixes Bug #15949 | ||||
* | - added DomNode->replace_child() | Uwe Steinmann | 2002-04-15 | 2 | -1/+39 |
| | |||||
* | @- old $node->append_child() is now $node->append_sibling(), since | Christian Stocker | 2002-04-13 | 2 | -0/+40 |
| | | | | | @ new append_child() now behaves like excepted (= W3C standard) (chregu, uwe) | ||||
* | - added method DomNode->remove_child() | Uwe Steinmann | 2002-04-12 | 2 | -1/+37 |
| | |||||
* | - fixed stupid compile error | Uwe Steinmann | 2002-04-12 | 1 | -1/+1 |
| | |||||
* | - insert_before(): copy node before doing the insert | Uwe Steinmann | 2002-04-12 | 2 | -53/+226 |
| | | | | | | | | | | - append_child(): actually do an append child and not and add sibling - what is called xmlDtd in libxml is actually the class DocumentType in DOM. The domxml extension used a class DomDtd which is not defined in the DOM standard. Instead of using DomDtd DomDocumentType is now used. DomDtd has been renamed to Dtd but has not meaning anymore. - added more functions | ||||
* | - add quotes. Cought by: Roman Neuhauser <neuhauser@mail.cz> | Jan Lehnardt | 2002-04-11 | 1 | -1/+1 |
| | |||||
* | Added test suite for domxml extension. | Joseph Tate | 2002-04-05 | 2 | -0/+331 |
| | | | | | | #eventually I'll separate all the tests into separate files, but until #then, I'll commit it so that everyone can use it. | ||||
* | Added unlink_node alias for consistency | Joseph Tate | 2002-04-05 | 1 | -0/+1 |
| | |||||
* | oops. that was an error not detected in shared library mode ... | Christian Stocker | 2002-04-05 | 1 | -1/+1 |
| | |||||
* | added domxml_parser(), domxml_parser_add_chunk() and domxml_parser_end(). | Christian Stocker | 2002-04-05 | 2 | -2/+150 |
| | | | | | It provides access to the PushParser interface of libxml2. | ||||
* | - fixed a lot of memory leaks (by Lukas Schroeder) | Christian Stocker | 2002-04-04 | 1 | -20/+25 |
| | | | | | - get_attribute() returns False instead of empty string, if attribute not found | ||||
* | Fixing compile warning under Win32 | Joseph Tate | 2002-03-27 | 1 | -1/+1 |
| | |||||
* | - Fix proto (again) | Derick Rethans | 2002-03-15 | 1 | -3/+1 |
| | |||||
* | - proto fixes | Derick Rethans | 2002-03-15 | 1 | -4/+4 |
| | |||||
* | Return attribute name in node_name(), if it's a XML_ATTRIBUTE_NODE | Christian Stocker | 2002-03-13 | 1 | -1/+8 |
| | |||||
* | Return #document in node_name(), if it's a XML_DOCUMENT_NODE | Christian Stocker | 2002-03-13 | 1 | -0/+4 |
| | |||||
* | extension converted automatically to PHP_NEW_EXTENSION. Manually confirmed | Sascha Schumann | 2002-03-12 | 2 | -9/+1 |
| | |||||
* | forgot SEPARATE_ZVAL, produced segfaults. | Christian Stocker | 2002-03-12 | 1 | -2/+3 |
| | | | | | segfaulted only in 4_2_0 (not in HEAD and 4_0_7, strange...) | ||||
* | - Remove *FETCH() statements. | Markus Fischer | 2002-03-12 | 1 | -68/+50 |
| | | | | | - Clean up WS and parenthesis indentation. | ||||
* | nicer (optional) formated output in dump_mem and dump_mem_file | Christian Stocker | 2002-03-12 | 1 | -2/+14 |
| | |||||
* | @ implemented domxml_elem_get_elements_by_tagname | Christian Stocker | 2002-03-11 | 2 | -15/+221 |
| | | | | | | @ new function domxml_doc_get_elements_by_tagname @ new function domxml_doc_get_element_by_id (chregu) | ||||
* | - Fixed bug: #15686 | foobar | 2002-03-09 | 1 | -1/+9 |
| | |||||
* | @ implemented domxml_elem_get_attribute_node(attrname) (chregu) | Christian Stocker | 2002-03-08 | 1 | -16/+12 |
| | |||||
* | Added linking files to make build compatible with RH 7.2's updated libxslt | Joseph Tate | 2002-03-08 | 1 | -0/+13 |
| | | | | | | | | packages. Should not break when compiling with older versions. This may fix bug #15942 as well. Configure was giving a Warning message without these lines when --with-xslt was specified. | ||||
* | @ domxml_elem_remove_attribute(attibutename) is now implemented (chregu) | Christian Stocker | 2002-03-08 | 1 | -13/+12 |
| | |||||
* | @ added formatting option to domxml_dump_mem() (chregu) | Christian Stocker | 2002-03-08 | 1 | -4/+9 |
| | |||||
* | Commented out a few lines that were causing a segfault in the unlink code. | Joseph Tate | 2002-03-07 | 1 | -2/+6 |
| | | | | | | | | This fixes bug #14522. I've tested that it does not cause a segfault under RH 7.2, and retains all functionality. I recommend that this patch be considered for the PHP_4_2_0 tree as well, as having a function that core dumps every time is a bad thing(TM). | ||||
* | Added type attribute wrappers to the remaining node types that did not have | Joseph Tate | 2002-03-07 | 1 | -3/+4 |
| | | | | | | them. I.e. XML_ATTRIBUTE_NODE and XML_CDATA_SECTION_NODE. Mentioned in Bug #15918. | ||||
* | Added TODO item to modify new_child so that more than just element nodes | Joseph Tate | 2002-03-07 | 1 | -0/+1 |
| | | | | | can be created. | ||||
* | Please welcome the new build system. | Sascha Schumann | 2002-03-07 | 1 | -1/+1 |
| | | | | | | | | | | If you encounter any problems, please make sure to email sas@php.net directly. An introduction can be found on http://schumann.cx/buildv5.txt | ||||
* | Maintain headers. | Sebastian Bergmann | 2002-02-28 | 2 | -2/+2 |
| | |||||
* | "o|a|b" is not valid ZE code. changed to "o|ab" | Christian Stocker | 2002-02-20 | 1 | -1/+1 |
| | |||||
* | Fixed compile error | Jaroslaw Kolakowski | 2002-02-04 | 1 | -2/+2 |
| | |||||
* | Fix ZTS build | Yasuo Ohgaki | 2002-02-04 | 1 | -0/+5 |
| | |||||
* | - Fix for bug #14934: type property not set in comment nodes (domxml) | Derick Rethans | 2002-01-25 | 1 | -1/+3 |
| | |||||
* | Simplified domxml_substitute_entities_default() function | Jaroslaw Kolakowski | 2002-01-22 | 1 | -9/+1 |
| | |||||
* | Getting rid of some compile warnings (thanks to markus for pointing me in ↵ | Christian Stocker | 2002-01-22 | 1 | -5/+5 |
| | | | | the right direction :) ) | ||||
* | Added domxml_substitute_entities_default() function | Jaroslaw Kolakowski | 2002-01-21 | 2 | -0/+24 |
| | |||||
* | - fixed bug caused by libxml2 in xpath_register_ns() | Chris Jarecki | 2002-01-21 | 1 | -3/+8 |
| | | | | | - registered namespaces are now persistent | ||||
* | proto fix | Hartmut Holzgraefe | 2002-01-20 | 1 | -1/+1 |
| | |||||
* | - Fixed passing parameters to domxml_xslt_process(). Now they can be either ↵ | Jaroslaw Kolakowski | 2002-01-19 | 1 | -66/+88 |
| | | | | | | | strings or XPath expressions. - Several minor fixes in domxml_xslt_process(). | ||||
* | - More WS fixes | Markus Fischer | 2002-01-18 | 1 | -15/+15 |
| | |||||
* | shite :) too much WS fixes. leave the licence as it was... | Christian Stocker | 2002-01-18 | 1 | -9/+9 |
| | | | | | # (why uses pear spaces and php tabs anyway... but i don't want to start another CS flame war ...) | ||||
* | - WS fixes (replaced " " by \t) | Christian Stocker | 2002-01-18 | 1 | -87/+87 |
| |