bjori Mon Oct 2 07:54:37 2006 UTC
Modified files:
/php-src/ext/posix posix.c
/php-src/ext/tidy tidy.c
/php-src/ext/standard basic_functions.c html.c
Log:
Protos
http://cvs.php.net/viewvc.cgi/php-src/ext/posix/posix.c?r1=1.79&r2=1.80&diff_format=u
Index: php-src/ext/posix/posix.c
diff -u php-src/ext/posix/posix.c:1.79 php-src/ext/posix/posix.c:1.80
--- php-src/ext/posix/posix.c:1.79 Sat Sep 16 17:42:44 2006
+++ php-src/ext/posix/posix.c Mon Oct 2 07:54:37 2006
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: posix.c,v 1.79 2006/09/16 17:42:44 nlopess Exp $ */
+/* $Id: posix.c,v 1.80 2006/10/02 07:54:37 bjori Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -147,7 +147,7 @@
static PHP_MINFO_FUNCTION(posix)
{
php_info_print_table_start();
- php_info_print_table_row(2, "Revision", "$Revision: 1.79 $");
+ php_info_print_table_row(2, "Revision", "$Revision: 1.80 $");
php_info_print_table_end();
}
/* }}} */
@@ -1058,7 +1058,7 @@
#endif
#ifdef HAVE_INITGROUPS
-/* {{{ proto bool initgroups(string name, int base_group_id)
+/* {{{ proto bool posix_initgroups(string name, int base_group_id)
Calculate the group access list for the user specified in name. */
PHP_FUNCTION(posix_initgroups)
{
http://cvs.php.net/viewvc.cgi/php-src/ext/tidy/tidy.c?r1=1.101&r2=1.102&diff_format=u
Index: php-src/ext/tidy/tidy.c
diff -u php-src/ext/tidy/tidy.c:1.101 php-src/ext/tidy/tidy.c:1.102
--- php-src/ext/tidy/tidy.c:1.101 Fri Sep 15 14:59:04 2006
+++ php-src/ext/tidy/tidy.c Mon Oct 2 07:54:37 2006
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: tidy.c,v 1.101 2006/09/15 14:59:04 nlopess Exp $ */
+/* $Id: tidy.c,v 1.102 2006/10/02 07:54:37 bjori Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -1012,7 +1012,7 @@
php_info_print_table_start();
php_info_print_table_header(2, "Tidy support", "enabled");
php_info_print_table_row(2, "libTidy Release", (char
*)tidyReleaseDate());
- php_info_print_table_row(2, "Extension Version",
PHP_TIDY_MODULE_VERSION " ($Id: tidy.c,v 1.101 2006/09/15 14:59:04 nlopess Exp
$)");
+ php_info_print_table_row(2, "Extension Version",
PHP_TIDY_MODULE_VERSION " ($Id: tidy.c,v 1.102 2006/10/02 07:54:37 bjori Exp
$)");
php_info_print_table_end();
DISPLAY_INI_ENTRIES();
@@ -1387,7 +1387,7 @@
}
/* }}} */
-/* {{{ proto bool tidy_is_xhtml() U
+/* {{{ proto bool tidy_is_xml() U
Indicates if the document is a generic (non HTML/XHTML) XML document. */
static PHP_FUNCTION(tidy_is_xml)
{
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/basic_functions.c?r1=1.806&r2=1.807&diff_format=u
Index: php-src/ext/standard/basic_functions.c
diff -u php-src/ext/standard/basic_functions.c:1.806
php-src/ext/standard/basic_functions.c:1.807
--- php-src/ext/standard/basic_functions.c:1.806 Sun Oct 1 21:00:00 2006
+++ php-src/ext/standard/basic_functions.c Mon Oct 2 07:54:37 2006
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: basic_functions.c,v 1.806 2006/10/01 21:00:00 iliaa Exp $ */
+/* $Id: basic_functions.c,v 1.807 2006/10/02 07:54:37 bjori Exp $ */
#include "php.h"
#include "php_streams.h"
@@ -6317,6 +6317,8 @@
/* }}} */
#ifdef HAVE_GETLOADAVG
+/* {{{ proto array sys_getloadavg()
+*/
PHP_FUNCTION(sys_getloadavg)
{
double load[3];
@@ -6330,6 +6332,7 @@
add_index_double(return_value, 2, load[2]);
}
}
+/* }}} */
#endif
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/html.c?r1=1.115&r2=1.116&diff_format=u
Index: php-src/ext/standard/html.c
diff -u php-src/ext/standard/html.c:1.115 php-src/ext/standard/html.c:1.116
--- php-src/ext/standard/html.c:1.115 Tue Aug 15 15:09:21 2006
+++ php-src/ext/standard/html.c Mon Oct 2 07:54:37 2006
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: html.c,v 1.115 2006/08/15 15:09:21 tony2001 Exp $ */
+/* $Id: html.c,v 1.116 2006/10/02 07:54:37 bjori Exp $ */
/*
* HTML entity resources:
@@ -1223,7 +1223,7 @@
}
/* }}} */
-/* {{{ proto string htmlspecialchars(string string [, int quote_style])
+/* {{{ proto string htmlspecialchars_decode(string string [, int quote_style])
Convert special HTML entities back to characters */
PHP_FUNCTION(htmlspecialchars_decode)
{
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php