Re: [PHP-DOC] XHTML (was: A blank page shows)

2008-12-23 Thread Daniel Convissor
Hi Hannes: On Tue, Dec 23, 2008 at 11:10:28PM +0100, Hannes Magnusson wrote: > > PhD does try to be as xhtml compliant as it can. There are several > cases which we simply cannot fix, but others that simply have been an > oversight. Ja. Cool. > It is a tough problem. Be anal about validation

Re: [PHP-DOC] XHTML (was: A blank page shows)

2008-12-23 Thread Christian Weiske
Hello all, > > Do you have one documented? I do a lot of XSLT-type stuff and it > > seems to me that if we're starting with valid XML (.manual.xml) and > > XHTML is in many respects HTML XMLified that it should be > > possible... > The problem is like: > > some text > > the example title > Exam

[PHP-DOC] cvs: php-src(PHP_5_3) /ext/sysvshm php_sysvshm.h sysvshm.c /ext/sysvshm/tests 002.phpt 003.phpt 004.phpt 005.phpt 006.phpt 007.phpt

2008-12-23 Thread Felipe Pena
felipe Wed Dec 24 00:23:18 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/sysvshmphp_sysvshm.h sysvshm.c /php-src/ext/sysvshm/tests 002.phpt 003.phpt 004.phpt 005.phpt 006.phpt 007.phpt Log: - Sync code with H

Re: [PHP-DOC] A patch to PhD, remove the deprecated ereg_replace function call in PHP 5.3.0

2008-12-23 Thread Philip Olson
Philip; could you give him karma so he can commit this himself? Full phpdoc karma granted, also, while committing this please close (and unassign) the related bug report: http://bugs.php.net/bug.php?id=46714 Regards, Philip

Re: [PHP-DOC] XHTML (was: A blank page shows)

2008-12-23 Thread Hannes Magnusson
On Tue, Dec 23, 2008 at 23:21, G. T. Stresen-Reuter wrote: > On Dec 23, 2008, at 4:10 PM, Hannes Magnusson wrote: > >> There are several cases which we simply cannot fix > > Do you have one documented? I do a lot of XSLT-type stuff and it seems to me > that if we're starting with valid XML (.manua

Re: [PHP-DOC] A patch to PhD, remove the deprecated ereg_replace function call in PHP 5.3.0

2008-12-23 Thread Hannes Magnusson
On Tue, Dec 23, 2008 at 18:13, Gang Chen wrote: > Hello, > > Since the ereg_replace function is deprecated in PHP 5.3.0, when > building PHP docs with PHP 5.3.0, I got too many E_DEPRECATED > messages. To clear the boring messages, I changed the function call to > ereg_replace to preg_replace. Fol

Re: [PHP-DOC] XHTML (was: A blank page shows)

2008-12-23 Thread G. T. Stresen-Reuter
On Dec 23, 2008, at 4:10 PM, Hannes Magnusson wrote: There are several cases which we simply cannot fix Do you have one documented? I do a lot of XSLT-type stuff and it seems to me that if we're starting with valid XML (.manual.xml) and XHTML is in many respects HTML XMLified that it shoul

Re: [PHP-DOC] XHTML (was: A blank page shows)

2008-12-23 Thread Hannes Magnusson
On Tue, Dec 23, 2008 at 21:46, Daniel Convissor wrote: > On Mon, Dec 22, 2008 at 02:57:46PM +0800, Gang Chen wrote: >> >> $header = <<> > "http://www.w3.org/TR/html4/loose.dtd";> > > Has there been discussion of making this, and all (relevant) PhD output, > XHTML compliant? I can go throu

[PHP-DOC] XHTML (was: A blank page shows)

2008-12-23 Thread Daniel Convissor
On Mon, Dec 22, 2008 at 02:57:46PM +0800, Gang Chen wrote: > > $header = << "http://www.w3.org/TR/html4/loose.dtd";> Has there been discussion of making this, and all (relevant) PhD output, XHTML compliant? I can go through the code and make it so (or at least closer). > > > $t

[PHP-DOC] A patch to PhD, remove the deprecated ereg_replace function call in PHP 5.3.0

2008-12-23 Thread Gang Chen
Hello, Since the ereg_replace function is deprecated in PHP 5.3.0, when building PHP docs with PHP 5.3.0, I got too many E_DEPRECATED messages. To clear the boring messages, I changed the function call to ereg_replace to preg_replace. Following is the patch: Index: manpage.php ===