[PHP-CVS] cvs: php-src / configure.in /ext/standard basic_functions.c datetime.c datetime.h

2004-09-28 Thread Sterling Hughes
sterlingWed Sep 29 00:57:19 2004 EDT Modified files: /php-srcconfigure.in /php-src/ext/standard basic_functions.c datetime.c datetime.h Log: Add strptime function. http://cvs.php.net/diff.php/php-src/configure.in?r1=1.518r2=1.519ty=u

Re: [PHP-CVS] cvs: php-src(PHP_4_3) /ext/pdf CREDITS config.m4 pdf.c pdf.dsp php_pdf.h

2004-09-13 Thread Sterling Hughes
Ilia Alshanetsky wrote: I understand that the PDF extension does not work with the latest version of libpdf, however to my knowledge it works fine with the 5.X series of the library, which is still quite popular. It seems to me that removing a mostly working and a reasonably popular extension

[PHP-CVS] cvs: php-src /ext/curl multi.c

2004-09-10 Thread Sterling Hughes
sterlingFri Sep 10 16:36:46 2004 EDT Modified files: /php-src/ext/curl multi.c Log: fix wrong check from return value, binary content should not be \0'd, non-binary content should be \0'd.

Re: [PHP-CVS] cvs: php-src / NEWS /ext/standard http_fopen_wrapper.c

2004-09-08 Thread Sterling Hughes
Sascha Schumann wrote: HTTP/1.1 supports compressing, which is good to save bandwidth. As does HTTP/1.0. Refer to RFC 1945, section 3.5 Content Codings. As the code is only in HEAD, there is no real problem, because untill PHP 5.1 goes out, I'll test this extensively :) That is

Re: [PHP-CVS] cvs: php-src / NEWS /ext/standard http_fopen_wrapper.c

2004-09-08 Thread Sterling Hughes
Sacha- I can appreciate that there is a limited potential need for PHP to support chunked encoding right-now, however this is one step in a larger process to support keep-alives and issuing multiple requests over a single http/https session. I'd like to work on the issues raised by Nuno:

[PHP-CVS] Unmasking the error handler (was Re: [PHP-CVS] cvs: php-src /ext/dom document.c)

2004-08-26 Thread Sterling Hughes
Derick Rethans wrote: On Wed, 25 Aug 2004, Sterling Hughes wrote: That's wrong. You should *never* require an E_WARNING to be sent without being able to silence it, especially not on something so unimportant. It's just as wrong as trying to parse non-wellformed XML. Then don't add

Re: [PHP-CVS] cvs: php-src /ext/dom document.c

2004-08-25 Thread Sterling Hughes
That's wrong. You should *never* require an E_WARNING to be sent without being able to silence it, especially not on something so unimportant. -Sterling On Wed, 25 Aug 2004 17:29:37 +0200 (CEST), Derick Rethans [EMAIL PROTECTED] wrote: On Wed, 25 Aug 2004, Sterling Hughes wrote: Christian

Re: [PHP-CVS] cvs: php-src / NEWS /ext/simplexml simplexml.c

2004-07-25 Thread Sterling Hughes
pls change to registerXpathNs or registerXpathNamespace(). -sterling Christian Stocker wrote: chregu Sun Jul 25 07:02:43 2004 EDT Modified files: /php-src NEWS /php-src/ext/simplexml simplexml.c Log: added new method SimpleXMLElement-registerNamespace(string

Re: [PHP-CVS] cvs: php-src / NEWS /ext/standard array.c basic_functions.c php_array.h /ext/standard/tests/array array_diff_key.phpt array_intersect_key.phpt

2004-07-21 Thread Sterling Hughes
was there a discussion? On Wed, 21 Jul 2004 21:17:56 -, Andrey Hristov [EMAIL PROTECTED] wrote: andrey Wed Jul 21 17:17:56 2004 EDT Added files: /php-src/ext/standard/tests/array array_intersect_key.phpt array_diff_key.phpt

[PHP-CVS] cvs: php-src(PHP_4_3) /ext/curl curl.c

2004-07-01 Thread Sterling Hughes
sterlingThu Jul 1 02:51:48 2004 EDT Modified files: (Branch: PHP_4_3) /php-src/ext/curl curl.c Log: mfh http://cvs.php.net/diff.php/php-src/ext/curl/curl.c?r1=1.124.2.21r2=1.124.2.22ty=u Index: php-src/ext/curl/curl.c diff -u

Re: [PHP-CVS] cvs: php-src /ext/simplexml simplexml.c /ext/simplexml/tests 001.phpt 002.phpt 003.phpt 004.phpt 007.phpt 008.phpt 009.phpt 010.phpt 014.phpt 014a.phpt 014b.phpt 015.phpt 016.phpt

2004-03-29 Thread Sterling Hughes
wtf? -sterling On Mar 29, 2004, at 11:58 AM, Marcus Boerger wrote: helly Mon Mar 29 14:58:01 2004 EDT Modified files: /php-src/ext/simplexml simplexml.c /php-src/ext/simplexml/tests001.phpt 002.phpt 003.phpt 004.phpt 007.phpt

[PHP-CVS] cvs: php-src /ext/curl interface.c php_curl.h

2004-03-12 Thread Sterling Hughes
sterlingFri Mar 12 13:38:00 2004 EDT Modified files: /php-src/ext/curl interface.c php_curl.h Log: add the curl_copy_handle() function which will exactly duplicate a cURL handle. Useful when you have multiple similair transforms as with a multi handle

[PHP-CVS] cvs: php-src /ext/curl interface.c

2004-03-12 Thread Sterling Hughes
sterlingFri Mar 12 13:41:21 2004 EDT Modified files: /php-src/ext/curl interface.c Log: avoid a memory leak when a php_curl handle is allocated, but the initialization of a CURL handle fails.

[PHP-CVS] cvs: php-src /ext/curl interface.c

2004-03-12 Thread Sterling Hughes
sterlingFri Mar 12 15:04:32 2004 EDT Modified files: /php-src/ext/curl interface.c Log: zval **, not a zval * http://cvs.php.net/diff.php/php-src/ext/curl/interface.c?r1=1.42r2=1.43ty=u Index: php-src/ext/curl/interface.c diff -u

Re: [PHP-CVS] cvs: php-src /ext/curl interface.c multi.c php_curl.h

2004-03-10 Thread Sterling Hughes
+ zend_llist_init((*mh).easyh, sizeof(zval *), (llist_dtor_func_t) ZVAL_PTR_DTOR, 0); + why not mh-easyh ? -sterling ZEND_REGISTER_RESOURCE(return_value, mh, le_curl_multi_handle); } /* }}} */ @@ -86,7 +88,9 @@ _php_curl_cleanup_handle(ch); ch-uses++; - + +

