summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Removing a unused local variable.Frank M. Kromann2002-04-121-2/+2
| | | | | Setting the size before returning the value in readgzfile
* -new function php_mb_check_encoding_listMarcus Boerger2002-04-122-22/+49
| | | | | -mark module globals as const (thread safety)
* This test should be skipped if(!cgi)Sander Roobol2002-04-121-1/+6
|
* -fix mb_detect_orderMarcus Boerger2002-04-121-10/+42
| | | | | -php_mbstring_parse_encoding_list/array return 0 on any illegal input
* - added method DomNode->remove_child()Uwe Steinmann2002-04-122-1/+37
|
* - fixed stupid compile errorUwe Steinmann2002-04-121-1/+1
|
* - insert_before(): copy node before doing the insertUwe Steinmann2002-04-122-53/+226
| | | | | | | | | | - append_child(): actually do an append child and not and add sibling - what is called xmlDtd in libxml is actually the class DocumentType in DOM. The domxml extension used a class DomDtd which is not defined in the DOM standard. Instead of using DomDtd DomDocumentType is now used. DomDtd has been renamed to Dtd but has not meaning anymore. - added more functions
* Sync with php4dllts.Sebastian Bergmann2002-04-121-0/+2
|
* Enable CGI binary for testing. CGI binary should be used when it'sYasuo Ohgaki2002-04-121-15/+11
| | | | | | | available, since some tests cannot be performed by CLI. (And many of them are just failing now) Fixed SAPI and VERSION output.
* Be nice to php.ini-recommended users.Yasuo Ohgaki2002-04-121-1/+1
| | | | | | | php.ini-recommended uses output buffer resulting delayed output during "make test". User php.ini file is used anyway, since run-tests.php invoke php for each test from there.
* This exif test was failing because the \0's in the expected output hadRasmus Lerdorf2002-04-121-0/+0
| | | | | | | disappeared. It may be CVS doing this. I have put the nulls back, but we may have to mark this as a binary file in th cvswrappers, or rewrite the test to not output nulls.
* Update Sablotron version supported.Yasuo Ohgaki2002-04-121-1/+1
|
* NEWS update2002-04-121-0/+1
|
* ChangeLog update2002-04-121-0/+185
|
* CGI/CLI take file and dir for -c option by this.Yasuo Ohgaki2002-04-123-34/+41
| | | | | @ Both 'file' and 'path to php.ini' is allowed for "-c" cli/cgi option. (Yasuo)
* interpret empty to_encoding as encoding not set what results in ↵Marcus Boerger2002-04-111-1/+1
| | | | current_internal_encoding
* Fixed (again) the news entry..NEWS file is not a manual.foobar2002-04-111-2/+2
|
* fixed a bug which causes crash when charset is not set.Rui Hirokawa2002-04-111-8/+10
|
* Fix a problem where php-generated data was pushed down the entire outputAaron Bannert2002-04-112-3/+5
| | | | | | | | filter chain instead of just down the rest of the chain. This fix will speed up some unnecessary overhead introduced in the last patch. Suggested by: Cliff Woolley <jwoolley@apache.org>
* fixed typeHarald Radi2002-04-111-1/+1
|
* PHP filters and Apache 2 aren't quite a perfect match yet, so we haveAaron Bannert2002-04-112-24/+70
| | | | | | | | | | | | | | | | | | | | | | | to do some trickery with the server_context to make sure it is always valid within the current thread. This patch makes sure the server_context is created in apache's post_read_request hook phase, and then registeres a cleanup that will NULL out the server context when the request goes out of scope. Then, inside the output filters, if the server_context is null we throw an error. Finally, instead of saving the output filter in the server_context, now we store the entire request_rec pointer in there. POST bodies appear to be working now, although they are very inefficient. The input filter is still just realloc()ing for whatever data comes down the input pipe, and then sending this to PHP. This means that we are doing some really nasty memory management on big POST bodies. For now this it allows for unlimited input bodies, which means that a big POST could potentially DoS a box by making it run out of memory. We might want to put a limit on here just in case, at least until we figure out how to consume input data more efficiently into php.
* Fixing project files so that they loadJoseph Tate2002-04-113-2465/+2465
|
* Don't depend on the context provided by the filter (f->ctx) anymore. InAaron Bannert2002-04-111-6/+3
| | | | | | | | Apache 2 the input and output filter contexts are kept unique. We now only depend on SG(server_context) for each request, and assume that the same thread will process the entire request. At some point it would be wise to separate the input and output contexts.
* Return the number of bytes consumed, not the number of bytes left.Aaron Bannert2002-04-111-1/+1
| | | | | Suggested by: Brian Havard <brianh@kheldar.apana.org.au>
* - add quotes. Cought by: Roman Neuhauser <neuhauser@mail.cz>Jan Lehnardt2002-04-111-1/+1
|
* Update README.Sebastian Bergmann2002-04-111-5/+2
|
* Added versioning to dll and exe files created under windows.Joseph Tate2002-04-1110-2441/+2852
| | | | | | | | #Note that these do not require modification when the version number changes. #Utilizes the new partitioned version number defines in php_version.h @ Added version info to the dll and exe files created under Windows. (jtate)
* sync with PHP_MAJOR_VERSION changes to configure.inWez Furlong2002-04-111-0/+4
|
* Apply patch for MAJOR_VERSION etc. by Joseph TateWez Furlong2002-04-111-1/+10
|
* Fix ZTS buildYasuo Ohgaki2002-04-111-1/+1
| | | | | | # Please check caller when you add TSRMLS_DC. Especically if it's PHPAPI function... # find . -name "*.c" | xargs grep php_mail
* Fix declarations (Thanks Sebastian)Wez Furlong2002-04-112-3/+3
|
* use DIRECTORY_SEPERATORAlexander Merz2002-04-111-20/+20
|
* thread safeMarcus Boerger2002-04-111-18/+62
|
* fix build (hopefully for BSD, too)Marcus Boerger2002-04-111-3/+2
|
* fix warningMarcus Boerger2002-04-111-1/+1
|
* fix testproblemMarcus Boerger2002-04-111-1/+1
|
* Patch by Aaron Bannert <aaron@clove.org> and Cliff Woolley ↵Sebastian Bergmann2002-04-112-82/+72
| | | | <jwoolley@virginia.edu>.
* properly reset ac_extra in PHP_NEW_EXTENSIONSascha Schumann2002-04-111-2/+2
| | | | | | | redirect stderr to /dev/null to silence xargs Noticed by: Andrei
* TSRMG => TSRMLSYasuo Ohgaki2002-04-111-2/+2
|
* NEWS update2002-04-111-0/+2
|
* ChangeLog update2002-04-112-0/+149
|
* fix warningWez Furlong2002-04-101-2/+2
|
* Implement stream context and status notification system.Wez Furlong2002-04-1016-89/+406
| | | | | | Bump the BC for zlib notice to a warning # See my RFC to php-dev a few days ago
* MFZE1foobar2002-04-101-1/+1
|
* MFZE1foobar2002-04-102-0/+28
|
* - Added __FUNCTION__ and __CLASS__ constants.foobar2002-04-101-1/+3
|
* * add download command to descriptionStig Bakken2002-04-101-0/+1
|
* Implemented "pear download <pakage>"Tomas V.V.Cox2002-04-101-1/+44
|
* Do not show the "tag it!" message when verbose=0Tomas V.V.Cox2002-04-101-2/+2
| | | | | # Forgot to commit that before
* Added single display()Tomas V.V.Cox2002-04-101-0/+5
|