]> granicus.if.org Git - php/log
php
22 years agoChangeLog update
<changelog@php.net> [Wed, 22 May 2002 00:26:48 +0000 (00:26 +0000)]
ChangeLog update

22 years agoMake pear -vv XXX set the XML_RPC debug flag
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

22 years agoAdd README and CREDITS...
Wez Furlong [Wed, 22 May 2002 00:03:02 +0000 (00:03 +0000)]
Add README and CREDITS...

22 years agoFix bug when length was queried before the string was converted.
Wez Furlong [Wed, 22 May 2002 00:02:35 +0000 (00:02 +0000)]
Fix bug when length was queried before the string was converted.

22 years agoAdd documentation comment for properties in com_print_typeinfo
Wez Furlong [Tue, 21 May 2002 22:44:10 +0000 (22:44 +0000)]
Add documentation comment for properties in com_print_typeinfo

22 years agoEnhance 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);

22 years ago*** empty log message ***
Andrei Zmievski [Tue, 21 May 2002 21:24:09 +0000 (21:24 +0000)]
*** empty log message ***

22 years agoFix bug #16939.
Andrei Zmievski [Tue, 21 May 2002 21:23:20 +0000 (21:23 +0000)]
Fix bug #16939.

22 years agoCorrect usage of convert_to_string_ex which is not allowed to zval*
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*

22 years agoReformat some comments.
Wez Furlong [Tue, 21 May 2002 20:51:31 +0000 (20:51 +0000)]
Reformat some comments.

22 years agoFix a flag, remove an old comment.
Wez Furlong [Tue, 21 May 2002 20:46:08 +0000 (20:46 +0000)]
Fix a flag, remove an old comment.

22 years ago- Make sure that COM and VARIANT resources are returned as resources
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;
?>

22 years agoZTS issues fixed
Hartmut Holzgraefe [Tue, 21 May 2002 12:02:44 +0000 (12:02 +0000)]
ZTS issues fixed

22 years agonot beautifull (yet), but should fix ZTS builds
Hartmut Holzgraefe [Tue, 21 May 2002 10:14:12 +0000 (10:14 +0000)]
not beautifull (yet), but should fix ZTS builds

22 years agofiles that are not installed should be removed from the
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--)

22 years ago* show installed_as instead of a "calculated" path for installed packages
Stig Bakken [Tue, 21 May 2002 07:18:48 +0000 (07:18 +0000)]
* show installed_as instead of a "calculated" path for installed packages

22 years ago* add TODO comment
Stig Bakken [Tue, 21 May 2002 07:16:35 +0000 (07:16 +0000)]
* add TODO comment

22 years agoAdd HAVE_MBSTR_RU support for Win32.
Sebastian Bergmann [Tue, 21 May 2002 07:15:42 +0000 (07:15 +0000)]
Add HAVE_MBSTR_RU support for Win32.

22 years agoZTS fixes.
Sebastian Bergmann [Tue, 21 May 2002 07:10:26 +0000 (07:10 +0000)]
ZTS fixes.

22 years ago* disable wrapping for now
Stig Bakken [Tue, 21 May 2002 07:00:45 +0000 (07:00 +0000)]
* disable wrapping for now

22 years agoAdded russian codepages (koi8-r,cp1251,cp866) support.
Den V. Tsopa [Tue, 21 May 2002 07:00:34 +0000 (07:00 +0000)]
Added russian codepages (koi8-r,cp1251,cp866) support.

22 years agoSome minor error verbosity updates
Tomas V.V.Cox [Tue, 21 May 2002 02:31:23 +0000 (02:31 +0000)]
Some minor error verbosity updates

22 years agodoListRemote -> doRemoteList
Tomas V.V.Cox [Tue, 21 May 2002 02:28:08 +0000 (02:28 +0000)]
doListRemote -> doRemoteList

22 years agoMake the installation of a package fail when _installFile
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

22 years ago* list command no longer displays test and data files when listing
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

22 years ago* package-list command no longer needed ("list" does the same thing and
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)