Re: [PHP-CVS] cvs: php-src /ext/xml compat.c expat_compat.h

2004-02-22 Thread Sterling Hughes
What version of libxml2 does this rely on? -Sterling chreguSun Feb 22 12:51:02 2004 EDT Modified files: /php-src/ext/xml compat.c expat_compat.h Log: Fix broken Namespace support, use libxml2 namespace methods instead of homebrown solution:

Re: [PHP-CVS] cvs: php-src /ext/xml compat.c expat_compat.h

2004-02-22 Thread Sterling Hughes
: This change requires libxml 2.6 in order to work (and compile). Rob On Sunday 22 February 2004 01:05 pm, Christian Stocker wrote: Hi mmmh, forget about that... I used 2.6.2, will test on 2.5.10 later chregu On 2/22/04 6:55 PM, Sterling Hughes wrote: What version of libxml2 does

Re: [PHP-CVS] cvs: php-src /ext/xml compat.c expat_compat.h

2004-02-22 Thread Sterling Hughes
. -Sterling What do you think? chregu On 2/22/04 8:10 PM, Rob Richards wrote: On Sunday 22 February 2004 01:36 pm, Sterling Hughes wrote: Mmmh too bad, will try to find a solution for libxml2 2.6 I know, it's late in the release process, but the old implementation didn't

Re: [PHP-CVS] cvs: php-src /ext/xml compat.c expat_compat.h

2004-02-22 Thread Sterling Hughes
1) fix the code, so that it works with 2.5.x correctly as well 2) make 2.6.x a prerequisite 3) disable xml_parser_create_ns for 2.5.x 4) use broken code for 2.5.x and fixed code for 2.6.x 5) revert to yesterdays situation (broken for all...) I prefer 3. simply add some

Re: [PHP-CVS] cvs: php-src /ext/xml compat.c expat_compat.h

2004-02-22 Thread Sterling Hughes
It will never work correctly for option 1. Namespaces in SAX was a 2.6 thing (SAX2). Right, but namespaces just need to work as good as they did in PHP4, we can't lose that compatibility. If it works better - bonus. So what exactly is broken then in comparison to PHP4? From the

[PHP-CVS] cvs: php-src /ext/simplexml simplexml.c

