Re: [PHP-CVS] cvs: php-src /ext/tidy tidy.c

2006-11-01 Thread Nuno Lopes
In fact they are all the same. When you pass an html string, it opens a new converter (with ref_count=1), and then it just points the child nodes to that converter (and incs the ref_counter). So I'm only storing a pointer to the converter with a ref. counter associated. This is needed because yo

[PHP-CVS] cvs: php-src /ext/zip/tests oo_addemptydir.phpt

2006-11-01 Thread Pierre-Alain Joye
pajoye Wed Nov 1 19:56:54 2006 UTC Added files: /php-src/ext/zip/tests oo_addemptydir.phpt Log: - add simple test for addEmptyDir() http://cvs.php.net/viewvc.cgi/php-src/ext/zip/tests/oo_addemptydir.phpt?view=markup&rev=1.1 Index: php-src/ext/zip/t

Re: [PHP-CVS] cvs: php-src /ext/tidy tidy.c

2006-11-01 Thread Andrei Zmievski
Do you need a separate converter per node? Can they all be different for some reason? -Andrei On Nov 1, 2006, at 10:28 AM, Nuno Lopes wrote: nlopess Wed Nov 1 18:28:37 2006 UTC Modified files: /php-src/ext/tidy tidy.c Log: start converting the tidy and tidyNode objects t

[PHP-CVS] cvs: php-src /ext/tidy tidy.c

2006-11-01 Thread Nuno Lopes
nlopess Wed Nov 1 18:55:03 2006 UTC Modified files: /php-src/ext/tidy tidy.c Log: convert a few more functions http://cvs.php.net/viewvc.cgi/php-src/ext/tidy/tidy.c?r1=1.105&r2=1.106&diff_format=u Index: php-src/ext/tidy/tidy.c diff -u php-src/ext/tidy/tidy.c

[PHP-CVS] cvs: php-src /ext/tidy tidy.c

2006-11-01 Thread Nuno Lopes
nlopess Wed Nov 1 18:28:37 2006 UTC Modified files: /php-src/ext/tidy tidy.c Log: start converting the tidy and tidyNode objects to be Unicode aware I added a converter pointer per node, so that the text can be converted to unicode when requested this commi