On Thu, Jul 28, 2011 at 15:03, Richard Quadling <rquadl...@gmail.com> wrote: > On 28 July 2011 12:49, Richard Quadling <rquadl...@gmail.com> wrote: >> On 28 July 2011 12:38, Hannes Magnusson <bj...@php.net> wrote: >>> bjori Thu, 28 Jul 2011 11:38:19 +0000 >>> >>> Revision: http://svn.php.net/viewvc?view=revision&revision=313839 >>> >>> Log: >>> Whopsy, fix translations >>> >>> Changed paths: >>> U phpdoc/doc-base/trunk/configure.php >>> >>> Modified: phpdoc/doc-base/trunk/configure.php >>> =================================================================== >>> --- phpdoc/doc-base/trunk/configure.php 2011-07-28 11:34:43 UTC (rev 313838) >>> +++ phpdoc/doc-base/trunk/configure.php 2011-07-28 11:38:19 UTC (rev 313839) >>> @@ -282,6 +282,8 @@ >>> 'GENERATE' => 'no', >>> 'STDERR_TO_STDOUT' => 'no', >>> 'INPUT_FILENAME' => 'manual.xml', >>> + 'ENGLISH_ONLY_INCL_BEGIN' => '', >>> + 'ENGLISH_ONLY_INCL_END' => '', >>> ); // }}} >>> >>> $ac = $acd; >> >> Just OOI, all langs failed. Including en.
No, english worked fine. The problem with translations was that the @ENGLISH_ONLY_INC_BEING@ text wasn't removed from manual.xml for translations. It becomes <!-- and --> for english, to avoid needing to load the same entity files 2 times. > In looking into the CHM failures, there seems to have been a change in > how entities are understood ... > > DE > ERROR > (file:///C:/doc-all/de/reference/ingres-ii/functions/ingres-connect.xml:226:25) > <entry>€</entry> > -------------------------^ > Entity 'euro' not defined If you have a complete list of these then please fix these by using the utf-8 character (like the english version does). I recently removed all html entities loading. If its to much work to fix the translations, http://news.php.net/php.doc.cvs/8536 this would be the commit to revert > EN > ERROR (file:///C:/doc-all/en/chmonly/specialities.xml:143:53) > External links are marked with a special » sign, and open in > -----------------------------------------------------^ > Entity 'raquo' not defined Ahh, I never checked the chm files. This should be the utf-8 sign. -Hannes