2004-01-19 Thread Sterling Hughes
to | | [EMAIL PROTECTED] so we can mail you a copy immediately. | +--+ - | Author: Sterling Hughes [EMAIL PROTECTED] | - | Marcus Boerger [EMAIL PROTECTED

[PHP-CVS] cvs: php-src /ext/simplexml/tests profile06.phpt profile07.phpt profile10.phpt

2004-01-17 Thread Sterling Hughes
sterlingSat Jan 17 11:39:52 2004 EDT Modified files: /php-src/ext/simplexml/testsprofile06.phpt profile07.phpt profile10.phpt Log: remove the parser errors here, so they accurately reflect what should

[PHP-CVS] cvs: php-src /ext/simplexml php_simplexml.h simplexml.c /ext/simplexml/tests profile04.phpt profile05.phpt profile06.phpt profile07.phpt profile10.phpt

2004-01-17 Thread Sterling Hughes
sterlingSat Jan 17 16:22:27 2004 EDT Modified files: /php-src/ext/simplexml php_simplexml.h simplexml.c /php-src/ext/simplexml/testsprofile04.phpt profile05.phpt profile06.phpt profile07.phpt

[PHP-CVS] cvs: php-src /ext/simplexml/examples security.php xpath.php

2004-01-17 Thread Sterling Hughes
sterlingSat Jan 17 16:44:23 2004 EDT Modified files: /php-src/ext/simplexml/examples security.php xpath.php Log: update the examples Index: php-src/ext/simplexml/examples/security.php diff -u php-src/ext/simplexml/examples/security.php:1.4

[PHP-CVS] cvs: php-src /ext/simplexml/tests profile08.phpt profile11.phpt

2004-01-17 Thread Sterling Hughes
sterlingSat Jan 17 16:47:44 2004 EDT Modified files: /php-src/ext/simplexml/testsprofile08.phpt profile11.phpt Log: update the tests proper-like Index: php-src/ext/simplexml/tests/profile08.phpt diff -u

Re: [PHP-CVS] cvs: php-src /ext/simplexml

2004-01-17 Thread Sterling Hughes
On Sat, 17 Jan 2004, Sterling Hughes wrote: namespace accesses are now soley URI based as opposed to prefix based. Sterling -- This patch breaks xpath() because you can no longer access nodes in a default namespace. You *need* to register a prefix for them or XPath thinks you're

[PHP-CVS] cvs: php-src /ext/simplexml/tests profile01.phpt profile02.phpt profile03.phpt profile04.phpt profile05.phpt profile06.phpt profile07.phpt profile08.phpt profile09.phpt profile10.phpt profile11.phpt

2004-01-16 Thread Sterling Hughes
sterlingFri Jan 16 15:50:31 2004 EDT Added files: /php-src/ext/simplexml/testsprofile01.phpt profile02.phpt profile03.phpt profile04.phpt profile05.phpt profile06.phpt

[PHP-CVS] cvs: CVSROOT / avail

2004-01-16 Thread Sterling Hughes
sterlingFri Jan 16 17:11:52 2004 EDT Modified files: /CVSROOTavail Log: give ilia presentations karma Index: CVSROOT/avail diff -u CVSROOT/avail:1.812 CVSROOT/avail:1.813 --- CVSROOT/avail:1.812 Sat Jan 10 16:53:24 2004 +++ CVSROOT/avail

[PHP-CVS] cvs: CVSROOT / avail

2004-01-16 Thread Sterling Hughes
sterlingFri Jan 16 17:12:39 2004 EDT Modified files: /CVSROOTavail Log: ilia*a* Index: CVSROOT/avail diff -u CVSROOT/avail:1.813 CVSROOT/avail:1.814 --- CVSROOT/avail:1.813 Fri Jan 16 17:11:48 2004 +++ CVSROOT/avail Fri Jan 16 17:12:35 2004

[PHP-CVS] cvs: php-src /ext/simplexml/tests profile04.phpt profile05.phpt profile06.phpt profile07.phpt profile10.phpt profile11.phpt

2004-01-16 Thread Sterling Hughes
sterlingFri Jan 16 17:26:10 2004 EDT Modified files: /php-src/ext/simplexml/testsprofile04.phpt profile05.phpt profile06.phpt profile07.phpt profile10.phpt profile11.phpt

[PHP-CVS] cvs: php-src /ext/simplexml simplexml.c

2004-01-08 Thread Sterling Hughes
sterlingThu Jan 8 17:40:09 2004 EDT Modified files: /php-src/ext/simplexml simplexml.c Log: Fix dumping, when dumping a text element, for example: ?php $doc = simplexml_load_string('?xml version=1.0? namelist name firsthelly/first

[PHP-CVS] cvs: php-src /ext/simplexml php_simplexml.h simplexml.c

2004-01-08 Thread Sterling Hughes
sterlingFri Jan 9 01:12:32 2004 EDT Modified files: /php-src/ext/simplexml php_simplexml.h simplexml.c Log: Remove these initializers as they are unused. Index: php-src/ext/simplexml/php_simplexml.h diff -u

[PHP-CVS] cvs: php-src /ext/simplexml simplexml.c

2003-11-03 Thread Sterling Hughes
sterlingMon Nov 3 08:36:24 2003 EDT Modified files: /php-src/ext/simplexml simplexml.c Log: - Stop a crash in xpath - Remove the ability to access attributes via the - operator, attributes are accessed via the array indicators Index:

[PHP-CVS] cvs: php-src /ext/simplexml simplexml.c

2003-11-03 Thread Sterling Hughes
sterlingMon Nov 3 08:50:44 2003 EDT Modified files: /php-src/ext/simplexml simplexml.c Log: remove attributes from this check Index: php-src/ext/simplexml/simplexml.c diff -u php-src/ext/simplexml/simplexml.c:1.79

[PHP-CVS] cvs: php-src /ext/simplexml simplexml.c

2003-11-03 Thread Sterling Hughes
sterlingMon Nov 3 08:55:20 2003 EDT Modified files: /php-src/ext/simplexml simplexml.c Log: make this macro safe Index: php-src/ext/simplexml/simplexml.c diff -u php-src/ext/simplexml/simplexml.c:1.80 php-src/ext/simplexml/simplexml.c:1.81 ---

Re: [PHP-CVS] cvs: php-src /ext/standard array.c

2003-08-05 Thread Sterling Hughes
Am Mon, 2003-08-04 um 04.38 schrieb Zeev Suraski: zeev Mon Aug 4 04:38:24 2003 EDT Modified files: /php-src/ext/standard array.c Log: Fix bug #24652 - Sterling, do you begin to think that maybe it wasn't such a good idea? Nope. Needs only to be

Re: [PHP-CVS] cvs: php-src /ext/snmp php_snmp.h snmp.c

2003-07-16 Thread Sterling Hughes
+ + /* Prevent read_mib() from printing any errors. */ + snmp_disable_stderrlog(); + How does one get the error that occurred then? -Sterling -- Premature optimization is the root of all evil - Donald E. Knuth -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP-CVS] cvs: php-src /ext/dbase dbase.c

2003-07-16 Thread Sterling Hughes
Why create such names? Where is the advantage? If you are going to change it, please just make them aliases, so you can use either. -Sterling On Wed, 2003-07-16 at 07:08, Zak Greant wrote: zak Wed Jul 16 07:08:03 2003 EDT Modified files: /php-src/ext/dbase

Re: [PHP-CVS] cvs: php-src /ext/dbase dbase.c

2003-07-16 Thread Sterling Hughes
Right, and if they change, then old code doesn't work. Function names are just elements within an associative array after all ;-) -Sterling On Wed, 2003-07-16 at 09:54, Derick Rethans wrote: On Wed, 16 Jul 2003, Sterling Hughes wrote: Why create such names? Where is the advantage? If you

Re: [PHP-CVS] cvs: php-src /ext/dbase dbase.c

2003-07-16 Thread Sterling Hughes
woops :) -Sterling On Wed, 2003-07-16 at 10:06, Derick Rethans wrote: On Wed, 16 Jul 2003, Sterling Hughes wrote: Right, and if they change, then old code doesn't work. There is NO old code... this was added yesterday. Derick -- There is no safe investment. To love at all

[PHP-CVS] cvs: php-src /ext/xml expat_compat.h

