]>
granicus.if.org Git - php/log
<changelog@php.net> [Wed, 22 May 2002 00:26:48 +0000 (00:26 +0000)]
ChangeLog update
Tomas V.V.Cox [Wed, 22 May 2002 00:15:27 +0000 (00:15 +0000)]
Make pear -vv XXX set the XML_RPC debug flag
Wez Furlong [Wed, 22 May 2002 00:03:02 +0000 (00:03 +0000)]
Add README and CREDITS...
Wez Furlong [Wed, 22 May 2002 00:02:35 +0000 (00:02 +0000)]
Fix bug when length was queried before the string was converted.
Wez Furlong [Tue, 21 May 2002 22:44:10 +0000 (22:44 +0000)]
Add documentation comment for properties in com_print_typeinfo
Wez Furlong [Tue, 21 May 2002 22:41:45 +0000 (22:41 +0000)]
Enhance com_print_typeinfo.
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);
Andrei Zmievski [Tue, 21 May 2002 21:24:09 +0000 (21:24 +0000)]
*** empty log message ***
Andrei Zmievski [Tue, 21 May 2002 21:23:20 +0000 (21:23 +0000)]
Fix bug #16939.
Wez Furlong [Tue, 21 May 2002 20:57:04 +0000 (20:57 +0000)]
Correct usage of convert_to_string_ex which is not allowed to zval*
Wez Furlong [Tue, 21 May 2002 20:51:31 +0000 (20:51 +0000)]
Reformat some comments.
Wez Furlong [Tue, 21 May 2002 20:46:08 +0000 (20:46 +0000)]
Fix a flag, remove an old comment.
Wez Furlong [Tue, 21 May 2002 18:58:11 +0000 (18:58 +0000)]
- Make sure that COM and VARIANT resources are returned as resources
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;
?>
Hartmut Holzgraefe [Tue, 21 May 2002 12:02:44 +0000 (12:02 +0000)]
ZTS issues fixed
Hartmut Holzgraefe [Tue, 21 May 2002 10:14:12 +0000 (10:14 +0000)]
not beautifull (yet), but should fix ZTS builds
Tomas V.V.Cox [Tue, 21 May 2002 09:19:46 +0000 (09:19 +0000)]
files that are not installed should be removed from the
registered file list (TODO--)
Stig Bakken [Tue, 21 May 2002 07:18:48 +0000 (07:18 +0000)]
* show installed_as instead of a "calculated" path for installed packages
Stig Bakken [Tue, 21 May 2002 07:16:35 +0000 (07:16 +0000)]
* add TODO comment
Sebastian Bergmann [Tue, 21 May 2002 07:15:42 +0000 (07:15 +0000)]
Add HAVE_MBSTR_RU support for Win32.
Sebastian Bergmann [Tue, 21 May 2002 07:10:26 +0000 (07:10 +0000)]
ZTS fixes.
Stig Bakken [Tue, 21 May 2002 07:00:45 +0000 (07:00 +0000)]
* disable wrapping for now
Den V. Tsopa [Tue, 21 May 2002 07:00:34 +0000 (07:00 +0000)]
Added russian codepages (koi8-r,cp1251,cp866) support.
Tomas V.V.Cox [Tue, 21 May 2002 02:31:23 +0000 (02:31 +0000)]
Some minor error verbosity updates
Tomas V.V.Cox [Tue, 21 May 2002 02:28:08 +0000 (02:28 +0000)]
doListRemote -> doRemoteList
Tomas V.V.Cox [Tue, 21 May 2002 02:11:42 +0000 (02:11 +0000)]
Make the installation of a package fail when _installFile
fails and "force" is not set
Stig Bakken [Tue, 21 May 2002 02:04:03 +0000 (02:04 +0000)]
* list command no longer displays test and data files when listing
installed files
Stig Bakken [Tue, 21 May 2002 01:44:06 +0000 (01:44 +0000)]
* package-list command no longer needed ("list" does the same thing and
more)
Stig Bakken [Tue, 21 May 2002 01:40:35 +0000 (01:40 +0000)]
* rename shell-test shortcut to st (was stest)
Stig Bakken [Tue, 21 May 2002 01:38:50 +0000 (01:38 +0000)]
* added more shortcuts
Stig Bakken [Tue, 21 May 2002 01:27:53 +0000 (01:27 +0000)]
* implemented shortcuts ("pv" for "package-validate" etc.)
do "pear help shortcuts" to see what shortcuts exist
* renamed "list-installed" command to "list" and made it able to
list the contents of installed packages as well as tar/tgz/xml files
* added some more/better command docs
* fixed up the synopsis part in the help output
* display option parameters (--foo=bar, where bar is specified in
'shortarg' as for example 'f:bar')
* renamed list-remote-packages to list-remote
* renamed remote-package-info to remote-info
Stig Bakken [Tue, 21 May 2002 01:20:51 +0000 (01:20 +0000)]
* make infoFromAny actually work :)
Stig Bakken [Tue, 21 May 2002 01:20:24 +0000 (01:20 +0000)]
* better wording
Edin Kadribasic [Tue, 21 May 2002 01:03:13 +0000 (01:03 +0000)]
Fix for #17315. Requires client library 7.2 or greater to compile.
<changelog@php.net> [Tue, 21 May 2002 00:23:07 +0000 (00:23 +0000)]
ChangeLog update
Markus Fischer [Mon, 20 May 2002 23:26:13 +0000 (23:26 +0000)]
- Fix posix_isatty() and posix_ttyname() (Closes #17323)
Stig Bakken [Mon, 20 May 2002 22:29:52 +0000 (22:29 +0000)]
* disable debug in XML_RPC fallback
Wez Furlong [Mon, 20 May 2002 22:22:57 +0000 (22:22 +0000)]
Use the GIT for inter-thread marshalling.
Markus Fischer [Mon, 20 May 2002 18:33:08 +0000 (18:33 +0000)]
- Add safe_mode/uid and open_basedir check to zip_open() (closes #16927).
Markus Fischer [Mon, 20 May 2002 17:41:35 +0000 (17:41 +0000)]
- ZTS gotcha
Markus Fischer [Mon, 20 May 2002 17:18:18 +0000 (17:18 +0000)]
- Add open_basedir check for all functions using php_stat() (filesize, stat,
etc), closes #11563.
Harald Radi [Mon, 20 May 2002 15:38:19 +0000 (15:38 +0000)]
this way it even compiles
#blame me if i did something wrong, i didn't test it ;)
Harald Radi [Mon, 20 May 2002 15:35:57 +0000 (15:35 +0000)]
integrating wez's patch
Stig Bakken [Mon, 20 May 2002 11:37:33 +0000 (11:37 +0000)]
* new command setup
Stig Bakken [Mon, 20 May 2002 11:35:33 +0000 (11:35 +0000)]
* upgrade bundled XML_RPC package to 1.0.3
Stig Bakken [Mon, 20 May 2002 10:46:01 +0000 (10:46 +0000)]
* new installer rule that does not depend on bash
Stig Bakken [Mon, 20 May 2002 10:45:23 +0000 (10:45 +0000)]
* _infoFromAny goes public!
Stig Bakken [Mon, 20 May 2002 10:44:53 +0000 (10:44 +0000)]
* some verbosity changes: 0 - only errors, 1 - status report when the
install is done, 2 - show each operation, 3 - show file operations
Stig Bakken [Mon, 20 May 2002 10:43:29 +0000 (10:43 +0000)]
* no output in verbosity level 0
Stig Bakken [Mon, 20 May 2002 10:42:47 +0000 (10:42 +0000)]
* added PEAR_Config::removeLayer()
Stig Bakken [Mon, 20 May 2002 10:31:12 +0000 (10:31 +0000)]
* remove getCommands() from here
* added options to "pear cvstag": -q -Q -d -F
Stig Bakken [Mon, 20 May 2002 10:27:16 +0000 (10:27 +0000)]
* support multiple -v and -q options
Stig Bakken [Mon, 20 May 2002 10:21:01 +0000 (10:21 +0000)]
* forgot to update the release date
Stig Bakken [Mon, 20 May 2002 09:54:37 +0000 (09:54 +0000)]
* fix fix
Stig Bakken [Mon, 20 May 2002 09:05:52 +0000 (09:05 +0000)]
* merge 0.4 files from /pear/Archive_Tar
Stig Bakken [Mon, 20 May 2002 08:58:46 +0000 (08:58 +0000)]
* prepare 0.10
Stig Bakken [Mon, 20 May 2002 08:56:00 +0000 (08:56 +0000)]
* remove run() from this class
Zeev Suraski [Mon, 20 May 2002 07:17:30 +0000 (07:17 +0000)]
MFZE1 (Expose more C++ APIs)
Wez Furlong [Mon, 20 May 2002 05:08:40 +0000 (05:08 +0000)]
This somehow got undone when I committed the rest...
Yasuo Ohgaki [Mon, 20 May 2002 01:40:22 +0000 (01:40 +0000)]
Fixed possible pg_lo_write() overflow and make it more fail safe.
Wez Furlong [Mon, 20 May 2002 01:37:01 +0000 (01:37 +0000)]
Add activescript sapi to the workspace
Wez Furlong [Mon, 20 May 2002 01:35:29 +0000 (01:35 +0000)]
Implement ActiveScript interfaces.
This allows use of PHP in:
Client-side script in Internet Explorer
Windows Scripting Host
ASP and ASP.NET pages
It's mostly working... give it a go.
You will need to regsvr32 the php4activescript.dll manually.
Wez Furlong [Mon, 20 May 2002 01:32:48 +0000 (01:32 +0000)]
Protect C code with extern "C"
Wez Furlong [Mon, 20 May 2002 01:31:48 +0000 (01:31 +0000)]
Added generic COM wrapper for PHP objects.
Tomas V.V.Cox [Mon, 20 May 2002 01:22:00 +0000 (01:22 +0000)]
Added missing key 'doc' for -Z help
Tomas V.V.Cox [Mon, 20 May 2002 01:17:09 +0000 (01:17 +0000)]
Fix small bug making the baseinstalldir attrib persist
Yasuo Ohgaki [Mon, 20 May 2002 01:02:29 +0000 (01:02 +0000)]
Improve large object performance. pg_lo_read() and pg_lo_read_all() should perform
much better now.
Fixed Old API support for pg_lo_import().
<changelog@php.net> [Mon, 20 May 2002 00:24:47 +0000 (00:24 +0000)]
ChangeLog update
Stig Bakken [Mon, 20 May 2002 00:17:43 +0000 (00:17 +0000)]
* no need for getCommands() here
Stig Bakken [Mon, 20 May 2002 00:15:52 +0000 (00:15 +0000)]
* new command setup
Stig Bakken [Mon, 20 May 2002 00:11:15 +0000 (00:11 +0000)]
* typo fixes, wrapping
Stig Bakken [Sun, 19 May 2002 21:45:45 +0000 (21:45 +0000)]
* install pear.bat on Windows only
foobar [Sun, 19 May 2002 21:39:59 +0000 (21:39 +0000)]
Make this actually work somewhat better..
Edin Kadribasic [Sun, 19 May 2002 16:58:05 +0000 (16:58 +0000)]
Give due credit to Markus.
Stig Bakken [Sun, 19 May 2002 16:32:18 +0000 (16:32 +0000)]
* compat fix
Markus Fischer [Sun, 19 May 2002 16:17:23 +0000 (16:17 +0000)]
- Mention the availability of glob().
Tomas V.V.Cox [Sun, 19 May 2002 15:50:36 +0000 (15:50 +0000)]
Put "pear help options" working again
Tomas V.V.Cox [Sun, 19 May 2002 15:44:47 +0000 (15:44 +0000)]
Put "pear help command" working again
Sander Roobol [Sun, 19 May 2002 14:48:27 +0000 (14:48 +0000)]
Fix php.ini-related stuff in run-tests.php
Sander Roobol [Sun, 19 May 2002 14:45:31 +0000 (14:45 +0000)]
get_cfg_var("get_file_path") didn't work correctly when an alternative
php.ini _file_ was specified using -c
Edin Kadribasic [Sun, 19 May 2002 14:32:24 +0000 (14:32 +0000)]
Added glob() support for windows.
Sander Roobol [Sun, 19 May 2002 14:16:41 +0000 (14:16 +0000)]
It's get_cfg_var() not cfg_get_var()
Sander Roobol [Sun, 19 May 2002 13:54:37 +0000 (13:54 +0000)]
Fix temporary filename problems, and update .cvsignores with new extensions
Sander Roobol [Sun, 19 May 2002 13:24:38 +0000 (13:24 +0000)]
Fix make test and remove a warning
Sander Roobol [Sun, 19 May 2002 13:16:03 +0000 (13:16 +0000)]
Cleaned up run-tests.php, and fixed it on linux/unix
# and probably broke it on windows :)
Stig Bakken [Sun, 19 May 2002 06:48:40 +0000 (06:48 +0000)]
* new command setup
Stig Bakken [Sun, 19 May 2002 06:19:26 +0000 (06:19 +0000)]
* support platform-specific files
Stig Bakken [Sun, 19 May 2002 06:13:07 +0000 (06:13 +0000)]
* take uname as optional constructor parameter
<changelog@php.net> [Sun, 19 May 2002 00:21:19 +0000 (00:21 +0000)]
ChangeLog update
foobar [Sun, 19 May 2002 00:06:26 +0000 (00:06 +0000)]
Typo fixes
foobar [Sun, 19 May 2002 00:02:07 +0000 (00:02 +0000)]
DO NOT use C++ comments!
Christian Stocker [Sat, 18 May 2002 20:19:43 +0000 (20:19 +0000)]
- delete attributes as well in php_free_xml_node
- more consistent naming in phpinfo()
Christian Stocker [Sat, 18 May 2002 17:07:59 +0000 (17:07 +0000)]
added "domxml API version" in phpinfo() output.
Christian Stocker [Sat, 18 May 2002 14:38:22 +0000 (14:38 +0000)]
mem leak fix for domxml_dump_node
Christian Stocker [Sat, 18 May 2002 14:23:31 +0000 (14:23 +0000)]
fixes memleak in html_dump_mem
Christian Stocker [Sat, 18 May 2002 14:21:46 +0000 (14:21 +0000)]
rename the object name for comment nodes to domcoment
Markus Fischer [Sat, 18 May 2002 13:31:31 +0000 (13:31 +0000)]
- Fix portability issues with empty results on Linux and FreeBSD, add safe_mode
check and simplify code.
# Hartmut, what was the VCWD check for ?!
Christian Stocker [Sat, 18 May 2002 10:05:21 +0000 (10:05 +0000)]
WS fixes
Christian Stocker [Sat, 18 May 2002 09:35:28 +0000 (09:35 +0000)]
This should fix a big bad memory leak in freeing the nodes at script end.
<changelog@php.net> [Sat, 18 May 2002 00:23:28 +0000 (00:23 +0000)]
ChangeLog update
Sascha Schumann [Fri, 17 May 2002 21:22:30 +0000 (21:22 +0000)]
Improve readability of the header send function
Markus Fischer [Fri, 17 May 2002 16:21:52 +0000 (16:21 +0000)]
- Stuff all Win32 mail() changes together.