summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* Makring function declarations match implementations (ZTS compilation)Frank M. Kromann2002-06-011-6/+6
|
* Fixed typo..foobar2002-05-311-1/+1
|
* Changed PHP_EXPORTS to DOMXML_EXPORTS as Edin Kadribasic suggestedBrad LaFountain2002-05-312-2/+13
|
* added wez to the com extensionHarald Radi2002-05-311-1/+1
|
* added wez and ordered names alphabeticallyHarald Radi2002-05-312-2/+2
|
* initalize variable in domxml_doc_document_element()Brad LaFountain2002-05-311-1/+1
|
* defined PHP_EXPORTS for exporting php_domobject_new()Brad LaFountain2002-05-311-2/+2
|
* added the ability to use new keywork with domxmls objects "new DomDocument()"Brad LaFountain2002-05-312-144/+225
| | | | | | | | | | instead of xmldoc. This also allows you to create nodes without having a whole document "new DomElement("foo")". moved DOMXML_API_VERSION to php_domxml.h exposed php_domobject_new for other extensions to use removed some un-needed code
* #forgot somethingHarald Radi2002-05-302-8/+8
|
* @ Added missing AddRef() calls in the COM extension. This shouldHarald Radi2002-05-308-30/+44
| | | | | | | @ fix weird behaviour (in particular with ADODB). (Harald) # waah, this suxx
* - Tell the user why his session doesn't work if he uses custom session_id()s.Markus Fischer2002-05-301-2/+7
|
* Fixes some dummy errors (again).Den V. Tsopa2002-05-301-30/+42
|
* Added GB2312 alias for CN-GBDen V. Tsopa2002-05-291-1/+1
|
* - Fix for bug #17503Derick Rethans2002-05-291-2/+2
|
* @Fixed some dummy errors. (dets)Den V. Tsopa2002-05-291-43/+31
|
* moved to PECLHartmut Holzgraefe2002-05-278-2006/+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
|