2003-07-08 Thread Sterling Hughes
sterlingTue Jul 8 23:14:41 2003 EDT Modified files: /php-src/ext/xmlexpat_compat.h Log: boom bam bing Index: php-src/ext/xml/expat_compat.h diff -u php-src/ext/xml/expat_compat.h:1.10 php-src/ext/xml/expat_compat.h:1.11 ---

[PHP-CVS] cvs: php-src /main php_compat.h

2003-07-04 Thread Sterling Hughes
sterlingFri Jul 4 14:19:02 2003 EDT Modified files: /php-src/main php_compat.h Log: avoid external conflicts in apache Index: php-src/main/php_compat.h diff -u php-src/main/php_compat.h:1.14 php-src/main/php_compat.h:1.15 ---

[PHP-CVS] cvs: php-src /ext/simplexml simplexml.c

2003-07-04 Thread Sterling Hughes
sterlingFri Jul 4 17:58:09 2003 EDT Modified files: /php-src/ext/simplexml simplexml.c Log: fix memory cverrun when accessing an empty xml element. guess how many lines it took me to write a basic WSDL parser + API? 20 using curl + simplexml

[PHP-CVS] cvs: php-src /ext/simplexml simplexml.c

2003-07-04 Thread Sterling Hughes
sterlingFri Jul 4 18:21:23 2003 EDT Modified files: /php-src/ext/simplexml simplexml.c Log: real fix Index: php-src/ext/simplexml/simplexml.c diff -u php-src/ext/simplexml/simplexml.c:1.48 php-src/ext/simplexml/simplexml.c:1.49 ---

[PHP-CVS] cvs: php-src /ext/simplexml simplexml.c

2003-07-04 Thread Sterling Hughes
sterlingFri Jul 4 20:33:13 2003 EDT Modified files: /php-src/ext/simplexml simplexml.c Log: not a temp var unless its a singular var Index: php-src/ext/simplexml/simplexml.c diff -u php-src/ext/simplexml/simplexml.c:1.49

Re: [PHP-CVS] cvs: php-src /tests/lang bug22510.phpt

2003-07-02 Thread Sterling Hughes
This is the wrong adjustment. The bug Zeev fixed also existed here (not related to objects). You should adjust the EXPECT portion to the current output. -Sterling On Wed, 2003-07-02 at 11:38, Moriyoshi Koizumi wrote: moriyoshi Wed Jul 2 11:38:51 2003 EDT Modified files:

[PHP-CVS] cvs: php-src /ext/xml xml.c

2003-07-02 Thread Sterling Hughes
sterlingWed Jul 2 16:05:13 2003 EDT Modified files: /php-src/ext/xmlxml.c Log: Not really the best way to solve this. But it doesn't give a segfault on self-referential structures, which is always a bonus Index: php-src/ext/xml/xml.c diff -u

[PHP-CVS] cvs: php-src /ext/sqlite sess_sqlite.c

2003-07-01 Thread Sterling Hughes
sterlingTue Jul 1 20:03:41 2003 EDT Modified files: /php-src/ext/sqlite sess_sqlite.c Log: make this actually work. Index: php-src/ext/sqlite/sess_sqlite.c diff -u php-src/ext/sqlite/sess_sqlite.c:1.3 php-src/ext/sqlite/sess_sqlite.c:1.4 ---

[PHP-CVS] cvs: php-src /ext/sqlite sess_sqlite.c

2003-07-01 Thread Sterling Hughes
sterlingTue Jul 1 20:04:58 2003 EDT Modified files: /php-src/ext/sqlite sess_sqlite.c Log: no c++ style comments Index: php-src/ext/sqlite/sess_sqlite.c diff -u php-src/ext/sqlite/sess_sqlite.c:1.4 php-src/ext/sqlite/sess_sqlite.c:1.5 ---

[PHP-CVS] cvs: php-src /ext/sqlite sess_sqlite.c

2003-07-01 Thread Sterling Hughes
sterlingTue Jul 1 20:43:00 2003 EDT Modified files: /php-src/ext/sqlite sess_sqlite.c Log: set synching to off cleanup some silly code Index: php-src/ext/sqlite/sess_sqlite.c diff -u php-src/ext/sqlite/sess_sqlite.c:1.5

[PHP-CVS] cvs: php-src /ext/sqlite sess_sqlite.c

2003-07-01 Thread Sterling Hughes
sterlingTue Jul 1 20:45:16 2003 EDT Modified files: /php-src/ext/sqlite sess_sqlite.c Log: ws fix Index: php-src/ext/sqlite/sess_sqlite.c diff -u php-src/ext/sqlite/sess_sqlite.c:1.6 php-src/ext/sqlite/sess_sqlite.c:1.7 ---

[PHP-CVS] cvs: php-src /ext/sqlite sess_sqlite.c

2003-07-01 Thread Sterling Hughes
sterlingTue Jul 1 20:56:32 2003 EDT Modified files: /php-src/ext/sqlite sess_sqlite.c Log: not necessary, already assumed binary safe (it has to be under the current session architecture), and anything else is fair play Index:

[PHP-CVS] cvs: php-src /ext/sqlite sess_sqlite.c

2003-07-01 Thread Sterling Hughes
sterlingTue Jul 1 23:12:06 2003 EDT Modified files: /php-src/ext/sqlite sess_sqlite.c Log: further improve the performance and clean up Index: php-src/ext/sqlite/sess_sqlite.c diff -u php-src/ext/sqlite/sess_sqlite.c:1.8

[PHP-CVS] cvs: php-src /ext/session/tests 016.phpt

2003-07-01 Thread Sterling Hughes
sterlingWed Jul 2 00:34:18 2003 EDT Modified files: /php-src/ext/session/tests 016.phpt Log: fix this test when using a save_handler other than files... Index: php-src/ext/session/tests/016.phpt diff -u php-src/ext/session/tests/016.phpt:1.2

