[PHP-CVS-DAILY] cvs: php4 / ChangeLog

2003-03-12 Thread changelog
changelog   Wed Mar 12 20:33:05 2003 EDT

  Modified files:  
/php4   ChangeLog 
  Log:
  ChangeLog update
  
Index: php4/ChangeLog
diff -u php4/ChangeLog:1.1292 php4/ChangeLog:1.1293
--- php4/ChangeLog:1.1292   Tue Mar 11 20:33:20 2003
+++ php4/ChangeLog  Wed Mar 12 20:33:01 2003
@@ -1,3 +1,71 @@
+2003-03-12  Jani Taskinen  [EMAIL PROTECTED]
+
+* (PHP_4_3)
+  NEWS:
+  We should get this out before April..
+
+* (PHP_4_3)
+  configure.in
+  main/php_version.h:
+  - Backup to 4.3.2RC
+
+* (PHP_4_3)
+  configure.in
+  main/php_version.h:
+  - Bump the version to RC1.
+
+2003-03-12  Stefan Esser  [EMAIL PROTECTED]
+
+* main/main.c:
+  reverting half the patch (it is not that simple)
+
+2003-03-12  Sterling Hughes  [EMAIL PROTECTED]
+
+* ext/standard/basic_functions.c
+  ext/standard/file.c
+  ext/standard/file.h:
+  
+
+2003-03-12  Ilia Alshanetsky  [EMAIL PROTECTED]
+
+* ext/odbc/php_odbc.c:
+  Fixed spprintf() usage.
+  Fixed compiler warnings.
+
+2003-03-12  Jani Taskinen  [EMAIL PROTECTED]
+
+* ext/gd/gd.c:
+  Added the type constants for imagegd2()
+
+* ext/gd/gd.c
+  ext/gd/gd_ctx.c:
+  Fix bug #22646
+
+* acinclude.m4:
+  prevent warning
+
+* NEWS:
+  This was merged into PHP_4_3 branch..
+
+2003-03-12  Ilia Alshanetsky  [EMAIL PROTECTED]
+
+* ext/gd/libgd/gd.c
+  ext/gd/libgd/xbm.c:
+  Style fixes.
+
+2003-03-12  Marcus Boerger  [EMAIL PROTECTED]
+
+* tests/classes/interface_class.phpt
+  tests/classes/interface_doubled.phpt
+  tests/classes/interface_implemented.phpt
+  tests/classes/interface_instantiate.phpt
+  tests/classes/interface_member.phpt
+  tests/classes/interface_method.phpt
+  tests/classes/interface_method_final.phpt
+  tests/classes/interface_method_private.phpt
+  tests/classes/interface_must_be_implemented.phpt:
+  Added some interface tests
+
 2003-03-11  Jani Taskinen  [EMAIL PROTECTED]
 
 * (PHP_4_3)
@@ -1646,7 +1714,7 @@
 
 * sapi/apache/libpre.c
   sapi/apache/php_apache_http.h:
-  Added missing headers and $Id: ChangeLog,v 1.1292 2003/03/12 01:33:20 changelog 
Exp $ tags.
+  Added missing headers and $Id: ChangeLog,v 1.1293 2003/03/13 01:33:01 changelog 
Exp $ tags.
 
 * sapi/cgi/config9.m4:
   MFB: Fixed bug #22356 (Do not add empty -I flags).
@@ -2205,7 +2273,7 @@
   main/streams/plain_wrapper.c
   main/streams/streams.c
   main/streams/userspace.c:
-  ws fixes + missing $Id: ChangeLog,v 1.1292 2003/03/12 01:33:20 changelog Exp $ 
tags, headers added
+  ws fixes + missing $Id: ChangeLog,v 1.1293 2003/03/13 01:33:01 changelog Exp $ 
tags, headers added
 
 2003-02-19  Corne' Cornelius  [EMAIL PROTECTED]
 
@@ -3123,7 +3191,7 @@
 
 * (PHP_4_3)
   sapi/cgi/cgi_main.c:
