On Sat, 1 Sep 2001, Marco Cucinato wrote: > Since the PHP version numbers related to every function > (/version.xml) are applied to the doc every time they are generated, > the old docs are not updated: > Look at the array_walk function over the different translations. > EN: (PHP 3>= 3.0.3, PHP 4 >= 4.0b1) > CZ: (PHP 3>= 3.0.3, PHP 4 >= 4.0b1) > FR: (PHP 3>= 3.0.3, PHP 4 >= 4.0b1) > but > ES: (PHP 3>= 3.0.3, PHP 4 ) because it was last updated on > 2001/05/20, and version.xml was changed on 2001/06/25. > > If the docs were always reprocessed, the version numbers would be > homogeneous. Seems that the spanish version isn't recreated automatically due to a few errors in it. Mainly some references in the non-translated files (our documentation generation system automatically substitutes the english version for a non-translated one) to IDs in another file that exist in the latest english version, but not yet added to a translated version. I'd like to propose a small change in Makefile.in: - JADE=@JADE@ + JADE=@JADE@ -wno-idref NSGMLS=@NSGMLS@ This way, the documentation will be generated even if parts of the translation are a bit old and don't yet have those IDs needed, but 'make test' still catches the errors. -- Jouni