summaryrefslogtreecommitdiff
path: root/ext/libxml/php_libxml.h
Commit message (Collapse)AuthorAgeFilesLines
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Merge branch 'PHP-5.3' into PHP-5.4Dmitry Stogov2013-02-201-0/+2
|\ | | | | | | | | | | | | | | | | * PHP-5.3: Fixed external entity loading Conflicts: ext/libxml/libxml.c ext/libxml/php_libxml.h
| * Fixed external entity loadingDmitry Stogov2013-02-201-0/+2
| |
| * Happy New Year~Xinchen Hui2013-01-011-1/+1
| |
| * - Year++Felipe Pena2012-01-011-1/+1
| |
| * - Year++Felipe Pena2011-01-011-1/+1
| |
* | Happy New YearXinchen Hui2013-01-011-1/+1
| |
* | - Year++Felipe Pena2012-01-011-1/+1
| |
* | - Turns out the external entity loader is not a per-thread global but a trueGustavo André dos Santos Lopes2011-08-301-1/+0
| | | | | | | | | | | | global. Changed code accordingly; however, applications that embed PHP and also use libxml2 may be affected negatively.
* | - Added libxml_set_external_entity_loader().Gustavo André dos Santos Lopes2011-08-291-0/+5
| |
* | - Year++Felipe Pena2011-01-011-1/+1
|/
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* MFH: Visibility (bug #45557)Rob Richards2008-07-221-4/+4
|
* Improved PHP binary size and startup speed with GCC4 visibility control (Nuno)Dmitry Stogov2008-01-301-2/+4
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFHAntony Dovgal2007-08-011-2/+2
|
* MFH: cs+ws+compile warning fixesJani Taskinen2007-07-211-2/+2
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* mark a few variables and functions as staticNuno Lopes2006-11-101-6/+0
|
* Added automatic module globals managementDmitry Stogov2006-06-151-3/+3
|
* MFH: move document property struct from xml_common.hRob Richards2006-05-221-1/+12
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* MFH: add additional constantsRob Richards2005-09-081-0/+2
| | | | | remove un-needed ifdefs
* - Bumber up yearfoobar2005-08-031-1/+1
|
* - Possible fix for bug #32778foobar2005-04-211-11/+9
|
* add function to allow extensions to use new error handling if set by userRob Richards2005-02-201-0/+1
|
* initial cut of new error handlingRob Richards2005-02-101-2/+7
|
* Fixed bug #29211 (SoapClient doesn't request wsdl through proxy). (Rob)Dmitry Stogov2004-11-091-0/+2
|
* implement php_libxml_xmlCheckUTF8Rob Richards2004-09-081-0/+1
| | | | | - workaround for pre libxml2-2.6.13 function
* export php_libxml_error_handler for win32 buildRob Richards2004-07-251-1/+1
|
* Fix bug #27436 dom_import_simplexml innaccurateRob Richards2004-03-011-0/+4
| | | | | | extensions register callbacks to export nodes prevents segfault passing invalid objects to import functions
* Fix memory corruption with libxml's error handling.Marcus Boerger2004-01-101-1/+1
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-2/+2
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* consolidate error handlingRob Richards2003-12-121-0/+3
|
* buffer error messages until newline is hitRob Richards2003-12-091-0/+2
|
* common functions for interoperabilityRob Richards2003-10-261-2/+28
|
* add global init/shutdown functions for libxml. this is required asShane Caraveo2003-10-191-0/+3
| | | | | | 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/+66
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.