[PHP-CVS] cvs: php-src /ext/simplexml/tests 002.phpt 002.xml

2003-06-30 Thread Sterling Hughes
sterlingMon Jun 30 14:09:12 2003 EDT Added files: /php-src/ext/simplexml/tests002.phpt 002.xml Log: add a test for shane's bug #24392 Index: php-src/ext/simplexml/tests/002.phpt +++ php-src/ext/simplexml/tests/002.phpt --TEST-- Checking

[PHP-CVS] cvs: php-src /tests/classes bug20120.phpt

2003-06-30 Thread Sterling Hughes
sterlingMon Jun 30 15:16:36 2003 EDT Removed files: /php-src/tests/classes bug20120.phpt Log: its not a bug - its a feature. No longer allowed in ze2. -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP-CVS] cvs: php-src /tests/classes bug24399.phpt

2003-06-30 Thread Sterling Hughes
sterlingMon Jun 30 15:40:48 2003 EDT Added files: /php-src/tests/classes bug24399.phpt Log: test for bug #24399, segfault in is_subclass_of() Index: php-src/tests/classes/bug24399.phpt +++ php-src/tests/classes/bug24399.phpt --TEST-- Bug

[PHP-CVS] cvs: php-src /ext/standard/tests/general_functions sunfuncts.phpt

2003-06-30 Thread Sterling Hughes
sterlingMon Jun 30 15:50:18 2003 EDT Modified files: /php-src/ext/standard/tests/general_functions sunfuncts.phpt Log: this is the correct result Index: php-src/ext/standard/tests/general_functions/sunfuncts.phpt diff -u

[PHP-CVS] cvs: php-src /ext/standard/tests/general_functions sunfuncts.phpt

2003-06-30 Thread Sterling Hughes
sterlingMon Jun 30 16:03:17 2003 EDT Modified files: /php-src/ext/standard/tests/general_functions sunfuncts.phpt Log: set precision properly.. test passes here Index: php-src/ext/standard/tests/general_functions/sunfuncts.phpt diff -u

[PHP-CVS] cvs: php-src /ext/xml compat.c

2003-06-29 Thread Sterling Hughes
sterlingSun Jun 29 14:26:23 2003 EDT Modified files: /php-src/ext/xmlcompat.c Log: fix libxml2 when dealing with character data Index: php-src/ext/xml/compat.c diff -u php-src/ext/xml/compat.c:1.15 php-src/ext/xml/compat.c:1.16 ---

[PHP-CVS] cvs: php-src / NEWS

2003-06-29 Thread Sterling Hughes
sterlingSun Jun 29 15:41:40 2003 EDT Modified files: /php-srcNEWS Log: update to beta Index: php-src/NEWS diff -u php-src/NEWS:1.1432 php-src/NEWS:1.1433 --- php-src/NEWS:1.1432 Sat Jun 28 19:37:18 2003 +++ php-src/NEWSSun Jun 29 15:41:39

[PHP-CVS] cvs: php-src / NEWS

2003-06-29 Thread Sterling Hughes
sterlingSun Jun 29 15:42:29 2003 EDT Modified files: /php-srcNEWS Log: add ![CDATA[ ]] fixes Index: php-src/NEWS diff -u php-src/NEWS:1.1433 php-src/NEWS:1.1434 --- php-src/NEWS:1.1433 Sun Jun 29 15:41:39 2003 +++ php-src/NEWSSun Jun 29

[PHP-CVS] cvs: php-src /ext/simplexml simplexml.c

2003-06-29 Thread Sterling Hughes
sterlingSun Jun 29 23:11:03 2003 EDT Modified files: /php-src/ext/simplexml simplexml.c Log: and my first user doesn't even like goto's. sniffle Index: php-src/ext/simplexml/simplexml.c diff -u php-src/ext/simplexml/simplexml.c:1.45

[PHP-CVS] cvs: php-src /ext/xsl config.m4

2003-06-29 Thread Sterling Hughes
sterlingMon Jun 30 01:01:18 2003 EDT Modified files: /php-src/ext/xslconfig.m4 Log: fix by Elfyn, use = not == Index: php-src/ext/xsl/config.m4 diff -u php-src/ext/xsl/config.m4:1.4 php-src/ext/xsl/config.m4:1.5 --- php-src/ext/xsl/config.m4:1.4

[PHP-CVS] cvs: php-src / acinclude.m4

2003-06-28 Thread Sterling Hughes
sterlingSat Jun 28 02:32:02 2003 EDT Modified files: /php-srcacinclude.m4 Log: ilia points out this is ok Index: php-src/acinclude.m4 diff -u php-src/acinclude.m4:1.249 php-src/acinclude.m4:1.250 --- php-src/acinclude.m4:1.249 Sat Jun 28

[PHP-CVS] cvs: php-src /ext/simplexml simplexml.c

2003-06-28 Thread Sterling Hughes
sterlingSat Jun 28 03:46:03 2003 EDT Modified files: /php-src/ext/simplexml simplexml.c Log: for now we let xml support build with versions older than 2.5.7, as we want users to actually test this... Index: php-src/ext/simplexml/simplexml.c

[PHP-CVS] cvs: php-src / makedist

2003-06-28 Thread Sterling Hughes
sterlingSat Jun 28 19:32:05 2003 EDT Modified files: /php-srcmakedist Log: what's a php5? Index: php-src/makedist diff -u php-src/makedist:1.30 php-src/makedist:1.31 --- php-src/makedist:1.30 Wed May 21 20:31:31 2003 +++ php-src/makedist

[PHP-CVS] cvs: CVSROOT / loginfo

2003-06-27 Thread Sterling Hughes
sterlingFri Jun 27 10:32:13 2003 EDT Modified files: /CVSROOTloginfo Log: re-arrange this so hopefully we send emails to the correct list Index: CVSROOT/loginfo diff -u CVSROOT/loginfo:1.96 CVSROOT/loginfo:1.97 --- CVSROOT/loginfo:1.96Thu

