> the new faq section didn't build yesterday, du to missing tag refname.
> This is commited now, and should work fine now.
>
> I've a question : how should I configure Jade for it to use the
> "faqurls.ent" file? As now, it doesn't use it, and generates errors.
faqurls.ent should go to the phpdoc root dir. So we do not
need to update it in every language... And then you can add
it in manual.xml.in as the globals.ent is included. You need
to define a new entity, and use it...
<!ENTITY % faq.urls SYSTEM "@srcdir@/faqurls.ent">
%faq.urls;
But be aware to produce no conflict with entity naming!
Do not redefine an entity named the same in any other entity
file, because it would cause problems.... Eg. for simplicity
use the faq. prefix for all entities. See the global.ent file,
about how this is done there (with url. book. email. link.
and spec. prefixes).
Goba