-  Added missing $Id: ChangeLog,v 1.1292 2003/03/12 01:33:20 changelog Exp $ tag
+  Added missing $Id: ChangeLog,v 1.1293 2003/03/13 01:33:01 changelog Exp $ tag
 
 2003-02-14  Thies C. Arntzen  [EMAIL PROTECTED]
 




[PHP-CVS-DAILY] cvs: php4 / NEWS

2003-03-12 Thread changelog
changelog   Wed Mar 12 20:33:35 2003 EDT

  Modified files:  
/php4   NEWS 
  Log:
  NEWS update
  
Index: php4/NEWS
diff -u php4/NEWS:1.1373 php4/NEWS:1.1374
--- php4/NEWS:1.1373Tue Mar 11 20:09:27 2003
+++ php4/NEWS   Wed Mar 12 20:33:35 2003
@@ -1,6 +1,9 @@
 PHP 4  NEWS
 |||
 ? ? ??? 200?, Version 5.0.0
+- Add the file_set_contents() function, as a complement to the
+  file_get_contents()
+  function. (Sterling)
 - Moved extensions to PECL (http://pear.php.net/): (James, Tal)
   . ext/fribidi
 - Fixed bug #21600 (Assign by reference function call changes variable contents).




[PHP-CVS] cvs: php4 /main main.c

2003-03-12 Thread Stefan Esser
sesser  Wed Mar 12 07:00:27 2003 EDT

  Modified files:  
/php4/main  main.c 
  Log:
  reverting half the patch (it is not that simple)
  
  
  
Index: php4/main/main.c
diff -u php4/main/main.c:1.537 php4/main/main.c:1.538
--- php4/main/main.c:1.537  Sat Mar  8 10:20:12 2003
+++ php4/main/main.cWed Mar 12 07:00:22 2003
@@ -18,7 +18,7 @@
+--+
 */
 
-/* $Id: main.c,v 1.537 2003/03/08 15:20:12 sesser Exp $ */
+/* $Id: main.c,v 1.538 2003/03/12 12:00:22 sesser Exp $ */
 
 /* {{{ includes
  */
@@ -579,14 +579,6 @@
TSRMLS_FETCH();
 
buffer_len = vspprintf(buffer, PG(log_errors_max_len), format, args);
-   if (PG(html_errors)) {
-   int len;
-   char *replace = php_escape_html_entities(buffer, buffer_len, len, 0, 
ENT_COMPAT, NULL TSRMLS_CC);
-   efree(buffer);
-   buffer = replace;
-   buffer_len = len;
-   }
-
if (PG(ignore_repeated_errors)) {
if (strncmp(last_error.buf, buffer, sizeof(last_error.buf))
|| (!PG(ignore_repeated_source)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) /main main.c

2003-03-12 Thread Stefan Esser
sesser  Wed Mar 12 07:01:04 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4/main  main.c 
  Log:
  MFH
  
  
Index: php4/main/main.c
diff -u php4/main/main.c:1.512.2.15 php4/main/main.c:1.512.2.16
--- php4/main/main.c:1.512.2.15 Sat Mar  8 10:24:47 2003
+++ php4/main/main.cWed Mar 12 07:01:01 2003
@@ -18,7 +18,7 @@
+--+
 */
 
-/* $Id: main.c,v 1.512.2.15 2003/03/08 15:24:47 sesser Exp $ */
+/* $Id: main.c,v 1.512.2.16 2003/03/12 12:01:01 sesser Exp $ */
 
 /* {{{ includes
  */
@@ -598,14 +598,6 @@
TSRMLS_FETCH();
 
buffer_len = vspprintf(buffer, PG(log_errors_max_len), format, args);
-   if (PG(html_errors)) {
-   int len;
-   char *replace = php_escape_html_entities(buffer, buffer_len, len, 0, 
ENT_COMPAT, NULL TSRMLS_CC);
-   efree(buffer);
-   buffer = replace;
-   buffer_len = len;
-   }
-
if (PG(ignore_repeated_errors)) {
if (strncmp(last_error.buf, buffer, sizeof(last_error.buf))
|| (!PG(ignore_repeated_source)



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / configure.in /main php_version.h

2003-03-12 Thread Jani Taskinen
sniper  Wed Mar 12 17:18:22 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   configure.in 
/php4/main  php_version.h 
  Log:
  - Bump the version to RC1.
  
  
Index: php4/configure.in
diff -u php4/configure.in:1.396.2.38 php4/configure.in:1.396.2.39
--- php4/configure.in:1.396.2.38Mon Mar 10 09:33:10 2003
+++ php4/configure.in   Wed Mar 12 17:18:21 2003
@@ -1,4 +1,4 @@
-dnl ## $Id: configure.in,v 1.396.2.38 2003/03/10 14:33:10 sniper Exp $ -*- sh -*-
+dnl ## $Id: configure.in,v 1.396.2.39 2003/03/12 22:18:21 sniper Exp $ -*- sh -*-
 dnl ## Process this file with autoconf to produce a configure script.
 
 divert(1)
@@ -41,7 +41,7 @@
 MAJOR_VERSION=4
 MINOR_VERSION=3
 RELEASE_VERSION=2
-EXTRA_VERSION=-dev
+EXTRA_VERSION=-RC1
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$RELEASE_VERSION$EXTRA_VERSION
 
 dnl Define where extension directories are located in the configure context
Index: php4/main/php_version.h
diff -u php4/main/php_version.h:1.66.2.11 php4/main/php_version.h:1.66.2.12
--- php4/main/php_version.h:1.66.2.11   Sun Feb 16 19:02:11 2003
+++ php4/main/php_version.h Wed Mar 12 17:18:22 2003
@@ -3,5 +3,5 @@
 #define PHP_MAJOR_VERSION 4
 #define PHP_MINOR_VERSION 3
 #define PHP_RELEASE_VERSION 2
-#define PHP_EXTRA_VERSION -dev
-#define PHP_VERSION 4.3.2-dev
+#define PHP_EXTRA_VERSION -RC1
+#define PHP_VERSION 4.3.2-RC1



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php4(PHP_4_3) / configure.in /main php_version.h

2003-03-12 Thread Jani Taskinen
sniper  Wed Mar 12 17:21:26 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php4   configure.in 
/php4/main  php_version.h 
  Log:
  - Backup to 4.3.2RC
  
  
Index: php4/configure.in
diff -u php4/configure.in:1.396.2.39 php4/configure.in:1.396.2.40
--- php4/configure.in:1.396.2.39Wed Mar 12 17:18:21 2003
+++ php4/configure.in   Wed Mar 12 17:21:25 2003
@@ -1,4 +1,4 @@
-dnl ## $Id: configure.in,v 1.396.2.39 2003/03/12 22:18:21 sniper Exp $ -*- sh -*-
+dnl ## $Id: configure.in,v 1.396.2.40 2003/03/12 22:21:25 sniper Exp $ -*- sh -*-
 dnl ## Process this file with autoconf to produce a configure script.
 
 divert(1)
@@ -41,7 +41,7 @@
 MAJOR_VERSION=4
 MINOR_VERSION=3
 RELEASE_VERSION=2
-EXTRA_VERSION=-RC1
+EXTRA_VERSION=-RC
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$RELEASE_VERSION$EXTRA_VERSION
 
 dnl Define where extension directories are located in the configure context
Index: php4/main/php_version.h
diff -u php4/main/php_version.h:1.66.2.12 php4/main/php_version.h:1.66.2.13
--- php4/main/php_version.h:1.66.2.12   Wed Mar 12 17:18:22 2003
+++ php4/main/php_version.h Wed Mar 12 17:21:25 2003
@@ -3,5 +3,5 @@
 #define PHP_MAJOR_VERSION 4
 #define PHP_MINOR_VERSION 3
 #define PHP_RELEASE_VERSION 2
-#define PHP_EXTRA_VERSION -RC1
-#define PHP_VERSION 4.3.2-RC1
+#define PHP_EXTRA_VERSION -RC
+#define PHP_VERSION 4.3.2-RC



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php