[PHP-CVS] cvs: php-src / configure.in /main php_version.h

2003-06-27 Thread Sterling Hughes
sterlingFri Jun 27 18:09:12 2003 EDT Modified files: /php-srcconfigure.in /php-src/main php_version.h Log: beta 1 Index: php-src/configure.in diff -u php-src/configure.in:1.450 php-src/configure.in:1.451 --- php-src/configure.in:1.450

[PHP-CVS] cvs: php-src /ext/pcre config.m4

2003-06-27 Thread Sterling Hughes
sterlingSat Jun 28 00:30:51 2003 EDT Modified files: /php-src/ext/pcre config.m4 Log: define this here too Index: php-src/ext/pcre/config.m4 diff -u php-src/ext/pcre/config.m4:1.31 php-src/ext/pcre/config.m4:1.32 --- php-src/ext/pcre/config.m4:1.31

[PHP-CVS] cvs: php-src / acinclude.m4

2003-06-27 Thread Sterling Hughes
sterlingSat Jun 28 01:18:11 2003 EDT Modified files: /php-srcacinclude.m4 Log: bump up to 2.5.7 Index: php-src/acinclude.m4 diff -u php-src/acinclude.m4:1.248 php-src/acinclude.m4:1.249 --- php-src/acinclude.m4:1.248 Tue Jun 24 12:39:52 2003 +++

[PHP-CVS] cvs: php-src / NEWS

2003-06-27 Thread Sterling Hughes
sterlingSat Jun 28 01:22:39 2003 EDT Modified files: /php-srcNEWS Log: there is no domxml :) Index: php-src/NEWS diff -u php-src/NEWS:1.1430 php-src/NEWS:1.1431 --- php-src/NEWS:1.1430 Fri Jun 27 06:43:01 2003 +++ php-src/NEWSSat Jun 28

[PHP-CVS] cvs: CVSROOT / loginfo

2003-06-26 Thread Sterling Hughes
sterlingThu Jun 26 17:15:58 2003 EDT Modified files: /CVSROOTloginfo Log: send these to the appropriate mailing lists Index: CVSROOT/loginfo diff -u CVSROOT/loginfo:1.95 CVSROOT/loginfo:1.96 --- CVSROOT/loginfo:1.95Wed Jun 25 19:45:55

[PHP-CVS] cvs: php-src /ext/simplexml simplexml.c

2003-06-25 Thread Sterling Hughes
sterlingWed Jun 25 12:26:32 2003 EDT Modified files: /php-src/ext/simplexml simplexml.c Log: allow the root element to be accessed as a text node Index: php-src/ext/simplexml/simplexml.c diff -u php-src/ext/simplexml/simplexml.c:1.41

[PHP-CVS] cvs: php-src /ext/sqlite sqlite.c

2003-06-25 Thread Sterling Hughes
sterlingWed Jun 25 13:22:31 2003 EDT Modified files: /php-src/ext/sqlite sqlite.c Log: Don't pass resource as an argument when its not being parsed. Index: php-src/ext/sqlite/sqlite.c diff -u php-src/ext/sqlite/sqlite.c:1.59

[PHP-CVS] cvs: php-src /ext/dom config.m4

2003-06-25 Thread Sterling Hughes
sterlingWed Jun 25 14:06:06 2003 EDT Modified files: /php-src/ext/domconfig.m4 Log: autodetect zlib if dom is enabled Index: php-src/ext/dom/config.m4 diff -u php-src/ext/dom/config.m4:1.5 php-src/ext/dom/config.m4:1.6 ---

Re: [PHP-CVS] cvs: php-src /ext/dom config.m4

2003-06-25 Thread Sterling Hughes
On Wed, 2003-06-25 at 15:12, Andi Gutmans wrote: So is DOM enabled by default? So what is new DOM support which is no during configure? Hmm? :) Its not enabled by default iirc, but when it is, zlib-dir is now detected. -Sterling. Andi At 06:06 PM 6/25/2003 +, Sterling Hughes wrote

[PHP-CVS] cvs: php-src /ext/dom config.m4 /ext/simplexml config.m4 /ext/xml config.m4

2003-06-25 Thread Sterling Hughes
sterlingWed Jun 25 16:53:52 2003 EDT Modified files: /php-src/ext/domconfig.m4 /php-src/ext/simplexml config.m4 /php-src/ext/xmlconfig.m4 Log: these should be enabled by default. At least this much was agreed upon when the

[PHP-CVS] cvs: php-src /ext/simplexml EXPERIMENTAL config.m4

2003-06-25 Thread Sterling Hughes
sterlingWed Jun 25 17:54:01 2003 EDT Removed files: /php-src/ext/simplexml EXPERIMENTAL Modified files: /php-src/ext/simplexml config.m4 Log: fine Index: php-src/ext/simplexml/config.m4 diff -u

[PHP-CVS] cvs: php-src /ext/dom config.m4

2003-06-25 Thread Sterling Hughes
sterlingWed Jun 25 18:42:54 2003 EDT Modified files: /php-src/ext/domconfig.m4 Log: re-enable dom by default Index: php-src/ext/dom/config.m4 diff -u php-src/ext/dom/config.m4:1.8 php-src/ext/dom/config.m4:1.9 --- php-src/ext/dom/config.m4:1.8

[PHP-CVS] cvs: CVSROOT / loginfo

2003-06-25 Thread Sterling Hughes
sterlingWed Jun 25 19:45:55 2003 EDT Modified files: /CVSROOTloginfo Log: send commits to curl to daniel for now Index: CVSROOT/loginfo diff -u CVSROOT/loginfo:1.94 CVSROOT/loginfo:1.95 --- CVSROOT/loginfo:1.94Mon Jun 23 02:34:27 2003 +++

