Hi, raymond ostertag <raymond.linux@xxxxxxx> writes: > Make process begin with : > > cd ../html/C && /usr/bin/xsltproc --xinclude --nonet > ../../stylesheets/plainhtml.xsl ../../src/gimp.xml > Attempt to load network entity > http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd > ../../src/gimp.xml:6: warning: failed to load external entity > "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" > ]> > > But I am connected and the URL seems correct ... The DTDs are absolutely necessary in order to process the files. You cannot expect things to work if the DTDs are missing. Also you shouldn't use the DTDs from the network but have them installed at your computer. You will need an XML catalog file that tells your XSLT processort where the DTDs are found on your disk. Usually this file lives in /etc/xml. AFAIK it is correctly installed on recent RedHat systems; it is known to be broken on Debian and I don't know about other distributions. For Debian there is a script that attempts to fix the catalog file. Use it at your own risk: http://sven.gimp.org/build-xml-catalog-for-debian.sh Sven