Stig Bakken
b22a776018
* added <description> element in <package>
2001-12-28 02:09:27 +00:00
6792e51a65
ChangeLog update
2001-12-28 01:10:15 +00:00
Andi Gutmans
e322abdd63
- Use two underscores for __construct(), __clone and friends...
2001-12-27 16:35:07 +00:00
Dan Kalowsky
b76eb3ae40
Making PHP compile again on MacOSX 10.1
...
# 10.1 does not have inet_pton support yet it seems so disabling it.
2001-12-27 15:42:05 +00:00
Andi Gutmans
3d89072c7e
- Only check refcount of object if the destructor was called.
2001-12-27 14:44:39 +00:00
Andi Gutmans
73b159e056
- Experimental support for destructors. We need to see if destructors
...
- will actually work well in the context of PHP so we should consider this
- as experimental. Possible problems might be that when the constructor is
- run PHP might not be in a stable state.
2001-12-27 14:35:09 +00:00
Andi Gutmans
b3fd2faac0
- Support parent:: again
2001-12-27 13:12:45 +00:00
Andi Gutmans
a5f7a383bf
- Support unified constructor name _construct()
2001-12-27 12:23:03 +00:00
Tomas V.V.Cox
bc7bc41e6f
switch to use the xml end tag function for correct handling
...
of multiline tag contents
2001-12-27 11:10:56 +00:00
Georg Richter
9c133dd23e
Added new functions: ncurses_waddstr, ncurses_wnoutrefresh, ncurses_wclear,
...
ncurses_wcolorset, ncurses_wgetch, ncurses_keypad, ncurses_wmove
minor changes in protos.
Special Thanx to Mathieu Kooiman for submitting his patches!
2001-12-27 08:49:12 +00:00
e99c98a8f7
ChangeLog update
2001-12-27 01:11:01 +00:00
Andi Gutmans
5cb454a8ad
- Fix scoping issue. The following works now:
...
<?
class MyClass {
static $id = 0;
function MyClass()
{
$this->id = self::$id++;
}
function _clone()
{
$this->name = $clone->name;
$this->address = "New York";
$this->id = self::$id++;
}
}
$obj = new MyClass();
$obj->name = "Hello";
$obj->address = "Tel-Aviv";
print $obj->id;
print "\n";
$obj = $obj->_clone();
print $obj->id;
print "\n";
print $obj->name;
print "\n";
print $obj->address;
print "\n";
2001-12-26 20:17:34 +00:00
Andi Gutmans
b04acdadf4
- Print out object id for easier debugging
2001-12-26 20:06:06 +00:00
Andi Gutmans
29ea3da2f8
- Pretty much finish _clone() support
2001-12-26 19:54:20 +00:00
Stig Venaas
403350e41d
unbreak parallel search
2001-12-26 18:40:57 +00:00
Andi Gutmans
2ce4b47657
- Initial support for _clone()
2001-12-26 17:49:22 +00:00
Rui Hirokawa
e72d606c36
added code to remove overloaded function in RSHUTDOWN.
2001-12-26 15:21:13 +00:00
Andi Gutmans
f85c818fe8
- Start fixing the parsing rules so that function and method calls
...
- can't be used in a write context.
2001-12-26 14:46:18 +00:00
David Croft
0aeded1d2b
#remove keyword substitution
2001-12-26 12:08:40 +00:00
Andi Gutmans
76b9acc165
- Fix crash correctly.
2001-12-26 11:18:00 +00:00
Derick Rethans
08c69a5aac
- Fix for bug 14690
2001-12-26 10:01:50 +00:00
Yasuo Ohgaki
49d8ec248c
Added msession
...
# Since it's there, I added it to module list. It should be mentioned
# if module is in php4 source tree.
# We need to discuss about PECL. Let's discuss. :)
2001-12-26 09:12:02 +00:00
Tomas V.V.Cox
65a205a7db
added default target for installing documentation
2001-12-26 04:00:30 +00:00
Tomas V.V.Cox
09dba8cf28
reverted the last change for now
2001-12-26 03:58:44 +00:00
Tomas V.V.Cox
a8f7a57e97
- Install files marked as "role=doc" in a central PEAR doc dir
...
(defaults to PHP_DATADIR/pear/doc/Package_name/)
- Store a new property of each installed file ['installed_as'] for
easy uninstall
2001-12-26 03:57:47 +00:00
Yasuo Ohgaki
fe81186629
Fix crash with external session save handlers
...
# This fixes only a little issue with sub modules
# More fixes are needed to make sub modules work correctly.
# 4.1.x also has the same problem....
2001-12-26 01:55:54 +00:00
Stig Bakken
bd1a88fab6
* use "windir" env.var on Windows too
2001-12-26 01:50:08 +00:00
Stig Bakken
6b8397b9f7
* added System::tmpdir() method (now uses SystemRoot env.var on Windows)
2001-12-26 01:23:04 +00:00
abe6f2a233
ChangeLog update
2001-12-26 01:10:03 +00:00
Mark L. Woodward
05fd3d04f3
Moved "ifdef HAVE_PHP_SESSION" oops!
2001-12-26 00:50:09 +00:00
Georg Richter
1ca88c9276
activated ncurses_instr
...
New functions: ncurses_longname, ncurses_termname, ncurses_mousemask
2001-12-25 23:30:55 +00:00
Andi Gutmans
e1e02af55b
- Revert delete syntax patch
2001-12-25 17:10:58 +00:00
Andi Gutmans
ee44180fc6
- Fix a crash (not a thorough fix).
...
- Commented old code
2001-12-25 16:51:37 +00:00
Stig Venaas
a05e74cd29
Added check for ldap_parse_reference() (needed for broken Solaris 2.8), and
...
report more detailed library version info in the info function.
2001-12-25 14:36:06 +00:00
Georg Richter
ae090a31a5
functions ncurses_erasechar, ncurses_inch, mcurses_killchar:
...
changed return values from bool to string (char)
2001-12-25 13:34:06 +00:00
9a9cf9eec6
ChangeLog update
2001-12-25 01:10:05 +00:00
Andi Gutmans
df38ce3727
- Fixed bug where global functions weren't called if they didn't exist
...
- in the class scope
2001-12-24 17:39:16 +00:00
Rui Hirokawa
49f0b12a96
added my name for NEWS.
2001-12-24 15:21:21 +00:00
Sterling Hughes
85fa03aab3
Avoid a segfault when 0 bytes are returned from a website, and RETURNTRANSFER is enabled.
2001-12-24 13:58:03 +00:00
30b526bf78
ChangeLog update
2001-12-24 01:12:43 +00:00
e9bb88d51e
NEWS update
2001-12-24 01:12:37 +00:00
Tomas V.V.Cox
bda81affd2
added the <license> tag under <release> for the package.xml file
2001-12-23 21:32:09 +00:00
Mark L. Woodward
04999445d7
Major cleanup
2001-12-23 19:58:22 +00:00
Mark L. Woodward
5514a3e582
A php script which shows how to use msession with PHP sessions
2001-12-23 19:58:00 +00:00
Mark L. Woodward
84d3bfc0ea
Added php.ini entry info.
2001-12-23 19:57:33 +00:00
Zeev Suraski
a22cd5ba2d
Update installation instructions (Marco Kaiser)
2001-12-23 19:48:25 +00:00
Andi Gutmans
3458373ed6
- Fix a bug where function's didn't work anymore in multi-threaded
...
- servers after the latest startup changes.
2001-12-23 18:39:52 +00:00
Stig Venaas
9912d5fc5d
changed address
2001-12-23 17:42:31 +00:00
Stig Venaas
ed942af693
Made ldap_set_option work with NULL as link, added option
...
LDAP_OPT_DEBUG_LEVEL for those that support it, and made sure the rebind
code is currently included for OpenLDAP only.
2001-12-23 16:32:06 +00:00
Markus Fischer
7cf14fb1e1
- Fix tiny leak.
2001-12-23 15:56:41 +00:00