summaryrefslogtreecommitdiff
path: root/ext/xml
Commit message (Collapse)AuthorAgeFilesLines
* fixed SEGFAULT when using xml_set_object. Zend does not yes supportThies C. Arntzen2001-02-151-17/+10
| | | | | cyclic references!
* disable directory search for libexpat and disable some macros for libxml-1.95.Rui Hirokawa2001-01-101-11/+3
|
* 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-054-14/+231
| | | | 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
* 2nd step towards auto-creditsHartmut Holzgraefe2000-11-201-0/+2
|
* update my email.Thies C. Arntzen2000-10-292-2/+2
|
* 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)
* Remove deprecated call-time referenceStanislav Malyshev2000-09-031-1/+1
|
* tests look for skipif.inc, so add itStanislav Malyshev2000-09-031-0/+9
|
* @- Fixed problem with having $this as the XML parser object. (Andrei)Andrei Zmievski2000-08-311-6/+0
|
* * added regression tests for the XML extensionStig Bakken2000-08-308-0/+378
|
* @- Added ability for each xml_set_*_handler() function to take theAndrei Zmievski2000-08-222-42/+43
| | | | | | @ 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
|
* Change header protection macros to conform to standard.Sascha Schumann2000-07-021-3/+3
| | | | | | | | | Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment" All identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use by the implementation.
* Stop including dl/phpdl.h.Sascha Schumann2000-06-241-1/+0
|
* - More #if WIN32|WINNT -> #ifdef PHP_WIN32 conversionsAndi Gutmans2000-06-151-1/+1
|
* hashtable.h -> expat_hashtable.hThies C. Arntzen2000-06-061-1/+1
|
* Move hashtable.h to expat_hashtable.h.Sascha Schumann2000-06-062-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
|
* Update the license with the new clause 6Zeev Suraski2000-05-182-4/+4
|
* #if COMPILE_DLSascha Schumann2000-05-021-1/+1
| | | | | | | becomes #if defined(COMPILE_DL) || defined(COMPILE_DL_EXTENSION_NAME)
* Replace the various get_module() functions with a uniformSascha Schumann2000-05-021-1/+1
| | | | | ZEND_GET_MODULE(name) macro.
* Remove trailing empty linesSascha Schumann2000-05-014-16/+0
|
* Large test commit IVSascha Schumann2000-05-014-0/+4
|
* Large commit test IIISascha Schumann2000-05-014-0/+12
|
* Remove white-space, breaks UnixWare makeSascha Schumann2000-05-011-1/+1
|
* Rebuild xml, if libexpat changed.Sascha Schumann2000-05-012-2/+4
|
* Link expat into static and shared module.Sascha Schumann2000-05-011-1/+1
|
* Improved in-tree shared libraries build systemSascha Schumann2000-05-015-21/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following new/revived shared modules are available now: ... MySQL (*) ... PCRE (*) ... Session ... SWF (*) capable of using bundled library or external library All changes: The m4 macro PHP_EXTENSION was revamped. Uses LIB_BUILD now. This effectively means that all extensions have to use dynlib. ext/mysql/config.m4 was revamped. Uses LIB_BUILD for building bundled library. ext/pcre/config.m4 was revamped. Uses LIB_BUILD for building bundled library. ext/ext_skel was changed to reflect that more modules should be compileable as shared module. ext/Makefile.in has been simplified enormously. Dependencies are now stored in the build tree. Empty dependencies are not generated by buildconf anymore. They are now dynamically created during the build process. Implicit rules for .S were removed. The NO_RECURSION feature was removed. "libs.mk" has been added to all cvsignore files in ext.
* Overall UNIX build system improvements:Sascha Schumann2000-04-304-24/+4
| | | | | | | | | * Makefile header is now completely dynamic * Absolute paths in (top_)?(src|build)dir and VPATH (fixes Tru64 support) * VPATH does not contain variables anymore (fixes UnixWare support)
* phpinfo() prettyingColin Viebrock2000-04-051-2/+5
|
* export xml_utf8_decode for wddx moduleThies C. Arntzen2000-04-042-2/+2
|
* Fix build on systems which lack snprintf or vsnprintf.Sascha Schumann2000-03-121-1/+0
| | | | | PR: #3786
* Change extension names in all extensions' zend_module_entry to theirStig Bakken2000-03-061-1/+1
| | | | | directory name.
* Prefix some symbols with php_Sascha Schumann2000-03-044-0/+8
| | | | | ^(pcre|Xml|XML).*
* adjust comment IISascha Schumann2000-03-021-1/+1
|
* adjust commentSascha Schumann2000-03-021-1/+1
|
* Enable by defaultSascha Schumann2000-03-021-1/+1
|
* More protos.Egon Schmid2000-02-241-5/+4
|
* the pipe is breaking all the timeZeev Suraski2000-02-192-4/+4
|
* Tell expat the byte orderSascha Schumann2000-02-121-1/+8
|
* #if WIN.* => #ifdef PHP_WIN32Sascha Schumann2000-02-121-1/+1
| | | | | #if !(WIN.* => #ifndef PHP_WIN32
* Use bundled expat library on UNIX. Note: Need to fix --enable-xml=sharedSascha Schumann2000-02-126-90/+60
|