Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | This commit was manufactured by cvs2svn to create tag 'RELEASE_0_10'.RELEASE_0_10 | SVN Migration | 2002-05-26 | 1371 | -428017/+0 |
| | |||||
* | @Fix segfault in version_compare() (Stig) | Stig Bakken | 2002-05-26 | 1 | -8/+17 |
| | |||||
* | reverted my patch. | Rui Hirokawa | 2002-05-24 | 1 | -9/+7 |
| | |||||
* | reverted patch to support iso2022kr. | Rui Hirokawa | 2002-05-24 | 5 | -8/+173 |
| | |||||
* | Fix <head> and <body> tags in phpinfo() output (#17411) | Sander Roobol | 2002-05-24 | 1 | -3/+3 |
| | |||||
* | - Added support for compressed SWF (Flash MX) files to getimagesize(). | Derick Rethans | 2002-05-23 | 2 | -1/+47 |
| | | | | | | (Fixes feature request #17272). @- Added support to getimagesize() for compressed Flash MX files. (Derick) | ||||
* | This code adds string offset capturing in preg_split() results. Original | Andrei Zmievski | 2002-05-23 | 1 | -11/+54 |
| | | | | | patch by David Brown, modified by me. | ||||
* | - Fix typo | Andi Gutmans | 2002-05-23 | 1 | -3/+3 |
| | |||||
* | Add simple test case for proc_open | Wez Furlong | 2002-05-23 | 1 | -0/+29 |
| | |||||
* | Fix (stupid) segfault. #17379 | Wez Furlong | 2002-05-23 | 1 | -3/+3 |
| | |||||
* | - Fix unchecked return values with parameters to proc_open. (Fixes | Derick Rethans | 2002-05-23 | 1 | -8/+28 |
| | | | | | bug #17375) | ||||
* | - Fix errormessage and whitespace | Derick Rethans | 2002-05-23 | 1 | -7/+7 |
| | |||||
* | Added 4th parameter to specify enclosure character. Patch by Dean Richard ↵ | Yasuo Ohgaki | 2002-05-23 | 1 | -11/+40 |
| | | | | | | | Benson <dean@vipersoft.co.uk> Spit more meaningful error messages when delim and/or enclosure char is null. | ||||
* | Add documentation comment for properties in com_print_typeinfo | Wez Furlong | 2002-05-21 | 2 | -0/+16 |
| | |||||
* | Enhance com_print_typeinfo. | Wez Furlong | 2002-05-21 | 2 | -160/+266 |
| | | | | | | | | | | | | The main expected use is like this, for figuring out what methods are allowed for a COM object: $ie = new COM("InternetExplorer.Application"); // Prints class definition for IE object com_print_typeinfo($ie, "InternetExplorer.Application", false); // Prints class definition for default IE event handler com_print_typeinfo($ie, "InternetExplorer.Application", true); | ||||
* | Fix bug #16939. | Andrei Zmievski | 2002-05-21 | 1 | -1/+2 |
| | |||||
* | Correct usage of convert_to_string_ex which is not allowed to zval* | Wez Furlong | 2002-05-21 | 2 | -10/+8 |
| | |||||
* | Reformat some comments. | Wez Furlong | 2002-05-21 | 2 | -56/+44 |
| | |||||
* | Fix a flag, remove an old comment. | Wez Furlong | 2002-05-21 | 2 | -4/+2 |
| | |||||
* | - Make sure that COM and VARIANT resources are returned as resources | Wez Furlong | 2002-05-21 | 10 | -106/+1104 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | rather than longs. - Make the IDispatch implementation a bit more generic (and fix my mess of pointers). - Add new com_message_pump() function that acts like an interruptible usleep() that processes COM calls/events. - Add new com_print_typeinfo() function for "decompiling" the typeinfo for an interface into PHP script. This is useful for generating a skeleton for use as an event sink. - Add new com_event_sink() function for sinking events from COM objects. Usage is like this: <?php class IEEventSinker { var $terminated = false; function ProgressChange($progress, $progressmax) { echo "Download progress: $progress / $progressmax\n"; } function DocumentComplete(&$dom, $url) { echo "Document $url complete\n"; } function OnQuit() { echo "Quit!\n"; $this->terminated = true; } } $ie = new COM("InternetExplorer.Application"); $sink =& new IEEventSinker(); com_event_sink($ie, $sink, "DWebBrowserEvents2"); $ie->Visible = true; $ie->Navigate("http://www.php.net"); while(!$sink->terminated) { com_message_pump(4000); } $ie = null; ?> | ||||
* | ZTS issues fixed | Hartmut Holzgraefe | 2002-05-21 | 1 | -1/+0 |
| | |||||
* | not beautifull (yet), but should fix ZTS builds | Hartmut Holzgraefe | 2002-05-21 | 1 | -15/+20 |
| | |||||
* | ZTS fixes. | Sebastian Bergmann | 2002-05-21 | 1 | -9/+9 |
| | |||||
* | Added russian codepages (koi8-r,cp1251,cp866) support. | Den V. Tsopa | 2002-05-21 | 7 | -108/+482 |
| | |||||
* | Fix for #17315. Requires client library 7.2 or greater to compile. | Edin Kadribasic | 2002-05-21 | 1 | -4/+4 |
| | |||||
* | - Fix posix_isatty() and posix_ttyname() (Closes #17323) | Markus Fischer | 2002-05-20 | 1 | -6/+10 |
| | |||||
* | - Add safe_mode/uid and open_basedir check to zip_open() (closes #16927). | Markus Fischer | 2002-05-20 | 1 | -1/+10 |
| | |||||
* | - ZTS gotcha | Markus Fischer | 2002-05-20 | 1 | -1/+1 |
| | |||||
* | - Add open_basedir check for all functions using php_stat() (filesize, stat, | Markus Fischer | 2002-05-20 | 1 | -0/+4 |
| | | | | | etc), closes #11563. | ||||
* | integrating wez's patch | Harald Radi | 2002-05-20 | 6 | -40/+26 |
| | |||||
* | Fixed possible pg_lo_write() overflow and make it more fail safe. | Yasuo Ohgaki | 2002-05-20 | 1 | -1/+11 |
| | |||||
* | Added generic COM wrapper for PHP objects. | Wez Furlong | 2002-05-20 | 8 | -12/+1234 |
| | |||||
* | Improve large object performance. pg_lo_read() and pg_lo_read_all() should ↵ | Yasuo Ohgaki | 2002-05-20 | 1 | -9/+8 |
| | | | | | | | | perform much better now. Fixed Old API support for pg_lo_import(). | ||||
* | Added glob() support for windows. | Edin Kadribasic | 2002-05-19 | 1 | -0/+4 |
| | |||||
* | DO NOT use C++ comments! | foobar | 2002-05-19 | 2 | -3/+7 |
| | |||||
* | - delete attributes as well in php_free_xml_node | Christian Stocker | 2002-05-18 | 1 | -2/+4 |
| | | | | | - more consistent naming in phpinfo() | ||||
* | added "domxml API version" in phpinfo() output. | Christian Stocker | 2002-05-18 | 1 | -1/+9 |
| | |||||
* | mem leak fix for domxml_dump_node | Christian Stocker | 2002-05-18 | 1 | -2/+2 |
| | |||||
* | fixes memleak in html_dump_mem | Christian Stocker | 2002-05-18 | 1 | -1/+1 |
| | |||||
* | rename the object name for comment nodes to domcoment | Christian Stocker | 2002-05-18 | 1 | -1/+1 |
| | |||||
* | - Fix portability issues with empty results on Linux and FreeBSD, add safe_mode | Markus Fischer | 2002-05-18 | 1 | -14/+22 |
| | | | | | | check and simplify code. # Hartmut, what was the VCWD check for ?! | ||||
* | WS fixes | Christian Stocker | 2002-05-18 | 1 | -3/+3 |
| | |||||
* | This should fix a big bad memory leak in freeing the nodes at script end. | Christian Stocker | 2002-05-18 | 1 | -9/+19 |
| | |||||
* | proto tweak | Wez Furlong | 2002-05-17 | 1 | -1/+1 |
| | |||||
* | Add an optional flag to sem_get that specifies if the semaphore should be | Wez Furlong | 2002-05-17 | 2 | -60/+37 |
| | | | | | | automatically released on request shutdown. (#16986) Fix a segfault in sem_remove (#17274) | ||||
* | Only the last cookie was getting set. (You can have | Cliff Woolley | 2002-05-17 | 1 | -1/+1 |
| | | | | | | | | | more than one Set-Cookie: header, as indicated by http://wp.netscape.com/newsref/std/cookie_spec.html.) PR: 16626 Submitted by: regina@hitel.net | ||||
* | - replaced domxml_doc_document_element implementation do use libxml2 method | Christian Stocker | 2002-05-16 | 2 | -34/+47 |
| | | | | | | | - renamed domxml_add_root to domxml_doc_add_root (and added alias for BC) - aliased $doc->get_root to domxml_document_element @ - added domxml_doc_set_root to change the root node (Lukas Schroeder) | ||||
* | Restrict ctype tests to POSIX portable characters (0..127) and add numeric ↵ | Preston L. Bannister | 2002-05-16 | 1 | -21/+28 |
| | | | | character tests. | ||||
* | Remove leading "./" from include filenames as in PHP this defeats include_path. | Preston L. Bannister | 2002-05-16 | 9 | -11/+10 |
| | |||||
* | Adjust dirname() on Win32 to match CWD per drive semantics. | Preston L. Bannister | 2002-05-16 | 1 | -4/+18 |
| |