summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'RELEASE_0_10'.RELEASE_0_10SVN Migration2002-05-261371-428017/+0
|
* @Fix segfault in version_compare() (Stig)Stig Bakken2002-05-261-8/+17
|
* reverted my patch.Rui Hirokawa2002-05-241-9/+7
|
* reverted patch to support iso2022kr.Rui Hirokawa2002-05-245-8/+173
|
* Fix <head> and <body> tags in phpinfo() output (#17411)Sander Roobol2002-05-241-3/+3
|
* - Added support for compressed SWF (Flash MX) files to getimagesize().Derick Rethans2002-05-232-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. OriginalAndrei Zmievski2002-05-231-11/+54
| | | | | patch by David Brown, modified by me.
* - Fix typoAndi Gutmans2002-05-231-3/+3
|
* Add simple test case for proc_openWez Furlong2002-05-231-0/+29
|
* Fix (stupid) segfault. #17379Wez Furlong2002-05-231-3/+3
|
* - Fix unchecked return values with parameters to proc_open. (FixesDerick Rethans2002-05-231-8/+28
| | | | | bug #17375)
* - Fix errormessage and whitespaceDerick Rethans2002-05-231-7/+7
|
* Added 4th parameter to specify enclosure character. Patch by Dean Richard ↵Yasuo Ohgaki2002-05-231-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_typeinfoWez Furlong2002-05-212-0/+16
|
* Enhance com_print_typeinfo.Wez Furlong2002-05-212-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 Zmievski2002-05-211-1/+2
|
* Correct usage of convert_to_string_ex which is not allowed to zval*Wez Furlong2002-05-212-10/+8
|
* Reformat some comments.Wez Furlong2002-05-212-56/+44
|
* Fix a flag, remove an old comment.Wez Furlong2002-05-212-4/+2
|
* - Make sure that COM and VARIANT resources are returned as resourcesWez Furlong2002-05-2110-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 fixedHartmut Holzgraefe2002-05-211-1/+0
|
* not beautifull (yet), but should fix ZTS buildsHartmut Holzgraefe2002-05-211-15/+20
|
* ZTS fixes.Sebastian Bergmann2002-05-211-9/+9
|
* Added russian codepages (koi8-r,cp1251,cp866) support.Den V. Tsopa2002-05-217-108/+482
|
* Fix for #17315. Requires client library 7.2 or greater to compile.Edin Kadribasic2002-05-211-4/+4
|
* - Fix posix_isatty() and posix_ttyname() (Closes #17323)Markus Fischer2002-05-201-6/+10
|
* - Add safe_mode/uid and open_basedir check to zip_open() (closes #16927).Markus Fischer2002-05-201-1/+10
|
* - ZTS gotchaMarkus Fischer2002-05-201-1/+1
|
* - Add open_basedir check for all functions using php_stat() (filesize, stat,Markus Fischer2002-05-201-0/+4
| | | | | etc), closes #11563.
* integrating wez's patchHarald Radi2002-05-206-40/+26
|
* Fixed possible pg_lo_write() overflow and make it more fail safe.Yasuo Ohgaki2002-05-201-1/+11
|
* Added generic COM wrapper for PHP objects.Wez Furlong2002-05-208-12/+1234
|
* Improve large object performance. pg_lo_read() and pg_lo_read_all() should ↵Yasuo Ohgaki2002-05-201-9/+8
| | | | | | | | perform much better now. Fixed Old API support for pg_lo_import().
* Added glob() support for windows.Edin Kadribasic2002-05-191-0/+4
|
* DO NOT use C++ comments!foobar2002-05-192-3/+7
|
* - delete attributes as well in php_free_xml_nodeChristian Stocker2002-05-181-2/+4
| | | | | - more consistent naming in phpinfo()
* added "domxml API version" in phpinfo() output.Christian Stocker2002-05-181-1/+9
|
* mem leak fix for domxml_dump_nodeChristian Stocker2002-05-181-2/+2
|
* fixes memleak in html_dump_memChristian Stocker2002-05-181-1/+1
|
* rename the object name for comment nodes to domcomentChristian Stocker2002-05-181-1/+1
|
* - Fix portability issues with empty results on Linux and FreeBSD, add safe_modeMarkus Fischer2002-05-181-14/+22
| | | | | | check and simplify code. # Hartmut, what was the VCWD check for ?!
* WS fixesChristian Stocker2002-05-181-3/+3
|
* This should fix a big bad memory leak in freeing the nodes at script end.Christian Stocker2002-05-181-9/+19
|
* proto tweakWez Furlong2002-05-171-1/+1
|
* Add an optional flag to sem_get that specifies if the semaphore should beWez Furlong2002-05-172-60/+37
| | | | | | automatically released on request shutdown. (#16986) Fix a segfault in sem_remove (#17274)
* Only the last cookie was getting set. (You can haveCliff Woolley2002-05-171-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 methodChristian Stocker2002-05-162-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. Bannister2002-05-161-21/+28
| | | | character tests.
* Remove leading "./" from include filenames as in PHP this defeats include_path.Preston L. Bannister2002-05-169-11/+10
|
* Adjust dirname() on Win32 to match CWD per drive semantics.Preston L. Bannister2002-05-161-4/+18
|