[PHP-CVS-DAILY] cvs: php-src / ChangeLog

2007-04-24 Thread changelog
changelog   Wed Apr 25 01:31:09 2007 UTC

  Modified files:  
/php-srcChangeLog 
  Log:
  ChangeLog update
  
http://cvs.php.net/viewvc.cgi/php-src/ChangeLog?r1=1.2668r2=1.2669diff_format=u
Index: php-src/ChangeLog
diff -u php-src/ChangeLog:1.2668 php-src/ChangeLog:1.2669
--- php-src/ChangeLog:1.2668Tue Apr 24 01:31:11 2007
+++ php-src/ChangeLog   Wed Apr 25 01:31:09 2007
@@ -1,3 +1,24 @@
+2007-04-24  Ilia Alshanetsky  [EMAIL PROTECTED]
+
+* (PHP_5_2)
+  ext/simplexml/simplexml.c:
+  Fixed error message to reflect the check
+
+* (PHP_5_2)
+  NEWS
+  ext/simplexml/simplexml.c
+  ext/simplexml/tests/bug41175.phpt
+  ext/simplexml/tests/bug41175.phpt:
+  
+  Fixed bug #41175 (addAttribute() fails to add an attribute with an empty
+  value).
+
+2007-04-24  Jani Taskinen  [EMAIL PROTECTED]
+
+* (PHP_5_2)
+  ext/gd/gd.c:
+  - fix compile warning
+
 2007-04-23  Hannes Magnusson  [EMAIL PROTECTED]
 
 * sapi/cli/php_cli.c:


[PHP-CVS] cvs: php-src(PHP_5_2) /ext/gd gd.c

2007-04-24 Thread Jani Taskinen
sniper  Tue Apr 24 12:51:23 2007 UTC

  Modified files:  (Branch: PHP_5_2)
/php-src/ext/gd gd.c 
  Log:
  - fix compile warning
  
http://cvs.php.net/viewvc.cgi/php-src/ext/gd/gd.c?r1=1.312.2.20.2.23r2=1.312.2.20.2.24diff_format=u
Index: php-src/ext/gd/gd.c
diff -u php-src/ext/gd/gd.c:1.312.2.20.2.23 php-src/ext/gd/gd.c:1.312.2.20.2.24
--- php-src/ext/gd/gd.c:1.312.2.20.2.23 Tue Apr 17 15:44:23 2007
+++ php-src/ext/gd/gd.c Tue Apr 24 12:51:22 2007
@@ -18,7 +18,7 @@
+--+
  */
 
-/* $Id: gd.c,v 1.312.2.20.2.23 2007/04/17 15:44:23 bjori Exp $ */
+/* $Id: gd.c,v 1.312.2.20.2.24 2007/04/24 12:51:22 sniper Exp $ */
 
 /* gd 1.2 is copyright 1994, 1995, Quest Protein Database Center,
Cold Spring Harbor Labs. */
@@ -2236,7 +2236,7 @@
}
 }
 /* }}} */
-#endif PHP_WIN32
+#endif /* PHP_WIN32 */
 
 #ifdef HAVE_GD_BUNDLED
 /* {{{ proto resource imagerotate(resource src_im, float angle, int bgdcolor 
[, int ignoretransparent])

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



[PHP-CVS] cvs: php-src(PHP_5_2) / NEWS /ext/simplexml simplexml.c /ext/simplexml/tests bug41175.phpt

2007-04-24 Thread Ilia Alshanetsky
iliaa   Tue Apr 24 13:54:59 2007 UTC

  Added files: (Branch: PHP_5_2)
/php-src/ext/simplexml/testsbug41175.phpt 

  Modified files:  
/php-srcNEWS 
/php-src/ext/simplexml  simplexml.c 
  Log:
  
  Fixed bug #41175 (addAttribute() fails to add an attribute with an empty
  value). 
  
  
http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.661r2=1.2027.2.547.2.662diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.547.2.661 php-src/NEWS:1.2027.2.547.2.662
--- php-src/NEWS:1.2027.2.547.2.661 Mon Apr 23 15:23:37 2007
+++ php-src/NEWSTue Apr 24 13:54:59 2007
@@ -4,6 +4,8 @@
 - Fixed commandline handling fro CLI and CGI. (Marcus, Johannes)
 - Upgraded SQLite 3 to version 3.3.16 (Ilia)
 - Updated timezone database to version 2007.5. (Derick)
+- Fixed bug #41175 (addAttribute() fails to add an attribute with an empty
+  value). (Ilia)
 - Fixed bug #41159 (mysql_pconnect() hash does not account for connect
   flags). (Ilia)
 - Fixed bug #41121 (range() overflow handling for large numbers on 32bit
http://cvs.php.net/viewvc.cgi/php-src/ext/simplexml/simplexml.c?r1=1.151.2.22.2.24r2=1.151.2.22.2.25diff_format=u
Index: php-src/ext/simplexml/simplexml.c
diff -u php-src/ext/simplexml/simplexml.c:1.151.2.22.2.24 
php-src/ext/simplexml/simplexml.c:1.151.2.22.2.25
--- php-src/ext/simplexml/simplexml.c:1.151.2.22.2.24   Mon Mar 26 20:14:58 2007
+++ php-src/ext/simplexml/simplexml.c   Tue Apr 24 13:54:59 2007
@@ -18,7 +18,7 @@
   +--+
 */
 
