summaryrefslogtreecommitdiff
path: root/ext/xml/xml.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* #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.
* phpinfo() prettyingColin Viebrock2000-04-051-2/+5
|
* export xml_utf8_decode for wddx moduleThies C. Arntzen2000-04-041-2/+1
|
* 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.
* More protos.Egon Schmid2000-02-241-5/+4
|
* the pipe is breaking all the timeZeev Suraski2000-02-191-2/+2
|
* - Fixed ^#[ ]+preprocessor directive$ constructions which breakSascha Schumann2000-02-101-0/+1
| | | | | | | some compilers - Made php_xml.h useable without having xmltok.h/xmlparse.h in the include path
* - Make Win32 compile againAndi Gutmans2000-02-051-3/+0
|
* Add expat to the distributionZeev Suraski2000-02-021-1/+1
| | | | | Add expat support to Win32 builds
* Happy Y2K patch! Happy new year (or the new millennium, depending on whetherSascha Schumann2000-01-011-1/+1
| | | | | you start counting at 0 or 1).
* killed warning + added reminderThies C. Arntzen1999-12-231-1/+1
|
* - The tree compiles againZeev Suraski1999-12-181-22/+22
|
* More php3_ annihilationZeev Suraski1999-12-181-20/+10
|
* - Made PHP_VERSION and PHP_OS work againZeev Suraski1999-12-171-1/+1
| | | | | | - More php3_ cleanup @- Restored the PHP_VERSION and PHP_OS constants (Zeev)
* More php3_ annihilationZeev Suraski1999-12-171-1/+1
|
* # Added date/time stamping to php3_log_errorJoey Smith1999-12-141-1/+1
| | | | | | @ Preliminary support for date/time stamping in error logs Preliminary support for date/time stamping in error logs
* Fixed #2952.Andrei Zmievski1999-12-101-3/+3
|
* (PHP strtoupper, strtolower, substr_replace) Made binary-safe.Andrei Zmievski1999-12-091-1/+1
| | | | | @Made strtoupper(), strtolower(), substr_replace() binary-safe. (Andrei)
* Thies, can you provide some docs? I need something to show to my German ↵Egon Schmid1999-12-051-1/+1
| | | | | | | translators. Is the &obj correct?
* @- added XML_Set_Object() function, now you can use the XML-Parser fromThies C. Arntzen1999-12-051-9/+53
| | | | | | @ within an object. (Thies) (XML_Set_Object) new function.
* Clean up php3.*\.h files. The files itself are renamed, and references in allSascha Schumann1999-12-041-2/+2
| | | | | | .*\.[ch] files were changed. There is a slight chance that my script missed a few changes, please correct them manually.
* Fix shared mode for gd/xml/mysql extensions.Stig Bakken1999-12-041-5/+3
|
* @- Fixed mem-overwrite in XML_Parse_Into_Struct. (Thies)Thies C. Arntzen1999-11-191-1/+1
| | | | | (PHP xml_parse_into_struct) buffer was sometimes short by 1.
* (PHP xml_parse_into_struct) sometimes the value was truncatedThies C. Arntzen1999-10-201-2/+14
| | | | | @- XML_Parse_Into_Struct no longer eats data. (Thies)
* (PHP xml_parse_into_struct): fixed mem-leak when encountering invalid XML.Thies C. Arntzen1999-10-201-0/+3
|
* _php3/_php3i -> php renameAndrei Zmievski1999-10-161-4/+4
|
* fixed hopefully last XML problem. that one was hard!Thies C. Arntzen1999-10-071-8/+8
|
* * archive-based convenience libraries completely replacedSascha Schumann1999-10-041-5/+0
| | | | | | | | | | | | | | | | | | | | | | with libtool components * SAPI targets can enable thread-safe mode and define shared/static/program build target * all configure scripts use the same config.cache * phplibdir is $(top_builddir)/modules to avoid permission problems * sapi/*/Makefile.inc are gone * runpath handling cleaned up * top-level Makefile.in obsoleted through Makefile.am * --enable-versioning uses libtool's cleaner and more portable -export-symbols feature
* one zval fix - cleanupsThies C. Arntzen1999-10-011-124/+111
|
* fix the order.. (thanx, andi)Thies C. Arntzen1999-09-291-1/+2
|
* fixed callback code -> now $parser is passed as a resource!Thies C. Arntzen1999-09-251-105/+96
|
* updated XML (only partly tested)Thies C. Arntzen1999-09-241-118/+122
|
* fixed warningThies C. Arntzen1999-09-241-2/+1
|
* Compile fixes for WDDX, XML and Zlib (untested)Zeev Suraski1999-09-241-16/+16
|
* resource API & ZTS stuffThies C. Arntzen1999-09-201-244/+117
|
* ZTS fixThies C. Arntzen1999-08-181-0/+3
|
* fix for #1995 (this module needs some more work.)Thies C. Arntzen1999-08-081-4/+7
|
* Removed '3' from key functions in PHP (maintained compatibility throughZeev Suraski1999-08-021-14/+14
| | | | | php3_compat.h)
* First cut at standard way of making dynamically loadable extensions on UNIX.Stig Bakken1999-07-211-0/+6
| | | | | | | | | | | | | | | | | | Examples on how to test: ./configure --with-xml static ./configure --with-xml=/opt static ./configure --with-xml=shared shared ./configure --with-xml=shared,/opt shared The difference between these two is that when the extension is shared, it is not merged into libphpext.a. The shared extension is currently always built. I can't find a way to do just one or the other with automake/libtool, if someone has a clever idea, please come forward. :-) "make install" installs the .so (as well as a lot of other cruft) in $prefix/lib/php.
* Debian fixesStig Bakken1999-07-211-19/+50
|
* License updateZeev Suraski1999-07-161-20/+9
|
* Don't touch refcount and EA directlyZeev Suraski1999-07-091-12/+6
|
* Step 2:Zeev Suraski1999-07-091-6/+6
| | | | | Rename is_ref to EA
* updated to latest php3Thies C. Arntzen1999-07-041-1/+1
|
* added some refcount stuffThies C. Arntzen1999-07-021-1/+12
|
* losses memory like hell, but seems to work!Thies C. Arntzen1999-07-021-30/+70
| | | | | | | | | | | | | 3 things (this is a bad hack as of now!): - xml.c uses _php3_strtoupper is #include "../standard/php3_string.h" the right way to get the prototype? - i've copied php3i_long_pval/php3i_string_pval from the php3 tree into xml.c (this is defnetly WRONG, but where do i find those?) - as php3tls_pval_destructor is not available in zend, i've #define php3tls_pval_destructor(a) pval_destructor(a) which is maybe not what we want!
* - fix CGI build (at least)Sascha Schumann1999-05-271-4/+5
|