ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
I found out what is causing the problems. Apparently rosdoc was never used before with a doxygen version containing a build number (i.e. major.minor.patch.build). I adapted the source of rosdoc to cover the extra build number in the doxygen version.
I filed a bug in trac and also submitted the patch there (https://code.ros.org/trac/ros-pkg/ticket/5451).
Patch:
--- doxygenator.py (revision 16732) +++ doxygenator.py (working copy) @@ -196,7 +196,7 @@ # doxygen not available if doxygen_version is None: return None - major, minor, patch = doxygen_version.split('.') + major, minor, patch, build = doxygen_version.split('.') # > 1.7.3 doxygen changed the template syntax if int(major) > 1 or int(minor) > 7 or int(patch) > 3: return 'header-1.7.4.html'
Tinne