summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'php_4_3_0dev'.php-4.3.0devSVN Migration2002-06-1695-41510/+0
|
* Made the tests (and not only run-tests.php) actually use php.ini-dist, andSander Roobol2002-06-162-3/+1
| | | | | removed unused php.ini file.
* - List new session.use_only_cookies option.Markus Fischer2002-06-162-0/+6
|
* * set include_path when running "pear"Stig Bakken2002-06-162-2/+4
|
* Fixed bug: #17732.foobar2002-06-162-4/+10
| | | | | | xmlrpc_decode_request() and xmlrpc_set_type() expect some parameters to be passed by reference.
* ChangeLog update2002-06-162-0/+22
|
* - Be more verbose which index causes the warning.Markus Fischer2002-06-151-2/+4
|
* - Don't forget to close the stream.Markus Fischer2002-06-151-0/+1
|
* workaround for a win32 memleakHarald Radi2002-06-151-0/+1
| | | | | | # this definitely has to be revisited ! # maybe we should use winsock2 and overlapped IO
* workaround for a win32 memleakHarald Radi2002-06-151-1/+2
| | | | | | # this definitely has to be revisited ! # maybe we should use winsock2 and overlapped IO
* Add new target directories.Sebastian Bergmann2002-06-150-0/+0
|
* - Fix copy&paste problem where we allocated according to an old structureAndi Gutmans2002-06-152-22/+1
| | | | | - decleration and not the new one.
* NEWS update2002-06-151-0/+5
|
* ChangeLog update2002-06-151-0/+99
|
* - Update Win32/mail changes, mention bundled gd library.Markus Fischer2002-06-141-1/+5
|
* - Fix issue with the DIRECTORY_SEPARATOR, did make the install ofTomas V.V.Cox2002-06-141-6/+11
| | | | | | XML_image2svg fail - TODO++ and others minor stuff
* * if verbosity config is > 3, display xmlrpc responseStig Bakken2002-06-141-3/+7
| | | | | * another bugfix
* Fix.Andrei Zmievski2002-06-141-3/+4
|
* Add gd_bundled to php_modules.dsw.Sebastian Bergmann2002-06-142-60/+72
|
* remote list and remote listall, can now list non-stable packages if you set ↵Alan Knowles2002-06-141-3/+9
| | | | prefered_state to something else
* Fixed XML RPC sending of args - lets try and get the right tag :)Alan Knowles2002-06-141-2/+4
|
* Use some more sane paths for win32 version.Edin Kadribasic2002-06-141-0/+6
|
* - Remove freetype.lib and HAVE_LIBTTF; we're always linking against freetype2Markus Fischer2002-06-141-4/+4
| | | | | anyway.
* - renamed domxml_parser_reference to domxml_parser_entitiy_referenceChristian Stocker2002-06-142-10/+61
| | | | | | | | - renamed domxml_cdata_block to domxml_parser_cdata_section (more consistent with the domxml_create_XXX methods) - added domxml_parser_processing_instruction(target,data) - added domxml_parser_namespace_decl(href,prefix)
* - oops, that didn't even compileChristian Stocker2002-06-142-7/+32
| | | | | - added domxml_parser_reference(reference)
* @ - Added preliminary SAX-Input support. It's now possible to build a ↵Christian Stocker2002-06-142-0/+234
| | | | | | | | | | | | DomDocument @ with SAX-Events (added domxml_parser_start_document(), domxml_parser_end_document(), @ domxml_parser_start_element(tagname[,attributes]), domxml_parser_end_element(tagname), @ domxml_parser_characters(characters), domxml_parser_cdata_block(cdata), @ domxml_parser_comment(comment), domxml_parser_get_document(). (chregu) # More Sax Events to be implemented. Sax Output (from file or DOM-Tree) is # not that easy to implement, but possible...
* Remove unused local variables.Sebastian Bergmann2002-06-142-2/+2
|
* NEWS update2002-06-141-0/+6
|
* ChangeLog update2002-06-141-0/+86
|
* - Fixed bug #15803 (and propably others related too, part 2/2)foobar2002-06-144-252/+292
| | | | | | | | | . Changed the configure/compile so that it doesn't "pollute" the INCLUDES anymore and thus cause trouble with other extensions which might use the same header files. (e.g. Informix) . Separated the #include statements to own file so we don't get any errors when compiling main/internal_functions.c
* - Fixed bug #15803 (and propably others related too)foobar2002-06-146-66/+98
| | | | | | | | | . Changed the compile so that it doesn't "pollute" the INCLUDES anymore and thus cause trouble with other extensions which might use the same header files. (e.g. ODBC) . Some fixes for Informix compile problems (with the new build system) . Removed unnecessary stub.c file.
* - Initial MSVC makefile to create a php_gd2.dll based on the bundled libgd,Markus Fischer2002-06-131-0/+583
| | | | | | | works out of the box here with the right image libs and headers. # Edin, I think it's your turn now. Feel free to tweak it for your needs. # Could only compile Release_TS so far (no debug .lib files)
* - We don't need the check here because the regex makes sure we never have \r\nMarkus Fischer2002-06-131-6/+0
| | | | | at the end of the header.
* @- Fixed bug with Apache which let PHP_AUTH_* variables to be set whenfoobar2002-06-131-1/+1
| | | | | | | @ external basic auth mechanism was used. (Jani) Fixes bugs: #16653, #14534, #14370
* Typo: == instead of =Stefan Esser2002-06-131-1/+1
|
* - should fix bug#17753Stefan Esser2002-06-131-2/+8
|
* Fixed bug: #17751 (typo)foobar2002-06-131-1/+1
|
* Fixed: possible bufferunderrun (worst case == invalid free bytes counter)Stefan Esser2002-06-131-7/+15
| | | | | | | Fixed: isXXXX macros need (unsigned char) cast Fixed: bug#17746 - control chars are now filtered within "to" and "subject" parameters
* Change a little the dep db structureTomas V.V.Cox2002-06-131-22/+44
| | | | | Comment the code and some clean up's
* More work on the dependencies DB (still not tested/used)Tomas V.V.Cox2002-06-131-25/+76
|
* - Added DOMXML_LOAD_DONT_KEEP_BLANKS as possible mode, if one wants really ↵Christian Stocker2002-06-132-3/+17
| | | | | | | | nicely formatted XML-Documents (but this can have sideeffects, if you depend on whitespaces..) - bumped up domxml-api-version number.
* @ - Added better error-messages (3rd parameter) and validating of DTDs (2nd ↵Christian Stocker2002-06-132-32/+274
| | | | | | | | parameter) to @ domxml_open_mem(string xml[, int mode[, array errors]]) and domxml_open_file(string filename[, int mode[, array errors]]). @ - Added domxml_doc_validate([array errors]) for validating existing DomDocuments with a DTD.
* Fix exit code (bug #17733).Edin Kadribasic2002-06-131-1/+1
|
* - Fix for bug #14410 (Patch by C. McCohy <mccohy@kyberdigi.cz>).Derick Rethans2002-06-131-0/+3
|
* Fix build in ZTS modefoobar2002-06-131-1/+1
|
* ChangeLog update2002-06-131-0/+67
|
* Fix entryJason Greene2002-06-121-1/+1
|
* * comment typosStig Bakken2002-06-121-2/+2
|
* * set working version to 0.91-devStig Bakken2002-06-121-15/+27
|
* * minor cleanupStig Bakken2002-06-121-45/+0
|