Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Empty HEAD of domxml, hyperwave, xslt | Sascha Schumann | 2003-06-24 | 1 | -4081/+0 |
| | |||||
* | Fixed a few remaining compiler warnings. | Ilia Alshanetsky | 2003-06-16 | 1 | -3/+3 |
| | |||||
* | proto fixes | Andrey Hristov | 2003-06-15 | 1 | -69/+69 |
| | |||||
* | updating license information in the headers. | James Cox | 2003-06-10 | 1 | -3/+3 |
| | |||||
* | Renamed OnUpdateInt -> OnUpdateLong to prevent further misunderstandings. | foobar | 2003-03-07 | 1 | -1/+1 |
| | | | | | | # Intentionally left out any 'alias' for it, this way 3rd party extension # maintainers will really NOTICE the change. | ||||
* | typofix | foobar | 2003-03-04 | 1 | -1/+1 |
| | |||||
* | A add much more useful select(2) implementation than is provided by | Wez Furlong | 2003-02-16 | 1 | -1/+1 |
| | | | | | | | | | | | | | windows sockets. The winsock implementation will only work with sockets; our implementation works with sockets and file descriptors. By association, stream_select() will now operate correctly with files, pipes and sockets. This change required linking against the winsock2 library. In terms of compatibility, only older versions of windows 95 do not have winsock2 installed by default. It is available as a redistributable file, and is most likely installed by any OS patches (eg: Internet Explorer) applied by the user. Also, add a win32 compatible pipe test when opening a stream from a pipe. This test will only work on NT, win2k and XP platforms. Without this test, interleaved fread() and select() calls would cause the read buffer to be clobbered. I will be working on a fix for this issue for win9x. | ||||
* | - fixed several bugs in hw_document_xx() functions. The macro to access | Uwe Steinmann | 2003-01-27 | 1 | -11/+11 |
| | | | | | the document was the same as for a link to the sever. | ||||
* | Fixed compile warning. | Ilia Alshanetsky | 2003-01-24 | 1 | -2/+1 |
| | |||||
* | Removed pointless memory allocation checks. | Ilia Alshanetsky | 2003-01-18 | 1 | -82/+26 |
| | |||||
* | Getting rid of the old API parsing code. | Ilia Alshanetsky | 2003-01-15 | 1 | -10/+10 |
| | |||||
* | Fixed compile warnings. | Ilia Alshanetsky | 2003-01-14 | 1 | -3/+9 |
| | |||||
* | Changed php_error to php_error_docref. | Ilia Alshanetsky | 2003-01-14 | 1 | -611/+258 |
| | | | | | Got rid off the ancient getParameters* parameter parsing API. | ||||
* | Bump year. | Sebastian Bergmann | 2002-12-31 | 1 | -1/+1 |
| | |||||
* | centralize #include "build-defs.h" and drop (sometimes inconsistent) other | Sascha Schumann | 2002-10-24 | 1 | -2/+0 |
| | | | | | instances | ||||
* | - make_objrec_from_array() gets a second parameter to handle key/pairs of | Uwe Steinmann | 2002-09-30 | 1 | -17/+26 |
| | | | | | | the form key=value and key:value. - Proper treatment of the attribute SQLStmt | ||||
* | - removed unused variable | Uwe Steinmann | 2002-07-24 | 1 | -1/+0 |
| | |||||
* | - fixed bug in hwnew_new_document_from_file | Uwe Steinmann | 2002-07-03 | 1 | -10/+7 |
| | |||||
* | Unify error messages | Derick Rethans | 2002-06-28 | 1 | -109/+109 |
| | |||||
* | Tweak the API to be more consistent. | Wez Furlong | 2002-03-16 | 1 | -1/+1 |
| | | | | | Update docs. | ||||
* | change * formatting | Wez Furlong | 2002-03-16 | 1 | -1/+1 |
| | |||||
* | New PHP streams... | Wez Furlong | 2002-03-15 | 1 | -66/+8 |
| | |||||
* | Maintain headers. | Sebastian Bergmann | 2002-02-28 | 1 | -1/+1 |
| | |||||
* | Update headers. | Sebastian Bergmann | 2001-12-11 | 1 | -2/+2 |
| | |||||
* | C++ comment pollution removed. | foobar | 2001-10-24 | 1 | -1/+1 |
| | |||||
* | - switched src and dest in memcpy. This caused a segm fault in ↵ | Uwe Steinmann | 2001-10-24 | 1 | -4/+4 |
| | | | | hw_new_document_from_file() | ||||
* | * zend_module_entry change: apino, debug and zts are moved first, | Stig Bakken | 2001-10-11 | 1 | -1/+2 |
| | | | | | | see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig) | ||||
* | Parse-fix | Jeroen van Wolffelaar | 2001-09-26 | 1 | -1/+1 |
| | |||||
* | 2nd phase in back-substitution those macro's | Jeroen van Wolffelaar | 2001-09-25 | 1 | -170/+170 |
| | | | | | I've got pretty much everything now... | ||||
* | Back-substitute for Z_* macro's. If it breaks some extension (the script ↵ | Jeroen van Wolffelaar | 2001-09-25 | 1 | -109/+109 |
| | | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know. | ||||
* | - Don't wrap lines... this is annoying while coding. | Derick Rethans | 2001-09-09 | 1 | -2/+2 |
| | |||||
* | Track down a few more functions that don't check for 0 args and use | Rasmus Lerdorf | 2001-08-13 | 1 | -2/+3 |
| | | | | | faster mechanism | ||||
* | We don't consistently check for args passed to functions that don't | Rasmus Lerdorf | 2001-08-13 | 1 | -0/+3 |
| | | | | | | | | | take any args. In some cases we probably want to skip the check for performance reasons, but in other cases where performance is unlikely to be a factor, not throwing a warning on the wrong number of args passed to a function is at best inconsistent, and at worst it could hide a bug. So, add a few such checks. There are still lots of cases out there. | ||||
* | Whitespace | Zeev Suraski | 2001-08-11 | 1 | -161/+161 |
| | |||||
* | fix php_write | Sascha Schumann | 2001-08-05 | 1 | -1/+1 |
| | |||||
* | - TSRMLS_FETCH work | Zeev Suraski | 2001-08-05 | 1 | -61/+122 |
| | | | | | - whitespace fixes | ||||
* | More TSRMLS_FETCH annihilation. Enough for today... | Zeev Suraski | 2001-07-31 | 1 | -3/+5 |
| | |||||
* | More TSRMLS_FETCH annihilation | Zeev Suraski | 2001-07-31 | 1 | -5/+3 |
| | |||||
* | More TSRMLS_FETCH work, and a bit of cleanup | Zeev Suraski | 2001-07-30 | 1 | -2/+0 |
| | |||||
* | Avoid TSRMLS_FETCH()'s, and clean up a bit of stale extern's and layout on ↵ | Zeev Suraski | 2001-07-30 | 1 | -1/+2 |
| | | | | the way | ||||
* | Redesigned thread safety mechanism - nua nua | Zeev Suraski | 2001-07-28 | 1 | -5/+6 |
| | |||||
* | Fix folding and clean up some extensions | Rasmus Lerdorf | 2001-06-06 | 1 | -2/+28 |
| | |||||
* | * include "config.h" if HAVE_CONFIG_H is defined (for standalone dso build) | Stig Bakken | 2001-05-24 | 1 | -0/+4 |
| | |||||
* | - completed list of error messages (thanks to Torben Wilson) | Uwe Steinmann | 2001-05-18 | 1 | -5/+185 |
| | |||||
* | *must* use HwSLS_FETCH() | Daniel Beulshausen | 2001-04-30 | 1 | -2/+4 |
| | |||||
* | -fixed prototype and indention | Uwe Steinmann | 2001-03-14 | 1 | -3/+4 |
| | |||||
* | - Fix copyright notices with 2001 | Andi Gutmans | 2001-02-26 | 1 | -1/+1 |
| | |||||
* | Finish fopen-wrappers rename. | Sascha Schumann | 2001-02-23 | 1 | -1/+1 |
| | |||||
* | - took out the HwSLS_FETCH to make it compile again on Unix | Uwe Steinmann | 2001-02-22 | 1 | -2/+2 |
| | | | | | Is this really neccesary at this point? | ||||
* | make hyperwave build under win32 | Daniel Beulshausen | 2001-02-20 | 1 | -82/+86 |
| |