From f492435a58ae0f8ee886a15b58cce21b655d6273 Mon Sep 17 00:00:00 2001 From: Manfred Kroehnert <manfred.kroehnert@kit.edu> Date: Tue, 30 Oct 2012 11:05:25 +0000 Subject: [PATCH] doc: adapt to documentation changes in Core git-svn-id: https://svn.sfb588.uni-karlsruhe.de/svn/HumanoidRobotAPI@13 e7ad446d-f7d8-486a-9efb-df2f5bbea5c6 --- etc/doc/HumanoidRobotAPI.Doxyfile.in | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/etc/doc/HumanoidRobotAPI.Doxyfile.in b/etc/doc/HumanoidRobotAPI.Doxyfile.in index b94498908..6f90b1e3a 100644 --- a/etc/doc/HumanoidRobotAPI.Doxyfile.in +++ b/etc/doc/HumanoidRobotAPI.Doxyfile.in @@ -514,11 +514,9 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = "@PROJECT_SOURCE_DIR@/applications" \ - "@PROJECT_SOURCE_DIR@/core" \ - "@PROJECT_SOURCE_DIR@/motioncontrol" \ - "@PROJECT_DOC_DIR@/doxygen" \ - "@PROJECT_BUILD_DIR@/propertydocs.dox" +INPUT = "@PROJECT_SOURCE_DIR@/source" \ + "@PROJECT_DOCUMENTATION_PAGES_DIR@" \ + "@PROJECT_BUILD_DIR@/propertydocs.dox" # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is @@ -586,7 +584,7 @@ EXCLUDE_SYMBOLS = # directories that contain example code fragments that are included (see # the \include command). -EXAMPLE_PATH = doxygen/snippets +EXAMPLE_PATH = @PROJECT_DOCUMENTATION_SNIPPET_DIR_REL@ # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp @@ -606,7 +604,7 @@ EXAMPLE_RECURSIVE = NO # directories that contain image that are included in the documentation (see # the \image command). -IMAGE_PATH = doxygen/images +IMAGE_PATH = @PROJECT_DOCUMENTATION_IMAGE_DIR_REL@ # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program @@ -724,7 +722,7 @@ GENERATE_HTML = YES # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. -HTML_OUTPUT = html +HTML_OUTPUT = @PROJECT_DOCUMENTATION_HTML_OUTPUT_DIR_REL@ # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank @@ -736,13 +734,13 @@ HTML_FILE_EXTENSION = .html # each generated HTML page. If it is left blank doxygen will generate a # standard header. -HTML_HEADER = doxygen/Header.html +HTML_HEADER = @PROJECT_DOCUMENTATION_LAYOUT_DIR_REL@/Header.html # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. -HTML_FOOTER = doxygen/Footer.html +HTML_FOOTER = @PROJECT_DOCUMENTATION_LAYOUT_DIR_REL@/Footer.html # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to @@ -751,7 +749,7 @@ HTML_FOOTER = doxygen/Footer.html # the style sheet file to the HTML output directory, so don't put your own # stylesheet in the HTML output directory as well, or it will be erased! -HTML_STYLESHEET = Doxygen.css +HTML_STYLESHEET = @PROJECT_DOCUMENTATION_LAYOUT_DIR_REL@/Doxygen.css # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to -- GitLab