[PHP-CVS] cvs: CVSROOT / avail

2003-06-25 Thread Sterling Hughes
sterlingWed Jun 25 20:16:54 2003 EDT Modified files: /CVSROOTavail Log: grant ilia access to web and qa, as he is the (new) release manager for 4.3.3 Index: CVSROOT/avail diff -u CVSROOT/avail:1.699 CVSROOT/avail:1.700 --- CVSROOT/avail:1.699 Wed

[PHP-CVS] cvs: php-src /ext/standard/tests/math bug24142.phpt

2003-06-25 Thread Sterling Hughes
sterlingWed Jun 25 23:21:45 2003 EDT Modified files: /php-src/ext/standard/tests/mathbug24142.phpt Log: according to the notes in the bugs database, this is the correct result. this result is also the same one given in 4.3.2 and 5.0 Index:

[PHP-CVS] cvs: php-src /ext/standard var_unserializer.c var_unserializer.re

2003-06-25 Thread Sterling Hughes
sterlingWed Jun 25 23:24:11 2003 EDT Modified files: /php-src/ext/standard var_unserializer.c var_unserializer.re Log: fix by ilia to fix crashes in the session extension when /tmp/sess_* files previously existed. make test now passes fully with

[PHP-CVS] cvs: php-src /ext/standard var_unserializer.c

2003-06-25 Thread Sterling Hughes
sterlingWed Jun 25 23:53:17 2003 EDT Modified files: /php-src/ext/standard var_unserializer.c Log: touch the file Index: php-src/ext/standard/var_unserializer.c diff -u php-src/ext/standard/var_unserializer.c:1.26

[PHP-CVS] cvs: php-src /ext/xml compat.c

2003-06-25 Thread Sterling Hughes
sterlingThu Jun 26 00:08:54 2003 EDT Modified files: /php-src/ext/xmlcompat.c Log: some friendly names... Index: php-src/ext/xml/compat.c diff -u php-src/ext/xml/compat.c:1.14 php-src/ext/xml/compat.c:1.15 --- php-src/ext/xml/compat.c:1.14

[PHP-CVS] cvs: php-src(PHP_5) /ext/sqlite config.m4

2003-06-24 Thread Sterling Hughes
sterlingTue Jun 24 19:30:19 2003 EDT Modified files: (Branch: PHP_5) /php-src/ext/sqlite config.m4 Log: Enable sqlite by default Index: php-src/ext/sqlite/config.m4 diff -u php-src/ext/sqlite/config.m4:1.15 php-src/ext/sqlite/config.m4:1.15.4.1 ---

[PHP-CVS] cvs: php-src(PHP_5) /ext/dom config.m4

2003-06-24 Thread Sterling Hughes
sterlingTue Jun 24 20:05:47 2003 EDT Modified files: (Branch: PHP_5) /php-src/ext/domconfig.m4 Log: --with-dom now that the old dom extension is in pecl Index: php-src/ext/dom/config.m4 diff -u php-src/ext/dom/config.m4:1.3

[PHP-CVS] cvs: php-src /ext/dom config.m4

2003-06-24 Thread Sterling Hughes
sterlingTue Jun 24 20:17:41 2003 EDT Modified files: /php-src/ext/domconfig.m4 Log: can now be --with-dom, as the old domxml is now in pecl Index: php-src/ext/dom/config.m4 diff -u php-src/ext/dom/config.m4:1.3 php-src/ext/dom/config.m4:1.4 ---

[PHP-CVS] cvs: php-src /ext/sqlite config.m4

2003-06-24 Thread Sterling Hughes
sterlingTue Jun 24 20:18:01 2003 EDT Modified files: /php-src/ext/sqlite config.m4 Log: enable sqlite by default Index: php-src/ext/sqlite/config.m4 diff -u php-src/ext/sqlite/config.m4:1.15 php-src/ext/sqlite/config.m4:1.16 ---

[PHP-CVS] cvs: php-src /ext/rpc .cvsignore CREDITS EXPERIMENTAL RPC_HOWTO handler.h hash.h php_rpc.h rpc.c rpc.h rpc_proxy.c rpc_proxy.h /ext/rpc/com .cvsignore CREDITS TODO com.c com.dsp com.h com_wrapper.c com_wrapper.h conversion.c conversion.h dispatch.c php_com.h variant.c variant.h /ext/rpc/dotnet .cvsignore CREDITS EXPERIMENTAL README dotnet.cpp dotnet.dsp dotnet.php php_dotnet.h /ext/rpc/java .cvsignore CREDITS EXPERIMENTAL Makefile.frag README config.m4 except.php java.c java.dsp jawt.php jver.php reflect.java /ext/rpc/skeleton php_skeleton.h skeleton.c skeleton.h /ext/rpc/tests test1.php test2.php test3.php test4.php tests.php /ext/rpc/xmlrpc .cvsignore CREDITS EXPERIMENTAL config.m4 php_xmlrpc.h xmlrpc-epi-php.c xmlrpc.dsp /ext/rpc/xmlrpc/libxmlrpc .cvsignore README acinclude.m4 base64.c base64.h encodings.c encodings.h queue.c queue.h simplestring.c simplestring.h system_methods.c system_methods_private.h xml_element.c xml_element.h xml_to_dandarpc.c xml_to_dandarpc.h xml_to_soap.c xml_to_soap.h xml_to_xmlrpc.c xml_to_xmlrpc.h xmlrpc.c xmlrpc.h xmlrpc.m4 xmlrpc_introspection.c xmlrpc_introspection.h xmlrpc_introspection_private.h xmlrpc_private.h xmlrpc_win32.h

