From: Martin Quinson Date: Wed, 22 Mar 2017 16:09:08 +0000 (+0100) Subject: doxygen fixups X-Git-Tag: v3_15~2 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/25c2dae2d09c5af0cf8459f83fda6bf5f083ce8c doxygen fixups I kill the reference guides from the archive to save half of the archive size. Seriously, I'm getting tired of doxygen. --- diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index 70717d6a9a..2ec75ddba2 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -737,13 +737,13 @@ RECURSIVE = YES # Note that relative paths are relative to the directory from which doxygen is # run. -EXCLUDE = +EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded # from the input. -EXCLUDE_SYMLINKS = NO +EXCLUDE_SYMLINKS = YES # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude @@ -849,7 +849,7 @@ INLINE_SOURCES = NO # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. -STRIP_CODE_COMMENTS = YES +STRIP_CODE_COMMENTS = NO # If the REFERENCED_BY_RELATION tag is set to YES # then for each documented function all documented @@ -869,7 +869,7 @@ REFERENCES_RELATION = NO # link to the source code. # Otherwise they will link to the documentation. -REFERENCES_LINK_SOURCE = YES +REFERENCES_LINK_SOURCE = NO # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen diff --git a/doc/doxygen/module-smpi.doc b/doc/doxygen/module-smpi.doc index 399961baf6..811a399a71 100644 --- a/doc/doxygen/module-smpi.doc +++ b/doc/doxygen/module-smpi.doc @@ -156,7 +156,7 @@ Most of these are best described in + - bruck: Described by Bruck et.al. in this paper - 2dmesh: organizes the nodes as a two dimensional mesh, and perform allgather along the dimensions - 3dmesh: adds a third dimension to the previous algorithm diff --git a/src/mc/PageStore.hpp b/src/mc/PageStore.hpp index 4226ffd799..bb6be392b0 100644 --- a/src/mc/PageStore.hpp +++ b/src/mc/PageStore.hpp @@ -136,7 +136,7 @@ public: // Methods /** @brief Get a page from its page number * - * @param Number of the memory page in the store + * @param pageno Number of the memory page in the store * @return Start of the page */ const void* get_page(std::size_t pageno) const; diff --git a/src/mc/compare.cpp b/src/mc/compare.cpp index 404b384591..98a6d6cecb 100644 --- a/src/mc/compare.cpp +++ b/src/mc/compare.cpp @@ -714,7 +714,7 @@ static int compare_heap_area_without_type( * @param snapshot1 Snapshot of state 1 * @param snapshot2 Snapshot of state 2 * @param previous - * @param type_id + * @param type * @param area_size either a byte_size or an elements_count (?) * @param check_ignore * @param pointer_level @@ -933,7 +933,7 @@ top: * * TODO, handle subfields ((*p).bar.foo, (*p)[5].bar…) * - * @param type_id DWARF type ID of the root address + * @param type DWARF type ID of the root address * @param area_size * @return DWARF type ID for given offset */ diff --git a/tools/cmake/Distrib.cmake b/tools/cmake/Distrib.cmake index 095b794e60..173e92b018 100644 --- a/tools/cmake/Distrib.cmake +++ b/tools/cmake/Distrib.cmake @@ -184,7 +184,10 @@ add_custom_target(dist-dir COMMAND ${CMAKE_COMMAND} -E remove ${PROJECT_NAME}-${release_version}.tar.gz COMMAND ${CMAKE_COMMAND} -E make_directory ${PROJECT_NAME}-${release_version} COMMAND ${CMAKE_COMMAND} -E make_directory ${PROJECT_NAME}-${release_version}/doc/html/ - COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_HOME_DIRECTORY}/doc/html/ ${PROJECT_NAME}-${release_version}/doc/html/) + COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_HOME_DIRECTORY}/doc/html/ ${PROJECT_NAME}-${release_version}/doc/html/ + COMMAND rm -f `grep -rl " Reference" ${PROJECT_NAME}-${release_version}/doc/html/` # Doxygen, go away + COMMAND rm -f `grep -rl "Member List" ${PROJECT_NAME}-${release_version}/doc/html/` # Doxygen, you're getting annoying + ) add_dependencies(dist-dir maintainer_files) set(dirs_in_tarball "")