|
| 1 | +2002-10-04 David Viner <dviner@yahoo-inc.com> |
| 2 | + |
| 3 | + * ext/xslt/php_sablot.h |
| 4 | + ext/xslt/php_xslt.h |
| 5 | + ext/xslt/sablot.c |
| 6 | + ext/xslt/xslt.c: |
| 7 | + adding the xslt_set_object function (as per discussion on php-dev and |
| 8 | + the newly created sab-php@gingerall.cz) |
| 9 | + --dviner |
| 10 | + |
| 11 | + * ext/xslt/sablot.c |
| 12 | + ext/xslt/xslt.dsp: |
| 13 | + adding segfault detection as proposed by Lenar L�hmus [lenar@vision.ee] |
| 14 | + --dviner |
| 15 | + |
| 16 | +2002-10-04 Stefan Esser <s.esser@e-matters.de> |
| 17 | + |
| 18 | + * ext/ftp/ftp.c: some FTP servers return 32bit port numbers. |
| 19 | + |
| 20 | +2002-10-04 Brian France <list@firehawksystems.com> |
| 21 | + |
| 22 | + * main/fopen_wrappers.c: |
| 23 | + Fixed a problem where opendir with <path>/ and having <path>/ in |
| 24 | + open_basedir ini option didn't work. It was removing the trailing |
| 25 | + slashes and then addeding it back to only one of the string, |
| 26 | + now it adds it back to to both if needed. |
| 27 | + |
| 28 | +2002-10-04 Stefan Esser <s.esser@e-matters.de> |
| 29 | + |
| 30 | + * ext/standard/ftp_fopen_wrapper.c: |
| 31 | + some broken ftp servers return 32bit port numbers. |
| 32 | + |
| 33 | +2002-10-04 Ilia Alshanetsky <ilia@prohost.org> |
| 34 | + |
| 35 | + * sapi/apache2filter/sapi_apache2.c: A slightly better content-type check. |
| 36 | + |
| 37 | + * sapi/apache2filter/README: Added a note on how to enable .phps support. |
| 38 | + |
| 39 | +2002-10-04 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> |
| 40 | + |
| 41 | + * run-tests.php: |
| 42 | + Return to old counting where every test is counted (even those of skipped |
| 43 | + extensions). Inform about the number of extensions tested and skipped. |
| 44 | + This makes the test summary more compareable. |
| 45 | + |
| 46 | + Maybe i'll add a parameter/env-var to skip extension tests. That way we |
| 47 | + could fasten tests for changes in the core. But it has to wait some days. |
| 48 | + |
| 49 | +2002-10-04 Ilia Alshanetsky <ilia@prohost.org> |
| 50 | + |
| 51 | + * sapi/apache2filter/sapi_apache2.c: |
| 52 | + Added .phps support to Apache 2. It can be enabled by adding |
| 53 | + AddType application/x-httpd-php-source .phps |
| 54 | + to httpd.conf |
| 55 | + |
| 56 | +2002-10-04 Sterling Hughes <sterling@bumblebury.com> |
| 57 | + |
| 58 | + * ext/standard/string.c: |
| 59 | + have implode use the smart_str_*() functions, this should speed things up |
| 60 | + quite a bit... |
| 61 | + |
| 62 | +2002-10-04 Martin Jansen <mail@martin-jansen.de> |
| 63 | + |
| 64 | + * pear/PEAR/Registry.php: * Nuke warning when $php_errormsg is not set. |
| 65 | + |
| 66 | +2002-10-04 Sascha Schumann <sascha@schumann.cx> |
| 67 | + |
| 68 | + * main/streams.c: Fix EOF cases |
| 69 | + |
| 70 | + Noticed by: Ilia |
| 71 | + |
| 72 | + * main/streams.c: Interrupt loop, if the stream op fails. |
| 73 | + |
| 74 | + * main/main.c: Nuke warning |
| 75 | + |
| 76 | + * main/network.c |
| 77 | + main/streams.c: Add a few notes |
| 78 | + |
| 79 | +2002-10-04 Wez Furlong <wez.php@thebrainroom.net> |
| 80 | + |
| 81 | + * ext/mime_magic/mime_magic.c: |
| 82 | + Make that error message more meaningful for systems like my SuSE 7.0 with |
| 83 | + an apparently broken magic file. |
| 84 | + |
| 85 | + * main/network.c |
| 86 | + main/php_streams.h |
| 87 | + main/streams.c: replace dont_block with a flag. |
| 88 | + |
| 89 | +2002-10-04 Ilia Alshanetsky <ilia@prohost.org> |
| 90 | + |
| 91 | + * main/streams.c: Fixed bug #19746 |
| 92 | + |
| 93 | +2002-10-04 Sascha Schumann <sascha@schumann.cx> |
| 94 | + |
| 95 | + * main/network.c |
| 96 | + main/php_streams.h |
| 97 | + main/streams.c: |
| 98 | + Improve the general behaviour of stream_gets and fix its semantics |
| 99 | + with regard to sockets. The behaviour should be aligned with PHP 4.2 now. |
| 100 | + This has been verified to some degree. |
| 101 | + |
| 102 | + If the underlying stream operations block when no new data is readable, |
| 103 | + we need to take extra precautions. |
| 104 | + |
| 105 | + If there is buffered data available, we check for a EOL. If it exists, |
| 106 | + we pass the data immediately back to the caller. This saves a call |
| 107 | + to the read implementation and will not block where blocking |
| 108 | + is not necessary at all. |
| 109 | + |
| 110 | + If the stream buffer contains more data than the caller requested, |
| 111 | + we can also avoid that costly step and simply return that data. |
| 112 | + |
| 113 | +2002-10-04 Rasmus Lerdorf <rasmus@lerdorf.on.ca> |
| 114 | + |
| 115 | + * ext/standard/dir.c: Kill a few more warnings |
| 116 | + |
| 117 | + * ext/sockets/sockets.c: Kill warning |
| 118 | + |
| 119 | +2002-10-04 Jani Taskinen <sniper@iki.fi> |
| 120 | + |
| 121 | + * NEWS: combine those ob_* entries and keep the attention line on top |
| 122 | + |
| 123 | +2002-10-04 Marcus B�rger <marcus.boerger@post.rwth-aachen.de> |
| 124 | + |
| 125 | + * ext/standard/basic_functions.c: return FALSE on error |
| 126 | + |
| 127 | + * main/output.c: suggest paranthesis around || and && |
| 128 | + |
| 129 | +2002-10-04 Sander Roobol <phy@wanadoo.nl> |
| 130 | + |
| 131 | + * ext/standard/string.c: |
| 132 | + Fixed a bug in the new implementation of str_repeat() |
| 133 | + |
| 134 | +2002-10-04 Derick Rethans <d.rethans@jdimedia.nl> |
| 135 | + |
| 136 | + * ext/standard/string.c: - dot :) |
| 137 | + |
| 138 | +2002-10-04 Sterling Hughes <sterling@bumblebury.com> |
| 139 | + |
| 140 | + * ext/standard/string.c: fix a memory leak in implode() |
| 141 | + |
| 142 | + |
| 143 | + * ext/standard/string.c: |
| 144 | + Make the glue argument to implode() optional, if it is not specified |
| 145 | + default to using "". |
| 146 | + |
| 147 | +2002-10-04 Andrei Zmievski <andrei@php.net> |
| 148 | + |
| 149 | + * NEWS: that was reverted for now |
| 150 | + |
| 151 | +2002-10-04 Melvyn Sopacua <msopacua@idg.nl> |
| 152 | + |
| 153 | + * ext/xslt/tests/002.phpt |
| 154 | + ext/xslt/tests/003.phpt |
| 155 | + ext/xslt/tests/skipif.inc |
| 156 | + ext/xslt/tests/xslt_set_error_handler.php: Improve testkit for xslt. |
| 157 | + 002.phpt and 003.phpt are regression tests for reported bugs. |
| 158 | + 004.phpt has been known to cause problems in some Sab/PHP combinations. |
| 159 | + No known reports in bug db for that one. |
| 160 | + Added skip mechanism |
| 161 | + |
| 162 | + * ext/xslt/sablot.c: |
| 163 | + (xslt_set_error_handler) Fixes array 'fields' argument to contain correct |
| 164 | + information. |
| 165 | + Patch by Lenar Lohmus. |
| 166 | + |
| 167 | +2002-10-04 Sebastian Bergmann <sb@sebastian-bergmann.de> |
| 168 | + |
| 169 | + * main/config.w32.h.in: Add PHP_CONFIG_FILE_SCAN_DIR. |
| 170 | + |
| 171 | +2002-10-04 Rasmus Lerdorf <rasmus@lerdorf.on.ca> |
| 172 | + |
| 173 | + * main/php_ini.c |
| 174 | + ext/standard/info.c |
| 175 | + main/build-defs.h.in |
| 176 | + main/main.c |
| 177 | + NEWS |
| 178 | + configure.in: |
| 179 | + As discussed, add --with-config-file-scan-dir compile-time switch defining |
| 180 | + a directory which will be scanned for *.ini files after the main php.ini |
| 181 | + file has been parsed. This makes it much easier to automatically deploy |
| 182 | + a modular PHP since adding extensions which have their own ini switches can |
| 183 | + now be done by simply dropping a foo.ini file in the right directory and |
| 184 | + restarting. A list of parsed ini files is maintained and shown on the |
| 185 | + phpinfo page. |
| 186 | + |
| 187 | +2002-10-04 Sean Bright <elixer@erols.com> |
| 188 | + |
| 189 | + * ext/standard/tests/math/hexdec.phpt: Add missing ?> |
| 190 | + |
| 191 | +2002-10-04 Sascha Schumann <sascha@schumann.cx> |
| 192 | + |
| 193 | + * ext/standard/math.c: peek at freebsd's libc and fix _php_math_basetozval |
| 194 | + |
| 195 | + PR: #19733 |
| 196 | + |
| 197 | + * ext/standard/tests/math/hexdec.phpt: |
| 198 | + overflow check for _php_math_basetozval |
| 199 | + |
| 200 | + * ext/standard/filestat.c: Fix php_stat brokenness. |
| 201 | + |
1 | 202 | 2002-10-03 Sascha Schumann <sascha@schumann.cx>
|
2 | 203 |
|
3 | 204 | * ext/session/tests/019.phpt: remove trans_sid=1
|
|
0 commit comments