2003-06-24 Thread Sterling Hughes
sterlingTue Jun 24 20:28:10 2003 EDT Removed files: /php-src/ext/rpc.cvsignore CREDITS EXPERIMENTAL RPC_HOWTO handler.h hash.h php_rpc.h rpc.c rpc.h rpc_proxy.c rpc_proxy.h /php-src/ext/rpc/com

[PHP-CVS] cvs: php-src / NEWS

2003-06-24 Thread Sterling Hughes
sterlingTue Jun 24 20:32:11 2003 EDT Modified files: /php-srcNEWS Log: add some NEWS stuff. Add your stuff now! Index: php-src/NEWS diff -u php-src/NEWS:1.1426 php-src/NEWS:1.1427 --- php-src/NEWS:1.1426 Mon Jun 16 15:58:24 2003 +++ php-src/NEWS

[PHP-CVS] cvs: php-src / NEWS

2003-06-24 Thread Sterling Hughes
sterlingWed Jun 25 00:39:01 2003 EDT Modified files: /php-srcNEWS Log: add zend engine 2 changes. Index: php-src/NEWS diff -u php-src/NEWS:1.1428 php-src/NEWS:1.1429 --- php-src/NEWS:1.1428 Tue Jun 24 20:56:29 2003 +++ php-src/NEWSWed Jun

[PHP-CVS] cvs: CVSROOT / avail

2003-06-24 Thread Sterling Hughes
sterlingWed Jun 25 01:28:22 2003 EDT Modified files: /CVSROOTavail Log: give alan k access to php5, pecl Index: CVSROOT/avail diff -u CVSROOT/avail:1.696 CVSROOT/avail:1.697 --- CVSROOT/avail:1.696 Mon Jun 23 23:40:16 2003 +++ CVSROOT/avail

[PHP-CVS] cvs: CVSROOT / modules

2003-06-22 Thread Sterling Hughes
sterlingSun Jun 22 20:29:01 2003 EDT Modified files: /CVSROOTmodules Log: make it a cvs link Index: CVSROOT/modules diff -u CVSROOT/modules:1.43 CVSROOT/modules:1.44 --- CVSROOT/modules:1.43Sun Jun 22 20:26:13 2003 +++ CVSROOT/modules

[PHP-CVS] cvs: php5 /ext/mysql config.m4 /ext/mysql/libmysql .cvsignore acinclude.m4 array.c bchange.c bmove.c bmove_upp.c charset.c config-win.h ctype.c ctype_autoconf.c ctype_extra_sources.c dbug.c dbug.h default.c dll.c errmsg.c errmsg.h errors.c fix_copyright get_password.c global.h int2str.c is_prefix.c libmysql.c libmysql.dsp list.c longlong2str.c m_ctype.h m_string.h mf_casecnv.c mf_dirname.c mf_fn_ext.c mf_format.c mf_loadpath.c mf_pack.c mf_path.c mf_unixpath.c mf_wcomp.c mulalloc.c my_alarm.h my_alloc.c my_compress.c my_config.h my_create.c my_delete.c my_dir.h my_div.c my_error.c my_fopen.c my_getwd.c my_init.c my_lib.c my_list.h my_malloc.c my_messnc.c my_net.c my_net.h my_once.c my_open.c my_pthread.c my_pthread.h my_read.c my_realloc.c my_static.c my_static.h my_sys.h my_tempnam.c my_thr_init.c my_wincond.c my_winthread.c my_write.c mysql.h mysql.m4 mysql_com.h mysql_version.h mysqld_error.h mysys_err.h mysys_priv.h net.c password.c raid.h safemalloc.c stamp-h.in str2int.c strcend.c strcont.c strend.c strfill.c string.c strinstr.c strmake.c strmov.c strnmov.c strto.c strtoll.c strtoull.c strxmov.c thr_alarm.h thr_mutex.c typelib.c update_sources violite.c violite.h

2003-06-22 Thread Sterling Hughes
sterlingSun Jun 22 21:10:59 2003 EDT Removed files: /php5/ext/mysql/libmysql.cvsignore acinclude.m4 array.c bchange.c bmove.c bmove_upp.c charset.c config-win.h ctype.c ctype_autoconf.c

Re: [PHP-CVS] cvs: php4 /ext/sockets config.m4

2003-06-19 Thread Sterling Hughes
On Thu, 2003-06-19 at 02:27, Wez Furlong wrote: I don't like it being enabled by default either, since it is experimental, unstable and broken. (and streams provides stream_socket_server() and stream_socket_client() as replacements for the most common uses of ext/sockets). Well, I dare

[PHP-CVS] cvs: php4 /ext/curl interface.c

2003-06-18 Thread Sterling Hughes
sterlingWed Jun 18 17:02:02 2003 EDT Modified files: /php4/ext/curl interface.c Log: recognize CURLOPT_PORT Index: php4/ext/curl/interface.c diff -u php4/ext/curl/interface.c:1.20 php4/ext/curl/interface.c:1.21 --- php4/ext/curl/interface.c:1.20

[PHP-CVS] cvs: php4 /ext/sockets config.m4

2003-06-18 Thread Sterling Hughes
sterlingThu Jun 19 00:39:43 2003 EDT Modified files: /php4/ext/sockets config.m4 Log: enable sockets by default. Index: php4/ext/sockets/config.m4 diff -u php4/ext/sockets/config.m4:1.12 php4/ext/sockets/config.m4:1.13 ---

[PHP-CVS] cvs: php4 /ext/mysqli mysqli_profiler.h

2003-06-16 Thread Sterling Hughes
sterlingMon Jun 16 20:49:24 2003 EDT Modified files: /php4/ext/mysqlimysqli_profiler.h Log: remove the wierdness that prevented the compileness Index: php4/ext/mysqli/mysqli_profiler.h diff -u php4/ext/mysqli/mysqli_profiler.h:1.3

  1   2   >