iliaa           Mon Oct 27 23:02:12 2003 EDT

  Modified files:              
    /php-src    NEWS 
    /php-src/ext/standard       php_uuencode.h uuencode.c basic_functions.c 
  Log:
  By popular demand renaming uu(encode/decode) to convert_uu(encode/decode).
  
  
Index: php-src/NEWS
diff -u php-src/NEWS:1.1480 php-src/NEWS:1.1481
--- php-src/NEWS:1.1480 Mon Oct 27 10:04:01 2003
+++ php-src/NEWS        Mon Oct 27 23:02:11 2003
@@ -32,8 +32,8 @@
   . array_udiff_assoc(). (Andrey)
   . array_udiff_uassoc(). (Andrey)
   . array_diff_uassoc(). (Andrey)
-  . uuencode(). (Ilia)
-  . uudecode(). (Ilia)
+  . convert_uuencode(). (Ilia)
+  . convert_uudecode(). (Ilia)
 - Added "resume_pos" context option to "ftp://"; wrapper. (Sara)
 - Added optional parameter to OCIWriteTemporaryLob() to specify the type of LOB
   (Patch by Novicky Marek <[EMAIL PROTECTED]>). (Thies)
Index: php-src/ext/standard/php_uuencode.h
diff -u php-src/ext/standard/php_uuencode.h:1.1 php-src/ext/standard/php_uuencode.h:1.2
--- php-src/ext/standard/php_uuencode.h:1.1     Mon Oct 27 00:35:41 2003
+++ php-src/ext/standard/php_uuencode.h Mon Oct 27 23:02:11 2003
@@ -16,13 +16,13 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: php_uuencode.h,v 1.1 2003/10/27 05:35:41 iliaa Exp $ */
+/* $Id: php_uuencode.h,v 1.2 2003/10/28 04:02:11 iliaa Exp $ */
 
 #ifndef PHP_UUENCODE_H
 #define PHP_UUENCODE_H
 
-PHP_FUNCTION(uudecode);
-PHP_FUNCTION(uuencode);
+PHP_FUNCTION(convert_uudecode);
+PHP_FUNCTION(convert_uuencode);
 
 PHPAPI int php_uudecode(char *src, int src_len, char **dest);
 PHPAPI int php_uuencode(char *src, int src_len, char **dest);
Index: php-src/ext/standard/uuencode.c
diff -u php-src/ext/standard/uuencode.c:1.1 php-src/ext/standard/uuencode.c:1.2
--- php-src/ext/standard/uuencode.c:1.1 Mon Oct 27 00:35:41 2003
+++ php-src/ext/standard/uuencode.c     Mon Oct 27 23:02:11 2003
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: uuencode.c,v 1.1 2003/10/27 05:35:41 iliaa Exp $ */
+/* $Id: uuencode.c,v 1.2 2003/10/28 04:02:11 iliaa Exp $ */
 
 /*
  * Portions of this code are based on Berkeley's uuencode/uudecode
@@ -172,7 +172,7 @@
 
 /* {{{ proto string uuencode(string data) 
    uuencode a string */
-PHP_FUNCTION(uuencode)
+PHP_FUNCTION(convert_uuencode)
 {
        char *src, *dst;
        int src_len, dst_len;
@@ -189,7 +189,7 @@
 
 /* {{{ proto string uudecode(string data)
    decode a uuencoded string */
-PHP_FUNCTION(uudecode)
+PHP_FUNCTION(convert_uudecode)
 {
        char *src, *dst;
        int src_len, dst_len;
Index: php-src/ext/standard/basic_functions.c
diff -u php-src/ext/standard/basic_functions.c:1.635 
php-src/ext/standard/basic_functions.c:1.636
--- php-src/ext/standard/basic_functions.c:1.635        Mon Oct 27 00:35:41 2003
+++ php-src/ext/standard/basic_functions.c      Mon Oct 27 23:02:11 2003
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: basic_functions.c,v 1.635 2003/10/27 05:35:41 iliaa Exp $ */
+/* $Id: basic_functions.c,v 1.636 2003/10/28 04:02:11 iliaa Exp $ */
 
 #include "php.h"
 #include "php_streams.h"
@@ -490,8 +490,8 @@
        PHP_FE(base64_decode,                                                          
                                         NULL)
        PHP_FE(base64_encode,                                                          
                                         NULL)
 
-       PHP_FE(uuencode,                                                               
                                                 NULL)
-       PHP_FE(uudecode,                                                               
                                                 NULL)
+       PHP_FE(convert_uuencode,                                                       
                                                         NULL)
+       PHP_FE(convert_uudecode,                                                       
                                                         NULL)
 
        PHP_FE(abs,                                                                    
                                                         NULL)
        PHP_FE(ceil,                                                                   
                                                 NULL)

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

Reply via email to