22 years ago* rename shell-test shortcut to st (was stest)
Stig Bakken [Tue, 21 May 2002 01:40:35 +0000 (01:40 +0000)]
* rename shell-test shortcut to st (was stest)

22 years ago* added more shortcuts
Stig Bakken [Tue, 21 May 2002 01:38:50 +0000 (01:38 +0000)]
* added more shortcuts

22 years ago* implemented shortcuts ("pv" for "package-validate" etc.)
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

22 years ago* make infoFromAny actually work :)
Stig Bakken [Tue, 21 May 2002 01:20:51 +0000 (01:20 +0000)]
* make infoFromAny actually work :)

22 years ago* better wording
Stig Bakken [Tue, 21 May 2002 01:20:24 +0000 (01:20 +0000)]
* better wording

22 years agoFix for #17315. Requires client library 7.2 or greater to compile.
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.

22 years agoChangeLog update
<changelog@php.net> [Tue, 21 May 2002 00:23:07 +0000 (00:23 +0000)]
ChangeLog update

22 years ago- Fix posix_isatty() and posix_ttyname() (Closes #17323)
Markus Fischer [Mon, 20 May 2002 23:26:13 +0000 (23:26 +0000)]
- Fix posix_isatty() and posix_ttyname() (Closes #17323)

22 years ago* disable debug in XML_RPC fallback
Stig Bakken [Mon, 20 May 2002 22:29:52 +0000 (22:29 +0000)]
* disable debug in XML_RPC fallback

22 years agoUse the GIT for inter-thread marshalling.
Wez Furlong [Mon, 20 May 2002 22:22:57 +0000 (22:22 +0000)]
Use the GIT for inter-thread marshalling.

22 years ago- Add safe_mode/uid and open_basedir check to zip_open() (closes #16927).
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).

22 years ago- ZTS gotcha
Markus Fischer [Mon, 20 May 2002 17:41:35 +0000 (17:41 +0000)]
- ZTS gotcha

22 years ago- Add open_basedir check for all functions using php_stat() (filesize, stat,
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.

22 years agothis way it even compiles
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 ;)

22 years agointegrating wez's patch
Harald Radi [Mon, 20 May 2002 15:35:57 +0000 (15:35 +0000)]
integrating wez's patch

22 years ago* new command setup
Stig Bakken [Mon, 20 May 2002 11:37:33 +0000 (11:37 +0000)]
* new command setup

22 years ago* upgrade bundled XML_RPC package to 1.0.3
Stig Bakken [Mon, 20 May 2002 11:35:33 +0000 (11:35 +0000)]
* upgrade bundled XML_RPC package to 1.0.3

22 years ago* new installer rule that does not depend on bash
Stig Bakken [Mon, 20 May 2002 10:46:01 +0000 (10:46 +0000)]
* new installer rule that does not depend on bash

22 years ago* _infoFromAny goes public!
Stig Bakken [Mon, 20 May 2002 10:45:23 +0000 (10:45 +0000)]
* _infoFromAny goes public!

22 years ago* some verbosity changes: 0 - only errors, 1 - status report when the
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

22 years ago* no output in verbosity level 0
Stig Bakken [Mon, 20 May 2002 10:43:29 +0000 (10:43 +0000)]
* no output in verbosity level 0

22 years ago* added PEAR_Config::removeLayer()
Stig Bakken [Mon, 20 May 2002 10:42:47 +0000 (10:42 +0000)]
* added PEAR_Config::removeLayer()

22 years ago* remove getCommands() from here
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

22 years ago* support multiple -v and -q options
Stig Bakken [Mon, 20 May 2002 10:27:16 +0000 (10:27 +0000)]
* support multiple -v and -q options

22 years ago* forgot to update the release date
Stig Bakken [Mon, 20 May 2002 10:21:01 +0000 (10:21 +0000)]
* forgot to update the release date

22 years ago* fix fix
Stig Bakken [Mon, 20 May 2002 09:54:37 +0000 (09:54 +0000)]
* fix fix

22 years ago* merge 0.4 files from /pear/Archive_Tar
Stig Bakken [Mon, 20 May 2002 09:05:52 +0000 (09:05 +0000)]
* merge 0.4 files from /pear/Archive_Tar

22 years ago* prepare 0.10
Stig Bakken [Mon, 20 May 2002 08:58:46 +0000 (08:58 +0000)]
* prepare 0.10

22 years ago* remove run() from this class
Stig Bakken [Mon, 20 May 2002 08:56:00 +0000 (08:56 +0000)]
* remove run() from this class

22 years agoMFZE1 (Expose more C++ APIs)
Zeev Suraski [Mon, 20 May 2002 07:17:30 +0000 (07:17 +0000)]
MFZE1 (Expose more C++ APIs)

22 years agoThis somehow got undone when I committed the rest...
Wez Furlong [Mon, 20 May 2002 05:08:40 +0000 (05:08 +0000)]
This somehow got undone when I committed the rest...

22 years agoFixed possible pg_lo_write() overflow and make it more fail safe.
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.

22 years agoAdd activescript sapi to the workspace
Wez Furlong [Mon, 20 May 2002 01:37:01 +0000 (01:37 +0000)]
Add activescript sapi to the workspace

22 years agoImplement ActiveScript interfaces.
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.

22 years agoProtect C code with extern "C"
Wez Furlong [Mon, 20 May 2002 01:32:48 +0000 (01:32 +0000)]
Protect C code with extern "C"

22 years agoAdded generic COM wrapper for PHP objects.
Wez Furlong [Mon, 20 May 2002 01:31:48 +0000 (01:31 +0000)]
Added generic COM wrapper for PHP objects.

22 years agoAdded missing key 'doc' for -Z help
Tomas V.V.Cox [Mon, 20 May 2002 01:22:00 +0000 (01:22 +0000)]
Added missing key 'doc' for -Z help

22 years agoFix small bug making the baseinstalldir attrib persist
Tomas V.V.Cox [Mon, 20 May 2002 01:17:09 +0000 (01:17 +0000)]
Fix small bug making the baseinstalldir attrib persist

22 years agoImprove large object performance. pg_lo_read() and pg_lo_read_all() should perform
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().

22 years agoChangeLog update
<changelog@php.net> [Mon, 20 May 2002 00:24:47 +0000 (00:24 +0000)]
ChangeLog update

22 years ago* no need for getCommands() here
Stig Bakken [Mon, 20 May 2002 00:17:43 +0000 (00:17 +0000)]
* no need for getCommands() here

22 years ago* new command setup
Stig Bakken [Mon, 20 May 2002 00:15:52 +0000 (00:15 +0000)]
* new command setup

22 years ago* typo fixes, wrapping
Stig Bakken [Mon, 20 May 2002 00:11:15 +0000 (00:11 +0000)]
* typo fixes, wrapping

22 years ago* install pear.bat on Windows only
Stig Bakken [Sun, 19 May 2002 21:45:45 +0000 (21:45 +0000)]
* install pear.bat on Windows only

22 years agoMake this actually work somewhat better..
foobar [Sun, 19 May 2002 21:39:59 +0000 (21:39 +0000)]
Make this actually work somewhat better..

22 years agoGive due credit to Markus.
Edin Kadribasic [Sun, 19 May 2002 16:58:05 +0000 (16:58 +0000)]
Give due credit to Markus.

22 years ago* compat fix
Stig Bakken [Sun, 19 May 2002 16:32:18 +0000 (16:32 +0000)]
* compat fix

22 years ago- Mention the availability of glob().
Markus Fischer [Sun, 19 May 2002 16:17:23 +0000 (16:17 +0000)]
- Mention the availability of glob().

22 years agoPut "pear help options" working again
Tomas V.V.Cox [Sun, 19 May 2002 15:50:36 +0000 (15:50 +0000)]
Put "pear help options" working again

22 years agoPut "pear help command" working again
Tomas V.V.Cox [Sun, 19 May 2002 15:44:47 +0000 (15:44 +0000)]
Put "pear help command" working again

22 years agoFix php.ini-related stuff in run-tests.php
Sander Roobol [Sun, 19 May 2002 14:48:27 +0000 (14:48 +0000)]
Fix php.ini-related stuff in run-tests.php

22 years agoget_cfg_var("get_file_path") didn't work correctly when an alternative
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

22 years agoAdded glob() support for windows.
Edin Kadribasic [Sun, 19 May 2002 14:32:24 +0000 (14:32 +0000)]
Added glob() support for windows.

22 years agoIt's get_cfg_var() not cfg_get_var()
Sander Roobol [Sun, 19 May 2002 14:16:41 +0000 (14:16 +0000)]
It's get_cfg_var() not cfg_get_var()

22 years agoFix temporary filename problems, and update .cvsignores with new extensions
Sander Roobol [Sun, 19 May 2002 13:54:37 +0000 (13:54 +0000)]
Fix temporary filename problems, and update .cvsignores with new extensions

22 years agoFix make test and remove a warning
Sander Roobol [Sun, 19 May 2002 13:24:38 +0000 (13:24 +0000)]
Fix make test and remove a warning

22 years agoCleaned up run-tests.php, and fixed it on linux/unix
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 :)

22 years ago* new command setup
Stig Bakken [Sun, 19 May 2002 06:48:40 +0000 (06:48 +0000)]
* new command setup

22 years ago* support platform-specific files
Stig Bakken [Sun, 19 May 2002 06:19:26 +0000 (06:19 +0000)]
* support platform-specific files

22 years ago* take uname as optional constructor parameter
Stig Bakken [Sun, 19 May 2002 06:13:07 +0000 (06:13 +0000)]
* take uname as optional constructor parameter

22 years agoChangeLog update
<changelog@php.net> [Sun, 19 May 2002 00:21:19 +0000 (00:21 +0000)]
ChangeLog update

22 years agoTypo fixes
foobar [Sun, 19 May 2002 00:06:26 +0000 (00:06 +0000)]
Typo fixes

22 years agoDO NOT use C++ comments!
foobar [Sun, 19 May 2002 00:02:07 +0000 (00:02 +0000)]
DO NOT use C++ comments!

22 years ago- delete attributes as well in php_free_xml_node
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()

22 years agoadded "domxml API version" in phpinfo() output.
Christian Stocker [Sat, 18 May 2002 17:07:59 +0000 (17:07 +0000)]
added "domxml API version" in phpinfo() output.

22 years agomem leak fix for domxml_dump_node
Christian Stocker [Sat, 18 May 2002 14:38:22 +0000 (14:38 +0000)]
mem leak fix for domxml_dump_node

22 years agofixes memleak in html_dump_mem
Christian Stocker [Sat, 18 May 2002 14:23:31 +0000 (14:23 +0000)]
fixes memleak in html_dump_mem

22 years agorename the object name for comment nodes to domcoment
Christian Stocker [Sat, 18 May 2002 14:21:46 +0000 (14:21 +0000)]
rename the object name for comment nodes to domcoment

22 years ago- Fix portability issues with empty results on Linux and FreeBSD, add safe_mode
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 ?!

22 years agoWS fixes
Christian Stocker [Sat, 18 May 2002 10:05:21 +0000 (10:05 +0000)]
WS fixes

22 years agoThis should fix a big bad memory leak in freeing the nodes at script end.
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.

22 years agoChangeLog update
<changelog@php.net> [Sat, 18 May 2002 00:23:28 +0000 (00:23 +0000)]
ChangeLog update

22 years agoImprove readability of the header send function
Sascha Schumann [Fri, 17 May 2002 21:22:30 +0000 (21:22 +0000)]
Improve readability of the header send function

22 years ago- Stuff all Win32 mail() changes together.
Markus Fischer [Fri, 17 May 2002 16:21:52 +0000 (16:21 +0000)]
- Stuff all Win32 mail() changes together.