Makefile
and uncomment the OTHER_LANGS
entry. Add the required language code after the '=' sign.
OTHER_LANGS
in the Makefile
. Run the make update-po-language
command. For example, make update-po-ja-JP
creates the Japanese language directory and the Japanese po files.
OTHER_LANGS = en de fr
?
make update-po-en
command.
make update-po-all
command.
make help
command.
Makefile
?
make help_params
command.
/usr/share/publican/
.
/usr/share/publican/xsl/docbook.dtd.xml
extras
in your source language directory and use an xi:include
to pull in the code file.
mkdir en-US/extras
cp ~/samples/foo.c en-US/extras/.
xi:include
the sample file in your xml file
<programlisting> <xi:include parse="text" href="extras/foo.c" xmlns:xi="http://www.w3.org/2001/XInclude" /> </programlisting>
en-US/extras/foo.c
in your favorite editor without having to be concerned about how it will affect the XML.
files
in your source language directory it will be included in any tar or SRPM files created by publican.
files
directory will not be available during the validation process so you can not xi:include
or otherwise embed any files in this directory in your XML.
xmlClean --known
xmlClean
and that the tag in question has been marked as undesirable. The error message should contain a reason why the tag was banned.
xmlClean --banned
alternatives --config java
and alternatives --config javac
, if the versions are different then selecting the same version in both can fix this problem.
alternatives
environment correctly, no fix has been determined for this situation.
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
when trying to build PDF. What is wrong?
make
run echo "FOP_OPTS='-Xms50m -Xmx700m'" > ~/.foprc
. This sets the initial heap space to 50MB and allows it to grow to a maximum of 700MB.