-/* $Id: simplexml.c,v 1.151.2.22.2.24 2007/03/26 20:14:58 rrichards Exp $ */
+/* $Id: simplexml.c,v 1.151.2.22.2.25 2007/04/24 13:54:59 iliaa Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include config.h
@@ -1542,7 +1542,7 @@
return;
}
 
-   if (qname_len == 0 || value_len == 0) {
+   if (qname_len == 0) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, Attribute name and 
value are required);
return;
}
@@ -2368,7 +2368,7 @@
 {
php_info_print_table_start();
php_info_print_table_header(2, Simplexml support, enabled);
-   php_info_print_table_row(2, Revision, $Revision: 1.151.2.22.2.24 $);
+   php_info_print_table_row(2, Revision, $Revision: 1.151.2.22.2.25 $);
php_info_print_table_row(2, Schema support,
 #ifdef LIBXML_SCHEMAS_ENABLED
enabled);

http://cvs.php.net/viewvc.cgi/php-src/ext/simplexml/tests/bug41175.phpt?view=markuprev=1.1
Index: php-src/ext/simplexml/tests/bug41175.phpt
+++ php-src/ext/simplexml/tests/bug41175.phpt

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



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

2007-04-24 Thread Ilia Alshanetsky
iliaa   Tue Apr 24 14:11:29 2007 UTC

  Modified files:  (Branch: PHP_5_2)
/php-src/ext/simplexml  simplexml.c 
  Log:
  Fixed error message to reflect the check
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/simplexml/simplexml.c?r1=1.151.2.22.2.25r2=1.151.2.22.2.26diff_format=u
Index: php-src/ext/simplexml/simplexml.c
diff -u php-src/ext/simplexml/simplexml.c:1.151.2.22.2.25 
php-src/ext/simplexml/simplexml.c:1.151.2.22.2.26
--- php-src/ext/simplexml/simplexml.c:1.151.2.22.2.25   Tue Apr 24 13:54:59 2007
+++ php-src/ext/simplexml/simplexml.c   Tue Apr 24 14:11:28 2007
@@ -18,7 +18,7 @@
   +--+
 */
 
