Tim Toohey [Sat, 17 Jan 2004 09:19:14 +0000 (09:19 +0000)]
(gdImageSetPixel) Tidied 'normal' blending effect
# libgd-2.0.12 fixed the problem with alpha-blending on semi-transparent backgrounds so
# gdFullAlphaBlend() and friends are no longer needed
Sterling Hughes [Fri, 16 Jan 2004 22:26:09 +0000 (22:26 +0000)]
update the profile of how namespaces should work after discussions with
shane and rob richards. there were a lot of race conditions with regards
to the way namespaces have been handled in XML documents so far, this new
method removes the race conditions, and gives me a real reason to add the
children() and attributes() methods.
foobar [Fri, 16 Jan 2004 21:11:58 +0000 (21:11 +0000)]
- Fixed bug #26640 (__autoload() not invoked by Reflection classes)
# Also removed double call of reflection_register_implement() on
# reflection_extension_ptr.
# Fixed also case-insensitive lookup of property names,
# now Reflection_Property('Classname', 'FooBar'); works too.
Sterling Hughes [Fri, 16 Jan 2004 20:50:29 +0000 (20:50 +0000)]
Add a "profile" of simplexml's expected behaviour in the form of tests.
This will be expanded as issues arise and will be a formal definition
(in code) of simplexml's behaviour.
Dmitry Stogov [Fri, 16 Jan 2004 12:31:10 +0000 (12:31 +0000)]
WSDL support was improved
support for message/part element attribute was implemented
support for portType operation input/output name attribute was implemented
John Coggeshall [Wed, 14 Jan 2004 08:15:57 +0000 (08:15 +0000)]
Apparently MSVC is not C99 compatible making variable marco arguments
in the TIDY_THROW() marco broken in (at least) Win32. This provides a suitable
workaround for non-C99 compatible compilers.
Wez Furlong [Wed, 14 Jan 2004 03:14:18 +0000 (03:14 +0000)]
Add optional php-win.exe variation of the CLI sapi.
php-win.exe runs in the windows GUI subsystem, and thus
has no console; stdio handles are effectively set to /dev/null
and no "dos box" will appear on screen when running scripts
using this sapi (php-gtk people will be familiar with this concept).
Aside from those differences, php-win.exe is 100% identical to
regular CLI
John Coggeshall [Wed, 14 Jan 2004 02:43:33 +0000 (02:43 +0000)]
With the approval of Andi, changing the Tidy API to reduce the possible
amount of confusion when setting Tidy configuration options. All
configuration must now be done pre-parsing of the document. Removed
references to the tidy_attr class, as it is no longer used (since tidy 2.0)
and made tidy throw exceptions for all truly non-fatal errors.
Rob Richards [Tue, 13 Jan 2004 21:28:41 +0000 (21:28 +0000)]
add support for $foo["a:bar"]
fix xsearch to only return values for text,element and attribute nodes
fix getChildren and return array
remove most methods
update test
Wez Furlong [Tue, 13 Jan 2004 16:02:56 +0000 (16:02 +0000)]
Fix refcount on these return values to avoid a leak and allow object dtor's to be called.
This in turn prevents a massive slow-down in CoUninitialize which would have to
forcibly destroy the COM objects in request shutdown.
Wez Furlong [Tue, 13 Jan 2004 13:38:11 +0000 (13:38 +0000)]
Fix leaking constructors.
Implement a cache for method signatures and DISPID's to
greatly improve performance when repeatedly accessing
members with the same names.