summaryrefslogtreecommitdiff
path: root/ext/xml/xml.c
Commit message (Collapse)AuthorAgeFilesLines
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* Add a note that this statement will never be reached.Jon Parise2002-01-271-1/+2
|
* - Fix bug in XML extension which exists due to a not perfect work aroundAndi Gutmans2001-12-291-6/+9
| | | | | - with ZE1. In ZE2 the correct code seems to work well.
* proto fixHartmut Holzgraefe2001-12-171-1/+1
|
* add todoThies C. Arntzen2001-12-141-0/+3
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* * zend_module_entry change: apino, debug and zts are moved first,Stig Bakken2001-10-111-0/+2
| | | | | | see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig)
* 2nd phase in back-substitution those macro'sJeroen van Wolffelaar2001-09-251-16/+16
| | | | | I've got pretty much everything now...
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-40/+40
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* null terminate the returned string in here too.foobar2001-08-181-1/+2
|
* ws fix.foobar2001-08-181-117/+74
|
* Fix warning.Sebastian Bergmann2001-08-121-1/+1
|
* tags need to be UTF8-decoded as well.Thies C. Arntzen2001-08-121-54/+52
| | | | | | guys, case_folding can only work when the parser target encoding equal (or compatible) with the locale setting of the system as we use toupper to "do it"
* More TSRMLS_FETCH annihilationZeev Suraski2001-07-311-2/+2
|
* Zend compatibility patchZeev Suraski2001-07-301-1/+1
|
* More TSRMLS_FETCH work, and a bit of cleanupZeev Suraski2001-07-301-6/+5
|
* More TSRMLS_FETCH annihilation (Zend compatibility patch)Zeev Suraski2001-07-301-0/+2
|
* - Use object macrosAndi Gutmans2001-07-281-1/+1
|
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-281-3/+1
|
* - Get rid of ELS_*(), and use TSRMLS_*() instead.Zeev Suraski2001-07-271-3/+3
| | | | | | | - Move to the new ts_allocate_id() API This patch is *bound* to break some files, as I must have had typos somewhere. If you use any uncommon extension, please try to build it...
* ZVAL_BOOL(v,0) -> ZVAL_FALSE(v)Thies C. Arntzen2001-07-111-3/+2
|
* Nuke zval_resetZeev Suraski2001-07-111-1/+1
|
* var_reset -> ZVAL_RESETZeev Suraski2001-07-111-1/+1
|
* xml_utf8_encode: make sure the returned data is zero-terminatedThies C. Arntzen2001-07-091-4/+3
|
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-1/+2
|
* vim-6 does folding - clean up a bunch of missing folding tags plusRasmus Lerdorf2001-06-051-4/+3
| | | | | some misguided RINIT and RSHUTDOWN calls in a few fringe extensions
* * include "config.h" if HAVE_CONFIG_H is defined (for standalone dso build)Stig Bakken2001-05-241-0/+4
|
* added expat version to phpinfo();Thies C. Arntzen2001-05-141-0/+1
|
* bump bundled expat to 1.95.1Thies C. Arntzen2001-05-111-16/+0
| | | | | win32 project _needs_ updating and i don't have windows
* - Pointed out by Andrei. zval_ptr_dtor() should be used instead of theAndi Gutmans2001-02-271-14/+14
| | | | | zval_del_ref() function which should be nuked.
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* fixed SEGFAULT when using xml_set_object. Zend does not yes supportThies C. Arntzen2001-02-151-17/+10
| | | | | cyclic references!
* remove stupid ifdef'sDaniel Beulshausen2001-01-051-6/+0
|
* include config.w32.h under win32Daniel Beulshausen2001-01-051-0/+6
|
* added libxml-1.95 support and some new functions related to namespace ↵Rui Hirokawa2001-01-051-2/+173
| | | | support. changed config.m4 to support xml extension as shared module.
* revert last fix. the problem is now fixed globally in Zend.Thies C. Arntzen2000-12-241-4/+1
|
* fix #8363.Thies C. Arntzen2000-12-231-1/+4
| | | | | fix call_user_function when parser->object is not set.
* Fix call_user_function() with objects - it could leak under certain ↵Zeev Suraski2000-12-131-1/+1
| | | | circumstances
* update my email.Thies C. Arntzen2000-10-291-1/+1
|
* Remove second_arg_force_ref, defined in ZendSascha Schumann2000-10-261-1/+0
| | | | | Submitted by: Bill Stoddard
* Use zend_register_list_destructors_ex() instead.Andrei Zmievski2000-10-251-1/+1
|
* Mega-patch to get better resource information for modules.Andrei Zmievski2000-10-201-3/+4
| | | | | | | | | | | | | * Fixed a bug in zend_rsrc_list_get_rsrc_type() * Switched register_list_destructors() to use zend_register_list_destructors_ex() instead * Updated all relevant modules to provide the resource type name to register_list_destructors() call * Updated var_dump() to output resource type name instead of number @- Made resource type names visible, e.g. var_dump() and @ get_resource_type() display "file" for file resources. (Andrei)
* @- Fixed problem with having $this as the XML parser object. (Andrei)Andrei Zmievski2000-08-311-6/+0
|
* @- Added ability for each xml_set_*_handler() function to take theAndrei Zmievski2000-08-221-33/+34
| | | | | | @ array($obj, 'method') syntax for the handler argument as well @ as the normal function name. (Andrei)
* Fix XML by-reference passingStanislav Malyshev2000-08-201-2/+5
|
* Stop including dl/phpdl.h.Sascha Schumann2000-06-241-1/+0
|
* - More #if WIN32|WINNT -> #ifdef PHP_WIN32 conversionsAndi Gutmans2000-06-151-1/+1
|
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-21/+21
|
* Use #ifdef COMPILE_DL_EXTNAME solely.Sascha Schumann2000-05-231-1/+1
|