summaryrefslogtreecommitdiff
path: root/ext/wddx
Commit message (Collapse)AuthorAgeFilesLines
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* Preserve API compatibility.Andrei Zmievski2001-02-061-1/+1
|
* Don't use Z* macros for non-zvals.Andrei Zmievski2001-02-061-4/+4
|
* Cleaned up and optimized WDDX serialization - it's about twiceAndrei Zmievski2001-02-062-186/+79
| | | | | as fast now.
* If external expat is used, header file is expat.hfoobar2001-01-111-0/+4
|
* Heads up people!Zeev Suraski2000-12-221-6/+3
| | | | | | Updated the get_current_key() API - the relevant authors, please take a look at the updated code and make sure it's ok...
* Fix call_user_function() with objects - it could leak under certain ↵Zeev Suraski2000-12-131-2/+2
| | | | circumstances
* 2nd step towards auto-creditsHartmut Holzgraefe2000-11-201-0/+2
|
* 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-1/+6
| | | | | | | | | | | | | * 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)
* - Fix warningsZeev Suraski2000-09-191-0/+2
| | | | | - Fix URL scanner startup crash
* Create module info function.Andrei Zmievski2000-09-132-4/+18
|
* Really fix the de-allocation.Andrei Zmievski2000-09-131-0/+1
|
* Fixed block overrun.Andrei Zmievski2000-09-131-1/+0
|
* Add support for <binary> WDDX element.Sascha Schumann2000-08-072-2/+39
|
* Fix attribution on NEWS.Andrei Zmievski2000-07-051-1/+1
|
* Rename macros which begin with underscore to appropiate macros. The generalSascha Schumann2000-07-031-3/+3
| | | | | | | rule is: macro_name=`echo $filename|tr a-z A-Z|sed 's/\./_/'`
* Lowercase class name before checking for itStanislav Malyshev2000-06-291-0/+1
| | | | | # I didn't really check it - have no WDDX
* Fix Win32 compilationZeev Suraski2000-06-231-0/+1
|
* Make use of incomplete class APISascha Schumann2000-06-231-4/+24
|
* Revert earlier commit.Sascha Schumann2000-06-211-7/+0
|
* unserialize() and wddx_deserialize() now create an empty class if they enconterThies C. Arntzen2000-06-211-0/+7
| | | | | | | a class which's code is yet unknown. this makes sessionized data retain the class name of objects even if you visited pages that don't have the classes code available.
* Call __wakeup() after all the instance variables are initialized.Andrei Zmievski2000-06-191-14/+22
|
* - Fix a couple of wranings in the FTP code and in parsedate.yZeev Suraski2000-06-171-2/+2
| | | | | | - Be safer with LC_MESSAGES - Align with the latest Zend change in call_user_function_ex()
* Have to use zval_ptr_dtor() on values returned from user functions.Andrei Zmievski2000-06-171-8/+4
|
* - Make Windows compileAndi Gutmans2000-06-171-1/+3
| | | | | - Windows doesn't support LC_MESSAGES
* Just to make extra sure.Andrei Zmievski2000-06-161-2/+3
|
* @- Enhanced WDDX functions to call __sleep() and __wakeup() when working onAndrei Zmievski2000-06-161-41/+114
| | | | | @ objects. (Andrei)
* Protos looks now equal in both versions.Egon Schmid2000-06-161-2/+2
|
* @- Changed WDDX to serialize arrays as structs only if needed. (Thies)Thies C. Arntzen2000-06-161-9/+49
|
* @- Changed WDDX to always serialize arrays as structs. (Andrei)Andrei Zmievski2000-06-091-33/+12
| | | | | Changed WDDX to always serialize arrays as structs. PR #4924
* (php_wddx_deserialize_ex) return SUCCESS/FAILUREAndrei Zmievski2000-06-092-4/+9
| | | | | Use that return value in WDDX session deserializer.
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-6/+6
|
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* Got rid of infinite recursion when serializing $GLOBALS[].Andrei Zmievski2000-05-041-3/+5
| | | | | @- Fixed infinite recursion when serializing $GLOBALS[] in WDDX. (Andrei)
* . Reworked string serializationAndrei Zmievski2000-05-042-65/+89
| | | | | | | | | . <, >, and & in strings are now properly escaped . Removed a lot of unnecessary calls to strlen() @- Made WDDX serialization properly escape <, >, and &. Also speeded up @ the serialization in general. (Andrei)
* Remove trailing empty linesSascha Schumann2000-05-011-4/+0
|
* Large test commit IVSascha Schumann2000-05-011-0/+1
|
* Large commit test IIISascha Schumann2000-05-011-0/+3
|
* Improved in-tree shared libraries build systemSascha Schumann2000-05-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-301-6/+1
| | | | | | | | | * 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)
* Additional check for IS_OBJECT.Andrei Zmievski2000-04-041-1/+1
|
* @- WDDX now defaults to ISO-8859-1. (Thies)Thies C. Arntzen2000-04-041-8/+19
| | | | | # andrei, plz have a look at my changes - seems to work for me!
* buffer was short by oneThies C. Arntzen2000-04-041-1/+1
|
* Welcome PHP_ARG_ENABLE and PHP_ARG_WITH. They are there to replace the commonSascha Schumann2000-03-271-16/+10
| | | | | AC_MSG_CHECKING, AC_ARG_[ENABLE,WITH], AC_MSG_RESULT trio.
* Change extension names in all extensions' zend_module_entry to theirStig Bakken2000-03-061-1/+1
| | | | | directory name.
* WDDX header comments now conform to the latest DTD.Andrei Zmievski2000-02-282-7/+10
|
* Is it ok, Andrei.Egon Schmid2000-02-241-1/+1
|
* More protos.Egon Schmid2000-02-241-5/+5
|
* the pipe is breaking all the timeZeev Suraski2000-02-191-2/+2
|