summaryrefslogtreecommitdiff
path: root/ext/libxml/libxml.c
Commit message (Collapse)AuthorAgeFilesLines
...
* consolidate error handlingRob Richards2003-12-121-8/+57
|
* buffer error messages until newline is hitRob Richards2003-12-091-5/+23
|
* Route php_stat() via streams/url_stat API (php_stream_stat_path).Sara Golemon2003-11-281-1/+1
| | | | | This enables fopen-wrappers support on stat() and related family calls.
* Fixed write support.Ilia Alshanetsky2003-11-071-5/+15
|
* common functions for interoperabilityRob Richards2003-10-261-0/+268
|
* Fix compiler warningsMoriyoshi Koizumi2003-10-201-1/+1
|
* fix the stat check in stream openShane Caraveo2003-10-201-3/+20
| | | | | addref to the stream context
* add generic default error handling rather than the default stderrRob Richards2003-10-191-0/+24
|
* unescape filepath which libxml excapesRob Richards2003-10-191-2/+12
|
* add global init/shutdown functions for libxml. this is required asShane Caraveo2003-10-191-20/+40
| | | | | | shutdown is not safe to call multiple times, and to make streams work correctly some init stuff has to happen in a specific order
* Add libxml extension for common code that is needed to be shared betweenShane Caraveo2003-10-191-0/+217
various xml extensions. currently the only implemented support is the addition of the streams support for libxml. One new function, libxml_set_streams_context, which allows a streams context to bet set prior to loading or writing documents. This works transparently with any extension that uses libxml. All ini settings that effect streams will also now effect the loading and writing of xml documents. TODO: linux support, not sure if config.m4 will work right.