At line 8 added 2 lines. |
---- |
These are the files required: |
At line 11 added 4 lines. |
{{{./build.xml |
./dbdoclet.properties |
./metadata/xsl/fo.xsl}}} |
|
At line 90 added 72 lines. |
---- |
and finally {{dbdoclet.properties}} |
---- |
{{{ |
# The path of the output file. In the directory of the output file a |
# subdirectory figures may be created, where the images for the document |
# are stored. |
destination.file=reference.xml |
|
# One of xml or sgml (case insensitive) |
docbook.type=xml |
|
# The version of the produced DocBook. Should be 3.1 or 4.1 for SGML and |
# 4.1.2 for XML. |
docbook.version=4.2 |
|
# If set to true, the file Index.sgml is included. To generate an |
# Index.sgml file you can use the script collateindex.pl. The script is |
# part of The Modular DocBook Stylesheets. |
docbook.has-index=true |
|
# If set to false, the XML/SGML prolog (<?xml..><DOCTYPE...>) is not |
# created. This property is necessary, if you want to incorporate the |
# output into a DocBook source. e.g a website. |
#docbook.has-prolog=true |
|
# A comma separated list of imagedata formats. For every format a |
# ImageObject -> ImageData entry will be generated. |
|
# Postscript for printing |
# imagedata.formats=eps |
|
# PNG for PDF and HTML |
imagedata.formats=png |
|
language=en |
title=ROSI SWS |
author.firstname=Student |
author.surname=Information Systems |
[email protected] |
copyright.holder=University of Toronto |
|
abstract=Reference Handbook for ROSI SWS Java API |
|
# This properties defines the value for the attribute width of the tag |
# ProgramListing. It specifies the width of the longest line in a |
# ProgramListing. A formatter can use this value to determine scaling or |
# the size of the font used. |
code.width=80 |
|
# If set to true, the output of warnings is enabled. |
parser.warnings=true |
|
# If set to true, an inheritance path is added to the overview section |
# for every class. If known, the classes are referenced among each |
# other. The default value of this property is true. |
show.inheritancePath=true |
|
# If dot from graphviz 1.8.9 is installed on your system, it is used to |
# create the class diagrams. This property should contain the path to |
# the dot binary. |
program.dot.path=/usr/bin/dot |
|
# This property defines the vertical space between the classes in the |
# class diagrams. The space is an inch value like 0.3. |
# program.dot.ranksep=0.2 |
|
# This property enables fully qualified names in the class diagrams |
program.dot.qualified-names=true |
}}} |
Another yummy feature is class diagrams in PNG (or other) format. That's why you need the [graphviz package from AT&T|http://www.research.att.com/sw/tools/graphviz/]. |
|