[Openvas-commits] r2445 - in trunk/openvas-libraries: . doc
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Tue Feb 10 16:18:42 CET 2009
Author: jan
Date: 2009-02-10 16:18:41 +0100 (Tue, 10 Feb 2009)
New Revision: 2445
Modified:
trunk/openvas-libraries/ChangeLog
trunk/openvas-libraries/Makefile
trunk/openvas-libraries/doc/Doxyfile_full
Log:
* doc/Doxyfile_full: Makes the resulting documentation even
more comprehensive. Switch off Latex output.
* Makefile: make src doc latex creation conditional to presence
of respective directories.
Modified: trunk/openvas-libraries/ChangeLog
===================================================================
--- trunk/openvas-libraries/ChangeLog 2009-02-10 14:52:40 UTC (rev 2444)
+++ trunk/openvas-libraries/ChangeLog 2009-02-10 15:18:41 UTC (rev 2445)
@@ -1,3 +1,11 @@
+2009-02-10 Jan-Oliver Wagner <jan-oliver.wagner at intevation.de>
+
+ * doc/Doxyfile_full: Makes the resulting documentation even
+ more comprehensive. Switch off Latex output.
+
+ * Makefile: make src doc latex creation conditional to presence
+ of respective directories.
+
2009-02-06 Michael Wiegand <michael.wiegand at intevation.de>
Post release version bump.
Modified: trunk/openvas-libraries/Makefile
===================================================================
--- trunk/openvas-libraries/Makefile 2009-02-10 14:52:40 UTC (rev 2444)
+++ trunk/openvas-libraries/Makefile 2009-02-10 15:18:41 UTC (rev 2445)
@@ -112,6 +112,6 @@
# (placed in doc/generated) and builts doc/generated/latex/refman.pdf
doc-full:
doxygen doc/Doxyfile_full
- cd doc/generated/latex && make
+ if [ -d doc/generated/latex ]; then make -C doc/generated/latex; fi
.PHONY: doc doc-dev
Modified: trunk/openvas-libraries/doc/Doxyfile_full
===================================================================
--- trunk/openvas-libraries/doc/Doxyfile_full 2009-02-10 14:52:40 UTC (rev 2444)
+++ trunk/openvas-libraries/doc/Doxyfile_full 2009-02-10 15:18:41 UTC (rev 2445)
@@ -556,12 +556,12 @@
# Note: To get rid of all source code in the generated output, make sure also
# VERBATIM_HEADERS is set to NO.
-SOURCE_BROWSER = NO
+SOURCE_BROWSER = YES
# Setting the INLINE_SOURCES tag to YES will include the body
# of functions and classes directly in the documentation.
-INLINE_SOURCES = NO
+INLINE_SOURCES = YES
# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
# doxygen to hide any special comment blocks from generated source code
@@ -573,13 +573,13 @@
# then for each documented function all documented
# functions referencing it will be listed.
-REFERENCED_BY_RELATION = NO
+REFERENCED_BY_RELATION = YES
# If the REFERENCES_RELATION tag is set to YES (the default)
# then for each documented function all documented entities
# called/used by that function will be listed.
-REFERENCES_RELATION = NO
+REFERENCES_RELATION = YES
# If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from
@@ -600,7 +600,7 @@
# will generate a verbatim copy of the header file for each class for
# which an include is specified. Set to NO to disable this.
-VERBATIM_HEADERS = YES
+VERBATIM_HEADERS = NO
#---------------------------------------------------------------------------
# configuration options related to the alphabetical class index
@@ -729,7 +729,7 @@
# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are
# probably better off using the HTML help feature.
-GENERATE_TREEVIEW = NO
+GENERATE_TREEVIEW = YES
# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
# used to set the initial width (in pixels) of the frame in which the tree
@@ -744,7 +744,7 @@
# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
# generate Latex output.
-GENERATE_LATEX = YES
+GENERATE_LATEX = NO
# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
More information about the Openvas-commits
mailing list