-/* $Id: simplexml.c,v 1.151.2.22.2.25 2007/04/24 13:54:59 iliaa Exp $ */
+/* $Id: simplexml.c,v 1.151.2.22.2.26 2007/04/24 14:11:28 iliaa Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include config.h
@@ -1543,7 +1543,7 @@
}
 
if (qname_len == 0) {
-   php_error_docref(NULL TSRMLS_CC, E_WARNING, Attribute name and 
value are required);
+   php_error_docref(NULL TSRMLS_CC, E_WARNING, Attribute name is 
required);
return;
}
 
@@ -2368,7 +2368,7 @@
 {
php_info_print_table_start();
php_info_print_table_header(2, Simplexml support, enabled);
-   php_info_print_table_row(2, Revision, $Revision: 1.151.2.22.2.25 $);
+   php_info_print_table_row(2, Revision, $Revision: 1.151.2.22.2.26 $);
php_info_print_table_row(2, Schema support,
 #ifdef LIBXML_SCHEMAS_ENABLED
enabled);

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



[PHP-CVS] cvs: CVSROOT /pear addkarma.php

2007-04-24 Thread Greg Beaver
cellog  Tue Apr 24 23:48:49 2007 UTC

  Modified files:  
/CVSROOT/pear   addkarma.php 
  Log:
  fix module line number detection
  
http://cvs.php.net/viewvc.cgi/CVSROOT/pear/addkarma.php?r1=1.3r2=1.4diff_format=u
Index: CVSROOT/pear/addkarma.php
diff -u CVSROOT/pear/addkarma.php:1.3 CVSROOT/pear/addkarma.php:1.4
--- CVSROOT/pear/addkarma.php:1.3   Sun Apr  8 02:32:24 2007
+++ CVSROOT/pear/addkarma.php   Tue Apr 24 23:48:48 2007
@@ -83,12 +83,6 @@
 $modulelines[$line[1]] = array();
 }
 $modulelines[$line[1]][] = $i;
-foreach ($modules as $module) {
-if (!isset($modulelines[$module])) {
-$modulelines[$module] = array();
-}
-$modulelines[$module][] = $i;
-}
 $lines[$i]['processed'] = array('rawmodules' = $line[1],
 'modules' = $modules, 'people' = $peoples);
 }

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



[PHP-CVS] cvs: CVSROOT /pear avail

2007-04-24 Thread Greg Beaver
cellog  Tue Apr 24 23:49:30 2007 UTC

  Modified files:  
/CVSROOT/pear   avail 
  Log:
  add peardoc karma for Igor Feghali (ifeghali) and consolidate peardoc/ karma 
to 1 line
  
http://cvs.php.net/viewvc.cgi/CVSROOT/pear/avail?r1=1.1r2=1.2diff_format=u
Index: CVSROOT/pear/avail
diff -u CVSROOT/pear/avail:1.1 CVSROOT/pear/avail:1.2
--- CVSROOT/pear/avail:1.1  Fri Apr  6 22:22:36 2007
+++ CVSROOT/pear/avail  Tue Apr 24 23:49:30 2007
@@ -30,7 +30,7 @@
 avail|arnaud|pearweb/public_html/qa
 
 # Some people get access to the peardoc
-avail|vincentlascaux,damian,techtonik,sroebke,thierry_bo,schst,mcgyver5,sousk,gurugeek,norbert_m,didou,poz,romain,haruki,jurbo,kusor,cipri,yannick,radzaw,adamg,justinpatrin,peterhuewe,ssttoo,mfonda,shimooka,jystewart,xolphin,takagi,aashley|peardoc
+avail|vincentlascaux,damian,techtonik,sroebke,thierry_bo,schst,mcgyver5,sousk,gurugeek,norbert_m,didou,poz,romain,haruki,jurbo,kusor,cipri,yannick,radzaw,adamg,justinpatrin,peterhuewe,ssttoo,mfonda,shimooka,jystewart,xolphin,takagi,aashley,cortesi,webdi,colder,zefredz,ifeghali|peardoc
 avail|elf|peardoc/ja
 avail|elf,sheon|peardoc/kr
 
@@ -47,7 +47,6 @@
 
avail|firman|pear/Math,pear/Math_Numerical_RootFinding,pear/Contact_AddressBook,pear/File
 avail|herrwitten|pear/PEAR_Delegator
 avail|amos|pear/PHPUnit2
-avail|cortesi,webdi,colder,zefredz|peardoc
 avail|mohrt|pear/Date
 avail|schst,lucamariano|pear/Net_Server
 avail|bjori|pear/Net_FTP,pear/Validate

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



[PHP-CVS] cvs: CVSROOT /pear avail

2007-04-24 Thread Greg Beaver
cellog  Wed Apr 25 00:21:03 2007 UTC

  Modified files:  
/CVSROOT/pear   avail 
  Log:
  peardoc/pt_BR karma for fernandoc and marcelo
  
http://cvs.php.net/viewvc.cgi/CVSROOT/pear/avail?r1=1.2r2=1.3diff_format=u
Index: CVSROOT/pear/avail
diff -u CVSROOT/pear/avail:1.2 CVSROOT/pear/avail:1.3
--- CVSROOT/pear/avail:1.2  Tue Apr 24 23:49:30 2007
+++ CVSROOT/pear/avail  Wed Apr 25 00:21:03 2007
@@ -132,4 +132,5 @@
 avail|janisto|pear/Validate,peardoc
 avail|tias|pear/PEAR_Frontend_Web,peardoc
 
+avail|fernandoc,marcelo|peardoc/pt_BR
 # vim:set ft=conf sw=2 ts=2 et:

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