1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
Required software:
- autoconf
- make
- xsltproc
- xmllint
On Windows, you should use Cygwin software or another port of GNU
development tools.
How to build the DocBook documentation:
- run "autoconf" in this dir
- run "./configure" in this dir
- run "make"
The HTML files are rendered in the "html" dir.
When developing content, you can verify your changes by running:
"make check"
This verifies the XML for the whole manual is valid.
You can verify your changes in a single file by running:
"make XMLFILE=filename.xml check1"
The filename.xml is relative to the "module_specs" directory.
DocBook resources:
http://www.ibiblio.org/godoy/sgml/docbook/howto/index.html
http://opensource.bureau-cornavin.com/crash-course/index.html
http://ds9a.nl/docbook/
http://www.sagehill.net/docbookxsl/index.html
http://docbook.org/tdg/en/html/part2.html DocBook tag reference
To generat a CHM project file, you must install MsHtmlHelpWorkshop.
To build the CHM file on the command line navigate to the directory
in which the manual html files are built as described above
Then call:
"C:/path/to/workshop/hhc htmlhelp.hhp"
where "C:/path/to/workshop/" is the path to MsHtmlHelpWorkshop.
This will build a "Zend_Framework_LANGUAGE.chm" file.
You should now have an index in the file..
|