mike Thu Sep 7 14:54:28 2006 UTC Modified files: /php-src/ext/tidy tidy.c Log: - add note why we can't have a chunk-sized output handler http://cvs.php.net/viewvc.cgi/php-src/ext/tidy/tidy.c?r1=1.98&r2=1.99&diff_format=u Index: php-src/ext/tidy/tidy.c diff -u php-src/ext/tidy/tidy.c:1.98 php-src/ext/tidy/tidy.c:1.99 --- php-src/ext/tidy/tidy.c:1.98 Wed Sep 6 17:55:09 2006 +++ php-src/ext/tidy/tidy.c Thu Sep 7 14:54:28 2006 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: tidy.c,v 1.98 2006/09/06 17:55:09 mike Exp $ */ +/* $Id: tidy.c,v 1.99 2006/09/07 14:54:28 mike Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -1028,7 +1028,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.98 2006/09/06 17:55:09 mike Exp $)"); + php_info_print_table_row(2, "Extension Version", PHP_TIDY_MODULE_VERSION " ($Id: tidy.c,v 1.99 2006/09/07 14:54:28 mike Exp $)"); php_info_print_table_end(); DISPLAY_INI_ENTRIES(); @@ -1078,6 +1078,10 @@ return status; } +/* + * NOTE: tidy does not support iterative/cumulative parsing, so chunk-sized output handler is not possible + */ + static void php_tidy_clean_output_start(zval *name TSRMLS_DC) { php_output_handler *h;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php